Version Description
- 2022/Jan/6 =
- Update Extendify library
Download this release
Release Info
| Developer | metaslider |
| Plugin | |
| Version | 3.24.0 |
| Comparing to | |
| See all releases | |
Code changes from version 3.23.5 to 3.24.0
- extendify-sdk/.editorconfig +0 -17
- extendify-sdk/.eslintignore +0 -6
- extendify-sdk/.eslintrc.js +0 -51
- extendify-sdk/.github/workflows/build-and-test.yml +0 -65
- extendify-sdk/.github/workflows/build-development-zip.yml +0 -72
- extendify-sdk/.github/workflows/force-production-on-main.yml +0 -74
- extendify-sdk/.gitignore +0 -11
- extendify-sdk/.husky/.gitignore +0 -1
- extendify-sdk/.husky/pre-commit +0 -4
- extendify-sdk/.node-version +0 -1
- extendify-sdk/.npmrc +0 -1
- extendify-sdk/.phpcs.xml.dist +0 -183
- extendify-sdk/.prettierignore +0 -6
- extendify-sdk/.prettierrc.js +0 -15
- extendify-sdk/LICENSE +339 -0
- extendify-sdk/app/Admin.php +29 -10
- extendify-sdk/app/ApiRouter.php +3 -3
- extendify-sdk/app/App.php +3 -3
- extendify-sdk/app/Controllers/AuthController.php +2 -2
- extendify-sdk/app/Controllers/MetaController.php +2 -2
- extendify-sdk/app/Controllers/PingController.php +2 -2
- extendify-sdk/app/Controllers/PluginController.php +5 -16
- extendify-sdk/app/Controllers/SiteSettingsController.php +2 -2
- extendify-sdk/app/Controllers/TaxonomyController.php +3 -3
- extendify-sdk/app/Controllers/TemplateController.php +4 -16
- extendify-sdk/app/Controllers/UserController.php +15 -3
- extendify-sdk/app/Frontend.php +4 -4
- extendify-sdk/app/Http.php +4 -4
- extendify-sdk/app/Plugin.php +2 -303
- extendify-sdk/app/Shared.php +7 -7
- extendify-sdk/app/SiteSettings.php +2 -2
- extendify-sdk/app/User.php +7 -8
- extendify-sdk/bin/clean-build-files.sh +0 -7
- extendify-sdk/bootstrap.php +27 -18
- extendify-sdk/composer.json +0 -16
- extendify-sdk/composer.lock +0 -2240
- extendify-sdk/editorplus/EditorPlus.php +6 -5
- extendify-sdk/editorplus/editorplus-template.php +0 -6
- extendify-sdk/extendify-sdk.php +0 -51
- extendify-sdk/extendify.php +2 -0
- extendify-sdk/loader.php +16 -27
- extendify-sdk/package-lock.json +0 -12648
- extendify-sdk/package.json +0 -70
- extendify-sdk/public/assets/preview.png +0 -0
- extendify-sdk/public/build/.gitkeep +0 -0
- extendify-sdk/public/build/extendify-sdk.css +0 -1
- extendify-sdk/public/build/extendify-sdk.js +0 -2
- extendify-sdk/public/build/extendify-utilities.css +2 -2
- extendify-sdk/public/build/extendify.css +1 -0
extendify-sdk/.editorconfig
DELETED
|
@@ -1,17 +0,0 @@
|
|
| 1 |
-
root = true
|
| 2 |
-
|
| 3 |
-
[*]
|
| 4 |
-
charset = utf-8
|
| 5 |
-
end_of_line = lf
|
| 6 |
-
insert_final_newline = true
|
| 7 |
-
indent_style = space
|
| 8 |
-
indent_size = 4
|
| 9 |
-
tabSize = 4
|
| 10 |
-
trim_trailing_whitespace = true
|
| 11 |
-
|
| 12 |
-
[*.yml]
|
| 13 |
-
indent_style = space
|
| 14 |
-
indent_size = 2
|
| 15 |
-
|
| 16 |
-
[*.md]
|
| 17 |
-
trim_trailing_whitespace = false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.eslintignore
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
node_modules/*
|
| 2 |
-
vendor/*
|
| 3 |
-
public/build/*
|
| 4 |
-
*.min.js
|
| 5 |
-
wpcs
|
| 6 |
-
utility-framework/suggestions.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.eslintrc.js
DELETED
|
@@ -1,51 +0,0 @@
|
|
| 1 |
-
module.exports = {
|
| 2 |
-
env: {
|
| 3 |
-
browser: true,
|
| 4 |
-
es2021: true,
|
| 5 |
-
jest: true,
|
| 6 |
-
node: true,
|
| 7 |
-
},
|
| 8 |
-
extends: [
|
| 9 |
-
'eslint:recommended',
|
| 10 |
-
'plugin:react/recommended',
|
| 11 |
-
'plugin:react-hooks/recommended',
|
| 12 |
-
'prettier',
|
| 13 |
-
],
|
| 14 |
-
parserOptions: {
|
| 15 |
-
ecmaFeatures: { jsx: true },
|
| 16 |
-
sourceType: 'module',
|
| 17 |
-
},
|
| 18 |
-
plugins: ['react', 'prettier'],
|
| 19 |
-
rules: {
|
| 20 |
-
'require-await': 'error',
|
| 21 |
-
quotes: ['error', 'single', { avoidEscape: true }],
|
| 22 |
-
'comma-dangle': ['error', 'always-multiline'],
|
| 23 |
-
'array-element-newline': ['error', 'consistent'],
|
| 24 |
-
'no-constant-condition': ['error', { checkLoops: false }],
|
| 25 |
-
'no-multi-spaces': ['error'],
|
| 26 |
-
semi: ['error', 'never'],
|
| 27 |
-
'space-in-parens': ['error', 'never'],
|
| 28 |
-
'key-spacing': ['error', { afterColon: true }],
|
| 29 |
-
'space-infix-ops': ['error'],
|
| 30 |
-
'space-before-function-paren': [
|
| 31 |
-
'error',
|
| 32 |
-
{
|
| 33 |
-
anonymous: 'always',
|
| 34 |
-
named: 'never',
|
| 35 |
-
asyncArrow: 'always',
|
| 36 |
-
},
|
| 37 |
-
],
|
| 38 |
-
'react/react-in-jsx-scope': 'off',
|
| 39 |
-
'quote-props': ['error', 'as-needed'],
|
| 40 |
-
'no-multiple-empty-lines': ['error', { max: 1 }],
|
| 41 |
-
'react/prop-types': 0, // TODO: Do we want this required?
|
| 42 |
-
'lines-around-comment': [
|
| 43 |
-
'error',
|
| 44 |
-
{
|
| 45 |
-
beforeBlockComment: true,
|
| 46 |
-
allowBlockStart: true,
|
| 47 |
-
},
|
| 48 |
-
],
|
| 49 |
-
},
|
| 50 |
-
settings: { react: { version: 'detect' } },
|
| 51 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.github/workflows/build-and-test.yml
DELETED
|
@@ -1,65 +0,0 @@
|
|
| 1 |
-
name: Build and test
|
| 2 |
-
on: [push, pull_request]
|
| 3 |
-
jobs:
|
| 4 |
-
# TODO: create another job for integration testing that includes Cypress, booting up WPO, etc
|
| 5 |
-
# Reference wp-cli: https://github.com/wp-cli/wp-cli/blob/master/.github/workflows/testing.yml
|
| 6 |
-
unit: #-------------------------------------------
|
| 7 |
-
name: PHP ${{ matrix.php }}
|
| 8 |
-
runs-on: ubuntu-latest
|
| 9 |
-
strategy:
|
| 10 |
-
fail-fast: false
|
| 11 |
-
matrix:
|
| 12 |
-
php: ['7.4']
|
| 13 |
-
steps:
|
| 14 |
-
- name: Check out source code
|
| 15 |
-
uses: actions/checkout@v2
|
| 16 |
-
|
| 17 |
-
- name: Setup PHP
|
| 18 |
-
uses: shivammathur/setup-php@v2
|
| 19 |
-
with:
|
| 20 |
-
php-version: '${{ matrix.php }}'
|
| 21 |
-
extensions: mysql, zip
|
| 22 |
-
coverage: none
|
| 23 |
-
tools: composer:v1, wp-cli, cs2pr, phpcs
|
| 24 |
-
|
| 25 |
-
- name: Get Composer cache directory
|
| 26 |
-
id: composer-cache
|
| 27 |
-
run: |
|
| 28 |
-
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
| 29 |
-
|
| 30 |
-
- name: Use Composer cache
|
| 31 |
-
uses: actions/cache@master
|
| 32 |
-
with:
|
| 33 |
-
path: ${{ steps['composer-cache'].outputs.dir }}
|
| 34 |
-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
| 35 |
-
restore-keys: |
|
| 36 |
-
${{ runner.os }}-composer-
|
| 37 |
-
|
| 38 |
-
- name: Install dependencies
|
| 39 |
-
run: composer install --prefer-dist --no-progress --no-suggest
|
| 40 |
-
|
| 41 |
-
- name: Install PHPCS
|
| 42 |
-
run: git clone -b master https://github.com/WordPress/WordPress-Coding-Standards.git ${{ github.workspace }}/wpcs
|
| 43 |
-
|
| 44 |
-
- name: PHPCS check
|
| 45 |
-
run: |
|
| 46 |
-
phpcs --config-set installed_paths ${{ github.workspace }}/vendor/phpcompatibility/phpcompatibility-wp/PHPCompatibilityWP,${{ github.workspace }}/vendor/phpcompatibility/php-compatibility/PHPCompatibility,${{ github.workspace }}/vendor/phpcompatibility/phpcompatibility-paragonie/PHPCompatibilityParagonieSodiumCompat,${{ github.workspace }}/vendor/phpcompatibility/phpcompatibility-paragonie/PHPCompatibilityParagonieRandomCompat,${{ github.workspace }}/wpcs
|
| 47 |
-
phpcs -i
|
| 48 |
-
phpcs -q --report=checkstyle . | cs2pr
|
| 49 |
-
|
| 50 |
-
- name: Install NPM packages
|
| 51 |
-
run: npm ci
|
| 52 |
-
env:
|
| 53 |
-
CYPRESS_INSTALL_BINARY: '0'
|
| 54 |
-
|
| 55 |
-
- name: Lint JavaScript
|
| 56 |
-
run: |
|
| 57 |
-
npm run lint
|
| 58 |
-
npm run lint
|
| 59 |
-
npm run prettier
|
| 60 |
-
|
| 61 |
-
- name: Build assets
|
| 62 |
-
run: npm run build
|
| 63 |
-
|
| 64 |
-
- name: Test JavaScript
|
| 65 |
-
run: npm run test
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.github/workflows/build-development-zip.yml
DELETED
|
@@ -1,72 +0,0 @@
|
|
| 1 |
-
name: Build development zip file
|
| 2 |
-
on: push
|
| 3 |
-
jobs:
|
| 4 |
-
build:
|
| 5 |
-
name: Build test, and zip
|
| 6 |
-
runs-on: ubuntu-latest
|
| 7 |
-
strategy:
|
| 8 |
-
fail-fast: false
|
| 9 |
-
matrix:
|
| 10 |
-
php: [8.0]
|
| 11 |
-
node-version: [14.x]
|
| 12 |
-
steps:
|
| 13 |
-
- name: Checkout code
|
| 14 |
-
uses: actions/checkout@v1
|
| 15 |
-
|
| 16 |
-
- name: Setup PHP
|
| 17 |
-
uses: shivammathur/setup-php@v2
|
| 18 |
-
with:
|
| 19 |
-
php-version: '${{ matrix.php }}'
|
| 20 |
-
tools: composer:v1
|
| 21 |
-
|
| 22 |
-
- name: Get Composer cache directory
|
| 23 |
-
id: composer-cache
|
| 24 |
-
run: |
|
| 25 |
-
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
| 26 |
-
- name: Use Composer cache
|
| 27 |
-
uses: actions/cache@master
|
| 28 |
-
with:
|
| 29 |
-
path: ${{ steps['composer-cache'].outputs.dir }}
|
| 30 |
-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
| 31 |
-
restore-keys: |
|
| 32 |
-
${{ runner.os }}-composer-
|
| 33 |
-
- name: Build autoloader
|
| 34 |
-
run: composer install --prefer-dist --no-progress --no-suggest --no-dev
|
| 35 |
-
|
| 36 |
-
- name: Using Node version ${{ matrix.node-version }}
|
| 37 |
-
uses: actions/setup-node@v1
|
| 38 |
-
with:
|
| 39 |
-
node-version: ${{ matrix.node-version }}
|
| 40 |
-
- name: npm install, build, and test
|
| 41 |
-
run: |
|
| 42 |
-
npm ci
|
| 43 |
-
npm run dev
|
| 44 |
-
npm run lint
|
| 45 |
-
npm run prettier
|
| 46 |
-
touch .devbuild
|
| 47 |
-
env:
|
| 48 |
-
CI: true
|
| 49 |
-
- name: Package
|
| 50 |
-
uses: actions/upload-artifact@v2
|
| 51 |
-
with:
|
| 52 |
-
name: extendify-sdk
|
| 53 |
-
retention-days: 5
|
| 54 |
-
path: |
|
| 55 |
-
${{ github.workspace }}/
|
| 56 |
-
!${{ github.workspace }}/node_modules/
|
| 57 |
-
!${{ github.workspace }}/.github/
|
| 58 |
-
!${{ github.workspace }}/.git/
|
| 59 |
-
!${{ github.workspace }}/src/
|
| 60 |
-
!${{ github.workspace }}/.editorconfig
|
| 61 |
-
!${{ github.workspace }}/.eslintrc.js
|
| 62 |
-
!${{ github.workspace }}/.eslintignore
|
| 63 |
-
!${{ github.workspace }}/.gitignore
|
| 64 |
-
!${{ github.workspace }}/.svgrrc
|
| 65 |
-
!${{ github.workspace }}/.prettierrc.js
|
| 66 |
-
!${{ github.workspace }}/.phpcs.xml.dist
|
| 67 |
-
!${{ github.workspace }}/webpack.config.js
|
| 68 |
-
!${{ github.workspace }}/composer.json
|
| 69 |
-
!${{ github.workspace }}/composer.lock
|
| 70 |
-
!${{ github.workspace }}/package.json
|
| 71 |
-
!${{ github.workspace }}/package-lock.json
|
| 72 |
-
!${{ github.workspace }}/readme.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.github/workflows/force-production-on-main.yml
DELETED
|
@@ -1,74 +0,0 @@
|
|
| 1 |
-
name: Build production and deploy
|
| 2 |
-
on:
|
| 3 |
-
push:
|
| 4 |
-
branches:
|
| 5 |
-
- main
|
| 6 |
-
jobs:
|
| 7 |
-
build:
|
| 8 |
-
name: Build and commit
|
| 9 |
-
runs-on: ubuntu-latest
|
| 10 |
-
strategy:
|
| 11 |
-
fail-fast: false
|
| 12 |
-
matrix:
|
| 13 |
-
php: [8.0]
|
| 14 |
-
node-version: [14.x]
|
| 15 |
-
steps:
|
| 16 |
-
- name: Checkout code
|
| 17 |
-
uses: actions/checkout@v1
|
| 18 |
-
|
| 19 |
-
- name: Set up git user
|
| 20 |
-
run: git config --global user.name extendify
|
| 21 |
-
- name: Set up git email
|
| 22 |
-
run: git config --global user.name extendify@users.noreply.github.com
|
| 23 |
-
|
| 24 |
-
- name: Setup PHP
|
| 25 |
-
uses: shivammathur/setup-php@v2
|
| 26 |
-
with:
|
| 27 |
-
php-version: '${{ matrix.php }}'
|
| 28 |
-
extensions: mysql, zip
|
| 29 |
-
coverage: none
|
| 30 |
-
tools: composer:v1, wp-cli, cs2pr, phpcs
|
| 31 |
-
|
| 32 |
-
- name: Get Composer cache directory
|
| 33 |
-
id: composer-cache
|
| 34 |
-
run: |
|
| 35 |
-
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
| 36 |
-
- name: Use Composer cache
|
| 37 |
-
uses: actions/cache@master
|
| 38 |
-
with:
|
| 39 |
-
path: ${{ steps['composer-cache'].outputs.dir }}
|
| 40 |
-
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
| 41 |
-
restore-keys: |
|
| 42 |
-
${{ runner.os }}-composer-
|
| 43 |
-
- name: Build autoloader
|
| 44 |
-
run: composer install --prefer-dist --no-progress --no-suggest --no-dev
|
| 45 |
-
|
| 46 |
-
- name: Using Node version ${{ matrix.node-version }}
|
| 47 |
-
uses: actions/setup-node@v1
|
| 48 |
-
with:
|
| 49 |
-
node-version: ${{ matrix.node-version }}
|
| 50 |
-
- name: npm install and build
|
| 51 |
-
run: |
|
| 52 |
-
npm ci --ignore-scripts
|
| 53 |
-
npm run build
|
| 54 |
-
env:
|
| 55 |
-
CI: true
|
| 56 |
-
|
| 57 |
-
- name: Increment version number
|
| 58 |
-
run: |
|
| 59 |
-
perl -i -pe 's/(Stable tag: )([\d.]+)$/$1.($2+.1)/e' readme.txt
|
| 60 |
-
perl -i -pe 's/(Version: )([\d.]+)$/$1.($2+.1)/e' extendify-sdk.php
|
| 61 |
-
- name: Commit file changes if needed #it fails if nothing has changed so we allow an error
|
| 62 |
-
run: git commit -am 'Build produciton assets'
|
| 63 |
-
continue-on-error: true
|
| 64 |
-
- name: Push changed files to main
|
| 65 |
-
uses: ad-m/github-push-action@master
|
| 66 |
-
with:
|
| 67 |
-
github_token: ${{ secrets.GITHUB_TOKEN }}
|
| 68 |
-
branch: main
|
| 69 |
-
|
| 70 |
-
- name: Deploy to library.extendify.com
|
| 71 |
-
uses: fjogeleit/http-request-action@master
|
| 72 |
-
with:
|
| 73 |
-
url: ${{ secrets.DEPLOY_WEBHOOK }}
|
| 74 |
-
method: 'POST'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.gitignore
DELETED
|
@@ -1,11 +0,0 @@
|
|
| 1 |
-
node_modules
|
| 2 |
-
|
| 3 |
-
.DS_Store
|
| 4 |
-
.vscode
|
| 5 |
-
|
| 6 |
-
vendor/*
|
| 7 |
-
!vendor/composer
|
| 8 |
-
!vendor/autoload.php
|
| 9 |
-
|
| 10 |
-
wpcs
|
| 11 |
-
.eslintcache
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.husky/.gitignore
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
_
|
|
|
extendify-sdk/.husky/pre-commit
DELETED
|
@@ -1,4 +0,0 @@
|
|
| 1 |
-
#!/bin/sh
|
| 2 |
-
. "$(dirname "$0")/_/husky.sh"
|
| 3 |
-
|
| 4 |
-
npx lint-staged
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.node-version
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
14.18.1
|
|
|
extendify-sdk/.npmrc
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
engine-strict=true
|
|
|
extendify-sdk/.phpcs.xml.dist
DELETED
|
@@ -1,183 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0"?>
|
| 2 |
-
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="extendify-sdk" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
|
| 3 |
-
|
| 4 |
-
<description>WP Plugin checks</description>
|
| 5 |
-
|
| 6 |
-
<!-- Exclude the Composer Vendor directory. -->
|
| 7 |
-
<exclude-pattern>/vendor/*</exclude-pattern>
|
| 8 |
-
|
| 9 |
-
<exclude-pattern>/cypress/*</exclude-pattern>
|
| 10 |
-
<exclude-pattern>/.github/*</exclude-pattern>
|
| 11 |
-
<exclude-pattern>/tests/*</exclude-pattern>
|
| 12 |
-
<exclude-pattern>/public/*</exclude-pattern>
|
| 13 |
-
<exclude-pattern>/wpcs/*</exclude-pattern>
|
| 14 |
-
|
| 15 |
-
<!-- Exclude the Node Modules directory. -->
|
| 16 |
-
<exclude-pattern>/node_modules/*</exclude-pattern>
|
| 17 |
-
|
| 18 |
-
<!-- Exclude CSS and Javascript files. -->
|
| 19 |
-
<exclude-pattern>*.css</exclude-pattern>
|
| 20 |
-
<exclude-pattern>*.js</exclude-pattern>
|
| 21 |
-
|
| 22 |
-
<!-- Include the WordPress-Extra standard. -->
|
| 23 |
-
<rule ref="WordPress-Extra">
|
| 24 |
-
<!--
|
| 25 |
-
We may want a middle ground though. The best way to do this is add the
|
| 26 |
-
entire ruleset, then rule by rule, remove ones that don't suit a project.
|
| 27 |
-
We can do this by running `phpcs` with the '-s' flag, which allows us to
|
| 28 |
-
see the names of the sniffs reporting errors.
|
| 29 |
-
Once we know the sniff names, we can opt to exclude sniffs which don't
|
| 30 |
-
suit our project like so.
|
| 31 |
-
|
| 32 |
-
The below two examples just show how you can exclude rules.
|
| 33 |
-
They are not intended as advice about which sniffs to exclude.
|
| 34 |
-
-->
|
| 35 |
-
|
| 36 |
-
<!--
|
| 37 |
-
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing"/>
|
| 38 |
-
<exclude name="WordPress.Security.EscapeOutput"/>
|
| 39 |
-
-->
|
| 40 |
-
</rule>
|
| 41 |
-
|
| 42 |
-
<rule ref="WordPress">
|
| 43 |
-
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
|
| 44 |
-
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
|
| 45 |
-
<exclude name="WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound" />
|
| 46 |
-
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis" />
|
| 47 |
-
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis" />
|
| 48 |
-
<exclude name="WordPress.WhiteSpace.OperatorSpacing.NoSpaceBefore" />
|
| 49 |
-
<exclude name="WordPress.WhiteSpace.OperatorSpacing.NoSpaceAfter" />
|
| 50 |
-
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.ExtraSpaceAfterCloseParenthesis" />
|
| 51 |
-
<exclude name="WordPress.WhiteSpace.CastStructureSpacing.NoSpaceBeforeOpenParenthesis" />
|
| 52 |
-
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceAfterArrayOpener" />
|
| 53 |
-
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceBeforeArrayCloser" />
|
| 54 |
-
<exclude name="WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned" />
|
| 55 |
-
<exclude name="WordPress.NamingConventions.ValidVariableName.PropertyNotSnakeCase" />
|
| 56 |
-
<exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid" />
|
| 57 |
-
<exclude name="WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase" />
|
| 58 |
-
<exclude name="WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase" />
|
| 59 |
-
<exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions.NoSpacesAroundArrayKeys" />
|
| 60 |
-
<exclude name="WordPress.PHP.YodaConditions.NotYoda" />
|
| 61 |
-
<exclude name="WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid" />
|
| 62 |
-
<exclude name="WordPress.NamingConventions.ValidVariableName.InterpolatedVariableNotSnakeCase" />
|
| 63 |
-
</rule>
|
| 64 |
-
|
| 65 |
-
<rule ref="Generic">
|
| 66 |
-
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
|
| 67 |
-
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
|
| 68 |
-
<exclude name="Generic.PHP.ClosingPHPTag.NotFound" />
|
| 69 |
-
<exclude name="Generic.Files.LowercasedFilename.NotFound" />
|
| 70 |
-
<exclude name="Generic.Formatting.SpaceAfterNot.Incorrect" />
|
| 71 |
-
<exclude name="Generic.Formatting.SpaceBeforeCast.NoSpace" />
|
| 72 |
-
<exclude name="Generic.Classes.OpeningBraceSameLine.BraceOnNewLine" />
|
| 73 |
-
<exclude name="Generic.Files.EndFileNoNewline.Found" />
|
| 74 |
-
<exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.BraceOnNewLine" />
|
| 75 |
-
<exclude name="Generic.Files.LineLength.TooLong" />
|
| 76 |
-
<exclude name="Generic.Arrays.DisallowShortArraySyntax.Found" />
|
| 77 |
-
<exclude name="Generic.Commenting.Todo.TaskFound" />
|
| 78 |
-
<exclude name="Generic.Formatting.NoSpaceAfterCast.SpaceFound" />
|
| 79 |
-
<exclude name="Generic.Formatting.MultipleStatementAlignment.NotSame" />
|
| 80 |
-
<exclude name="Generic.PHP.RequireStrictTypes.MissingDeclaration" />
|
| 81 |
-
<exclude name="Generic.PHP.UpperCaseConstant.Found" />
|
| 82 |
-
<exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing.SpaceBeforeOpen" />
|
| 83 |
-
<exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing.SpaceBeforeClose" />
|
| 84 |
-
<exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing.SpaceAfterOpen" />
|
| 85 |
-
<exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing.SpaceAfterClose" />
|
| 86 |
-
<exclude name="Generic.PHP.ForbiddenFunctions.Found" />
|
| 87 |
-
<exclude name="Generic.Files.InlineHTML.Found" />
|
| 88 |
-
</rule>
|
| 89 |
-
<rule ref="Squiz">
|
| 90 |
-
<exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterOpen" />
|
| 91 |
-
<exclude name="Squiz.ControlStructures.ElseIfDeclaration.NotAllowed" />
|
| 92 |
-
<exclude name="Squiz.WhiteSpace.FunctionClosingBraceSpace.SpacingBeforeClose" />
|
| 93 |
-
<exclude name="Squiz.WhiteSpace.FunctionSpacing.AfterLast" />
|
| 94 |
-
<exclude name="Squiz.Files.FileExtension.ClassFound" />
|
| 95 |
-
<exclude name="Squiz.Commenting.FileComment.MissingPackageTag" />
|
| 96 |
-
<exclude name="Squiz.Operators.ComparisonOperatorUsage.NotAllowed" />
|
| 97 |
-
<exclude name="Squiz.WhiteSpace.FunctionSpacing.BeforeFirst" />
|
| 98 |
-
<exclude name="Squiz.Operators.ComparisonOperatorUsage.ImplicitTrue" />
|
| 99 |
-
<exclude name="Squiz.WhiteSpace.FunctionSpacing.After" />
|
| 100 |
-
<exclude name="Squiz.Arrays.ArrayDeclaration.DoubleArrowNotAligned" />
|
| 101 |
-
<exclude name="Squiz.WhiteSpace.FunctionSpacing.Before" />
|
| 102 |
-
<exclude name="Squiz.PHP.DisallowBooleanStatement.Found" />
|
| 103 |
-
<exclude name="Squiz.ControlStructures.InlineIfDeclaration.NoBrackets" />
|
| 104 |
-
<exclude name="Squiz.PHP.DisallowInlineIf.Found" />
|
| 105 |
-
<exclude name="Squiz.PHP.DisallowComparisonAssignment.AssignedComparison" />
|
| 106 |
-
<exclude name="Squiz.PHP.DiscouragedFunctions.Discouraged" />
|
| 107 |
-
<exclude name="Squiz.Functions.GlobalFunction.Found" />
|
| 108 |
-
<exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeEnd" />
|
| 109 |
-
</rule>
|
| 110 |
-
<rule ref="PEAR">
|
| 111 |
-
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
|
| 112 |
-
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket" />
|
| 113 |
-
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket" />
|
| 114 |
-
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
|
| 115 |
-
<exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments" />
|
| 116 |
-
<exclude name="PEAR.Commenting.FileComment.MissingPackageTag" />
|
| 117 |
-
<exclude name="PEAR.Commenting.FileComment.MissingAuthorTag" />
|
| 118 |
-
<exclude name="PEAR.Commenting.FileComment.MissingCategoryTag" />
|
| 119 |
-
<exclude name="PEAR.Commenting.FileComment.MissingLinkTag" />
|
| 120 |
-
<exclude name="PEAR.Commenting.FileComment.MissingLicenseTag" />
|
| 121 |
-
<exclude name="PEAR.Commenting.FileComment.MissingVersion" />
|
| 122 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingPackageTag" />
|
| 123 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingAuthorTag" />
|
| 124 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingCategoryTag" />
|
| 125 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingLinkTag" />
|
| 126 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingLicenseTag" />
|
| 127 |
-
<exclude name="PEAR.Commenting.ClassComment.MissingVersion" />
|
| 128 |
-
<exclude name="PEAR.NamingConventions.ValidFunctionName.PrivateNoUnderscore" />
|
| 129 |
-
<exclude name="PEAR.Commenting.FileComment.WrongStyle" />
|
| 130 |
-
<exclude name="PEAR.Commenting.FileComment.Missing" />
|
| 131 |
-
<exclude name="PEAR.WhiteSpace.ScopeIndent.IncorrectExact" />
|
| 132 |
-
</rule>
|
| 133 |
-
|
| 134 |
-
<!-- Let's also check that everything is properly documented. -->
|
| 135 |
-
<rule ref="WordPress-Docs"/>
|
| 136 |
-
|
| 137 |
-
<!-- Add in some extra rules from other standards. -->
|
| 138 |
-
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
|
| 139 |
-
<!-- <rule ref="Generic.Commenting.Todo"/> -->
|
| 140 |
-
|
| 141 |
-
<!-- Check for PHP cross-version compatibility. -->
|
| 142 |
-
<!--
|
| 143 |
-
To enable this, the PHPCompatibilityWP standard needs
|
| 144 |
-
to be installed.
|
| 145 |
-
See the readme for installation instructions:
|
| 146 |
-
https://github.com/PHPCompatibility/PHPCompatibilityWP
|
| 147 |
-
For more information, also see:
|
| 148 |
-
https://github.com/PHPCompatibility/PHPCompatibility
|
| 149 |
-
-->
|
| 150 |
-
|
| 151 |
-
<config name="testVersion" value="5.6-"/>
|
| 152 |
-
<rule ref="PHPCompatibilityWP"/>
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
<!--
|
| 156 |
-
To get the optimal benefits of using WPCS, we should add a couple of
|
| 157 |
-
custom properties.
|
| 158 |
-
Adjust the values of these properties to fit our needs.
|
| 159 |
-
|
| 160 |
-
For information on additional custom properties available, check out
|
| 161 |
-
the wiki:
|
| 162 |
-
https://github.com/WordPress/WordPress-Coding-Standards/wiki/Customizable-sniff-properties
|
| 163 |
-
-->
|
| 164 |
-
<config name="minimum_supported_wp_version" value="5.4"/>
|
| 165 |
-
|
| 166 |
-
<rule ref="WordPress.WP.I18n">
|
| 167 |
-
<properties>
|
| 168 |
-
<property name="text_domain" type="array">
|
| 169 |
-
<element value="extendify-sdk"/>
|
| 170 |
-
</property>
|
| 171 |
-
</properties>
|
| 172 |
-
</rule>
|
| 173 |
-
|
| 174 |
-
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
|
| 175 |
-
<properties>
|
| 176 |
-
<property name="prefixes" type="array">
|
| 177 |
-
<element value="extendifysdk"/>
|
| 178 |
-
</property>
|
| 179 |
-
</properties>
|
| 180 |
-
</rule>
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
</ruleset>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.prettierignore
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
node_modules/*
|
| 2 |
-
vendor/*
|
| 3 |
-
public/build/*
|
| 4 |
-
*.min.js
|
| 5 |
-
wpcs
|
| 6 |
-
utility-framework/suggestions.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/.prettierrc.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
| 1 |
-
module.exports = {
|
| 2 |
-
trailingComma: 'all',
|
| 3 |
-
tabWidth: 4,
|
| 4 |
-
semi: false,
|
| 5 |
-
singleQuote: true,
|
| 6 |
-
bracketSameLine: true,
|
| 7 |
-
overrides: [
|
| 8 |
-
{
|
| 9 |
-
files: ['**/*.css', '**/*.html'],
|
| 10 |
-
options: {
|
| 11 |
-
singleQuote: false,
|
| 12 |
-
},
|
| 13 |
-
},
|
| 14 |
-
],
|
| 15 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/LICENSE
ADDED
|
@@ -0,0 +1,339 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
GNU GENERAL PUBLIC LICENSE
|
| 2 |
+
Version 2, June 1991
|
| 3 |
+
|
| 4 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
|
| 5 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
| 6 |
+
Everyone is permitted to copy and distribute verbatim copies
|
| 7 |
+
of this license document, but changing it is not allowed.
|
| 8 |
+
|
| 9 |
+
Preamble
|
| 10 |
+
|
| 11 |
+
The licenses for most software are designed to take away your
|
| 12 |
+
freedom to share and change it. By contrast, the GNU General Public
|
| 13 |
+
License is intended to guarantee your freedom to share and change free
|
| 14 |
+
software--to make sure the software is free for all its users. This
|
| 15 |
+
General Public License applies to most of the Free Software
|
| 16 |
+
Foundation's software and to any other program whose authors commit to
|
| 17 |
+
using it. (Some other Free Software Foundation software is covered by
|
| 18 |
+
the GNU Lesser General Public License instead.) You can apply it to
|
| 19 |
+
your programs, too.
|
| 20 |
+
|
| 21 |
+
When we speak of free software, we are referring to freedom, not
|
| 22 |
+
price. Our General Public Licenses are designed to make sure that you
|
| 23 |
+
have the freedom to distribute copies of free software (and charge for
|
| 24 |
+
this service if you wish), that you receive source code or can get it
|
| 25 |
+
if you want it, that you can change the software or use pieces of it
|
| 26 |
+
in new free programs; and that you know you can do these things.
|
| 27 |
+
|
| 28 |
+
To protect your rights, we need to make restrictions that forbid
|
| 29 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
| 30 |
+
These restrictions translate to certain responsibilities for you if you
|
| 31 |
+
distribute copies of the software, or if you modify it.
|
| 32 |
+
|
| 33 |
+
For example, if you distribute copies of such a program, whether
|
| 34 |
+
gratis or for a fee, you must give the recipients all the rights that
|
| 35 |
+
you have. You must make sure that they, too, receive or can get the
|
| 36 |
+
source code. And you must show them these terms so they know their
|
| 37 |
+
rights.
|
| 38 |
+
|
| 39 |
+
We protect your rights with two steps: (1) copyright the software, and
|
| 40 |
+
(2) offer you this license which gives you legal permission to copy,
|
| 41 |
+
distribute and/or modify the software.
|
| 42 |
+
|
| 43 |
+
Also, for each author's protection and ours, we want to make certain
|
| 44 |
+
that everyone understands that there is no warranty for this free
|
| 45 |
+
software. If the software is modified by someone else and passed on, we
|
| 46 |
+
want its recipients to know that what they have is not the original, so
|
| 47 |
+
that any problems introduced by others will not reflect on the original
|
| 48 |
+
authors' reputations.
|
| 49 |
+
|
| 50 |
+
Finally, any free program is threatened constantly by software
|
| 51 |
+
patents. We wish to avoid the danger that redistributors of a free
|
| 52 |
+
program will individually obtain patent licenses, in effect making the
|
| 53 |
+
program proprietary. To prevent this, we have made it clear that any
|
| 54 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
| 55 |
+
|
| 56 |
+
The precise terms and conditions for copying, distribution and
|
| 57 |
+
modification follow.
|
| 58 |
+
|
| 59 |
+
GNU GENERAL PUBLIC LICENSE
|
| 60 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
| 61 |
+
|
| 62 |
+
0. This License applies to any program or other work which contains
|
| 63 |
+
a notice placed by the copyright holder saying it may be distributed
|
| 64 |
+
under the terms of this General Public License. The "Program", below,
|
| 65 |
+
refers to any such program or work, and a "work based on the Program"
|
| 66 |
+
means either the Program or any derivative work under copyright law:
|
| 67 |
+
that is to say, a work containing the Program or a portion of it,
|
| 68 |
+
either verbatim or with modifications and/or translated into another
|
| 69 |
+
language. (Hereinafter, translation is included without limitation in
|
| 70 |
+
the term "modification".) Each licensee is addressed as "you".
|
| 71 |
+
|
| 72 |
+
Activities other than copying, distribution and modification are not
|
| 73 |
+
covered by this License; they are outside its scope. The act of
|
| 74 |
+
running the Program is not restricted, and the output from the Program
|
| 75 |
+
is covered only if its contents constitute a work based on the
|
| 76 |
+
Program (independent of having been made by running the Program).
|
| 77 |
+
Whether that is true depends on what the Program does.
|
| 78 |
+
|
| 79 |
+
1. You may copy and distribute verbatim copies of the Program's
|
| 80 |
+
source code as you receive it, in any medium, provided that you
|
| 81 |
+
conspicuously and appropriately publish on each copy an appropriate
|
| 82 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
| 83 |
+
notices that refer to this License and to the absence of any warranty;
|
| 84 |
+
and give any other recipients of the Program a copy of this License
|
| 85 |
+
along with the Program.
|
| 86 |
+
|
| 87 |
+
You may charge a fee for the physical act of transferring a copy, and
|
| 88 |
+
you may at your option offer warranty protection in exchange for a fee.
|
| 89 |
+
|
| 90 |
+
2. You may modify your copy or copies of the Program or any portion
|
| 91 |
+
of it, thus forming a work based on the Program, and copy and
|
| 92 |
+
distribute such modifications or work under the terms of Section 1
|
| 93 |
+
above, provided that you also meet all of these conditions:
|
| 94 |
+
|
| 95 |
+
a) You must cause the modified files to carry prominent notices
|
| 96 |
+
stating that you changed the files and the date of any change.
|
| 97 |
+
|
| 98 |
+
b) You must cause any work that you distribute or publish, that in
|
| 99 |
+
whole or in part contains or is derived from the Program or any
|
| 100 |
+
part thereof, to be licensed as a whole at no charge to all third
|
| 101 |
+
parties under the terms of this License.
|
| 102 |
+
|
| 103 |
+
c) If the modified program normally reads commands interactively
|
| 104 |
+
when run, you must cause it, when started running for such
|
| 105 |
+
interactive use in the most ordinary way, to print or display an
|
| 106 |
+
announcement including an appropriate copyright notice and a
|
| 107 |
+
notice that there is no warranty (or else, saying that you provide
|
| 108 |
+
a warranty) and that users may redistribute the program under
|
| 109 |
+
these conditions, and telling the user how to view a copy of this
|
| 110 |
+
License. (Exception: if the Program itself is interactive but
|
| 111 |
+
does not normally print such an announcement, your work based on
|
| 112 |
+
the Program is not required to print an announcement.)
|
| 113 |
+
|
| 114 |
+
These requirements apply to the modified work as a whole. If
|
| 115 |
+
identifiable sections of that work are not derived from the Program,
|
| 116 |
+
and can be reasonably considered independent and separate works in
|
| 117 |
+
themselves, then this License, and its terms, do not apply to those
|
| 118 |
+
sections when you distribute them as separate works. But when you
|
| 119 |
+
distribute the same sections as part of a whole which is a work based
|
| 120 |
+
on the Program, the distribution of the whole must be on the terms of
|
| 121 |
+
this License, whose permissions for other licensees extend to the
|
| 122 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
| 123 |
+
|
| 124 |
+
Thus, it is not the intent of this section to claim rights or contest
|
| 125 |
+
your rights to work written entirely by you; rather, the intent is to
|
| 126 |
+
exercise the right to control the distribution of derivative or
|
| 127 |
+
collective works based on the Program.
|
| 128 |
+
|
| 129 |
+
In addition, mere aggregation of another work not based on the Program
|
| 130 |
+
with the Program (or with a work based on the Program) on a volume of
|
| 131 |
+
a storage or distribution medium does not bring the other work under
|
| 132 |
+
the scope of this License.
|
| 133 |
+
|
| 134 |
+
3. You may copy and distribute the Program (or a work based on it,
|
| 135 |
+
under Section 2) in object code or executable form under the terms of
|
| 136 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
| 137 |
+
|
| 138 |
+
a) Accompany it with the complete corresponding machine-readable
|
| 139 |
+
source code, which must be distributed under the terms of Sections
|
| 140 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
| 141 |
+
|
| 142 |
+
b) Accompany it with a written offer, valid for at least three
|
| 143 |
+
years, to give any third party, for a charge no more than your
|
| 144 |
+
cost of physically performing source distribution, a complete
|
| 145 |
+
machine-readable copy of the corresponding source code, to be
|
| 146 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
| 147 |
+
customarily used for software interchange; or,
|
| 148 |
+
|
| 149 |
+
c) Accompany it with the information you received as to the offer
|
| 150 |
+
to distribute corresponding source code. (This alternative is
|
| 151 |
+
allowed only for noncommercial distribution and only if you
|
| 152 |
+
received the program in object code or executable form with such
|
| 153 |
+
an offer, in accord with Subsection b above.)
|
| 154 |
+
|
| 155 |
+
The source code for a work means the preferred form of the work for
|
| 156 |
+
making modifications to it. For an executable work, complete source
|
| 157 |
+
code means all the source code for all modules it contains, plus any
|
| 158 |
+
associated interface definition files, plus the scripts used to
|
| 159 |
+
control compilation and installation of the executable. However, as a
|
| 160 |
+
special exception, the source code distributed need not include
|
| 161 |
+
anything that is normally distributed (in either source or binary
|
| 162 |
+
form) with the major components (compiler, kernel, and so on) of the
|
| 163 |
+
operating system on which the executable runs, unless that component
|
| 164 |
+
itself accompanies the executable.
|
| 165 |
+
|
| 166 |
+
If distribution of executable or object code is made by offering
|
| 167 |
+
access to copy from a designated place, then offering equivalent
|
| 168 |
+
access to copy the source code from the same place counts as
|
| 169 |
+
distribution of the source code, even though third parties are not
|
| 170 |
+
compelled to copy the source along with the object code.
|
| 171 |
+
|
| 172 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
| 173 |
+
except as expressly provided under this License. Any attempt
|
| 174 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
| 175 |
+
void, and will automatically terminate your rights under this License.
|
| 176 |
+
However, parties who have received copies, or rights, from you under
|
| 177 |
+
this License will not have their licenses terminated so long as such
|
| 178 |
+
parties remain in full compliance.
|
| 179 |
+
|
| 180 |
+
5. You are not required to accept this License, since you have not
|
| 181 |
+
signed it. However, nothing else grants you permission to modify or
|
| 182 |
+
distribute the Program or its derivative works. These actions are
|
| 183 |
+
prohibited by law if you do not accept this License. Therefore, by
|
| 184 |
+
modifying or distributing the Program (or any work based on the
|
| 185 |
+
Program), you indicate your acceptance of this License to do so, and
|
| 186 |
+
all its terms and conditions for copying, distributing or modifying
|
| 187 |
+
the Program or works based on it.
|
| 188 |
+
|
| 189 |
+
6. Each time you redistribute the Program (or any work based on the
|
| 190 |
+
Program), the recipient automatically receives a license from the
|
| 191 |
+
original licensor to copy, distribute or modify the Program subject to
|
| 192 |
+
these terms and conditions. You may not impose any further
|
| 193 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
| 194 |
+
You are not responsible for enforcing compliance by third parties to
|
| 195 |
+
this License.
|
| 196 |
+
|
| 197 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
| 198 |
+
infringement or for any other reason (not limited to patent issues),
|
| 199 |
+
conditions are imposed on you (whether by court order, agreement or
|
| 200 |
+
otherwise) that contradict the conditions of this License, they do not
|
| 201 |
+
excuse you from the conditions of this License. If you cannot
|
| 202 |
+
distribute so as to satisfy simultaneously your obligations under this
|
| 203 |
+
License and any other pertinent obligations, then as a consequence you
|
| 204 |
+
may not distribute the Program at all. For example, if a patent
|
| 205 |
+
license would not permit royalty-free redistribution of the Program by
|
| 206 |
+
all those who receive copies directly or indirectly through you, then
|
| 207 |
+
the only way you could satisfy both it and this License would be to
|
| 208 |
+
refrain entirely from distribution of the Program.
|
| 209 |
+
|
| 210 |
+
If any portion of this section is held invalid or unenforceable under
|
| 211 |
+
any particular circumstance, the balance of the section is intended to
|
| 212 |
+
apply and the section as a whole is intended to apply in other
|
| 213 |
+
circumstances.
|
| 214 |
+
|
| 215 |
+
It is not the purpose of this section to induce you to infringe any
|
| 216 |
+
patents or other property right claims or to contest validity of any
|
| 217 |
+
such claims; this section has the sole purpose of protecting the
|
| 218 |
+
integrity of the free software distribution system, which is
|
| 219 |
+
implemented by public license practices. Many people have made
|
| 220 |
+
generous contributions to the wide range of software distributed
|
| 221 |
+
through that system in reliance on consistent application of that
|
| 222 |
+
system; it is up to the author/donor to decide if he or she is willing
|
| 223 |
+
to distribute software through any other system and a licensee cannot
|
| 224 |
+
impose that choice.
|
| 225 |
+
|
| 226 |
+
This section is intended to make thoroughly clear what is believed to
|
| 227 |
+
be a consequence of the rest of this License.
|
| 228 |
+
|
| 229 |
+
8. If the distribution and/or use of the Program is restricted in
|
| 230 |
+
certain countries either by patents or by copyrighted interfaces, the
|
| 231 |
+
original copyright holder who places the Program under this License
|
| 232 |
+
may add an explicit geographical distribution limitation excluding
|
| 233 |
+
those countries, so that distribution is permitted only in or among
|
| 234 |
+
countries not thus excluded. In such case, this License incorporates
|
| 235 |
+
the limitation as if written in the body of this License.
|
| 236 |
+
|
| 237 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
| 238 |
+
of the General Public License from time to time. Such new versions will
|
| 239 |
+
be similar in spirit to the present version, but may differ in detail to
|
| 240 |
+
address new problems or concerns.
|
| 241 |
+
|
| 242 |
+
Each version is given a distinguishing version number. If the Program
|
| 243 |
+
specifies a version number of this License which applies to it and "any
|
| 244 |
+
later version", you have the option of following the terms and conditions
|
| 245 |
+
either of that version or of any later version published by the Free
|
| 246 |
+
Software Foundation. If the Program does not specify a version number of
|
| 247 |
+
this License, you may choose any version ever published by the Free Software
|
| 248 |
+
Foundation.
|
| 249 |
+
|
| 250 |
+
10. If you wish to incorporate parts of the Program into other free
|
| 251 |
+
programs whose distribution conditions are different, write to the author
|
| 252 |
+
to ask for permission. For software which is copyrighted by the Free
|
| 253 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
| 254 |
+
make exceptions for this. Our decision will be guided by the two goals
|
| 255 |
+
of preserving the free status of all derivatives of our free software and
|
| 256 |
+
of promoting the sharing and reuse of software generally.
|
| 257 |
+
|
| 258 |
+
NO WARRANTY
|
| 259 |
+
|
| 260 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
| 261 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
| 262 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
| 263 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
| 264 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
| 265 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
| 266 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
| 267 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
| 268 |
+
REPAIR OR CORRECTION.
|
| 269 |
+
|
| 270 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
| 271 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
| 272 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
| 273 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
| 274 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
| 275 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
| 276 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
| 277 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
| 278 |
+
POSSIBILITY OF SUCH DAMAGES.
|
| 279 |
+
|
| 280 |
+
END OF TERMS AND CONDITIONS
|
| 281 |
+
|
| 282 |
+
How to Apply These Terms to Your New Programs
|
| 283 |
+
|
| 284 |
+
If you develop a new program, and you want it to be of the greatest
|
| 285 |
+
possible use to the public, the best way to achieve this is to make it
|
| 286 |
+
free software which everyone can redistribute and change under these terms.
|
| 287 |
+
|
| 288 |
+
To do so, attach the following notices to the program. It is safest
|
| 289 |
+
to attach them to the start of each source file to most effectively
|
| 290 |
+
convey the exclusion of warranty; and each file should have at least
|
| 291 |
+
the "copyright" line and a pointer to where the full notice is found.
|
| 292 |
+
|
| 293 |
+
{description}
|
| 294 |
+
Copyright (C) {year} {fullname}
|
| 295 |
+
|
| 296 |
+
This program is free software; you can redistribute it and/or modify
|
| 297 |
+
it under the terms of the GNU General Public License as published by
|
| 298 |
+
the Free Software Foundation; either version 2 of the License, or
|
| 299 |
+
(at your option) any later version.
|
| 300 |
+
|
| 301 |
+
This program is distributed in the hope that it will be useful,
|
| 302 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 303 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 304 |
+
GNU General Public License for more details.
|
| 305 |
+
|
| 306 |
+
You should have received a copy of the GNU General Public License along
|
| 307 |
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
| 308 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
| 309 |
+
|
| 310 |
+
Also add information on how to contact you by electronic and paper mail.
|
| 311 |
+
|
| 312 |
+
If the program is interactive, make it output a short notice like this
|
| 313 |
+
when it starts in an interactive mode:
|
| 314 |
+
|
| 315 |
+
Gnomovision version 69, Copyright (C) year name of author
|
| 316 |
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
| 317 |
+
This is free software, and you are welcome to redistribute it
|
| 318 |
+
under certain conditions; type `show c' for details.
|
| 319 |
+
|
| 320 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
| 321 |
+
parts of the General Public License. Of course, the commands you use may
|
| 322 |
+
be called something other than `show w' and `show c'; they could even be
|
| 323 |
+
mouse-clicks or menu items--whatever suits your program.
|
| 324 |
+
|
| 325 |
+
You should also get your employer (if you work as a programmer) or your
|
| 326 |
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
| 327 |
+
necessary. Here is a sample; alter the names:
|
| 328 |
+
|
| 329 |
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
| 330 |
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
| 331 |
+
|
| 332 |
+
{signature of Ty Coon}, 1 April 1989
|
| 333 |
+
Ty Coon, President of Vice
|
| 334 |
+
|
| 335 |
+
This General Public License does not permit incorporating your program into
|
| 336 |
+
proprietary programs. If your program is a subroutine library, you may
|
| 337 |
+
consider it more useful to permit linking proprietary applications with the
|
| 338 |
+
library. If this is what you want to do, use the GNU Lesser General
|
| 339 |
+
Public License instead of this License.
|
extendify-sdk/app/Admin.php
CHANGED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
* Admin.
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
-
use Extendify\
|
| 10 |
-
use Extendify\
|
| 11 |
|
| 12 |
/**
|
| 13 |
* This class handles any file loading for the admin area.
|
|
@@ -35,6 +35,24 @@ class Admin
|
|
| 35 |
|
| 36 |
self::$instance = $this;
|
| 37 |
$this->loadScripts();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
}
|
| 39 |
|
| 40 |
/**
|
|
@@ -90,7 +108,7 @@ class Admin
|
|
| 90 |
|
| 91 |
\wp_register_script(
|
| 92 |
App::$slug . '-scripts',
|
| 93 |
-
|
| 94 |
[
|
| 95 |
'wp-i18n',
|
| 96 |
'wp-components',
|
|
@@ -102,13 +120,14 @@ class Admin
|
|
| 102 |
);
|
| 103 |
\wp_localize_script(
|
| 104 |
App::$slug . '-scripts',
|
| 105 |
-
'
|
| 106 |
[
|
| 107 |
'root' => \esc_url_raw(rest_url(APP::$slug . '/' . APP::$apiVersion)),
|
| 108 |
'nonce' => \wp_create_nonce('wp_rest'),
|
| 109 |
'user' => json_decode(User::data('extendifysdk_user_data'), true),
|
| 110 |
'sitesettings' => json_decode(SiteSettings::data()),
|
| 111 |
'sdk_partner' => \esc_attr(APP::$sdkPartner),
|
|
|
|
| 112 |
]
|
| 113 |
);
|
| 114 |
\wp_enqueue_script(App::$slug . '-scripts');
|
|
@@ -116,16 +135,16 @@ class Admin
|
|
| 116 |
\wp_set_script_translations(App::$slug . '-scripts', App::$textDomain);
|
| 117 |
|
| 118 |
\wp_enqueue_style(
|
| 119 |
-
App::$slug
|
| 120 |
-
|
| 121 |
[],
|
| 122 |
$version,
|
| 123 |
'all'
|
| 124 |
);
|
| 125 |
|
| 126 |
\wp_enqueue_style(
|
| 127 |
-
App::$slug . '-
|
| 128 |
-
|
| 129 |
[],
|
| 130 |
$version,
|
| 131 |
'all'
|
| 3 |
* Admin.
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
+
use Extendify\Library\User;
|
| 10 |
+
use Extendify\Library\SiteSettings;
|
| 11 |
|
| 12 |
/**
|
| 13 |
* This class handles any file loading for the admin area.
|
| 35 |
|
| 36 |
self::$instance = $this;
|
| 37 |
$this->loadScripts();
|
| 38 |
+
|
| 39 |
+
\add_filter('plugin_action_links_' . EXTENDIFY_PLUGIN_BASENAME, [ $this, 'pluginActionLinks' ]);
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
/**
|
| 43 |
+
* Adds action links to the plugin list table
|
| 44 |
+
*
|
| 45 |
+
* @param array $links An array of plugin action links.
|
| 46 |
+
* @return array An array of plugin action links.
|
| 47 |
+
*/
|
| 48 |
+
public function pluginActionLinks($links)
|
| 49 |
+
{
|
| 50 |
+
$theme = get_option('template');
|
| 51 |
+
$label = esc_html__('Upgrade', 'extendify');
|
| 52 |
+
|
| 53 |
+
$links['upgrade'] = sprintf('<a href="%1$s" target="_blank"><b>%2$s</b></a>', "https://extendify.com/pricing?utm_source=extendify-plugin&utm_medium=wp-dash&utm_campaign=action-link&utm_content=$label&utm_term=$theme", $label);
|
| 54 |
+
|
| 55 |
+
return $links;
|
| 56 |
}
|
| 57 |
|
| 58 |
/**
|
| 108 |
|
| 109 |
\wp_register_script(
|
| 110 |
App::$slug . '-scripts',
|
| 111 |
+
EXTENDIFY_BASE_URL . 'public/build/extendify.js',
|
| 112 |
[
|
| 113 |
'wp-i18n',
|
| 114 |
'wp-components',
|
| 120 |
);
|
| 121 |
\wp_localize_script(
|
| 122 |
App::$slug . '-scripts',
|
| 123 |
+
'extendifyData',
|
| 124 |
[
|
| 125 |
'root' => \esc_url_raw(rest_url(APP::$slug . '/' . APP::$apiVersion)),
|
| 126 |
'nonce' => \wp_create_nonce('wp_rest'),
|
| 127 |
'user' => json_decode(User::data('extendifysdk_user_data'), true),
|
| 128 |
'sitesettings' => json_decode(SiteSettings::data()),
|
| 129 |
'sdk_partner' => \esc_attr(APP::$sdkPartner),
|
| 130 |
+
'asset_path' => \esc_url(EXTENDIFY_URL . 'public/assets'),
|
| 131 |
]
|
| 132 |
);
|
| 133 |
\wp_enqueue_script(App::$slug . '-scripts');
|
| 135 |
\wp_set_script_translations(App::$slug . '-scripts', App::$textDomain);
|
| 136 |
|
| 137 |
\wp_enqueue_style(
|
| 138 |
+
App::$slug,
|
| 139 |
+
EXTENDIFY_BASE_URL . 'public/build/extendify.css',
|
| 140 |
[],
|
| 141 |
$version,
|
| 142 |
'all'
|
| 143 |
);
|
| 144 |
|
| 145 |
\wp_enqueue_style(
|
| 146 |
+
App::$slug . '-utilities',
|
| 147 |
+
EXTENDIFY_BASE_URL . 'public/build/extendify-utilities.css',
|
| 148 |
[],
|
| 149 |
$version,
|
| 150 |
'all'
|
extendify-sdk/app/ApiRouter.php
CHANGED
|
@@ -3,10 +3,10 @@
|
|
| 3 |
* API router
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
-
use Extendify\
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Simple router for the REST Endpoints
|
| 3 |
* API router
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
+
use Extendify\Library\Http;
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Simple router for the REST Endpoints
|
extendify-sdk/app/App.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* The App details file
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
/**
|
| 11 |
* Controller for handling various app data
|
|
@@ -100,7 +100,7 @@ class App
|
|
| 100 |
self::$version = $matches[1];
|
| 101 |
|
| 102 |
// An easy way to check if we are in dev mode is to look for a dev specific file.
|
| 103 |
-
$isDev = is_readable(
|
| 104 |
self::$environment = $isDev ? 'DEVELOPMENT' : 'PRODUCTION';
|
| 105 |
|
| 106 |
self::$textDomain = Plugin::getPluginInfo('TextDomain', self::$slug);
|
| 3 |
* The App details file
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Plugin;
|
| 9 |
|
| 10 |
/**
|
| 11 |
* Controller for handling various app data
|
| 100 |
self::$version = $matches[1];
|
| 101 |
|
| 102 |
// An easy way to check if we are in dev mode is to look for a dev specific file.
|
| 103 |
+
$isDev = is_readable(EXTENDIFY_PATH . 'node_modules') || is_readable(EXTENDIFY_PATH . '.devbuild');
|
| 104 |
self::$environment = $isDev ? 'DEVELOPMENT' : 'PRODUCTION';
|
| 105 |
|
| 106 |
self::$textDomain = Plugin::getPluginInfo('TextDomain', self::$slug);
|
extendify-sdk/app/Controllers/AuthController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Auth
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 3 |
* Controls Auth
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
extendify-sdk/app/Controllers/MetaController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
extendify-sdk/app/Controllers/PingController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
extendify-sdk/app/Controllers/PluginController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Plugins
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
|
@@ -44,23 +44,12 @@ class PluginController
|
|
| 44 |
/**
|
| 45 |
* Install plugins
|
| 46 |
*
|
| 47 |
-
* @
|
| 48 |
-
* @return bool
|
| 49 |
*/
|
| 50 |
-
public static function install(
|
| 51 |
{
|
| 52 |
if (!\current_user_can('activate_plugins')) {
|
| 53 |
-
return new \WP_Error('not_allowed', \__('You are not allowed to activate plugins on this site.', 'extendify
|
| 54 |
-
}
|
| 55 |
-
|
| 56 |
-
$requiredPlugins = json_decode($request->get_param('plugins'), true);
|
| 57 |
-
|
| 58 |
-
foreach ($requiredPlugins as $plugin) {
|
| 59 |
-
$status = Plugin::install_and_activate_plugin($plugin);
|
| 60 |
-
if (\is_wp_error($status)) {
|
| 61 |
-
// Return first error encountered.
|
| 62 |
-
return $status;
|
| 63 |
-
}
|
| 64 |
}
|
| 65 |
|
| 66 |
return true;
|
| 3 |
* Controls Plugins
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Plugin;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 44 |
/**
|
| 45 |
* Install plugins
|
| 46 |
*
|
| 47 |
+
* @return bool|WP_Error
|
|
|
|
| 48 |
*/
|
| 49 |
+
public static function install()
|
| 50 |
{
|
| 51 |
if (!\current_user_can('activate_plugins')) {
|
| 52 |
+
return new \WP_Error('not_allowed', \__('You are not allowed to activate plugins on this site.', 'extendify'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
}
|
| 54 |
|
| 55 |
return true;
|
extendify-sdk/app/Controllers/SiteSettingsController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls User info
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 3 |
* Controls User info
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\SiteSettings;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
extendify-sdk/app/Controllers/TaxonomyController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Taxonomies
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
|
@@ -23,7 +23,7 @@ class TaxonomyController
|
|
| 23 |
*/
|
| 24 |
public static function index()
|
| 25 |
{
|
| 26 |
-
$response = Http::get('/
|
| 27 |
return new \WP_REST_Response($response);
|
| 28 |
}
|
| 29 |
}
|
| 3 |
* Controls Taxonomies
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 23 |
*/
|
| 24 |
public static function index()
|
| 25 |
{
|
| 26 |
+
$response = Http::get('/taxonomies', []);
|
| 27 |
return new \WP_REST_Response($response);
|
| 28 |
}
|
| 29 |
}
|
extendify-sdk/app/Controllers/TemplateController.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
|
@@ -25,19 +25,7 @@ class TemplateController
|
|
| 25 |
*/
|
| 26 |
public static function index($request)
|
| 27 |
{
|
| 28 |
-
$response = Http::post('/
|
| 29 |
-
return new \WP_REST_Response($response);
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
-
/**
|
| 33 |
-
* Get related templates
|
| 34 |
-
*
|
| 35 |
-
* @param \WP_REST_Request $request - The request.
|
| 36 |
-
* @return WP_REST_Response|WP_Error
|
| 37 |
-
*/
|
| 38 |
-
public static function related($request)
|
| 39 |
-
{
|
| 40 |
-
$response = Http::post('/templates/related', $request->get_params());
|
| 41 |
return new \WP_REST_Response($response);
|
| 42 |
}
|
| 43 |
|
|
@@ -49,7 +37,7 @@ class TemplateController
|
|
| 49 |
*/
|
| 50 |
public static function ping($request)
|
| 51 |
{
|
| 52 |
-
$response = Http::post('/
|
| 53 |
return new \WP_REST_Response($response);
|
| 54 |
}
|
| 55 |
}
|
| 3 |
* Controls Http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 25 |
*/
|
| 26 |
public static function index($request)
|
| 27 |
{
|
| 28 |
+
$response = Http::post('/templates', $request->get_params());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
return new \WP_REST_Response($response);
|
| 30 |
}
|
| 31 |
|
| 37 |
*/
|
| 38 |
public static function ping($request)
|
| 39 |
{
|
| 40 |
+
$response = Http::post('/templates', $request->get_params());
|
| 41 |
return new \WP_REST_Response($response);
|
| 42 |
}
|
| 43 |
}
|
extendify-sdk/app/Controllers/UserController.php
CHANGED
|
@@ -3,10 +3,10 @@
|
|
| 3 |
* Controls User info
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
-
use Extendify\
|
| 10 |
|
| 11 |
if (!defined('ABSPATH')) {
|
| 12 |
die('No direct access.');
|
|
@@ -49,6 +49,7 @@ class UserController
|
|
| 49 |
public static function store($request)
|
| 50 |
{
|
| 51 |
$userData = json_decode($request->get_param('data'), true);
|
|
|
|
| 52 |
\update_user_meta(\get_current_user_id(), 'extendifysdk_user_data', $userData);
|
| 53 |
|
| 54 |
return new \WP_REST_Response(User::state());
|
|
@@ -65,4 +66,15 @@ class UserController
|
|
| 65 |
$response = Http::post('/register-mailing-list', $request->get_params());
|
| 66 |
return new \WP_REST_Response($response);
|
| 67 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
}
|
| 3 |
* Controls User info
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library\Controllers;
|
| 7 |
|
| 8 |
+
use Extendify\Library\Http;
|
| 9 |
+
use Extendify\Library\User;
|
| 10 |
|
| 11 |
if (!defined('ABSPATH')) {
|
| 12 |
die('No direct access.');
|
| 49 |
public static function store($request)
|
| 50 |
{
|
| 51 |
$userData = json_decode($request->get_param('data'), true);
|
| 52 |
+
// Keep this key for historical reasons.
|
| 53 |
\update_user_meta(\get_current_user_id(), 'extendifysdk_user_data', $userData);
|
| 54 |
|
| 55 |
return new \WP_REST_Response(User::state());
|
| 66 |
$response = Http::post('/register-mailing-list', $request->get_params());
|
| 67 |
return new \WP_REST_Response($response);
|
| 68 |
}
|
| 69 |
+
|
| 70 |
+
/**
|
| 71 |
+
* Get the max imports
|
| 72 |
+
*
|
| 73 |
+
* @return WP_REST_Response|WP_Error
|
| 74 |
+
*/
|
| 75 |
+
public static function maxImports()
|
| 76 |
+
{
|
| 77 |
+
$response = Http::get('/max-free-imports');
|
| 78 |
+
return new \WP_REST_Response($response);
|
| 79 |
+
}
|
| 80 |
}
|
extendify-sdk/app/Frontend.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Manage any frontend related tasks here.
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
/**
|
| 11 |
* This class handles any file loading for the frontend of the site.
|
|
@@ -60,8 +60,8 @@ class Frontend
|
|
| 60 |
{
|
| 61 |
$version = App::$environment === 'PRODUCTION' ? App::$version : uniqid();
|
| 62 |
\wp_enqueue_style(
|
| 63 |
-
App::$slug . '-
|
| 64 |
-
|
| 65 |
[],
|
| 66 |
$version,
|
| 67 |
'all'
|
| 3 |
* Manage any frontend related tasks here.
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
|
| 10 |
/**
|
| 11 |
* This class handles any file loading for the frontend of the site.
|
| 60 |
{
|
| 61 |
$version = App::$environment === 'PRODUCTION' ? App::$version : uniqid();
|
| 62 |
\wp_enqueue_style(
|
| 63 |
+
App::$slug . '-utilities',
|
| 64 |
+
EXTENDIFY_BASE_URL . 'public/build/extendify-utilities.css',
|
| 65 |
[],
|
| 66 |
$version,
|
| 67 |
'all'
|
extendify-sdk/app/Http.php
CHANGED
|
@@ -3,10 +3,10 @@
|
|
| 3 |
* Helper class for making http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
-
use Extendify\
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Controller for http communication
|
|
@@ -64,7 +64,7 @@ class Http
|
|
| 64 |
'wp_theme' => \get_option('template'),
|
| 65 |
'mode' => App::$environment,
|
| 66 |
'uuid' => User::data('uuid'),
|
| 67 |
-
'
|
| 68 |
'wp_active_plugins' => $request->get_method() === 'POST' ? \get_option('active_plugins') : [],
|
| 69 |
'sdk_partner' => App::$sdkPartner,
|
| 70 |
];
|
| 3 |
* Helper class for making http requests
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
+
use Extendify\Library\User;
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Controller for http communication
|
| 64 |
'wp_theme' => \get_option('template'),
|
| 65 |
'mode' => App::$environment,
|
| 66 |
'uuid' => User::data('uuid'),
|
| 67 |
+
'library_version' => App::$version,
|
| 68 |
'wp_active_plugins' => $request->get_method() === 'POST' ? \get_option('active_plugins') : [],
|
| 69 |
'sdk_partner' => App::$sdkPartner,
|
| 70 |
];
|
extendify-sdk/app/Plugin.php
CHANGED
|
@@ -6,197 +6,15 @@
|
|
| 6 |
* Manage plugin dependencies
|
| 7 |
*/
|
| 8 |
|
| 9 |
-
namespace Extendify\
|
| 10 |
|
| 11 |
class Plugin
|
| 12 |
{
|
| 13 |
-
/**
|
| 14 |
-
* Install and activate a plugin.
|
| 15 |
-
*
|
| 16 |
-
* @param string $slug Plugin slug.
|
| 17 |
-
*
|
| 18 |
-
* @return bool|WP_Error True if installation succeeded, error object otherwise.
|
| 19 |
-
*/
|
| 20 |
-
public static function install_and_activate_plugin($slug)
|
| 21 |
-
{
|
| 22 |
-
$plugin_id = self::get_plugin_id_by_slug($slug);
|
| 23 |
-
if (! $plugin_id) {
|
| 24 |
-
$installed = self::install_plugin($slug);
|
| 25 |
-
if (is_wp_error($installed)) {
|
| 26 |
-
return $installed;
|
| 27 |
-
}
|
| 28 |
-
$plugin_id = self::get_plugin_id_by_slug($slug);
|
| 29 |
-
} elseif (is_plugin_active($plugin_id)) {
|
| 30 |
-
return true; // Already installed and active.
|
| 31 |
-
}
|
| 32 |
-
|
| 33 |
-
if (! current_user_can('activate_plugins')) {
|
| 34 |
-
return new \WP_Error('not_allowed', __('You are not allowed to activate plugins on this site.', 'templates_sdk'));
|
| 35 |
-
}
|
| 36 |
-
|
| 37 |
-
$activated = \activate_plugin($plugin_id);
|
| 38 |
-
if (\is_wp_error($activated)) {
|
| 39 |
-
return $activated;
|
| 40 |
-
}
|
| 41 |
-
|
| 42 |
-
return true;
|
| 43 |
-
}
|
| 44 |
-
|
| 45 |
-
/**
|
| 46 |
-
* Install a plugin.
|
| 47 |
-
*
|
| 48 |
-
* @param string $slug Plugin slug.
|
| 49 |
-
*
|
| 50 |
-
* @return bool|WP_Error True if installation succeeded, error object otherwise.
|
| 51 |
-
*/
|
| 52 |
-
public static function install_plugin($slug)
|
| 53 |
-
{
|
| 54 |
-
if (\is_multisite() && !\current_user_can('manage_network')) {
|
| 55 |
-
return new \WP_Error('not_allowed', __('You are not allowed to install plugins on this site.', 'templates_sdk'));
|
| 56 |
-
}
|
| 57 |
-
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
| 58 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
| 59 |
-
require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
|
| 60 |
-
require_once ABSPATH . 'wp-admin/includes/file.php';
|
| 61 |
-
require_once ABSPATH . 'wp-admin/includes/misc.php';
|
| 62 |
-
$installer = new \Plugin_Upgrader(new Skin());
|
| 63 |
-
$zip_url = self::generate_wordpress_org_plugin_download_link($slug);
|
| 64 |
-
|
| 65 |
-
$result = $installer->install($zip_url);
|
| 66 |
-
|
| 67 |
-
if (is_wp_error($result)) {
|
| 68 |
-
return $result;
|
| 69 |
-
}
|
| 70 |
-
|
| 71 |
-
$plugin = self::get_plugin_id_by_slug($slug);
|
| 72 |
-
$error_code = 'install_error';
|
| 73 |
-
if (! $plugin) {
|
| 74 |
-
$error = __('There was an error installing your plugin', 'templates_sdk');
|
| 75 |
-
}
|
| 76 |
-
|
| 77 |
-
if (! $result) {
|
| 78 |
-
$error_code = $installer->skin->get_main_error_code();
|
| 79 |
-
$message = $installer->skin->get_main_error_message();
|
| 80 |
-
$error = $message ? $message : __('An unknown error occurred during installation', 'templates_sdk');
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
-
if (! empty($error)) {
|
| 84 |
-
return new \WP_Error($error_code, $error, 400);
|
| 85 |
-
}
|
| 86 |
-
|
| 87 |
-
return (array) $installer->skin->get_upgrade_messages();
|
| 88 |
-
}
|
| 89 |
-
|
| 90 |
-
/**
|
| 91 |
-
* Get WordPress.org zip download link from a plugin slug
|
| 92 |
-
*
|
| 93 |
-
* @param string $plugin_slug Plugin slug.
|
| 94 |
-
*/
|
| 95 |
-
protected static function generate_wordpress_org_plugin_download_link($plugin_slug)
|
| 96 |
-
{
|
| 97 |
-
return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip";
|
| 98 |
-
}
|
| 99 |
-
|
| 100 |
-
/**
|
| 101 |
-
* Get the plugin ID (composed of the plugin slug and the name of the main plugin file) from a plugin slug.
|
| 102 |
-
*
|
| 103 |
-
* @param string $slug Plugin slug.
|
| 104 |
-
*/
|
| 105 |
-
public static function get_plugin_id_by_slug($slug)
|
| 106 |
-
{
|
| 107 |
-
// Check if get_plugins() function exists. This is required on the front end of the
|
| 108 |
-
// site, since it is in a file that is normally only loaded in the admin.
|
| 109 |
-
if (! function_exists('get_plugins')) {
|
| 110 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
| 111 |
-
}
|
| 112 |
-
|
| 113 |
-
/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
|
| 114 |
-
$plugins = apply_filters('all_plugins', get_plugins());
|
| 115 |
-
if (! is_array($plugins)) {
|
| 116 |
-
return false;
|
| 117 |
-
}
|
| 118 |
-
|
| 119 |
-
foreach ($plugins as $plugin_file => $plugin_data) {
|
| 120 |
-
if (self::get_slug_from_file_path($plugin_file) === $slug) {
|
| 121 |
-
return $plugin_file;
|
| 122 |
-
}
|
| 123 |
-
}
|
| 124 |
-
|
| 125 |
-
return false;
|
| 126 |
-
}
|
| 127 |
-
|
| 128 |
-
/**
|
| 129 |
-
* Get the plugin slug from the plugin ID (composed of the plugin slug and the name of the main plugin file)
|
| 130 |
-
*
|
| 131 |
-
* @param string $plugin_file Plugin file (ID -- e.g. hello-dolly/hello.php).
|
| 132 |
-
*/
|
| 133 |
-
protected static function get_slug_from_file_path($plugin_file)
|
| 134 |
-
{
|
| 135 |
-
// Similar to get_plugin_slug() method.
|
| 136 |
-
$slug = dirname($plugin_file);
|
| 137 |
-
if ('.' === $slug) {
|
| 138 |
-
$slug = preg_replace('/(.+)\.php$/', '$1', $plugin_file);
|
| 139 |
-
}
|
| 140 |
-
|
| 141 |
-
return $slug;
|
| 142 |
-
}
|
| 143 |
-
|
| 144 |
-
/**
|
| 145 |
-
* Get the activation status for a plugin.
|
| 146 |
-
*
|
| 147 |
-
* @since 8.9.0
|
| 148 |
-
*
|
| 149 |
-
* @param string $plugin_file The plugin file to check.
|
| 150 |
-
* @return string Either 'network-active', 'active' or 'inactive'.
|
| 151 |
-
*/
|
| 152 |
-
public static function get_plugin_status($plugin_file)
|
| 153 |
-
{
|
| 154 |
-
if (is_plugin_active_for_network($plugin_file)) {
|
| 155 |
-
return 'network-active';
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
if (is_plugin_active($plugin_file)) {
|
| 159 |
-
return 'active';
|
| 160 |
-
}
|
| 161 |
-
|
| 162 |
-
return 'inactive';
|
| 163 |
-
}
|
| 164 |
-
|
| 165 |
-
/**
|
| 166 |
-
* Returns a list of all plugins in the site.
|
| 167 |
-
*
|
| 168 |
-
* @since 8.9.0
|
| 169 |
-
* @uses get_plugins()
|
| 170 |
-
*
|
| 171 |
-
* @return array
|
| 172 |
-
*/
|
| 173 |
-
public static function get_plugins()
|
| 174 |
-
{
|
| 175 |
-
if (! function_exists('get_plugins')) {
|
| 176 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
| 177 |
-
}
|
| 178 |
-
/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
|
| 179 |
-
$plugins = apply_filters('all_plugins', get_plugins());
|
| 180 |
-
|
| 181 |
-
if (is_array($plugins) && ! empty($plugins)) {
|
| 182 |
-
foreach ($plugins as $plugin_slug => $plugin_data) {
|
| 183 |
-
$plugins[ $plugin_slug ]['active'] = in_array(
|
| 184 |
-
self::get_plugin_status($plugin_slug),
|
| 185 |
-
array( 'active', 'network-active' ),
|
| 186 |
-
true
|
| 187 |
-
);
|
| 188 |
-
}
|
| 189 |
-
return $plugins;
|
| 190 |
-
}
|
| 191 |
-
|
| 192 |
-
return array();
|
| 193 |
-
}
|
| 194 |
-
|
| 195 |
/**
|
| 196 |
* Will return info about a plugin
|
| 197 |
*
|
| 198 |
* @param string $identifier The key of the plugin info.
|
| 199 |
-
* @param string $plugin_id The plugin identifier string
|
| 200 |
* @return string
|
| 201 |
*/
|
| 202 |
public static function getPluginInfo($identifier, $plugin_id)
|
|
@@ -214,122 +32,3 @@ class Plugin
|
|
| 214 |
return false;
|
| 215 |
}
|
| 216 |
}
|
| 217 |
-
|
| 218 |
-
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
| 219 |
-
require_once ABSPATH . 'wp-admin/includes/file.php';
|
| 220 |
-
|
| 221 |
-
/**
|
| 222 |
-
* Allows us to capture that the site doesn't have proper file system access.
|
| 223 |
-
* In order to update the plugin.
|
| 224 |
-
*/
|
| 225 |
-
class Skin extends \Automatic_Upgrader_Skin
|
| 226 |
-
{
|
| 227 |
-
/**
|
| 228 |
-
* Stores the last error key;
|
| 229 |
-
**/
|
| 230 |
-
protected $main_error_code = 'install_error';
|
| 231 |
-
|
| 232 |
-
/**
|
| 233 |
-
* Stores the last error message.
|
| 234 |
-
**/
|
| 235 |
-
protected $main_error_message = 'An unknown error occurred during installation';
|
| 236 |
-
|
| 237 |
-
/**
|
| 238 |
-
* Overwrites the set_upgrader to be able to tell if we e ven have the ability to write to the files.
|
| 239 |
-
*
|
| 240 |
-
* @param WP_Upgrader $upgrader
|
| 241 |
-
*
|
| 242 |
-
*/
|
| 243 |
-
public function set_upgrader(&$upgrader)
|
| 244 |
-
{
|
| 245 |
-
parent::set_upgrader($upgrader);
|
| 246 |
-
|
| 247 |
-
// Check if we even have permission to.
|
| 248 |
-
$result = $upgrader->fs_connect(array( WP_CONTENT_DIR, WP_PLUGIN_DIR ));
|
| 249 |
-
if (! $result) {
|
| 250 |
-
// set the string here since they are not available just yet
|
| 251 |
-
$upgrader->generic_strings();
|
| 252 |
-
$this->feedback('fs_unavailable');
|
| 253 |
-
}
|
| 254 |
-
}
|
| 255 |
-
|
| 256 |
-
/**
|
| 257 |
-
* Overwrites the error function
|
| 258 |
-
*/
|
| 259 |
-
public function error($error)
|
| 260 |
-
{
|
| 261 |
-
if (is_wp_error($error)) {
|
| 262 |
-
$this->feedback($error);
|
| 263 |
-
}
|
| 264 |
-
}
|
| 265 |
-
|
| 266 |
-
private function set_main_error_code($code)
|
| 267 |
-
{
|
| 268 |
-
// Don't set the process_failed as code since it is not that helpful unless we don't have one already set.
|
| 269 |
-
$this->main_error_code = ($code === 'process_failed' && $this->main_error_code ? $this->main_error_code : $code);
|
| 270 |
-
}
|
| 271 |
-
|
| 272 |
-
private function set_main_error_message($message, $code)
|
| 273 |
-
{
|
| 274 |
-
// Don't set the process_failed as message since it is not that helpful unless we don't have one already set.
|
| 275 |
-
$this->main_error_message = ($code === 'process_failed' && $this->main_error_code ? $this->main_error_code : $message);
|
| 276 |
-
}
|
| 277 |
-
|
| 278 |
-
public function get_main_error_code()
|
| 279 |
-
{
|
| 280 |
-
return $this->main_error_code;
|
| 281 |
-
}
|
| 282 |
-
|
| 283 |
-
public function get_main_error_message()
|
| 284 |
-
{
|
| 285 |
-
return $this->main_error_message;
|
| 286 |
-
}
|
| 287 |
-
|
| 288 |
-
/**
|
| 289 |
-
* Overwrites the feedback function
|
| 290 |
-
*
|
| 291 |
-
* @param string|array|WP_Error $data Data.
|
| 292 |
-
* @param mixed ...$args Optional text replacements.
|
| 293 |
-
*/
|
| 294 |
-
public function feedback($data, ...$args)
|
| 295 |
-
{
|
| 296 |
-
$current_error = null;
|
| 297 |
-
if (is_wp_error($data)) {
|
| 298 |
-
$this->set_main_error_code($data->get_error_code());
|
| 299 |
-
$string = $data->get_error_message();
|
| 300 |
-
} elseif (is_array($data)) {
|
| 301 |
-
return;
|
| 302 |
-
} else {
|
| 303 |
-
$string = $data;
|
| 304 |
-
}
|
| 305 |
-
|
| 306 |
-
if (! empty($this->upgrader->strings[$string])) {
|
| 307 |
-
$this->set_main_error_code($string);
|
| 308 |
-
|
| 309 |
-
$current_error = $string;
|
| 310 |
-
$string = $this->upgrader->strings[$string];
|
| 311 |
-
}
|
| 312 |
-
|
| 313 |
-
if (strpos($string, '%') !== false) {
|
| 314 |
-
if (! empty($args)) {
|
| 315 |
-
$string = vsprintf($string, $args);
|
| 316 |
-
}
|
| 317 |
-
}
|
| 318 |
-
|
| 319 |
-
$string = trim($string);
|
| 320 |
-
$string = wp_kses(
|
| 321 |
-
$string,
|
| 322 |
-
array(
|
| 323 |
-
'a' => array(
|
| 324 |
-
'href' => true
|
| 325 |
-
),
|
| 326 |
-
'br' => true,
|
| 327 |
-
'em' => true,
|
| 328 |
-
'strong' => true,
|
| 329 |
-
)
|
| 330 |
-
);
|
| 331 |
-
|
| 332 |
-
$this->set_main_error_message($string, $current_error);
|
| 333 |
-
$this->messages[] = $string;
|
| 334 |
-
}
|
| 335 |
-
}
|
| 6 |
* Manage plugin dependencies
|
| 7 |
*/
|
| 8 |
|
| 9 |
+
namespace Extendify\Library;
|
| 10 |
|
| 11 |
class Plugin
|
| 12 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
/**
|
| 14 |
* Will return info about a plugin
|
| 15 |
*
|
| 16 |
* @param string $identifier The key of the plugin info.
|
| 17 |
+
* @param string $plugin_id The plugin identifier string.
|
| 18 |
* @return string
|
| 19 |
*/
|
| 20 |
public static function getPluginInfo($identifier, $plugin_id)
|
| 32 |
return false;
|
| 33 |
}
|
| 34 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/app/Shared.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Manage any shared assets that load within the editor and the front-end.
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
/**
|
| 11 |
* This class handles assets that load within the editor and the front-end.
|
|
@@ -113,7 +113,7 @@ class Shared
|
|
| 113 |
--wp--preset--color--tertiary: var(--global-palette7);
|
| 114 |
--wp--custom--spacing--large: clamp(var(--global-sm-spacing), 5vw, var(--global-xxl-spacing));
|
| 115 |
--wp--preset--font-size--large: var(--h2FontSize);
|
| 116 |
-
--wp--preset--font-size--huge: var(--h1FontSize);
|
| 117 |
}';
|
| 118 |
}
|
| 119 |
|
|
@@ -126,7 +126,7 @@ class Shared
|
|
| 126 |
--wp--preset--color--tertiary: var(--nv-light-bg);
|
| 127 |
--wp--custom--spacing--large: clamp(15px, 5vw, 80px);
|
| 128 |
--wp--preset--font-size--large: var(--h2FontSize);
|
| 129 |
-
--wp--preset--font-size--huge: var(--h1FontSize);
|
| 130 |
}';
|
| 131 |
}
|
| 132 |
|
|
@@ -211,7 +211,7 @@ class Shared
|
|
| 211 |
|
| 212 |
if ($this->theme === 'twentytwentytwo') {
|
| 213 |
$css = 'body, .editor-styles-wrapper {
|
| 214 |
-
--extendify--spacing--large: clamp(2rem,8vw,8rem);
|
| 215 |
}';
|
| 216 |
}
|
| 217 |
|
|
@@ -224,7 +224,7 @@ class Shared
|
|
| 224 |
--wp--preset--color--tertiary: var(--global--color-light-gray);
|
| 225 |
--wp--style--block-gap: var(--global--spacing-unit);
|
| 226 |
--wp--preset--font-size--large: 2.5rem;
|
| 227 |
-
--wp--preset--font-size--huge: var(--global--font-size-xxl);
|
| 228 |
}
|
| 229 |
.has-foreground-background-color,
|
| 230 |
.has-primary-background-color,
|
|
@@ -293,6 +293,6 @@ class Shared
|
|
| 293 |
}';
|
| 294 |
}//end if
|
| 295 |
|
| 296 |
-
wp_add_inline_style( App::$slug . '-
|
| 297 |
}
|
| 298 |
}
|
| 3 |
* Manage any shared assets that load within the editor and the front-end.
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
|
| 10 |
/**
|
| 11 |
* This class handles assets that load within the editor and the front-end.
|
| 113 |
--wp--preset--color--tertiary: var(--global-palette7);
|
| 114 |
--wp--custom--spacing--large: clamp(var(--global-sm-spacing), 5vw, var(--global-xxl-spacing));
|
| 115 |
--wp--preset--font-size--large: var(--h2FontSize);
|
| 116 |
+
--wp--preset--font-size--huge: var(--h1FontSize);
|
| 117 |
}';
|
| 118 |
}
|
| 119 |
|
| 126 |
--wp--preset--color--tertiary: var(--nv-light-bg);
|
| 127 |
--wp--custom--spacing--large: clamp(15px, 5vw, 80px);
|
| 128 |
--wp--preset--font-size--large: var(--h2FontSize);
|
| 129 |
+
--wp--preset--font-size--huge: var(--h1FontSize);
|
| 130 |
}';
|
| 131 |
}
|
| 132 |
|
| 211 |
|
| 212 |
if ($this->theme === 'twentytwentytwo') {
|
| 213 |
$css = 'body, .editor-styles-wrapper {
|
| 214 |
+
--extendify--spacing--large: clamp(2rem,8vw,8rem);
|
| 215 |
}';
|
| 216 |
}
|
| 217 |
|
| 224 |
--wp--preset--color--tertiary: var(--global--color-light-gray);
|
| 225 |
--wp--style--block-gap: var(--global--spacing-unit);
|
| 226 |
--wp--preset--font-size--large: 2.5rem;
|
| 227 |
+
--wp--preset--font-size--huge: var(--global--font-size-xxl);
|
| 228 |
}
|
| 229 |
.has-foreground-background-color,
|
| 230 |
.has-primary-background-color,
|
| 293 |
}';
|
| 294 |
}//end if
|
| 295 |
|
| 296 |
+
wp_add_inline_style( App::$slug . '-utilities', $css );
|
| 297 |
}
|
| 298 |
}
|
extendify-sdk/app/SiteSettings.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Helper class for interacting with the user
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
/**
|
| 9 |
* Helper class for interacting with the user
|
|
@@ -12,7 +12,7 @@ class SiteSettings
|
|
| 12 |
{
|
| 13 |
|
| 14 |
/**
|
| 15 |
-
* SiteSettings option_name
|
| 16 |
*
|
| 17 |
* @var string
|
| 18 |
*/
|
| 3 |
* Helper class for interacting with the user
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
/**
|
| 9 |
* Helper class for interacting with the user
|
| 12 |
{
|
| 13 |
|
| 14 |
/**
|
| 15 |
+
* SiteSettings option_name - For historical reasons do not change.
|
| 16 |
*
|
| 17 |
* @var string
|
| 18 |
*/
|
extendify-sdk/app/User.php
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
* Helper class for interacting with the user
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
namespace Extendify\
|
| 7 |
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
/**
|
| 11 |
* Helper class for interacting with the user
|
|
@@ -28,7 +28,7 @@ class User
|
|
| 28 |
protected $user = null;
|
| 29 |
|
| 30 |
/**
|
| 31 |
-
* The DB key for scoping
|
| 32 |
*
|
| 33 |
* @var string
|
| 34 |
*/
|
|
@@ -105,11 +105,10 @@ class User
|
|
| 105 |
$userData['version'] = 0;
|
| 106 |
}
|
| 107 |
|
| 108 |
-
// This will
|
| 109 |
-
if (!get_transient('
|
| 110 |
-
set_transient('
|
| 111 |
-
$
|
| 112 |
-
$userData['state']['allowedImports'] = is_numeric($currentImports) && $currentImports > 0 ? $currentImports : 25;
|
| 113 |
}
|
| 114 |
|
| 115 |
if (!$userData['state']['sdkPartner']) {
|
| 3 |
* Helper class for interacting with the user
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
namespace Extendify\Library;
|
| 7 |
|
| 8 |
+
use Extendify\Library\App;
|
| 9 |
|
| 10 |
/**
|
| 11 |
* Helper class for interacting with the user
|
| 28 |
protected $user = null;
|
| 29 |
|
| 30 |
/**
|
| 31 |
+
* The DB key for scoping. For historical reasons do not change
|
| 32 |
*
|
| 33 |
* @var string
|
| 34 |
*/
|
| 105 |
$userData['version'] = 0;
|
| 106 |
}
|
| 107 |
|
| 108 |
+
// This will reset the allowed imports to 0 once a week which will force the library to re-check.
|
| 109 |
+
if (!get_transient('extendify_import_max_check_' . $this->user->ID)) {
|
| 110 |
+
set_transient('extendify_import_max_check_' . $this->user->ID, time(), strtotime('1 week', 0));
|
| 111 |
+
$userData['state']['allowedImports'] = 0;
|
|
|
|
| 112 |
}
|
| 113 |
|
| 114 |
if (!$userData['state']['sdkPartner']) {
|
extendify-sdk/bin/clean-build-files.sh
DELETED
|
@@ -1,7 +0,0 @@
|
|
| 1 |
-
#!/bin/bash
|
| 2 |
-
if ! git config user.email | grep -q 'users.noreply.github.com'; then
|
| 3 |
-
echo 'Cleaning build files before commit...'
|
| 4 |
-
for i in $(dirname "pwd")/public/build/* ;do truncate -s 0 "$i";done
|
| 5 |
-
truncate -s 0 $(dirname "pwd")/public/editorplus/editorplus.min.js
|
| 6 |
-
git add -A $(dirname "pwd")/public/
|
| 7 |
-
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/bootstrap.php
CHANGED
|
@@ -3,37 +3,46 @@
|
|
| 3 |
* Bootstrap the application
|
| 4 |
*/
|
| 5 |
|
| 6 |
-
use Extendify\
|
| 7 |
-
use Extendify\
|
| 8 |
-
use Extendify\
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 12 |
}
|
| 13 |
|
| 14 |
-
if (!defined('
|
| 15 |
-
define('
|
| 16 |
}
|
| 17 |
|
| 18 |
-
if (
|
| 19 |
-
|
| 20 |
}
|
| 21 |
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
require
|
| 27 |
-
require
|
| 28 |
|
| 29 |
\add_action(
|
| 30 |
'init',
|
| 31 |
function () {
|
| 32 |
-
|
| 33 |
-
if (isset($GLOBALS['extendifySdkSourcePlugin']) && in_array($GLOBALS['extendifySdkSourcePlugin'], ['Editor Plus'], true)) {
|
| 34 |
-
require EXTENDIFYSDK_PATH . 'support/notices.php';
|
| 35 |
-
}
|
| 36 |
-
|
| 37 |
-
\load_plugin_textdomain('extendify-sdk', false, EXTENDIFYSDK_PATH . 'languages');
|
| 38 |
}
|
| 39 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
* Bootstrap the application
|
| 4 |
*/
|
| 5 |
|
| 6 |
+
use Extendify\Library\Admin;
|
| 7 |
+
use Extendify\Library\Frontend;
|
| 8 |
+
use Extendify\Library\Shared;
|
| 9 |
|
| 10 |
if (!defined('ABSPATH')) {
|
| 11 |
die('No direct access.');
|
| 12 |
}
|
| 13 |
|
| 14 |
+
if (!defined('EXTENDIFY_PATH')) {
|
| 15 |
+
define('EXTENDIFY_PATH', \plugin_dir_path(__FILE__));
|
| 16 |
}
|
| 17 |
|
| 18 |
+
if (!defined('EXTENDIFY_URL')) {
|
| 19 |
+
define('EXTENDIFY_URL', \plugin_dir_url(__FILE__));
|
| 20 |
}
|
| 21 |
|
| 22 |
+
if (!defined('EXTENDIFY_PLUGIN_BASENAME')) {
|
| 23 |
+
define('EXTENDIFY_PLUGIN_BASENAME', \plugin_basename(__DIR__ . '/extendify.php'));
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
if (is_readable(EXTENDIFY_PATH . 'vendor/autoload.php')) {
|
| 27 |
+
require EXTENDIFY_PATH . 'vendor/autoload.php';
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
$extendifyAdmin = new Admin();
|
| 31 |
+
$extendifyFrontend = new Frontend();
|
| 32 |
+
$extendifyShared = new Shared();
|
| 33 |
|
| 34 |
+
require EXTENDIFY_PATH . 'routes/api.php';
|
| 35 |
+
require EXTENDIFY_PATH . 'editorplus/EditorPlus.php';
|
| 36 |
|
| 37 |
\add_action(
|
| 38 |
'init',
|
| 39 |
function () {
|
| 40 |
+
\load_plugin_textdomain('extendify', false, EXTENDIFY_PATH . 'languages');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
);
|
| 43 |
+
|
| 44 |
+
// To cover legacy conflicts.
|
| 45 |
+
// phpcs:ignore
|
| 46 |
+
class ExtendifySdk
|
| 47 |
+
{
|
| 48 |
+
}
|
extendify-sdk/composer.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"name": "extendify/extendify-sdk",
|
| 3 |
-
"description": "",
|
| 4 |
-
"type": "wordpress-plugin",
|
| 5 |
-
"require-dev": {
|
| 6 |
-
"johnpbloch/wordpress-core": "*",
|
| 7 |
-
"phpunit/phpunit": "^9.4",
|
| 8 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
|
| 9 |
-
"phpcompatibility/phpcompatibility-wp": "*"
|
| 10 |
-
},
|
| 11 |
-
"autoload": {
|
| 12 |
-
"psr-4": {
|
| 13 |
-
"Extendify\\ExtendifySdk\\": "app/"
|
| 14 |
-
}
|
| 15 |
-
}
|
| 16 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/composer.lock
DELETED
|
@@ -1,2240 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"_readme": [
|
| 3 |
-
"This file locks the dependencies of your project to a known state",
|
| 4 |
-
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
| 5 |
-
"This file is @generated automatically"
|
| 6 |
-
],
|
| 7 |
-
"content-hash": "baa355db890fc2cda65b09056f92cc5b",
|
| 8 |
-
"packages": [],
|
| 9 |
-
"packages-dev": [
|
| 10 |
-
{
|
| 11 |
-
"name": "dealerdirect/phpcodesniffer-composer-installer",
|
| 12 |
-
"version": "v0.7.1",
|
| 13 |
-
"source": {
|
| 14 |
-
"type": "git",
|
| 15 |
-
"url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
|
| 16 |
-
"reference": "fe390591e0241955f22eb9ba327d137e501c771c"
|
| 17 |
-
},
|
| 18 |
-
"dist": {
|
| 19 |
-
"type": "zip",
|
| 20 |
-
"url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c",
|
| 21 |
-
"reference": "fe390591e0241955f22eb9ba327d137e501c771c",
|
| 22 |
-
"shasum": ""
|
| 23 |
-
},
|
| 24 |
-
"require": {
|
| 25 |
-
"composer-plugin-api": "^1.0 || ^2.0",
|
| 26 |
-
"php": ">=5.3",
|
| 27 |
-
"squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0"
|
| 28 |
-
},
|
| 29 |
-
"require-dev": {
|
| 30 |
-
"composer/composer": "*",
|
| 31 |
-
"phpcompatibility/php-compatibility": "^9.0",
|
| 32 |
-
"sensiolabs/security-checker": "^4.1.0"
|
| 33 |
-
},
|
| 34 |
-
"type": "composer-plugin",
|
| 35 |
-
"extra": {
|
| 36 |
-
"class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
|
| 37 |
-
},
|
| 38 |
-
"autoload": {
|
| 39 |
-
"psr-4": {
|
| 40 |
-
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
|
| 41 |
-
}
|
| 42 |
-
},
|
| 43 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 44 |
-
"license": ["MIT"],
|
| 45 |
-
"authors": [
|
| 46 |
-
{
|
| 47 |
-
"name": "Franck Nijhof",
|
| 48 |
-
"email": "franck.nijhof@dealerdirect.com",
|
| 49 |
-
"homepage": "http://www.frenck.nl",
|
| 50 |
-
"role": "Developer / IT Manager"
|
| 51 |
-
}
|
| 52 |
-
],
|
| 53 |
-
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
|
| 54 |
-
"homepage": "http://www.dealerdirect.com",
|
| 55 |
-
"keywords": [
|
| 56 |
-
"PHPCodeSniffer",
|
| 57 |
-
"PHP_CodeSniffer",
|
| 58 |
-
"code quality",
|
| 59 |
-
"codesniffer",
|
| 60 |
-
"composer",
|
| 61 |
-
"installer",
|
| 62 |
-
"phpcs",
|
| 63 |
-
"plugin",
|
| 64 |
-
"qa",
|
| 65 |
-
"quality",
|
| 66 |
-
"standard",
|
| 67 |
-
"standards",
|
| 68 |
-
"style guide",
|
| 69 |
-
"stylecheck",
|
| 70 |
-
"tests"
|
| 71 |
-
],
|
| 72 |
-
"support": {
|
| 73 |
-
"issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
|
| 74 |
-
"source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
|
| 75 |
-
},
|
| 76 |
-
"time": "2020-12-07T18:04:37+00:00"
|
| 77 |
-
},
|
| 78 |
-
{
|
| 79 |
-
"name": "doctrine/instantiator",
|
| 80 |
-
"version": "1.4.0",
|
| 81 |
-
"source": {
|
| 82 |
-
"type": "git",
|
| 83 |
-
"url": "https://github.com/doctrine/instantiator.git",
|
| 84 |
-
"reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
|
| 85 |
-
},
|
| 86 |
-
"dist": {
|
| 87 |
-
"type": "zip",
|
| 88 |
-
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
|
| 89 |
-
"reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
|
| 90 |
-
"shasum": ""
|
| 91 |
-
},
|
| 92 |
-
"require": {
|
| 93 |
-
"php": "^7.1 || ^8.0"
|
| 94 |
-
},
|
| 95 |
-
"require-dev": {
|
| 96 |
-
"doctrine/coding-standard": "^8.0",
|
| 97 |
-
"ext-pdo": "*",
|
| 98 |
-
"ext-phar": "*",
|
| 99 |
-
"phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
|
| 100 |
-
"phpstan/phpstan": "^0.12",
|
| 101 |
-
"phpstan/phpstan-phpunit": "^0.12",
|
| 102 |
-
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
|
| 103 |
-
},
|
| 104 |
-
"type": "library",
|
| 105 |
-
"autoload": {
|
| 106 |
-
"psr-4": {
|
| 107 |
-
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
|
| 108 |
-
}
|
| 109 |
-
},
|
| 110 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 111 |
-
"license": ["MIT"],
|
| 112 |
-
"authors": [
|
| 113 |
-
{
|
| 114 |
-
"name": "Marco Pivetta",
|
| 115 |
-
"email": "ocramius@gmail.com",
|
| 116 |
-
"homepage": "https://ocramius.github.io/"
|
| 117 |
-
}
|
| 118 |
-
],
|
| 119 |
-
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
|
| 120 |
-
"homepage": "https://www.doctrine-project.org/projects/instantiator.html",
|
| 121 |
-
"keywords": ["constructor", "instantiate"],
|
| 122 |
-
"support": {
|
| 123 |
-
"issues": "https://github.com/doctrine/instantiator/issues",
|
| 124 |
-
"source": "https://github.com/doctrine/instantiator/tree/1.4.0"
|
| 125 |
-
},
|
| 126 |
-
"funding": [
|
| 127 |
-
{
|
| 128 |
-
"url": "https://www.doctrine-project.org/sponsorship.html",
|
| 129 |
-
"type": "custom"
|
| 130 |
-
},
|
| 131 |
-
{
|
| 132 |
-
"url": "https://www.patreon.com/phpdoctrine",
|
| 133 |
-
"type": "patreon"
|
| 134 |
-
},
|
| 135 |
-
{
|
| 136 |
-
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
|
| 137 |
-
"type": "tidelift"
|
| 138 |
-
}
|
| 139 |
-
],
|
| 140 |
-
"time": "2020-11-10T18:47:58+00:00"
|
| 141 |
-
},
|
| 142 |
-
{
|
| 143 |
-
"name": "johnpbloch/wordpress-core",
|
| 144 |
-
"version": "5.7.0",
|
| 145 |
-
"source": {
|
| 146 |
-
"type": "git",
|
| 147 |
-
"url": "https://github.com/johnpbloch/wordpress-core.git",
|
| 148 |
-
"reference": "8b057056692ca196aaa7a7ddd915f29426922c6d"
|
| 149 |
-
},
|
| 150 |
-
"dist": {
|
| 151 |
-
"type": "zip",
|
| 152 |
-
"url": "https://api.github.com/repos/johnpbloch/wordpress-core/zipball/8b057056692ca196aaa7a7ddd915f29426922c6d",
|
| 153 |
-
"reference": "8b057056692ca196aaa7a7ddd915f29426922c6d",
|
| 154 |
-
"shasum": ""
|
| 155 |
-
},
|
| 156 |
-
"require": {
|
| 157 |
-
"ext-json": "*",
|
| 158 |
-
"php": ">=5.6.20"
|
| 159 |
-
},
|
| 160 |
-
"provide": {
|
| 161 |
-
"wordpress/core-implementation": "5.7.0"
|
| 162 |
-
},
|
| 163 |
-
"type": "wordpress-core",
|
| 164 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 165 |
-
"license": ["GPL-2.0-or-later"],
|
| 166 |
-
"authors": [
|
| 167 |
-
{
|
| 168 |
-
"name": "WordPress Community",
|
| 169 |
-
"homepage": "https://wordpress.org/about/"
|
| 170 |
-
}
|
| 171 |
-
],
|
| 172 |
-
"description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
|
| 173 |
-
"homepage": "https://wordpress.org/",
|
| 174 |
-
"keywords": ["blog", "cms", "wordpress"],
|
| 175 |
-
"support": {
|
| 176 |
-
"forum": "https://wordpress.org/support/",
|
| 177 |
-
"irc": "irc://irc.freenode.net/wordpress",
|
| 178 |
-
"issues": "https://core.trac.wordpress.org/",
|
| 179 |
-
"source": "https://core.trac.wordpress.org/browser",
|
| 180 |
-
"wiki": "https://codex.wordpress.org/"
|
| 181 |
-
},
|
| 182 |
-
"time": "2021-03-09T20:32:23+00:00"
|
| 183 |
-
},
|
| 184 |
-
{
|
| 185 |
-
"name": "myclabs/deep-copy",
|
| 186 |
-
"version": "1.10.2",
|
| 187 |
-
"source": {
|
| 188 |
-
"type": "git",
|
| 189 |
-
"url": "https://github.com/myclabs/DeepCopy.git",
|
| 190 |
-
"reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
|
| 191 |
-
},
|
| 192 |
-
"dist": {
|
| 193 |
-
"type": "zip",
|
| 194 |
-
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
|
| 195 |
-
"reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
|
| 196 |
-
"shasum": ""
|
| 197 |
-
},
|
| 198 |
-
"require": {
|
| 199 |
-
"php": "^7.1 || ^8.0"
|
| 200 |
-
},
|
| 201 |
-
"replace": {
|
| 202 |
-
"myclabs/deep-copy": "self.version"
|
| 203 |
-
},
|
| 204 |
-
"require-dev": {
|
| 205 |
-
"doctrine/collections": "^1.0",
|
| 206 |
-
"doctrine/common": "^2.6",
|
| 207 |
-
"phpunit/phpunit": "^7.1"
|
| 208 |
-
},
|
| 209 |
-
"type": "library",
|
| 210 |
-
"autoload": {
|
| 211 |
-
"psr-4": {
|
| 212 |
-
"DeepCopy\\": "src/DeepCopy/"
|
| 213 |
-
},
|
| 214 |
-
"files": ["src/DeepCopy/deep_copy.php"]
|
| 215 |
-
},
|
| 216 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 217 |
-
"license": ["MIT"],
|
| 218 |
-
"description": "Create deep copies (clones) of your objects",
|
| 219 |
-
"keywords": [
|
| 220 |
-
"clone",
|
| 221 |
-
"copy",
|
| 222 |
-
"duplicate",
|
| 223 |
-
"object",
|
| 224 |
-
"object graph"
|
| 225 |
-
],
|
| 226 |
-
"support": {
|
| 227 |
-
"issues": "https://github.com/myclabs/DeepCopy/issues",
|
| 228 |
-
"source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
|
| 229 |
-
},
|
| 230 |
-
"funding": [
|
| 231 |
-
{
|
| 232 |
-
"url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
|
| 233 |
-
"type": "tidelift"
|
| 234 |
-
}
|
| 235 |
-
],
|
| 236 |
-
"time": "2020-11-13T09:40:50+00:00"
|
| 237 |
-
},
|
| 238 |
-
{
|
| 239 |
-
"name": "nikic/php-parser",
|
| 240 |
-
"version": "v4.10.4",
|
| 241 |
-
"source": {
|
| 242 |
-
"type": "git",
|
| 243 |
-
"url": "https://github.com/nikic/PHP-Parser.git",
|
| 244 |
-
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
|
| 245 |
-
},
|
| 246 |
-
"dist": {
|
| 247 |
-
"type": "zip",
|
| 248 |
-
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
|
| 249 |
-
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
|
| 250 |
-
"shasum": ""
|
| 251 |
-
},
|
| 252 |
-
"require": {
|
| 253 |
-
"ext-tokenizer": "*",
|
| 254 |
-
"php": ">=7.0"
|
| 255 |
-
},
|
| 256 |
-
"require-dev": {
|
| 257 |
-
"ircmaxell/php-yacc": "^0.0.7",
|
| 258 |
-
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
|
| 259 |
-
},
|
| 260 |
-
"bin": ["bin/php-parse"],
|
| 261 |
-
"type": "library",
|
| 262 |
-
"extra": {
|
| 263 |
-
"branch-alias": {
|
| 264 |
-
"dev-master": "4.9-dev"
|
| 265 |
-
}
|
| 266 |
-
},
|
| 267 |
-
"autoload": {
|
| 268 |
-
"psr-4": {
|
| 269 |
-
"PhpParser\\": "lib/PhpParser"
|
| 270 |
-
}
|
| 271 |
-
},
|
| 272 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 273 |
-
"license": ["BSD-3-Clause"],
|
| 274 |
-
"authors": [
|
| 275 |
-
{
|
| 276 |
-
"name": "Nikita Popov"
|
| 277 |
-
}
|
| 278 |
-
],
|
| 279 |
-
"description": "A PHP parser written in PHP",
|
| 280 |
-
"keywords": ["parser", "php"],
|
| 281 |
-
"support": {
|
| 282 |
-
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
| 283 |
-
"source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
|
| 284 |
-
},
|
| 285 |
-
"time": "2020-12-20T10:01:03+00:00"
|
| 286 |
-
},
|
| 287 |
-
{
|
| 288 |
-
"name": "phar-io/manifest",
|
| 289 |
-
"version": "2.0.1",
|
| 290 |
-
"source": {
|
| 291 |
-
"type": "git",
|
| 292 |
-
"url": "https://github.com/phar-io/manifest.git",
|
| 293 |
-
"reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
|
| 294 |
-
},
|
| 295 |
-
"dist": {
|
| 296 |
-
"type": "zip",
|
| 297 |
-
"url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
|
| 298 |
-
"reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
|
| 299 |
-
"shasum": ""
|
| 300 |
-
},
|
| 301 |
-
"require": {
|
| 302 |
-
"ext-dom": "*",
|
| 303 |
-
"ext-phar": "*",
|
| 304 |
-
"ext-xmlwriter": "*",
|
| 305 |
-
"phar-io/version": "^3.0.1",
|
| 306 |
-
"php": "^7.2 || ^8.0"
|
| 307 |
-
},
|
| 308 |
-
"type": "library",
|
| 309 |
-
"extra": {
|
| 310 |
-
"branch-alias": {
|
| 311 |
-
"dev-master": "2.0.x-dev"
|
| 312 |
-
}
|
| 313 |
-
},
|
| 314 |
-
"autoload": {
|
| 315 |
-
"classmap": ["src/"]
|
| 316 |
-
},
|
| 317 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 318 |
-
"license": ["BSD-3-Clause"],
|
| 319 |
-
"authors": [
|
| 320 |
-
{
|
| 321 |
-
"name": "Arne Blankerts",
|
| 322 |
-
"email": "arne@blankerts.de",
|
| 323 |
-
"role": "Developer"
|
| 324 |
-
},
|
| 325 |
-
{
|
| 326 |
-
"name": "Sebastian Heuer",
|
| 327 |
-
"email": "sebastian@phpeople.de",
|
| 328 |
-
"role": "Developer"
|
| 329 |
-
},
|
| 330 |
-
{
|
| 331 |
-
"name": "Sebastian Bergmann",
|
| 332 |
-
"email": "sebastian@phpunit.de",
|
| 333 |
-
"role": "Developer"
|
| 334 |
-
}
|
| 335 |
-
],
|
| 336 |
-
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
|
| 337 |
-
"support": {
|
| 338 |
-
"issues": "https://github.com/phar-io/manifest/issues",
|
| 339 |
-
"source": "https://github.com/phar-io/manifest/tree/master"
|
| 340 |
-
},
|
| 341 |
-
"time": "2020-06-27T14:33:11+00:00"
|
| 342 |
-
},
|
| 343 |
-
{
|
| 344 |
-
"name": "phar-io/version",
|
| 345 |
-
"version": "3.1.0",
|
| 346 |
-
"source": {
|
| 347 |
-
"type": "git",
|
| 348 |
-
"url": "https://github.com/phar-io/version.git",
|
| 349 |
-
"reference": "bae7c545bef187884426f042434e561ab1ddb182"
|
| 350 |
-
},
|
| 351 |
-
"dist": {
|
| 352 |
-
"type": "zip",
|
| 353 |
-
"url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
|
| 354 |
-
"reference": "bae7c545bef187884426f042434e561ab1ddb182",
|
| 355 |
-
"shasum": ""
|
| 356 |
-
},
|
| 357 |
-
"require": {
|
| 358 |
-
"php": "^7.2 || ^8.0"
|
| 359 |
-
},
|
| 360 |
-
"type": "library",
|
| 361 |
-
"autoload": {
|
| 362 |
-
"classmap": ["src/"]
|
| 363 |
-
},
|
| 364 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 365 |
-
"license": ["BSD-3-Clause"],
|
| 366 |
-
"authors": [
|
| 367 |
-
{
|
| 368 |
-
"name": "Arne Blankerts",
|
| 369 |
-
"email": "arne@blankerts.de",
|
| 370 |
-
"role": "Developer"
|
| 371 |
-
},
|
| 372 |
-
{
|
| 373 |
-
"name": "Sebastian Heuer",
|
| 374 |
-
"email": "sebastian@phpeople.de",
|
| 375 |
-
"role": "Developer"
|
| 376 |
-
},
|
| 377 |
-
{
|
| 378 |
-
"name": "Sebastian Bergmann",
|
| 379 |
-
"email": "sebastian@phpunit.de",
|
| 380 |
-
"role": "Developer"
|
| 381 |
-
}
|
| 382 |
-
],
|
| 383 |
-
"description": "Library for handling version information and constraints",
|
| 384 |
-
"support": {
|
| 385 |
-
"issues": "https://github.com/phar-io/version/issues",
|
| 386 |
-
"source": "https://github.com/phar-io/version/tree/3.1.0"
|
| 387 |
-
},
|
| 388 |
-
"time": "2021-02-23T14:00:09+00:00"
|
| 389 |
-
},
|
| 390 |
-
{
|
| 391 |
-
"name": "phpcompatibility/php-compatibility",
|
| 392 |
-
"version": "9.3.5",
|
| 393 |
-
"source": {
|
| 394 |
-
"type": "git",
|
| 395 |
-
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
|
| 396 |
-
"reference": "9fb324479acf6f39452e0655d2429cc0d3914243"
|
| 397 |
-
},
|
| 398 |
-
"dist": {
|
| 399 |
-
"type": "zip",
|
| 400 |
-
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",
|
| 401 |
-
"reference": "9fb324479acf6f39452e0655d2429cc0d3914243",
|
| 402 |
-
"shasum": ""
|
| 403 |
-
},
|
| 404 |
-
"require": {
|
| 405 |
-
"php": ">=5.3",
|
| 406 |
-
"squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
|
| 407 |
-
},
|
| 408 |
-
"conflict": {
|
| 409 |
-
"squizlabs/php_codesniffer": "2.6.2"
|
| 410 |
-
},
|
| 411 |
-
"require-dev": {
|
| 412 |
-
"phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
|
| 413 |
-
},
|
| 414 |
-
"suggest": {
|
| 415 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
|
| 416 |
-
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
| 417 |
-
},
|
| 418 |
-
"type": "phpcodesniffer-standard",
|
| 419 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 420 |
-
"license": ["LGPL-3.0-or-later"],
|
| 421 |
-
"authors": [
|
| 422 |
-
{
|
| 423 |
-
"name": "Wim Godden",
|
| 424 |
-
"homepage": "https://github.com/wimg",
|
| 425 |
-
"role": "lead"
|
| 426 |
-
},
|
| 427 |
-
{
|
| 428 |
-
"name": "Juliette Reinders Folmer",
|
| 429 |
-
"homepage": "https://github.com/jrfnl",
|
| 430 |
-
"role": "lead"
|
| 431 |
-
},
|
| 432 |
-
{
|
| 433 |
-
"name": "Contributors",
|
| 434 |
-
"homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
|
| 435 |
-
}
|
| 436 |
-
],
|
| 437 |
-
"description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
|
| 438 |
-
"homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
|
| 439 |
-
"keywords": ["compatibility", "phpcs", "standards"],
|
| 440 |
-
"support": {
|
| 441 |
-
"issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues",
|
| 442 |
-
"source": "https://github.com/PHPCompatibility/PHPCompatibility"
|
| 443 |
-
},
|
| 444 |
-
"time": "2019-12-27T09:44:58+00:00"
|
| 445 |
-
},
|
| 446 |
-
{
|
| 447 |
-
"name": "phpcompatibility/phpcompatibility-paragonie",
|
| 448 |
-
"version": "1.3.1",
|
| 449 |
-
"source": {
|
| 450 |
-
"type": "git",
|
| 451 |
-
"url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git",
|
| 452 |
-
"reference": "ddabec839cc003651f2ce695c938686d1086cf43"
|
| 453 |
-
},
|
| 454 |
-
"dist": {
|
| 455 |
-
"type": "zip",
|
| 456 |
-
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/ddabec839cc003651f2ce695c938686d1086cf43",
|
| 457 |
-
"reference": "ddabec839cc003651f2ce695c938686d1086cf43",
|
| 458 |
-
"shasum": ""
|
| 459 |
-
},
|
| 460 |
-
"require": {
|
| 461 |
-
"phpcompatibility/php-compatibility": "^9.0"
|
| 462 |
-
},
|
| 463 |
-
"require-dev": {
|
| 464 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
|
| 465 |
-
"paragonie/random_compat": "dev-master",
|
| 466 |
-
"paragonie/sodium_compat": "dev-master"
|
| 467 |
-
},
|
| 468 |
-
"suggest": {
|
| 469 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
|
| 470 |
-
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
| 471 |
-
},
|
| 472 |
-
"type": "phpcodesniffer-standard",
|
| 473 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 474 |
-
"license": ["LGPL-3.0-or-later"],
|
| 475 |
-
"authors": [
|
| 476 |
-
{
|
| 477 |
-
"name": "Wim Godden",
|
| 478 |
-
"role": "lead"
|
| 479 |
-
},
|
| 480 |
-
{
|
| 481 |
-
"name": "Juliette Reinders Folmer",
|
| 482 |
-
"role": "lead"
|
| 483 |
-
}
|
| 484 |
-
],
|
| 485 |
-
"description": "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Paragonie polyfill libraries.",
|
| 486 |
-
"homepage": "http://phpcompatibility.com/",
|
| 487 |
-
"keywords": [
|
| 488 |
-
"compatibility",
|
| 489 |
-
"paragonie",
|
| 490 |
-
"phpcs",
|
| 491 |
-
"polyfill",
|
| 492 |
-
"standards"
|
| 493 |
-
],
|
| 494 |
-
"support": {
|
| 495 |
-
"issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues",
|
| 496 |
-
"source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie"
|
| 497 |
-
},
|
| 498 |
-
"time": "2021-02-15T10:24:51+00:00"
|
| 499 |
-
},
|
| 500 |
-
{
|
| 501 |
-
"name": "phpcompatibility/phpcompatibility-wp",
|
| 502 |
-
"version": "2.1.1",
|
| 503 |
-
"source": {
|
| 504 |
-
"type": "git",
|
| 505 |
-
"url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git",
|
| 506 |
-
"reference": "b7dc0cd7a8f767ccac5e7637550ea1c50a67b09e"
|
| 507 |
-
},
|
| 508 |
-
"dist": {
|
| 509 |
-
"type": "zip",
|
| 510 |
-
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/b7dc0cd7a8f767ccac5e7637550ea1c50a67b09e",
|
| 511 |
-
"reference": "b7dc0cd7a8f767ccac5e7637550ea1c50a67b09e",
|
| 512 |
-
"shasum": ""
|
| 513 |
-
},
|
| 514 |
-
"require": {
|
| 515 |
-
"phpcompatibility/php-compatibility": "^9.0",
|
| 516 |
-
"phpcompatibility/phpcompatibility-paragonie": "^1.0"
|
| 517 |
-
},
|
| 518 |
-
"require-dev": {
|
| 519 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7"
|
| 520 |
-
},
|
| 521 |
-
"suggest": {
|
| 522 |
-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
|
| 523 |
-
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
| 524 |
-
},
|
| 525 |
-
"type": "phpcodesniffer-standard",
|
| 526 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 527 |
-
"license": ["LGPL-3.0-or-later"],
|
| 528 |
-
"authors": [
|
| 529 |
-
{
|
| 530 |
-
"name": "Wim Godden",
|
| 531 |
-
"role": "lead"
|
| 532 |
-
},
|
| 533 |
-
{
|
| 534 |
-
"name": "Juliette Reinders Folmer",
|
| 535 |
-
"role": "lead"
|
| 536 |
-
}
|
| 537 |
-
],
|
| 538 |
-
"description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.",
|
| 539 |
-
"homepage": "http://phpcompatibility.com/",
|
| 540 |
-
"keywords": ["compatibility", "phpcs", "standards", "wordpress"],
|
| 541 |
-
"support": {
|
| 542 |
-
"issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues",
|
| 543 |
-
"source": "https://github.com/PHPCompatibility/PHPCompatibilityWP"
|
| 544 |
-
},
|
| 545 |
-
"time": "2021-02-15T12:58:46+00:00"
|
| 546 |
-
},
|
| 547 |
-
{
|
| 548 |
-
"name": "phpdocumentor/reflection-common",
|
| 549 |
-
"version": "2.2.0",
|
| 550 |
-
"source": {
|
| 551 |
-
"type": "git",
|
| 552 |
-
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
|
| 553 |
-
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
|
| 554 |
-
},
|
| 555 |
-
"dist": {
|
| 556 |
-
"type": "zip",
|
| 557 |
-
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
|
| 558 |
-
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
|
| 559 |
-
"shasum": ""
|
| 560 |
-
},
|
| 561 |
-
"require": {
|
| 562 |
-
"php": "^7.2 || ^8.0"
|
| 563 |
-
},
|
| 564 |
-
"type": "library",
|
| 565 |
-
"extra": {
|
| 566 |
-
"branch-alias": {
|
| 567 |
-
"dev-2.x": "2.x-dev"
|
| 568 |
-
}
|
| 569 |
-
},
|
| 570 |
-
"autoload": {
|
| 571 |
-
"psr-4": {
|
| 572 |
-
"phpDocumentor\\Reflection\\": "src/"
|
| 573 |
-
}
|
| 574 |
-
},
|
| 575 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 576 |
-
"license": ["MIT"],
|
| 577 |
-
"authors": [
|
| 578 |
-
{
|
| 579 |
-
"name": "Jaap van Otterdijk",
|
| 580 |
-
"email": "opensource@ijaap.nl"
|
| 581 |
-
}
|
| 582 |
-
],
|
| 583 |
-
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
|
| 584 |
-
"homepage": "http://www.phpdoc.org",
|
| 585 |
-
"keywords": [
|
| 586 |
-
"FQSEN",
|
| 587 |
-
"phpDocumentor",
|
| 588 |
-
"phpdoc",
|
| 589 |
-
"reflection",
|
| 590 |
-
"static analysis"
|
| 591 |
-
],
|
| 592 |
-
"support": {
|
| 593 |
-
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
|
| 594 |
-
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
|
| 595 |
-
},
|
| 596 |
-
"time": "2020-06-27T09:03:43+00:00"
|
| 597 |
-
},
|
| 598 |
-
{
|
| 599 |
-
"name": "phpdocumentor/reflection-docblock",
|
| 600 |
-
"version": "5.2.2",
|
| 601 |
-
"source": {
|
| 602 |
-
"type": "git",
|
| 603 |
-
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
|
| 604 |
-
"reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
|
| 605 |
-
},
|
| 606 |
-
"dist": {
|
| 607 |
-
"type": "zip",
|
| 608 |
-
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
|
| 609 |
-
"reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
|
| 610 |
-
"shasum": ""
|
| 611 |
-
},
|
| 612 |
-
"require": {
|
| 613 |
-
"ext-filter": "*",
|
| 614 |
-
"php": "^7.2 || ^8.0",
|
| 615 |
-
"phpdocumentor/reflection-common": "^2.2",
|
| 616 |
-
"phpdocumentor/type-resolver": "^1.3",
|
| 617 |
-
"webmozart/assert": "^1.9.1"
|
| 618 |
-
},
|
| 619 |
-
"require-dev": {
|
| 620 |
-
"mockery/mockery": "~1.3.2"
|
| 621 |
-
},
|
| 622 |
-
"type": "library",
|
| 623 |
-
"extra": {
|
| 624 |
-
"branch-alias": {
|
| 625 |
-
"dev-master": "5.x-dev"
|
| 626 |
-
}
|
| 627 |
-
},
|
| 628 |
-
"autoload": {
|
| 629 |
-
"psr-4": {
|
| 630 |
-
"phpDocumentor\\Reflection\\": "src"
|
| 631 |
-
}
|
| 632 |
-
},
|
| 633 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 634 |
-
"license": ["MIT"],
|
| 635 |
-
"authors": [
|
| 636 |
-
{
|
| 637 |
-
"name": "Mike van Riel",
|
| 638 |
-
"email": "me@mikevanriel.com"
|
| 639 |
-
},
|
| 640 |
-
{
|
| 641 |
-
"name": "Jaap van Otterdijk",
|
| 642 |
-
"email": "account@ijaap.nl"
|
| 643 |
-
}
|
| 644 |
-
],
|
| 645 |
-
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
|
| 646 |
-
"support": {
|
| 647 |
-
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
|
| 648 |
-
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
|
| 649 |
-
},
|
| 650 |
-
"time": "2020-09-03T19:13:55+00:00"
|
| 651 |
-
},
|
| 652 |
-
{
|
| 653 |
-
"name": "phpdocumentor/type-resolver",
|
| 654 |
-
"version": "1.4.0",
|
| 655 |
-
"source": {
|
| 656 |
-
"type": "git",
|
| 657 |
-
"url": "https://github.com/phpDocumentor/TypeResolver.git",
|
| 658 |
-
"reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
|
| 659 |
-
},
|
| 660 |
-
"dist": {
|
| 661 |
-
"type": "zip",
|
| 662 |
-
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
|
| 663 |
-
"reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
|
| 664 |
-
"shasum": ""
|
| 665 |
-
},
|
| 666 |
-
"require": {
|
| 667 |
-
"php": "^7.2 || ^8.0",
|
| 668 |
-
"phpdocumentor/reflection-common": "^2.0"
|
| 669 |
-
},
|
| 670 |
-
"require-dev": {
|
| 671 |
-
"ext-tokenizer": "*"
|
| 672 |
-
},
|
| 673 |
-
"type": "library",
|
| 674 |
-
"extra": {
|
| 675 |
-
"branch-alias": {
|
| 676 |
-
"dev-1.x": "1.x-dev"
|
| 677 |
-
}
|
| 678 |
-
},
|
| 679 |
-
"autoload": {
|
| 680 |
-
"psr-4": {
|
| 681 |
-
"phpDocumentor\\Reflection\\": "src"
|
| 682 |
-
}
|
| 683 |
-
},
|
| 684 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 685 |
-
"license": ["MIT"],
|
| 686 |
-
"authors": [
|
| 687 |
-
{
|
| 688 |
-
"name": "Mike van Riel",
|
| 689 |
-
"email": "me@mikevanriel.com"
|
| 690 |
-
}
|
| 691 |
-
],
|
| 692 |
-
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
|
| 693 |
-
"support": {
|
| 694 |
-
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
|
| 695 |
-
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
|
| 696 |
-
},
|
| 697 |
-
"time": "2020-09-17T18:55:26+00:00"
|
| 698 |
-
},
|
| 699 |
-
{
|
| 700 |
-
"name": "phpspec/prophecy",
|
| 701 |
-
"version": "1.13.0",
|
| 702 |
-
"source": {
|
| 703 |
-
"type": "git",
|
| 704 |
-
"url": "https://github.com/phpspec/prophecy.git",
|
| 705 |
-
"reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
|
| 706 |
-
},
|
| 707 |
-
"dist": {
|
| 708 |
-
"type": "zip",
|
| 709 |
-
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
|
| 710 |
-
"reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
|
| 711 |
-
"shasum": ""
|
| 712 |
-
},
|
| 713 |
-
"require": {
|
| 714 |
-
"doctrine/instantiator": "^1.2",
|
| 715 |
-
"php": "^7.2 || ~8.0, <8.1",
|
| 716 |
-
"phpdocumentor/reflection-docblock": "^5.2",
|
| 717 |
-
"sebastian/comparator": "^3.0 || ^4.0",
|
| 718 |
-
"sebastian/recursion-context": "^3.0 || ^4.0"
|
| 719 |
-
},
|
| 720 |
-
"require-dev": {
|
| 721 |
-
"phpspec/phpspec": "^6.0",
|
| 722 |
-
"phpunit/phpunit": "^8.0 || ^9.0"
|
| 723 |
-
},
|
| 724 |
-
"type": "library",
|
| 725 |
-
"extra": {
|
| 726 |
-
"branch-alias": {
|
| 727 |
-
"dev-master": "1.11.x-dev"
|
| 728 |
-
}
|
| 729 |
-
},
|
| 730 |
-
"autoload": {
|
| 731 |
-
"psr-4": {
|
| 732 |
-
"Prophecy\\": "src/Prophecy"
|
| 733 |
-
}
|
| 734 |
-
},
|
| 735 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 736 |
-
"license": ["MIT"],
|
| 737 |
-
"authors": [
|
| 738 |
-
{
|
| 739 |
-
"name": "Konstantin Kudryashov",
|
| 740 |
-
"email": "ever.zet@gmail.com",
|
| 741 |
-
"homepage": "http://everzet.com"
|
| 742 |
-
},
|
| 743 |
-
{
|
| 744 |
-
"name": "Marcello Duarte",
|
| 745 |
-
"email": "marcello.duarte@gmail.com"
|
| 746 |
-
}
|
| 747 |
-
],
|
| 748 |
-
"description": "Highly opinionated mocking framework for PHP 5.3+",
|
| 749 |
-
"homepage": "https://github.com/phpspec/prophecy",
|
| 750 |
-
"keywords": ["Double", "Dummy", "fake", "mock", "spy", "stub"],
|
| 751 |
-
"support": {
|
| 752 |
-
"issues": "https://github.com/phpspec/prophecy/issues",
|
| 753 |
-
"source": "https://github.com/phpspec/prophecy/tree/1.13.0"
|
| 754 |
-
},
|
| 755 |
-
"time": "2021-03-17T13:42:18+00:00"
|
| 756 |
-
},
|
| 757 |
-
{
|
| 758 |
-
"name": "phpunit/php-code-coverage",
|
| 759 |
-
"version": "9.2.6",
|
| 760 |
-
"source": {
|
| 761 |
-
"type": "git",
|
| 762 |
-
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
| 763 |
-
"reference": "f6293e1b30a2354e8428e004689671b83871edde"
|
| 764 |
-
},
|
| 765 |
-
"dist": {
|
| 766 |
-
"type": "zip",
|
| 767 |
-
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
|
| 768 |
-
"reference": "f6293e1b30a2354e8428e004689671b83871edde",
|
| 769 |
-
"shasum": ""
|
| 770 |
-
},
|
| 771 |
-
"require": {
|
| 772 |
-
"ext-dom": "*",
|
| 773 |
-
"ext-libxml": "*",
|
| 774 |
-
"ext-xmlwriter": "*",
|
| 775 |
-
"nikic/php-parser": "^4.10.2",
|
| 776 |
-
"php": ">=7.3",
|
| 777 |
-
"phpunit/php-file-iterator": "^3.0.3",
|
| 778 |
-
"phpunit/php-text-template": "^2.0.2",
|
| 779 |
-
"sebastian/code-unit-reverse-lookup": "^2.0.2",
|
| 780 |
-
"sebastian/complexity": "^2.0",
|
| 781 |
-
"sebastian/environment": "^5.1.2",
|
| 782 |
-
"sebastian/lines-of-code": "^1.0.3",
|
| 783 |
-
"sebastian/version": "^3.0.1",
|
| 784 |
-
"theseer/tokenizer": "^1.2.0"
|
| 785 |
-
},
|
| 786 |
-
"require-dev": {
|
| 787 |
-
"phpunit/phpunit": "^9.3"
|
| 788 |
-
},
|
| 789 |
-
"suggest": {
|
| 790 |
-
"ext-pcov": "*",
|
| 791 |
-
"ext-xdebug": "*"
|
| 792 |
-
},
|
| 793 |
-
"type": "library",
|
| 794 |
-
"extra": {
|
| 795 |
-
"branch-alias": {
|
| 796 |
-
"dev-master": "9.2-dev"
|
| 797 |
-
}
|
| 798 |
-
},
|
| 799 |
-
"autoload": {
|
| 800 |
-
"classmap": ["src/"]
|
| 801 |
-
},
|
| 802 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 803 |
-
"license": ["BSD-3-Clause"],
|
| 804 |
-
"authors": [
|
| 805 |
-
{
|
| 806 |
-
"name": "Sebastian Bergmann",
|
| 807 |
-
"email": "sebastian@phpunit.de",
|
| 808 |
-
"role": "lead"
|
| 809 |
-
}
|
| 810 |
-
],
|
| 811 |
-
"description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
|
| 812 |
-
"homepage": "https://github.com/sebastianbergmann/php-code-coverage",
|
| 813 |
-
"keywords": ["coverage", "testing", "xunit"],
|
| 814 |
-
"support": {
|
| 815 |
-
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
| 816 |
-
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
|
| 817 |
-
},
|
| 818 |
-
"funding": [
|
| 819 |
-
{
|
| 820 |
-
"url": "https://github.com/sebastianbergmann",
|
| 821 |
-
"type": "github"
|
| 822 |
-
}
|
| 823 |
-
],
|
| 824 |
-
"time": "2021-03-28T07:26:59+00:00"
|
| 825 |
-
},
|
| 826 |
-
{
|
| 827 |
-
"name": "phpunit/php-file-iterator",
|
| 828 |
-
"version": "3.0.5",
|
| 829 |
-
"source": {
|
| 830 |
-
"type": "git",
|
| 831 |
-
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
|
| 832 |
-
"reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
|
| 833 |
-
},
|
| 834 |
-
"dist": {
|
| 835 |
-
"type": "zip",
|
| 836 |
-
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
|
| 837 |
-
"reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
|
| 838 |
-
"shasum": ""
|
| 839 |
-
},
|
| 840 |
-
"require": {
|
| 841 |
-
"php": ">=7.3"
|
| 842 |
-
},
|
| 843 |
-
"require-dev": {
|
| 844 |
-
"phpunit/phpunit": "^9.3"
|
| 845 |
-
},
|
| 846 |
-
"type": "library",
|
| 847 |
-
"extra": {
|
| 848 |
-
"branch-alias": {
|
| 849 |
-
"dev-master": "3.0-dev"
|
| 850 |
-
}
|
| 851 |
-
},
|
| 852 |
-
"autoload": {
|
| 853 |
-
"classmap": ["src/"]
|
| 854 |
-
},
|
| 855 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 856 |
-
"license": ["BSD-3-Clause"],
|
| 857 |
-
"authors": [
|
| 858 |
-
{
|
| 859 |
-
"name": "Sebastian Bergmann",
|
| 860 |
-
"email": "sebastian@phpunit.de",
|
| 861 |
-
"role": "lead"
|
| 862 |
-
}
|
| 863 |
-
],
|
| 864 |
-
"description": "FilterIterator implementation that filters files based on a list of suffixes.",
|
| 865 |
-
"homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
|
| 866 |
-
"keywords": ["filesystem", "iterator"],
|
| 867 |
-
"support": {
|
| 868 |
-
"issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
|
| 869 |
-
"source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
|
| 870 |
-
},
|
| 871 |
-
"funding": [
|
| 872 |
-
{
|
| 873 |
-
"url": "https://github.com/sebastianbergmann",
|
| 874 |
-
"type": "github"
|
| 875 |
-
}
|
| 876 |
-
],
|
| 877 |
-
"time": "2020-09-28T05:57:25+00:00"
|
| 878 |
-
},
|
| 879 |
-
{
|
| 880 |
-
"name": "phpunit/php-invoker",
|
| 881 |
-
"version": "3.1.1",
|
| 882 |
-
"source": {
|
| 883 |
-
"type": "git",
|
| 884 |
-
"url": "https://github.com/sebastianbergmann/php-invoker.git",
|
| 885 |
-
"reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
|
| 886 |
-
},
|
| 887 |
-
"dist": {
|
| 888 |
-
"type": "zip",
|
| 889 |
-
"url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
|
| 890 |
-
"reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
|
| 891 |
-
"shasum": ""
|
| 892 |
-
},
|
| 893 |
-
"require": {
|
| 894 |
-
"php": ">=7.3"
|
| 895 |
-
},
|
| 896 |
-
"require-dev": {
|
| 897 |
-
"ext-pcntl": "*",
|
| 898 |
-
"phpunit/phpunit": "^9.3"
|
| 899 |
-
},
|
| 900 |
-
"suggest": {
|
| 901 |
-
"ext-pcntl": "*"
|
| 902 |
-
},
|
| 903 |
-
"type": "library",
|
| 904 |
-
"extra": {
|
| 905 |
-
"branch-alias": {
|
| 906 |
-
"dev-master": "3.1-dev"
|
| 907 |
-
}
|
| 908 |
-
},
|
| 909 |
-
"autoload": {
|
| 910 |
-
"classmap": ["src/"]
|
| 911 |
-
},
|
| 912 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 913 |
-
"license": ["BSD-3-Clause"],
|
| 914 |
-
"authors": [
|
| 915 |
-
{
|
| 916 |
-
"name": "Sebastian Bergmann",
|
| 917 |
-
"email": "sebastian@phpunit.de",
|
| 918 |
-
"role": "lead"
|
| 919 |
-
}
|
| 920 |
-
],
|
| 921 |
-
"description": "Invoke callables with a timeout",
|
| 922 |
-
"homepage": "https://github.com/sebastianbergmann/php-invoker/",
|
| 923 |
-
"keywords": ["process"],
|
| 924 |
-
"support": {
|
| 925 |
-
"issues": "https://github.com/sebastianbergmann/php-invoker/issues",
|
| 926 |
-
"source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
|
| 927 |
-
},
|
| 928 |
-
"funding": [
|
| 929 |
-
{
|
| 930 |
-
"url": "https://github.com/sebastianbergmann",
|
| 931 |
-
"type": "github"
|
| 932 |
-
}
|
| 933 |
-
],
|
| 934 |
-
"time": "2020-09-28T05:58:55+00:00"
|
| 935 |
-
},
|
| 936 |
-
{
|
| 937 |
-
"name": "phpunit/php-text-template",
|
| 938 |
-
"version": "2.0.4",
|
| 939 |
-
"source": {
|
| 940 |
-
"type": "git",
|
| 941 |
-
"url": "https://github.com/sebastianbergmann/php-text-template.git",
|
| 942 |
-
"reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
|
| 943 |
-
},
|
| 944 |
-
"dist": {
|
| 945 |
-
"type": "zip",
|
| 946 |
-
"url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
|
| 947 |
-
"reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
|
| 948 |
-
"shasum": ""
|
| 949 |
-
},
|
| 950 |
-
"require": {
|
| 951 |
-
"php": ">=7.3"
|
| 952 |
-
},
|
| 953 |
-
"require-dev": {
|
| 954 |
-
"phpunit/phpunit": "^9.3"
|
| 955 |
-
},
|
| 956 |
-
"type": "library",
|
| 957 |
-
"extra": {
|
| 958 |
-
"branch-alias": {
|
| 959 |
-
"dev-master": "2.0-dev"
|
| 960 |
-
}
|
| 961 |
-
},
|
| 962 |
-
"autoload": {
|
| 963 |
-
"classmap": ["src/"]
|
| 964 |
-
},
|
| 965 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 966 |
-
"license": ["BSD-3-Clause"],
|
| 967 |
-
"authors": [
|
| 968 |
-
{
|
| 969 |
-
"name": "Sebastian Bergmann",
|
| 970 |
-
"email": "sebastian@phpunit.de",
|
| 971 |
-
"role": "lead"
|
| 972 |
-
}
|
| 973 |
-
],
|
| 974 |
-
"description": "Simple template engine.",
|
| 975 |
-
"homepage": "https://github.com/sebastianbergmann/php-text-template/",
|
| 976 |
-
"keywords": ["template"],
|
| 977 |
-
"support": {
|
| 978 |
-
"issues": "https://github.com/sebastianbergmann/php-text-template/issues",
|
| 979 |
-
"source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
|
| 980 |
-
},
|
| 981 |
-
"funding": [
|
| 982 |
-
{
|
| 983 |
-
"url": "https://github.com/sebastianbergmann",
|
| 984 |
-
"type": "github"
|
| 985 |
-
}
|
| 986 |
-
],
|
| 987 |
-
"time": "2020-10-26T05:33:50+00:00"
|
| 988 |
-
},
|
| 989 |
-
{
|
| 990 |
-
"name": "phpunit/php-timer",
|
| 991 |
-
"version": "5.0.3",
|
| 992 |
-
"source": {
|
| 993 |
-
"type": "git",
|
| 994 |
-
"url": "https://github.com/sebastianbergmann/php-timer.git",
|
| 995 |
-
"reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
|
| 996 |
-
},
|
| 997 |
-
"dist": {
|
| 998 |
-
"type": "zip",
|
| 999 |
-
"url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
|
| 1000 |
-
"reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
|
| 1001 |
-
"shasum": ""
|
| 1002 |
-
},
|
| 1003 |
-
"require": {
|
| 1004 |
-
"php": ">=7.3"
|
| 1005 |
-
},
|
| 1006 |
-
"require-dev": {
|
| 1007 |
-
"phpunit/phpunit": "^9.3"
|
| 1008 |
-
},
|
| 1009 |
-
"type": "library",
|
| 1010 |
-
"extra": {
|
| 1011 |
-
"branch-alias": {
|
| 1012 |
-
"dev-master": "5.0-dev"
|
| 1013 |
-
}
|
| 1014 |
-
},
|
| 1015 |
-
"autoload": {
|
| 1016 |
-
"classmap": ["src/"]
|
| 1017 |
-
},
|
| 1018 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1019 |
-
"license": ["BSD-3-Clause"],
|
| 1020 |
-
"authors": [
|
| 1021 |
-
{
|
| 1022 |
-
"name": "Sebastian Bergmann",
|
| 1023 |
-
"email": "sebastian@phpunit.de",
|
| 1024 |
-
"role": "lead"
|
| 1025 |
-
}
|
| 1026 |
-
],
|
| 1027 |
-
"description": "Utility class for timing",
|
| 1028 |
-
"homepage": "https://github.com/sebastianbergmann/php-timer/",
|
| 1029 |
-
"keywords": ["timer"],
|
| 1030 |
-
"support": {
|
| 1031 |
-
"issues": "https://github.com/sebastianbergmann/php-timer/issues",
|
| 1032 |
-
"source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
|
| 1033 |
-
},
|
| 1034 |
-
"funding": [
|
| 1035 |
-
{
|
| 1036 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1037 |
-
"type": "github"
|
| 1038 |
-
}
|
| 1039 |
-
],
|
| 1040 |
-
"time": "2020-10-26T13:16:10+00:00"
|
| 1041 |
-
},
|
| 1042 |
-
{
|
| 1043 |
-
"name": "phpunit/phpunit",
|
| 1044 |
-
"version": "9.5.4",
|
| 1045 |
-
"source": {
|
| 1046 |
-
"type": "git",
|
| 1047 |
-
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
| 1048 |
-
"reference": "c73c6737305e779771147af66c96ca6a7ed8a741"
|
| 1049 |
-
},
|
| 1050 |
-
"dist": {
|
| 1051 |
-
"type": "zip",
|
| 1052 |
-
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741",
|
| 1053 |
-
"reference": "c73c6737305e779771147af66c96ca6a7ed8a741",
|
| 1054 |
-
"shasum": ""
|
| 1055 |
-
},
|
| 1056 |
-
"require": {
|
| 1057 |
-
"doctrine/instantiator": "^1.3.1",
|
| 1058 |
-
"ext-dom": "*",
|
| 1059 |
-
"ext-json": "*",
|
| 1060 |
-
"ext-libxml": "*",
|
| 1061 |
-
"ext-mbstring": "*",
|
| 1062 |
-
"ext-xml": "*",
|
| 1063 |
-
"ext-xmlwriter": "*",
|
| 1064 |
-
"myclabs/deep-copy": "^1.10.1",
|
| 1065 |
-
"phar-io/manifest": "^2.0.1",
|
| 1066 |
-
"phar-io/version": "^3.0.2",
|
| 1067 |
-
"php": ">=7.3",
|
| 1068 |
-
"phpspec/prophecy": "^1.12.1",
|
| 1069 |
-
"phpunit/php-code-coverage": "^9.2.3",
|
| 1070 |
-
"phpunit/php-file-iterator": "^3.0.5",
|
| 1071 |
-
"phpunit/php-invoker": "^3.1.1",
|
| 1072 |
-
"phpunit/php-text-template": "^2.0.3",
|
| 1073 |
-
"phpunit/php-timer": "^5.0.2",
|
| 1074 |
-
"sebastian/cli-parser": "^1.0.1",
|
| 1075 |
-
"sebastian/code-unit": "^1.0.6",
|
| 1076 |
-
"sebastian/comparator": "^4.0.5",
|
| 1077 |
-
"sebastian/diff": "^4.0.3",
|
| 1078 |
-
"sebastian/environment": "^5.1.3",
|
| 1079 |
-
"sebastian/exporter": "^4.0.3",
|
| 1080 |
-
"sebastian/global-state": "^5.0.1",
|
| 1081 |
-
"sebastian/object-enumerator": "^4.0.3",
|
| 1082 |
-
"sebastian/resource-operations": "^3.0.3",
|
| 1083 |
-
"sebastian/type": "^2.3",
|
| 1084 |
-
"sebastian/version": "^3.0.2"
|
| 1085 |
-
},
|
| 1086 |
-
"require-dev": {
|
| 1087 |
-
"ext-pdo": "*",
|
| 1088 |
-
"phpspec/prophecy-phpunit": "^2.0.1"
|
| 1089 |
-
},
|
| 1090 |
-
"suggest": {
|
| 1091 |
-
"ext-soap": "*",
|
| 1092 |
-
"ext-xdebug": "*"
|
| 1093 |
-
},
|
| 1094 |
-
"bin": ["phpunit"],
|
| 1095 |
-
"type": "library",
|
| 1096 |
-
"extra": {
|
| 1097 |
-
"branch-alias": {
|
| 1098 |
-
"dev-master": "9.5-dev"
|
| 1099 |
-
}
|
| 1100 |
-
},
|
| 1101 |
-
"autoload": {
|
| 1102 |
-
"classmap": ["src/"],
|
| 1103 |
-
"files": ["src/Framework/Assert/Functions.php"]
|
| 1104 |
-
},
|
| 1105 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1106 |
-
"license": ["BSD-3-Clause"],
|
| 1107 |
-
"authors": [
|
| 1108 |
-
{
|
| 1109 |
-
"name": "Sebastian Bergmann",
|
| 1110 |
-
"email": "sebastian@phpunit.de",
|
| 1111 |
-
"role": "lead"
|
| 1112 |
-
}
|
| 1113 |
-
],
|
| 1114 |
-
"description": "The PHP Unit Testing framework.",
|
| 1115 |
-
"homepage": "https://phpunit.de/",
|
| 1116 |
-
"keywords": ["phpunit", "testing", "xunit"],
|
| 1117 |
-
"support": {
|
| 1118 |
-
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
| 1119 |
-
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4"
|
| 1120 |
-
},
|
| 1121 |
-
"funding": [
|
| 1122 |
-
{
|
| 1123 |
-
"url": "https://phpunit.de/donate.html",
|
| 1124 |
-
"type": "custom"
|
| 1125 |
-
},
|
| 1126 |
-
{
|
| 1127 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1128 |
-
"type": "github"
|
| 1129 |
-
}
|
| 1130 |
-
],
|
| 1131 |
-
"time": "2021-03-23T07:16:29+00:00"
|
| 1132 |
-
},
|
| 1133 |
-
{
|
| 1134 |
-
"name": "sebastian/cli-parser",
|
| 1135 |
-
"version": "1.0.1",
|
| 1136 |
-
"source": {
|
| 1137 |
-
"type": "git",
|
| 1138 |
-
"url": "https://github.com/sebastianbergmann/cli-parser.git",
|
| 1139 |
-
"reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
|
| 1140 |
-
},
|
| 1141 |
-
"dist": {
|
| 1142 |
-
"type": "zip",
|
| 1143 |
-
"url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
|
| 1144 |
-
"reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
|
| 1145 |
-
"shasum": ""
|
| 1146 |
-
},
|
| 1147 |
-
"require": {
|
| 1148 |
-
"php": ">=7.3"
|
| 1149 |
-
},
|
| 1150 |
-
"require-dev": {
|
| 1151 |
-
"phpunit/phpunit": "^9.3"
|
| 1152 |
-
},
|
| 1153 |
-
"type": "library",
|
| 1154 |
-
"extra": {
|
| 1155 |
-
"branch-alias": {
|
| 1156 |
-
"dev-master": "1.0-dev"
|
| 1157 |
-
}
|
| 1158 |
-
},
|
| 1159 |
-
"autoload": {
|
| 1160 |
-
"classmap": ["src/"]
|
| 1161 |
-
},
|
| 1162 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1163 |
-
"license": ["BSD-3-Clause"],
|
| 1164 |
-
"authors": [
|
| 1165 |
-
{
|
| 1166 |
-
"name": "Sebastian Bergmann",
|
| 1167 |
-
"email": "sebastian@phpunit.de",
|
| 1168 |
-
"role": "lead"
|
| 1169 |
-
}
|
| 1170 |
-
],
|
| 1171 |
-
"description": "Library for parsing CLI options",
|
| 1172 |
-
"homepage": "https://github.com/sebastianbergmann/cli-parser",
|
| 1173 |
-
"support": {
|
| 1174 |
-
"issues": "https://github.com/sebastianbergmann/cli-parser/issues",
|
| 1175 |
-
"source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
|
| 1176 |
-
},
|
| 1177 |
-
"funding": [
|
| 1178 |
-
{
|
| 1179 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1180 |
-
"type": "github"
|
| 1181 |
-
}
|
| 1182 |
-
],
|
| 1183 |
-
"time": "2020-09-28T06:08:49+00:00"
|
| 1184 |
-
},
|
| 1185 |
-
{
|
| 1186 |
-
"name": "sebastian/code-unit",
|
| 1187 |
-
"version": "1.0.8",
|
| 1188 |
-
"source": {
|
| 1189 |
-
"type": "git",
|
| 1190 |
-
"url": "https://github.com/sebastianbergmann/code-unit.git",
|
| 1191 |
-
"reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
|
| 1192 |
-
},
|
| 1193 |
-
"dist": {
|
| 1194 |
-
"type": "zip",
|
| 1195 |
-
"url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
|
| 1196 |
-
"reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
|
| 1197 |
-
"shasum": ""
|
| 1198 |
-
},
|
| 1199 |
-
"require": {
|
| 1200 |
-
"php": ">=7.3"
|
| 1201 |
-
},
|
| 1202 |
-
"require-dev": {
|
| 1203 |
-
"phpunit/phpunit": "^9.3"
|
| 1204 |
-
},
|
| 1205 |
-
"type": "library",
|
| 1206 |
-
"extra": {
|
| 1207 |
-
"branch-alias": {
|
| 1208 |
-
"dev-master": "1.0-dev"
|
| 1209 |
-
}
|
| 1210 |
-
},
|
| 1211 |
-
"autoload": {
|
| 1212 |
-
"classmap": ["src/"]
|
| 1213 |
-
},
|
| 1214 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1215 |
-
"license": ["BSD-3-Clause"],
|
| 1216 |
-
"authors": [
|
| 1217 |
-
{
|
| 1218 |
-
"name": "Sebastian Bergmann",
|
| 1219 |
-
"email": "sebastian@phpunit.de",
|
| 1220 |
-
"role": "lead"
|
| 1221 |
-
}
|
| 1222 |
-
],
|
| 1223 |
-
"description": "Collection of value objects that represent the PHP code units",
|
| 1224 |
-
"homepage": "https://github.com/sebastianbergmann/code-unit",
|
| 1225 |
-
"support": {
|
| 1226 |
-
"issues": "https://github.com/sebastianbergmann/code-unit/issues",
|
| 1227 |
-
"source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
|
| 1228 |
-
},
|
| 1229 |
-
"funding": [
|
| 1230 |
-
{
|
| 1231 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1232 |
-
"type": "github"
|
| 1233 |
-
}
|
| 1234 |
-
],
|
| 1235 |
-
"time": "2020-10-26T13:08:54+00:00"
|
| 1236 |
-
},
|
| 1237 |
-
{
|
| 1238 |
-
"name": "sebastian/code-unit-reverse-lookup",
|
| 1239 |
-
"version": "2.0.3",
|
| 1240 |
-
"source": {
|
| 1241 |
-
"type": "git",
|
| 1242 |
-
"url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
|
| 1243 |
-
"reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
|
| 1244 |
-
},
|
| 1245 |
-
"dist": {
|
| 1246 |
-
"type": "zip",
|
| 1247 |
-
"url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
|
| 1248 |
-
"reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
|
| 1249 |
-
"shasum": ""
|
| 1250 |
-
},
|
| 1251 |
-
"require": {
|
| 1252 |
-
"php": ">=7.3"
|
| 1253 |
-
},
|
| 1254 |
-
"require-dev": {
|
| 1255 |
-
"phpunit/phpunit": "^9.3"
|
| 1256 |
-
},
|
| 1257 |
-
"type": "library",
|
| 1258 |
-
"extra": {
|
| 1259 |
-
"branch-alias": {
|
| 1260 |
-
"dev-master": "2.0-dev"
|
| 1261 |
-
}
|
| 1262 |
-
},
|
| 1263 |
-
"autoload": {
|
| 1264 |
-
"classmap": ["src/"]
|
| 1265 |
-
},
|
| 1266 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1267 |
-
"license": ["BSD-3-Clause"],
|
| 1268 |
-
"authors": [
|
| 1269 |
-
{
|
| 1270 |
-
"name": "Sebastian Bergmann",
|
| 1271 |
-
"email": "sebastian@phpunit.de"
|
| 1272 |
-
}
|
| 1273 |
-
],
|
| 1274 |
-
"description": "Looks up which function or method a line of code belongs to",
|
| 1275 |
-
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
|
| 1276 |
-
"support": {
|
| 1277 |
-
"issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
|
| 1278 |
-
"source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
|
| 1279 |
-
},
|
| 1280 |
-
"funding": [
|
| 1281 |
-
{
|
| 1282 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1283 |
-
"type": "github"
|
| 1284 |
-
}
|
| 1285 |
-
],
|
| 1286 |
-
"time": "2020-09-28T05:30:19+00:00"
|
| 1287 |
-
},
|
| 1288 |
-
{
|
| 1289 |
-
"name": "sebastian/comparator",
|
| 1290 |
-
"version": "4.0.6",
|
| 1291 |
-
"source": {
|
| 1292 |
-
"type": "git",
|
| 1293 |
-
"url": "https://github.com/sebastianbergmann/comparator.git",
|
| 1294 |
-
"reference": "55f4261989e546dc112258c7a75935a81a7ce382"
|
| 1295 |
-
},
|
| 1296 |
-
"dist": {
|
| 1297 |
-
"type": "zip",
|
| 1298 |
-
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
|
| 1299 |
-
"reference": "55f4261989e546dc112258c7a75935a81a7ce382",
|
| 1300 |
-
"shasum": ""
|
| 1301 |
-
},
|
| 1302 |
-
"require": {
|
| 1303 |
-
"php": ">=7.3",
|
| 1304 |
-
"sebastian/diff": "^4.0",
|
| 1305 |
-
"sebastian/exporter": "^4.0"
|
| 1306 |
-
},
|
| 1307 |
-
"require-dev": {
|
| 1308 |
-
"phpunit/phpunit": "^9.3"
|
| 1309 |
-
},
|
| 1310 |
-
"type": "library",
|
| 1311 |
-
"extra": {
|
| 1312 |
-
"branch-alias": {
|
| 1313 |
-
"dev-master": "4.0-dev"
|
| 1314 |
-
}
|
| 1315 |
-
},
|
| 1316 |
-
"autoload": {
|
| 1317 |
-
"classmap": ["src/"]
|
| 1318 |
-
},
|
| 1319 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1320 |
-
"license": ["BSD-3-Clause"],
|
| 1321 |
-
"authors": [
|
| 1322 |
-
{
|
| 1323 |
-
"name": "Sebastian Bergmann",
|
| 1324 |
-
"email": "sebastian@phpunit.de"
|
| 1325 |
-
},
|
| 1326 |
-
{
|
| 1327 |
-
"name": "Jeff Welch",
|
| 1328 |
-
"email": "whatthejeff@gmail.com"
|
| 1329 |
-
},
|
| 1330 |
-
{
|
| 1331 |
-
"name": "Volker Dusch",
|
| 1332 |
-
"email": "github@wallbash.com"
|
| 1333 |
-
},
|
| 1334 |
-
{
|
| 1335 |
-
"name": "Bernhard Schussek",
|
| 1336 |
-
"email": "bschussek@2bepublished.at"
|
| 1337 |
-
}
|
| 1338 |
-
],
|
| 1339 |
-
"description": "Provides the functionality to compare PHP values for equality",
|
| 1340 |
-
"homepage": "https://github.com/sebastianbergmann/comparator",
|
| 1341 |
-
"keywords": ["comparator", "compare", "equality"],
|
| 1342 |
-
"support": {
|
| 1343 |
-
"issues": "https://github.com/sebastianbergmann/comparator/issues",
|
| 1344 |
-
"source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
|
| 1345 |
-
},
|
| 1346 |
-
"funding": [
|
| 1347 |
-
{
|
| 1348 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1349 |
-
"type": "github"
|
| 1350 |
-
}
|
| 1351 |
-
],
|
| 1352 |
-
"time": "2020-10-26T15:49:45+00:00"
|
| 1353 |
-
},
|
| 1354 |
-
{
|
| 1355 |
-
"name": "sebastian/complexity",
|
| 1356 |
-
"version": "2.0.2",
|
| 1357 |
-
"source": {
|
| 1358 |
-
"type": "git",
|
| 1359 |
-
"url": "https://github.com/sebastianbergmann/complexity.git",
|
| 1360 |
-
"reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
|
| 1361 |
-
},
|
| 1362 |
-
"dist": {
|
| 1363 |
-
"type": "zip",
|
| 1364 |
-
"url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
|
| 1365 |
-
"reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
|
| 1366 |
-
"shasum": ""
|
| 1367 |
-
},
|
| 1368 |
-
"require": {
|
| 1369 |
-
"nikic/php-parser": "^4.7",
|
| 1370 |
-
"php": ">=7.3"
|
| 1371 |
-
},
|
| 1372 |
-
"require-dev": {
|
| 1373 |
-
"phpunit/phpunit": "^9.3"
|
| 1374 |
-
},
|
| 1375 |
-
"type": "library",
|
| 1376 |
-
"extra": {
|
| 1377 |
-
"branch-alias": {
|
| 1378 |
-
"dev-master": "2.0-dev"
|
| 1379 |
-
}
|
| 1380 |
-
},
|
| 1381 |
-
"autoload": {
|
| 1382 |
-
"classmap": ["src/"]
|
| 1383 |
-
},
|
| 1384 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1385 |
-
"license": ["BSD-3-Clause"],
|
| 1386 |
-
"authors": [
|
| 1387 |
-
{
|
| 1388 |
-
"name": "Sebastian Bergmann",
|
| 1389 |
-
"email": "sebastian@phpunit.de",
|
| 1390 |
-
"role": "lead"
|
| 1391 |
-
}
|
| 1392 |
-
],
|
| 1393 |
-
"description": "Library for calculating the complexity of PHP code units",
|
| 1394 |
-
"homepage": "https://github.com/sebastianbergmann/complexity",
|
| 1395 |
-
"support": {
|
| 1396 |
-
"issues": "https://github.com/sebastianbergmann/complexity/issues",
|
| 1397 |
-
"source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
|
| 1398 |
-
},
|
| 1399 |
-
"funding": [
|
| 1400 |
-
{
|
| 1401 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1402 |
-
"type": "github"
|
| 1403 |
-
}
|
| 1404 |
-
],
|
| 1405 |
-
"time": "2020-10-26T15:52:27+00:00"
|
| 1406 |
-
},
|
| 1407 |
-
{
|
| 1408 |
-
"name": "sebastian/diff",
|
| 1409 |
-
"version": "4.0.4",
|
| 1410 |
-
"source": {
|
| 1411 |
-
"type": "git",
|
| 1412 |
-
"url": "https://github.com/sebastianbergmann/diff.git",
|
| 1413 |
-
"reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
|
| 1414 |
-
},
|
| 1415 |
-
"dist": {
|
| 1416 |
-
"type": "zip",
|
| 1417 |
-
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
|
| 1418 |
-
"reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
|
| 1419 |
-
"shasum": ""
|
| 1420 |
-
},
|
| 1421 |
-
"require": {
|
| 1422 |
-
"php": ">=7.3"
|
| 1423 |
-
},
|
| 1424 |
-
"require-dev": {
|
| 1425 |
-
"phpunit/phpunit": "^9.3",
|
| 1426 |
-
"symfony/process": "^4.2 || ^5"
|
| 1427 |
-
},
|
| 1428 |
-
"type": "library",
|
| 1429 |
-
"extra": {
|
| 1430 |
-
"branch-alias": {
|
| 1431 |
-
"dev-master": "4.0-dev"
|
| 1432 |
-
}
|
| 1433 |
-
},
|
| 1434 |
-
"autoload": {
|
| 1435 |
-
"classmap": ["src/"]
|
| 1436 |
-
},
|
| 1437 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1438 |
-
"license": ["BSD-3-Clause"],
|
| 1439 |
-
"authors": [
|
| 1440 |
-
{
|
| 1441 |
-
"name": "Sebastian Bergmann",
|
| 1442 |
-
"email": "sebastian@phpunit.de"
|
| 1443 |
-
},
|
| 1444 |
-
{
|
| 1445 |
-
"name": "Kore Nordmann",
|
| 1446 |
-
"email": "mail@kore-nordmann.de"
|
| 1447 |
-
}
|
| 1448 |
-
],
|
| 1449 |
-
"description": "Diff implementation",
|
| 1450 |
-
"homepage": "https://github.com/sebastianbergmann/diff",
|
| 1451 |
-
"keywords": ["diff", "udiff", "unidiff", "unified diff"],
|
| 1452 |
-
"support": {
|
| 1453 |
-
"issues": "https://github.com/sebastianbergmann/diff/issues",
|
| 1454 |
-
"source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
|
| 1455 |
-
},
|
| 1456 |
-
"funding": [
|
| 1457 |
-
{
|
| 1458 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1459 |
-
"type": "github"
|
| 1460 |
-
}
|
| 1461 |
-
],
|
| 1462 |
-
"time": "2020-10-26T13:10:38+00:00"
|
| 1463 |
-
},
|
| 1464 |
-
{
|
| 1465 |
-
"name": "sebastian/environment",
|
| 1466 |
-
"version": "5.1.3",
|
| 1467 |
-
"source": {
|
| 1468 |
-
"type": "git",
|
| 1469 |
-
"url": "https://github.com/sebastianbergmann/environment.git",
|
| 1470 |
-
"reference": "388b6ced16caa751030f6a69e588299fa09200ac"
|
| 1471 |
-
},
|
| 1472 |
-
"dist": {
|
| 1473 |
-
"type": "zip",
|
| 1474 |
-
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
|
| 1475 |
-
"reference": "388b6ced16caa751030f6a69e588299fa09200ac",
|
| 1476 |
-
"shasum": ""
|
| 1477 |
-
},
|
| 1478 |
-
"require": {
|
| 1479 |
-
"php": ">=7.3"
|
| 1480 |
-
},
|
| 1481 |
-
"require-dev": {
|
| 1482 |
-
"phpunit/phpunit": "^9.3"
|
| 1483 |
-
},
|
| 1484 |
-
"suggest": {
|
| 1485 |
-
"ext-posix": "*"
|
| 1486 |
-
},
|
| 1487 |
-
"type": "library",
|
| 1488 |
-
"extra": {
|
| 1489 |
-
"branch-alias": {
|
| 1490 |
-
"dev-master": "5.1-dev"
|
| 1491 |
-
}
|
| 1492 |
-
},
|
| 1493 |
-
"autoload": {
|
| 1494 |
-
"classmap": ["src/"]
|
| 1495 |
-
},
|
| 1496 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1497 |
-
"license": ["BSD-3-Clause"],
|
| 1498 |
-
"authors": [
|
| 1499 |
-
{
|
| 1500 |
-
"name": "Sebastian Bergmann",
|
| 1501 |
-
"email": "sebastian@phpunit.de"
|
| 1502 |
-
}
|
| 1503 |
-
],
|
| 1504 |
-
"description": "Provides functionality to handle HHVM/PHP environments",
|
| 1505 |
-
"homepage": "http://www.github.com/sebastianbergmann/environment",
|
| 1506 |
-
"keywords": ["Xdebug", "environment", "hhvm"],
|
| 1507 |
-
"support": {
|
| 1508 |
-
"issues": "https://github.com/sebastianbergmann/environment/issues",
|
| 1509 |
-
"source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
|
| 1510 |
-
},
|
| 1511 |
-
"funding": [
|
| 1512 |
-
{
|
| 1513 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1514 |
-
"type": "github"
|
| 1515 |
-
}
|
| 1516 |
-
],
|
| 1517 |
-
"time": "2020-09-28T05:52:38+00:00"
|
| 1518 |
-
},
|
| 1519 |
-
{
|
| 1520 |
-
"name": "sebastian/exporter",
|
| 1521 |
-
"version": "4.0.3",
|
| 1522 |
-
"source": {
|
| 1523 |
-
"type": "git",
|
| 1524 |
-
"url": "https://github.com/sebastianbergmann/exporter.git",
|
| 1525 |
-
"reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
|
| 1526 |
-
},
|
| 1527 |
-
"dist": {
|
| 1528 |
-
"type": "zip",
|
| 1529 |
-
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
|
| 1530 |
-
"reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
|
| 1531 |
-
"shasum": ""
|
| 1532 |
-
},
|
| 1533 |
-
"require": {
|
| 1534 |
-
"php": ">=7.3",
|
| 1535 |
-
"sebastian/recursion-context": "^4.0"
|
| 1536 |
-
},
|
| 1537 |
-
"require-dev": {
|
| 1538 |
-
"ext-mbstring": "*",
|
| 1539 |
-
"phpunit/phpunit": "^9.3"
|
| 1540 |
-
},
|
| 1541 |
-
"type": "library",
|
| 1542 |
-
"extra": {
|
| 1543 |
-
"branch-alias": {
|
| 1544 |
-
"dev-master": "4.0-dev"
|
| 1545 |
-
}
|
| 1546 |
-
},
|
| 1547 |
-
"autoload": {
|
| 1548 |
-
"classmap": ["src/"]
|
| 1549 |
-
},
|
| 1550 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1551 |
-
"license": ["BSD-3-Clause"],
|
| 1552 |
-
"authors": [
|
| 1553 |
-
{
|
| 1554 |
-
"name": "Sebastian Bergmann",
|
| 1555 |
-
"email": "sebastian@phpunit.de"
|
| 1556 |
-
},
|
| 1557 |
-
{
|
| 1558 |
-
"name": "Jeff Welch",
|
| 1559 |
-
"email": "whatthejeff@gmail.com"
|
| 1560 |
-
},
|
| 1561 |
-
{
|
| 1562 |
-
"name": "Volker Dusch",
|
| 1563 |
-
"email": "github@wallbash.com"
|
| 1564 |
-
},
|
| 1565 |
-
{
|
| 1566 |
-
"name": "Adam Harvey",
|
| 1567 |
-
"email": "aharvey@php.net"
|
| 1568 |
-
},
|
| 1569 |
-
{
|
| 1570 |
-
"name": "Bernhard Schussek",
|
| 1571 |
-
"email": "bschussek@gmail.com"
|
| 1572 |
-
}
|
| 1573 |
-
],
|
| 1574 |
-
"description": "Provides the functionality to export PHP variables for visualization",
|
| 1575 |
-
"homepage": "http://www.github.com/sebastianbergmann/exporter",
|
| 1576 |
-
"keywords": ["export", "exporter"],
|
| 1577 |
-
"support": {
|
| 1578 |
-
"issues": "https://github.com/sebastianbergmann/exporter/issues",
|
| 1579 |
-
"source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
|
| 1580 |
-
},
|
| 1581 |
-
"funding": [
|
| 1582 |
-
{
|
| 1583 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1584 |
-
"type": "github"
|
| 1585 |
-
}
|
| 1586 |
-
],
|
| 1587 |
-
"time": "2020-09-28T05:24:23+00:00"
|
| 1588 |
-
},
|
| 1589 |
-
{
|
| 1590 |
-
"name": "sebastian/global-state",
|
| 1591 |
-
"version": "5.0.2",
|
| 1592 |
-
"source": {
|
| 1593 |
-
"type": "git",
|
| 1594 |
-
"url": "https://github.com/sebastianbergmann/global-state.git",
|
| 1595 |
-
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
|
| 1596 |
-
},
|
| 1597 |
-
"dist": {
|
| 1598 |
-
"type": "zip",
|
| 1599 |
-
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
|
| 1600 |
-
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
|
| 1601 |
-
"shasum": ""
|
| 1602 |
-
},
|
| 1603 |
-
"require": {
|
| 1604 |
-
"php": ">=7.3",
|
| 1605 |
-
"sebastian/object-reflector": "^2.0",
|
| 1606 |
-
"sebastian/recursion-context": "^4.0"
|
| 1607 |
-
},
|
| 1608 |
-
"require-dev": {
|
| 1609 |
-
"ext-dom": "*",
|
| 1610 |
-
"phpunit/phpunit": "^9.3"
|
| 1611 |
-
},
|
| 1612 |
-
"suggest": {
|
| 1613 |
-
"ext-uopz": "*"
|
| 1614 |
-
},
|
| 1615 |
-
"type": "library",
|
| 1616 |
-
"extra": {
|
| 1617 |
-
"branch-alias": {
|
| 1618 |
-
"dev-master": "5.0-dev"
|
| 1619 |
-
}
|
| 1620 |
-
},
|
| 1621 |
-
"autoload": {
|
| 1622 |
-
"classmap": ["src/"]
|
| 1623 |
-
},
|
| 1624 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1625 |
-
"license": ["BSD-3-Clause"],
|
| 1626 |
-
"authors": [
|
| 1627 |
-
{
|
| 1628 |
-
"name": "Sebastian Bergmann",
|
| 1629 |
-
"email": "sebastian@phpunit.de"
|
| 1630 |
-
}
|
| 1631 |
-
],
|
| 1632 |
-
"description": "Snapshotting of global state",
|
| 1633 |
-
"homepage": "http://www.github.com/sebastianbergmann/global-state",
|
| 1634 |
-
"keywords": ["global state"],
|
| 1635 |
-
"support": {
|
| 1636 |
-
"issues": "https://github.com/sebastianbergmann/global-state/issues",
|
| 1637 |
-
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
|
| 1638 |
-
},
|
| 1639 |
-
"funding": [
|
| 1640 |
-
{
|
| 1641 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1642 |
-
"type": "github"
|
| 1643 |
-
}
|
| 1644 |
-
],
|
| 1645 |
-
"time": "2020-10-26T15:55:19+00:00"
|
| 1646 |
-
},
|
| 1647 |
-
{
|
| 1648 |
-
"name": "sebastian/lines-of-code",
|
| 1649 |
-
"version": "1.0.3",
|
| 1650 |
-
"source": {
|
| 1651 |
-
"type": "git",
|
| 1652 |
-
"url": "https://github.com/sebastianbergmann/lines-of-code.git",
|
| 1653 |
-
"reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
|
| 1654 |
-
},
|
| 1655 |
-
"dist": {
|
| 1656 |
-
"type": "zip",
|
| 1657 |
-
"url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
|
| 1658 |
-
"reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
|
| 1659 |
-
"shasum": ""
|
| 1660 |
-
},
|
| 1661 |
-
"require": {
|
| 1662 |
-
"nikic/php-parser": "^4.6",
|
| 1663 |
-
"php": ">=7.3"
|
| 1664 |
-
},
|
| 1665 |
-
"require-dev": {
|
| 1666 |
-
"phpunit/phpunit": "^9.3"
|
| 1667 |
-
},
|
| 1668 |
-
"type": "library",
|
| 1669 |
-
"extra": {
|
| 1670 |
-
"branch-alias": {
|
| 1671 |
-
"dev-master": "1.0-dev"
|
| 1672 |
-
}
|
| 1673 |
-
},
|
| 1674 |
-
"autoload": {
|
| 1675 |
-
"classmap": ["src/"]
|
| 1676 |
-
},
|
| 1677 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1678 |
-
"license": ["BSD-3-Clause"],
|
| 1679 |
-
"authors": [
|
| 1680 |
-
{
|
| 1681 |
-
"name": "Sebastian Bergmann",
|
| 1682 |
-
"email": "sebastian@phpunit.de",
|
| 1683 |
-
"role": "lead"
|
| 1684 |
-
}
|
| 1685 |
-
],
|
| 1686 |
-
"description": "Library for counting the lines of code in PHP source code",
|
| 1687 |
-
"homepage": "https://github.com/sebastianbergmann/lines-of-code",
|
| 1688 |
-
"support": {
|
| 1689 |
-
"issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
|
| 1690 |
-
"source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
|
| 1691 |
-
},
|
| 1692 |
-
"funding": [
|
| 1693 |
-
{
|
| 1694 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1695 |
-
"type": "github"
|
| 1696 |
-
}
|
| 1697 |
-
],
|
| 1698 |
-
"time": "2020-11-28T06:42:11+00:00"
|
| 1699 |
-
},
|
| 1700 |
-
{
|
| 1701 |
-
"name": "sebastian/object-enumerator",
|
| 1702 |
-
"version": "4.0.4",
|
| 1703 |
-
"source": {
|
| 1704 |
-
"type": "git",
|
| 1705 |
-
"url": "https://github.com/sebastianbergmann/object-enumerator.git",
|
| 1706 |
-
"reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
|
| 1707 |
-
},
|
| 1708 |
-
"dist": {
|
| 1709 |
-
"type": "zip",
|
| 1710 |
-
"url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
|
| 1711 |
-
"reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
|
| 1712 |
-
"shasum": ""
|
| 1713 |
-
},
|
| 1714 |
-
"require": {
|
| 1715 |
-
"php": ">=7.3",
|
| 1716 |
-
"sebastian/object-reflector": "^2.0",
|
| 1717 |
-
"sebastian/recursion-context": "^4.0"
|
| 1718 |
-
},
|
| 1719 |
-
"require-dev": {
|
| 1720 |
-
"phpunit/phpunit": "^9.3"
|
| 1721 |
-
},
|
| 1722 |
-
"type": "library",
|
| 1723 |
-
"extra": {
|
| 1724 |
-
"branch-alias": {
|
| 1725 |
-
"dev-master": "4.0-dev"
|
| 1726 |
-
}
|
| 1727 |
-
},
|
| 1728 |
-
"autoload": {
|
| 1729 |
-
"classmap": ["src/"]
|
| 1730 |
-
},
|
| 1731 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1732 |
-
"license": ["BSD-3-Clause"],
|
| 1733 |
-
"authors": [
|
| 1734 |
-
{
|
| 1735 |
-
"name": "Sebastian Bergmann",
|
| 1736 |
-
"email": "sebastian@phpunit.de"
|
| 1737 |
-
}
|
| 1738 |
-
],
|
| 1739 |
-
"description": "Traverses array structures and object graphs to enumerate all referenced objects",
|
| 1740 |
-
"homepage": "https://github.com/sebastianbergmann/object-enumerator/",
|
| 1741 |
-
"support": {
|
| 1742 |
-
"issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
|
| 1743 |
-
"source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
|
| 1744 |
-
},
|
| 1745 |
-
"funding": [
|
| 1746 |
-
{
|
| 1747 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1748 |
-
"type": "github"
|
| 1749 |
-
}
|
| 1750 |
-
],
|
| 1751 |
-
"time": "2020-10-26T13:12:34+00:00"
|
| 1752 |
-
},
|
| 1753 |
-
{
|
| 1754 |
-
"name": "sebastian/object-reflector",
|
| 1755 |
-
"version": "2.0.4",
|
| 1756 |
-
"source": {
|
| 1757 |
-
"type": "git",
|
| 1758 |
-
"url": "https://github.com/sebastianbergmann/object-reflector.git",
|
| 1759 |
-
"reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
|
| 1760 |
-
},
|
| 1761 |
-
"dist": {
|
| 1762 |
-
"type": "zip",
|
| 1763 |
-
"url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
|
| 1764 |
-
"reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
|
| 1765 |
-
"shasum": ""
|
| 1766 |
-
},
|
| 1767 |
-
"require": {
|
| 1768 |
-
"php": ">=7.3"
|
| 1769 |
-
},
|
| 1770 |
-
"require-dev": {
|
| 1771 |
-
"phpunit/phpunit": "^9.3"
|
| 1772 |
-
},
|
| 1773 |
-
"type": "library",
|
| 1774 |
-
"extra": {
|
| 1775 |
-
"branch-alias": {
|
| 1776 |
-
"dev-master": "2.0-dev"
|
| 1777 |
-
}
|
| 1778 |
-
},
|
| 1779 |
-
"autoload": {
|
| 1780 |
-
"classmap": ["src/"]
|
| 1781 |
-
},
|
| 1782 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1783 |
-
"license": ["BSD-3-Clause"],
|
| 1784 |
-
"authors": [
|
| 1785 |
-
{
|
| 1786 |
-
"name": "Sebastian Bergmann",
|
| 1787 |
-
"email": "sebastian@phpunit.de"
|
| 1788 |
-
}
|
| 1789 |
-
],
|
| 1790 |
-
"description": "Allows reflection of object attributes, including inherited and non-public ones",
|
| 1791 |
-
"homepage": "https://github.com/sebastianbergmann/object-reflector/",
|
| 1792 |
-
"support": {
|
| 1793 |
-
"issues": "https://github.com/sebastianbergmann/object-reflector/issues",
|
| 1794 |
-
"source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
|
| 1795 |
-
},
|
| 1796 |
-
"funding": [
|
| 1797 |
-
{
|
| 1798 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1799 |
-
"type": "github"
|
| 1800 |
-
}
|
| 1801 |
-
],
|
| 1802 |
-
"time": "2020-10-26T13:14:26+00:00"
|
| 1803 |
-
},
|
| 1804 |
-
{
|
| 1805 |
-
"name": "sebastian/recursion-context",
|
| 1806 |
-
"version": "4.0.4",
|
| 1807 |
-
"source": {
|
| 1808 |
-
"type": "git",
|
| 1809 |
-
"url": "https://github.com/sebastianbergmann/recursion-context.git",
|
| 1810 |
-
"reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
|
| 1811 |
-
},
|
| 1812 |
-
"dist": {
|
| 1813 |
-
"type": "zip",
|
| 1814 |
-
"url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
|
| 1815 |
-
"reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
|
| 1816 |
-
"shasum": ""
|
| 1817 |
-
},
|
| 1818 |
-
"require": {
|
| 1819 |
-
"php": ">=7.3"
|
| 1820 |
-
},
|
| 1821 |
-
"require-dev": {
|
| 1822 |
-
"phpunit/phpunit": "^9.3"
|
| 1823 |
-
},
|
| 1824 |
-
"type": "library",
|
| 1825 |
-
"extra": {
|
| 1826 |
-
"branch-alias": {
|
| 1827 |
-
"dev-master": "4.0-dev"
|
| 1828 |
-
}
|
| 1829 |
-
},
|
| 1830 |
-
"autoload": {
|
| 1831 |
-
"classmap": ["src/"]
|
| 1832 |
-
},
|
| 1833 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1834 |
-
"license": ["BSD-3-Clause"],
|
| 1835 |
-
"authors": [
|
| 1836 |
-
{
|
| 1837 |
-
"name": "Sebastian Bergmann",
|
| 1838 |
-
"email": "sebastian@phpunit.de"
|
| 1839 |
-
},
|
| 1840 |
-
{
|
| 1841 |
-
"name": "Jeff Welch",
|
| 1842 |
-
"email": "whatthejeff@gmail.com"
|
| 1843 |
-
},
|
| 1844 |
-
{
|
| 1845 |
-
"name": "Adam Harvey",
|
| 1846 |
-
"email": "aharvey@php.net"
|
| 1847 |
-
}
|
| 1848 |
-
],
|
| 1849 |
-
"description": "Provides functionality to recursively process PHP variables",
|
| 1850 |
-
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
|
| 1851 |
-
"support": {
|
| 1852 |
-
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
|
| 1853 |
-
"source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
|
| 1854 |
-
},
|
| 1855 |
-
"funding": [
|
| 1856 |
-
{
|
| 1857 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1858 |
-
"type": "github"
|
| 1859 |
-
}
|
| 1860 |
-
],
|
| 1861 |
-
"time": "2020-10-26T13:17:30+00:00"
|
| 1862 |
-
},
|
| 1863 |
-
{
|
| 1864 |
-
"name": "sebastian/resource-operations",
|
| 1865 |
-
"version": "3.0.3",
|
| 1866 |
-
"source": {
|
| 1867 |
-
"type": "git",
|
| 1868 |
-
"url": "https://github.com/sebastianbergmann/resource-operations.git",
|
| 1869 |
-
"reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
|
| 1870 |
-
},
|
| 1871 |
-
"dist": {
|
| 1872 |
-
"type": "zip",
|
| 1873 |
-
"url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
|
| 1874 |
-
"reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
|
| 1875 |
-
"shasum": ""
|
| 1876 |
-
},
|
| 1877 |
-
"require": {
|
| 1878 |
-
"php": ">=7.3"
|
| 1879 |
-
},
|
| 1880 |
-
"require-dev": {
|
| 1881 |
-
"phpunit/phpunit": "^9.0"
|
| 1882 |
-
},
|
| 1883 |
-
"type": "library",
|
| 1884 |
-
"extra": {
|
| 1885 |
-
"branch-alias": {
|
| 1886 |
-
"dev-master": "3.0-dev"
|
| 1887 |
-
}
|
| 1888 |
-
},
|
| 1889 |
-
"autoload": {
|
| 1890 |
-
"classmap": ["src/"]
|
| 1891 |
-
},
|
| 1892 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1893 |
-
"license": ["BSD-3-Clause"],
|
| 1894 |
-
"authors": [
|
| 1895 |
-
{
|
| 1896 |
-
"name": "Sebastian Bergmann",
|
| 1897 |
-
"email": "sebastian@phpunit.de"
|
| 1898 |
-
}
|
| 1899 |
-
],
|
| 1900 |
-
"description": "Provides a list of PHP built-in functions that operate on resources",
|
| 1901 |
-
"homepage": "https://www.github.com/sebastianbergmann/resource-operations",
|
| 1902 |
-
"support": {
|
| 1903 |
-
"issues": "https://github.com/sebastianbergmann/resource-operations/issues",
|
| 1904 |
-
"source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
|
| 1905 |
-
},
|
| 1906 |
-
"funding": [
|
| 1907 |
-
{
|
| 1908 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1909 |
-
"type": "github"
|
| 1910 |
-
}
|
| 1911 |
-
],
|
| 1912 |
-
"time": "2020-09-28T06:45:17+00:00"
|
| 1913 |
-
},
|
| 1914 |
-
{
|
| 1915 |
-
"name": "sebastian/type",
|
| 1916 |
-
"version": "2.3.1",
|
| 1917 |
-
"source": {
|
| 1918 |
-
"type": "git",
|
| 1919 |
-
"url": "https://github.com/sebastianbergmann/type.git",
|
| 1920 |
-
"reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
|
| 1921 |
-
},
|
| 1922 |
-
"dist": {
|
| 1923 |
-
"type": "zip",
|
| 1924 |
-
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
|
| 1925 |
-
"reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
|
| 1926 |
-
"shasum": ""
|
| 1927 |
-
},
|
| 1928 |
-
"require": {
|
| 1929 |
-
"php": ">=7.3"
|
| 1930 |
-
},
|
| 1931 |
-
"require-dev": {
|
| 1932 |
-
"phpunit/phpunit": "^9.3"
|
| 1933 |
-
},
|
| 1934 |
-
"type": "library",
|
| 1935 |
-
"extra": {
|
| 1936 |
-
"branch-alias": {
|
| 1937 |
-
"dev-master": "2.3-dev"
|
| 1938 |
-
}
|
| 1939 |
-
},
|
| 1940 |
-
"autoload": {
|
| 1941 |
-
"classmap": ["src/"]
|
| 1942 |
-
},
|
| 1943 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1944 |
-
"license": ["BSD-3-Clause"],
|
| 1945 |
-
"authors": [
|
| 1946 |
-
{
|
| 1947 |
-
"name": "Sebastian Bergmann",
|
| 1948 |
-
"email": "sebastian@phpunit.de",
|
| 1949 |
-
"role": "lead"
|
| 1950 |
-
}
|
| 1951 |
-
],
|
| 1952 |
-
"description": "Collection of value objects that represent the types of the PHP type system",
|
| 1953 |
-
"homepage": "https://github.com/sebastianbergmann/type",
|
| 1954 |
-
"support": {
|
| 1955 |
-
"issues": "https://github.com/sebastianbergmann/type/issues",
|
| 1956 |
-
"source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
|
| 1957 |
-
},
|
| 1958 |
-
"funding": [
|
| 1959 |
-
{
|
| 1960 |
-
"url": "https://github.com/sebastianbergmann",
|
| 1961 |
-
"type": "github"
|
| 1962 |
-
}
|
| 1963 |
-
],
|
| 1964 |
-
"time": "2020-10-26T13:18:59+00:00"
|
| 1965 |
-
},
|
| 1966 |
-
{
|
| 1967 |
-
"name": "sebastian/version",
|
| 1968 |
-
"version": "3.0.2",
|
| 1969 |
-
"source": {
|
| 1970 |
-
"type": "git",
|
| 1971 |
-
"url": "https://github.com/sebastianbergmann/version.git",
|
| 1972 |
-
"reference": "c6c1022351a901512170118436c764e473f6de8c"
|
| 1973 |
-
},
|
| 1974 |
-
"dist": {
|
| 1975 |
-
"type": "zip",
|
| 1976 |
-
"url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
|
| 1977 |
-
"reference": "c6c1022351a901512170118436c764e473f6de8c",
|
| 1978 |
-
"shasum": ""
|
| 1979 |
-
},
|
| 1980 |
-
"require": {
|
| 1981 |
-
"php": ">=7.3"
|
| 1982 |
-
},
|
| 1983 |
-
"type": "library",
|
| 1984 |
-
"extra": {
|
| 1985 |
-
"branch-alias": {
|
| 1986 |
-
"dev-master": "3.0-dev"
|
| 1987 |
-
}
|
| 1988 |
-
},
|
| 1989 |
-
"autoload": {
|
| 1990 |
-
"classmap": ["src/"]
|
| 1991 |
-
},
|
| 1992 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 1993 |
-
"license": ["BSD-3-Clause"],
|
| 1994 |
-
"authors": [
|
| 1995 |
-
{
|
| 1996 |
-
"name": "Sebastian Bergmann",
|
| 1997 |
-
"email": "sebastian@phpunit.de",
|
| 1998 |
-
"role": "lead"
|
| 1999 |
-
}
|
| 2000 |
-
],
|
| 2001 |
-
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
|
| 2002 |
-
"homepage": "https://github.com/sebastianbergmann/version",
|
| 2003 |
-
"support": {
|
| 2004 |
-
"issues": "https://github.com/sebastianbergmann/version/issues",
|
| 2005 |
-
"source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
|
| 2006 |
-
},
|
| 2007 |
-
"funding": [
|
| 2008 |
-
{
|
| 2009 |
-
"url": "https://github.com/sebastianbergmann",
|
| 2010 |
-
"type": "github"
|
| 2011 |
-
}
|
| 2012 |
-
],
|
| 2013 |
-
"time": "2020-09-28T06:39:44+00:00"
|
| 2014 |
-
},
|
| 2015 |
-
{
|
| 2016 |
-
"name": "squizlabs/php_codesniffer",
|
| 2017 |
-
"version": "3.6.0",
|
| 2018 |
-
"source": {
|
| 2019 |
-
"type": "git",
|
| 2020 |
-
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
|
| 2021 |
-
"reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625"
|
| 2022 |
-
},
|
| 2023 |
-
"dist": {
|
| 2024 |
-
"type": "zip",
|
| 2025 |
-
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
|
| 2026 |
-
"reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
|
| 2027 |
-
"shasum": ""
|
| 2028 |
-
},
|
| 2029 |
-
"require": {
|
| 2030 |
-
"ext-simplexml": "*",
|
| 2031 |
-
"ext-tokenizer": "*",
|
| 2032 |
-
"ext-xmlwriter": "*",
|
| 2033 |
-
"php": ">=5.4.0"
|
| 2034 |
-
},
|
| 2035 |
-
"require-dev": {
|
| 2036 |
-
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
|
| 2037 |
-
},
|
| 2038 |
-
"bin": ["bin/phpcs", "bin/phpcbf"],
|
| 2039 |
-
"type": "library",
|
| 2040 |
-
"extra": {
|
| 2041 |
-
"branch-alias": {
|
| 2042 |
-
"dev-master": "3.x-dev"
|
| 2043 |
-
}
|
| 2044 |
-
},
|
| 2045 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 2046 |
-
"license": ["BSD-3-Clause"],
|
| 2047 |
-
"authors": [
|
| 2048 |
-
{
|
| 2049 |
-
"name": "Greg Sherwood",
|
| 2050 |
-
"role": "lead"
|
| 2051 |
-
}
|
| 2052 |
-
],
|
| 2053 |
-
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
|
| 2054 |
-
"homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
|
| 2055 |
-
"keywords": ["phpcs", "standards"],
|
| 2056 |
-
"support": {
|
| 2057 |
-
"issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
|
| 2058 |
-
"source": "https://github.com/squizlabs/PHP_CodeSniffer",
|
| 2059 |
-
"wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
|
| 2060 |
-
},
|
| 2061 |
-
"time": "2021-04-09T00:54:41+00:00"
|
| 2062 |
-
},
|
| 2063 |
-
{
|
| 2064 |
-
"name": "symfony/polyfill-ctype",
|
| 2065 |
-
"version": "v1.22.1",
|
| 2066 |
-
"source": {
|
| 2067 |
-
"type": "git",
|
| 2068 |
-
"url": "https://github.com/symfony/polyfill-ctype.git",
|
| 2069 |
-
"reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
|
| 2070 |
-
},
|
| 2071 |
-
"dist": {
|
| 2072 |
-
"type": "zip",
|
| 2073 |
-
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
|
| 2074 |
-
"reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
|
| 2075 |
-
"shasum": ""
|
| 2076 |
-
},
|
| 2077 |
-
"require": {
|
| 2078 |
-
"php": ">=7.1"
|
| 2079 |
-
},
|
| 2080 |
-
"suggest": {
|
| 2081 |
-
"ext-ctype": "For best performance"
|
| 2082 |
-
},
|
| 2083 |
-
"type": "library",
|
| 2084 |
-
"extra": {
|
| 2085 |
-
"branch-alias": {
|
| 2086 |
-
"dev-main": "1.22-dev"
|
| 2087 |
-
},
|
| 2088 |
-
"thanks": {
|
| 2089 |
-
"name": "symfony/polyfill",
|
| 2090 |
-
"url": "https://github.com/symfony/polyfill"
|
| 2091 |
-
}
|
| 2092 |
-
},
|
| 2093 |
-
"autoload": {
|
| 2094 |
-
"psr-4": {
|
| 2095 |
-
"Symfony\\Polyfill\\Ctype\\": ""
|
| 2096 |
-
},
|
| 2097 |
-
"files": ["bootstrap.php"]
|
| 2098 |
-
},
|
| 2099 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 2100 |
-
"license": ["MIT"],
|
| 2101 |
-
"authors": [
|
| 2102 |
-
{
|
| 2103 |
-
"name": "Gert de Pagter",
|
| 2104 |
-
"email": "BackEndTea@gmail.com"
|
| 2105 |
-
},
|
| 2106 |
-
{
|
| 2107 |
-
"name": "Symfony Community",
|
| 2108 |
-
"homepage": "https://symfony.com/contributors"
|
| 2109 |
-
}
|
| 2110 |
-
],
|
| 2111 |
-
"description": "Symfony polyfill for ctype functions",
|
| 2112 |
-
"homepage": "https://symfony.com",
|
| 2113 |
-
"keywords": ["compatibility", "ctype", "polyfill", "portable"],
|
| 2114 |
-
"support": {
|
| 2115 |
-
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
|
| 2116 |
-
},
|
| 2117 |
-
"funding": [
|
| 2118 |
-
{
|
| 2119 |
-
"url": "https://symfony.com/sponsor",
|
| 2120 |
-
"type": "custom"
|
| 2121 |
-
},
|
| 2122 |
-
{
|
| 2123 |
-
"url": "https://github.com/fabpot",
|
| 2124 |
-
"type": "github"
|
| 2125 |
-
},
|
| 2126 |
-
{
|
| 2127 |
-
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
| 2128 |
-
"type": "tidelift"
|
| 2129 |
-
}
|
| 2130 |
-
],
|
| 2131 |
-
"time": "2021-01-07T16:49:33+00:00"
|
| 2132 |
-
},
|
| 2133 |
-
{
|
| 2134 |
-
"name": "theseer/tokenizer",
|
| 2135 |
-
"version": "1.2.0",
|
| 2136 |
-
"source": {
|
| 2137 |
-
"type": "git",
|
| 2138 |
-
"url": "https://github.com/theseer/tokenizer.git",
|
| 2139 |
-
"reference": "75a63c33a8577608444246075ea0af0d052e452a"
|
| 2140 |
-
},
|
| 2141 |
-
"dist": {
|
| 2142 |
-
"type": "zip",
|
| 2143 |
-
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
|
| 2144 |
-
"reference": "75a63c33a8577608444246075ea0af0d052e452a",
|
| 2145 |
-
"shasum": ""
|
| 2146 |
-
},
|
| 2147 |
-
"require": {
|
| 2148 |
-
"ext-dom": "*",
|
| 2149 |
-
"ext-tokenizer": "*",
|
| 2150 |
-
"ext-xmlwriter": "*",
|
| 2151 |
-
"php": "^7.2 || ^8.0"
|
| 2152 |
-
},
|
| 2153 |
-
"type": "library",
|
| 2154 |
-
"autoload": {
|
| 2155 |
-
"classmap": ["src/"]
|
| 2156 |
-
},
|
| 2157 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 2158 |
-
"license": ["BSD-3-Clause"],
|
| 2159 |
-
"authors": [
|
| 2160 |
-
{
|
| 2161 |
-
"name": "Arne Blankerts",
|
| 2162 |
-
"email": "arne@blankerts.de",
|
| 2163 |
-
"role": "Developer"
|
| 2164 |
-
}
|
| 2165 |
-
],
|
| 2166 |
-
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
|
| 2167 |
-
"support": {
|
| 2168 |
-
"issues": "https://github.com/theseer/tokenizer/issues",
|
| 2169 |
-
"source": "https://github.com/theseer/tokenizer/tree/master"
|
| 2170 |
-
},
|
| 2171 |
-
"funding": [
|
| 2172 |
-
{
|
| 2173 |
-
"url": "https://github.com/theseer",
|
| 2174 |
-
"type": "github"
|
| 2175 |
-
}
|
| 2176 |
-
],
|
| 2177 |
-
"time": "2020-07-12T23:59:07+00:00"
|
| 2178 |
-
},
|
| 2179 |
-
{
|
| 2180 |
-
"name": "webmozart/assert",
|
| 2181 |
-
"version": "1.10.0",
|
| 2182 |
-
"source": {
|
| 2183 |
-
"type": "git",
|
| 2184 |
-
"url": "https://github.com/webmozarts/assert.git",
|
| 2185 |
-
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
|
| 2186 |
-
},
|
| 2187 |
-
"dist": {
|
| 2188 |
-
"type": "zip",
|
| 2189 |
-
"url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
|
| 2190 |
-
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
|
| 2191 |
-
"shasum": ""
|
| 2192 |
-
},
|
| 2193 |
-
"require": {
|
| 2194 |
-
"php": "^7.2 || ^8.0",
|
| 2195 |
-
"symfony/polyfill-ctype": "^1.8"
|
| 2196 |
-
},
|
| 2197 |
-
"conflict": {
|
| 2198 |
-
"phpstan/phpstan": "<0.12.20",
|
| 2199 |
-
"vimeo/psalm": "<4.6.1 || 4.6.2"
|
| 2200 |
-
},
|
| 2201 |
-
"require-dev": {
|
| 2202 |
-
"phpunit/phpunit": "^8.5.13"
|
| 2203 |
-
},
|
| 2204 |
-
"type": "library",
|
| 2205 |
-
"extra": {
|
| 2206 |
-
"branch-alias": {
|
| 2207 |
-
"dev-master": "1.10-dev"
|
| 2208 |
-
}
|
| 2209 |
-
},
|
| 2210 |
-
"autoload": {
|
| 2211 |
-
"psr-4": {
|
| 2212 |
-
"Webmozart\\Assert\\": "src/"
|
| 2213 |
-
}
|
| 2214 |
-
},
|
| 2215 |
-
"notification-url": "https://packagist.org/downloads/",
|
| 2216 |
-
"license": ["MIT"],
|
| 2217 |
-
"authors": [
|
| 2218 |
-
{
|
| 2219 |
-
"name": "Bernhard Schussek",
|
| 2220 |
-
"email": "bschussek@gmail.com"
|
| 2221 |
-
}
|
| 2222 |
-
],
|
| 2223 |
-
"description": "Assertions to validate method input/output with nice error messages.",
|
| 2224 |
-
"keywords": ["assert", "check", "validate"],
|
| 2225 |
-
"support": {
|
| 2226 |
-
"issues": "https://github.com/webmozarts/assert/issues",
|
| 2227 |
-
"source": "https://github.com/webmozarts/assert/tree/1.10.0"
|
| 2228 |
-
},
|
| 2229 |
-
"time": "2021-03-09T10:59:23+00:00"
|
| 2230 |
-
}
|
| 2231 |
-
],
|
| 2232 |
-
"aliases": [],
|
| 2233 |
-
"minimum-stability": "stable",
|
| 2234 |
-
"stability-flags": [],
|
| 2235 |
-
"prefer-stable": false,
|
| 2236 |
-
"prefer-lowest": false,
|
| 2237 |
-
"platform": [],
|
| 2238 |
-
"platform-dev": [],
|
| 2239 |
-
"plugin-api-version": "2.0.0"
|
| 2240 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/editorplus/EditorPlus.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
|
| 7 |
if (!class_exists('edpl__EditorPlus')) {
|
| 8 |
// phpcs:ignore Squiz.Classes.ClassFileName.NoMatch,Squiz.Commenting.ClassComment.Missing,PEAR.Commenting.ClassComment.Missing
|
| 9 |
-
final class
|
| 10 |
{
|
| 11 |
|
| 12 |
/**
|
|
@@ -35,7 +35,7 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
| 35 |
}
|
| 36 |
|
| 37 |
if (is_null(self::$instance)) {
|
| 38 |
-
self::$instance = new
|
| 39 |
}
|
| 40 |
|
| 41 |
return self::$instance;
|
|
@@ -65,8 +65,8 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
| 65 |
'admin_enqueue_scripts',
|
| 66 |
function () {
|
| 67 |
wp_enqueue_script(
|
| 68 |
-
'
|
| 69 |
-
|
| 70 |
[],
|
| 71 |
'1.0',
|
| 72 |
true
|
|
@@ -141,6 +141,7 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
| 141 |
{
|
| 142 |
$post = get_post();
|
| 143 |
$cssContent = apply_filters(
|
|
|
|
| 144 |
'extendifysdk_template_css',
|
| 145 |
get_post_meta($post->ID, 'extendify_custom_stylesheet', true),
|
| 146 |
$post
|
|
@@ -216,5 +217,5 @@ if (!class_exists('edpl__EditorPlus')) {
|
|
| 216 |
// phpcs:ignore Squiz.Classes.ClassDeclaration.SpaceBeforeCloseBrace
|
| 217 |
}
|
| 218 |
|
| 219 |
-
add_action('after_setup_theme', ['
|
| 220 |
}//end if
|
| 6 |
|
| 7 |
if (!class_exists('edpl__EditorPlus')) {
|
| 8 |
// phpcs:ignore Squiz.Classes.ClassFileName.NoMatch,Squiz.Commenting.ClassComment.Missing,PEAR.Commenting.ClassComment.Missing
|
| 9 |
+
final class ExtendifyEditorPlus
|
| 10 |
{
|
| 11 |
|
| 12 |
/**
|
| 35 |
}
|
| 36 |
|
| 37 |
if (is_null(self::$instance)) {
|
| 38 |
+
self::$instance = new ExtendifyEditorPlus();
|
| 39 |
}
|
| 40 |
|
| 41 |
return self::$instance;
|
| 65 |
'admin_enqueue_scripts',
|
| 66 |
function () {
|
| 67 |
wp_enqueue_script(
|
| 68 |
+
'extendify-editorplus-scripts',
|
| 69 |
+
EXTENDIFY_BASE_URL . 'public/editorplus/editorplus.min.js',
|
| 70 |
[],
|
| 71 |
'1.0',
|
| 72 |
true
|
| 141 |
{
|
| 142 |
$post = get_post();
|
| 143 |
$cssContent = apply_filters(
|
| 144 |
+
// For historical reasons do not change this key.
|
| 145 |
'extendifysdk_template_css',
|
| 146 |
get_post_meta($post->ID, 'extendify_custom_stylesheet', true),
|
| 147 |
$post
|
| 217 |
// phpcs:ignore Squiz.Classes.ClassDeclaration.SpaceBeforeCloseBrace
|
| 218 |
}
|
| 219 |
|
| 220 |
+
add_action('after_setup_theme', ['ExtendifyEditorPlus', 'getInstance']);
|
| 221 |
}//end if
|
extendify-sdk/editorplus/editorplus-template.php
CHANGED
|
@@ -4,12 +4,6 @@
|
|
| 4 |
* Template Post Type: post, page
|
| 5 |
*/
|
| 6 |
|
| 7 |
-
$extendifysdkCustomStyles = get_post_meta(
|
| 8 |
-
isset($GLOBALS['post']) ? $GLOBALS['post']->ID : 0,
|
| 9 |
-
'extendify_custom_stylesheet',
|
| 10 |
-
true
|
| 11 |
-
);
|
| 12 |
-
|
| 13 |
?>
|
| 14 |
<?php wp_head(); ?>
|
| 15 |
<body <?php body_class(); ?>>
|
| 4 |
* Template Post Type: post, page
|
| 5 |
*/
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
?>
|
| 8 |
<?php wp_head(); ?>
|
| 9 |
<body <?php body_class(); ?>>
|
extendify-sdk/extendify-sdk.php
DELETED
|
@@ -1,51 +0,0 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
if (!defined('ABSPATH')) {
|
| 3 |
-
exit;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
if (!class_exists('ExtendifySdk')) :
|
| 7 |
-
|
| 8 |
-
/**
|
| 9 |
-
* The Extendify Sdk
|
| 10 |
-
*/
|
| 11 |
-
// phpcs:ignore Squiz.Classes.ClassFileName.NoMatch,Squiz.Commenting.ClassComment.Missing,PEAR.Commenting.ClassComment.Missing
|
| 12 |
-
final class ExtendifySdk
|
| 13 |
-
{
|
| 14 |
-
|
| 15 |
-
/**
|
| 16 |
-
* Var to make sure we only load once
|
| 17 |
-
*
|
| 18 |
-
* @var boolean $loaded
|
| 19 |
-
*/
|
| 20 |
-
public static $loaded = false;
|
| 21 |
-
|
| 22 |
-
/**
|
| 23 |
-
* Set up the SDK
|
| 24 |
-
*
|
| 25 |
-
* @return void
|
| 26 |
-
*/
|
| 27 |
-
public function __invoke()
|
| 28 |
-
{
|
| 29 |
-
if (!apply_filters('extendifysdk_load_library', true)) {
|
| 30 |
-
return;
|
| 31 |
-
}
|
| 32 |
-
|
| 33 |
-
if (version_compare(PHP_VERSION, '5.6', '<') || version_compare($GLOBALS['wp_version'], '5.5', '<')) {
|
| 34 |
-
return;
|
| 35 |
-
}
|
| 36 |
-
|
| 37 |
-
if (!self::$loaded) {
|
| 38 |
-
self::$loaded = true;
|
| 39 |
-
require dirname(__FILE__) . '/bootstrap.php';
|
| 40 |
-
$app = new Extendify\ExtendifySdk\App();
|
| 41 |
-
if (!defined('EXTENDIFYSDK_BASE_URL')) {
|
| 42 |
-
define('EXTENDIFYSDK_BASE_URL', plugin_dir_url(__FILE__));
|
| 43 |
-
}
|
| 44 |
-
}
|
| 45 |
-
}
|
| 46 |
-
// phpcs:ignore Squiz.Classes.ClassDeclaration.SpaceBeforeCloseBrace
|
| 47 |
-
}
|
| 48 |
-
|
| 49 |
-
$extendifySdk = new ExtendifySdk();
|
| 50 |
-
$extendifySdk();
|
| 51 |
-
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/extendify.php
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
if (!defined('ABSPATH')) { exit; } if (!class_exists('ExtendifySdk') && !class_exists('Extendify')) : final class Extendify { public static $loaded = false; public function __invoke() { if (!apply_filters('extendify_load_library', true) || !apply_filters('extendifysdk_load_library', true)) { return; } if (version_compare(PHP_VERSION, '5.6', '<') || version_compare($GLOBALS['wp_version'], '5.5', '<')) { return; } if (!self::$loaded) { self::$loaded = true; require dirname(__FILE__) . '/bootstrap.php'; $app = new Extendify\Library\App(); if (!defined('EXTENDIFY_BASE_URL')) { define('EXTENDIFY_BASE_URL', plugin_dir_url(__FILE__)); } } } } $extendify = new Extendify(); $extendify(); endif;
|
extendify-sdk/loader.php
CHANGED
|
@@ -1,21 +1,21 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
-
*
|
| 4 |
-
*
|
| 5 |
*/
|
| 6 |
|
| 7 |
if (!defined('ABSPATH')) {
|
| 8 |
exit;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
if (!function_exists('
|
| 12 |
/**
|
| 13 |
* Will be truthy if the plugin is installed.
|
| 14 |
*
|
| 15 |
-
* @param string $name name of the plugin 'extendify
|
| 16 |
-
* @return bool|string - will return path, ex. 'extendify
|
| 17 |
*/
|
| 18 |
-
function
|
| 19 |
{
|
| 20 |
if (!function_exists('get_plugins')) {
|
| 21 |
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
|
@@ -31,31 +31,20 @@ if (!function_exists('extendifysdkCheckPluginInstalled')) {
|
|
| 31 |
}
|
| 32 |
}//end if
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
| 40 |
return false;
|
| 41 |
}
|
| 42 |
}
|
| 43 |
|
| 44 |
-
//
|
| 45 |
-
|
| 46 |
-
if ($extendifysdkEditorPlus) {
|
| 47 |
-
// Only if it's deactivated.
|
| 48 |
-
if (is_plugin_active($extendifysdkEditorPlus)) {
|
| 49 |
-
// Only if we aren't currently inside Editor Plus.
|
| 50 |
-
if (strpos(basename(dirname(__DIR__)), 'editorplus') === false) {
|
| 51 |
-
return false;
|
| 52 |
-
}
|
| 53 |
-
}
|
| 54 |
-
}
|
| 55 |
-
|
| 56 |
-
// Next is first come, first serve.
|
| 57 |
-
if (class_exists('ExtendifySdk')) {
|
| 58 |
return false;
|
| 59 |
}
|
| 60 |
|
| 61 |
-
require_once plugin_dir_path(__FILE__) . 'extendify
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
+
* This file is used to help side load the library.
|
| 4 |
+
* Be sure to remove the front matter from extendify.php
|
| 5 |
*/
|
| 6 |
|
| 7 |
if (!defined('ABSPATH')) {
|
| 8 |
exit;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
if (!function_exists('extendifyCheckPluginInstalled')) {
|
| 12 |
/**
|
| 13 |
* Will be truthy if the plugin is installed.
|
| 14 |
*
|
| 15 |
+
* @param string $name name of the plugin 'extendify'.
|
| 16 |
+
* @return bool|string - will return path, ex. 'extendify/extendify.php'.
|
| 17 |
*/
|
| 18 |
+
function extendifyCheckPluginInstalled($name)
|
| 19 |
{
|
| 20 |
if (!function_exists('get_plugins')) {
|
| 21 |
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
| 31 |
}
|
| 32 |
}//end if
|
| 33 |
|
| 34 |
+
$extendifyPluginName = extendifyCheckPluginInstalled('extendify');
|
| 35 |
+
if ($extendifyPluginName) {
|
| 36 |
+
// Exit if the library is installed and active.
|
| 37 |
+
// Remember, this file is only loaded by partner plugins.
|
| 38 |
+
if (is_plugin_active($extendifyPluginName)) {
|
| 39 |
+
// If the SDK is active then ignore the partner plugins.
|
| 40 |
+
$GLOBALS['extendify_sdk_partner'] = '';
|
| 41 |
return false;
|
| 42 |
}
|
| 43 |
}
|
| 44 |
|
| 45 |
+
// Next is first come, first serve. The later class is left in for historical reasons.
|
| 46 |
+
if (class_exists('Extendify') || class_exists('ExtendifySdk')) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
return false;
|
| 48 |
}
|
| 49 |
|
| 50 |
+
require_once plugin_dir_path(__FILE__) . 'extendify.php';
|
extendify-sdk/package-lock.json
DELETED
|
@@ -1,12648 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"name": "extendify-sdk",
|
| 3 |
-
"requires": true,
|
| 4 |
-
"lockfileVersion": 1,
|
| 5 |
-
"dependencies": {
|
| 6 |
-
"@babel/code-frame": {
|
| 7 |
-
"version": "7.16.0",
|
| 8 |
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
|
| 9 |
-
"integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
|
| 10 |
-
"requires": {
|
| 11 |
-
"@babel/highlight": "^7.16.0"
|
| 12 |
-
}
|
| 13 |
-
},
|
| 14 |
-
"@babel/compat-data": {
|
| 15 |
-
"version": "7.16.0",
|
| 16 |
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.0.tgz",
|
| 17 |
-
"integrity": "sha512-DGjt2QZse5SGd9nfOSqO4WLJ8NN/oHkijbXbPrxuoJO3oIPJL3TciZs9FX+cOHNiY9E9l0opL8g7BmLe3T+9ew==",
|
| 18 |
-
"dev": true
|
| 19 |
-
},
|
| 20 |
-
"@babel/core": {
|
| 21 |
-
"version": "7.16.0",
|
| 22 |
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz",
|
| 23 |
-
"integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==",
|
| 24 |
-
"dev": true,
|
| 25 |
-
"requires": {
|
| 26 |
-
"@babel/code-frame": "^7.16.0",
|
| 27 |
-
"@babel/generator": "^7.16.0",
|
| 28 |
-
"@babel/helper-compilation-targets": "^7.16.0",
|
| 29 |
-
"@babel/helper-module-transforms": "^7.16.0",
|
| 30 |
-
"@babel/helpers": "^7.16.0",
|
| 31 |
-
"@babel/parser": "^7.16.0",
|
| 32 |
-
"@babel/template": "^7.16.0",
|
| 33 |
-
"@babel/traverse": "^7.16.0",
|
| 34 |
-
"@babel/types": "^7.16.0",
|
| 35 |
-
"convert-source-map": "^1.7.0",
|
| 36 |
-
"debug": "^4.1.0",
|
| 37 |
-
"gensync": "^1.0.0-beta.2",
|
| 38 |
-
"json5": "^2.1.2",
|
| 39 |
-
"semver": "^6.3.0",
|
| 40 |
-
"source-map": "^0.5.0"
|
| 41 |
-
},
|
| 42 |
-
"dependencies": {
|
| 43 |
-
"semver": {
|
| 44 |
-
"version": "6.3.0",
|
| 45 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 46 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 47 |
-
"dev": true
|
| 48 |
-
}
|
| 49 |
-
}
|
| 50 |
-
},
|
| 51 |
-
"@babel/generator": {
|
| 52 |
-
"version": "7.16.0",
|
| 53 |
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz",
|
| 54 |
-
"integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==",
|
| 55 |
-
"dev": true,
|
| 56 |
-
"requires": {
|
| 57 |
-
"@babel/types": "^7.16.0",
|
| 58 |
-
"jsesc": "^2.5.1",
|
| 59 |
-
"source-map": "^0.5.0"
|
| 60 |
-
}
|
| 61 |
-
},
|
| 62 |
-
"@babel/helper-annotate-as-pure": {
|
| 63 |
-
"version": "7.16.0",
|
| 64 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz",
|
| 65 |
-
"integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==",
|
| 66 |
-
"dev": true,
|
| 67 |
-
"requires": {
|
| 68 |
-
"@babel/types": "^7.16.0"
|
| 69 |
-
}
|
| 70 |
-
},
|
| 71 |
-
"@babel/helper-builder-binary-assignment-operator-visitor": {
|
| 72 |
-
"version": "7.16.0",
|
| 73 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz",
|
| 74 |
-
"integrity": "sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==",
|
| 75 |
-
"dev": true,
|
| 76 |
-
"requires": {
|
| 77 |
-
"@babel/helper-explode-assignable-expression": "^7.16.0",
|
| 78 |
-
"@babel/types": "^7.16.0"
|
| 79 |
-
}
|
| 80 |
-
},
|
| 81 |
-
"@babel/helper-compilation-targets": {
|
| 82 |
-
"version": "7.16.3",
|
| 83 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz",
|
| 84 |
-
"integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==",
|
| 85 |
-
"dev": true,
|
| 86 |
-
"requires": {
|
| 87 |
-
"@babel/compat-data": "^7.16.0",
|
| 88 |
-
"@babel/helper-validator-option": "^7.14.5",
|
| 89 |
-
"browserslist": "^4.17.5",
|
| 90 |
-
"semver": "^6.3.0"
|
| 91 |
-
},
|
| 92 |
-
"dependencies": {
|
| 93 |
-
"semver": {
|
| 94 |
-
"version": "6.3.0",
|
| 95 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 96 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 97 |
-
"dev": true
|
| 98 |
-
}
|
| 99 |
-
}
|
| 100 |
-
},
|
| 101 |
-
"@babel/helper-create-class-features-plugin": {
|
| 102 |
-
"version": "7.16.0",
|
| 103 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz",
|
| 104 |
-
"integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==",
|
| 105 |
-
"dev": true,
|
| 106 |
-
"requires": {
|
| 107 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 108 |
-
"@babel/helper-function-name": "^7.16.0",
|
| 109 |
-
"@babel/helper-member-expression-to-functions": "^7.16.0",
|
| 110 |
-
"@babel/helper-optimise-call-expression": "^7.16.0",
|
| 111 |
-
"@babel/helper-replace-supers": "^7.16.0",
|
| 112 |
-
"@babel/helper-split-export-declaration": "^7.16.0"
|
| 113 |
-
}
|
| 114 |
-
},
|
| 115 |
-
"@babel/helper-create-regexp-features-plugin": {
|
| 116 |
-
"version": "7.16.0",
|
| 117 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz",
|
| 118 |
-
"integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==",
|
| 119 |
-
"dev": true,
|
| 120 |
-
"requires": {
|
| 121 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 122 |
-
"regexpu-core": "^4.7.1"
|
| 123 |
-
}
|
| 124 |
-
},
|
| 125 |
-
"@babel/helper-define-polyfill-provider": {
|
| 126 |
-
"version": "0.2.4",
|
| 127 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz",
|
| 128 |
-
"integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==",
|
| 129 |
-
"dev": true,
|
| 130 |
-
"requires": {
|
| 131 |
-
"@babel/helper-compilation-targets": "^7.13.0",
|
| 132 |
-
"@babel/helper-module-imports": "^7.12.13",
|
| 133 |
-
"@babel/helper-plugin-utils": "^7.13.0",
|
| 134 |
-
"@babel/traverse": "^7.13.0",
|
| 135 |
-
"debug": "^4.1.1",
|
| 136 |
-
"lodash.debounce": "^4.0.8",
|
| 137 |
-
"resolve": "^1.14.2",
|
| 138 |
-
"semver": "^6.1.2"
|
| 139 |
-
},
|
| 140 |
-
"dependencies": {
|
| 141 |
-
"semver": {
|
| 142 |
-
"version": "6.3.0",
|
| 143 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 144 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 145 |
-
"dev": true
|
| 146 |
-
}
|
| 147 |
-
}
|
| 148 |
-
},
|
| 149 |
-
"@babel/helper-explode-assignable-expression": {
|
| 150 |
-
"version": "7.16.0",
|
| 151 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz",
|
| 152 |
-
"integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==",
|
| 153 |
-
"dev": true,
|
| 154 |
-
"requires": {
|
| 155 |
-
"@babel/types": "^7.16.0"
|
| 156 |
-
}
|
| 157 |
-
},
|
| 158 |
-
"@babel/helper-function-name": {
|
| 159 |
-
"version": "7.16.0",
|
| 160 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz",
|
| 161 |
-
"integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==",
|
| 162 |
-
"dev": true,
|
| 163 |
-
"requires": {
|
| 164 |
-
"@babel/helper-get-function-arity": "^7.16.0",
|
| 165 |
-
"@babel/template": "^7.16.0",
|
| 166 |
-
"@babel/types": "^7.16.0"
|
| 167 |
-
}
|
| 168 |
-
},
|
| 169 |
-
"@babel/helper-get-function-arity": {
|
| 170 |
-
"version": "7.16.0",
|
| 171 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz",
|
| 172 |
-
"integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==",
|
| 173 |
-
"dev": true,
|
| 174 |
-
"requires": {
|
| 175 |
-
"@babel/types": "^7.16.0"
|
| 176 |
-
}
|
| 177 |
-
},
|
| 178 |
-
"@babel/helper-hoist-variables": {
|
| 179 |
-
"version": "7.16.0",
|
| 180 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz",
|
| 181 |
-
"integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==",
|
| 182 |
-
"dev": true,
|
| 183 |
-
"requires": {
|
| 184 |
-
"@babel/types": "^7.16.0"
|
| 185 |
-
}
|
| 186 |
-
},
|
| 187 |
-
"@babel/helper-member-expression-to-functions": {
|
| 188 |
-
"version": "7.16.0",
|
| 189 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz",
|
| 190 |
-
"integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==",
|
| 191 |
-
"dev": true,
|
| 192 |
-
"requires": {
|
| 193 |
-
"@babel/types": "^7.16.0"
|
| 194 |
-
}
|
| 195 |
-
},
|
| 196 |
-
"@babel/helper-module-imports": {
|
| 197 |
-
"version": "7.16.0",
|
| 198 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz",
|
| 199 |
-
"integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==",
|
| 200 |
-
"requires": {
|
| 201 |
-
"@babel/types": "^7.16.0"
|
| 202 |
-
}
|
| 203 |
-
},
|
| 204 |
-
"@babel/helper-module-transforms": {
|
| 205 |
-
"version": "7.16.0",
|
| 206 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz",
|
| 207 |
-
"integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==",
|
| 208 |
-
"dev": true,
|
| 209 |
-
"requires": {
|
| 210 |
-
"@babel/helper-module-imports": "^7.16.0",
|
| 211 |
-
"@babel/helper-replace-supers": "^7.16.0",
|
| 212 |
-
"@babel/helper-simple-access": "^7.16.0",
|
| 213 |
-
"@babel/helper-split-export-declaration": "^7.16.0",
|
| 214 |
-
"@babel/helper-validator-identifier": "^7.15.7",
|
| 215 |
-
"@babel/template": "^7.16.0",
|
| 216 |
-
"@babel/traverse": "^7.16.0",
|
| 217 |
-
"@babel/types": "^7.16.0"
|
| 218 |
-
}
|
| 219 |
-
},
|
| 220 |
-
"@babel/helper-optimise-call-expression": {
|
| 221 |
-
"version": "7.16.0",
|
| 222 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz",
|
| 223 |
-
"integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==",
|
| 224 |
-
"dev": true,
|
| 225 |
-
"requires": {
|
| 226 |
-
"@babel/types": "^7.16.0"
|
| 227 |
-
}
|
| 228 |
-
},
|
| 229 |
-
"@babel/helper-plugin-utils": {
|
| 230 |
-
"version": "7.14.5",
|
| 231 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz",
|
| 232 |
-
"integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
|
| 233 |
-
},
|
| 234 |
-
"@babel/helper-remap-async-to-generator": {
|
| 235 |
-
"version": "7.16.0",
|
| 236 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.0.tgz",
|
| 237 |
-
"integrity": "sha512-MLM1IOMe9aQBqMWxcRw8dcb9jlM86NIw7KA0Wri91Xkfied+dE0QuBFSBjMNvqzmS0OSIDsMNC24dBEkPUi7ew==",
|
| 238 |
-
"dev": true,
|
| 239 |
-
"requires": {
|
| 240 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 241 |
-
"@babel/helper-wrap-function": "^7.16.0",
|
| 242 |
-
"@babel/types": "^7.16.0"
|
| 243 |
-
}
|
| 244 |
-
},
|
| 245 |
-
"@babel/helper-replace-supers": {
|
| 246 |
-
"version": "7.16.0",
|
| 247 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz",
|
| 248 |
-
"integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==",
|
| 249 |
-
"dev": true,
|
| 250 |
-
"requires": {
|
| 251 |
-
"@babel/helper-member-expression-to-functions": "^7.16.0",
|
| 252 |
-
"@babel/helper-optimise-call-expression": "^7.16.0",
|
| 253 |
-
"@babel/traverse": "^7.16.0",
|
| 254 |
-
"@babel/types": "^7.16.0"
|
| 255 |
-
}
|
| 256 |
-
},
|
| 257 |
-
"@babel/helper-simple-access": {
|
| 258 |
-
"version": "7.16.0",
|
| 259 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz",
|
| 260 |
-
"integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==",
|
| 261 |
-
"dev": true,
|
| 262 |
-
"requires": {
|
| 263 |
-
"@babel/types": "^7.16.0"
|
| 264 |
-
}
|
| 265 |
-
},
|
| 266 |
-
"@babel/helper-skip-transparent-expression-wrappers": {
|
| 267 |
-
"version": "7.16.0",
|
| 268 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
|
| 269 |
-
"integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
|
| 270 |
-
"dev": true,
|
| 271 |
-
"requires": {
|
| 272 |
-
"@babel/types": "^7.16.0"
|
| 273 |
-
}
|
| 274 |
-
},
|
| 275 |
-
"@babel/helper-split-export-declaration": {
|
| 276 |
-
"version": "7.16.0",
|
| 277 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz",
|
| 278 |
-
"integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==",
|
| 279 |
-
"dev": true,
|
| 280 |
-
"requires": {
|
| 281 |
-
"@babel/types": "^7.16.0"
|
| 282 |
-
}
|
| 283 |
-
},
|
| 284 |
-
"@babel/helper-validator-identifier": {
|
| 285 |
-
"version": "7.15.7",
|
| 286 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
|
| 287 |
-
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
|
| 288 |
-
},
|
| 289 |
-
"@babel/helper-validator-option": {
|
| 290 |
-
"version": "7.14.5",
|
| 291 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz",
|
| 292 |
-
"integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==",
|
| 293 |
-
"dev": true
|
| 294 |
-
},
|
| 295 |
-
"@babel/helper-wrap-function": {
|
| 296 |
-
"version": "7.16.0",
|
| 297 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz",
|
| 298 |
-
"integrity": "sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==",
|
| 299 |
-
"dev": true,
|
| 300 |
-
"requires": {
|
| 301 |
-
"@babel/helper-function-name": "^7.16.0",
|
| 302 |
-
"@babel/template": "^7.16.0",
|
| 303 |
-
"@babel/traverse": "^7.16.0",
|
| 304 |
-
"@babel/types": "^7.16.0"
|
| 305 |
-
}
|
| 306 |
-
},
|
| 307 |
-
"@babel/helpers": {
|
| 308 |
-
"version": "7.16.3",
|
| 309 |
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz",
|
| 310 |
-
"integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==",
|
| 311 |
-
"dev": true,
|
| 312 |
-
"requires": {
|
| 313 |
-
"@babel/template": "^7.16.0",
|
| 314 |
-
"@babel/traverse": "^7.16.3",
|
| 315 |
-
"@babel/types": "^7.16.0"
|
| 316 |
-
}
|
| 317 |
-
},
|
| 318 |
-
"@babel/highlight": {
|
| 319 |
-
"version": "7.16.0",
|
| 320 |
-
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
|
| 321 |
-
"integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
|
| 322 |
-
"requires": {
|
| 323 |
-
"@babel/helper-validator-identifier": "^7.15.7",
|
| 324 |
-
"chalk": "^2.0.0",
|
| 325 |
-
"js-tokens": "^4.0.0"
|
| 326 |
-
}
|
| 327 |
-
},
|
| 328 |
-
"@babel/parser": {
|
| 329 |
-
"version": "7.16.3",
|
| 330 |
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.3.tgz",
|
| 331 |
-
"integrity": "sha512-dcNwU1O4sx57ClvLBVFbEgx0UZWfd0JQX5X6fxFRCLHelFBGXFfSz6Y0FAq2PEwUqlqLkdVjVr4VASEOuUnLJw==",
|
| 332 |
-
"dev": true
|
| 333 |
-
},
|
| 334 |
-
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
|
| 335 |
-
"version": "7.16.2",
|
| 336 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz",
|
| 337 |
-
"integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==",
|
| 338 |
-
"dev": true,
|
| 339 |
-
"requires": {
|
| 340 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 341 |
-
}
|
| 342 |
-
},
|
| 343 |
-
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
|
| 344 |
-
"version": "7.16.0",
|
| 345 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz",
|
| 346 |
-
"integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==",
|
| 347 |
-
"dev": true,
|
| 348 |
-
"requires": {
|
| 349 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 350 |
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
|
| 351 |
-
"@babel/plugin-proposal-optional-chaining": "^7.16.0"
|
| 352 |
-
}
|
| 353 |
-
},
|
| 354 |
-
"@babel/plugin-proposal-async-generator-functions": {
|
| 355 |
-
"version": "7.16.0",
|
| 356 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.0.tgz",
|
| 357 |
-
"integrity": "sha512-nyYmIo7ZqKsY6P4lnVmBlxp9B3a96CscbLotlsNuktMHahkDwoPYEjXrZHU0Tj844Z9f1IthVxQln57mhkcExw==",
|
| 358 |
-
"dev": true,
|
| 359 |
-
"requires": {
|
| 360 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 361 |
-
"@babel/helper-remap-async-to-generator": "^7.16.0",
|
| 362 |
-
"@babel/plugin-syntax-async-generators": "^7.8.4"
|
| 363 |
-
}
|
| 364 |
-
},
|
| 365 |
-
"@babel/plugin-proposal-class-properties": {
|
| 366 |
-
"version": "7.16.0",
|
| 367 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz",
|
| 368 |
-
"integrity": "sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==",
|
| 369 |
-
"dev": true,
|
| 370 |
-
"requires": {
|
| 371 |
-
"@babel/helper-create-class-features-plugin": "^7.16.0",
|
| 372 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 373 |
-
}
|
| 374 |
-
},
|
| 375 |
-
"@babel/plugin-proposal-class-static-block": {
|
| 376 |
-
"version": "7.16.0",
|
| 377 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.0.tgz",
|
| 378 |
-
"integrity": "sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==",
|
| 379 |
-
"dev": true,
|
| 380 |
-
"requires": {
|
| 381 |
-
"@babel/helper-create-class-features-plugin": "^7.16.0",
|
| 382 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 383 |
-
"@babel/plugin-syntax-class-static-block": "^7.14.5"
|
| 384 |
-
}
|
| 385 |
-
},
|
| 386 |
-
"@babel/plugin-proposal-dynamic-import": {
|
| 387 |
-
"version": "7.16.0",
|
| 388 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz",
|
| 389 |
-
"integrity": "sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==",
|
| 390 |
-
"dev": true,
|
| 391 |
-
"requires": {
|
| 392 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 393 |
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
|
| 394 |
-
}
|
| 395 |
-
},
|
| 396 |
-
"@babel/plugin-proposal-export-namespace-from": {
|
| 397 |
-
"version": "7.16.0",
|
| 398 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz",
|
| 399 |
-
"integrity": "sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==",
|
| 400 |
-
"dev": true,
|
| 401 |
-
"requires": {
|
| 402 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 403 |
-
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
| 404 |
-
}
|
| 405 |
-
},
|
| 406 |
-
"@babel/plugin-proposal-json-strings": {
|
| 407 |
-
"version": "7.16.0",
|
| 408 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz",
|
| 409 |
-
"integrity": "sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==",
|
| 410 |
-
"dev": true,
|
| 411 |
-
"requires": {
|
| 412 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 413 |
-
"@babel/plugin-syntax-json-strings": "^7.8.3"
|
| 414 |
-
}
|
| 415 |
-
},
|
| 416 |
-
"@babel/plugin-proposal-logical-assignment-operators": {
|
| 417 |
-
"version": "7.16.0",
|
| 418 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz",
|
| 419 |
-
"integrity": "sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==",
|
| 420 |
-
"dev": true,
|
| 421 |
-
"requires": {
|
| 422 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 423 |
-
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
|
| 424 |
-
}
|
| 425 |
-
},
|
| 426 |
-
"@babel/plugin-proposal-nullish-coalescing-operator": {
|
| 427 |
-
"version": "7.16.0",
|
| 428 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz",
|
| 429 |
-
"integrity": "sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==",
|
| 430 |
-
"dev": true,
|
| 431 |
-
"requires": {
|
| 432 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 433 |
-
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
|
| 434 |
-
}
|
| 435 |
-
},
|
| 436 |
-
"@babel/plugin-proposal-numeric-separator": {
|
| 437 |
-
"version": "7.16.0",
|
| 438 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz",
|
| 439 |
-
"integrity": "sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==",
|
| 440 |
-
"dev": true,
|
| 441 |
-
"requires": {
|
| 442 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 443 |
-
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
|
| 444 |
-
}
|
| 445 |
-
},
|
| 446 |
-
"@babel/plugin-proposal-object-rest-spread": {
|
| 447 |
-
"version": "7.16.0",
|
| 448 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.0.tgz",
|
| 449 |
-
"integrity": "sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==",
|
| 450 |
-
"dev": true,
|
| 451 |
-
"requires": {
|
| 452 |
-
"@babel/compat-data": "^7.16.0",
|
| 453 |
-
"@babel/helper-compilation-targets": "^7.16.0",
|
| 454 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 455 |
-
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
| 456 |
-
"@babel/plugin-transform-parameters": "^7.16.0"
|
| 457 |
-
}
|
| 458 |
-
},
|
| 459 |
-
"@babel/plugin-proposal-optional-catch-binding": {
|
| 460 |
-
"version": "7.16.0",
|
| 461 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz",
|
| 462 |
-
"integrity": "sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==",
|
| 463 |
-
"dev": true,
|
| 464 |
-
"requires": {
|
| 465 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 466 |
-
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
|
| 467 |
-
}
|
| 468 |
-
},
|
| 469 |
-
"@babel/plugin-proposal-optional-chaining": {
|
| 470 |
-
"version": "7.16.0",
|
| 471 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz",
|
| 472 |
-
"integrity": "sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==",
|
| 473 |
-
"dev": true,
|
| 474 |
-
"requires": {
|
| 475 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 476 |
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
|
| 477 |
-
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
|
| 478 |
-
}
|
| 479 |
-
},
|
| 480 |
-
"@babel/plugin-proposal-private-methods": {
|
| 481 |
-
"version": "7.16.0",
|
| 482 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz",
|
| 483 |
-
"integrity": "sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==",
|
| 484 |
-
"dev": true,
|
| 485 |
-
"requires": {
|
| 486 |
-
"@babel/helper-create-class-features-plugin": "^7.16.0",
|
| 487 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 488 |
-
}
|
| 489 |
-
},
|
| 490 |
-
"@babel/plugin-proposal-private-property-in-object": {
|
| 491 |
-
"version": "7.16.0",
|
| 492 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz",
|
| 493 |
-
"integrity": "sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==",
|
| 494 |
-
"dev": true,
|
| 495 |
-
"requires": {
|
| 496 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 497 |
-
"@babel/helper-create-class-features-plugin": "^7.16.0",
|
| 498 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 499 |
-
"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
|
| 500 |
-
}
|
| 501 |
-
},
|
| 502 |
-
"@babel/plugin-proposal-unicode-property-regex": {
|
| 503 |
-
"version": "7.16.0",
|
| 504 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz",
|
| 505 |
-
"integrity": "sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==",
|
| 506 |
-
"dev": true,
|
| 507 |
-
"requires": {
|
| 508 |
-
"@babel/helper-create-regexp-features-plugin": "^7.16.0",
|
| 509 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 510 |
-
}
|
| 511 |
-
},
|
| 512 |
-
"@babel/plugin-syntax-async-generators": {
|
| 513 |
-
"version": "7.8.4",
|
| 514 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
|
| 515 |
-
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
|
| 516 |
-
"dev": true,
|
| 517 |
-
"requires": {
|
| 518 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 519 |
-
}
|
| 520 |
-
},
|
| 521 |
-
"@babel/plugin-syntax-class-properties": {
|
| 522 |
-
"version": "7.12.13",
|
| 523 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
|
| 524 |
-
"integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
|
| 525 |
-
"dev": true,
|
| 526 |
-
"requires": {
|
| 527 |
-
"@babel/helper-plugin-utils": "^7.12.13"
|
| 528 |
-
}
|
| 529 |
-
},
|
| 530 |
-
"@babel/plugin-syntax-class-static-block": {
|
| 531 |
-
"version": "7.14.5",
|
| 532 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
|
| 533 |
-
"integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
|
| 534 |
-
"dev": true,
|
| 535 |
-
"requires": {
|
| 536 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 537 |
-
}
|
| 538 |
-
},
|
| 539 |
-
"@babel/plugin-syntax-dynamic-import": {
|
| 540 |
-
"version": "7.8.3",
|
| 541 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
|
| 542 |
-
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
|
| 543 |
-
"dev": true,
|
| 544 |
-
"requires": {
|
| 545 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 546 |
-
}
|
| 547 |
-
},
|
| 548 |
-
"@babel/plugin-syntax-export-namespace-from": {
|
| 549 |
-
"version": "7.8.3",
|
| 550 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
|
| 551 |
-
"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
|
| 552 |
-
"dev": true,
|
| 553 |
-
"requires": {
|
| 554 |
-
"@babel/helper-plugin-utils": "^7.8.3"
|
| 555 |
-
}
|
| 556 |
-
},
|
| 557 |
-
"@babel/plugin-syntax-json-strings": {
|
| 558 |
-
"version": "7.8.3",
|
| 559 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
|
| 560 |
-
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
|
| 561 |
-
"dev": true,
|
| 562 |
-
"requires": {
|
| 563 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 564 |
-
}
|
| 565 |
-
},
|
| 566 |
-
"@babel/plugin-syntax-jsx": {
|
| 567 |
-
"version": "7.16.0",
|
| 568 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz",
|
| 569 |
-
"integrity": "sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==",
|
| 570 |
-
"requires": {
|
| 571 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 572 |
-
}
|
| 573 |
-
},
|
| 574 |
-
"@babel/plugin-syntax-logical-assignment-operators": {
|
| 575 |
-
"version": "7.10.4",
|
| 576 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
|
| 577 |
-
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
|
| 578 |
-
"dev": true,
|
| 579 |
-
"requires": {
|
| 580 |
-
"@babel/helper-plugin-utils": "^7.10.4"
|
| 581 |
-
}
|
| 582 |
-
},
|
| 583 |
-
"@babel/plugin-syntax-nullish-coalescing-operator": {
|
| 584 |
-
"version": "7.8.3",
|
| 585 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
|
| 586 |
-
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
|
| 587 |
-
"dev": true,
|
| 588 |
-
"requires": {
|
| 589 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 590 |
-
}
|
| 591 |
-
},
|
| 592 |
-
"@babel/plugin-syntax-numeric-separator": {
|
| 593 |
-
"version": "7.10.4",
|
| 594 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
|
| 595 |
-
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
|
| 596 |
-
"dev": true,
|
| 597 |
-
"requires": {
|
| 598 |
-
"@babel/helper-plugin-utils": "^7.10.4"
|
| 599 |
-
}
|
| 600 |
-
},
|
| 601 |
-
"@babel/plugin-syntax-object-rest-spread": {
|
| 602 |
-
"version": "7.8.3",
|
| 603 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
|
| 604 |
-
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
|
| 605 |
-
"dev": true,
|
| 606 |
-
"requires": {
|
| 607 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 608 |
-
}
|
| 609 |
-
},
|
| 610 |
-
"@babel/plugin-syntax-optional-catch-binding": {
|
| 611 |
-
"version": "7.8.3",
|
| 612 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
|
| 613 |
-
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
|
| 614 |
-
"dev": true,
|
| 615 |
-
"requires": {
|
| 616 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 617 |
-
}
|
| 618 |
-
},
|
| 619 |
-
"@babel/plugin-syntax-optional-chaining": {
|
| 620 |
-
"version": "7.8.3",
|
| 621 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
|
| 622 |
-
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
|
| 623 |
-
"dev": true,
|
| 624 |
-
"requires": {
|
| 625 |
-
"@babel/helper-plugin-utils": "^7.8.0"
|
| 626 |
-
}
|
| 627 |
-
},
|
| 628 |
-
"@babel/plugin-syntax-private-property-in-object": {
|
| 629 |
-
"version": "7.14.5",
|
| 630 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
|
| 631 |
-
"integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
|
| 632 |
-
"dev": true,
|
| 633 |
-
"requires": {
|
| 634 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 635 |
-
}
|
| 636 |
-
},
|
| 637 |
-
"@babel/plugin-syntax-top-level-await": {
|
| 638 |
-
"version": "7.14.5",
|
| 639 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
|
| 640 |
-
"integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
|
| 641 |
-
"dev": true,
|
| 642 |
-
"requires": {
|
| 643 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 644 |
-
}
|
| 645 |
-
},
|
| 646 |
-
"@babel/plugin-transform-arrow-functions": {
|
| 647 |
-
"version": "7.16.0",
|
| 648 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz",
|
| 649 |
-
"integrity": "sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==",
|
| 650 |
-
"dev": true,
|
| 651 |
-
"requires": {
|
| 652 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 653 |
-
}
|
| 654 |
-
},
|
| 655 |
-
"@babel/plugin-transform-async-to-generator": {
|
| 656 |
-
"version": "7.16.0",
|
| 657 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz",
|
| 658 |
-
"integrity": "sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==",
|
| 659 |
-
"dev": true,
|
| 660 |
-
"requires": {
|
| 661 |
-
"@babel/helper-module-imports": "^7.16.0",
|
| 662 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 663 |
-
"@babel/helper-remap-async-to-generator": "^7.16.0"
|
| 664 |
-
}
|
| 665 |
-
},
|
| 666 |
-
"@babel/plugin-transform-block-scoped-functions": {
|
| 667 |
-
"version": "7.16.0",
|
| 668 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz",
|
| 669 |
-
"integrity": "sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==",
|
| 670 |
-
"dev": true,
|
| 671 |
-
"requires": {
|
| 672 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 673 |
-
}
|
| 674 |
-
},
|
| 675 |
-
"@babel/plugin-transform-block-scoping": {
|
| 676 |
-
"version": "7.16.0",
|
| 677 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz",
|
| 678 |
-
"integrity": "sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==",
|
| 679 |
-
"dev": true,
|
| 680 |
-
"requires": {
|
| 681 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 682 |
-
}
|
| 683 |
-
},
|
| 684 |
-
"@babel/plugin-transform-classes": {
|
| 685 |
-
"version": "7.16.0",
|
| 686 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz",
|
| 687 |
-
"integrity": "sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==",
|
| 688 |
-
"dev": true,
|
| 689 |
-
"requires": {
|
| 690 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 691 |
-
"@babel/helper-function-name": "^7.16.0",
|
| 692 |
-
"@babel/helper-optimise-call-expression": "^7.16.0",
|
| 693 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 694 |
-
"@babel/helper-replace-supers": "^7.16.0",
|
| 695 |
-
"@babel/helper-split-export-declaration": "^7.16.0",
|
| 696 |
-
"globals": "^11.1.0"
|
| 697 |
-
},
|
| 698 |
-
"dependencies": {
|
| 699 |
-
"globals": {
|
| 700 |
-
"version": "11.12.0",
|
| 701 |
-
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
|
| 702 |
-
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
| 703 |
-
"dev": true
|
| 704 |
-
}
|
| 705 |
-
}
|
| 706 |
-
},
|
| 707 |
-
"@babel/plugin-transform-computed-properties": {
|
| 708 |
-
"version": "7.16.0",
|
| 709 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz",
|
| 710 |
-
"integrity": "sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==",
|
| 711 |
-
"dev": true,
|
| 712 |
-
"requires": {
|
| 713 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 714 |
-
}
|
| 715 |
-
},
|
| 716 |
-
"@babel/plugin-transform-destructuring": {
|
| 717 |
-
"version": "7.16.0",
|
| 718 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz",
|
| 719 |
-
"integrity": "sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==",
|
| 720 |
-
"dev": true,
|
| 721 |
-
"requires": {
|
| 722 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 723 |
-
}
|
| 724 |
-
},
|
| 725 |
-
"@babel/plugin-transform-dotall-regex": {
|
| 726 |
-
"version": "7.16.0",
|
| 727 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz",
|
| 728 |
-
"integrity": "sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==",
|
| 729 |
-
"dev": true,
|
| 730 |
-
"requires": {
|
| 731 |
-
"@babel/helper-create-regexp-features-plugin": "^7.16.0",
|
| 732 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 733 |
-
}
|
| 734 |
-
},
|
| 735 |
-
"@babel/plugin-transform-duplicate-keys": {
|
| 736 |
-
"version": "7.16.0",
|
| 737 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz",
|
| 738 |
-
"integrity": "sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==",
|
| 739 |
-
"dev": true,
|
| 740 |
-
"requires": {
|
| 741 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 742 |
-
}
|
| 743 |
-
},
|
| 744 |
-
"@babel/plugin-transform-exponentiation-operator": {
|
| 745 |
-
"version": "7.16.0",
|
| 746 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz",
|
| 747 |
-
"integrity": "sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==",
|
| 748 |
-
"dev": true,
|
| 749 |
-
"requires": {
|
| 750 |
-
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0",
|
| 751 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 752 |
-
}
|
| 753 |
-
},
|
| 754 |
-
"@babel/plugin-transform-for-of": {
|
| 755 |
-
"version": "7.16.0",
|
| 756 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz",
|
| 757 |
-
"integrity": "sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==",
|
| 758 |
-
"dev": true,
|
| 759 |
-
"requires": {
|
| 760 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 761 |
-
}
|
| 762 |
-
},
|
| 763 |
-
"@babel/plugin-transform-function-name": {
|
| 764 |
-
"version": "7.16.0",
|
| 765 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz",
|
| 766 |
-
"integrity": "sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==",
|
| 767 |
-
"dev": true,
|
| 768 |
-
"requires": {
|
| 769 |
-
"@babel/helper-function-name": "^7.16.0",
|
| 770 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 771 |
-
}
|
| 772 |
-
},
|
| 773 |
-
"@babel/plugin-transform-literals": {
|
| 774 |
-
"version": "7.16.0",
|
| 775 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz",
|
| 776 |
-
"integrity": "sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==",
|
| 777 |
-
"dev": true,
|
| 778 |
-
"requires": {
|
| 779 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 780 |
-
}
|
| 781 |
-
},
|
| 782 |
-
"@babel/plugin-transform-member-expression-literals": {
|
| 783 |
-
"version": "7.16.0",
|
| 784 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz",
|
| 785 |
-
"integrity": "sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==",
|
| 786 |
-
"dev": true,
|
| 787 |
-
"requires": {
|
| 788 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 789 |
-
}
|
| 790 |
-
},
|
| 791 |
-
"@babel/plugin-transform-modules-amd": {
|
| 792 |
-
"version": "7.16.0",
|
| 793 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz",
|
| 794 |
-
"integrity": "sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==",
|
| 795 |
-
"dev": true,
|
| 796 |
-
"requires": {
|
| 797 |
-
"@babel/helper-module-transforms": "^7.16.0",
|
| 798 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 799 |
-
"babel-plugin-dynamic-import-node": "^2.3.3"
|
| 800 |
-
}
|
| 801 |
-
},
|
| 802 |
-
"@babel/plugin-transform-modules-commonjs": {
|
| 803 |
-
"version": "7.16.0",
|
| 804 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz",
|
| 805 |
-
"integrity": "sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==",
|
| 806 |
-
"dev": true,
|
| 807 |
-
"requires": {
|
| 808 |
-
"@babel/helper-module-transforms": "^7.16.0",
|
| 809 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 810 |
-
"@babel/helper-simple-access": "^7.16.0",
|
| 811 |
-
"babel-plugin-dynamic-import-node": "^2.3.3"
|
| 812 |
-
}
|
| 813 |
-
},
|
| 814 |
-
"@babel/plugin-transform-modules-systemjs": {
|
| 815 |
-
"version": "7.16.0",
|
| 816 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz",
|
| 817 |
-
"integrity": "sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==",
|
| 818 |
-
"dev": true,
|
| 819 |
-
"requires": {
|
| 820 |
-
"@babel/helper-hoist-variables": "^7.16.0",
|
| 821 |
-
"@babel/helper-module-transforms": "^7.16.0",
|
| 822 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 823 |
-
"@babel/helper-validator-identifier": "^7.15.7",
|
| 824 |
-
"babel-plugin-dynamic-import-node": "^2.3.3"
|
| 825 |
-
}
|
| 826 |
-
},
|
| 827 |
-
"@babel/plugin-transform-modules-umd": {
|
| 828 |
-
"version": "7.16.0",
|
| 829 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz",
|
| 830 |
-
"integrity": "sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==",
|
| 831 |
-
"dev": true,
|
| 832 |
-
"requires": {
|
| 833 |
-
"@babel/helper-module-transforms": "^7.16.0",
|
| 834 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 835 |
-
}
|
| 836 |
-
},
|
| 837 |
-
"@babel/plugin-transform-named-capturing-groups-regex": {
|
| 838 |
-
"version": "7.16.0",
|
| 839 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz",
|
| 840 |
-
"integrity": "sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==",
|
| 841 |
-
"dev": true,
|
| 842 |
-
"requires": {
|
| 843 |
-
"@babel/helper-create-regexp-features-plugin": "^7.16.0"
|
| 844 |
-
}
|
| 845 |
-
},
|
| 846 |
-
"@babel/plugin-transform-new-target": {
|
| 847 |
-
"version": "7.16.0",
|
| 848 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz",
|
| 849 |
-
"integrity": "sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==",
|
| 850 |
-
"dev": true,
|
| 851 |
-
"requires": {
|
| 852 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 853 |
-
}
|
| 854 |
-
},
|
| 855 |
-
"@babel/plugin-transform-object-super": {
|
| 856 |
-
"version": "7.16.0",
|
| 857 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz",
|
| 858 |
-
"integrity": "sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==",
|
| 859 |
-
"dev": true,
|
| 860 |
-
"requires": {
|
| 861 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 862 |
-
"@babel/helper-replace-supers": "^7.16.0"
|
| 863 |
-
}
|
| 864 |
-
},
|
| 865 |
-
"@babel/plugin-transform-parameters": {
|
| 866 |
-
"version": "7.16.3",
|
| 867 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz",
|
| 868 |
-
"integrity": "sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==",
|
| 869 |
-
"dev": true,
|
| 870 |
-
"requires": {
|
| 871 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 872 |
-
}
|
| 873 |
-
},
|
| 874 |
-
"@babel/plugin-transform-property-literals": {
|
| 875 |
-
"version": "7.16.0",
|
| 876 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz",
|
| 877 |
-
"integrity": "sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==",
|
| 878 |
-
"dev": true,
|
| 879 |
-
"requires": {
|
| 880 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 881 |
-
}
|
| 882 |
-
},
|
| 883 |
-
"@babel/plugin-transform-react-display-name": {
|
| 884 |
-
"version": "7.16.0",
|
| 885 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz",
|
| 886 |
-
"integrity": "sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==",
|
| 887 |
-
"dev": true,
|
| 888 |
-
"requires": {
|
| 889 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 890 |
-
}
|
| 891 |
-
},
|
| 892 |
-
"@babel/plugin-transform-react-jsx": {
|
| 893 |
-
"version": "7.16.0",
|
| 894 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz",
|
| 895 |
-
"integrity": "sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==",
|
| 896 |
-
"dev": true,
|
| 897 |
-
"requires": {
|
| 898 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 899 |
-
"@babel/helper-module-imports": "^7.16.0",
|
| 900 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 901 |
-
"@babel/plugin-syntax-jsx": "^7.16.0",
|
| 902 |
-
"@babel/types": "^7.16.0"
|
| 903 |
-
}
|
| 904 |
-
},
|
| 905 |
-
"@babel/plugin-transform-react-jsx-development": {
|
| 906 |
-
"version": "7.16.0",
|
| 907 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz",
|
| 908 |
-
"integrity": "sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==",
|
| 909 |
-
"dev": true,
|
| 910 |
-
"requires": {
|
| 911 |
-
"@babel/plugin-transform-react-jsx": "^7.16.0"
|
| 912 |
-
}
|
| 913 |
-
},
|
| 914 |
-
"@babel/plugin-transform-react-pure-annotations": {
|
| 915 |
-
"version": "7.16.0",
|
| 916 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz",
|
| 917 |
-
"integrity": "sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==",
|
| 918 |
-
"dev": true,
|
| 919 |
-
"requires": {
|
| 920 |
-
"@babel/helper-annotate-as-pure": "^7.16.0",
|
| 921 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 922 |
-
}
|
| 923 |
-
},
|
| 924 |
-
"@babel/plugin-transform-regenerator": {
|
| 925 |
-
"version": "7.16.0",
|
| 926 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz",
|
| 927 |
-
"integrity": "sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==",
|
| 928 |
-
"dev": true,
|
| 929 |
-
"requires": {
|
| 930 |
-
"regenerator-transform": "^0.14.2"
|
| 931 |
-
}
|
| 932 |
-
},
|
| 933 |
-
"@babel/plugin-transform-reserved-words": {
|
| 934 |
-
"version": "7.16.0",
|
| 935 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz",
|
| 936 |
-
"integrity": "sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==",
|
| 937 |
-
"dev": true,
|
| 938 |
-
"requires": {
|
| 939 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 940 |
-
}
|
| 941 |
-
},
|
| 942 |
-
"@babel/plugin-transform-runtime": {
|
| 943 |
-
"version": "7.16.0",
|
| 944 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.0.tgz",
|
| 945 |
-
"integrity": "sha512-zlPf1/XFn5+vWdve3AAhf+Sxl+MVa5VlwTwWgnLx23u4GlatSRQJ3Eoo9vllf0a9il3woQsT4SK+5Z7c06h8ag==",
|
| 946 |
-
"dev": true,
|
| 947 |
-
"requires": {
|
| 948 |
-
"@babel/helper-module-imports": "^7.16.0",
|
| 949 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 950 |
-
"babel-plugin-polyfill-corejs2": "^0.2.3",
|
| 951 |
-
"babel-plugin-polyfill-corejs3": "^0.3.0",
|
| 952 |
-
"babel-plugin-polyfill-regenerator": "^0.2.3",
|
| 953 |
-
"semver": "^6.3.0"
|
| 954 |
-
},
|
| 955 |
-
"dependencies": {
|
| 956 |
-
"semver": {
|
| 957 |
-
"version": "6.3.0",
|
| 958 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 959 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 960 |
-
"dev": true
|
| 961 |
-
}
|
| 962 |
-
}
|
| 963 |
-
},
|
| 964 |
-
"@babel/plugin-transform-shorthand-properties": {
|
| 965 |
-
"version": "7.16.0",
|
| 966 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz",
|
| 967 |
-
"integrity": "sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==",
|
| 968 |
-
"dev": true,
|
| 969 |
-
"requires": {
|
| 970 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 971 |
-
}
|
| 972 |
-
},
|
| 973 |
-
"@babel/plugin-transform-spread": {
|
| 974 |
-
"version": "7.16.0",
|
| 975 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz",
|
| 976 |
-
"integrity": "sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==",
|
| 977 |
-
"dev": true,
|
| 978 |
-
"requires": {
|
| 979 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 980 |
-
"@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
|
| 981 |
-
}
|
| 982 |
-
},
|
| 983 |
-
"@babel/plugin-transform-sticky-regex": {
|
| 984 |
-
"version": "7.16.0",
|
| 985 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz",
|
| 986 |
-
"integrity": "sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==",
|
| 987 |
-
"dev": true,
|
| 988 |
-
"requires": {
|
| 989 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 990 |
-
}
|
| 991 |
-
},
|
| 992 |
-
"@babel/plugin-transform-template-literals": {
|
| 993 |
-
"version": "7.16.0",
|
| 994 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz",
|
| 995 |
-
"integrity": "sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==",
|
| 996 |
-
"dev": true,
|
| 997 |
-
"requires": {
|
| 998 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 999 |
-
}
|
| 1000 |
-
},
|
| 1001 |
-
"@babel/plugin-transform-typeof-symbol": {
|
| 1002 |
-
"version": "7.16.0",
|
| 1003 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz",
|
| 1004 |
-
"integrity": "sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==",
|
| 1005 |
-
"dev": true,
|
| 1006 |
-
"requires": {
|
| 1007 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 1008 |
-
}
|
| 1009 |
-
},
|
| 1010 |
-
"@babel/plugin-transform-unicode-escapes": {
|
| 1011 |
-
"version": "7.16.0",
|
| 1012 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz",
|
| 1013 |
-
"integrity": "sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==",
|
| 1014 |
-
"dev": true,
|
| 1015 |
-
"requires": {
|
| 1016 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 1017 |
-
}
|
| 1018 |
-
},
|
| 1019 |
-
"@babel/plugin-transform-unicode-regex": {
|
| 1020 |
-
"version": "7.16.0",
|
| 1021 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz",
|
| 1022 |
-
"integrity": "sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==",
|
| 1023 |
-
"dev": true,
|
| 1024 |
-
"requires": {
|
| 1025 |
-
"@babel/helper-create-regexp-features-plugin": "^7.16.0",
|
| 1026 |
-
"@babel/helper-plugin-utils": "^7.14.5"
|
| 1027 |
-
}
|
| 1028 |
-
},
|
| 1029 |
-
"@babel/preset-env": {
|
| 1030 |
-
"version": "7.16.0",
|
| 1031 |
-
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.0.tgz",
|
| 1032 |
-
"integrity": "sha512-cdTu/W0IrviamtnZiTfixPfIncr2M1VqRrkjzZWlr1B4TVYimCFK5jkyOdP4qw2MrlKHi+b3ORj6x8GoCew8Dg==",
|
| 1033 |
-
"dev": true,
|
| 1034 |
-
"requires": {
|
| 1035 |
-
"@babel/compat-data": "^7.16.0",
|
| 1036 |
-
"@babel/helper-compilation-targets": "^7.16.0",
|
| 1037 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 1038 |
-
"@babel/helper-validator-option": "^7.14.5",
|
| 1039 |
-
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.0",
|
| 1040 |
-
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0",
|
| 1041 |
-
"@babel/plugin-proposal-async-generator-functions": "^7.16.0",
|
| 1042 |
-
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
| 1043 |
-
"@babel/plugin-proposal-class-static-block": "^7.16.0",
|
| 1044 |
-
"@babel/plugin-proposal-dynamic-import": "^7.16.0",
|
| 1045 |
-
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
|
| 1046 |
-
"@babel/plugin-proposal-json-strings": "^7.16.0",
|
| 1047 |
-
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.0",
|
| 1048 |
-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
|
| 1049 |
-
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
|
| 1050 |
-
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
| 1051 |
-
"@babel/plugin-proposal-optional-catch-binding": "^7.16.0",
|
| 1052 |
-
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
|
| 1053 |
-
"@babel/plugin-proposal-private-methods": "^7.16.0",
|
| 1054 |
-
"@babel/plugin-proposal-private-property-in-object": "^7.16.0",
|
| 1055 |
-
"@babel/plugin-proposal-unicode-property-regex": "^7.16.0",
|
| 1056 |
-
"@babel/plugin-syntax-async-generators": "^7.8.4",
|
| 1057 |
-
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
| 1058 |
-
"@babel/plugin-syntax-class-static-block": "^7.14.5",
|
| 1059 |
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
| 1060 |
-
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
|
| 1061 |
-
"@babel/plugin-syntax-json-strings": "^7.8.3",
|
| 1062 |
-
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
|
| 1063 |
-
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
|
| 1064 |
-
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
|
| 1065 |
-
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
| 1066 |
-
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
|
| 1067 |
-
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
|
| 1068 |
-
"@babel/plugin-syntax-private-property-in-object": "^7.14.5",
|
| 1069 |
-
"@babel/plugin-syntax-top-level-await": "^7.14.5",
|
| 1070 |
-
"@babel/plugin-transform-arrow-functions": "^7.16.0",
|
| 1071 |
-
"@babel/plugin-transform-async-to-generator": "^7.16.0",
|
| 1072 |
-
"@babel/plugin-transform-block-scoped-functions": "^7.16.0",
|
| 1073 |
-
"@babel/plugin-transform-block-scoping": "^7.16.0",
|
| 1074 |
-
"@babel/plugin-transform-classes": "^7.16.0",
|
| 1075 |
-
"@babel/plugin-transform-computed-properties": "^7.16.0",
|
| 1076 |
-
"@babel/plugin-transform-destructuring": "^7.16.0",
|
| 1077 |
-
"@babel/plugin-transform-dotall-regex": "^7.16.0",
|
| 1078 |
-
"@babel/plugin-transform-duplicate-keys": "^7.16.0",
|
| 1079 |
-
"@babel/plugin-transform-exponentiation-operator": "^7.16.0",
|
| 1080 |
-
"@babel/plugin-transform-for-of": "^7.16.0",
|
| 1081 |
-
"@babel/plugin-transform-function-name": "^7.16.0",
|
| 1082 |
-
"@babel/plugin-transform-literals": "^7.16.0",
|
| 1083 |
-
"@babel/plugin-transform-member-expression-literals": "^7.16.0",
|
| 1084 |
-
"@babel/plugin-transform-modules-amd": "^7.16.0",
|
| 1085 |
-
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
| 1086 |
-
"@babel/plugin-transform-modules-systemjs": "^7.16.0",
|
| 1087 |
-
"@babel/plugin-transform-modules-umd": "^7.16.0",
|
| 1088 |
-
"@babel/plugin-transform-named-capturing-groups-regex": "^7.16.0",
|
| 1089 |
-
"@babel/plugin-transform-new-target": "^7.16.0",
|
| 1090 |
-
"@babel/plugin-transform-object-super": "^7.16.0",
|
| 1091 |
-
"@babel/plugin-transform-parameters": "^7.16.0",
|
| 1092 |
-
"@babel/plugin-transform-property-literals": "^7.16.0",
|
| 1093 |
-
"@babel/plugin-transform-regenerator": "^7.16.0",
|
| 1094 |
-
"@babel/plugin-transform-reserved-words": "^7.16.0",
|
| 1095 |
-
"@babel/plugin-transform-shorthand-properties": "^7.16.0",
|
| 1096 |
-
"@babel/plugin-transform-spread": "^7.16.0",
|
| 1097 |
-
"@babel/plugin-transform-sticky-regex": "^7.16.0",
|
| 1098 |
-
"@babel/plugin-transform-template-literals": "^7.16.0",
|
| 1099 |
-
"@babel/plugin-transform-typeof-symbol": "^7.16.0",
|
| 1100 |
-
"@babel/plugin-transform-unicode-escapes": "^7.16.0",
|
| 1101 |
-
"@babel/plugin-transform-unicode-regex": "^7.16.0",
|
| 1102 |
-
"@babel/preset-modules": "^0.1.5",
|
| 1103 |
-
"@babel/types": "^7.16.0",
|
| 1104 |
-
"babel-plugin-polyfill-corejs2": "^0.2.3",
|
| 1105 |
-
"babel-plugin-polyfill-corejs3": "^0.3.0",
|
| 1106 |
-
"babel-plugin-polyfill-regenerator": "^0.2.3",
|
| 1107 |
-
"core-js-compat": "^3.19.0",
|
| 1108 |
-
"semver": "^6.3.0"
|
| 1109 |
-
},
|
| 1110 |
-
"dependencies": {
|
| 1111 |
-
"semver": {
|
| 1112 |
-
"version": "6.3.0",
|
| 1113 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 1114 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 1115 |
-
"dev": true
|
| 1116 |
-
}
|
| 1117 |
-
}
|
| 1118 |
-
},
|
| 1119 |
-
"@babel/preset-modules": {
|
| 1120 |
-
"version": "0.1.5",
|
| 1121 |
-
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
|
| 1122 |
-
"integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
|
| 1123 |
-
"dev": true,
|
| 1124 |
-
"requires": {
|
| 1125 |
-
"@babel/helper-plugin-utils": "^7.0.0",
|
| 1126 |
-
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
|
| 1127 |
-
"@babel/plugin-transform-dotall-regex": "^7.4.4",
|
| 1128 |
-
"@babel/types": "^7.4.4",
|
| 1129 |
-
"esutils": "^2.0.2"
|
| 1130 |
-
}
|
| 1131 |
-
},
|
| 1132 |
-
"@babel/preset-react": {
|
| 1133 |
-
"version": "7.16.0",
|
| 1134 |
-
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.0.tgz",
|
| 1135 |
-
"integrity": "sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==",
|
| 1136 |
-
"dev": true,
|
| 1137 |
-
"requires": {
|
| 1138 |
-
"@babel/helper-plugin-utils": "^7.14.5",
|
| 1139 |
-
"@babel/helper-validator-option": "^7.14.5",
|
| 1140 |
-
"@babel/plugin-transform-react-display-name": "^7.16.0",
|
| 1141 |
-
"@babel/plugin-transform-react-jsx": "^7.16.0",
|
| 1142 |
-
"@babel/plugin-transform-react-jsx-development": "^7.16.0",
|
| 1143 |
-
"@babel/plugin-transform-react-pure-annotations": "^7.16.0"
|
| 1144 |
-
}
|
| 1145 |
-
},
|
| 1146 |
-
"@babel/runtime": {
|
| 1147 |
-
"version": "7.14.6",
|
| 1148 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz",
|
| 1149 |
-
"integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==",
|
| 1150 |
-
"requires": {
|
| 1151 |
-
"regenerator-runtime": "^0.13.4"
|
| 1152 |
-
}
|
| 1153 |
-
},
|
| 1154 |
-
"@babel/template": {
|
| 1155 |
-
"version": "7.16.0",
|
| 1156 |
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz",
|
| 1157 |
-
"integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==",
|
| 1158 |
-
"dev": true,
|
| 1159 |
-
"requires": {
|
| 1160 |
-
"@babel/code-frame": "^7.16.0",
|
| 1161 |
-
"@babel/parser": "^7.16.0",
|
| 1162 |
-
"@babel/types": "^7.16.0"
|
| 1163 |
-
}
|
| 1164 |
-
},
|
| 1165 |
-
"@babel/traverse": {
|
| 1166 |
-
"version": "7.16.3",
|
| 1167 |
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz",
|
| 1168 |
-
"integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==",
|
| 1169 |
-
"dev": true,
|
| 1170 |
-
"requires": {
|
| 1171 |
-
"@babel/code-frame": "^7.16.0",
|
| 1172 |
-
"@babel/generator": "^7.16.0",
|
| 1173 |
-
"@babel/helper-function-name": "^7.16.0",
|
| 1174 |
-
"@babel/helper-hoist-variables": "^7.16.0",
|
| 1175 |
-
"@babel/helper-split-export-declaration": "^7.16.0",
|
| 1176 |
-
"@babel/parser": "^7.16.3",
|
| 1177 |
-
"@babel/types": "^7.16.0",
|
| 1178 |
-
"debug": "^4.1.0",
|
| 1179 |
-
"globals": "^11.1.0"
|
| 1180 |
-
},
|
| 1181 |
-
"dependencies": {
|
| 1182 |
-
"globals": {
|
| 1183 |
-
"version": "11.12.0",
|
| 1184 |
-
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
|
| 1185 |
-
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
| 1186 |
-
"dev": true
|
| 1187 |
-
}
|
| 1188 |
-
}
|
| 1189 |
-
},
|
| 1190 |
-
"@babel/types": {
|
| 1191 |
-
"version": "7.16.0",
|
| 1192 |
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
|
| 1193 |
-
"integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
|
| 1194 |
-
"requires": {
|
| 1195 |
-
"@babel/helper-validator-identifier": "^7.15.7",
|
| 1196 |
-
"to-fast-properties": "^2.0.0"
|
| 1197 |
-
}
|
| 1198 |
-
},
|
| 1199 |
-
"@discoveryjs/json-ext": {
|
| 1200 |
-
"version": "0.5.5",
|
| 1201 |
-
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz",
|
| 1202 |
-
"integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==",
|
| 1203 |
-
"dev": true
|
| 1204 |
-
},
|
| 1205 |
-
"@emotion/babel-plugin": {
|
| 1206 |
-
"version": "11.3.0",
|
| 1207 |
-
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.3.0.tgz",
|
| 1208 |
-
"integrity": "sha512-UZKwBV2rADuhRp+ZOGgNWg2eYgbzKzQXfQPtJbu/PLy8onurxlNCLvxMQEvlr1/GudguPI5IU9qIY1+2z1M5bA==",
|
| 1209 |
-
"requires": {
|
| 1210 |
-
"@babel/helper-module-imports": "^7.12.13",
|
| 1211 |
-
"@babel/plugin-syntax-jsx": "^7.12.13",
|
| 1212 |
-
"@babel/runtime": "^7.13.10",
|
| 1213 |
-
"@emotion/hash": "^0.8.0",
|
| 1214 |
-
"@emotion/memoize": "^0.7.5",
|
| 1215 |
-
"@emotion/serialize": "^1.0.2",
|
| 1216 |
-
"babel-plugin-macros": "^2.6.1",
|
| 1217 |
-
"convert-source-map": "^1.5.0",
|
| 1218 |
-
"escape-string-regexp": "^4.0.0",
|
| 1219 |
-
"find-root": "^1.1.0",
|
| 1220 |
-
"source-map": "^0.5.7",
|
| 1221 |
-
"stylis": "^4.0.3"
|
| 1222 |
-
},
|
| 1223 |
-
"dependencies": {
|
| 1224 |
-
"escape-string-regexp": {
|
| 1225 |
-
"version": "4.0.0",
|
| 1226 |
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
| 1227 |
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
|
| 1228 |
-
}
|
| 1229 |
-
}
|
| 1230 |
-
},
|
| 1231 |
-
"@emotion/cache": {
|
| 1232 |
-
"version": "11.6.0",
|
| 1233 |
-
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.6.0.tgz",
|
| 1234 |
-
"integrity": "sha512-ElbsWY1KMwEowkv42vGo0UPuLgtPYfIs9BxxVrmvsaJVvktknsHYYlx5NQ5g6zLDcOTyamlDc7FkRg2TAcQDKQ==",
|
| 1235 |
-
"requires": {
|
| 1236 |
-
"@emotion/memoize": "^0.7.4",
|
| 1237 |
-
"@emotion/sheet": "^1.1.0",
|
| 1238 |
-
"@emotion/utils": "^1.0.0",
|
| 1239 |
-
"@emotion/weak-memoize": "^0.2.5",
|
| 1240 |
-
"stylis": "^4.0.10"
|
| 1241 |
-
}
|
| 1242 |
-
},
|
| 1243 |
-
"@emotion/css": {
|
| 1244 |
-
"version": "11.5.0",
|
| 1245 |
-
"resolved": "https://registry.npmjs.org/@emotion/css/-/css-11.5.0.tgz",
|
| 1246 |
-
"integrity": "sha512-mqjz/3aqR9rp40M+pvwdKYWxlQK4Nj3cnNjo3Tx6SM14dSsEn7q/4W2/I7PlgG+mb27iITHugXuBIHH/QwUBVQ==",
|
| 1247 |
-
"requires": {
|
| 1248 |
-
"@emotion/babel-plugin": "^11.0.0",
|
| 1249 |
-
"@emotion/cache": "^11.5.0",
|
| 1250 |
-
"@emotion/serialize": "^1.0.0",
|
| 1251 |
-
"@emotion/sheet": "^1.0.3",
|
| 1252 |
-
"@emotion/utils": "^1.0.0"
|
| 1253 |
-
}
|
| 1254 |
-
},
|
| 1255 |
-
"@emotion/hash": {
|
| 1256 |
-
"version": "0.8.0",
|
| 1257 |
-
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
|
| 1258 |
-
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
|
| 1259 |
-
},
|
| 1260 |
-
"@emotion/is-prop-valid": {
|
| 1261 |
-
"version": "1.1.1",
|
| 1262 |
-
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.1.tgz",
|
| 1263 |
-
"integrity": "sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw==",
|
| 1264 |
-
"requires": {
|
| 1265 |
-
"@emotion/memoize": "^0.7.4"
|
| 1266 |
-
}
|
| 1267 |
-
},
|
| 1268 |
-
"@emotion/memoize": {
|
| 1269 |
-
"version": "0.7.5",
|
| 1270 |
-
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz",
|
| 1271 |
-
"integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="
|
| 1272 |
-
},
|
| 1273 |
-
"@emotion/react": {
|
| 1274 |
-
"version": "11.6.0",
|
| 1275 |
-
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.6.0.tgz",
|
| 1276 |
-
"integrity": "sha512-23MnRZFBN9+D1lHXC5pD6z4X9yhPxxtHr6f+iTGz6Fv6Rda0GdefPrsHL7otsEf+//7uqCdT5QtHeRxHCERzuw==",
|
| 1277 |
-
"requires": {
|
| 1278 |
-
"@babel/runtime": "^7.13.10",
|
| 1279 |
-
"@emotion/cache": "^11.6.0",
|
| 1280 |
-
"@emotion/serialize": "^1.0.2",
|
| 1281 |
-
"@emotion/sheet": "^1.1.0",
|
| 1282 |
-
"@emotion/utils": "^1.0.0",
|
| 1283 |
-
"@emotion/weak-memoize": "^0.2.5",
|
| 1284 |
-
"hoist-non-react-statics": "^3.3.1"
|
| 1285 |
-
}
|
| 1286 |
-
},
|
| 1287 |
-
"@emotion/serialize": {
|
| 1288 |
-
"version": "1.0.2",
|
| 1289 |
-
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.2.tgz",
|
| 1290 |
-
"integrity": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==",
|
| 1291 |
-
"requires": {
|
| 1292 |
-
"@emotion/hash": "^0.8.0",
|
| 1293 |
-
"@emotion/memoize": "^0.7.4",
|
| 1294 |
-
"@emotion/unitless": "^0.7.5",
|
| 1295 |
-
"@emotion/utils": "^1.0.0",
|
| 1296 |
-
"csstype": "^3.0.2"
|
| 1297 |
-
}
|
| 1298 |
-
},
|
| 1299 |
-
"@emotion/sheet": {
|
| 1300 |
-
"version": "1.1.0",
|
| 1301 |
-
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.0.tgz",
|
| 1302 |
-
"integrity": "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g=="
|
| 1303 |
-
},
|
| 1304 |
-
"@emotion/styled": {
|
| 1305 |
-
"version": "11.6.0",
|
| 1306 |
-
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.6.0.tgz",
|
| 1307 |
-
"integrity": "sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw==",
|
| 1308 |
-
"requires": {
|
| 1309 |
-
"@babel/runtime": "^7.13.10",
|
| 1310 |
-
"@emotion/babel-plugin": "^11.3.0",
|
| 1311 |
-
"@emotion/is-prop-valid": "^1.1.1",
|
| 1312 |
-
"@emotion/serialize": "^1.0.2",
|
| 1313 |
-
"@emotion/utils": "^1.0.0"
|
| 1314 |
-
}
|
| 1315 |
-
},
|
| 1316 |
-
"@emotion/unitless": {
|
| 1317 |
-
"version": "0.7.5",
|
| 1318 |
-
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
|
| 1319 |
-
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
|
| 1320 |
-
},
|
| 1321 |
-
"@emotion/utils": {
|
| 1322 |
-
"version": "1.0.0",
|
| 1323 |
-
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.0.0.tgz",
|
| 1324 |
-
"integrity": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA=="
|
| 1325 |
-
},
|
| 1326 |
-
"@emotion/weak-memoize": {
|
| 1327 |
-
"version": "0.2.5",
|
| 1328 |
-
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
|
| 1329 |
-
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
|
| 1330 |
-
},
|
| 1331 |
-
"@eslint/eslintrc": {
|
| 1332 |
-
"version": "1.0.4",
|
| 1333 |
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.4.tgz",
|
| 1334 |
-
"integrity": "sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==",
|
| 1335 |
-
"dev": true,
|
| 1336 |
-
"requires": {
|
| 1337 |
-
"ajv": "^6.12.4",
|
| 1338 |
-
"debug": "^4.3.2",
|
| 1339 |
-
"espree": "^9.0.0",
|
| 1340 |
-
"globals": "^13.9.0",
|
| 1341 |
-
"ignore": "^4.0.6",
|
| 1342 |
-
"import-fresh": "^3.2.1",
|
| 1343 |
-
"js-yaml": "^4.1.0",
|
| 1344 |
-
"minimatch": "^3.0.4",
|
| 1345 |
-
"strip-json-comments": "^3.1.1"
|
| 1346 |
-
},
|
| 1347 |
-
"dependencies": {
|
| 1348 |
-
"debug": {
|
| 1349 |
-
"version": "4.3.2",
|
| 1350 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
|
| 1351 |
-
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
|
| 1352 |
-
"dev": true,
|
| 1353 |
-
"requires": {
|
| 1354 |
-
"ms": "2.1.2"
|
| 1355 |
-
}
|
| 1356 |
-
}
|
| 1357 |
-
}
|
| 1358 |
-
},
|
| 1359 |
-
"@headlessui/react": {
|
| 1360 |
-
"version": "1.4.2",
|
| 1361 |
-
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.4.2.tgz",
|
| 1362 |
-
"integrity": "sha512-N8tv7kLhg9qGKBkVdtg572BvKvWhmiudmeEpOCyNwzOsZHCXBtl8AazGikIfUS+vBoub20Fse3BjawXDVPPdug=="
|
| 1363 |
-
},
|
| 1364 |
-
"@humanwhocodes/config-array": {
|
| 1365 |
-
"version": "0.6.0",
|
| 1366 |
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.6.0.tgz",
|
| 1367 |
-
"integrity": "sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==",
|
| 1368 |
-
"dev": true,
|
| 1369 |
-
"requires": {
|
| 1370 |
-
"@humanwhocodes/object-schema": "^1.2.0",
|
| 1371 |
-
"debug": "^4.1.1",
|
| 1372 |
-
"minimatch": "^3.0.4"
|
| 1373 |
-
}
|
| 1374 |
-
},
|
| 1375 |
-
"@humanwhocodes/object-schema": {
|
| 1376 |
-
"version": "1.2.1",
|
| 1377 |
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
|
| 1378 |
-
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
|
| 1379 |
-
"dev": true
|
| 1380 |
-
},
|
| 1381 |
-
"@koa/router": {
|
| 1382 |
-
"version": "9.4.0",
|
| 1383 |
-
"resolved": "https://registry.npmjs.org/@koa/router/-/router-9.4.0.tgz",
|
| 1384 |
-
"integrity": "sha512-dOOXgzqaDoHu5qqMEPLKEgLz5CeIA7q8+1W62mCvFVCOqeC71UoTGJ4u1xUSOpIl2J1x2pqrNULkFteUeZW3/A==",
|
| 1385 |
-
"dev": true,
|
| 1386 |
-
"requires": {
|
| 1387 |
-
"debug": "^4.1.1",
|
| 1388 |
-
"http-errors": "^1.7.3",
|
| 1389 |
-
"koa-compose": "^4.1.0",
|
| 1390 |
-
"methods": "^1.1.2",
|
| 1391 |
-
"path-to-regexp": "^6.1.0"
|
| 1392 |
-
},
|
| 1393 |
-
"dependencies": {
|
| 1394 |
-
"http-errors": {
|
| 1395 |
-
"version": "1.8.0",
|
| 1396 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz",
|
| 1397 |
-
"integrity": "sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==",
|
| 1398 |
-
"dev": true,
|
| 1399 |
-
"requires": {
|
| 1400 |
-
"depd": "~1.1.2",
|
| 1401 |
-
"inherits": "2.0.4",
|
| 1402 |
-
"setprototypeof": "1.2.0",
|
| 1403 |
-
"statuses": ">= 1.5.0 < 2",
|
| 1404 |
-
"toidentifier": "1.0.0"
|
| 1405 |
-
}
|
| 1406 |
-
},
|
| 1407 |
-
"path-to-regexp": {
|
| 1408 |
-
"version": "6.2.0",
|
| 1409 |
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz",
|
| 1410 |
-
"integrity": "sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==",
|
| 1411 |
-
"dev": true
|
| 1412 |
-
},
|
| 1413 |
-
"setprototypeof": {
|
| 1414 |
-
"version": "1.2.0",
|
| 1415 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
| 1416 |
-
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
| 1417 |
-
"dev": true
|
| 1418 |
-
}
|
| 1419 |
-
}
|
| 1420 |
-
},
|
| 1421 |
-
"@nodelib/fs.scandir": {
|
| 1422 |
-
"version": "2.1.5",
|
| 1423 |
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
| 1424 |
-
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
| 1425 |
-
"requires": {
|
| 1426 |
-
"@nodelib/fs.stat": "2.0.5",
|
| 1427 |
-
"run-parallel": "^1.1.9"
|
| 1428 |
-
}
|
| 1429 |
-
},
|
| 1430 |
-
"@nodelib/fs.stat": {
|
| 1431 |
-
"version": "2.0.5",
|
| 1432 |
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
| 1433 |
-
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
|
| 1434 |
-
},
|
| 1435 |
-
"@nodelib/fs.walk": {
|
| 1436 |
-
"version": "1.2.8",
|
| 1437 |
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
| 1438 |
-
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
| 1439 |
-
"requires": {
|
| 1440 |
-
"@nodelib/fs.scandir": "2.1.5",
|
| 1441 |
-
"fastq": "^1.6.0"
|
| 1442 |
-
}
|
| 1443 |
-
},
|
| 1444 |
-
"@popperjs/core": {
|
| 1445 |
-
"version": "2.10.2",
|
| 1446 |
-
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.10.2.tgz",
|
| 1447 |
-
"integrity": "sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ=="
|
| 1448 |
-
},
|
| 1449 |
-
"@react-spring/animated": {
|
| 1450 |
-
"version": "9.3.0",
|
| 1451 |
-
"resolved": "https://registry.npmjs.org/@react-spring/animated/-/animated-9.3.0.tgz",
|
| 1452 |
-
"integrity": "sha512-QvuyW77eDvLhdJyO6FFldlWlvnuKK2cpOx4+Zr962RyT/0IO1tbNDRO6G1vM8va6mbv6tmfYmRGKmKYePN3kVg==",
|
| 1453 |
-
"requires": {
|
| 1454 |
-
"@react-spring/shared": "~9.3.0",
|
| 1455 |
-
"@react-spring/types": "~9.3.0"
|
| 1456 |
-
}
|
| 1457 |
-
},
|
| 1458 |
-
"@react-spring/core": {
|
| 1459 |
-
"version": "9.3.0",
|
| 1460 |
-
"resolved": "https://registry.npmjs.org/@react-spring/core/-/core-9.3.0.tgz",
|
| 1461 |
-
"integrity": "sha512-SZQOIX7wkIagmucAi7zxqGGIb9A60o9n5922UrWo8Kl3FdG7FgrNwqr0kOI43/pMFeL70/PXwFhBatB03N5ctw==",
|
| 1462 |
-
"requires": {
|
| 1463 |
-
"@react-spring/animated": "~9.3.0",
|
| 1464 |
-
"@react-spring/shared": "~9.3.0",
|
| 1465 |
-
"@react-spring/types": "~9.3.0"
|
| 1466 |
-
}
|
| 1467 |
-
},
|
| 1468 |
-
"@react-spring/rafz": {
|
| 1469 |
-
"version": "9.3.0",
|
| 1470 |
-
"resolved": "https://registry.npmjs.org/@react-spring/rafz/-/rafz-9.3.0.tgz",
|
| 1471 |
-
"integrity": "sha512-FD04d2TNb3xOZ6+04qwDmC3d0H4X6gvhsxU71/nSm4PPYRqFzZEolcVPmrHlbGzco3bvXKI+Kp2pIrpXLPUJFA=="
|
| 1472 |
-
},
|
| 1473 |
-
"@react-spring/shared": {
|
| 1474 |
-
"version": "9.3.0",
|
| 1475 |
-
"resolved": "https://registry.npmjs.org/@react-spring/shared/-/shared-9.3.0.tgz",
|
| 1476 |
-
"integrity": "sha512-7ZFY2Blu/wxbLGcYvQavyLUVi9bK/is1bsn11qZ9AaZb4iucRyIf2jgjBfKZFCq4qgi7S/7QmDQG7sucUyLELg==",
|
| 1477 |
-
"requires": {
|
| 1478 |
-
"@react-spring/rafz": "~9.3.0",
|
| 1479 |
-
"@react-spring/types": "~9.3.0"
|
| 1480 |
-
}
|
| 1481 |
-
},
|
| 1482 |
-
"@react-spring/types": {
|
| 1483 |
-
"version": "9.3.0",
|
| 1484 |
-
"resolved": "https://registry.npmjs.org/@react-spring/types/-/types-9.3.0.tgz",
|
| 1485 |
-
"integrity": "sha512-q4cDr2RSPblXMD3Rxvk6qcC7nmhhfV2izEBP06hb8ZCXznA6qJirG3RMpi29kBtEQiw1lWR59hAXKhauaPtbOA=="
|
| 1486 |
-
},
|
| 1487 |
-
"@react-spring/web": {
|
| 1488 |
-
"version": "9.3.0",
|
| 1489 |
-
"resolved": "https://registry.npmjs.org/@react-spring/web/-/web-9.3.0.tgz",
|
| 1490 |
-
"integrity": "sha512-OTAGKRdyz6fLRR1tABFyw9KMpytyATIndQrj0O6RG47GfjiInpf4+WZKxo763vpS7z1OlnkI81WLUm/sqOqAnA==",
|
| 1491 |
-
"requires": {
|
| 1492 |
-
"@react-spring/animated": "~9.3.0",
|
| 1493 |
-
"@react-spring/core": "~9.3.0",
|
| 1494 |
-
"@react-spring/shared": "~9.3.0",
|
| 1495 |
-
"@react-spring/types": "~9.3.0"
|
| 1496 |
-
}
|
| 1497 |
-
},
|
| 1498 |
-
"@tannin/compile": {
|
| 1499 |
-
"version": "1.1.0",
|
| 1500 |
-
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
| 1501 |
-
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
| 1502 |
-
"requires": {
|
| 1503 |
-
"@tannin/evaluate": "^1.2.0",
|
| 1504 |
-
"@tannin/postfix": "^1.1.0"
|
| 1505 |
-
}
|
| 1506 |
-
},
|
| 1507 |
-
"@tannin/evaluate": {
|
| 1508 |
-
"version": "1.2.0",
|
| 1509 |
-
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
| 1510 |
-
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
| 1511 |
-
},
|
| 1512 |
-
"@tannin/plural-forms": {
|
| 1513 |
-
"version": "1.1.0",
|
| 1514 |
-
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
| 1515 |
-
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
| 1516 |
-
"requires": {
|
| 1517 |
-
"@tannin/compile": "^1.1.0"
|
| 1518 |
-
}
|
| 1519 |
-
},
|
| 1520 |
-
"@tannin/postfix": {
|
| 1521 |
-
"version": "1.1.0",
|
| 1522 |
-
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
| 1523 |
-
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
| 1524 |
-
},
|
| 1525 |
-
"@trysound/sax": {
|
| 1526 |
-
"version": "0.2.0",
|
| 1527 |
-
"resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
|
| 1528 |
-
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
|
| 1529 |
-
"dev": true
|
| 1530 |
-
},
|
| 1531 |
-
"@types/babel__core": {
|
| 1532 |
-
"version": "7.1.16",
|
| 1533 |
-
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz",
|
| 1534 |
-
"integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==",
|
| 1535 |
-
"dev": true,
|
| 1536 |
-
"requires": {
|
| 1537 |
-
"@babel/parser": "^7.1.0",
|
| 1538 |
-
"@babel/types": "^7.0.0",
|
| 1539 |
-
"@types/babel__generator": "*",
|
| 1540 |
-
"@types/babel__template": "*",
|
| 1541 |
-
"@types/babel__traverse": "*"
|
| 1542 |
-
}
|
| 1543 |
-
},
|
| 1544 |
-
"@types/babel__generator": {
|
| 1545 |
-
"version": "7.6.3",
|
| 1546 |
-
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz",
|
| 1547 |
-
"integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==",
|
| 1548 |
-
"dev": true,
|
| 1549 |
-
"requires": {
|
| 1550 |
-
"@babel/types": "^7.0.0"
|
| 1551 |
-
}
|
| 1552 |
-
},
|
| 1553 |
-
"@types/babel__template": {
|
| 1554 |
-
"version": "7.4.1",
|
| 1555 |
-
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
|
| 1556 |
-
"integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
|
| 1557 |
-
"dev": true,
|
| 1558 |
-
"requires": {
|
| 1559 |
-
"@babel/parser": "^7.1.0",
|
| 1560 |
-
"@babel/types": "^7.0.0"
|
| 1561 |
-
}
|
| 1562 |
-
},
|
| 1563 |
-
"@types/babel__traverse": {
|
| 1564 |
-
"version": "7.14.2",
|
| 1565 |
-
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz",
|
| 1566 |
-
"integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==",
|
| 1567 |
-
"dev": true,
|
| 1568 |
-
"requires": {
|
| 1569 |
-
"@babel/types": "^7.3.0"
|
| 1570 |
-
}
|
| 1571 |
-
},
|
| 1572 |
-
"@types/clean-css": {
|
| 1573 |
-
"version": "4.2.5",
|
| 1574 |
-
"resolved": "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.5.tgz",
|
| 1575 |
-
"integrity": "sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw==",
|
| 1576 |
-
"dev": true,
|
| 1577 |
-
"requires": {
|
| 1578 |
-
"@types/node": "*",
|
| 1579 |
-
"source-map": "^0.6.0"
|
| 1580 |
-
},
|
| 1581 |
-
"dependencies": {
|
| 1582 |
-
"source-map": {
|
| 1583 |
-
"version": "0.6.1",
|
| 1584 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 1585 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 1586 |
-
"dev": true
|
| 1587 |
-
}
|
| 1588 |
-
}
|
| 1589 |
-
},
|
| 1590 |
-
"@types/eslint": {
|
| 1591 |
-
"version": "7.29.0",
|
| 1592 |
-
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz",
|
| 1593 |
-
"integrity": "sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==",
|
| 1594 |
-
"dev": true,
|
| 1595 |
-
"requires": {
|
| 1596 |
-
"@types/estree": "*",
|
| 1597 |
-
"@types/json-schema": "*"
|
| 1598 |
-
}
|
| 1599 |
-
},
|
| 1600 |
-
"@types/eslint-scope": {
|
| 1601 |
-
"version": "3.7.1",
|
| 1602 |
-
"resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz",
|
| 1603 |
-
"integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==",
|
| 1604 |
-
"dev": true,
|
| 1605 |
-
"requires": {
|
| 1606 |
-
"@types/eslint": "*",
|
| 1607 |
-
"@types/estree": "*"
|
| 1608 |
-
}
|
| 1609 |
-
},
|
| 1610 |
-
"@types/estree": {
|
| 1611 |
-
"version": "0.0.50",
|
| 1612 |
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz",
|
| 1613 |
-
"integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==",
|
| 1614 |
-
"dev": true
|
| 1615 |
-
},
|
| 1616 |
-
"@types/glob": {
|
| 1617 |
-
"version": "7.2.0",
|
| 1618 |
-
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
|
| 1619 |
-
"integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
|
| 1620 |
-
"dev": true,
|
| 1621 |
-
"requires": {
|
| 1622 |
-
"@types/minimatch": "*",
|
| 1623 |
-
"@types/node": "*"
|
| 1624 |
-
}
|
| 1625 |
-
},
|
| 1626 |
-
"@types/http-proxy": {
|
| 1627 |
-
"version": "1.17.7",
|
| 1628 |
-
"resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz",
|
| 1629 |
-
"integrity": "sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w==",
|
| 1630 |
-
"dev": true,
|
| 1631 |
-
"requires": {
|
| 1632 |
-
"@types/node": "*"
|
| 1633 |
-
}
|
| 1634 |
-
},
|
| 1635 |
-
"@types/imagemin": {
|
| 1636 |
-
"version": "8.0.0",
|
| 1637 |
-
"resolved": "https://registry.npmjs.org/@types/imagemin/-/imagemin-8.0.0.tgz",
|
| 1638 |
-
"integrity": "sha512-B9X2CUeDv/uUeY9CqkzSTfmsLkeJP6PkmXlh4lODBbf9SwpmNuLS30WzUOi863dgsjY3zt3gY5q2F+UdifRi1A==",
|
| 1639 |
-
"dev": true,
|
| 1640 |
-
"requires": {
|
| 1641 |
-
"@types/node": "*"
|
| 1642 |
-
}
|
| 1643 |
-
},
|
| 1644 |
-
"@types/imagemin-gifsicle": {
|
| 1645 |
-
"version": "7.0.1",
|
| 1646 |
-
"resolved": "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz",
|
| 1647 |
-
"integrity": "sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==",
|
| 1648 |
-
"dev": true,
|
| 1649 |
-
"requires": {
|
| 1650 |
-
"@types/imagemin": "*"
|
| 1651 |
-
}
|
| 1652 |
-
},
|
| 1653 |
-
"@types/imagemin-mozjpeg": {
|
| 1654 |
-
"version": "8.0.1",
|
| 1655 |
-
"resolved": "https://registry.npmjs.org/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz",
|
| 1656 |
-
"integrity": "sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==",
|
| 1657 |
-
"dev": true,
|
| 1658 |
-
"requires": {
|
| 1659 |
-
"@types/imagemin": "*"
|
| 1660 |
-
}
|
| 1661 |
-
},
|
| 1662 |
-
"@types/imagemin-optipng": {
|
| 1663 |
-
"version": "5.2.1",
|
| 1664 |
-
"resolved": "https://registry.npmjs.org/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz",
|
| 1665 |
-
"integrity": "sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==",
|
| 1666 |
-
"dev": true,
|
| 1667 |
-
"requires": {
|
| 1668 |
-
"@types/imagemin": "*"
|
| 1669 |
-
}
|
| 1670 |
-
},
|
| 1671 |
-
"@types/imagemin-svgo": {
|
| 1672 |
-
"version": "8.0.1",
|
| 1673 |
-
"resolved": "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz",
|
| 1674 |
-
"integrity": "sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ==",
|
| 1675 |
-
"dev": true,
|
| 1676 |
-
"requires": {
|
| 1677 |
-
"@types/imagemin": "*",
|
| 1678 |
-
"@types/svgo": "^1"
|
| 1679 |
-
}
|
| 1680 |
-
},
|
| 1681 |
-
"@types/json-schema": {
|
| 1682 |
-
"version": "7.0.9",
|
| 1683 |
-
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz",
|
| 1684 |
-
"integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==",
|
| 1685 |
-
"dev": true
|
| 1686 |
-
},
|
| 1687 |
-
"@types/lodash": {
|
| 1688 |
-
"version": "4.14.177",
|
| 1689 |
-
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.177.tgz",
|
| 1690 |
-
"integrity": "sha512-0fDwydE2clKe9MNfvXHBHF9WEahRuj+msTuQqOmAApNORFvhMYZKNGGJdCzuhheVjMps/ti0Ak/iJPACMaevvw=="
|
| 1691 |
-
},
|
| 1692 |
-
"@types/minimatch": {
|
| 1693 |
-
"version": "3.0.5",
|
| 1694 |
-
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz",
|
| 1695 |
-
"integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==",
|
| 1696 |
-
"dev": true
|
| 1697 |
-
},
|
| 1698 |
-
"@types/mousetrap": {
|
| 1699 |
-
"version": "1.6.8",
|
| 1700 |
-
"resolved": "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.8.tgz",
|
| 1701 |
-
"integrity": "sha512-zTqjvgCUT5EoXqbqmd8iJMb4NJqyV/V7pK7AIKq7qcaAsJIpGlTVJS1HQM6YkdHCdnkNSbhcQI7MXYxFfE3iCA=="
|
| 1702 |
-
},
|
| 1703 |
-
"@types/node": {
|
| 1704 |
-
"version": "16.11.7",
|
| 1705 |
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.7.tgz",
|
| 1706 |
-
"integrity": "sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==",
|
| 1707 |
-
"dev": true
|
| 1708 |
-
},
|
| 1709 |
-
"@types/parse-json": {
|
| 1710 |
-
"version": "4.0.0",
|
| 1711 |
-
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
|
| 1712 |
-
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
|
| 1713 |
-
},
|
| 1714 |
-
"@types/prop-types": {
|
| 1715 |
-
"version": "15.7.4",
|
| 1716 |
-
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
|
| 1717 |
-
"integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
|
| 1718 |
-
},
|
| 1719 |
-
"@types/react": {
|
| 1720 |
-
"version": "16.14.20",
|
| 1721 |
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.20.tgz",
|
| 1722 |
-
"integrity": "sha512-SV7TaVc8e9E/5Xuv6TIyJ5VhQpZoVFJqX6IZgj5HZoFCtIDCArE3qXkcHlc6O/Ud4UwcMoX+tlvDA95YrKdLgA==",
|
| 1723 |
-
"requires": {
|
| 1724 |
-
"@types/prop-types": "*",
|
| 1725 |
-
"@types/scheduler": "*",
|
| 1726 |
-
"csstype": "^3.0.2"
|
| 1727 |
-
}
|
| 1728 |
-
},
|
| 1729 |
-
"@types/react-dom": {
|
| 1730 |
-
"version": "16.9.14",
|
| 1731 |
-
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.14.tgz",
|
| 1732 |
-
"integrity": "sha512-FIX2AVmPTGP30OUJ+0vadeIFJJ07Mh1m+U0rxfgyW34p3rTlXI+nlenvAxNn4BP36YyI9IJ/+UJ7Wu22N1pI7A==",
|
| 1733 |
-
"requires": {
|
| 1734 |
-
"@types/react": "^16"
|
| 1735 |
-
}
|
| 1736 |
-
},
|
| 1737 |
-
"@types/retry": {
|
| 1738 |
-
"version": "0.12.1",
|
| 1739 |
-
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz",
|
| 1740 |
-
"integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==",
|
| 1741 |
-
"dev": true
|
| 1742 |
-
},
|
| 1743 |
-
"@types/scheduler": {
|
| 1744 |
-
"version": "0.16.2",
|
| 1745 |
-
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
|
| 1746 |
-
"integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
|
| 1747 |
-
},
|
| 1748 |
-
"@types/svgo": {
|
| 1749 |
-
"version": "1.3.6",
|
| 1750 |
-
"resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.6.tgz",
|
| 1751 |
-
"integrity": "sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==",
|
| 1752 |
-
"dev": true
|
| 1753 |
-
},
|
| 1754 |
-
"@webassemblyjs/ast": {
|
| 1755 |
-
"version": "1.11.1",
|
| 1756 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz",
|
| 1757 |
-
"integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==",
|
| 1758 |
-
"dev": true,
|
| 1759 |
-
"requires": {
|
| 1760 |
-
"@webassemblyjs/helper-numbers": "1.11.1",
|
| 1761 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.11.1"
|
| 1762 |
-
}
|
| 1763 |
-
},
|
| 1764 |
-
"@webassemblyjs/floating-point-hex-parser": {
|
| 1765 |
-
"version": "1.11.1",
|
| 1766 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz",
|
| 1767 |
-
"integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==",
|
| 1768 |
-
"dev": true
|
| 1769 |
-
},
|
| 1770 |
-
"@webassemblyjs/helper-api-error": {
|
| 1771 |
-
"version": "1.11.1",
|
| 1772 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz",
|
| 1773 |
-
"integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==",
|
| 1774 |
-
"dev": true
|
| 1775 |
-
},
|
| 1776 |
-
"@webassemblyjs/helper-buffer": {
|
| 1777 |
-
"version": "1.11.1",
|
| 1778 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz",
|
| 1779 |
-
"integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==",
|
| 1780 |
-
"dev": true
|
| 1781 |
-
},
|
| 1782 |
-
"@webassemblyjs/helper-numbers": {
|
| 1783 |
-
"version": "1.11.1",
|
| 1784 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz",
|
| 1785 |
-
"integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==",
|
| 1786 |
-
"dev": true,
|
| 1787 |
-
"requires": {
|
| 1788 |
-
"@webassemblyjs/floating-point-hex-parser": "1.11.1",
|
| 1789 |
-
"@webassemblyjs/helper-api-error": "1.11.1",
|
| 1790 |
-
"@xtuc/long": "4.2.2"
|
| 1791 |
-
}
|
| 1792 |
-
},
|
| 1793 |
-
"@webassemblyjs/helper-wasm-bytecode": {
|
| 1794 |
-
"version": "1.11.1",
|
| 1795 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz",
|
| 1796 |
-
"integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==",
|
| 1797 |
-
"dev": true
|
| 1798 |
-
},
|
| 1799 |
-
"@webassemblyjs/helper-wasm-section": {
|
| 1800 |
-
"version": "1.11.1",
|
| 1801 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz",
|
| 1802 |
-
"integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==",
|
| 1803 |
-
"dev": true,
|
| 1804 |
-
"requires": {
|
| 1805 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1806 |
-
"@webassemblyjs/helper-buffer": "1.11.1",
|
| 1807 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
|
| 1808 |
-
"@webassemblyjs/wasm-gen": "1.11.1"
|
| 1809 |
-
}
|
| 1810 |
-
},
|
| 1811 |
-
"@webassemblyjs/ieee754": {
|
| 1812 |
-
"version": "1.11.1",
|
| 1813 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz",
|
| 1814 |
-
"integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==",
|
| 1815 |
-
"dev": true,
|
| 1816 |
-
"requires": {
|
| 1817 |
-
"@xtuc/ieee754": "^1.2.0"
|
| 1818 |
-
}
|
| 1819 |
-
},
|
| 1820 |
-
"@webassemblyjs/leb128": {
|
| 1821 |
-
"version": "1.11.1",
|
| 1822 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz",
|
| 1823 |
-
"integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==",
|
| 1824 |
-
"dev": true,
|
| 1825 |
-
"requires": {
|
| 1826 |
-
"@xtuc/long": "4.2.2"
|
| 1827 |
-
}
|
| 1828 |
-
},
|
| 1829 |
-
"@webassemblyjs/utf8": {
|
| 1830 |
-
"version": "1.11.1",
|
| 1831 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz",
|
| 1832 |
-
"integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==",
|
| 1833 |
-
"dev": true
|
| 1834 |
-
},
|
| 1835 |
-
"@webassemblyjs/wasm-edit": {
|
| 1836 |
-
"version": "1.11.1",
|
| 1837 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz",
|
| 1838 |
-
"integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==",
|
| 1839 |
-
"dev": true,
|
| 1840 |
-
"requires": {
|
| 1841 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1842 |
-
"@webassemblyjs/helper-buffer": "1.11.1",
|
| 1843 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
|
| 1844 |
-
"@webassemblyjs/helper-wasm-section": "1.11.1",
|
| 1845 |
-
"@webassemblyjs/wasm-gen": "1.11.1",
|
| 1846 |
-
"@webassemblyjs/wasm-opt": "1.11.1",
|
| 1847 |
-
"@webassemblyjs/wasm-parser": "1.11.1",
|
| 1848 |
-
"@webassemblyjs/wast-printer": "1.11.1"
|
| 1849 |
-
}
|
| 1850 |
-
},
|
| 1851 |
-
"@webassemblyjs/wasm-gen": {
|
| 1852 |
-
"version": "1.11.1",
|
| 1853 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz",
|
| 1854 |
-
"integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==",
|
| 1855 |
-
"dev": true,
|
| 1856 |
-
"requires": {
|
| 1857 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1858 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
|
| 1859 |
-
"@webassemblyjs/ieee754": "1.11.1",
|
| 1860 |
-
"@webassemblyjs/leb128": "1.11.1",
|
| 1861 |
-
"@webassemblyjs/utf8": "1.11.1"
|
| 1862 |
-
}
|
| 1863 |
-
},
|
| 1864 |
-
"@webassemblyjs/wasm-opt": {
|
| 1865 |
-
"version": "1.11.1",
|
| 1866 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz",
|
| 1867 |
-
"integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==",
|
| 1868 |
-
"dev": true,
|
| 1869 |
-
"requires": {
|
| 1870 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1871 |
-
"@webassemblyjs/helper-buffer": "1.11.1",
|
| 1872 |
-
"@webassemblyjs/wasm-gen": "1.11.1",
|
| 1873 |
-
"@webassemblyjs/wasm-parser": "1.11.1"
|
| 1874 |
-
}
|
| 1875 |
-
},
|
| 1876 |
-
"@webassemblyjs/wasm-parser": {
|
| 1877 |
-
"version": "1.11.1",
|
| 1878 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
|
| 1879 |
-
"integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
|
| 1880 |
-
"dev": true,
|
| 1881 |
-
"requires": {
|
| 1882 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1883 |
-
"@webassemblyjs/helper-api-error": "1.11.1",
|
| 1884 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.11.1",
|
| 1885 |
-
"@webassemblyjs/ieee754": "1.11.1",
|
| 1886 |
-
"@webassemblyjs/leb128": "1.11.1",
|
| 1887 |
-
"@webassemblyjs/utf8": "1.11.1"
|
| 1888 |
-
}
|
| 1889 |
-
},
|
| 1890 |
-
"@webassemblyjs/wast-printer": {
|
| 1891 |
-
"version": "1.11.1",
|
| 1892 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz",
|
| 1893 |
-
"integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==",
|
| 1894 |
-
"dev": true,
|
| 1895 |
-
"requires": {
|
| 1896 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 1897 |
-
"@xtuc/long": "4.2.2"
|
| 1898 |
-
}
|
| 1899 |
-
},
|
| 1900 |
-
"@webpack-cli/configtest": {
|
| 1901 |
-
"version": "1.1.0",
|
| 1902 |
-
"resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz",
|
| 1903 |
-
"integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==",
|
| 1904 |
-
"dev": true
|
| 1905 |
-
},
|
| 1906 |
-
"@webpack-cli/info": {
|
| 1907 |
-
"version": "1.4.0",
|
| 1908 |
-
"resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz",
|
| 1909 |
-
"integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==",
|
| 1910 |
-
"dev": true,
|
| 1911 |
-
"requires": {
|
| 1912 |
-
"envinfo": "^7.7.3"
|
| 1913 |
-
}
|
| 1914 |
-
},
|
| 1915 |
-
"@webpack-cli/serve": {
|
| 1916 |
-
"version": "1.6.0",
|
| 1917 |
-
"resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz",
|
| 1918 |
-
"integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==",
|
| 1919 |
-
"dev": true
|
| 1920 |
-
},
|
| 1921 |
-
"@wordpress/a11y": {
|
| 1922 |
-
"version": "3.2.4",
|
| 1923 |
-
"resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-3.2.4.tgz",
|
| 1924 |
-
"integrity": "sha512-RhDZciRy6XUx/hegJdJTgAtC/6i7DjfpUYJdy6McwvWXs56tMmCo+wBYQvC3G//+2VYdYYkwDZ8Z6eVUBSJ17w==",
|
| 1925 |
-
"requires": {
|
| 1926 |
-
"@babel/runtime": "^7.16.0",
|
| 1927 |
-
"@wordpress/dom-ready": "^3.2.3",
|
| 1928 |
-
"@wordpress/i18n": "^4.2.4"
|
| 1929 |
-
},
|
| 1930 |
-
"dependencies": {
|
| 1931 |
-
"@babel/runtime": {
|
| 1932 |
-
"version": "7.16.3",
|
| 1933 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 1934 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 1935 |
-
"requires": {
|
| 1936 |
-
"regenerator-runtime": "^0.13.4"
|
| 1937 |
-
}
|
| 1938 |
-
}
|
| 1939 |
-
}
|
| 1940 |
-
},
|
| 1941 |
-
"@wordpress/api-fetch": {
|
| 1942 |
-
"version": "5.2.6",
|
| 1943 |
-
"resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-5.2.6.tgz",
|
| 1944 |
-
"integrity": "sha512-AG8KdCHwtYJWR38AAU7nEI+UbumUSqSBthQj3rShLUVyFbYGkQdpwXJJG6vFj7FjIp41zljiyj3K1Fh3cqdaAw==",
|
| 1945 |
-
"requires": {
|
| 1946 |
-
"@babel/runtime": "^7.16.0",
|
| 1947 |
-
"@wordpress/i18n": "^4.2.4",
|
| 1948 |
-
"@wordpress/url": "^3.3.1"
|
| 1949 |
-
},
|
| 1950 |
-
"dependencies": {
|
| 1951 |
-
"@babel/runtime": {
|
| 1952 |
-
"version": "7.16.3",
|
| 1953 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 1954 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 1955 |
-
"requires": {
|
| 1956 |
-
"regenerator-runtime": "^0.13.4"
|
| 1957 |
-
}
|
| 1958 |
-
}
|
| 1959 |
-
}
|
| 1960 |
-
},
|
| 1961 |
-
"@wordpress/autop": {
|
| 1962 |
-
"version": "3.2.3",
|
| 1963 |
-
"resolved": "https://registry.npmjs.org/@wordpress/autop/-/autop-3.2.3.tgz",
|
| 1964 |
-
"integrity": "sha512-o66vC+aZPmJGMie+Emqa5gtfQYKbLXqGCESTfingXyMxXEpCa4qOEOi1D6vwX61sf3+k2qJ4bvKwJ5nZXjDaSQ==",
|
| 1965 |
-
"requires": {
|
| 1966 |
-
"@babel/runtime": "^7.16.0"
|
| 1967 |
-
},
|
| 1968 |
-
"dependencies": {
|
| 1969 |
-
"@babel/runtime": {
|
| 1970 |
-
"version": "7.16.3",
|
| 1971 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 1972 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 1973 |
-
"requires": {
|
| 1974 |
-
"regenerator-runtime": "^0.13.4"
|
| 1975 |
-
}
|
| 1976 |
-
}
|
| 1977 |
-
}
|
| 1978 |
-
},
|
| 1979 |
-
"@wordpress/base-styles": {
|
| 1980 |
-
"version": "3.5.0",
|
| 1981 |
-
"resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-3.5.0.tgz",
|
| 1982 |
-
"integrity": "sha512-LjN+425dIt+JWTJq/ke9sQxKj4brNutlBhb1+zlOy3nQWNUhCPRKRD2szkvmrA6I0rmlnYlVWZZ+tA4/NrQYHQ=="
|
| 1983 |
-
},
|
| 1984 |
-
"@wordpress/blob": {
|
| 1985 |
-
"version": "3.2.2",
|
| 1986 |
-
"resolved": "https://registry.npmjs.org/@wordpress/blob/-/blob-3.2.2.tgz",
|
| 1987 |
-
"integrity": "sha512-uzOlmwcTtxZFBoQc6nDYdkTvPnd6QMK5GEmmrHt6Q1OYOZ6V2vOdC6w0IdynbQYpuNnaWwhyfcsTRh/+97UoRg==",
|
| 1988 |
-
"requires": {
|
| 1989 |
-
"@babel/runtime": "^7.16.0"
|
| 1990 |
-
},
|
| 1991 |
-
"dependencies": {
|
| 1992 |
-
"@babel/runtime": {
|
| 1993 |
-
"version": "7.16.3",
|
| 1994 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 1995 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 1996 |
-
"requires": {
|
| 1997 |
-
"regenerator-runtime": "^0.13.4"
|
| 1998 |
-
}
|
| 1999 |
-
}
|
| 2000 |
-
}
|
| 2001 |
-
},
|
| 2002 |
-
"@wordpress/block-editor": {
|
| 2003 |
-
"version": "8.0.3",
|
| 2004 |
-
"resolved": "https://registry.npmjs.org/@wordpress/block-editor/-/block-editor-8.0.3.tgz",
|
| 2005 |
-
"integrity": "sha512-7/FeCK0KFUnWGmUEDoZqdGCOeIaIpD4qyI88WZQnwgaQ3Nsu02L6/kRGD5HXUatFjqGUcz4OGy2dOxrmBNH/6A==",
|
| 2006 |
-
"requires": {
|
| 2007 |
-
"@babel/runtime": "^7.16.0",
|
| 2008 |
-
"@react-spring/web": "^9.2.4",
|
| 2009 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2010 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2011 |
-
"@wordpress/blob": "^3.2.2",
|
| 2012 |
-
"@wordpress/block-serialization-default-parser": "^4.2.3",
|
| 2013 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2014 |
-
"@wordpress/components": "^19.0.3",
|
| 2015 |
-
"@wordpress/compose": "^5.0.6",
|
| 2016 |
-
"@wordpress/data": "^6.1.4",
|
| 2017 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2018 |
-
"@wordpress/dom": "^3.2.7",
|
| 2019 |
-
"@wordpress/element": "^4.0.4",
|
| 2020 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2021 |
-
"@wordpress/html-entities": "^3.2.3",
|
| 2022 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2023 |
-
"@wordpress/icons": "^6.1.1",
|
| 2024 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2025 |
-
"@wordpress/keyboard-shortcuts": "^3.0.6",
|
| 2026 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2027 |
-
"@wordpress/notices": "^3.2.7",
|
| 2028 |
-
"@wordpress/rich-text": "^5.0.6",
|
| 2029 |
-
"@wordpress/shortcode": "^3.2.3",
|
| 2030 |
-
"@wordpress/token-list": "^2.2.2",
|
| 2031 |
-
"@wordpress/url": "^3.3.1",
|
| 2032 |
-
"@wordpress/warning": "^2.2.2",
|
| 2033 |
-
"@wordpress/wordcount": "^3.2.3",
|
| 2034 |
-
"classnames": "^2.3.1",
|
| 2035 |
-
"colord": "^2.7.0",
|
| 2036 |
-
"css-mediaquery": "^0.1.2",
|
| 2037 |
-
"diff": "^4.0.2",
|
| 2038 |
-
"dom-scroll-into-view": "^1.2.1",
|
| 2039 |
-
"inherits": "^2.0.3",
|
| 2040 |
-
"lodash": "^4.17.21",
|
| 2041 |
-
"memize": "^1.1.0",
|
| 2042 |
-
"react-autosize-textarea": "^7.1.0",
|
| 2043 |
-
"react-easy-crop": "^3.0.0",
|
| 2044 |
-
"redux-multi": "^0.1.12",
|
| 2045 |
-
"rememo": "^3.0.0",
|
| 2046 |
-
"traverse": "^0.6.6"
|
| 2047 |
-
},
|
| 2048 |
-
"dependencies": {
|
| 2049 |
-
"@babel/runtime": {
|
| 2050 |
-
"version": "7.16.3",
|
| 2051 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2052 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2053 |
-
"requires": {
|
| 2054 |
-
"regenerator-runtime": "^0.13.4"
|
| 2055 |
-
}
|
| 2056 |
-
}
|
| 2057 |
-
}
|
| 2058 |
-
},
|
| 2059 |
-
"@wordpress/block-library": {
|
| 2060 |
-
"version": "6.0.7",
|
| 2061 |
-
"resolved": "https://registry.npmjs.org/@wordpress/block-library/-/block-library-6.0.7.tgz",
|
| 2062 |
-
"integrity": "sha512-WpCnFi1j47MB6RFr1M4nlfPnwsYmsh+qwaXH1wfrckT1DM+/G2uRKJKwFAm/gm+OnqjsYOcRYOftaLmgRTAwCg==",
|
| 2063 |
-
"requires": {
|
| 2064 |
-
"@babel/runtime": "^7.16.0",
|
| 2065 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2066 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2067 |
-
"@wordpress/autop": "^3.2.3",
|
| 2068 |
-
"@wordpress/blob": "^3.2.2",
|
| 2069 |
-
"@wordpress/block-editor": "^8.0.3",
|
| 2070 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2071 |
-
"@wordpress/components": "^19.0.3",
|
| 2072 |
-
"@wordpress/compose": "^5.0.6",
|
| 2073 |
-
"@wordpress/core-data": "^4.0.7",
|
| 2074 |
-
"@wordpress/data": "^6.1.4",
|
| 2075 |
-
"@wordpress/date": "^4.2.3",
|
| 2076 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2077 |
-
"@wordpress/dom": "^3.2.7",
|
| 2078 |
-
"@wordpress/element": "^4.0.4",
|
| 2079 |
-
"@wordpress/escape-html": "^2.2.3",
|
| 2080 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2081 |
-
"@wordpress/html-entities": "^3.2.3",
|
| 2082 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2083 |
-
"@wordpress/icons": "^6.1.1",
|
| 2084 |
-
"@wordpress/interface": "^4.1.5",
|
| 2085 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2086 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2087 |
-
"@wordpress/notices": "^3.2.7",
|
| 2088 |
-
"@wordpress/primitives": "^3.0.4",
|
| 2089 |
-
"@wordpress/reusable-blocks": "^3.0.9",
|
| 2090 |
-
"@wordpress/rich-text": "^5.0.6",
|
| 2091 |
-
"@wordpress/server-side-render": "^3.0.7",
|
| 2092 |
-
"@wordpress/url": "^3.3.1",
|
| 2093 |
-
"@wordpress/viewport": "^4.0.6",
|
| 2094 |
-
"classnames": "^2.3.1",
|
| 2095 |
-
"colord": "^2.7.0",
|
| 2096 |
-
"fast-average-color": "4.3.0",
|
| 2097 |
-
"lodash": "^4.17.21",
|
| 2098 |
-
"memize": "^1.1.0",
|
| 2099 |
-
"micromodal": "^0.4.6",
|
| 2100 |
-
"moment": "^2.22.1"
|
| 2101 |
-
},
|
| 2102 |
-
"dependencies": {
|
| 2103 |
-
"@babel/runtime": {
|
| 2104 |
-
"version": "7.16.3",
|
| 2105 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2106 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2107 |
-
"requires": {
|
| 2108 |
-
"regenerator-runtime": "^0.13.4"
|
| 2109 |
-
}
|
| 2110 |
-
}
|
| 2111 |
-
}
|
| 2112 |
-
},
|
| 2113 |
-
"@wordpress/block-serialization-default-parser": {
|
| 2114 |
-
"version": "4.2.3",
|
| 2115 |
-
"resolved": "https://registry.npmjs.org/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-4.2.3.tgz",
|
| 2116 |
-
"integrity": "sha512-VAgRRijd/gZ0ET7lXXEG4/efK5zaBH4RqFV2VJsnuNDQe8CmtmHoCxQC2cUHHhnm9KpubffvVtK+R0mscSmH2Q==",
|
| 2117 |
-
"requires": {
|
| 2118 |
-
"@babel/runtime": "^7.16.0"
|
| 2119 |
-
},
|
| 2120 |
-
"dependencies": {
|
| 2121 |
-
"@babel/runtime": {
|
| 2122 |
-
"version": "7.16.3",
|
| 2123 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2124 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2125 |
-
"requires": {
|
| 2126 |
-
"regenerator-runtime": "^0.13.4"
|
| 2127 |
-
}
|
| 2128 |
-
}
|
| 2129 |
-
}
|
| 2130 |
-
},
|
| 2131 |
-
"@wordpress/blocks": {
|
| 2132 |
-
"version": "11.1.4",
|
| 2133 |
-
"resolved": "https://registry.npmjs.org/@wordpress/blocks/-/blocks-11.1.4.tgz",
|
| 2134 |
-
"integrity": "sha512-iTmkALp7diiP83ICsqQmtCvekOVEa1GCgbybfMS+eniVSXmMIgfZB69eYvf22XqQa68r9nCTIYuP2maPwPid3A==",
|
| 2135 |
-
"requires": {
|
| 2136 |
-
"@babel/runtime": "^7.16.0",
|
| 2137 |
-
"@wordpress/autop": "^3.2.3",
|
| 2138 |
-
"@wordpress/blob": "^3.2.2",
|
| 2139 |
-
"@wordpress/block-serialization-default-parser": "^4.2.3",
|
| 2140 |
-
"@wordpress/compose": "^5.0.6",
|
| 2141 |
-
"@wordpress/data": "^6.1.4",
|
| 2142 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2143 |
-
"@wordpress/dom": "^3.2.7",
|
| 2144 |
-
"@wordpress/element": "^4.0.4",
|
| 2145 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2146 |
-
"@wordpress/html-entities": "^3.2.3",
|
| 2147 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2148 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2149 |
-
"@wordpress/shortcode": "^3.2.3",
|
| 2150 |
-
"colord": "^2.7.0",
|
| 2151 |
-
"hpq": "^1.3.0",
|
| 2152 |
-
"lodash": "^4.17.21",
|
| 2153 |
-
"rememo": "^3.0.0",
|
| 2154 |
-
"showdown": "^1.9.1",
|
| 2155 |
-
"simple-html-tokenizer": "^0.5.7",
|
| 2156 |
-
"uuid": "^8.3.0"
|
| 2157 |
-
},
|
| 2158 |
-
"dependencies": {
|
| 2159 |
-
"@babel/runtime": {
|
| 2160 |
-
"version": "7.16.3",
|
| 2161 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2162 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2163 |
-
"requires": {
|
| 2164 |
-
"regenerator-runtime": "^0.13.4"
|
| 2165 |
-
}
|
| 2166 |
-
}
|
| 2167 |
-
}
|
| 2168 |
-
},
|
| 2169 |
-
"@wordpress/components": {
|
| 2170 |
-
"version": "19.0.3",
|
| 2171 |
-
"resolved": "https://registry.npmjs.org/@wordpress/components/-/components-19.0.3.tgz",
|
| 2172 |
-
"integrity": "sha512-A8Y1rIpqBXEpc53IZ0TztEkdAaboMyaLY6PxYXniiI1KUSUrybQIBqcPe6uuCZIBCQNNh2uG3uvHisnuC1HWFQ==",
|
| 2173 |
-
"requires": {
|
| 2174 |
-
"@babel/runtime": "^7.16.0",
|
| 2175 |
-
"@emotion/cache": "^11.4.0",
|
| 2176 |
-
"@emotion/css": "^11.1.3",
|
| 2177 |
-
"@emotion/react": "^11.4.1",
|
| 2178 |
-
"@emotion/styled": "^11.3.0",
|
| 2179 |
-
"@emotion/utils": "1.0.0",
|
| 2180 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2181 |
-
"@wordpress/compose": "^5.0.6",
|
| 2182 |
-
"@wordpress/date": "^4.2.3",
|
| 2183 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2184 |
-
"@wordpress/dom": "^3.2.7",
|
| 2185 |
-
"@wordpress/element": "^4.0.4",
|
| 2186 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2187 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2188 |
-
"@wordpress/icons": "^6.1.1",
|
| 2189 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2190 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2191 |
-
"@wordpress/primitives": "^3.0.4",
|
| 2192 |
-
"@wordpress/rich-text": "^5.0.6",
|
| 2193 |
-
"@wordpress/warning": "^2.2.2",
|
| 2194 |
-
"classnames": "^2.3.1",
|
| 2195 |
-
"colord": "^2.7.0",
|
| 2196 |
-
"dom-scroll-into-view": "^1.2.1",
|
| 2197 |
-
"downshift": "^6.0.15",
|
| 2198 |
-
"framer-motion": "^4.1.17",
|
| 2199 |
-
"gradient-parser": "^0.1.5",
|
| 2200 |
-
"highlight-words-core": "^1.2.2",
|
| 2201 |
-
"lodash": "^4.17.21",
|
| 2202 |
-
"memize": "^1.1.0",
|
| 2203 |
-
"moment": "^2.22.1",
|
| 2204 |
-
"re-resizable": "^6.4.0",
|
| 2205 |
-
"react-colorful": "^5.3.1",
|
| 2206 |
-
"react-dates": "^17.1.1",
|
| 2207 |
-
"react-resize-aware": "^3.1.0",
|
| 2208 |
-
"react-use-gesture": "^9.0.0",
|
| 2209 |
-
"reakit": "^1.3.8",
|
| 2210 |
-
"rememo": "^3.0.0",
|
| 2211 |
-
"uuid": "^8.3.0"
|
| 2212 |
-
},
|
| 2213 |
-
"dependencies": {
|
| 2214 |
-
"@babel/runtime": {
|
| 2215 |
-
"version": "7.16.3",
|
| 2216 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2217 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2218 |
-
"requires": {
|
| 2219 |
-
"regenerator-runtime": "^0.13.4"
|
| 2220 |
-
}
|
| 2221 |
-
}
|
| 2222 |
-
}
|
| 2223 |
-
},
|
| 2224 |
-
"@wordpress/compose": {
|
| 2225 |
-
"version": "5.0.6",
|
| 2226 |
-
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-5.0.6.tgz",
|
| 2227 |
-
"integrity": "sha512-Gm0BA74oHCjbr8A7xifKYK2V++eeAscsIIURgqo3NN4qCIaGuqMEgUDdTxCBW4vJL6TKAE0Yk56018V6mg56Cg==",
|
| 2228 |
-
"requires": {
|
| 2229 |
-
"@babel/runtime": "^7.16.0",
|
| 2230 |
-
"@types/lodash": "^4.14.172",
|
| 2231 |
-
"@types/mousetrap": "^1.6.8",
|
| 2232 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2233 |
-
"@wordpress/dom": "^3.2.7",
|
| 2234 |
-
"@wordpress/element": "^4.0.4",
|
| 2235 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2236 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2237 |
-
"@wordpress/priority-queue": "^2.2.3",
|
| 2238 |
-
"clipboard": "^2.0.8",
|
| 2239 |
-
"lodash": "^4.17.21",
|
| 2240 |
-
"mousetrap": "^1.6.5",
|
| 2241 |
-
"react-resize-aware": "^3.1.0",
|
| 2242 |
-
"use-memo-one": "^1.1.1"
|
| 2243 |
-
},
|
| 2244 |
-
"dependencies": {
|
| 2245 |
-
"@babel/runtime": {
|
| 2246 |
-
"version": "7.16.3",
|
| 2247 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2248 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2249 |
-
"requires": {
|
| 2250 |
-
"regenerator-runtime": "^0.13.4"
|
| 2251 |
-
}
|
| 2252 |
-
}
|
| 2253 |
-
}
|
| 2254 |
-
},
|
| 2255 |
-
"@wordpress/core-data": {
|
| 2256 |
-
"version": "4.0.7",
|
| 2257 |
-
"resolved": "https://registry.npmjs.org/@wordpress/core-data/-/core-data-4.0.7.tgz",
|
| 2258 |
-
"integrity": "sha512-N9za/cxd3KiZsHZj5kcD4zYcPgv7PdCQQx0GB5rBzceYzgON/WG3Y/QhoFHFwEw5OOpBIcSKehV975VByRD+qA==",
|
| 2259 |
-
"requires": {
|
| 2260 |
-
"@babel/runtime": "^7.16.0",
|
| 2261 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2262 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2263 |
-
"@wordpress/data": "^6.1.4",
|
| 2264 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2265 |
-
"@wordpress/element": "^4.0.4",
|
| 2266 |
-
"@wordpress/html-entities": "^3.2.3",
|
| 2267 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2268 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2269 |
-
"@wordpress/url": "^3.3.1",
|
| 2270 |
-
"equivalent-key-map": "^0.2.2",
|
| 2271 |
-
"lodash": "^4.17.21",
|
| 2272 |
-
"rememo": "^3.0.0",
|
| 2273 |
-
"uuid": "^8.3.0"
|
| 2274 |
-
},
|
| 2275 |
-
"dependencies": {
|
| 2276 |
-
"@babel/runtime": {
|
| 2277 |
-
"version": "7.16.3",
|
| 2278 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2279 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2280 |
-
"requires": {
|
| 2281 |
-
"regenerator-runtime": "^0.13.4"
|
| 2282 |
-
}
|
| 2283 |
-
}
|
| 2284 |
-
}
|
| 2285 |
-
},
|
| 2286 |
-
"@wordpress/data": {
|
| 2287 |
-
"version": "6.1.4",
|
| 2288 |
-
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-6.1.4.tgz",
|
| 2289 |
-
"integrity": "sha512-8kjLchELZCxjETPHnFrb2VaeIOEUAYrsO9moDUkhUnQ7SnCWGxhOYUKSMm0QknWjoAIBuJkuejTB98uqkREZWA==",
|
| 2290 |
-
"requires": {
|
| 2291 |
-
"@babel/runtime": "^7.16.0",
|
| 2292 |
-
"@wordpress/compose": "^5.0.6",
|
| 2293 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2294 |
-
"@wordpress/element": "^4.0.4",
|
| 2295 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2296 |
-
"@wordpress/priority-queue": "^2.2.3",
|
| 2297 |
-
"@wordpress/redux-routine": "^4.2.2",
|
| 2298 |
-
"equivalent-key-map": "^0.2.2",
|
| 2299 |
-
"is-promise": "^4.0.0",
|
| 2300 |
-
"lodash": "^4.17.21",
|
| 2301 |
-
"memize": "^1.1.0",
|
| 2302 |
-
"turbo-combine-reducers": "^1.0.2",
|
| 2303 |
-
"use-memo-one": "^1.1.1"
|
| 2304 |
-
},
|
| 2305 |
-
"dependencies": {
|
| 2306 |
-
"@babel/runtime": {
|
| 2307 |
-
"version": "7.16.3",
|
| 2308 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2309 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2310 |
-
"requires": {
|
| 2311 |
-
"regenerator-runtime": "^0.13.4"
|
| 2312 |
-
}
|
| 2313 |
-
}
|
| 2314 |
-
}
|
| 2315 |
-
},
|
| 2316 |
-
"@wordpress/data-controls": {
|
| 2317 |
-
"version": "2.2.7",
|
| 2318 |
-
"resolved": "https://registry.npmjs.org/@wordpress/data-controls/-/data-controls-2.2.7.tgz",
|
| 2319 |
-
"integrity": "sha512-4FDOscyEs+/aaR+Aczo1XfmESjmpAPicD1i67jwQY2HPMPke1fyTszIB+17daimELDAt17v9dPLcMspyB+SRGg==",
|
| 2320 |
-
"requires": {
|
| 2321 |
-
"@babel/runtime": "^7.16.0",
|
| 2322 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2323 |
-
"@wordpress/data": "^6.1.4",
|
| 2324 |
-
"@wordpress/deprecated": "^3.2.3"
|
| 2325 |
-
},
|
| 2326 |
-
"dependencies": {
|
| 2327 |
-
"@babel/runtime": {
|
| 2328 |
-
"version": "7.16.3",
|
| 2329 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2330 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2331 |
-
"requires": {
|
| 2332 |
-
"regenerator-runtime": "^0.13.4"
|
| 2333 |
-
}
|
| 2334 |
-
}
|
| 2335 |
-
}
|
| 2336 |
-
},
|
| 2337 |
-
"@wordpress/date": {
|
| 2338 |
-
"version": "4.2.3",
|
| 2339 |
-
"resolved": "https://registry.npmjs.org/@wordpress/date/-/date-4.2.3.tgz",
|
| 2340 |
-
"integrity": "sha512-5hZDhFwTtKcbJGZdqvIzoLsW/QgBjUjf4ohgDqRlMBX8Zi6/n11O8LDRPOpmJLVSnIx1fgNSGkzXOzzQmbWuqQ==",
|
| 2341 |
-
"requires": {
|
| 2342 |
-
"@babel/runtime": "^7.16.0",
|
| 2343 |
-
"moment": "^2.22.1",
|
| 2344 |
-
"moment-timezone": "^0.5.31"
|
| 2345 |
-
},
|
| 2346 |
-
"dependencies": {
|
| 2347 |
-
"@babel/runtime": {
|
| 2348 |
-
"version": "7.16.3",
|
| 2349 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2350 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2351 |
-
"requires": {
|
| 2352 |
-
"regenerator-runtime": "^0.13.4"
|
| 2353 |
-
}
|
| 2354 |
-
}
|
| 2355 |
-
}
|
| 2356 |
-
},
|
| 2357 |
-
"@wordpress/deprecated": {
|
| 2358 |
-
"version": "3.2.3",
|
| 2359 |
-
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-3.2.3.tgz",
|
| 2360 |
-
"integrity": "sha512-YoJos/hW216PIlxbtNyb24kPR3TUFTSsfeVT23SxudW4jhmwM12vkl3KY1RDbhD/qi89OE4k+8xsBo5cM3lCSw==",
|
| 2361 |
-
"requires": {
|
| 2362 |
-
"@babel/runtime": "^7.16.0",
|
| 2363 |
-
"@wordpress/hooks": "^3.2.2"
|
| 2364 |
-
},
|
| 2365 |
-
"dependencies": {
|
| 2366 |
-
"@babel/runtime": {
|
| 2367 |
-
"version": "7.16.3",
|
| 2368 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2369 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2370 |
-
"requires": {
|
| 2371 |
-
"regenerator-runtime": "^0.13.4"
|
| 2372 |
-
}
|
| 2373 |
-
}
|
| 2374 |
-
}
|
| 2375 |
-
},
|
| 2376 |
-
"@wordpress/dom": {
|
| 2377 |
-
"version": "3.2.7",
|
| 2378 |
-
"resolved": "https://registry.npmjs.org/@wordpress/dom/-/dom-3.2.7.tgz",
|
| 2379 |
-
"integrity": "sha512-/e7sFaiwKHWmgqUFsClYw9YI6Wq/eZ1iBsxtGgqX5zrU8KyFJaziNeHDE8tTZLkiURS1vlBQm0mY6bX7Bo4CEA==",
|
| 2380 |
-
"requires": {
|
| 2381 |
-
"@babel/runtime": "^7.16.0",
|
| 2382 |
-
"lodash": "^4.17.21"
|
| 2383 |
-
},
|
| 2384 |
-
"dependencies": {
|
| 2385 |
-
"@babel/runtime": {
|
| 2386 |
-
"version": "7.16.3",
|
| 2387 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2388 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2389 |
-
"requires": {
|
| 2390 |
-
"regenerator-runtime": "^0.13.4"
|
| 2391 |
-
}
|
| 2392 |
-
}
|
| 2393 |
-
}
|
| 2394 |
-
},
|
| 2395 |
-
"@wordpress/dom-ready": {
|
| 2396 |
-
"version": "3.2.3",
|
| 2397 |
-
"resolved": "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-3.2.3.tgz",
|
| 2398 |
-
"integrity": "sha512-AvHrfYFflycWRX8CIU7UGty05aXrKvILwrNT2YRXmOmgh+POud98QQU54hitwL2cyVkWUt8dvCNRK4nnjBqqJQ==",
|
| 2399 |
-
"requires": {
|
| 2400 |
-
"@babel/runtime": "^7.16.0"
|
| 2401 |
-
},
|
| 2402 |
-
"dependencies": {
|
| 2403 |
-
"@babel/runtime": {
|
| 2404 |
-
"version": "7.16.3",
|
| 2405 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2406 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2407 |
-
"requires": {
|
| 2408 |
-
"regenerator-runtime": "^0.13.4"
|
| 2409 |
-
}
|
| 2410 |
-
}
|
| 2411 |
-
}
|
| 2412 |
-
},
|
| 2413 |
-
"@wordpress/edit-post": {
|
| 2414 |
-
"version": "5.0.9",
|
| 2415 |
-
"resolved": "https://registry.npmjs.org/@wordpress/edit-post/-/edit-post-5.0.9.tgz",
|
| 2416 |
-
"integrity": "sha512-qvL4/kuFg9/M7occ3dH4RlZB6PvtZoip4Pr9nzDM/T+OS+xw4btUSzfaOhhaWXYiAYo3vOg8ViB/y1JkMrnuFQ==",
|
| 2417 |
-
"requires": {
|
| 2418 |
-
"@babel/runtime": "^7.16.0",
|
| 2419 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2420 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2421 |
-
"@wordpress/block-editor": "^8.0.3",
|
| 2422 |
-
"@wordpress/block-library": "^6.0.7",
|
| 2423 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2424 |
-
"@wordpress/components": "^19.0.3",
|
| 2425 |
-
"@wordpress/compose": "^5.0.6",
|
| 2426 |
-
"@wordpress/core-data": "^4.0.7",
|
| 2427 |
-
"@wordpress/data": "^6.1.4",
|
| 2428 |
-
"@wordpress/data-controls": "^2.2.7",
|
| 2429 |
-
"@wordpress/editor": "^12.0.6",
|
| 2430 |
-
"@wordpress/element": "^4.0.4",
|
| 2431 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2432 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2433 |
-
"@wordpress/icons": "^6.1.1",
|
| 2434 |
-
"@wordpress/interface": "^4.1.5",
|
| 2435 |
-
"@wordpress/keyboard-shortcuts": "^3.0.6",
|
| 2436 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2437 |
-
"@wordpress/media-utils": "^3.0.5",
|
| 2438 |
-
"@wordpress/notices": "^3.2.7",
|
| 2439 |
-
"@wordpress/plugins": "^4.0.6",
|
| 2440 |
-
"@wordpress/primitives": "^3.0.4",
|
| 2441 |
-
"@wordpress/url": "^3.3.1",
|
| 2442 |
-
"@wordpress/viewport": "^4.0.6",
|
| 2443 |
-
"@wordpress/warning": "^2.2.2",
|
| 2444 |
-
"classnames": "^2.3.1",
|
| 2445 |
-
"lodash": "^4.17.21",
|
| 2446 |
-
"memize": "^1.1.0",
|
| 2447 |
-
"rememo": "^3.0.0",
|
| 2448 |
-
"uuid": "8.3.0"
|
| 2449 |
-
},
|
| 2450 |
-
"dependencies": {
|
| 2451 |
-
"@babel/runtime": {
|
| 2452 |
-
"version": "7.16.3",
|
| 2453 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2454 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2455 |
-
"requires": {
|
| 2456 |
-
"regenerator-runtime": "^0.13.4"
|
| 2457 |
-
}
|
| 2458 |
-
},
|
| 2459 |
-
"uuid": {
|
| 2460 |
-
"version": "8.3.0",
|
| 2461 |
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz",
|
| 2462 |
-
"integrity": "sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ=="
|
| 2463 |
-
}
|
| 2464 |
-
}
|
| 2465 |
-
},
|
| 2466 |
-
"@wordpress/editor": {
|
| 2467 |
-
"version": "12.0.6",
|
| 2468 |
-
"resolved": "https://registry.npmjs.org/@wordpress/editor/-/editor-12.0.6.tgz",
|
| 2469 |
-
"integrity": "sha512-OP1naxqn0T1/7gIMNIzNj+JIsSWIJta5TcZzdueMimJ3mhSPe1ggQGvEkxd4Xg5mZ1kAboQ1TpzyIqA4Ck1v3w==",
|
| 2470 |
-
"requires": {
|
| 2471 |
-
"@babel/runtime": "^7.16.0",
|
| 2472 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2473 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2474 |
-
"@wordpress/autop": "^3.2.3",
|
| 2475 |
-
"@wordpress/blob": "^3.2.2",
|
| 2476 |
-
"@wordpress/block-editor": "^8.0.3",
|
| 2477 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2478 |
-
"@wordpress/components": "^19.0.3",
|
| 2479 |
-
"@wordpress/compose": "^5.0.6",
|
| 2480 |
-
"@wordpress/core-data": "^4.0.7",
|
| 2481 |
-
"@wordpress/data": "^6.1.4",
|
| 2482 |
-
"@wordpress/data-controls": "^2.2.7",
|
| 2483 |
-
"@wordpress/date": "^4.2.3",
|
| 2484 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2485 |
-
"@wordpress/element": "^4.0.4",
|
| 2486 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2487 |
-
"@wordpress/html-entities": "^3.2.3",
|
| 2488 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2489 |
-
"@wordpress/icons": "^6.1.1",
|
| 2490 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2491 |
-
"@wordpress/keyboard-shortcuts": "^3.0.6",
|
| 2492 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2493 |
-
"@wordpress/media-utils": "^3.0.5",
|
| 2494 |
-
"@wordpress/notices": "^3.2.7",
|
| 2495 |
-
"@wordpress/reusable-blocks": "^3.0.9",
|
| 2496 |
-
"@wordpress/rich-text": "^5.0.6",
|
| 2497 |
-
"@wordpress/server-side-render": "^3.0.7",
|
| 2498 |
-
"@wordpress/url": "^3.3.1",
|
| 2499 |
-
"@wordpress/wordcount": "^3.2.3",
|
| 2500 |
-
"classnames": "^2.3.1",
|
| 2501 |
-
"lodash": "^4.17.21",
|
| 2502 |
-
"memize": "^1.1.0",
|
| 2503 |
-
"react-autosize-textarea": "^7.1.0",
|
| 2504 |
-
"rememo": "^3.0.0"
|
| 2505 |
-
},
|
| 2506 |
-
"dependencies": {
|
| 2507 |
-
"@babel/runtime": {
|
| 2508 |
-
"version": "7.16.3",
|
| 2509 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2510 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2511 |
-
"requires": {
|
| 2512 |
-
"regenerator-runtime": "^0.13.4"
|
| 2513 |
-
}
|
| 2514 |
-
}
|
| 2515 |
-
}
|
| 2516 |
-
},
|
| 2517 |
-
"@wordpress/element": {
|
| 2518 |
-
"version": "4.0.4",
|
| 2519 |
-
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-4.0.4.tgz",
|
| 2520 |
-
"integrity": "sha512-GbYVSZrHitOmupQCjb7cSlewVigXHorpZUBpvWnkU3rhyh1tF/N9qve3fgg7Q3s2szjtTP+eEutB+4mmkwHQOA==",
|
| 2521 |
-
"requires": {
|
| 2522 |
-
"@babel/runtime": "^7.16.0",
|
| 2523 |
-
"@types/react": "^16.9.0",
|
| 2524 |
-
"@types/react-dom": "^16.9.0",
|
| 2525 |
-
"@wordpress/escape-html": "^2.2.3",
|
| 2526 |
-
"lodash": "^4.17.21",
|
| 2527 |
-
"react": "^17.0.1",
|
| 2528 |
-
"react-dom": "^17.0.1"
|
| 2529 |
-
},
|
| 2530 |
-
"dependencies": {
|
| 2531 |
-
"@babel/runtime": {
|
| 2532 |
-
"version": "7.16.3",
|
| 2533 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2534 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2535 |
-
"requires": {
|
| 2536 |
-
"regenerator-runtime": "^0.13.4"
|
| 2537 |
-
}
|
| 2538 |
-
}
|
| 2539 |
-
}
|
| 2540 |
-
},
|
| 2541 |
-
"@wordpress/escape-html": {
|
| 2542 |
-
"version": "2.2.3",
|
| 2543 |
-
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-2.2.3.tgz",
|
| 2544 |
-
"integrity": "sha512-nYIwT8WzHfAzjjwHLiwDQWrzn4/gUNr5zud465XQszM2cAItN2wnC26/ovSpPomDGkvjcG0YltgnSqc1T62olA==",
|
| 2545 |
-
"requires": {
|
| 2546 |
-
"@babel/runtime": "^7.16.0"
|
| 2547 |
-
},
|
| 2548 |
-
"dependencies": {
|
| 2549 |
-
"@babel/runtime": {
|
| 2550 |
-
"version": "7.16.3",
|
| 2551 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2552 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2553 |
-
"requires": {
|
| 2554 |
-
"regenerator-runtime": "^0.13.4"
|
| 2555 |
-
}
|
| 2556 |
-
}
|
| 2557 |
-
}
|
| 2558 |
-
},
|
| 2559 |
-
"@wordpress/hooks": {
|
| 2560 |
-
"version": "3.2.2",
|
| 2561 |
-
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.2.2.tgz",
|
| 2562 |
-
"integrity": "sha512-MlFWyu2ttJhmzDFBVWPRwZwIMqQdHFZTjFWFWm50NlzUzIJ3gEtNA95mHNtav1Fone24N+I2YkaYMNb6PEPTyA==",
|
| 2563 |
-
"requires": {
|
| 2564 |
-
"@babel/runtime": "^7.16.0"
|
| 2565 |
-
},
|
| 2566 |
-
"dependencies": {
|
| 2567 |
-
"@babel/runtime": {
|
| 2568 |
-
"version": "7.16.3",
|
| 2569 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2570 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2571 |
-
"requires": {
|
| 2572 |
-
"regenerator-runtime": "^0.13.4"
|
| 2573 |
-
}
|
| 2574 |
-
}
|
| 2575 |
-
}
|
| 2576 |
-
},
|
| 2577 |
-
"@wordpress/html-entities": {
|
| 2578 |
-
"version": "3.2.3",
|
| 2579 |
-
"resolved": "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-3.2.3.tgz",
|
| 2580 |
-
"integrity": "sha512-406VUz8CuKgKGrW/wjRB877soSqGhGDwK4sSuNoIC1FvpfniZ0ijpqfsdhJOOynWdz+RYN1wAsfogBpzuREJOg==",
|
| 2581 |
-
"requires": {
|
| 2582 |
-
"@babel/runtime": "^7.16.0"
|
| 2583 |
-
},
|
| 2584 |
-
"dependencies": {
|
| 2585 |
-
"@babel/runtime": {
|
| 2586 |
-
"version": "7.16.3",
|
| 2587 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2588 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2589 |
-
"requires": {
|
| 2590 |
-
"regenerator-runtime": "^0.13.4"
|
| 2591 |
-
}
|
| 2592 |
-
}
|
| 2593 |
-
}
|
| 2594 |
-
},
|
| 2595 |
-
"@wordpress/i18n": {
|
| 2596 |
-
"version": "4.2.4",
|
| 2597 |
-
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.2.4.tgz",
|
| 2598 |
-
"integrity": "sha512-36PnV7wTaLKCb+JZoapR3AtfrLTluhO5bIR6cUTG+QBBJ+g3gjRAdNFihnV8kz66FANu8PqDMI0T1jow/mrbYw==",
|
| 2599 |
-
"requires": {
|
| 2600 |
-
"@babel/runtime": "^7.16.0",
|
| 2601 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2602 |
-
"gettext-parser": "^1.3.1",
|
| 2603 |
-
"lodash": "^4.17.21",
|
| 2604 |
-
"memize": "^1.1.0",
|
| 2605 |
-
"sprintf-js": "^1.1.1",
|
| 2606 |
-
"tannin": "^1.2.0"
|
| 2607 |
-
},
|
| 2608 |
-
"dependencies": {
|
| 2609 |
-
"@babel/runtime": {
|
| 2610 |
-
"version": "7.16.3",
|
| 2611 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2612 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2613 |
-
"requires": {
|
| 2614 |
-
"regenerator-runtime": "^0.13.4"
|
| 2615 |
-
}
|
| 2616 |
-
}
|
| 2617 |
-
}
|
| 2618 |
-
},
|
| 2619 |
-
"@wordpress/icons": {
|
| 2620 |
-
"version": "6.1.1",
|
| 2621 |
-
"resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-6.1.1.tgz",
|
| 2622 |
-
"integrity": "sha512-UaFAOF8hqlEhjTm5kba0JwSDDeEgPSJToDJNADoz8jkxt22kEG5ACi9IaS0BRIy1X7kR6QaCE394v9+GkToE+g==",
|
| 2623 |
-
"requires": {
|
| 2624 |
-
"@babel/runtime": "^7.16.0",
|
| 2625 |
-
"@wordpress/element": "^4.0.4",
|
| 2626 |
-
"@wordpress/primitives": "^3.0.4"
|
| 2627 |
-
},
|
| 2628 |
-
"dependencies": {
|
| 2629 |
-
"@babel/runtime": {
|
| 2630 |
-
"version": "7.16.3",
|
| 2631 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2632 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2633 |
-
"requires": {
|
| 2634 |
-
"regenerator-runtime": "^0.13.4"
|
| 2635 |
-
}
|
| 2636 |
-
}
|
| 2637 |
-
}
|
| 2638 |
-
},
|
| 2639 |
-
"@wordpress/interface": {
|
| 2640 |
-
"version": "4.1.5",
|
| 2641 |
-
"resolved": "https://registry.npmjs.org/@wordpress/interface/-/interface-4.1.5.tgz",
|
| 2642 |
-
"integrity": "sha512-IH/v8sFVT6luFCtnAZ0U82SsXzGJ1qs1m+1UUlSyYpk+jVxy1RQSbFXvdy6NxlO4bOsZYm+ltZN82BuC32Co9A==",
|
| 2643 |
-
"requires": {
|
| 2644 |
-
"@babel/runtime": "^7.16.0",
|
| 2645 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2646 |
-
"@wordpress/components": "^19.0.3",
|
| 2647 |
-
"@wordpress/compose": "^5.0.6",
|
| 2648 |
-
"@wordpress/data": "^6.1.4",
|
| 2649 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2650 |
-
"@wordpress/element": "^4.0.4",
|
| 2651 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2652 |
-
"@wordpress/icons": "^6.1.1",
|
| 2653 |
-
"@wordpress/plugins": "^4.0.6",
|
| 2654 |
-
"@wordpress/viewport": "^4.0.6",
|
| 2655 |
-
"classnames": "^2.3.1",
|
| 2656 |
-
"lodash": "^4.17.21"
|
| 2657 |
-
},
|
| 2658 |
-
"dependencies": {
|
| 2659 |
-
"@babel/runtime": {
|
| 2660 |
-
"version": "7.16.3",
|
| 2661 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2662 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2663 |
-
"requires": {
|
| 2664 |
-
"regenerator-runtime": "^0.13.4"
|
| 2665 |
-
}
|
| 2666 |
-
}
|
| 2667 |
-
}
|
| 2668 |
-
},
|
| 2669 |
-
"@wordpress/is-shallow-equal": {
|
| 2670 |
-
"version": "4.2.1",
|
| 2671 |
-
"resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-4.2.1.tgz",
|
| 2672 |
-
"integrity": "sha512-XczqD3S6euQcSlLY+RFmmQIOwI/X/R/Q1uXS7vPVOnhz6MH63nrmGOtq4vTTzWv+qyRMPSkq0nmuX31U7DNdRA==",
|
| 2673 |
-
"requires": {
|
| 2674 |
-
"@babel/runtime": "^7.16.0"
|
| 2675 |
-
},
|
| 2676 |
-
"dependencies": {
|
| 2677 |
-
"@babel/runtime": {
|
| 2678 |
-
"version": "7.16.3",
|
| 2679 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2680 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2681 |
-
"requires": {
|
| 2682 |
-
"regenerator-runtime": "^0.13.4"
|
| 2683 |
-
}
|
| 2684 |
-
}
|
| 2685 |
-
}
|
| 2686 |
-
},
|
| 2687 |
-
"@wordpress/keyboard-shortcuts": {
|
| 2688 |
-
"version": "3.0.6",
|
| 2689 |
-
"resolved": "https://registry.npmjs.org/@wordpress/keyboard-shortcuts/-/keyboard-shortcuts-3.0.6.tgz",
|
| 2690 |
-
"integrity": "sha512-JOmWcmlSADYl+xihCO3a516WKRULmYXQ7a3/fmoGQDauwIOteFjtpNFMn7lstprNiU6e8WIUHiVL5nWwZiyvig==",
|
| 2691 |
-
"requires": {
|
| 2692 |
-
"@babel/runtime": "^7.16.0",
|
| 2693 |
-
"@wordpress/compose": "^5.0.6",
|
| 2694 |
-
"@wordpress/data": "^6.1.4",
|
| 2695 |
-
"@wordpress/element": "^4.0.4",
|
| 2696 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2697 |
-
"lodash": "^4.17.21",
|
| 2698 |
-
"rememo": "^3.0.0"
|
| 2699 |
-
},
|
| 2700 |
-
"dependencies": {
|
| 2701 |
-
"@babel/runtime": {
|
| 2702 |
-
"version": "7.16.3",
|
| 2703 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2704 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2705 |
-
"requires": {
|
| 2706 |
-
"regenerator-runtime": "^0.13.4"
|
| 2707 |
-
}
|
| 2708 |
-
}
|
| 2709 |
-
}
|
| 2710 |
-
},
|
| 2711 |
-
"@wordpress/keycodes": {
|
| 2712 |
-
"version": "3.2.4",
|
| 2713 |
-
"resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.2.4.tgz",
|
| 2714 |
-
"integrity": "sha512-o6/WFO8Amoyk3r3JtCJ1ctt0bLfvCqyfV7SdA39QDtAe8ufIkDNRwyQOjzaVMbHznNCuBL1FhClPzGy+RH0o9w==",
|
| 2715 |
-
"requires": {
|
| 2716 |
-
"@babel/runtime": "^7.16.0",
|
| 2717 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2718 |
-
"lodash": "^4.17.21"
|
| 2719 |
-
},
|
| 2720 |
-
"dependencies": {
|
| 2721 |
-
"@babel/runtime": {
|
| 2722 |
-
"version": "7.16.3",
|
| 2723 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2724 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2725 |
-
"requires": {
|
| 2726 |
-
"regenerator-runtime": "^0.13.4"
|
| 2727 |
-
}
|
| 2728 |
-
}
|
| 2729 |
-
}
|
| 2730 |
-
},
|
| 2731 |
-
"@wordpress/media-utils": {
|
| 2732 |
-
"version": "3.0.5",
|
| 2733 |
-
"resolved": "https://registry.npmjs.org/@wordpress/media-utils/-/media-utils-3.0.5.tgz",
|
| 2734 |
-
"integrity": "sha512-BshnzzBECsH8JuxU/qgJkRCBoPNPQ/z9PeWzTFMY3hPYtbd23hMtZpPqc9EGkjU+Ovs1AF8qEjNr9wPOCDq3nA==",
|
| 2735 |
-
"requires": {
|
| 2736 |
-
"@babel/runtime": "^7.16.0",
|
| 2737 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2738 |
-
"@wordpress/blob": "^3.2.2",
|
| 2739 |
-
"@wordpress/element": "^4.0.4",
|
| 2740 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2741 |
-
"lodash": "^4.17.21"
|
| 2742 |
-
},
|
| 2743 |
-
"dependencies": {
|
| 2744 |
-
"@babel/runtime": {
|
| 2745 |
-
"version": "7.16.3",
|
| 2746 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2747 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2748 |
-
"requires": {
|
| 2749 |
-
"regenerator-runtime": "^0.13.4"
|
| 2750 |
-
}
|
| 2751 |
-
}
|
| 2752 |
-
}
|
| 2753 |
-
},
|
| 2754 |
-
"@wordpress/notices": {
|
| 2755 |
-
"version": "3.2.7",
|
| 2756 |
-
"resolved": "https://registry.npmjs.org/@wordpress/notices/-/notices-3.2.7.tgz",
|
| 2757 |
-
"integrity": "sha512-1VmnJznby96jjUbcTaT1WOiR4aCh8rrCHy3nTyAjHcJmJNvDGLLj4TgChlMk5Sw8j9K4x9kxmSiEA/IlrSPGkQ==",
|
| 2758 |
-
"requires": {
|
| 2759 |
-
"@babel/runtime": "^7.16.0",
|
| 2760 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2761 |
-
"@wordpress/data": "^6.1.4",
|
| 2762 |
-
"lodash": "^4.17.21"
|
| 2763 |
-
},
|
| 2764 |
-
"dependencies": {
|
| 2765 |
-
"@babel/runtime": {
|
| 2766 |
-
"version": "7.16.3",
|
| 2767 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2768 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2769 |
-
"requires": {
|
| 2770 |
-
"regenerator-runtime": "^0.13.4"
|
| 2771 |
-
}
|
| 2772 |
-
}
|
| 2773 |
-
}
|
| 2774 |
-
},
|
| 2775 |
-
"@wordpress/plugins": {
|
| 2776 |
-
"version": "4.0.6",
|
| 2777 |
-
"resolved": "https://registry.npmjs.org/@wordpress/plugins/-/plugins-4.0.6.tgz",
|
| 2778 |
-
"integrity": "sha512-aM1fw04WD4MPpwPtJzlkxQ3Re/w1scja9ybGQ0TkKT8lQxBUHRq/9g/IcKOVEEgWSTIn+ThT+FmWkX1Dk+iflg==",
|
| 2779 |
-
"requires": {
|
| 2780 |
-
"@babel/runtime": "^7.16.0",
|
| 2781 |
-
"@wordpress/compose": "^5.0.6",
|
| 2782 |
-
"@wordpress/element": "^4.0.4",
|
| 2783 |
-
"@wordpress/hooks": "^3.2.2",
|
| 2784 |
-
"@wordpress/icons": "^6.1.1",
|
| 2785 |
-
"lodash": "^4.17.21",
|
| 2786 |
-
"memize": "^1.1.0"
|
| 2787 |
-
},
|
| 2788 |
-
"dependencies": {
|
| 2789 |
-
"@babel/runtime": {
|
| 2790 |
-
"version": "7.16.3",
|
| 2791 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2792 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2793 |
-
"requires": {
|
| 2794 |
-
"regenerator-runtime": "^0.13.4"
|
| 2795 |
-
}
|
| 2796 |
-
}
|
| 2797 |
-
}
|
| 2798 |
-
},
|
| 2799 |
-
"@wordpress/primitives": {
|
| 2800 |
-
"version": "3.0.4",
|
| 2801 |
-
"resolved": "https://registry.npmjs.org/@wordpress/primitives/-/primitives-3.0.4.tgz",
|
| 2802 |
-
"integrity": "sha512-yu3BEpr09vpPM0QOYGm5Kmwo/tfo7u7Ez4hN5+AL2dT53VNr3QOmDo0Ym7sewI7+GgU18H4VkAi1QOydrc4vDw==",
|
| 2803 |
-
"requires": {
|
| 2804 |
-
"@babel/runtime": "^7.16.0",
|
| 2805 |
-
"@wordpress/element": "^4.0.4",
|
| 2806 |
-
"classnames": "^2.3.1"
|
| 2807 |
-
},
|
| 2808 |
-
"dependencies": {
|
| 2809 |
-
"@babel/runtime": {
|
| 2810 |
-
"version": "7.16.3",
|
| 2811 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2812 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2813 |
-
"requires": {
|
| 2814 |
-
"regenerator-runtime": "^0.13.4"
|
| 2815 |
-
}
|
| 2816 |
-
}
|
| 2817 |
-
}
|
| 2818 |
-
},
|
| 2819 |
-
"@wordpress/priority-queue": {
|
| 2820 |
-
"version": "2.2.3",
|
| 2821 |
-
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-2.2.3.tgz",
|
| 2822 |
-
"integrity": "sha512-VI1VhkpgNs5b2LkpmlOIfJz7mVHOxMvh+MtG+NsuKc+0t6iOftfq8xxZ+8PbVLspZ8gd7p0rS+oXmSSqr9nc9g==",
|
| 2823 |
-
"requires": {
|
| 2824 |
-
"@babel/runtime": "^7.16.0"
|
| 2825 |
-
},
|
| 2826 |
-
"dependencies": {
|
| 2827 |
-
"@babel/runtime": {
|
| 2828 |
-
"version": "7.16.3",
|
| 2829 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2830 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2831 |
-
"requires": {
|
| 2832 |
-
"regenerator-runtime": "^0.13.4"
|
| 2833 |
-
}
|
| 2834 |
-
}
|
| 2835 |
-
}
|
| 2836 |
-
},
|
| 2837 |
-
"@wordpress/redux-routine": {
|
| 2838 |
-
"version": "4.2.2",
|
| 2839 |
-
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-4.2.2.tgz",
|
| 2840 |
-
"integrity": "sha512-zfL8qsSvwI2lAvgPSVfOFCWDg0f0zusba0+uEIVZjPVstmjJtxO902mRZfWsg5+ooFSYq0T7rieet4nasYJX7g==",
|
| 2841 |
-
"requires": {
|
| 2842 |
-
"@babel/runtime": "^7.16.0",
|
| 2843 |
-
"is-promise": "^4.0.0",
|
| 2844 |
-
"lodash": "^4.17.21",
|
| 2845 |
-
"redux": "^4.1.0",
|
| 2846 |
-
"rungen": "^0.3.2"
|
| 2847 |
-
},
|
| 2848 |
-
"dependencies": {
|
| 2849 |
-
"@babel/runtime": {
|
| 2850 |
-
"version": "7.16.3",
|
| 2851 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2852 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2853 |
-
"requires": {
|
| 2854 |
-
"regenerator-runtime": "^0.13.4"
|
| 2855 |
-
}
|
| 2856 |
-
}
|
| 2857 |
-
}
|
| 2858 |
-
},
|
| 2859 |
-
"@wordpress/reusable-blocks": {
|
| 2860 |
-
"version": "3.0.9",
|
| 2861 |
-
"resolved": "https://registry.npmjs.org/@wordpress/reusable-blocks/-/reusable-blocks-3.0.9.tgz",
|
| 2862 |
-
"integrity": "sha512-ARd5mZwtcomk0T5uSI8PXT1/tvrgFAYHgqAUqLLspKU0iBAy8s2n6kkosBxhD8laZiiz5gylw2B3uKM3TJRBGQ==",
|
| 2863 |
-
"requires": {
|
| 2864 |
-
"@wordpress/block-editor": "^8.0.3",
|
| 2865 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2866 |
-
"@wordpress/components": "^19.0.3",
|
| 2867 |
-
"@wordpress/compose": "^5.0.6",
|
| 2868 |
-
"@wordpress/core-data": "^4.0.7",
|
| 2869 |
-
"@wordpress/data": "^6.1.4",
|
| 2870 |
-
"@wordpress/element": "^4.0.4",
|
| 2871 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2872 |
-
"@wordpress/icons": "^6.1.1",
|
| 2873 |
-
"@wordpress/notices": "^3.2.7",
|
| 2874 |
-
"@wordpress/url": "^3.3.1",
|
| 2875 |
-
"lodash": "^4.17.21"
|
| 2876 |
-
}
|
| 2877 |
-
},
|
| 2878 |
-
"@wordpress/rich-text": {
|
| 2879 |
-
"version": "5.0.6",
|
| 2880 |
-
"resolved": "https://registry.npmjs.org/@wordpress/rich-text/-/rich-text-5.0.6.tgz",
|
| 2881 |
-
"integrity": "sha512-9Myj6UQ3fYZERaUoVXRjq2rq7G77Tfe7XrQAntfW7El7/NWDkB/TddgsuOkFd8NG8E7/jEih7d7G9erm4y6adg==",
|
| 2882 |
-
"requires": {
|
| 2883 |
-
"@babel/runtime": "^7.16.0",
|
| 2884 |
-
"@wordpress/a11y": "^3.2.4",
|
| 2885 |
-
"@wordpress/compose": "^5.0.6",
|
| 2886 |
-
"@wordpress/data": "^6.1.4",
|
| 2887 |
-
"@wordpress/dom": "^3.2.7",
|
| 2888 |
-
"@wordpress/element": "^4.0.4",
|
| 2889 |
-
"@wordpress/escape-html": "^2.2.3",
|
| 2890 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2891 |
-
"@wordpress/is-shallow-equal": "^4.2.1",
|
| 2892 |
-
"@wordpress/keycodes": "^3.2.4",
|
| 2893 |
-
"classnames": "^2.3.1",
|
| 2894 |
-
"lodash": "^4.17.21",
|
| 2895 |
-
"memize": "^1.1.0",
|
| 2896 |
-
"rememo": "^3.0.0"
|
| 2897 |
-
},
|
| 2898 |
-
"dependencies": {
|
| 2899 |
-
"@babel/runtime": {
|
| 2900 |
-
"version": "7.16.3",
|
| 2901 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2902 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2903 |
-
"requires": {
|
| 2904 |
-
"regenerator-runtime": "^0.13.4"
|
| 2905 |
-
}
|
| 2906 |
-
}
|
| 2907 |
-
}
|
| 2908 |
-
},
|
| 2909 |
-
"@wordpress/server-side-render": {
|
| 2910 |
-
"version": "3.0.7",
|
| 2911 |
-
"resolved": "https://registry.npmjs.org/@wordpress/server-side-render/-/server-side-render-3.0.7.tgz",
|
| 2912 |
-
"integrity": "sha512-rEvcKVrhgXKVwzt6A1goneIpkhcIrBqeYtRYMDkv+6SSWMMzkXRCqEGnPwPJ+/P1KEc1mLWdvJiIG70CrUIlVA==",
|
| 2913 |
-
"requires": {
|
| 2914 |
-
"@babel/runtime": "^7.16.0",
|
| 2915 |
-
"@wordpress/api-fetch": "^5.2.6",
|
| 2916 |
-
"@wordpress/blocks": "^11.1.4",
|
| 2917 |
-
"@wordpress/components": "^19.0.3",
|
| 2918 |
-
"@wordpress/compose": "^5.0.6",
|
| 2919 |
-
"@wordpress/data": "^6.1.4",
|
| 2920 |
-
"@wordpress/deprecated": "^3.2.3",
|
| 2921 |
-
"@wordpress/element": "^4.0.4",
|
| 2922 |
-
"@wordpress/i18n": "^4.2.4",
|
| 2923 |
-
"@wordpress/url": "^3.3.1",
|
| 2924 |
-
"lodash": "^4.17.21"
|
| 2925 |
-
},
|
| 2926 |
-
"dependencies": {
|
| 2927 |
-
"@babel/runtime": {
|
| 2928 |
-
"version": "7.16.3",
|
| 2929 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2930 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2931 |
-
"requires": {
|
| 2932 |
-
"regenerator-runtime": "^0.13.4"
|
| 2933 |
-
}
|
| 2934 |
-
}
|
| 2935 |
-
}
|
| 2936 |
-
},
|
| 2937 |
-
"@wordpress/shortcode": {
|
| 2938 |
-
"version": "3.2.3",
|
| 2939 |
-
"resolved": "https://registry.npmjs.org/@wordpress/shortcode/-/shortcode-3.2.3.tgz",
|
| 2940 |
-
"integrity": "sha512-zXIg2AbwJhJNCp55roC+wuyZQnMC/GLdgh95pAa5a7Hd+ThXf0hbBg+DP9lo1x+cxAZAEGZ/Bns/+SCUr1boTA==",
|
| 2941 |
-
"requires": {
|
| 2942 |
-
"@babel/runtime": "^7.16.0",
|
| 2943 |
-
"lodash": "^4.17.21",
|
| 2944 |
-
"memize": "^1.1.0"
|
| 2945 |
-
},
|
| 2946 |
-
"dependencies": {
|
| 2947 |
-
"@babel/runtime": {
|
| 2948 |
-
"version": "7.16.3",
|
| 2949 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2950 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2951 |
-
"requires": {
|
| 2952 |
-
"regenerator-runtime": "^0.13.4"
|
| 2953 |
-
}
|
| 2954 |
-
}
|
| 2955 |
-
}
|
| 2956 |
-
},
|
| 2957 |
-
"@wordpress/token-list": {
|
| 2958 |
-
"version": "2.2.2",
|
| 2959 |
-
"resolved": "https://registry.npmjs.org/@wordpress/token-list/-/token-list-2.2.2.tgz",
|
| 2960 |
-
"integrity": "sha512-JElgvK1NsQVfSnR51qWDV7cEB/2U7saV+MKDxdmP7mhcwg538AVyKTkOdmzYrx/9fqOEf0bkWOt3WX9xLD35kQ==",
|
| 2961 |
-
"requires": {
|
| 2962 |
-
"@babel/runtime": "^7.16.0",
|
| 2963 |
-
"lodash": "^4.17.21"
|
| 2964 |
-
},
|
| 2965 |
-
"dependencies": {
|
| 2966 |
-
"@babel/runtime": {
|
| 2967 |
-
"version": "7.16.3",
|
| 2968 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2969 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2970 |
-
"requires": {
|
| 2971 |
-
"regenerator-runtime": "^0.13.4"
|
| 2972 |
-
}
|
| 2973 |
-
}
|
| 2974 |
-
}
|
| 2975 |
-
},
|
| 2976 |
-
"@wordpress/url": {
|
| 2977 |
-
"version": "3.3.1",
|
| 2978 |
-
"resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.3.1.tgz",
|
| 2979 |
-
"integrity": "sha512-lEuvkNjPoVuzYy0zn6n9gfMdNlHJW36EsPI2yDzMICjIAV5lRv1/uOg2Ls3lbDaRR2vm1FAiMpB2RAMzfR8Nfg==",
|
| 2980 |
-
"requires": {
|
| 2981 |
-
"@babel/runtime": "^7.16.0",
|
| 2982 |
-
"lodash": "^4.17.21"
|
| 2983 |
-
},
|
| 2984 |
-
"dependencies": {
|
| 2985 |
-
"@babel/runtime": {
|
| 2986 |
-
"version": "7.16.3",
|
| 2987 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 2988 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 2989 |
-
"requires": {
|
| 2990 |
-
"regenerator-runtime": "^0.13.4"
|
| 2991 |
-
}
|
| 2992 |
-
}
|
| 2993 |
-
}
|
| 2994 |
-
},
|
| 2995 |
-
"@wordpress/viewport": {
|
| 2996 |
-
"version": "4.0.6",
|
| 2997 |
-
"resolved": "https://registry.npmjs.org/@wordpress/viewport/-/viewport-4.0.6.tgz",
|
| 2998 |
-
"integrity": "sha512-adqJ6gN+GYJiJqXuvMRtt8o0jIY6Yz0kiovtuc5gjzFGTxSm25zcP5FX/py7i8yKgVazATQOEkqVAIEwVG43Nw==",
|
| 2999 |
-
"requires": {
|
| 3000 |
-
"@babel/runtime": "^7.16.0",
|
| 3001 |
-
"@wordpress/compose": "^5.0.6",
|
| 3002 |
-
"@wordpress/data": "^6.1.4",
|
| 3003 |
-
"lodash": "^4.17.21"
|
| 3004 |
-
},
|
| 3005 |
-
"dependencies": {
|
| 3006 |
-
"@babel/runtime": {
|
| 3007 |
-
"version": "7.16.3",
|
| 3008 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 3009 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 3010 |
-
"requires": {
|
| 3011 |
-
"regenerator-runtime": "^0.13.4"
|
| 3012 |
-
}
|
| 3013 |
-
}
|
| 3014 |
-
}
|
| 3015 |
-
},
|
| 3016 |
-
"@wordpress/warning": {
|
| 3017 |
-
"version": "2.2.2",
|
| 3018 |
-
"resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.2.2.tgz",
|
| 3019 |
-
"integrity": "sha512-iG1Hq56RK3N6AJqAD1sRLWRIJatfYn+NrPyrfqRNZNYXHM8Vj/s7ABNMbIU0Y99vXkBE83rvCdbMkugNoI2jXA=="
|
| 3020 |
-
},
|
| 3021 |
-
"@wordpress/wordcount": {
|
| 3022 |
-
"version": "3.2.3",
|
| 3023 |
-
"resolved": "https://registry.npmjs.org/@wordpress/wordcount/-/wordcount-3.2.3.tgz",
|
| 3024 |
-
"integrity": "sha512-iguvGA4zU1tB0avpzIzVdVrIeH0CbeiOlhbYgtkQ5J2UqdRs6lo7pZFlp/3HAvmtBo8r2iGlbc+QZgKzR6gdJw==",
|
| 3025 |
-
"requires": {
|
| 3026 |
-
"@babel/runtime": "^7.16.0",
|
| 3027 |
-
"lodash": "^4.17.21"
|
| 3028 |
-
},
|
| 3029 |
-
"dependencies": {
|
| 3030 |
-
"@babel/runtime": {
|
| 3031 |
-
"version": "7.16.3",
|
| 3032 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 3033 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 3034 |
-
"requires": {
|
| 3035 |
-
"regenerator-runtime": "^0.13.4"
|
| 3036 |
-
}
|
| 3037 |
-
}
|
| 3038 |
-
}
|
| 3039 |
-
},
|
| 3040 |
-
"@xtuc/ieee754": {
|
| 3041 |
-
"version": "1.2.0",
|
| 3042 |
-
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
|
| 3043 |
-
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
|
| 3044 |
-
"dev": true
|
| 3045 |
-
},
|
| 3046 |
-
"@xtuc/long": {
|
| 3047 |
-
"version": "4.2.2",
|
| 3048 |
-
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
|
| 3049 |
-
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
| 3050 |
-
"dev": true
|
| 3051 |
-
},
|
| 3052 |
-
"accepts": {
|
| 3053 |
-
"version": "1.3.7",
|
| 3054 |
-
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
|
| 3055 |
-
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
|
| 3056 |
-
"dev": true,
|
| 3057 |
-
"requires": {
|
| 3058 |
-
"mime-types": "~2.1.24",
|
| 3059 |
-
"negotiator": "0.6.2"
|
| 3060 |
-
}
|
| 3061 |
-
},
|
| 3062 |
-
"acorn": {
|
| 3063 |
-
"version": "7.4.1",
|
| 3064 |
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
| 3065 |
-
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
|
| 3066 |
-
},
|
| 3067 |
-
"acorn-import-assertions": {
|
| 3068 |
-
"version": "1.8.0",
|
| 3069 |
-
"resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz",
|
| 3070 |
-
"integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==",
|
| 3071 |
-
"dev": true
|
| 3072 |
-
},
|
| 3073 |
-
"acorn-jsx": {
|
| 3074 |
-
"version": "5.3.2",
|
| 3075 |
-
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
| 3076 |
-
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
| 3077 |
-
"dev": true
|
| 3078 |
-
},
|
| 3079 |
-
"acorn-node": {
|
| 3080 |
-
"version": "1.8.2",
|
| 3081 |
-
"resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
|
| 3082 |
-
"integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
|
| 3083 |
-
"requires": {
|
| 3084 |
-
"acorn": "^7.0.0",
|
| 3085 |
-
"acorn-walk": "^7.0.0",
|
| 3086 |
-
"xtend": "^4.0.2"
|
| 3087 |
-
}
|
| 3088 |
-
},
|
| 3089 |
-
"acorn-walk": {
|
| 3090 |
-
"version": "7.2.0",
|
| 3091 |
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
|
| 3092 |
-
"integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
|
| 3093 |
-
},
|
| 3094 |
-
"adjust-sourcemap-loader": {
|
| 3095 |
-
"version": "4.0.0",
|
| 3096 |
-
"resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz",
|
| 3097 |
-
"integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==",
|
| 3098 |
-
"dev": true,
|
| 3099 |
-
"requires": {
|
| 3100 |
-
"loader-utils": "^2.0.0",
|
| 3101 |
-
"regex-parser": "^2.2.11"
|
| 3102 |
-
},
|
| 3103 |
-
"dependencies": {
|
| 3104 |
-
"loader-utils": {
|
| 3105 |
-
"version": "2.0.0",
|
| 3106 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
|
| 3107 |
-
"integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
|
| 3108 |
-
"dev": true,
|
| 3109 |
-
"requires": {
|
| 3110 |
-
"big.js": "^5.2.2",
|
| 3111 |
-
"emojis-list": "^3.0.0",
|
| 3112 |
-
"json5": "^2.1.2"
|
| 3113 |
-
}
|
| 3114 |
-
}
|
| 3115 |
-
}
|
| 3116 |
-
},
|
| 3117 |
-
"after": {
|
| 3118 |
-
"version": "0.8.2",
|
| 3119 |
-
"resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
|
| 3120 |
-
"integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
|
| 3121 |
-
"dev": true
|
| 3122 |
-
},
|
| 3123 |
-
"aggregate-error": {
|
| 3124 |
-
"version": "3.1.0",
|
| 3125 |
-
"resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
|
| 3126 |
-
"integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
|
| 3127 |
-
"dev": true,
|
| 3128 |
-
"requires": {
|
| 3129 |
-
"clean-stack": "^2.0.0",
|
| 3130 |
-
"indent-string": "^4.0.0"
|
| 3131 |
-
}
|
| 3132 |
-
},
|
| 3133 |
-
"airbnb-prop-types": {
|
| 3134 |
-
"version": "2.16.0",
|
| 3135 |
-
"resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz",
|
| 3136 |
-
"integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==",
|
| 3137 |
-
"requires": {
|
| 3138 |
-
"array.prototype.find": "^2.1.1",
|
| 3139 |
-
"function.prototype.name": "^1.1.2",
|
| 3140 |
-
"is-regex": "^1.1.0",
|
| 3141 |
-
"object-is": "^1.1.2",
|
| 3142 |
-
"object.assign": "^4.1.0",
|
| 3143 |
-
"object.entries": "^1.1.2",
|
| 3144 |
-
"prop-types": "^15.7.2",
|
| 3145 |
-
"prop-types-exact": "^1.2.0",
|
| 3146 |
-
"react-is": "^16.13.1"
|
| 3147 |
-
}
|
| 3148 |
-
},
|
| 3149 |
-
"ajv": {
|
| 3150 |
-
"version": "6.12.6",
|
| 3151 |
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
| 3152 |
-
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
| 3153 |
-
"dev": true,
|
| 3154 |
-
"requires": {
|
| 3155 |
-
"fast-deep-equal": "^3.1.1",
|
| 3156 |
-
"fast-json-stable-stringify": "^2.0.0",
|
| 3157 |
-
"json-schema-traverse": "^0.4.1",
|
| 3158 |
-
"uri-js": "^4.2.2"
|
| 3159 |
-
}
|
| 3160 |
-
},
|
| 3161 |
-
"ajv-keywords": {
|
| 3162 |
-
"version": "3.5.2",
|
| 3163 |
-
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
| 3164 |
-
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
|
| 3165 |
-
"dev": true
|
| 3166 |
-
},
|
| 3167 |
-
"alphanum-sort": {
|
| 3168 |
-
"version": "1.0.2",
|
| 3169 |
-
"resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
|
| 3170 |
-
"integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
|
| 3171 |
-
"dev": true
|
| 3172 |
-
},
|
| 3173 |
-
"ansi-colors": {
|
| 3174 |
-
"version": "4.1.1",
|
| 3175 |
-
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
|
| 3176 |
-
"integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
|
| 3177 |
-
"dev": true
|
| 3178 |
-
},
|
| 3179 |
-
"ansi-escapes": {
|
| 3180 |
-
"version": "4.3.2",
|
| 3181 |
-
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
| 3182 |
-
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
|
| 3183 |
-
"dev": true,
|
| 3184 |
-
"requires": {
|
| 3185 |
-
"type-fest": "^0.21.3"
|
| 3186 |
-
},
|
| 3187 |
-
"dependencies": {
|
| 3188 |
-
"type-fest": {
|
| 3189 |
-
"version": "0.21.3",
|
| 3190 |
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
|
| 3191 |
-
"integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
|
| 3192 |
-
"dev": true
|
| 3193 |
-
}
|
| 3194 |
-
}
|
| 3195 |
-
},
|
| 3196 |
-
"ansi-html-community": {
|
| 3197 |
-
"version": "0.0.8",
|
| 3198 |
-
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
|
| 3199 |
-
"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
|
| 3200 |
-
"dev": true
|
| 3201 |
-
},
|
| 3202 |
-
"ansi-regex": {
|
| 3203 |
-
"version": "4.1.0",
|
| 3204 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
| 3205 |
-
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
|
| 3206 |
-
},
|
| 3207 |
-
"ansi-styles": {
|
| 3208 |
-
"version": "3.2.1",
|
| 3209 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
| 3210 |
-
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
| 3211 |
-
"requires": {
|
| 3212 |
-
"color-convert": "^1.9.0"
|
| 3213 |
-
}
|
| 3214 |
-
},
|
| 3215 |
-
"any-promise": {
|
| 3216 |
-
"version": "1.3.0",
|
| 3217 |
-
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
|
| 3218 |
-
"integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=",
|
| 3219 |
-
"dev": true
|
| 3220 |
-
},
|
| 3221 |
-
"anymatch": {
|
| 3222 |
-
"version": "3.1.2",
|
| 3223 |
-
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
|
| 3224 |
-
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
|
| 3225 |
-
"requires": {
|
| 3226 |
-
"normalize-path": "^3.0.0",
|
| 3227 |
-
"picomatch": "^2.0.4"
|
| 3228 |
-
}
|
| 3229 |
-
},
|
| 3230 |
-
"arg": {
|
| 3231 |
-
"version": "5.0.1",
|
| 3232 |
-
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
|
| 3233 |
-
"integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA=="
|
| 3234 |
-
},
|
| 3235 |
-
"argparse": {
|
| 3236 |
-
"version": "2.0.1",
|
| 3237 |
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
| 3238 |
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
| 3239 |
-
"dev": true
|
| 3240 |
-
},
|
| 3241 |
-
"array-flatten": {
|
| 3242 |
-
"version": "2.1.2",
|
| 3243 |
-
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
|
| 3244 |
-
"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==",
|
| 3245 |
-
"dev": true
|
| 3246 |
-
},
|
| 3247 |
-
"array-includes": {
|
| 3248 |
-
"version": "3.1.4",
|
| 3249 |
-
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz",
|
| 3250 |
-
"integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==",
|
| 3251 |
-
"dev": true,
|
| 3252 |
-
"requires": {
|
| 3253 |
-
"call-bind": "^1.0.2",
|
| 3254 |
-
"define-properties": "^1.1.3",
|
| 3255 |
-
"es-abstract": "^1.19.1",
|
| 3256 |
-
"get-intrinsic": "^1.1.1",
|
| 3257 |
-
"is-string": "^1.0.7"
|
| 3258 |
-
}
|
| 3259 |
-
},
|
| 3260 |
-
"array-union": {
|
| 3261 |
-
"version": "2.1.0",
|
| 3262 |
-
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
| 3263 |
-
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
|
| 3264 |
-
"dev": true
|
| 3265 |
-
},
|
| 3266 |
-
"array.prototype.find": {
|
| 3267 |
-
"version": "2.1.2",
|
| 3268 |
-
"resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.2.tgz",
|
| 3269 |
-
"integrity": "sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q==",
|
| 3270 |
-
"requires": {
|
| 3271 |
-
"call-bind": "^1.0.2",
|
| 3272 |
-
"define-properties": "^1.1.3",
|
| 3273 |
-
"es-abstract": "^1.19.0"
|
| 3274 |
-
}
|
| 3275 |
-
},
|
| 3276 |
-
"array.prototype.flat": {
|
| 3277 |
-
"version": "1.2.5",
|
| 3278 |
-
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz",
|
| 3279 |
-
"integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==",
|
| 3280 |
-
"requires": {
|
| 3281 |
-
"call-bind": "^1.0.2",
|
| 3282 |
-
"define-properties": "^1.1.3",
|
| 3283 |
-
"es-abstract": "^1.19.0"
|
| 3284 |
-
}
|
| 3285 |
-
},
|
| 3286 |
-
"array.prototype.flatmap": {
|
| 3287 |
-
"version": "1.2.5",
|
| 3288 |
-
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz",
|
| 3289 |
-
"integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==",
|
| 3290 |
-
"dev": true,
|
| 3291 |
-
"requires": {
|
| 3292 |
-
"call-bind": "^1.0.0",
|
| 3293 |
-
"define-properties": "^1.1.3",
|
| 3294 |
-
"es-abstract": "^1.19.0"
|
| 3295 |
-
}
|
| 3296 |
-
},
|
| 3297 |
-
"arraybuffer.slice": {
|
| 3298 |
-
"version": "0.0.7",
|
| 3299 |
-
"resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz",
|
| 3300 |
-
"integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==",
|
| 3301 |
-
"dev": true
|
| 3302 |
-
},
|
| 3303 |
-
"asn1.js": {
|
| 3304 |
-
"version": "5.4.1",
|
| 3305 |
-
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
|
| 3306 |
-
"integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
|
| 3307 |
-
"dev": true,
|
| 3308 |
-
"requires": {
|
| 3309 |
-
"bn.js": "^4.0.0",
|
| 3310 |
-
"inherits": "^2.0.1",
|
| 3311 |
-
"minimalistic-assert": "^1.0.0",
|
| 3312 |
-
"safer-buffer": "^2.1.0"
|
| 3313 |
-
},
|
| 3314 |
-
"dependencies": {
|
| 3315 |
-
"bn.js": {
|
| 3316 |
-
"version": "4.12.0",
|
| 3317 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 3318 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 3319 |
-
"dev": true
|
| 3320 |
-
}
|
| 3321 |
-
}
|
| 3322 |
-
},
|
| 3323 |
-
"assert": {
|
| 3324 |
-
"version": "1.5.0",
|
| 3325 |
-
"resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
|
| 3326 |
-
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
|
| 3327 |
-
"dev": true,
|
| 3328 |
-
"requires": {
|
| 3329 |
-
"object-assign": "^4.1.1",
|
| 3330 |
-
"util": "0.10.3"
|
| 3331 |
-
},
|
| 3332 |
-
"dependencies": {
|
| 3333 |
-
"inherits": {
|
| 3334 |
-
"version": "2.0.1",
|
| 3335 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
|
| 3336 |
-
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
|
| 3337 |
-
"dev": true
|
| 3338 |
-
},
|
| 3339 |
-
"util": {
|
| 3340 |
-
"version": "0.10.3",
|
| 3341 |
-
"resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
|
| 3342 |
-
"integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
|
| 3343 |
-
"dev": true,
|
| 3344 |
-
"requires": {
|
| 3345 |
-
"inherits": "2.0.1"
|
| 3346 |
-
}
|
| 3347 |
-
}
|
| 3348 |
-
}
|
| 3349 |
-
},
|
| 3350 |
-
"astral-regex": {
|
| 3351 |
-
"version": "2.0.0",
|
| 3352 |
-
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
|
| 3353 |
-
"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
|
| 3354 |
-
"dev": true
|
| 3355 |
-
},
|
| 3356 |
-
"async": {
|
| 3357 |
-
"version": "2.6.3",
|
| 3358 |
-
"resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
|
| 3359 |
-
"integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
|
| 3360 |
-
"dev": true,
|
| 3361 |
-
"requires": {
|
| 3362 |
-
"lodash": "^4.17.14"
|
| 3363 |
-
}
|
| 3364 |
-
},
|
| 3365 |
-
"async-each-series": {
|
| 3366 |
-
"version": "0.1.1",
|
| 3367 |
-
"resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
|
| 3368 |
-
"integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=",
|
| 3369 |
-
"dev": true
|
| 3370 |
-
},
|
| 3371 |
-
"at-least-node": {
|
| 3372 |
-
"version": "1.0.0",
|
| 3373 |
-
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
|
| 3374 |
-
"integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
|
| 3375 |
-
"dev": true
|
| 3376 |
-
},
|
| 3377 |
-
"autoprefixer": {
|
| 3378 |
-
"version": "10.4.0",
|
| 3379 |
-
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz",
|
| 3380 |
-
"integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==",
|
| 3381 |
-
"dev": true,
|
| 3382 |
-
"requires": {
|
| 3383 |
-
"browserslist": "^4.17.5",
|
| 3384 |
-
"caniuse-lite": "^1.0.30001272",
|
| 3385 |
-
"fraction.js": "^4.1.1",
|
| 3386 |
-
"normalize-range": "^0.1.2",
|
| 3387 |
-
"picocolors": "^1.0.0",
|
| 3388 |
-
"postcss-value-parser": "^4.1.0"
|
| 3389 |
-
}
|
| 3390 |
-
},
|
| 3391 |
-
"autosize": {
|
| 3392 |
-
"version": "4.0.4",
|
| 3393 |
-
"resolved": "https://registry.npmjs.org/autosize/-/autosize-4.0.4.tgz",
|
| 3394 |
-
"integrity": "sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ=="
|
| 3395 |
-
},
|
| 3396 |
-
"axios": {
|
| 3397 |
-
"version": "0.24.0",
|
| 3398 |
-
"resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
|
| 3399 |
-
"integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
|
| 3400 |
-
"requires": {
|
| 3401 |
-
"follow-redirects": "^1.14.4"
|
| 3402 |
-
}
|
| 3403 |
-
},
|
| 3404 |
-
"babel-loader": {
|
| 3405 |
-
"version": "8.2.3",
|
| 3406 |
-
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz",
|
| 3407 |
-
"integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==",
|
| 3408 |
-
"dev": true,
|
| 3409 |
-
"requires": {
|
| 3410 |
-
"find-cache-dir": "^3.3.1",
|
| 3411 |
-
"loader-utils": "^1.4.0",
|
| 3412 |
-
"make-dir": "^3.1.0",
|
| 3413 |
-
"schema-utils": "^2.6.5"
|
| 3414 |
-
}
|
| 3415 |
-
},
|
| 3416 |
-
"babel-plugin-dynamic-import-node": {
|
| 3417 |
-
"version": "2.3.3",
|
| 3418 |
-
"resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
|
| 3419 |
-
"integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
|
| 3420 |
-
"dev": true,
|
| 3421 |
-
"requires": {
|
| 3422 |
-
"object.assign": "^4.1.0"
|
| 3423 |
-
}
|
| 3424 |
-
},
|
| 3425 |
-
"babel-plugin-macros": {
|
| 3426 |
-
"version": "2.8.0",
|
| 3427 |
-
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz",
|
| 3428 |
-
"integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==",
|
| 3429 |
-
"requires": {
|
| 3430 |
-
"@babel/runtime": "^7.7.2",
|
| 3431 |
-
"cosmiconfig": "^6.0.0",
|
| 3432 |
-
"resolve": "^1.12.0"
|
| 3433 |
-
}
|
| 3434 |
-
},
|
| 3435 |
-
"babel-plugin-polyfill-corejs2": {
|
| 3436 |
-
"version": "0.2.3",
|
| 3437 |
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.3.tgz",
|
| 3438 |
-
"integrity": "sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==",
|
| 3439 |
-
"dev": true,
|
| 3440 |
-
"requires": {
|
| 3441 |
-
"@babel/compat-data": "^7.13.11",
|
| 3442 |
-
"@babel/helper-define-polyfill-provider": "^0.2.4",
|
| 3443 |
-
"semver": "^6.1.1"
|
| 3444 |
-
},
|
| 3445 |
-
"dependencies": {
|
| 3446 |
-
"semver": {
|
| 3447 |
-
"version": "6.3.0",
|
| 3448 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 3449 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 3450 |
-
"dev": true
|
| 3451 |
-
}
|
| 3452 |
-
}
|
| 3453 |
-
},
|
| 3454 |
-
"babel-plugin-polyfill-corejs3": {
|
| 3455 |
-
"version": "0.3.0",
|
| 3456 |
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.3.0.tgz",
|
| 3457 |
-
"integrity": "sha512-JLwi9vloVdXLjzACL80j24bG6/T1gYxwowG44dg6HN/7aTPdyPbJJidf6ajoA3RPHHtW0j9KMrSOLpIZpAnPpg==",
|
| 3458 |
-
"dev": true,
|
| 3459 |
-
"requires": {
|
| 3460 |
-
"@babel/helper-define-polyfill-provider": "^0.2.4",
|
| 3461 |
-
"core-js-compat": "^3.18.0"
|
| 3462 |
-
}
|
| 3463 |
-
},
|
| 3464 |
-
"babel-plugin-polyfill-regenerator": {
|
| 3465 |
-
"version": "0.2.3",
|
| 3466 |
-
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.3.tgz",
|
| 3467 |
-
"integrity": "sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==",
|
| 3468 |
-
"dev": true,
|
| 3469 |
-
"requires": {
|
| 3470 |
-
"@babel/helper-define-polyfill-provider": "^0.2.4"
|
| 3471 |
-
}
|
| 3472 |
-
},
|
| 3473 |
-
"backo2": {
|
| 3474 |
-
"version": "1.0.2",
|
| 3475 |
-
"resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz",
|
| 3476 |
-
"integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
|
| 3477 |
-
"dev": true
|
| 3478 |
-
},
|
| 3479 |
-
"balanced-match": {
|
| 3480 |
-
"version": "1.0.2",
|
| 3481 |
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
| 3482 |
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
| 3483 |
-
},
|
| 3484 |
-
"base64-arraybuffer": {
|
| 3485 |
-
"version": "0.1.4",
|
| 3486 |
-
"resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz",
|
| 3487 |
-
"integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=",
|
| 3488 |
-
"dev": true
|
| 3489 |
-
},
|
| 3490 |
-
"base64-js": {
|
| 3491 |
-
"version": "1.5.1",
|
| 3492 |
-
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
| 3493 |
-
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
| 3494 |
-
"dev": true
|
| 3495 |
-
},
|
| 3496 |
-
"base64id": {
|
| 3497 |
-
"version": "2.0.0",
|
| 3498 |
-
"resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
|
| 3499 |
-
"integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==",
|
| 3500 |
-
"dev": true
|
| 3501 |
-
},
|
| 3502 |
-
"batch": {
|
| 3503 |
-
"version": "0.6.1",
|
| 3504 |
-
"resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",
|
| 3505 |
-
"integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=",
|
| 3506 |
-
"dev": true
|
| 3507 |
-
},
|
| 3508 |
-
"big.js": {
|
| 3509 |
-
"version": "5.2.2",
|
| 3510 |
-
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
| 3511 |
-
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
|
| 3512 |
-
"dev": true
|
| 3513 |
-
},
|
| 3514 |
-
"binary-extensions": {
|
| 3515 |
-
"version": "2.2.0",
|
| 3516 |
-
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
|
| 3517 |
-
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
|
| 3518 |
-
},
|
| 3519 |
-
"blob": {
|
| 3520 |
-
"version": "0.0.5",
|
| 3521 |
-
"resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz",
|
| 3522 |
-
"integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==",
|
| 3523 |
-
"dev": true
|
| 3524 |
-
},
|
| 3525 |
-
"bn.js": {
|
| 3526 |
-
"version": "5.2.0",
|
| 3527 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
|
| 3528 |
-
"integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==",
|
| 3529 |
-
"dev": true
|
| 3530 |
-
},
|
| 3531 |
-
"body-parser": {
|
| 3532 |
-
"version": "1.19.0",
|
| 3533 |
-
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
|
| 3534 |
-
"integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
|
| 3535 |
-
"dev": true,
|
| 3536 |
-
"requires": {
|
| 3537 |
-
"bytes": "3.1.0",
|
| 3538 |
-
"content-type": "~1.0.4",
|
| 3539 |
-
"debug": "2.6.9",
|
| 3540 |
-
"depd": "~1.1.2",
|
| 3541 |
-
"http-errors": "1.7.2",
|
| 3542 |
-
"iconv-lite": "0.4.24",
|
| 3543 |
-
"on-finished": "~2.3.0",
|
| 3544 |
-
"qs": "6.7.0",
|
| 3545 |
-
"raw-body": "2.4.0",
|
| 3546 |
-
"type-is": "~1.6.17"
|
| 3547 |
-
},
|
| 3548 |
-
"dependencies": {
|
| 3549 |
-
"debug": {
|
| 3550 |
-
"version": "2.6.9",
|
| 3551 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 3552 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 3553 |
-
"dev": true,
|
| 3554 |
-
"requires": {
|
| 3555 |
-
"ms": "2.0.0"
|
| 3556 |
-
}
|
| 3557 |
-
},
|
| 3558 |
-
"iconv-lite": {
|
| 3559 |
-
"version": "0.4.24",
|
| 3560 |
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
| 3561 |
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
| 3562 |
-
"dev": true,
|
| 3563 |
-
"requires": {
|
| 3564 |
-
"safer-buffer": ">= 2.1.2 < 3"
|
| 3565 |
-
}
|
| 3566 |
-
},
|
| 3567 |
-
"ms": {
|
| 3568 |
-
"version": "2.0.0",
|
| 3569 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 3570 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 3571 |
-
"dev": true
|
| 3572 |
-
},
|
| 3573 |
-
"qs": {
|
| 3574 |
-
"version": "6.7.0",
|
| 3575 |
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
| 3576 |
-
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
|
| 3577 |
-
"dev": true
|
| 3578 |
-
},
|
| 3579 |
-
"raw-body": {
|
| 3580 |
-
"version": "2.4.0",
|
| 3581 |
-
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
|
| 3582 |
-
"integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
|
| 3583 |
-
"dev": true,
|
| 3584 |
-
"requires": {
|
| 3585 |
-
"bytes": "3.1.0",
|
| 3586 |
-
"http-errors": "1.7.2",
|
| 3587 |
-
"iconv-lite": "0.4.24",
|
| 3588 |
-
"unpipe": "1.0.0"
|
| 3589 |
-
}
|
| 3590 |
-
}
|
| 3591 |
-
}
|
| 3592 |
-
},
|
| 3593 |
-
"body-scroll-lock": {
|
| 3594 |
-
"version": "3.1.5",
|
| 3595 |
-
"resolved": "https://registry.npmjs.org/body-scroll-lock/-/body-scroll-lock-3.1.5.tgz",
|
| 3596 |
-
"integrity": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg=="
|
| 3597 |
-
},
|
| 3598 |
-
"bonjour": {
|
| 3599 |
-
"version": "3.5.0",
|
| 3600 |
-
"resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz",
|
| 3601 |
-
"integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=",
|
| 3602 |
-
"dev": true,
|
| 3603 |
-
"requires": {
|
| 3604 |
-
"array-flatten": "^2.1.0",
|
| 3605 |
-
"deep-equal": "^1.0.1",
|
| 3606 |
-
"dns-equal": "^1.0.0",
|
| 3607 |
-
"dns-txt": "^2.0.2",
|
| 3608 |
-
"multicast-dns": "^6.0.1",
|
| 3609 |
-
"multicast-dns-service-types": "^1.1.0"
|
| 3610 |
-
}
|
| 3611 |
-
},
|
| 3612 |
-
"boolbase": {
|
| 3613 |
-
"version": "1.0.0",
|
| 3614 |
-
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
|
| 3615 |
-
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
|
| 3616 |
-
"dev": true
|
| 3617 |
-
},
|
| 3618 |
-
"brace-expansion": {
|
| 3619 |
-
"version": "1.1.11",
|
| 3620 |
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
| 3621 |
-
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
| 3622 |
-
"requires": {
|
| 3623 |
-
"balanced-match": "^1.0.0",
|
| 3624 |
-
"concat-map": "0.0.1"
|
| 3625 |
-
}
|
| 3626 |
-
},
|
| 3627 |
-
"braces": {
|
| 3628 |
-
"version": "3.0.2",
|
| 3629 |
-
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
| 3630 |
-
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
| 3631 |
-
"requires": {
|
| 3632 |
-
"fill-range": "^7.0.1"
|
| 3633 |
-
}
|
| 3634 |
-
},
|
| 3635 |
-
"brcast": {
|
| 3636 |
-
"version": "2.0.2",
|
| 3637 |
-
"resolved": "https://registry.npmjs.org/brcast/-/brcast-2.0.2.tgz",
|
| 3638 |
-
"integrity": "sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg=="
|
| 3639 |
-
},
|
| 3640 |
-
"brorand": {
|
| 3641 |
-
"version": "1.1.0",
|
| 3642 |
-
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
|
| 3643 |
-
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
|
| 3644 |
-
"dev": true
|
| 3645 |
-
},
|
| 3646 |
-
"browser-sync": {
|
| 3647 |
-
"version": "2.27.7",
|
| 3648 |
-
"resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.7.tgz",
|
| 3649 |
-
"integrity": "sha512-9ElnnA/u+s2Jd+IgY+2SImB+sAEIteHsMG0NR96m7Ph/wztpvJCUpyC2on1KqmG9iAp941j+5jfmd34tEguGbg==",
|
| 3650 |
-
"dev": true,
|
| 3651 |
-
"requires": {
|
| 3652 |
-
"browser-sync-client": "^2.27.7",
|
| 3653 |
-
"browser-sync-ui": "^2.27.7",
|
| 3654 |
-
"bs-recipes": "1.3.4",
|
| 3655 |
-
"bs-snippet-injector": "^2.0.1",
|
| 3656 |
-
"chokidar": "^3.5.1",
|
| 3657 |
-
"connect": "3.6.6",
|
| 3658 |
-
"connect-history-api-fallback": "^1",
|
| 3659 |
-
"dev-ip": "^1.0.1",
|
| 3660 |
-
"easy-extender": "^2.3.4",
|
| 3661 |
-
"eazy-logger": "3.1.0",
|
| 3662 |
-
"etag": "^1.8.1",
|
| 3663 |
-
"fresh": "^0.5.2",
|
| 3664 |
-
"fs-extra": "3.0.1",
|
| 3665 |
-
"http-proxy": "^1.18.1",
|
| 3666 |
-
"immutable": "^3",
|
| 3667 |
-
"localtunnel": "^2.0.1",
|
| 3668 |
-
"micromatch": "^4.0.2",
|
| 3669 |
-
"opn": "5.3.0",
|
| 3670 |
-
"portscanner": "2.1.1",
|
| 3671 |
-
"qs": "6.2.3",
|
| 3672 |
-
"raw-body": "^2.3.2",
|
| 3673 |
-
"resp-modifier": "6.0.2",
|
| 3674 |
-
"rx": "4.1.0",
|
| 3675 |
-
"send": "0.16.2",
|
| 3676 |
-
"serve-index": "1.9.1",
|
| 3677 |
-
"serve-static": "1.13.2",
|
| 3678 |
-
"server-destroy": "1.0.1",
|
| 3679 |
-
"socket.io": "2.4.0",
|
| 3680 |
-
"ua-parser-js": "1.0.2",
|
| 3681 |
-
"yargs": "^15.4.1"
|
| 3682 |
-
},
|
| 3683 |
-
"dependencies": {
|
| 3684 |
-
"ansi-regex": {
|
| 3685 |
-
"version": "5.0.1",
|
| 3686 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 3687 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 3688 |
-
"dev": true
|
| 3689 |
-
},
|
| 3690 |
-
"ansi-styles": {
|
| 3691 |
-
"version": "4.3.0",
|
| 3692 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 3693 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 3694 |
-
"dev": true,
|
| 3695 |
-
"requires": {
|
| 3696 |
-
"color-convert": "^2.0.1"
|
| 3697 |
-
}
|
| 3698 |
-
},
|
| 3699 |
-
"cliui": {
|
| 3700 |
-
"version": "6.0.0",
|
| 3701 |
-
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
|
| 3702 |
-
"integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
|
| 3703 |
-
"dev": true,
|
| 3704 |
-
"requires": {
|
| 3705 |
-
"string-width": "^4.2.0",
|
| 3706 |
-
"strip-ansi": "^6.0.0",
|
| 3707 |
-
"wrap-ansi": "^6.2.0"
|
| 3708 |
-
}
|
| 3709 |
-
},
|
| 3710 |
-
"color-convert": {
|
| 3711 |
-
"version": "2.0.1",
|
| 3712 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 3713 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 3714 |
-
"dev": true,
|
| 3715 |
-
"requires": {
|
| 3716 |
-
"color-name": "~1.1.4"
|
| 3717 |
-
}
|
| 3718 |
-
},
|
| 3719 |
-
"color-name": {
|
| 3720 |
-
"version": "1.1.4",
|
| 3721 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 3722 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 3723 |
-
"dev": true
|
| 3724 |
-
},
|
| 3725 |
-
"emoji-regex": {
|
| 3726 |
-
"version": "8.0.0",
|
| 3727 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 3728 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 3729 |
-
"dev": true
|
| 3730 |
-
},
|
| 3731 |
-
"find-up": {
|
| 3732 |
-
"version": "4.1.0",
|
| 3733 |
-
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
|
| 3734 |
-
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
|
| 3735 |
-
"dev": true,
|
| 3736 |
-
"requires": {
|
| 3737 |
-
"locate-path": "^5.0.0",
|
| 3738 |
-
"path-exists": "^4.0.0"
|
| 3739 |
-
}
|
| 3740 |
-
},
|
| 3741 |
-
"fs-extra": {
|
| 3742 |
-
"version": "3.0.1",
|
| 3743 |
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
|
| 3744 |
-
"integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=",
|
| 3745 |
-
"dev": true,
|
| 3746 |
-
"requires": {
|
| 3747 |
-
"graceful-fs": "^4.1.2",
|
| 3748 |
-
"jsonfile": "^3.0.0",
|
| 3749 |
-
"universalify": "^0.1.0"
|
| 3750 |
-
}
|
| 3751 |
-
},
|
| 3752 |
-
"is-fullwidth-code-point": {
|
| 3753 |
-
"version": "3.0.0",
|
| 3754 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 3755 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 3756 |
-
"dev": true
|
| 3757 |
-
},
|
| 3758 |
-
"jsonfile": {
|
| 3759 |
-
"version": "3.0.1",
|
| 3760 |
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz",
|
| 3761 |
-
"integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=",
|
| 3762 |
-
"dev": true,
|
| 3763 |
-
"requires": {
|
| 3764 |
-
"graceful-fs": "^4.1.6"
|
| 3765 |
-
}
|
| 3766 |
-
},
|
| 3767 |
-
"locate-path": {
|
| 3768 |
-
"version": "5.0.0",
|
| 3769 |
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
| 3770 |
-
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
|
| 3771 |
-
"dev": true,
|
| 3772 |
-
"requires": {
|
| 3773 |
-
"p-locate": "^4.1.0"
|
| 3774 |
-
}
|
| 3775 |
-
},
|
| 3776 |
-
"p-locate": {
|
| 3777 |
-
"version": "4.1.0",
|
| 3778 |
-
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
|
| 3779 |
-
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
|
| 3780 |
-
"dev": true,
|
| 3781 |
-
"requires": {
|
| 3782 |
-
"p-limit": "^2.2.0"
|
| 3783 |
-
}
|
| 3784 |
-
},
|
| 3785 |
-
"path-exists": {
|
| 3786 |
-
"version": "4.0.0",
|
| 3787 |
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
| 3788 |
-
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
| 3789 |
-
"dev": true
|
| 3790 |
-
},
|
| 3791 |
-
"string-width": {
|
| 3792 |
-
"version": "4.2.3",
|
| 3793 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 3794 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 3795 |
-
"dev": true,
|
| 3796 |
-
"requires": {
|
| 3797 |
-
"emoji-regex": "^8.0.0",
|
| 3798 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 3799 |
-
"strip-ansi": "^6.0.1"
|
| 3800 |
-
}
|
| 3801 |
-
},
|
| 3802 |
-
"strip-ansi": {
|
| 3803 |
-
"version": "6.0.1",
|
| 3804 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 3805 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 3806 |
-
"dev": true,
|
| 3807 |
-
"requires": {
|
| 3808 |
-
"ansi-regex": "^5.0.1"
|
| 3809 |
-
}
|
| 3810 |
-
},
|
| 3811 |
-
"universalify": {
|
| 3812 |
-
"version": "0.1.2",
|
| 3813 |
-
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
| 3814 |
-
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
|
| 3815 |
-
"dev": true
|
| 3816 |
-
},
|
| 3817 |
-
"wrap-ansi": {
|
| 3818 |
-
"version": "6.2.0",
|
| 3819 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
| 3820 |
-
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
| 3821 |
-
"dev": true,
|
| 3822 |
-
"requires": {
|
| 3823 |
-
"ansi-styles": "^4.0.0",
|
| 3824 |
-
"string-width": "^4.1.0",
|
| 3825 |
-
"strip-ansi": "^6.0.0"
|
| 3826 |
-
}
|
| 3827 |
-
},
|
| 3828 |
-
"yargs": {
|
| 3829 |
-
"version": "15.4.1",
|
| 3830 |
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
|
| 3831 |
-
"integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
|
| 3832 |
-
"dev": true,
|
| 3833 |
-
"requires": {
|
| 3834 |
-
"cliui": "^6.0.0",
|
| 3835 |
-
"decamelize": "^1.2.0",
|
| 3836 |
-
"find-up": "^4.1.0",
|
| 3837 |
-
"get-caller-file": "^2.0.1",
|
| 3838 |
-
"require-directory": "^2.1.1",
|
| 3839 |
-
"require-main-filename": "^2.0.0",
|
| 3840 |
-
"set-blocking": "^2.0.0",
|
| 3841 |
-
"string-width": "^4.2.0",
|
| 3842 |
-
"which-module": "^2.0.0",
|
| 3843 |
-
"y18n": "^4.0.0",
|
| 3844 |
-
"yargs-parser": "^18.1.2"
|
| 3845 |
-
}
|
| 3846 |
-
},
|
| 3847 |
-
"yargs-parser": {
|
| 3848 |
-
"version": "18.1.3",
|
| 3849 |
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
|
| 3850 |
-
"integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
|
| 3851 |
-
"dev": true,
|
| 3852 |
-
"requires": {
|
| 3853 |
-
"camelcase": "^5.0.0",
|
| 3854 |
-
"decamelize": "^1.2.0"
|
| 3855 |
-
}
|
| 3856 |
-
}
|
| 3857 |
-
}
|
| 3858 |
-
},
|
| 3859 |
-
"browser-sync-client": {
|
| 3860 |
-
"version": "2.27.7",
|
| 3861 |
-
"resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.7.tgz",
|
| 3862 |
-
"integrity": "sha512-wKg9UP9a4sCIkBBAXUdbkdWFJzfSAQizGh+nC19W9y9zOo9s5jqeYRFUUbs7x5WKhjtspT+xetVp9AtBJ6BmWg==",
|
| 3863 |
-
"dev": true,
|
| 3864 |
-
"requires": {
|
| 3865 |
-
"etag": "1.8.1",
|
| 3866 |
-
"fresh": "0.5.2",
|
| 3867 |
-
"mitt": "^1.1.3",
|
| 3868 |
-
"rxjs": "^5.5.6"
|
| 3869 |
-
}
|
| 3870 |
-
},
|
| 3871 |
-
"browser-sync-ui": {
|
| 3872 |
-
"version": "2.27.7",
|
| 3873 |
-
"resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.7.tgz",
|
| 3874 |
-
"integrity": "sha512-Bt4OQpx9p18OIzk0KKyu7jqlvmjacasUlk8ARY3uuIyiFWSBiRgr2i6XY8dEMF14DtbooaEBOpHEu9VCYvMcCw==",
|
| 3875 |
-
"dev": true,
|
| 3876 |
-
"requires": {
|
| 3877 |
-
"async-each-series": "0.1.1",
|
| 3878 |
-
"connect-history-api-fallback": "^1",
|
| 3879 |
-
"immutable": "^3",
|
| 3880 |
-
"server-destroy": "1.0.1",
|
| 3881 |
-
"socket.io-client": "^2.4.0",
|
| 3882 |
-
"stream-throttle": "^0.1.3"
|
| 3883 |
-
}
|
| 3884 |
-
},
|
| 3885 |
-
"browser-sync-webpack-plugin": {
|
| 3886 |
-
"version": "2.3.0",
|
| 3887 |
-
"resolved": "https://registry.npmjs.org/browser-sync-webpack-plugin/-/browser-sync-webpack-plugin-2.3.0.tgz",
|
| 3888 |
-
"integrity": "sha512-MDvuRrTCtoL11dTdwMymo9CNJvYxJoW67gOO61cThfzHNX40S5WcBU+0bVQ86ll7r7aNpNgyzxF7RtnXMTDbyA==",
|
| 3889 |
-
"dev": true,
|
| 3890 |
-
"requires": {
|
| 3891 |
-
"lodash": "^4"
|
| 3892 |
-
}
|
| 3893 |
-
},
|
| 3894 |
-
"browserify-aes": {
|
| 3895 |
-
"version": "1.2.0",
|
| 3896 |
-
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
|
| 3897 |
-
"integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
|
| 3898 |
-
"dev": true,
|
| 3899 |
-
"requires": {
|
| 3900 |
-
"buffer-xor": "^1.0.3",
|
| 3901 |
-
"cipher-base": "^1.0.0",
|
| 3902 |
-
"create-hash": "^1.1.0",
|
| 3903 |
-
"evp_bytestokey": "^1.0.3",
|
| 3904 |
-
"inherits": "^2.0.1",
|
| 3905 |
-
"safe-buffer": "^5.0.1"
|
| 3906 |
-
}
|
| 3907 |
-
},
|
| 3908 |
-
"browserify-cipher": {
|
| 3909 |
-
"version": "1.0.1",
|
| 3910 |
-
"resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
|
| 3911 |
-
"integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
|
| 3912 |
-
"dev": true,
|
| 3913 |
-
"requires": {
|
| 3914 |
-
"browserify-aes": "^1.0.4",
|
| 3915 |
-
"browserify-des": "^1.0.0",
|
| 3916 |
-
"evp_bytestokey": "^1.0.0"
|
| 3917 |
-
}
|
| 3918 |
-
},
|
| 3919 |
-
"browserify-des": {
|
| 3920 |
-
"version": "1.0.2",
|
| 3921 |
-
"resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
|
| 3922 |
-
"integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
|
| 3923 |
-
"dev": true,
|
| 3924 |
-
"requires": {
|
| 3925 |
-
"cipher-base": "^1.0.1",
|
| 3926 |
-
"des.js": "^1.0.0",
|
| 3927 |
-
"inherits": "^2.0.1",
|
| 3928 |
-
"safe-buffer": "^5.1.2"
|
| 3929 |
-
}
|
| 3930 |
-
},
|
| 3931 |
-
"browserify-rsa": {
|
| 3932 |
-
"version": "4.1.0",
|
| 3933 |
-
"resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz",
|
| 3934 |
-
"integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==",
|
| 3935 |
-
"dev": true,
|
| 3936 |
-
"requires": {
|
| 3937 |
-
"bn.js": "^5.0.0",
|
| 3938 |
-
"randombytes": "^2.0.1"
|
| 3939 |
-
}
|
| 3940 |
-
},
|
| 3941 |
-
"browserify-sign": {
|
| 3942 |
-
"version": "4.2.1",
|
| 3943 |
-
"resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz",
|
| 3944 |
-
"integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==",
|
| 3945 |
-
"dev": true,
|
| 3946 |
-
"requires": {
|
| 3947 |
-
"bn.js": "^5.1.1",
|
| 3948 |
-
"browserify-rsa": "^4.0.1",
|
| 3949 |
-
"create-hash": "^1.2.0",
|
| 3950 |
-
"create-hmac": "^1.1.7",
|
| 3951 |
-
"elliptic": "^6.5.3",
|
| 3952 |
-
"inherits": "^2.0.4",
|
| 3953 |
-
"parse-asn1": "^5.1.5",
|
| 3954 |
-
"readable-stream": "^3.6.0",
|
| 3955 |
-
"safe-buffer": "^5.2.0"
|
| 3956 |
-
},
|
| 3957 |
-
"dependencies": {
|
| 3958 |
-
"readable-stream": {
|
| 3959 |
-
"version": "3.6.0",
|
| 3960 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
| 3961 |
-
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
| 3962 |
-
"dev": true,
|
| 3963 |
-
"requires": {
|
| 3964 |
-
"inherits": "^2.0.3",
|
| 3965 |
-
"string_decoder": "^1.1.1",
|
| 3966 |
-
"util-deprecate": "^1.0.1"
|
| 3967 |
-
}
|
| 3968 |
-
}
|
| 3969 |
-
}
|
| 3970 |
-
},
|
| 3971 |
-
"browserify-zlib": {
|
| 3972 |
-
"version": "0.2.0",
|
| 3973 |
-
"resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
|
| 3974 |
-
"integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
|
| 3975 |
-
"dev": true,
|
| 3976 |
-
"requires": {
|
| 3977 |
-
"pako": "~1.0.5"
|
| 3978 |
-
}
|
| 3979 |
-
},
|
| 3980 |
-
"browserslist": {
|
| 3981 |
-
"version": "4.18.1",
|
| 3982 |
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz",
|
| 3983 |
-
"integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==",
|
| 3984 |
-
"dev": true,
|
| 3985 |
-
"requires": {
|
| 3986 |
-
"caniuse-lite": "^1.0.30001280",
|
| 3987 |
-
"electron-to-chromium": "^1.3.896",
|
| 3988 |
-
"escalade": "^3.1.1",
|
| 3989 |
-
"node-releases": "^2.0.1",
|
| 3990 |
-
"picocolors": "^1.0.0"
|
| 3991 |
-
}
|
| 3992 |
-
},
|
| 3993 |
-
"bs-recipes": {
|
| 3994 |
-
"version": "1.3.4",
|
| 3995 |
-
"resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
|
| 3996 |
-
"integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=",
|
| 3997 |
-
"dev": true
|
| 3998 |
-
},
|
| 3999 |
-
"bs-snippet-injector": {
|
| 4000 |
-
"version": "2.0.1",
|
| 4001 |
-
"resolved": "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz",
|
| 4002 |
-
"integrity": "sha1-YbU5PxH1JVntEgaTEANDtu2wTdU=",
|
| 4003 |
-
"dev": true
|
| 4004 |
-
},
|
| 4005 |
-
"buffer": {
|
| 4006 |
-
"version": "4.9.2",
|
| 4007 |
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
|
| 4008 |
-
"integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
|
| 4009 |
-
"dev": true,
|
| 4010 |
-
"requires": {
|
| 4011 |
-
"base64-js": "^1.0.2",
|
| 4012 |
-
"ieee754": "^1.1.4",
|
| 4013 |
-
"isarray": "^1.0.0"
|
| 4014 |
-
},
|
| 4015 |
-
"dependencies": {
|
| 4016 |
-
"isarray": {
|
| 4017 |
-
"version": "1.0.0",
|
| 4018 |
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
| 4019 |
-
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
| 4020 |
-
"dev": true
|
| 4021 |
-
}
|
| 4022 |
-
}
|
| 4023 |
-
},
|
| 4024 |
-
"buffer-from": {
|
| 4025 |
-
"version": "1.1.2",
|
| 4026 |
-
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
|
| 4027 |
-
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
|
| 4028 |
-
"dev": true
|
| 4029 |
-
},
|
| 4030 |
-
"buffer-indexof": {
|
| 4031 |
-
"version": "1.1.1",
|
| 4032 |
-
"resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
|
| 4033 |
-
"integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==",
|
| 4034 |
-
"dev": true
|
| 4035 |
-
},
|
| 4036 |
-
"buffer-xor": {
|
| 4037 |
-
"version": "1.0.3",
|
| 4038 |
-
"resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
|
| 4039 |
-
"integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
|
| 4040 |
-
"dev": true
|
| 4041 |
-
},
|
| 4042 |
-
"builtin-status-codes": {
|
| 4043 |
-
"version": "3.0.0",
|
| 4044 |
-
"resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
|
| 4045 |
-
"integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
|
| 4046 |
-
"dev": true
|
| 4047 |
-
},
|
| 4048 |
-
"bytes": {
|
| 4049 |
-
"version": "3.1.0",
|
| 4050 |
-
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
|
| 4051 |
-
"integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
|
| 4052 |
-
},
|
| 4053 |
-
"cache-content-type": {
|
| 4054 |
-
"version": "1.0.1",
|
| 4055 |
-
"resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz",
|
| 4056 |
-
"integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==",
|
| 4057 |
-
"dev": true,
|
| 4058 |
-
"requires": {
|
| 4059 |
-
"mime-types": "^2.1.18",
|
| 4060 |
-
"ylru": "^1.2.0"
|
| 4061 |
-
}
|
| 4062 |
-
},
|
| 4063 |
-
"call-bind": {
|
| 4064 |
-
"version": "1.0.2",
|
| 4065 |
-
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
| 4066 |
-
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
| 4067 |
-
"requires": {
|
| 4068 |
-
"function-bind": "^1.1.1",
|
| 4069 |
-
"get-intrinsic": "^1.0.2"
|
| 4070 |
-
}
|
| 4071 |
-
},
|
| 4072 |
-
"callsites": {
|
| 4073 |
-
"version": "3.1.0",
|
| 4074 |
-
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
| 4075 |
-
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
|
| 4076 |
-
},
|
| 4077 |
-
"camel-case": {
|
| 4078 |
-
"version": "4.1.2",
|
| 4079 |
-
"resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
|
| 4080 |
-
"integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
|
| 4081 |
-
"dev": true,
|
| 4082 |
-
"requires": {
|
| 4083 |
-
"pascal-case": "^3.1.2",
|
| 4084 |
-
"tslib": "^2.0.3"
|
| 4085 |
-
}
|
| 4086 |
-
},
|
| 4087 |
-
"camelcase": {
|
| 4088 |
-
"version": "5.3.1",
|
| 4089 |
-
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
| 4090 |
-
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
| 4091 |
-
},
|
| 4092 |
-
"camelcase-css": {
|
| 4093 |
-
"version": "2.0.1",
|
| 4094 |
-
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
|
| 4095 |
-
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
|
| 4096 |
-
},
|
| 4097 |
-
"caniuse-api": {
|
| 4098 |
-
"version": "3.0.0",
|
| 4099 |
-
"resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
|
| 4100 |
-
"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
|
| 4101 |
-
"dev": true,
|
| 4102 |
-
"requires": {
|
| 4103 |
-
"browserslist": "^4.0.0",
|
| 4104 |
-
"caniuse-lite": "^1.0.0",
|
| 4105 |
-
"lodash.memoize": "^4.1.2",
|
| 4106 |
-
"lodash.uniq": "^4.5.0"
|
| 4107 |
-
}
|
| 4108 |
-
},
|
| 4109 |
-
"caniuse-lite": {
|
| 4110 |
-
"version": "1.0.30001280",
|
| 4111 |
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001280.tgz",
|
| 4112 |
-
"integrity": "sha512-kFXwYvHe5rix25uwueBxC569o53J6TpnGu0BEEn+6Lhl2vsnAumRFWEBhDft1fwyo6m1r4i+RqA4+163FpeFcA==",
|
| 4113 |
-
"dev": true
|
| 4114 |
-
},
|
| 4115 |
-
"chalk": {
|
| 4116 |
-
"version": "2.4.2",
|
| 4117 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
| 4118 |
-
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
| 4119 |
-
"requires": {
|
| 4120 |
-
"ansi-styles": "^3.2.1",
|
| 4121 |
-
"escape-string-regexp": "^1.0.5",
|
| 4122 |
-
"supports-color": "^5.3.0"
|
| 4123 |
-
}
|
| 4124 |
-
},
|
| 4125 |
-
"charenc": {
|
| 4126 |
-
"version": "0.0.2",
|
| 4127 |
-
"resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
|
| 4128 |
-
"integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=",
|
| 4129 |
-
"dev": true
|
| 4130 |
-
},
|
| 4131 |
-
"chokidar": {
|
| 4132 |
-
"version": "3.5.2",
|
| 4133 |
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
|
| 4134 |
-
"integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
|
| 4135 |
-
"requires": {
|
| 4136 |
-
"anymatch": "~3.1.2",
|
| 4137 |
-
"braces": "~3.0.2",
|
| 4138 |
-
"fsevents": "~2.3.2",
|
| 4139 |
-
"glob-parent": "~5.1.2",
|
| 4140 |
-
"is-binary-path": "~2.1.0",
|
| 4141 |
-
"is-glob": "~4.0.1",
|
| 4142 |
-
"normalize-path": "~3.0.0",
|
| 4143 |
-
"readdirp": "~3.6.0"
|
| 4144 |
-
},
|
| 4145 |
-
"dependencies": {
|
| 4146 |
-
"glob-parent": {
|
| 4147 |
-
"version": "5.1.2",
|
| 4148 |
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
| 4149 |
-
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
| 4150 |
-
"requires": {
|
| 4151 |
-
"is-glob": "^4.0.1"
|
| 4152 |
-
}
|
| 4153 |
-
}
|
| 4154 |
-
}
|
| 4155 |
-
},
|
| 4156 |
-
"chrome-trace-event": {
|
| 4157 |
-
"version": "1.0.3",
|
| 4158 |
-
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
|
| 4159 |
-
"integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
|
| 4160 |
-
"dev": true
|
| 4161 |
-
},
|
| 4162 |
-
"cipher-base": {
|
| 4163 |
-
"version": "1.0.4",
|
| 4164 |
-
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
|
| 4165 |
-
"integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
|
| 4166 |
-
"dev": true,
|
| 4167 |
-
"requires": {
|
| 4168 |
-
"inherits": "^2.0.1",
|
| 4169 |
-
"safe-buffer": "^5.0.1"
|
| 4170 |
-
}
|
| 4171 |
-
},
|
| 4172 |
-
"classnames": {
|
| 4173 |
-
"version": "2.3.1",
|
| 4174 |
-
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz",
|
| 4175 |
-
"integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="
|
| 4176 |
-
},
|
| 4177 |
-
"clean-css": {
|
| 4178 |
-
"version": "5.2.2",
|
| 4179 |
-
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz",
|
| 4180 |
-
"integrity": "sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w==",
|
| 4181 |
-
"dev": true,
|
| 4182 |
-
"requires": {
|
| 4183 |
-
"source-map": "~0.6.0"
|
| 4184 |
-
},
|
| 4185 |
-
"dependencies": {
|
| 4186 |
-
"source-map": {
|
| 4187 |
-
"version": "0.6.1",
|
| 4188 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 4189 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 4190 |
-
"dev": true
|
| 4191 |
-
}
|
| 4192 |
-
}
|
| 4193 |
-
},
|
| 4194 |
-
"clean-stack": {
|
| 4195 |
-
"version": "2.2.0",
|
| 4196 |
-
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
|
| 4197 |
-
"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
|
| 4198 |
-
"dev": true
|
| 4199 |
-
},
|
| 4200 |
-
"cli-cursor": {
|
| 4201 |
-
"version": "3.1.0",
|
| 4202 |
-
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
|
| 4203 |
-
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
|
| 4204 |
-
"dev": true,
|
| 4205 |
-
"requires": {
|
| 4206 |
-
"restore-cursor": "^3.1.0"
|
| 4207 |
-
}
|
| 4208 |
-
},
|
| 4209 |
-
"cli-table3": {
|
| 4210 |
-
"version": "0.6.0",
|
| 4211 |
-
"resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz",
|
| 4212 |
-
"integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==",
|
| 4213 |
-
"dev": true,
|
| 4214 |
-
"requires": {
|
| 4215 |
-
"colors": "^1.1.2",
|
| 4216 |
-
"object-assign": "^4.1.0",
|
| 4217 |
-
"string-width": "^4.2.0"
|
| 4218 |
-
},
|
| 4219 |
-
"dependencies": {
|
| 4220 |
-
"ansi-regex": {
|
| 4221 |
-
"version": "5.0.1",
|
| 4222 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 4223 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 4224 |
-
"dev": true
|
| 4225 |
-
},
|
| 4226 |
-
"emoji-regex": {
|
| 4227 |
-
"version": "8.0.0",
|
| 4228 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 4229 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 4230 |
-
"dev": true
|
| 4231 |
-
},
|
| 4232 |
-
"is-fullwidth-code-point": {
|
| 4233 |
-
"version": "3.0.0",
|
| 4234 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 4235 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 4236 |
-
"dev": true
|
| 4237 |
-
},
|
| 4238 |
-
"string-width": {
|
| 4239 |
-
"version": "4.2.3",
|
| 4240 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 4241 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 4242 |
-
"dev": true,
|
| 4243 |
-
"requires": {
|
| 4244 |
-
"emoji-regex": "^8.0.0",
|
| 4245 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 4246 |
-
"strip-ansi": "^6.0.1"
|
| 4247 |
-
}
|
| 4248 |
-
},
|
| 4249 |
-
"strip-ansi": {
|
| 4250 |
-
"version": "6.0.1",
|
| 4251 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 4252 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 4253 |
-
"dev": true,
|
| 4254 |
-
"requires": {
|
| 4255 |
-
"ansi-regex": "^5.0.1"
|
| 4256 |
-
}
|
| 4257 |
-
}
|
| 4258 |
-
}
|
| 4259 |
-
},
|
| 4260 |
-
"cli-truncate": {
|
| 4261 |
-
"version": "3.1.0",
|
| 4262 |
-
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz",
|
| 4263 |
-
"integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==",
|
| 4264 |
-
"dev": true,
|
| 4265 |
-
"requires": {
|
| 4266 |
-
"slice-ansi": "^5.0.0",
|
| 4267 |
-
"string-width": "^5.0.0"
|
| 4268 |
-
},
|
| 4269 |
-
"dependencies": {
|
| 4270 |
-
"ansi-regex": {
|
| 4271 |
-
"version": "6.0.1",
|
| 4272 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
| 4273 |
-
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
| 4274 |
-
"dev": true
|
| 4275 |
-
},
|
| 4276 |
-
"emoji-regex": {
|
| 4277 |
-
"version": "9.2.2",
|
| 4278 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
|
| 4279 |
-
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
| 4280 |
-
"dev": true
|
| 4281 |
-
},
|
| 4282 |
-
"is-fullwidth-code-point": {
|
| 4283 |
-
"version": "4.0.0",
|
| 4284 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
|
| 4285 |
-
"integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
|
| 4286 |
-
"dev": true
|
| 4287 |
-
},
|
| 4288 |
-
"string-width": {
|
| 4289 |
-
"version": "5.0.1",
|
| 4290 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.0.1.tgz",
|
| 4291 |
-
"integrity": "sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g==",
|
| 4292 |
-
"dev": true,
|
| 4293 |
-
"requires": {
|
| 4294 |
-
"emoji-regex": "^9.2.2",
|
| 4295 |
-
"is-fullwidth-code-point": "^4.0.0",
|
| 4296 |
-
"strip-ansi": "^7.0.1"
|
| 4297 |
-
}
|
| 4298 |
-
},
|
| 4299 |
-
"strip-ansi": {
|
| 4300 |
-
"version": "7.0.1",
|
| 4301 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz",
|
| 4302 |
-
"integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==",
|
| 4303 |
-
"dev": true,
|
| 4304 |
-
"requires": {
|
| 4305 |
-
"ansi-regex": "^6.0.1"
|
| 4306 |
-
}
|
| 4307 |
-
}
|
| 4308 |
-
}
|
| 4309 |
-
},
|
| 4310 |
-
"clipboard": {
|
| 4311 |
-
"version": "2.0.8",
|
| 4312 |
-
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz",
|
| 4313 |
-
"integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==",
|
| 4314 |
-
"requires": {
|
| 4315 |
-
"good-listener": "^1.2.2",
|
| 4316 |
-
"select": "^1.1.2",
|
| 4317 |
-
"tiny-emitter": "^2.0.0"
|
| 4318 |
-
}
|
| 4319 |
-
},
|
| 4320 |
-
"cliui": {
|
| 4321 |
-
"version": "5.0.0",
|
| 4322 |
-
"resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
|
| 4323 |
-
"integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
|
| 4324 |
-
"requires": {
|
| 4325 |
-
"string-width": "^3.1.0",
|
| 4326 |
-
"strip-ansi": "^5.2.0",
|
| 4327 |
-
"wrap-ansi": "^5.1.0"
|
| 4328 |
-
}
|
| 4329 |
-
},
|
| 4330 |
-
"clone": {
|
| 4331 |
-
"version": "2.1.2",
|
| 4332 |
-
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
|
| 4333 |
-
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
|
| 4334 |
-
"dev": true
|
| 4335 |
-
},
|
| 4336 |
-
"clone-deep": {
|
| 4337 |
-
"version": "4.0.1",
|
| 4338 |
-
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
|
| 4339 |
-
"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
|
| 4340 |
-
"dev": true,
|
| 4341 |
-
"requires": {
|
| 4342 |
-
"is-plain-object": "^2.0.4",
|
| 4343 |
-
"kind-of": "^6.0.2",
|
| 4344 |
-
"shallow-clone": "^3.0.0"
|
| 4345 |
-
}
|
| 4346 |
-
},
|
| 4347 |
-
"co": {
|
| 4348 |
-
"version": "4.6.0",
|
| 4349 |
-
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
|
| 4350 |
-
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
|
| 4351 |
-
"dev": true
|
| 4352 |
-
},
|
| 4353 |
-
"collect.js": {
|
| 4354 |
-
"version": "4.29.0",
|
| 4355 |
-
"resolved": "https://registry.npmjs.org/collect.js/-/collect.js-4.29.0.tgz",
|
| 4356 |
-
"integrity": "sha512-yhgGYEsLEcqnLT1NmRlN1+1euoz9SDhxQ4QyDhWYsKoWsg7252PKA5++dWaDs8mdFxbkmXDXQUaHXI9J2eTPkQ==",
|
| 4357 |
-
"dev": true
|
| 4358 |
-
},
|
| 4359 |
-
"color": {
|
| 4360 |
-
"version": "4.0.1",
|
| 4361 |
-
"resolved": "https://registry.npmjs.org/color/-/color-4.0.1.tgz",
|
| 4362 |
-
"integrity": "sha512-rpZjOKN5O7naJxkH2Rx1sZzzBgaiWECc6BYXjeCE6kF0kcASJYbUq02u7JqIHwCb/j3NhV+QhRL2683aICeGZA==",
|
| 4363 |
-
"requires": {
|
| 4364 |
-
"color-convert": "^2.0.1",
|
| 4365 |
-
"color-string": "^1.6.0"
|
| 4366 |
-
},
|
| 4367 |
-
"dependencies": {
|
| 4368 |
-
"color-convert": {
|
| 4369 |
-
"version": "2.0.1",
|
| 4370 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 4371 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 4372 |
-
"requires": {
|
| 4373 |
-
"color-name": "~1.1.4"
|
| 4374 |
-
}
|
| 4375 |
-
},
|
| 4376 |
-
"color-name": {
|
| 4377 |
-
"version": "1.1.4",
|
| 4378 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 4379 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
| 4380 |
-
}
|
| 4381 |
-
}
|
| 4382 |
-
},
|
| 4383 |
-
"color-convert": {
|
| 4384 |
-
"version": "1.9.3",
|
| 4385 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
| 4386 |
-
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
| 4387 |
-
"requires": {
|
| 4388 |
-
"color-name": "1.1.3"
|
| 4389 |
-
}
|
| 4390 |
-
},
|
| 4391 |
-
"color-name": {
|
| 4392 |
-
"version": "1.1.3",
|
| 4393 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
| 4394 |
-
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
| 4395 |
-
},
|
| 4396 |
-
"color-string": {
|
| 4397 |
-
"version": "1.6.0",
|
| 4398 |
-
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz",
|
| 4399 |
-
"integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==",
|
| 4400 |
-
"requires": {
|
| 4401 |
-
"color-name": "^1.0.0",
|
| 4402 |
-
"simple-swizzle": "^0.2.2"
|
| 4403 |
-
}
|
| 4404 |
-
},
|
| 4405 |
-
"colord": {
|
| 4406 |
-
"version": "2.8.0",
|
| 4407 |
-
"resolved": "https://registry.npmjs.org/colord/-/colord-2.8.0.tgz",
|
| 4408 |
-
"integrity": "sha512-kNkVV4KFta3TYQv0bzs4xNwLaeag261pxgzGQSh4cQ1rEhYjcTJfFRP0SDlbhLONg0eSoLzrDd79PosjbltufA=="
|
| 4409 |
-
},
|
| 4410 |
-
"colorette": {
|
| 4411 |
-
"version": "2.0.16",
|
| 4412 |
-
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz",
|
| 4413 |
-
"integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==",
|
| 4414 |
-
"dev": true
|
| 4415 |
-
},
|
| 4416 |
-
"colors": {
|
| 4417 |
-
"version": "1.4.0",
|
| 4418 |
-
"resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
|
| 4419 |
-
"integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==",
|
| 4420 |
-
"dev": true,
|
| 4421 |
-
"optional": true
|
| 4422 |
-
},
|
| 4423 |
-
"commander": {
|
| 4424 |
-
"version": "2.20.3",
|
| 4425 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
| 4426 |
-
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
| 4427 |
-
"dev": true
|
| 4428 |
-
},
|
| 4429 |
-
"commondir": {
|
| 4430 |
-
"version": "1.0.1",
|
| 4431 |
-
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
|
| 4432 |
-
"integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
|
| 4433 |
-
"dev": true
|
| 4434 |
-
},
|
| 4435 |
-
"component-bind": {
|
| 4436 |
-
"version": "1.0.0",
|
| 4437 |
-
"resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz",
|
| 4438 |
-
"integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
|
| 4439 |
-
"dev": true
|
| 4440 |
-
},
|
| 4441 |
-
"component-emitter": {
|
| 4442 |
-
"version": "1.3.0",
|
| 4443 |
-
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
|
| 4444 |
-
"integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
|
| 4445 |
-
"dev": true
|
| 4446 |
-
},
|
| 4447 |
-
"component-inherit": {
|
| 4448 |
-
"version": "0.0.3",
|
| 4449 |
-
"resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz",
|
| 4450 |
-
"integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
|
| 4451 |
-
"dev": true
|
| 4452 |
-
},
|
| 4453 |
-
"compressible": {
|
| 4454 |
-
"version": "2.0.18",
|
| 4455 |
-
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
|
| 4456 |
-
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
|
| 4457 |
-
"dev": true,
|
| 4458 |
-
"requires": {
|
| 4459 |
-
"mime-db": ">= 1.43.0 < 2"
|
| 4460 |
-
}
|
| 4461 |
-
},
|
| 4462 |
-
"compression": {
|
| 4463 |
-
"version": "1.7.4",
|
| 4464 |
-
"resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
|
| 4465 |
-
"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
|
| 4466 |
-
"dev": true,
|
| 4467 |
-
"requires": {
|
| 4468 |
-
"accepts": "~1.3.5",
|
| 4469 |
-
"bytes": "3.0.0",
|
| 4470 |
-
"compressible": "~2.0.16",
|
| 4471 |
-
"debug": "2.6.9",
|
| 4472 |
-
"on-headers": "~1.0.2",
|
| 4473 |
-
"safe-buffer": "5.1.2",
|
| 4474 |
-
"vary": "~1.1.2"
|
| 4475 |
-
},
|
| 4476 |
-
"dependencies": {
|
| 4477 |
-
"bytes": {
|
| 4478 |
-
"version": "3.0.0",
|
| 4479 |
-
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
|
| 4480 |
-
"integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
|
| 4481 |
-
"dev": true
|
| 4482 |
-
},
|
| 4483 |
-
"debug": {
|
| 4484 |
-
"version": "2.6.9",
|
| 4485 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 4486 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 4487 |
-
"dev": true,
|
| 4488 |
-
"requires": {
|
| 4489 |
-
"ms": "2.0.0"
|
| 4490 |
-
}
|
| 4491 |
-
},
|
| 4492 |
-
"ms": {
|
| 4493 |
-
"version": "2.0.0",
|
| 4494 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 4495 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 4496 |
-
"dev": true
|
| 4497 |
-
},
|
| 4498 |
-
"safe-buffer": {
|
| 4499 |
-
"version": "5.1.2",
|
| 4500 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 4501 |
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 4502 |
-
"dev": true
|
| 4503 |
-
}
|
| 4504 |
-
}
|
| 4505 |
-
},
|
| 4506 |
-
"compute-scroll-into-view": {
|
| 4507 |
-
"version": "1.0.17",
|
| 4508 |
-
"resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz",
|
| 4509 |
-
"integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg=="
|
| 4510 |
-
},
|
| 4511 |
-
"computed-style": {
|
| 4512 |
-
"version": "0.1.4",
|
| 4513 |
-
"resolved": "https://registry.npmjs.org/computed-style/-/computed-style-0.1.4.tgz",
|
| 4514 |
-
"integrity": "sha1-fzRP2FhLLkJb7cpKGvwOMAuwXXQ="
|
| 4515 |
-
},
|
| 4516 |
-
"concat": {
|
| 4517 |
-
"version": "1.0.3",
|
| 4518 |
-
"resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz",
|
| 4519 |
-
"integrity": "sha1-QPM1MInWVGdpXLGIa0Xt1jfYzKg=",
|
| 4520 |
-
"dev": true,
|
| 4521 |
-
"requires": {
|
| 4522 |
-
"commander": "^2.9.0"
|
| 4523 |
-
}
|
| 4524 |
-
},
|
| 4525 |
-
"concat-map": {
|
| 4526 |
-
"version": "0.0.1",
|
| 4527 |
-
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
| 4528 |
-
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
|
| 4529 |
-
},
|
| 4530 |
-
"connect": {
|
| 4531 |
-
"version": "3.6.6",
|
| 4532 |
-
"resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
|
| 4533 |
-
"integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
|
| 4534 |
-
"dev": true,
|
| 4535 |
-
"requires": {
|
| 4536 |
-
"debug": "2.6.9",
|
| 4537 |
-
"finalhandler": "1.1.0",
|
| 4538 |
-
"parseurl": "~1.3.2",
|
| 4539 |
-
"utils-merge": "1.0.1"
|
| 4540 |
-
},
|
| 4541 |
-
"dependencies": {
|
| 4542 |
-
"debug": {
|
| 4543 |
-
"version": "2.6.9",
|
| 4544 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 4545 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 4546 |
-
"dev": true,
|
| 4547 |
-
"requires": {
|
| 4548 |
-
"ms": "2.0.0"
|
| 4549 |
-
}
|
| 4550 |
-
},
|
| 4551 |
-
"ms": {
|
| 4552 |
-
"version": "2.0.0",
|
| 4553 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 4554 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 4555 |
-
"dev": true
|
| 4556 |
-
}
|
| 4557 |
-
}
|
| 4558 |
-
},
|
| 4559 |
-
"connect-history-api-fallback": {
|
| 4560 |
-
"version": "1.6.0",
|
| 4561 |
-
"resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
|
| 4562 |
-
"integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
|
| 4563 |
-
"dev": true
|
| 4564 |
-
},
|
| 4565 |
-
"consola": {
|
| 4566 |
-
"version": "2.15.3",
|
| 4567 |
-
"resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz",
|
| 4568 |
-
"integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==",
|
| 4569 |
-
"dev": true
|
| 4570 |
-
},
|
| 4571 |
-
"console-browserify": {
|
| 4572 |
-
"version": "1.2.0",
|
| 4573 |
-
"resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
|
| 4574 |
-
"integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
|
| 4575 |
-
"dev": true
|
| 4576 |
-
},
|
| 4577 |
-
"consolidated-events": {
|
| 4578 |
-
"version": "2.0.2",
|
| 4579 |
-
"resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz",
|
| 4580 |
-
"integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ=="
|
| 4581 |
-
},
|
| 4582 |
-
"constants-browserify": {
|
| 4583 |
-
"version": "1.0.0",
|
| 4584 |
-
"resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
|
| 4585 |
-
"integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
|
| 4586 |
-
"dev": true
|
| 4587 |
-
},
|
| 4588 |
-
"content-disposition": {
|
| 4589 |
-
"version": "0.5.3",
|
| 4590 |
-
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
| 4591 |
-
"integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
|
| 4592 |
-
"dev": true,
|
| 4593 |
-
"requires": {
|
| 4594 |
-
"safe-buffer": "5.1.2"
|
| 4595 |
-
},
|
| 4596 |
-
"dependencies": {
|
| 4597 |
-
"safe-buffer": {
|
| 4598 |
-
"version": "5.1.2",
|
| 4599 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 4600 |
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 4601 |
-
"dev": true
|
| 4602 |
-
}
|
| 4603 |
-
}
|
| 4604 |
-
},
|
| 4605 |
-
"content-type": {
|
| 4606 |
-
"version": "1.0.4",
|
| 4607 |
-
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
| 4608 |
-
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
|
| 4609 |
-
"dev": true
|
| 4610 |
-
},
|
| 4611 |
-
"convert-source-map": {
|
| 4612 |
-
"version": "1.7.0",
|
| 4613 |
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
|
| 4614 |
-
"integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
|
| 4615 |
-
"requires": {
|
| 4616 |
-
"safe-buffer": "~5.1.1"
|
| 4617 |
-
},
|
| 4618 |
-
"dependencies": {
|
| 4619 |
-
"safe-buffer": {
|
| 4620 |
-
"version": "5.1.2",
|
| 4621 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 4622 |
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
| 4623 |
-
}
|
| 4624 |
-
}
|
| 4625 |
-
},
|
| 4626 |
-
"cookie": {
|
| 4627 |
-
"version": "0.4.1",
|
| 4628 |
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz",
|
| 4629 |
-
"integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==",
|
| 4630 |
-
"dev": true
|
| 4631 |
-
},
|
| 4632 |
-
"cookie-signature": {
|
| 4633 |
-
"version": "1.0.6",
|
| 4634 |
-
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
| 4635 |
-
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
|
| 4636 |
-
"dev": true
|
| 4637 |
-
},
|
| 4638 |
-
"cookies": {
|
| 4639 |
-
"version": "0.8.0",
|
| 4640 |
-
"resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz",
|
| 4641 |
-
"integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==",
|
| 4642 |
-
"dev": true,
|
| 4643 |
-
"requires": {
|
| 4644 |
-
"depd": "~2.0.0",
|
| 4645 |
-
"keygrip": "~1.1.0"
|
| 4646 |
-
},
|
| 4647 |
-
"dependencies": {
|
| 4648 |
-
"depd": {
|
| 4649 |
-
"version": "2.0.0",
|
| 4650 |
-
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
| 4651 |
-
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
| 4652 |
-
"dev": true
|
| 4653 |
-
}
|
| 4654 |
-
}
|
| 4655 |
-
},
|
| 4656 |
-
"core-js-compat": {
|
| 4657 |
-
"version": "3.19.1",
|
| 4658 |
-
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.1.tgz",
|
| 4659 |
-
"integrity": "sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==",
|
| 4660 |
-
"dev": true,
|
| 4661 |
-
"requires": {
|
| 4662 |
-
"browserslist": "^4.17.6",
|
| 4663 |
-
"semver": "7.0.0"
|
| 4664 |
-
},
|
| 4665 |
-
"dependencies": {
|
| 4666 |
-
"semver": {
|
| 4667 |
-
"version": "7.0.0",
|
| 4668 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
|
| 4669 |
-
"integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
|
| 4670 |
-
"dev": true
|
| 4671 |
-
}
|
| 4672 |
-
}
|
| 4673 |
-
},
|
| 4674 |
-
"core-util-is": {
|
| 4675 |
-
"version": "1.0.3",
|
| 4676 |
-
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
| 4677 |
-
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
| 4678 |
-
"dev": true
|
| 4679 |
-
},
|
| 4680 |
-
"cosmiconfig": {
|
| 4681 |
-
"version": "6.0.0",
|
| 4682 |
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
|
| 4683 |
-
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
|
| 4684 |
-
"requires": {
|
| 4685 |
-
"@types/parse-json": "^4.0.0",
|
| 4686 |
-
"import-fresh": "^3.1.0",
|
| 4687 |
-
"parse-json": "^5.0.0",
|
| 4688 |
-
"path-type": "^4.0.0",
|
| 4689 |
-
"yaml": "^1.7.2"
|
| 4690 |
-
}
|
| 4691 |
-
},
|
| 4692 |
-
"create-ecdh": {
|
| 4693 |
-
"version": "4.0.4",
|
| 4694 |
-
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
|
| 4695 |
-
"integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==",
|
| 4696 |
-
"dev": true,
|
| 4697 |
-
"requires": {
|
| 4698 |
-
"bn.js": "^4.1.0",
|
| 4699 |
-
"elliptic": "^6.5.3"
|
| 4700 |
-
},
|
| 4701 |
-
"dependencies": {
|
| 4702 |
-
"bn.js": {
|
| 4703 |
-
"version": "4.12.0",
|
| 4704 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 4705 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 4706 |
-
"dev": true
|
| 4707 |
-
}
|
| 4708 |
-
}
|
| 4709 |
-
},
|
| 4710 |
-
"create-hash": {
|
| 4711 |
-
"version": "1.2.0",
|
| 4712 |
-
"resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
|
| 4713 |
-
"integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
|
| 4714 |
-
"dev": true,
|
| 4715 |
-
"requires": {
|
| 4716 |
-
"cipher-base": "^1.0.1",
|
| 4717 |
-
"inherits": "^2.0.1",
|
| 4718 |
-
"md5.js": "^1.3.4",
|
| 4719 |
-
"ripemd160": "^2.0.1",
|
| 4720 |
-
"sha.js": "^2.4.0"
|
| 4721 |
-
}
|
| 4722 |
-
},
|
| 4723 |
-
"create-hmac": {
|
| 4724 |
-
"version": "1.1.7",
|
| 4725 |
-
"resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
|
| 4726 |
-
"integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
|
| 4727 |
-
"dev": true,
|
| 4728 |
-
"requires": {
|
| 4729 |
-
"cipher-base": "^1.0.3",
|
| 4730 |
-
"create-hash": "^1.1.0",
|
| 4731 |
-
"inherits": "^2.0.1",
|
| 4732 |
-
"ripemd160": "^2.0.0",
|
| 4733 |
-
"safe-buffer": "^5.0.1",
|
| 4734 |
-
"sha.js": "^2.4.8"
|
| 4735 |
-
}
|
| 4736 |
-
},
|
| 4737 |
-
"cross-spawn": {
|
| 4738 |
-
"version": "7.0.3",
|
| 4739 |
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
|
| 4740 |
-
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
|
| 4741 |
-
"dev": true,
|
| 4742 |
-
"requires": {
|
| 4743 |
-
"path-key": "^3.1.0",
|
| 4744 |
-
"shebang-command": "^2.0.0",
|
| 4745 |
-
"which": "^2.0.1"
|
| 4746 |
-
}
|
| 4747 |
-
},
|
| 4748 |
-
"crypt": {
|
| 4749 |
-
"version": "0.0.2",
|
| 4750 |
-
"resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz",
|
| 4751 |
-
"integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=",
|
| 4752 |
-
"dev": true
|
| 4753 |
-
},
|
| 4754 |
-
"crypto-browserify": {
|
| 4755 |
-
"version": "3.12.0",
|
| 4756 |
-
"resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
|
| 4757 |
-
"integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
|
| 4758 |
-
"dev": true,
|
| 4759 |
-
"requires": {
|
| 4760 |
-
"browserify-cipher": "^1.0.0",
|
| 4761 |
-
"browserify-sign": "^4.0.0",
|
| 4762 |
-
"create-ecdh": "^4.0.0",
|
| 4763 |
-
"create-hash": "^1.1.0",
|
| 4764 |
-
"create-hmac": "^1.1.0",
|
| 4765 |
-
"diffie-hellman": "^5.0.0",
|
| 4766 |
-
"inherits": "^2.0.1",
|
| 4767 |
-
"pbkdf2": "^3.0.3",
|
| 4768 |
-
"public-encrypt": "^4.0.0",
|
| 4769 |
-
"randombytes": "^2.0.0",
|
| 4770 |
-
"randomfill": "^1.0.3"
|
| 4771 |
-
}
|
| 4772 |
-
},
|
| 4773 |
-
"css-color-names": {
|
| 4774 |
-
"version": "1.0.1",
|
| 4775 |
-
"resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-1.0.1.tgz",
|
| 4776 |
-
"integrity": "sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==",
|
| 4777 |
-
"dev": true
|
| 4778 |
-
},
|
| 4779 |
-
"css-declaration-sorter": {
|
| 4780 |
-
"version": "6.1.3",
|
| 4781 |
-
"resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz",
|
| 4782 |
-
"integrity": "sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA==",
|
| 4783 |
-
"dev": true,
|
| 4784 |
-
"requires": {
|
| 4785 |
-
"timsort": "^0.3.0"
|
| 4786 |
-
}
|
| 4787 |
-
},
|
| 4788 |
-
"css-loader": {
|
| 4789 |
-
"version": "5.2.7",
|
| 4790 |
-
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz",
|
| 4791 |
-
"integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==",
|
| 4792 |
-
"dev": true,
|
| 4793 |
-
"requires": {
|
| 4794 |
-
"icss-utils": "^5.1.0",
|
| 4795 |
-
"loader-utils": "^2.0.0",
|
| 4796 |
-
"postcss": "^8.2.15",
|
| 4797 |
-
"postcss-modules-extract-imports": "^3.0.0",
|
| 4798 |
-
"postcss-modules-local-by-default": "^4.0.0",
|
| 4799 |
-
"postcss-modules-scope": "^3.0.0",
|
| 4800 |
-
"postcss-modules-values": "^4.0.0",
|
| 4801 |
-
"postcss-value-parser": "^4.1.0",
|
| 4802 |
-
"schema-utils": "^3.0.0",
|
| 4803 |
-
"semver": "^7.3.5"
|
| 4804 |
-
},
|
| 4805 |
-
"dependencies": {
|
| 4806 |
-
"loader-utils": {
|
| 4807 |
-
"version": "2.0.2",
|
| 4808 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
| 4809 |
-
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
| 4810 |
-
"dev": true,
|
| 4811 |
-
"requires": {
|
| 4812 |
-
"big.js": "^5.2.2",
|
| 4813 |
-
"emojis-list": "^3.0.0",
|
| 4814 |
-
"json5": "^2.1.2"
|
| 4815 |
-
}
|
| 4816 |
-
},
|
| 4817 |
-
"schema-utils": {
|
| 4818 |
-
"version": "3.1.1",
|
| 4819 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 4820 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 4821 |
-
"dev": true,
|
| 4822 |
-
"requires": {
|
| 4823 |
-
"@types/json-schema": "^7.0.8",
|
| 4824 |
-
"ajv": "^6.12.5",
|
| 4825 |
-
"ajv-keywords": "^3.5.2"
|
| 4826 |
-
}
|
| 4827 |
-
}
|
| 4828 |
-
}
|
| 4829 |
-
},
|
| 4830 |
-
"css-mediaquery": {
|
| 4831 |
-
"version": "0.1.2",
|
| 4832 |
-
"resolved": "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz",
|
| 4833 |
-
"integrity": "sha1-aiw3NEkoYYYxxUvTPO3TAdoYvqA="
|
| 4834 |
-
},
|
| 4835 |
-
"css-select": {
|
| 4836 |
-
"version": "4.1.3",
|
| 4837 |
-
"resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz",
|
| 4838 |
-
"integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==",
|
| 4839 |
-
"dev": true,
|
| 4840 |
-
"requires": {
|
| 4841 |
-
"boolbase": "^1.0.0",
|
| 4842 |
-
"css-what": "^5.0.0",
|
| 4843 |
-
"domhandler": "^4.2.0",
|
| 4844 |
-
"domutils": "^2.6.0",
|
| 4845 |
-
"nth-check": "^2.0.0"
|
| 4846 |
-
}
|
| 4847 |
-
},
|
| 4848 |
-
"css-tree": {
|
| 4849 |
-
"version": "1.1.3",
|
| 4850 |
-
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz",
|
| 4851 |
-
"integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==",
|
| 4852 |
-
"dev": true,
|
| 4853 |
-
"requires": {
|
| 4854 |
-
"mdn-data": "2.0.14",
|
| 4855 |
-
"source-map": "^0.6.1"
|
| 4856 |
-
},
|
| 4857 |
-
"dependencies": {
|
| 4858 |
-
"source-map": {
|
| 4859 |
-
"version": "0.6.1",
|
| 4860 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 4861 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 4862 |
-
"dev": true
|
| 4863 |
-
}
|
| 4864 |
-
}
|
| 4865 |
-
},
|
| 4866 |
-
"css-unit-converter": {
|
| 4867 |
-
"version": "1.1.2",
|
| 4868 |
-
"resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz",
|
| 4869 |
-
"integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA=="
|
| 4870 |
-
},
|
| 4871 |
-
"css-what": {
|
| 4872 |
-
"version": "5.1.0",
|
| 4873 |
-
"resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz",
|
| 4874 |
-
"integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==",
|
| 4875 |
-
"dev": true
|
| 4876 |
-
},
|
| 4877 |
-
"cssesc": {
|
| 4878 |
-
"version": "3.0.0",
|
| 4879 |
-
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
| 4880 |
-
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
|
| 4881 |
-
},
|
| 4882 |
-
"cssnano": {
|
| 4883 |
-
"version": "5.0.10",
|
| 4884 |
-
"resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.10.tgz",
|
| 4885 |
-
"integrity": "sha512-YfNhVJJ04imffOpbPbXP2zjIoByf0m8E2c/s/HnvSvjXgzXMfgopVjAEGvxYOjkOpWuRQDg/OZFjO7WW94Ri8w==",
|
| 4886 |
-
"dev": true,
|
| 4887 |
-
"requires": {
|
| 4888 |
-
"cssnano-preset-default": "^5.1.6",
|
| 4889 |
-
"is-resolvable": "^1.1.0",
|
| 4890 |
-
"lilconfig": "^2.0.3",
|
| 4891 |
-
"yaml": "^1.10.2"
|
| 4892 |
-
}
|
| 4893 |
-
},
|
| 4894 |
-
"cssnano-preset-default": {
|
| 4895 |
-
"version": "5.1.6",
|
| 4896 |
-
"resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.6.tgz",
|
| 4897 |
-
"integrity": "sha512-X2nDeNGBXc0486oHjT2vSj+TdeyVsxRvJUxaOH50hOM6vSDLkKd0+59YXpSZRInJ4sNtBOykS4KsPfhdrU/35w==",
|
| 4898 |
-
"dev": true,
|
| 4899 |
-
"requires": {
|
| 4900 |
-
"css-declaration-sorter": "^6.0.3",
|
| 4901 |
-
"cssnano-utils": "^2.0.1",
|
| 4902 |
-
"postcss-calc": "^8.0.0",
|
| 4903 |
-
"postcss-colormin": "^5.2.1",
|
| 4904 |
-
"postcss-convert-values": "^5.0.2",
|
| 4905 |
-
"postcss-discard-comments": "^5.0.1",
|
| 4906 |
-
"postcss-discard-duplicates": "^5.0.1",
|
| 4907 |
-
"postcss-discard-empty": "^5.0.1",
|
| 4908 |
-
"postcss-discard-overridden": "^5.0.1",
|
| 4909 |
-
"postcss-merge-longhand": "^5.0.3",
|
| 4910 |
-
"postcss-merge-rules": "^5.0.2",
|
| 4911 |
-
"postcss-minify-font-values": "^5.0.1",
|
| 4912 |
-
"postcss-minify-gradients": "^5.0.3",
|
| 4913 |
-
"postcss-minify-params": "^5.0.1",
|
| 4914 |
-
"postcss-minify-selectors": "^5.1.0",
|
| 4915 |
-
"postcss-normalize-charset": "^5.0.1",
|
| 4916 |
-
"postcss-normalize-display-values": "^5.0.1",
|
| 4917 |
-
"postcss-normalize-positions": "^5.0.1",
|
| 4918 |
-
"postcss-normalize-repeat-style": "^5.0.1",
|
| 4919 |
-
"postcss-normalize-string": "^5.0.1",
|
| 4920 |
-
"postcss-normalize-timing-functions": "^5.0.1",
|
| 4921 |
-
"postcss-normalize-unicode": "^5.0.1",
|
| 4922 |
-
"postcss-normalize-url": "^5.0.2",
|
| 4923 |
-
"postcss-normalize-whitespace": "^5.0.1",
|
| 4924 |
-
"postcss-ordered-values": "^5.0.2",
|
| 4925 |
-
"postcss-reduce-initial": "^5.0.1",
|
| 4926 |
-
"postcss-reduce-transforms": "^5.0.1",
|
| 4927 |
-
"postcss-svgo": "^5.0.3",
|
| 4928 |
-
"postcss-unique-selectors": "^5.0.1"
|
| 4929 |
-
}
|
| 4930 |
-
},
|
| 4931 |
-
"cssnano-utils": {
|
| 4932 |
-
"version": "2.0.1",
|
| 4933 |
-
"resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz",
|
| 4934 |
-
"integrity": "sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==",
|
| 4935 |
-
"dev": true
|
| 4936 |
-
},
|
| 4937 |
-
"csso": {
|
| 4938 |
-
"version": "4.2.0",
|
| 4939 |
-
"resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz",
|
| 4940 |
-
"integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==",
|
| 4941 |
-
"dev": true,
|
| 4942 |
-
"requires": {
|
| 4943 |
-
"css-tree": "^1.1.2"
|
| 4944 |
-
}
|
| 4945 |
-
},
|
| 4946 |
-
"csstype": {
|
| 4947 |
-
"version": "3.0.8",
|
| 4948 |
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz",
|
| 4949 |
-
"integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="
|
| 4950 |
-
},
|
| 4951 |
-
"debug": {
|
| 4952 |
-
"version": "4.3.1",
|
| 4953 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
|
| 4954 |
-
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
|
| 4955 |
-
"dev": true,
|
| 4956 |
-
"requires": {
|
| 4957 |
-
"ms": "2.1.2"
|
| 4958 |
-
}
|
| 4959 |
-
},
|
| 4960 |
-
"decamelize": {
|
| 4961 |
-
"version": "1.2.0",
|
| 4962 |
-
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
| 4963 |
-
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
|
| 4964 |
-
},
|
| 4965 |
-
"deep-equal": {
|
| 4966 |
-
"version": "1.1.1",
|
| 4967 |
-
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
|
| 4968 |
-
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
|
| 4969 |
-
"dev": true,
|
| 4970 |
-
"requires": {
|
| 4971 |
-
"is-arguments": "^1.0.4",
|
| 4972 |
-
"is-date-object": "^1.0.1",
|
| 4973 |
-
"is-regex": "^1.0.4",
|
| 4974 |
-
"object-is": "^1.0.1",
|
| 4975 |
-
"object-keys": "^1.1.1",
|
| 4976 |
-
"regexp.prototype.flags": "^1.2.0"
|
| 4977 |
-
}
|
| 4978 |
-
},
|
| 4979 |
-
"deep-is": {
|
| 4980 |
-
"version": "0.1.4",
|
| 4981 |
-
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
|
| 4982 |
-
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
|
| 4983 |
-
"dev": true
|
| 4984 |
-
},
|
| 4985 |
-
"deepmerge": {
|
| 4986 |
-
"version": "1.5.2",
|
| 4987 |
-
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz",
|
| 4988 |
-
"integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ=="
|
| 4989 |
-
},
|
| 4990 |
-
"default-gateway": {
|
| 4991 |
-
"version": "6.0.3",
|
| 4992 |
-
"resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz",
|
| 4993 |
-
"integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==",
|
| 4994 |
-
"dev": true,
|
| 4995 |
-
"requires": {
|
| 4996 |
-
"execa": "^5.0.0"
|
| 4997 |
-
}
|
| 4998 |
-
},
|
| 4999 |
-
"define-lazy-prop": {
|
| 5000 |
-
"version": "2.0.0",
|
| 5001 |
-
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
|
| 5002 |
-
"integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
|
| 5003 |
-
"dev": true
|
| 5004 |
-
},
|
| 5005 |
-
"define-properties": {
|
| 5006 |
-
"version": "1.1.3",
|
| 5007 |
-
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
|
| 5008 |
-
"integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
|
| 5009 |
-
"requires": {
|
| 5010 |
-
"object-keys": "^1.0.12"
|
| 5011 |
-
}
|
| 5012 |
-
},
|
| 5013 |
-
"defined": {
|
| 5014 |
-
"version": "1.0.0",
|
| 5015 |
-
"resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
|
| 5016 |
-
"integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM="
|
| 5017 |
-
},
|
| 5018 |
-
"del": {
|
| 5019 |
-
"version": "6.0.0",
|
| 5020 |
-
"resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz",
|
| 5021 |
-
"integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==",
|
| 5022 |
-
"dev": true,
|
| 5023 |
-
"requires": {
|
| 5024 |
-
"globby": "^11.0.1",
|
| 5025 |
-
"graceful-fs": "^4.2.4",
|
| 5026 |
-
"is-glob": "^4.0.1",
|
| 5027 |
-
"is-path-cwd": "^2.2.0",
|
| 5028 |
-
"is-path-inside": "^3.0.2",
|
| 5029 |
-
"p-map": "^4.0.0",
|
| 5030 |
-
"rimraf": "^3.0.2",
|
| 5031 |
-
"slash": "^3.0.0"
|
| 5032 |
-
},
|
| 5033 |
-
"dependencies": {
|
| 5034 |
-
"globby": {
|
| 5035 |
-
"version": "11.0.4",
|
| 5036 |
-
"resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz",
|
| 5037 |
-
"integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==",
|
| 5038 |
-
"dev": true,
|
| 5039 |
-
"requires": {
|
| 5040 |
-
"array-union": "^2.1.0",
|
| 5041 |
-
"dir-glob": "^3.0.1",
|
| 5042 |
-
"fast-glob": "^3.1.1",
|
| 5043 |
-
"ignore": "^5.1.4",
|
| 5044 |
-
"merge2": "^1.3.0",
|
| 5045 |
-
"slash": "^3.0.0"
|
| 5046 |
-
}
|
| 5047 |
-
},
|
| 5048 |
-
"ignore": {
|
| 5049 |
-
"version": "5.1.9",
|
| 5050 |
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz",
|
| 5051 |
-
"integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==",
|
| 5052 |
-
"dev": true
|
| 5053 |
-
}
|
| 5054 |
-
}
|
| 5055 |
-
},
|
| 5056 |
-
"delegate": {
|
| 5057 |
-
"version": "3.2.0",
|
| 5058 |
-
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
| 5059 |
-
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
|
| 5060 |
-
},
|
| 5061 |
-
"delegates": {
|
| 5062 |
-
"version": "1.0.0",
|
| 5063 |
-
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
|
| 5064 |
-
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
|
| 5065 |
-
"dev": true
|
| 5066 |
-
},
|
| 5067 |
-
"depd": {
|
| 5068 |
-
"version": "1.1.2",
|
| 5069 |
-
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
|
| 5070 |
-
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
|
| 5071 |
-
"dev": true
|
| 5072 |
-
},
|
| 5073 |
-
"des.js": {
|
| 5074 |
-
"version": "1.0.1",
|
| 5075 |
-
"resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
|
| 5076 |
-
"integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
|
| 5077 |
-
"dev": true,
|
| 5078 |
-
"requires": {
|
| 5079 |
-
"inherits": "^2.0.1",
|
| 5080 |
-
"minimalistic-assert": "^1.0.0"
|
| 5081 |
-
}
|
| 5082 |
-
},
|
| 5083 |
-
"destroy": {
|
| 5084 |
-
"version": "1.0.4",
|
| 5085 |
-
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
|
| 5086 |
-
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
|
| 5087 |
-
"dev": true
|
| 5088 |
-
},
|
| 5089 |
-
"detect-node": {
|
| 5090 |
-
"version": "2.1.0",
|
| 5091 |
-
"resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
|
| 5092 |
-
"integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
|
| 5093 |
-
"dev": true
|
| 5094 |
-
},
|
| 5095 |
-
"detective": {
|
| 5096 |
-
"version": "5.2.0",
|
| 5097 |
-
"resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz",
|
| 5098 |
-
"integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==",
|
| 5099 |
-
"requires": {
|
| 5100 |
-
"acorn-node": "^1.6.1",
|
| 5101 |
-
"defined": "^1.0.0",
|
| 5102 |
-
"minimist": "^1.1.1"
|
| 5103 |
-
}
|
| 5104 |
-
},
|
| 5105 |
-
"dev-ip": {
|
| 5106 |
-
"version": "1.0.1",
|
| 5107 |
-
"resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz",
|
| 5108 |
-
"integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=",
|
| 5109 |
-
"dev": true
|
| 5110 |
-
},
|
| 5111 |
-
"didyoumean": {
|
| 5112 |
-
"version": "1.2.2",
|
| 5113 |
-
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
|
| 5114 |
-
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
|
| 5115 |
-
},
|
| 5116 |
-
"diff": {
|
| 5117 |
-
"version": "4.0.2",
|
| 5118 |
-
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
|
| 5119 |
-
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="
|
| 5120 |
-
},
|
| 5121 |
-
"diffie-hellman": {
|
| 5122 |
-
"version": "5.0.3",
|
| 5123 |
-
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
|
| 5124 |
-
"integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
|
| 5125 |
-
"dev": true,
|
| 5126 |
-
"requires": {
|
| 5127 |
-
"bn.js": "^4.1.0",
|
| 5128 |
-
"miller-rabin": "^4.0.0",
|
| 5129 |
-
"randombytes": "^2.0.0"
|
| 5130 |
-
},
|
| 5131 |
-
"dependencies": {
|
| 5132 |
-
"bn.js": {
|
| 5133 |
-
"version": "4.12.0",
|
| 5134 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 5135 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 5136 |
-
"dev": true
|
| 5137 |
-
}
|
| 5138 |
-
}
|
| 5139 |
-
},
|
| 5140 |
-
"dir-glob": {
|
| 5141 |
-
"version": "3.0.1",
|
| 5142 |
-
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
|
| 5143 |
-
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
|
| 5144 |
-
"dev": true,
|
| 5145 |
-
"requires": {
|
| 5146 |
-
"path-type": "^4.0.0"
|
| 5147 |
-
}
|
| 5148 |
-
},
|
| 5149 |
-
"direction": {
|
| 5150 |
-
"version": "1.0.4",
|
| 5151 |
-
"resolved": "https://registry.npmjs.org/direction/-/direction-1.0.4.tgz",
|
| 5152 |
-
"integrity": "sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ=="
|
| 5153 |
-
},
|
| 5154 |
-
"dlv": {
|
| 5155 |
-
"version": "1.1.3",
|
| 5156 |
-
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
|
| 5157 |
-
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
|
| 5158 |
-
},
|
| 5159 |
-
"dns-equal": {
|
| 5160 |
-
"version": "1.0.0",
|
| 5161 |
-
"resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz",
|
| 5162 |
-
"integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=",
|
| 5163 |
-
"dev": true
|
| 5164 |
-
},
|
| 5165 |
-
"dns-packet": {
|
| 5166 |
-
"version": "1.3.4",
|
| 5167 |
-
"resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz",
|
| 5168 |
-
"integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==",
|
| 5169 |
-
"dev": true,
|
| 5170 |
-
"requires": {
|
| 5171 |
-
"ip": "^1.1.0",
|
| 5172 |
-
"safe-buffer": "^5.0.1"
|
| 5173 |
-
}
|
| 5174 |
-
},
|
| 5175 |
-
"dns-txt": {
|
| 5176 |
-
"version": "2.0.2",
|
| 5177 |
-
"resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz",
|
| 5178 |
-
"integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=",
|
| 5179 |
-
"dev": true,
|
| 5180 |
-
"requires": {
|
| 5181 |
-
"buffer-indexof": "^1.0.0"
|
| 5182 |
-
}
|
| 5183 |
-
},
|
| 5184 |
-
"doctrine": {
|
| 5185 |
-
"version": "3.0.0",
|
| 5186 |
-
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
| 5187 |
-
"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
|
| 5188 |
-
"dev": true,
|
| 5189 |
-
"requires": {
|
| 5190 |
-
"esutils": "^2.0.2"
|
| 5191 |
-
}
|
| 5192 |
-
},
|
| 5193 |
-
"document.contains": {
|
| 5194 |
-
"version": "1.0.2",
|
| 5195 |
-
"resolved": "https://registry.npmjs.org/document.contains/-/document.contains-1.0.2.tgz",
|
| 5196 |
-
"integrity": "sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q==",
|
| 5197 |
-
"requires": {
|
| 5198 |
-
"define-properties": "^1.1.3"
|
| 5199 |
-
}
|
| 5200 |
-
},
|
| 5201 |
-
"dom-helpers": {
|
| 5202 |
-
"version": "5.2.1",
|
| 5203 |
-
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
|
| 5204 |
-
"integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
|
| 5205 |
-
"requires": {
|
| 5206 |
-
"@babel/runtime": "^7.8.7",
|
| 5207 |
-
"csstype": "^3.0.2"
|
| 5208 |
-
}
|
| 5209 |
-
},
|
| 5210 |
-
"dom-scroll-into-view": {
|
| 5211 |
-
"version": "1.2.1",
|
| 5212 |
-
"resolved": "https://registry.npmjs.org/dom-scroll-into-view/-/dom-scroll-into-view-1.2.1.tgz",
|
| 5213 |
-
"integrity": "sha1-6PNnMt0ImwIBqI14Fdw/iObWbH4="
|
| 5214 |
-
},
|
| 5215 |
-
"dom-serializer": {
|
| 5216 |
-
"version": "1.3.2",
|
| 5217 |
-
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
|
| 5218 |
-
"integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
|
| 5219 |
-
"dev": true,
|
| 5220 |
-
"requires": {
|
| 5221 |
-
"domelementtype": "^2.0.1",
|
| 5222 |
-
"domhandler": "^4.2.0",
|
| 5223 |
-
"entities": "^2.0.0"
|
| 5224 |
-
}
|
| 5225 |
-
},
|
| 5226 |
-
"domain-browser": {
|
| 5227 |
-
"version": "1.2.0",
|
| 5228 |
-
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
|
| 5229 |
-
"integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
|
| 5230 |
-
"dev": true
|
| 5231 |
-
},
|
| 5232 |
-
"domelementtype": {
|
| 5233 |
-
"version": "2.2.0",
|
| 5234 |
-
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
|
| 5235 |
-
"integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
|
| 5236 |
-
"dev": true
|
| 5237 |
-
},
|
| 5238 |
-
"domhandler": {
|
| 5239 |
-
"version": "4.2.2",
|
| 5240 |
-
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz",
|
| 5241 |
-
"integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==",
|
| 5242 |
-
"dev": true,
|
| 5243 |
-
"requires": {
|
| 5244 |
-
"domelementtype": "^2.2.0"
|
| 5245 |
-
}
|
| 5246 |
-
},
|
| 5247 |
-
"domutils": {
|
| 5248 |
-
"version": "2.8.0",
|
| 5249 |
-
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
|
| 5250 |
-
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
|
| 5251 |
-
"dev": true,
|
| 5252 |
-
"requires": {
|
| 5253 |
-
"dom-serializer": "^1.0.1",
|
| 5254 |
-
"domelementtype": "^2.2.0",
|
| 5255 |
-
"domhandler": "^4.2.0"
|
| 5256 |
-
}
|
| 5257 |
-
},
|
| 5258 |
-
"dot-case": {
|
| 5259 |
-
"version": "3.0.4",
|
| 5260 |
-
"resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
|
| 5261 |
-
"integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
|
| 5262 |
-
"dev": true,
|
| 5263 |
-
"requires": {
|
| 5264 |
-
"no-case": "^3.0.4",
|
| 5265 |
-
"tslib": "^2.0.3"
|
| 5266 |
-
}
|
| 5267 |
-
},
|
| 5268 |
-
"dotenv": {
|
| 5269 |
-
"version": "10.0.0",
|
| 5270 |
-
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
|
| 5271 |
-
"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
|
| 5272 |
-
"dev": true
|
| 5273 |
-
},
|
| 5274 |
-
"dotenv-expand": {
|
| 5275 |
-
"version": "5.1.0",
|
| 5276 |
-
"resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz",
|
| 5277 |
-
"integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==",
|
| 5278 |
-
"dev": true
|
| 5279 |
-
},
|
| 5280 |
-
"downshift": {
|
| 5281 |
-
"version": "6.1.7",
|
| 5282 |
-
"resolved": "https://registry.npmjs.org/downshift/-/downshift-6.1.7.tgz",
|
| 5283 |
-
"integrity": "sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==",
|
| 5284 |
-
"requires": {
|
| 5285 |
-
"@babel/runtime": "^7.14.8",
|
| 5286 |
-
"compute-scroll-into-view": "^1.0.17",
|
| 5287 |
-
"prop-types": "^15.7.2",
|
| 5288 |
-
"react-is": "^17.0.2",
|
| 5289 |
-
"tslib": "^2.3.0"
|
| 5290 |
-
},
|
| 5291 |
-
"dependencies": {
|
| 5292 |
-
"@babel/runtime": {
|
| 5293 |
-
"version": "7.16.3",
|
| 5294 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 5295 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 5296 |
-
"requires": {
|
| 5297 |
-
"regenerator-runtime": "^0.13.4"
|
| 5298 |
-
}
|
| 5299 |
-
},
|
| 5300 |
-
"react-is": {
|
| 5301 |
-
"version": "17.0.2",
|
| 5302 |
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
|
| 5303 |
-
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
|
| 5304 |
-
}
|
| 5305 |
-
}
|
| 5306 |
-
},
|
| 5307 |
-
"easy-extender": {
|
| 5308 |
-
"version": "2.3.4",
|
| 5309 |
-
"resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz",
|
| 5310 |
-
"integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==",
|
| 5311 |
-
"dev": true,
|
| 5312 |
-
"requires": {
|
| 5313 |
-
"lodash": "^4.17.10"
|
| 5314 |
-
}
|
| 5315 |
-
},
|
| 5316 |
-
"eazy-logger": {
|
| 5317 |
-
"version": "3.1.0",
|
| 5318 |
-
"resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.1.0.tgz",
|
| 5319 |
-
"integrity": "sha512-/snsn2JqBtUSSstEl4R0RKjkisGHAhvYj89i7r3ytNUKW12y178KDZwXLXIgwDqLW6E/VRMT9qfld7wvFae8bQ==",
|
| 5320 |
-
"dev": true,
|
| 5321 |
-
"requires": {
|
| 5322 |
-
"tfunk": "^4.0.0"
|
| 5323 |
-
}
|
| 5324 |
-
},
|
| 5325 |
-
"ee-first": {
|
| 5326 |
-
"version": "1.1.1",
|
| 5327 |
-
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
| 5328 |
-
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
|
| 5329 |
-
"dev": true
|
| 5330 |
-
},
|
| 5331 |
-
"electron-to-chromium": {
|
| 5332 |
-
"version": "1.3.897",
|
| 5333 |
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.897.tgz",
|
| 5334 |
-
"integrity": "sha512-nRNZhAZ7hVCe75jrCUG7xLOqHMwloJMj6GEXEzY4OMahRGgwerAo+ls/qbqUwFH+E20eaSncKkQ4W8KP5SOiAg==",
|
| 5335 |
-
"dev": true
|
| 5336 |
-
},
|
| 5337 |
-
"elliptic": {
|
| 5338 |
-
"version": "6.5.4",
|
| 5339 |
-
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
| 5340 |
-
"integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
|
| 5341 |
-
"dev": true,
|
| 5342 |
-
"requires": {
|
| 5343 |
-
"bn.js": "^4.11.9",
|
| 5344 |
-
"brorand": "^1.1.0",
|
| 5345 |
-
"hash.js": "^1.0.0",
|
| 5346 |
-
"hmac-drbg": "^1.0.1",
|
| 5347 |
-
"inherits": "^2.0.4",
|
| 5348 |
-
"minimalistic-assert": "^1.0.1",
|
| 5349 |
-
"minimalistic-crypto-utils": "^1.0.1"
|
| 5350 |
-
},
|
| 5351 |
-
"dependencies": {
|
| 5352 |
-
"bn.js": {
|
| 5353 |
-
"version": "4.12.0",
|
| 5354 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 5355 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 5356 |
-
"dev": true
|
| 5357 |
-
}
|
| 5358 |
-
}
|
| 5359 |
-
},
|
| 5360 |
-
"emoji-regex": {
|
| 5361 |
-
"version": "7.0.3",
|
| 5362 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
|
| 5363 |
-
"integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
|
| 5364 |
-
},
|
| 5365 |
-
"emojis-list": {
|
| 5366 |
-
"version": "3.0.0",
|
| 5367 |
-
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
|
| 5368 |
-
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
|
| 5369 |
-
"dev": true
|
| 5370 |
-
},
|
| 5371 |
-
"encodeurl": {
|
| 5372 |
-
"version": "1.0.2",
|
| 5373 |
-
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
| 5374 |
-
"integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
|
| 5375 |
-
"dev": true
|
| 5376 |
-
},
|
| 5377 |
-
"encoding": {
|
| 5378 |
-
"version": "0.1.13",
|
| 5379 |
-
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
|
| 5380 |
-
"integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
|
| 5381 |
-
"requires": {
|
| 5382 |
-
"iconv-lite": "^0.6.2"
|
| 5383 |
-
}
|
| 5384 |
-
},
|
| 5385 |
-
"engine.io": {
|
| 5386 |
-
"version": "3.5.0",
|
| 5387 |
-
"resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.5.0.tgz",
|
| 5388 |
-
"integrity": "sha512-21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==",
|
| 5389 |
-
"dev": true,
|
| 5390 |
-
"requires": {
|
| 5391 |
-
"accepts": "~1.3.4",
|
| 5392 |
-
"base64id": "2.0.0",
|
| 5393 |
-
"cookie": "~0.4.1",
|
| 5394 |
-
"debug": "~4.1.0",
|
| 5395 |
-
"engine.io-parser": "~2.2.0",
|
| 5396 |
-
"ws": "~7.4.2"
|
| 5397 |
-
},
|
| 5398 |
-
"dependencies": {
|
| 5399 |
-
"debug": {
|
| 5400 |
-
"version": "4.1.1",
|
| 5401 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
| 5402 |
-
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
|
| 5403 |
-
"dev": true,
|
| 5404 |
-
"requires": {
|
| 5405 |
-
"ms": "^2.1.1"
|
| 5406 |
-
}
|
| 5407 |
-
}
|
| 5408 |
-
}
|
| 5409 |
-
},
|
| 5410 |
-
"engine.io-client": {
|
| 5411 |
-
"version": "3.5.2",
|
| 5412 |
-
"resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.2.tgz",
|
| 5413 |
-
"integrity": "sha512-QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==",
|
| 5414 |
-
"dev": true,
|
| 5415 |
-
"requires": {
|
| 5416 |
-
"component-emitter": "~1.3.0",
|
| 5417 |
-
"component-inherit": "0.0.3",
|
| 5418 |
-
"debug": "~3.1.0",
|
| 5419 |
-
"engine.io-parser": "~2.2.0",
|
| 5420 |
-
"has-cors": "1.1.0",
|
| 5421 |
-
"indexof": "0.0.1",
|
| 5422 |
-
"parseqs": "0.0.6",
|
| 5423 |
-
"parseuri": "0.0.6",
|
| 5424 |
-
"ws": "~7.4.2",
|
| 5425 |
-
"xmlhttprequest-ssl": "~1.6.2",
|
| 5426 |
-
"yeast": "0.1.2"
|
| 5427 |
-
},
|
| 5428 |
-
"dependencies": {
|
| 5429 |
-
"debug": {
|
| 5430 |
-
"version": "3.1.0",
|
| 5431 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
| 5432 |
-
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
| 5433 |
-
"dev": true,
|
| 5434 |
-
"requires": {
|
| 5435 |
-
"ms": "2.0.0"
|
| 5436 |
-
}
|
| 5437 |
-
},
|
| 5438 |
-
"ms": {
|
| 5439 |
-
"version": "2.0.0",
|
| 5440 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 5441 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 5442 |
-
"dev": true
|
| 5443 |
-
}
|
| 5444 |
-
}
|
| 5445 |
-
},
|
| 5446 |
-
"engine.io-parser": {
|
| 5447 |
-
"version": "2.2.1",
|
| 5448 |
-
"resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz",
|
| 5449 |
-
"integrity": "sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==",
|
| 5450 |
-
"dev": true,
|
| 5451 |
-
"requires": {
|
| 5452 |
-
"after": "0.8.2",
|
| 5453 |
-
"arraybuffer.slice": "~0.0.7",
|
| 5454 |
-
"base64-arraybuffer": "0.1.4",
|
| 5455 |
-
"blob": "0.0.5",
|
| 5456 |
-
"has-binary2": "~1.0.2"
|
| 5457 |
-
}
|
| 5458 |
-
},
|
| 5459 |
-
"enhanced-resolve": {
|
| 5460 |
-
"version": "5.8.3",
|
| 5461 |
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz",
|
| 5462 |
-
"integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==",
|
| 5463 |
-
"dev": true,
|
| 5464 |
-
"requires": {
|
| 5465 |
-
"graceful-fs": "^4.2.4",
|
| 5466 |
-
"tapable": "^2.2.0"
|
| 5467 |
-
}
|
| 5468 |
-
},
|
| 5469 |
-
"enquirer": {
|
| 5470 |
-
"version": "2.3.6",
|
| 5471 |
-
"resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz",
|
| 5472 |
-
"integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==",
|
| 5473 |
-
"dev": true,
|
| 5474 |
-
"requires": {
|
| 5475 |
-
"ansi-colors": "^4.1.1"
|
| 5476 |
-
}
|
| 5477 |
-
},
|
| 5478 |
-
"entities": {
|
| 5479 |
-
"version": "2.2.0",
|
| 5480 |
-
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
|
| 5481 |
-
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
|
| 5482 |
-
"dev": true
|
| 5483 |
-
},
|
| 5484 |
-
"envinfo": {
|
| 5485 |
-
"version": "7.8.1",
|
| 5486 |
-
"resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz",
|
| 5487 |
-
"integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==",
|
| 5488 |
-
"dev": true
|
| 5489 |
-
},
|
| 5490 |
-
"equivalent-key-map": {
|
| 5491 |
-
"version": "0.2.2",
|
| 5492 |
-
"resolved": "https://registry.npmjs.org/equivalent-key-map/-/equivalent-key-map-0.2.2.tgz",
|
| 5493 |
-
"integrity": "sha512-xvHeyCDbZzkpN4VHQj/n+j2lOwL0VWszG30X4cOrc9Y7Tuo2qCdZK/0AMod23Z5dCtNUbaju6p0rwOhHUk05ew=="
|
| 5494 |
-
},
|
| 5495 |
-
"error-ex": {
|
| 5496 |
-
"version": "1.3.2",
|
| 5497 |
-
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
| 5498 |
-
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
|
| 5499 |
-
"requires": {
|
| 5500 |
-
"is-arrayish": "^0.2.1"
|
| 5501 |
-
}
|
| 5502 |
-
},
|
| 5503 |
-
"es-abstract": {
|
| 5504 |
-
"version": "1.19.1",
|
| 5505 |
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz",
|
| 5506 |
-
"integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==",
|
| 5507 |
-
"requires": {
|
| 5508 |
-
"call-bind": "^1.0.2",
|
| 5509 |
-
"es-to-primitive": "^1.2.1",
|
| 5510 |
-
"function-bind": "^1.1.1",
|
| 5511 |
-
"get-intrinsic": "^1.1.1",
|
| 5512 |
-
"get-symbol-description": "^1.0.0",
|
| 5513 |
-
"has": "^1.0.3",
|
| 5514 |
-
"has-symbols": "^1.0.2",
|
| 5515 |
-
"internal-slot": "^1.0.3",
|
| 5516 |
-
"is-callable": "^1.2.4",
|
| 5517 |
-
"is-negative-zero": "^2.0.1",
|
| 5518 |
-
"is-regex": "^1.1.4",
|
| 5519 |
-
"is-shared-array-buffer": "^1.0.1",
|
| 5520 |
-
"is-string": "^1.0.7",
|
| 5521 |
-
"is-weakref": "^1.0.1",
|
| 5522 |
-
"object-inspect": "^1.11.0",
|
| 5523 |
-
"object-keys": "^1.1.1",
|
| 5524 |
-
"object.assign": "^4.1.2",
|
| 5525 |
-
"string.prototype.trimend": "^1.0.4",
|
| 5526 |
-
"string.prototype.trimstart": "^1.0.4",
|
| 5527 |
-
"unbox-primitive": "^1.0.1"
|
| 5528 |
-
}
|
| 5529 |
-
},
|
| 5530 |
-
"es-module-lexer": {
|
| 5531 |
-
"version": "0.9.3",
|
| 5532 |
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
|
| 5533 |
-
"integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
|
| 5534 |
-
"dev": true
|
| 5535 |
-
},
|
| 5536 |
-
"es-to-primitive": {
|
| 5537 |
-
"version": "1.2.1",
|
| 5538 |
-
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
|
| 5539 |
-
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
|
| 5540 |
-
"requires": {
|
| 5541 |
-
"is-callable": "^1.1.4",
|
| 5542 |
-
"is-date-object": "^1.0.1",
|
| 5543 |
-
"is-symbol": "^1.0.2"
|
| 5544 |
-
}
|
| 5545 |
-
},
|
| 5546 |
-
"escalade": {
|
| 5547 |
-
"version": "3.1.1",
|
| 5548 |
-
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
|
| 5549 |
-
"integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
|
| 5550 |
-
"dev": true
|
| 5551 |
-
},
|
| 5552 |
-
"escape-html": {
|
| 5553 |
-
"version": "1.0.3",
|
| 5554 |
-
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
| 5555 |
-
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
|
| 5556 |
-
"dev": true
|
| 5557 |
-
},
|
| 5558 |
-
"escape-string-regexp": {
|
| 5559 |
-
"version": "1.0.5",
|
| 5560 |
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
| 5561 |
-
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
| 5562 |
-
},
|
| 5563 |
-
"eslint": {
|
| 5564 |
-
"version": "8.2.0",
|
| 5565 |
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.2.0.tgz",
|
| 5566 |
-
"integrity": "sha512-erw7XmM+CLxTOickrimJ1SiF55jiNlVSp2qqm0NuBWPtHYQCegD5ZMaW0c3i5ytPqL+SSLaCxdvQXFPLJn+ABw==",
|
| 5567 |
-
"dev": true,
|
| 5568 |
-
"requires": {
|
| 5569 |
-
"@eslint/eslintrc": "^1.0.4",
|
| 5570 |
-
"@humanwhocodes/config-array": "^0.6.0",
|
| 5571 |
-
"ajv": "^6.10.0",
|
| 5572 |
-
"chalk": "^4.0.0",
|
| 5573 |
-
"cross-spawn": "^7.0.2",
|
| 5574 |
-
"debug": "^4.3.2",
|
| 5575 |
-
"doctrine": "^3.0.0",
|
| 5576 |
-
"enquirer": "^2.3.5",
|
| 5577 |
-
"escape-string-regexp": "^4.0.0",
|
| 5578 |
-
"eslint-scope": "^6.0.0",
|
| 5579 |
-
"eslint-utils": "^3.0.0",
|
| 5580 |
-
"eslint-visitor-keys": "^3.0.0",
|
| 5581 |
-
"espree": "^9.0.0",
|
| 5582 |
-
"esquery": "^1.4.0",
|
| 5583 |
-
"esutils": "^2.0.2",
|
| 5584 |
-
"fast-deep-equal": "^3.1.3",
|
| 5585 |
-
"file-entry-cache": "^6.0.1",
|
| 5586 |
-
"functional-red-black-tree": "^1.0.1",
|
| 5587 |
-
"glob-parent": "^6.0.1",
|
| 5588 |
-
"globals": "^13.6.0",
|
| 5589 |
-
"ignore": "^4.0.6",
|
| 5590 |
-
"import-fresh": "^3.0.0",
|
| 5591 |
-
"imurmurhash": "^0.1.4",
|
| 5592 |
-
"is-glob": "^4.0.0",
|
| 5593 |
-
"js-yaml": "^4.1.0",
|
| 5594 |
-
"json-stable-stringify-without-jsonify": "^1.0.1",
|
| 5595 |
-
"levn": "^0.4.1",
|
| 5596 |
-
"lodash.merge": "^4.6.2",
|
| 5597 |
-
"minimatch": "^3.0.4",
|
| 5598 |
-
"natural-compare": "^1.4.0",
|
| 5599 |
-
"optionator": "^0.9.1",
|
| 5600 |
-
"progress": "^2.0.0",
|
| 5601 |
-
"regexpp": "^3.2.0",
|
| 5602 |
-
"semver": "^7.2.1",
|
| 5603 |
-
"strip-ansi": "^6.0.1",
|
| 5604 |
-
"strip-json-comments": "^3.1.0",
|
| 5605 |
-
"text-table": "^0.2.0",
|
| 5606 |
-
"v8-compile-cache": "^2.0.3"
|
| 5607 |
-
},
|
| 5608 |
-
"dependencies": {
|
| 5609 |
-
"ansi-regex": {
|
| 5610 |
-
"version": "5.0.1",
|
| 5611 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 5612 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 5613 |
-
"dev": true
|
| 5614 |
-
},
|
| 5615 |
-
"ansi-styles": {
|
| 5616 |
-
"version": "4.3.0",
|
| 5617 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 5618 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 5619 |
-
"dev": true,
|
| 5620 |
-
"requires": {
|
| 5621 |
-
"color-convert": "^2.0.1"
|
| 5622 |
-
}
|
| 5623 |
-
},
|
| 5624 |
-
"chalk": {
|
| 5625 |
-
"version": "4.1.2",
|
| 5626 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
| 5627 |
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
| 5628 |
-
"dev": true,
|
| 5629 |
-
"requires": {
|
| 5630 |
-
"ansi-styles": "^4.1.0",
|
| 5631 |
-
"supports-color": "^7.1.0"
|
| 5632 |
-
}
|
| 5633 |
-
},
|
| 5634 |
-
"color-convert": {
|
| 5635 |
-
"version": "2.0.1",
|
| 5636 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 5637 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 5638 |
-
"dev": true,
|
| 5639 |
-
"requires": {
|
| 5640 |
-
"color-name": "~1.1.4"
|
| 5641 |
-
}
|
| 5642 |
-
},
|
| 5643 |
-
"color-name": {
|
| 5644 |
-
"version": "1.1.4",
|
| 5645 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 5646 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 5647 |
-
"dev": true
|
| 5648 |
-
},
|
| 5649 |
-
"debug": {
|
| 5650 |
-
"version": "4.3.2",
|
| 5651 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
|
| 5652 |
-
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
|
| 5653 |
-
"dev": true,
|
| 5654 |
-
"requires": {
|
| 5655 |
-
"ms": "2.1.2"
|
| 5656 |
-
}
|
| 5657 |
-
},
|
| 5658 |
-
"escape-string-regexp": {
|
| 5659 |
-
"version": "4.0.0",
|
| 5660 |
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
| 5661 |
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
| 5662 |
-
"dev": true
|
| 5663 |
-
},
|
| 5664 |
-
"has-flag": {
|
| 5665 |
-
"version": "4.0.0",
|
| 5666 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 5667 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
| 5668 |
-
"dev": true
|
| 5669 |
-
},
|
| 5670 |
-
"strip-ansi": {
|
| 5671 |
-
"version": "6.0.1",
|
| 5672 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 5673 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 5674 |
-
"dev": true,
|
| 5675 |
-
"requires": {
|
| 5676 |
-
"ansi-regex": "^5.0.1"
|
| 5677 |
-
}
|
| 5678 |
-
},
|
| 5679 |
-
"supports-color": {
|
| 5680 |
-
"version": "7.2.0",
|
| 5681 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
| 5682 |
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
| 5683 |
-
"dev": true,
|
| 5684 |
-
"requires": {
|
| 5685 |
-
"has-flag": "^4.0.0"
|
| 5686 |
-
}
|
| 5687 |
-
}
|
| 5688 |
-
}
|
| 5689 |
-
},
|
| 5690 |
-
"eslint-config-prettier": {
|
| 5691 |
-
"version": "8.3.0",
|
| 5692 |
-
"resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz",
|
| 5693 |
-
"integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==",
|
| 5694 |
-
"dev": true
|
| 5695 |
-
},
|
| 5696 |
-
"eslint-plugin-prettier": {
|
| 5697 |
-
"version": "4.0.0",
|
| 5698 |
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz",
|
| 5699 |
-
"integrity": "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==",
|
| 5700 |
-
"dev": true,
|
| 5701 |
-
"requires": {
|
| 5702 |
-
"prettier-linter-helpers": "^1.0.0"
|
| 5703 |
-
}
|
| 5704 |
-
},
|
| 5705 |
-
"eslint-plugin-react": {
|
| 5706 |
-
"version": "7.27.0",
|
| 5707 |
-
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.0.tgz",
|
| 5708 |
-
"integrity": "sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==",
|
| 5709 |
-
"dev": true,
|
| 5710 |
-
"requires": {
|
| 5711 |
-
"array-includes": "^3.1.4",
|
| 5712 |
-
"array.prototype.flatmap": "^1.2.5",
|
| 5713 |
-
"doctrine": "^2.1.0",
|
| 5714 |
-
"estraverse": "^5.3.0",
|
| 5715 |
-
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
|
| 5716 |
-
"minimatch": "^3.0.4",
|
| 5717 |
-
"object.entries": "^1.1.5",
|
| 5718 |
-
"object.fromentries": "^2.0.5",
|
| 5719 |
-
"object.hasown": "^1.1.0",
|
| 5720 |
-
"object.values": "^1.1.5",
|
| 5721 |
-
"prop-types": "^15.7.2",
|
| 5722 |
-
"resolve": "^2.0.0-next.3",
|
| 5723 |
-
"semver": "^6.3.0",
|
| 5724 |
-
"string.prototype.matchall": "^4.0.6"
|
| 5725 |
-
},
|
| 5726 |
-
"dependencies": {
|
| 5727 |
-
"doctrine": {
|
| 5728 |
-
"version": "2.1.0",
|
| 5729 |
-
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
|
| 5730 |
-
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
|
| 5731 |
-
"dev": true,
|
| 5732 |
-
"requires": {
|
| 5733 |
-
"esutils": "^2.0.2"
|
| 5734 |
-
}
|
| 5735 |
-
},
|
| 5736 |
-
"resolve": {
|
| 5737 |
-
"version": "2.0.0-next.3",
|
| 5738 |
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz",
|
| 5739 |
-
"integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==",
|
| 5740 |
-
"dev": true,
|
| 5741 |
-
"requires": {
|
| 5742 |
-
"is-core-module": "^2.2.0",
|
| 5743 |
-
"path-parse": "^1.0.6"
|
| 5744 |
-
}
|
| 5745 |
-
},
|
| 5746 |
-
"semver": {
|
| 5747 |
-
"version": "6.3.0",
|
| 5748 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 5749 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 5750 |
-
"dev": true
|
| 5751 |
-
}
|
| 5752 |
-
}
|
| 5753 |
-
},
|
| 5754 |
-
"eslint-plugin-react-hooks": {
|
| 5755 |
-
"version": "4.3.0",
|
| 5756 |
-
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz",
|
| 5757 |
-
"integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==",
|
| 5758 |
-
"dev": true
|
| 5759 |
-
},
|
| 5760 |
-
"eslint-scope": {
|
| 5761 |
-
"version": "6.0.0",
|
| 5762 |
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-6.0.0.tgz",
|
| 5763 |
-
"integrity": "sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==",
|
| 5764 |
-
"dev": true,
|
| 5765 |
-
"requires": {
|
| 5766 |
-
"esrecurse": "^4.3.0",
|
| 5767 |
-
"estraverse": "^5.2.0"
|
| 5768 |
-
}
|
| 5769 |
-
},
|
| 5770 |
-
"eslint-utils": {
|
| 5771 |
-
"version": "3.0.0",
|
| 5772 |
-
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
|
| 5773 |
-
"integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
|
| 5774 |
-
"dev": true,
|
| 5775 |
-
"requires": {
|
| 5776 |
-
"eslint-visitor-keys": "^2.0.0"
|
| 5777 |
-
},
|
| 5778 |
-
"dependencies": {
|
| 5779 |
-
"eslint-visitor-keys": {
|
| 5780 |
-
"version": "2.1.0",
|
| 5781 |
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
|
| 5782 |
-
"integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
|
| 5783 |
-
"dev": true
|
| 5784 |
-
}
|
| 5785 |
-
}
|
| 5786 |
-
},
|
| 5787 |
-
"eslint-visitor-keys": {
|
| 5788 |
-
"version": "3.1.0",
|
| 5789 |
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz",
|
| 5790 |
-
"integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==",
|
| 5791 |
-
"dev": true
|
| 5792 |
-
},
|
| 5793 |
-
"espree": {
|
| 5794 |
-
"version": "9.0.0",
|
| 5795 |
-
"resolved": "https://registry.npmjs.org/espree/-/espree-9.0.0.tgz",
|
| 5796 |
-
"integrity": "sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==",
|
| 5797 |
-
"dev": true,
|
| 5798 |
-
"requires": {
|
| 5799 |
-
"acorn": "^8.5.0",
|
| 5800 |
-
"acorn-jsx": "^5.3.1",
|
| 5801 |
-
"eslint-visitor-keys": "^3.0.0"
|
| 5802 |
-
},
|
| 5803 |
-
"dependencies": {
|
| 5804 |
-
"acorn": {
|
| 5805 |
-
"version": "8.5.0",
|
| 5806 |
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz",
|
| 5807 |
-
"integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==",
|
| 5808 |
-
"dev": true
|
| 5809 |
-
}
|
| 5810 |
-
}
|
| 5811 |
-
},
|
| 5812 |
-
"esquery": {
|
| 5813 |
-
"version": "1.4.0",
|
| 5814 |
-
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
|
| 5815 |
-
"integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
|
| 5816 |
-
"dev": true,
|
| 5817 |
-
"requires": {
|
| 5818 |
-
"estraverse": "^5.1.0"
|
| 5819 |
-
}
|
| 5820 |
-
},
|
| 5821 |
-
"esrecurse": {
|
| 5822 |
-
"version": "4.3.0",
|
| 5823 |
-
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
|
| 5824 |
-
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
|
| 5825 |
-
"dev": true,
|
| 5826 |
-
"requires": {
|
| 5827 |
-
"estraverse": "^5.2.0"
|
| 5828 |
-
}
|
| 5829 |
-
},
|
| 5830 |
-
"estraverse": {
|
| 5831 |
-
"version": "5.3.0",
|
| 5832 |
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
| 5833 |
-
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
| 5834 |
-
"dev": true
|
| 5835 |
-
},
|
| 5836 |
-
"esutils": {
|
| 5837 |
-
"version": "2.0.3",
|
| 5838 |
-
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
| 5839 |
-
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
| 5840 |
-
"dev": true
|
| 5841 |
-
},
|
| 5842 |
-
"etag": {
|
| 5843 |
-
"version": "1.8.1",
|
| 5844 |
-
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
| 5845 |
-
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
|
| 5846 |
-
"dev": true
|
| 5847 |
-
},
|
| 5848 |
-
"eventemitter3": {
|
| 5849 |
-
"version": "4.0.7",
|
| 5850 |
-
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
|
| 5851 |
-
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
| 5852 |
-
"dev": true
|
| 5853 |
-
},
|
| 5854 |
-
"events": {
|
| 5855 |
-
"version": "3.3.0",
|
| 5856 |
-
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
|
| 5857 |
-
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
| 5858 |
-
"dev": true
|
| 5859 |
-
},
|
| 5860 |
-
"evp_bytestokey": {
|
| 5861 |
-
"version": "1.0.3",
|
| 5862 |
-
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
|
| 5863 |
-
"integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
|
| 5864 |
-
"dev": true,
|
| 5865 |
-
"requires": {
|
| 5866 |
-
"md5.js": "^1.3.4",
|
| 5867 |
-
"safe-buffer": "^5.1.1"
|
| 5868 |
-
}
|
| 5869 |
-
},
|
| 5870 |
-
"execa": {
|
| 5871 |
-
"version": "5.1.1",
|
| 5872 |
-
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
|
| 5873 |
-
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
|
| 5874 |
-
"dev": true,
|
| 5875 |
-
"requires": {
|
| 5876 |
-
"cross-spawn": "^7.0.3",
|
| 5877 |
-
"get-stream": "^6.0.0",
|
| 5878 |
-
"human-signals": "^2.1.0",
|
| 5879 |
-
"is-stream": "^2.0.0",
|
| 5880 |
-
"merge-stream": "^2.0.0",
|
| 5881 |
-
"npm-run-path": "^4.0.1",
|
| 5882 |
-
"onetime": "^5.1.2",
|
| 5883 |
-
"signal-exit": "^3.0.3",
|
| 5884 |
-
"strip-final-newline": "^2.0.0"
|
| 5885 |
-
}
|
| 5886 |
-
},
|
| 5887 |
-
"express": {
|
| 5888 |
-
"version": "4.17.1",
|
| 5889 |
-
"resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
|
| 5890 |
-
"integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
|
| 5891 |
-
"dev": true,
|
| 5892 |
-
"requires": {
|
| 5893 |
-
"accepts": "~1.3.7",
|
| 5894 |
-
"array-flatten": "1.1.1",
|
| 5895 |
-
"body-parser": "1.19.0",
|
| 5896 |
-
"content-disposition": "0.5.3",
|
| 5897 |
-
"content-type": "~1.0.4",
|
| 5898 |
-
"cookie": "0.4.0",
|
| 5899 |
-
"cookie-signature": "1.0.6",
|
| 5900 |
-
"debug": "2.6.9",
|
| 5901 |
-
"depd": "~1.1.2",
|
| 5902 |
-
"encodeurl": "~1.0.2",
|
| 5903 |
-
"escape-html": "~1.0.3",
|
| 5904 |
-
"etag": "~1.8.1",
|
| 5905 |
-
"finalhandler": "~1.1.2",
|
| 5906 |
-
"fresh": "0.5.2",
|
| 5907 |
-
"merge-descriptors": "1.0.1",
|
| 5908 |
-
"methods": "~1.1.2",
|
| 5909 |
-
"on-finished": "~2.3.0",
|
| 5910 |
-
"parseurl": "~1.3.3",
|
| 5911 |
-
"path-to-regexp": "0.1.7",
|
| 5912 |
-
"proxy-addr": "~2.0.5",
|
| 5913 |
-
"qs": "6.7.0",
|
| 5914 |
-
"range-parser": "~1.2.1",
|
| 5915 |
-
"safe-buffer": "5.1.2",
|
| 5916 |
-
"send": "0.17.1",
|
| 5917 |
-
"serve-static": "1.14.1",
|
| 5918 |
-
"setprototypeof": "1.1.1",
|
| 5919 |
-
"statuses": "~1.5.0",
|
| 5920 |
-
"type-is": "~1.6.18",
|
| 5921 |
-
"utils-merge": "1.0.1",
|
| 5922 |
-
"vary": "~1.1.2"
|
| 5923 |
-
},
|
| 5924 |
-
"dependencies": {
|
| 5925 |
-
"array-flatten": {
|
| 5926 |
-
"version": "1.1.1",
|
| 5927 |
-
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
| 5928 |
-
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
|
| 5929 |
-
"dev": true
|
| 5930 |
-
},
|
| 5931 |
-
"cookie": {
|
| 5932 |
-
"version": "0.4.0",
|
| 5933 |
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
| 5934 |
-
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
|
| 5935 |
-
"dev": true
|
| 5936 |
-
},
|
| 5937 |
-
"debug": {
|
| 5938 |
-
"version": "2.6.9",
|
| 5939 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 5940 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 5941 |
-
"dev": true,
|
| 5942 |
-
"requires": {
|
| 5943 |
-
"ms": "2.0.0"
|
| 5944 |
-
}
|
| 5945 |
-
},
|
| 5946 |
-
"finalhandler": {
|
| 5947 |
-
"version": "1.1.2",
|
| 5948 |
-
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
|
| 5949 |
-
"integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
|
| 5950 |
-
"dev": true,
|
| 5951 |
-
"requires": {
|
| 5952 |
-
"debug": "2.6.9",
|
| 5953 |
-
"encodeurl": "~1.0.2",
|
| 5954 |
-
"escape-html": "~1.0.3",
|
| 5955 |
-
"on-finished": "~2.3.0",
|
| 5956 |
-
"parseurl": "~1.3.3",
|
| 5957 |
-
"statuses": "~1.5.0",
|
| 5958 |
-
"unpipe": "~1.0.0"
|
| 5959 |
-
}
|
| 5960 |
-
},
|
| 5961 |
-
"mime": {
|
| 5962 |
-
"version": "1.6.0",
|
| 5963 |
-
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
| 5964 |
-
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
| 5965 |
-
"dev": true
|
| 5966 |
-
},
|
| 5967 |
-
"ms": {
|
| 5968 |
-
"version": "2.0.0",
|
| 5969 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 5970 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 5971 |
-
"dev": true
|
| 5972 |
-
},
|
| 5973 |
-
"qs": {
|
| 5974 |
-
"version": "6.7.0",
|
| 5975 |
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
| 5976 |
-
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
|
| 5977 |
-
"dev": true
|
| 5978 |
-
},
|
| 5979 |
-
"safe-buffer": {
|
| 5980 |
-
"version": "5.1.2",
|
| 5981 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 5982 |
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 5983 |
-
"dev": true
|
| 5984 |
-
},
|
| 5985 |
-
"send": {
|
| 5986 |
-
"version": "0.17.1",
|
| 5987 |
-
"resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
|
| 5988 |
-
"integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
|
| 5989 |
-
"dev": true,
|
| 5990 |
-
"requires": {
|
| 5991 |
-
"debug": "2.6.9",
|
| 5992 |
-
"depd": "~1.1.2",
|
| 5993 |
-
"destroy": "~1.0.4",
|
| 5994 |
-
"encodeurl": "~1.0.2",
|
| 5995 |
-
"escape-html": "~1.0.3",
|
| 5996 |
-
"etag": "~1.8.1",
|
| 5997 |
-
"fresh": "0.5.2",
|
| 5998 |
-
"http-errors": "~1.7.2",
|
| 5999 |
-
"mime": "1.6.0",
|
| 6000 |
-
"ms": "2.1.1",
|
| 6001 |
-
"on-finished": "~2.3.0",
|
| 6002 |
-
"range-parser": "~1.2.1",
|
| 6003 |
-
"statuses": "~1.5.0"
|
| 6004 |
-
},
|
| 6005 |
-
"dependencies": {
|
| 6006 |
-
"ms": {
|
| 6007 |
-
"version": "2.1.1",
|
| 6008 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
|
| 6009 |
-
"integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
|
| 6010 |
-
"dev": true
|
| 6011 |
-
}
|
| 6012 |
-
}
|
| 6013 |
-
},
|
| 6014 |
-
"serve-static": {
|
| 6015 |
-
"version": "1.14.1",
|
| 6016 |
-
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
|
| 6017 |
-
"integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
|
| 6018 |
-
"dev": true,
|
| 6019 |
-
"requires": {
|
| 6020 |
-
"encodeurl": "~1.0.2",
|
| 6021 |
-
"escape-html": "~1.0.3",
|
| 6022 |
-
"parseurl": "~1.3.3",
|
| 6023 |
-
"send": "0.17.1"
|
| 6024 |
-
}
|
| 6025 |
-
}
|
| 6026 |
-
}
|
| 6027 |
-
},
|
| 6028 |
-
"fast-average-color": {
|
| 6029 |
-
"version": "4.3.0",
|
| 6030 |
-
"resolved": "https://registry.npmjs.org/fast-average-color/-/fast-average-color-4.3.0.tgz",
|
| 6031 |
-
"integrity": "sha512-k8FXd6+JeXoItmdNqB3hMwFgArryjdYBLuzEM8fRY/oztd/051yhSHU6GUrMOfIQU9dDHyFDcIAkGrQKlYtpDA=="
|
| 6032 |
-
},
|
| 6033 |
-
"fast-deep-equal": {
|
| 6034 |
-
"version": "3.1.3",
|
| 6035 |
-
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
| 6036 |
-
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
| 6037 |
-
"dev": true
|
| 6038 |
-
},
|
| 6039 |
-
"fast-diff": {
|
| 6040 |
-
"version": "1.2.0",
|
| 6041 |
-
"resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
|
| 6042 |
-
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
|
| 6043 |
-
"dev": true
|
| 6044 |
-
},
|
| 6045 |
-
"fast-glob": {
|
| 6046 |
-
"version": "3.2.7",
|
| 6047 |
-
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
|
| 6048 |
-
"integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
|
| 6049 |
-
"requires": {
|
| 6050 |
-
"@nodelib/fs.stat": "^2.0.2",
|
| 6051 |
-
"@nodelib/fs.walk": "^1.2.3",
|
| 6052 |
-
"glob-parent": "^5.1.2",
|
| 6053 |
-
"merge2": "^1.3.0",
|
| 6054 |
-
"micromatch": "^4.0.4"
|
| 6055 |
-
},
|
| 6056 |
-
"dependencies": {
|
| 6057 |
-
"glob-parent": {
|
| 6058 |
-
"version": "5.1.2",
|
| 6059 |
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
| 6060 |
-
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
| 6061 |
-
"requires": {
|
| 6062 |
-
"is-glob": "^4.0.1"
|
| 6063 |
-
}
|
| 6064 |
-
}
|
| 6065 |
-
}
|
| 6066 |
-
},
|
| 6067 |
-
"fast-json-stable-stringify": {
|
| 6068 |
-
"version": "2.1.0",
|
| 6069 |
-
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
| 6070 |
-
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
| 6071 |
-
"dev": true
|
| 6072 |
-
},
|
| 6073 |
-
"fast-levenshtein": {
|
| 6074 |
-
"version": "2.0.6",
|
| 6075 |
-
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
| 6076 |
-
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
|
| 6077 |
-
"dev": true
|
| 6078 |
-
},
|
| 6079 |
-
"fast-memoize": {
|
| 6080 |
-
"version": "2.5.2",
|
| 6081 |
-
"resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
|
| 6082 |
-
"integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
|
| 6083 |
-
},
|
| 6084 |
-
"fastest-levenshtein": {
|
| 6085 |
-
"version": "1.0.12",
|
| 6086 |
-
"resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz",
|
| 6087 |
-
"integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==",
|
| 6088 |
-
"dev": true
|
| 6089 |
-
},
|
| 6090 |
-
"fastq": {
|
| 6091 |
-
"version": "1.13.0",
|
| 6092 |
-
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
|
| 6093 |
-
"integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
|
| 6094 |
-
"requires": {
|
| 6095 |
-
"reusify": "^1.0.4"
|
| 6096 |
-
}
|
| 6097 |
-
},
|
| 6098 |
-
"faye-websocket": {
|
| 6099 |
-
"version": "0.11.4",
|
| 6100 |
-
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz",
|
| 6101 |
-
"integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==",
|
| 6102 |
-
"dev": true,
|
| 6103 |
-
"requires": {
|
| 6104 |
-
"websocket-driver": ">=0.5.1"
|
| 6105 |
-
}
|
| 6106 |
-
},
|
| 6107 |
-
"file-entry-cache": {
|
| 6108 |
-
"version": "6.0.1",
|
| 6109 |
-
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
|
| 6110 |
-
"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
|
| 6111 |
-
"dev": true,
|
| 6112 |
-
"requires": {
|
| 6113 |
-
"flat-cache": "^3.0.4"
|
| 6114 |
-
}
|
| 6115 |
-
},
|
| 6116 |
-
"file-loader": {
|
| 6117 |
-
"version": "6.2.0",
|
| 6118 |
-
"resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz",
|
| 6119 |
-
"integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==",
|
| 6120 |
-
"dev": true,
|
| 6121 |
-
"requires": {
|
| 6122 |
-
"loader-utils": "^2.0.0",
|
| 6123 |
-
"schema-utils": "^3.0.0"
|
| 6124 |
-
},
|
| 6125 |
-
"dependencies": {
|
| 6126 |
-
"loader-utils": {
|
| 6127 |
-
"version": "2.0.2",
|
| 6128 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
| 6129 |
-
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
| 6130 |
-
"dev": true,
|
| 6131 |
-
"requires": {
|
| 6132 |
-
"big.js": "^5.2.2",
|
| 6133 |
-
"emojis-list": "^3.0.0",
|
| 6134 |
-
"json5": "^2.1.2"
|
| 6135 |
-
}
|
| 6136 |
-
},
|
| 6137 |
-
"schema-utils": {
|
| 6138 |
-
"version": "3.1.1",
|
| 6139 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 6140 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 6141 |
-
"dev": true,
|
| 6142 |
-
"requires": {
|
| 6143 |
-
"@types/json-schema": "^7.0.8",
|
| 6144 |
-
"ajv": "^6.12.5",
|
| 6145 |
-
"ajv-keywords": "^3.5.2"
|
| 6146 |
-
}
|
| 6147 |
-
}
|
| 6148 |
-
}
|
| 6149 |
-
},
|
| 6150 |
-
"file-type": {
|
| 6151 |
-
"version": "12.4.2",
|
| 6152 |
-
"resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz",
|
| 6153 |
-
"integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==",
|
| 6154 |
-
"dev": true
|
| 6155 |
-
},
|
| 6156 |
-
"fill-range": {
|
| 6157 |
-
"version": "7.0.1",
|
| 6158 |
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
| 6159 |
-
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
| 6160 |
-
"requires": {
|
| 6161 |
-
"to-regex-range": "^5.0.1"
|
| 6162 |
-
}
|
| 6163 |
-
},
|
| 6164 |
-
"finalhandler": {
|
| 6165 |
-
"version": "1.1.0",
|
| 6166 |
-
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
|
| 6167 |
-
"integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
|
| 6168 |
-
"dev": true,
|
| 6169 |
-
"requires": {
|
| 6170 |
-
"debug": "2.6.9",
|
| 6171 |
-
"encodeurl": "~1.0.1",
|
| 6172 |
-
"escape-html": "~1.0.3",
|
| 6173 |
-
"on-finished": "~2.3.0",
|
| 6174 |
-
"parseurl": "~1.3.2",
|
| 6175 |
-
"statuses": "~1.3.1",
|
| 6176 |
-
"unpipe": "~1.0.0"
|
| 6177 |
-
},
|
| 6178 |
-
"dependencies": {
|
| 6179 |
-
"debug": {
|
| 6180 |
-
"version": "2.6.9",
|
| 6181 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 6182 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 6183 |
-
"dev": true,
|
| 6184 |
-
"requires": {
|
| 6185 |
-
"ms": "2.0.0"
|
| 6186 |
-
}
|
| 6187 |
-
},
|
| 6188 |
-
"ms": {
|
| 6189 |
-
"version": "2.0.0",
|
| 6190 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 6191 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 6192 |
-
"dev": true
|
| 6193 |
-
},
|
| 6194 |
-
"statuses": {
|
| 6195 |
-
"version": "1.3.1",
|
| 6196 |
-
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
|
| 6197 |
-
"integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
|
| 6198 |
-
"dev": true
|
| 6199 |
-
}
|
| 6200 |
-
}
|
| 6201 |
-
},
|
| 6202 |
-
"find-cache-dir": {
|
| 6203 |
-
"version": "3.3.2",
|
| 6204 |
-
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
|
| 6205 |
-
"integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
|
| 6206 |
-
"dev": true,
|
| 6207 |
-
"requires": {
|
| 6208 |
-
"commondir": "^1.0.1",
|
| 6209 |
-
"make-dir": "^3.0.2",
|
| 6210 |
-
"pkg-dir": "^4.1.0"
|
| 6211 |
-
}
|
| 6212 |
-
},
|
| 6213 |
-
"find-root": {
|
| 6214 |
-
"version": "1.1.0",
|
| 6215 |
-
"resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
|
| 6216 |
-
"integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="
|
| 6217 |
-
},
|
| 6218 |
-
"find-up": {
|
| 6219 |
-
"version": "3.0.0",
|
| 6220 |
-
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
| 6221 |
-
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
|
| 6222 |
-
"requires": {
|
| 6223 |
-
"locate-path": "^3.0.0"
|
| 6224 |
-
}
|
| 6225 |
-
},
|
| 6226 |
-
"flat-cache": {
|
| 6227 |
-
"version": "3.0.4",
|
| 6228 |
-
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
|
| 6229 |
-
"integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
|
| 6230 |
-
"dev": true,
|
| 6231 |
-
"requires": {
|
| 6232 |
-
"flatted": "^3.1.0",
|
| 6233 |
-
"rimraf": "^3.0.2"
|
| 6234 |
-
}
|
| 6235 |
-
},
|
| 6236 |
-
"flatted": {
|
| 6237 |
-
"version": "3.2.4",
|
| 6238 |
-
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz",
|
| 6239 |
-
"integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==",
|
| 6240 |
-
"dev": true
|
| 6241 |
-
},
|
| 6242 |
-
"follow-redirects": {
|
| 6243 |
-
"version": "1.14.5",
|
| 6244 |
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz",
|
| 6245 |
-
"integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA=="
|
| 6246 |
-
},
|
| 6247 |
-
"forwarded": {
|
| 6248 |
-
"version": "0.2.0",
|
| 6249 |
-
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
| 6250 |
-
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
| 6251 |
-
"dev": true
|
| 6252 |
-
},
|
| 6253 |
-
"fraction.js": {
|
| 6254 |
-
"version": "4.1.2",
|
| 6255 |
-
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz",
|
| 6256 |
-
"integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==",
|
| 6257 |
-
"dev": true
|
| 6258 |
-
},
|
| 6259 |
-
"framer-motion": {
|
| 6260 |
-
"version": "4.1.17",
|
| 6261 |
-
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-4.1.17.tgz",
|
| 6262 |
-
"integrity": "sha512-thx1wvKzblzbs0XaK2X0G1JuwIdARcoNOW7VVwjO8BUltzXPyONGAElLu6CiCScsOQRI7FIk/45YTFtJw5Yozw==",
|
| 6263 |
-
"requires": {
|
| 6264 |
-
"@emotion/is-prop-valid": "^0.8.2",
|
| 6265 |
-
"framesync": "5.3.0",
|
| 6266 |
-
"hey-listen": "^1.0.8",
|
| 6267 |
-
"popmotion": "9.3.6",
|
| 6268 |
-
"style-value-types": "4.1.4",
|
| 6269 |
-
"tslib": "^2.1.0"
|
| 6270 |
-
},
|
| 6271 |
-
"dependencies": {
|
| 6272 |
-
"@emotion/is-prop-valid": {
|
| 6273 |
-
"version": "0.8.8",
|
| 6274 |
-
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
|
| 6275 |
-
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
|
| 6276 |
-
"optional": true,
|
| 6277 |
-
"requires": {
|
| 6278 |
-
"@emotion/memoize": "0.7.4"
|
| 6279 |
-
}
|
| 6280 |
-
},
|
| 6281 |
-
"@emotion/memoize": {
|
| 6282 |
-
"version": "0.7.4",
|
| 6283 |
-
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
|
| 6284 |
-
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
|
| 6285 |
-
"optional": true
|
| 6286 |
-
}
|
| 6287 |
-
}
|
| 6288 |
-
},
|
| 6289 |
-
"framesync": {
|
| 6290 |
-
"version": "5.3.0",
|
| 6291 |
-
"resolved": "https://registry.npmjs.org/framesync/-/framesync-5.3.0.tgz",
|
| 6292 |
-
"integrity": "sha512-oc5m68HDO/tuK2blj7ZcdEBRx3p1PjrgHazL8GYEpvULhrtGIFbQArN6cQS2QhW8mitffaB+VYzMjDqBxxQeoA==",
|
| 6293 |
-
"requires": {
|
| 6294 |
-
"tslib": "^2.1.0"
|
| 6295 |
-
}
|
| 6296 |
-
},
|
| 6297 |
-
"fresh": {
|
| 6298 |
-
"version": "0.5.2",
|
| 6299 |
-
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
| 6300 |
-
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
|
| 6301 |
-
"dev": true
|
| 6302 |
-
},
|
| 6303 |
-
"fs-extra": {
|
| 6304 |
-
"version": "9.1.0",
|
| 6305 |
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
|
| 6306 |
-
"integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
|
| 6307 |
-
"dev": true,
|
| 6308 |
-
"requires": {
|
| 6309 |
-
"at-least-node": "^1.0.0",
|
| 6310 |
-
"graceful-fs": "^4.2.0",
|
| 6311 |
-
"jsonfile": "^6.0.1",
|
| 6312 |
-
"universalify": "^2.0.0"
|
| 6313 |
-
}
|
| 6314 |
-
},
|
| 6315 |
-
"fs-monkey": {
|
| 6316 |
-
"version": "1.0.3",
|
| 6317 |
-
"resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz",
|
| 6318 |
-
"integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==",
|
| 6319 |
-
"dev": true
|
| 6320 |
-
},
|
| 6321 |
-
"fs.realpath": {
|
| 6322 |
-
"version": "1.0.0",
|
| 6323 |
-
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
| 6324 |
-
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
| 6325 |
-
},
|
| 6326 |
-
"fsevents": {
|
| 6327 |
-
"version": "2.3.2",
|
| 6328 |
-
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
| 6329 |
-
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
| 6330 |
-
"optional": true
|
| 6331 |
-
},
|
| 6332 |
-
"function-bind": {
|
| 6333 |
-
"version": "1.1.1",
|
| 6334 |
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
| 6335 |
-
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
| 6336 |
-
},
|
| 6337 |
-
"function.prototype.name": {
|
| 6338 |
-
"version": "1.1.5",
|
| 6339 |
-
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
|
| 6340 |
-
"integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
|
| 6341 |
-
"requires": {
|
| 6342 |
-
"call-bind": "^1.0.2",
|
| 6343 |
-
"define-properties": "^1.1.3",
|
| 6344 |
-
"es-abstract": "^1.19.0",
|
| 6345 |
-
"functions-have-names": "^1.2.2"
|
| 6346 |
-
}
|
| 6347 |
-
},
|
| 6348 |
-
"functional-red-black-tree": {
|
| 6349 |
-
"version": "1.0.1",
|
| 6350 |
-
"resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
|
| 6351 |
-
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
|
| 6352 |
-
"dev": true
|
| 6353 |
-
},
|
| 6354 |
-
"functions-have-names": {
|
| 6355 |
-
"version": "1.2.2",
|
| 6356 |
-
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz",
|
| 6357 |
-
"integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA=="
|
| 6358 |
-
},
|
| 6359 |
-
"fuse.js": {
|
| 6360 |
-
"version": "6.4.6",
|
| 6361 |
-
"resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.6.tgz",
|
| 6362 |
-
"integrity": "sha512-/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw=="
|
| 6363 |
-
},
|
| 6364 |
-
"gensync": {
|
| 6365 |
-
"version": "1.0.0-beta.2",
|
| 6366 |
-
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
| 6367 |
-
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
| 6368 |
-
"dev": true
|
| 6369 |
-
},
|
| 6370 |
-
"get-caller-file": {
|
| 6371 |
-
"version": "2.0.5",
|
| 6372 |
-
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
| 6373 |
-
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
|
| 6374 |
-
},
|
| 6375 |
-
"get-intrinsic": {
|
| 6376 |
-
"version": "1.1.1",
|
| 6377 |
-
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
|
| 6378 |
-
"integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
|
| 6379 |
-
"requires": {
|
| 6380 |
-
"function-bind": "^1.1.1",
|
| 6381 |
-
"has": "^1.0.3",
|
| 6382 |
-
"has-symbols": "^1.0.1"
|
| 6383 |
-
}
|
| 6384 |
-
},
|
| 6385 |
-
"get-stream": {
|
| 6386 |
-
"version": "6.0.1",
|
| 6387 |
-
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
|
| 6388 |
-
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
|
| 6389 |
-
"dev": true
|
| 6390 |
-
},
|
| 6391 |
-
"get-symbol-description": {
|
| 6392 |
-
"version": "1.0.0",
|
| 6393 |
-
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
|
| 6394 |
-
"integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
|
| 6395 |
-
"requires": {
|
| 6396 |
-
"call-bind": "^1.0.2",
|
| 6397 |
-
"get-intrinsic": "^1.1.1"
|
| 6398 |
-
}
|
| 6399 |
-
},
|
| 6400 |
-
"gettext-parser": {
|
| 6401 |
-
"version": "1.4.0",
|
| 6402 |
-
"resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz",
|
| 6403 |
-
"integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==",
|
| 6404 |
-
"requires": {
|
| 6405 |
-
"encoding": "^0.1.12",
|
| 6406 |
-
"safe-buffer": "^5.1.1"
|
| 6407 |
-
}
|
| 6408 |
-
},
|
| 6409 |
-
"glob": {
|
| 6410 |
-
"version": "7.1.7",
|
| 6411 |
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
|
| 6412 |
-
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
|
| 6413 |
-
"requires": {
|
| 6414 |
-
"fs.realpath": "^1.0.0",
|
| 6415 |
-
"inflight": "^1.0.4",
|
| 6416 |
-
"inherits": "2",
|
| 6417 |
-
"minimatch": "^3.0.4",
|
| 6418 |
-
"once": "^1.3.0",
|
| 6419 |
-
"path-is-absolute": "^1.0.0"
|
| 6420 |
-
}
|
| 6421 |
-
},
|
| 6422 |
-
"glob-parent": {
|
| 6423 |
-
"version": "6.0.2",
|
| 6424 |
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
| 6425 |
-
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
| 6426 |
-
"requires": {
|
| 6427 |
-
"is-glob": "^4.0.3"
|
| 6428 |
-
}
|
| 6429 |
-
},
|
| 6430 |
-
"glob-to-regexp": {
|
| 6431 |
-
"version": "0.4.1",
|
| 6432 |
-
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
|
| 6433 |
-
"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
|
| 6434 |
-
"dev": true
|
| 6435 |
-
},
|
| 6436 |
-
"global-cache": {
|
| 6437 |
-
"version": "1.2.1",
|
| 6438 |
-
"resolved": "https://registry.npmjs.org/global-cache/-/global-cache-1.2.1.tgz",
|
| 6439 |
-
"integrity": "sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==",
|
| 6440 |
-
"requires": {
|
| 6441 |
-
"define-properties": "^1.1.2",
|
| 6442 |
-
"is-symbol": "^1.0.1"
|
| 6443 |
-
}
|
| 6444 |
-
},
|
| 6445 |
-
"globals": {
|
| 6446 |
-
"version": "13.12.0",
|
| 6447 |
-
"resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz",
|
| 6448 |
-
"integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==",
|
| 6449 |
-
"dev": true,
|
| 6450 |
-
"requires": {
|
| 6451 |
-
"type-fest": "^0.20.2"
|
| 6452 |
-
}
|
| 6453 |
-
},
|
| 6454 |
-
"globby": {
|
| 6455 |
-
"version": "10.0.2",
|
| 6456 |
-
"resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz",
|
| 6457 |
-
"integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==",
|
| 6458 |
-
"dev": true,
|
| 6459 |
-
"requires": {
|
| 6460 |
-
"@types/glob": "^7.1.1",
|
| 6461 |
-
"array-union": "^2.1.0",
|
| 6462 |
-
"dir-glob": "^3.0.1",
|
| 6463 |
-
"fast-glob": "^3.0.3",
|
| 6464 |
-
"glob": "^7.1.3",
|
| 6465 |
-
"ignore": "^5.1.1",
|
| 6466 |
-
"merge2": "^1.2.3",
|
| 6467 |
-
"slash": "^3.0.0"
|
| 6468 |
-
},
|
| 6469 |
-
"dependencies": {
|
| 6470 |
-
"ignore": {
|
| 6471 |
-
"version": "5.1.9",
|
| 6472 |
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz",
|
| 6473 |
-
"integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==",
|
| 6474 |
-
"dev": true
|
| 6475 |
-
}
|
| 6476 |
-
}
|
| 6477 |
-
},
|
| 6478 |
-
"good-listener": {
|
| 6479 |
-
"version": "1.2.2",
|
| 6480 |
-
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
| 6481 |
-
"integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=",
|
| 6482 |
-
"requires": {
|
| 6483 |
-
"delegate": "^3.1.2"
|
| 6484 |
-
}
|
| 6485 |
-
},
|
| 6486 |
-
"graceful-fs": {
|
| 6487 |
-
"version": "4.2.6",
|
| 6488 |
-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz",
|
| 6489 |
-
"integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
|
| 6490 |
-
},
|
| 6491 |
-
"gradient-parser": {
|
| 6492 |
-
"version": "0.1.5",
|
| 6493 |
-
"resolved": "https://registry.npmjs.org/gradient-parser/-/gradient-parser-0.1.5.tgz",
|
| 6494 |
-
"integrity": "sha1-DH4heVWeXOfY1x9EI6+TcQCyJIw="
|
| 6495 |
-
},
|
| 6496 |
-
"growly": {
|
| 6497 |
-
"version": "1.3.0",
|
| 6498 |
-
"resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
|
| 6499 |
-
"integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
|
| 6500 |
-
"dev": true
|
| 6501 |
-
},
|
| 6502 |
-
"handle-thing": {
|
| 6503 |
-
"version": "2.0.1",
|
| 6504 |
-
"resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
|
| 6505 |
-
"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==",
|
| 6506 |
-
"dev": true
|
| 6507 |
-
},
|
| 6508 |
-
"has": {
|
| 6509 |
-
"version": "1.0.3",
|
| 6510 |
-
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
| 6511 |
-
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
| 6512 |
-
"requires": {
|
| 6513 |
-
"function-bind": "^1.1.1"
|
| 6514 |
-
}
|
| 6515 |
-
},
|
| 6516 |
-
"has-ansi": {
|
| 6517 |
-
"version": "2.0.0",
|
| 6518 |
-
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
|
| 6519 |
-
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
|
| 6520 |
-
"dev": true,
|
| 6521 |
-
"requires": {
|
| 6522 |
-
"ansi-regex": "^2.0.0"
|
| 6523 |
-
},
|
| 6524 |
-
"dependencies": {
|
| 6525 |
-
"ansi-regex": {
|
| 6526 |
-
"version": "2.1.1",
|
| 6527 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
| 6528 |
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
|
| 6529 |
-
"dev": true
|
| 6530 |
-
}
|
| 6531 |
-
}
|
| 6532 |
-
},
|
| 6533 |
-
"has-bigints": {
|
| 6534 |
-
"version": "1.0.1",
|
| 6535 |
-
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz",
|
| 6536 |
-
"integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
|
| 6537 |
-
},
|
| 6538 |
-
"has-binary2": {
|
| 6539 |
-
"version": "1.0.3",
|
| 6540 |
-
"resolved": "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz",
|
| 6541 |
-
"integrity": "sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==",
|
| 6542 |
-
"dev": true,
|
| 6543 |
-
"requires": {
|
| 6544 |
-
"isarray": "2.0.1"
|
| 6545 |
-
}
|
| 6546 |
-
},
|
| 6547 |
-
"has-cors": {
|
| 6548 |
-
"version": "1.1.0",
|
| 6549 |
-
"resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz",
|
| 6550 |
-
"integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=",
|
| 6551 |
-
"dev": true
|
| 6552 |
-
},
|
| 6553 |
-
"has-flag": {
|
| 6554 |
-
"version": "3.0.0",
|
| 6555 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
| 6556 |
-
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
|
| 6557 |
-
},
|
| 6558 |
-
"has-symbols": {
|
| 6559 |
-
"version": "1.0.2",
|
| 6560 |
-
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
|
| 6561 |
-
"integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
|
| 6562 |
-
},
|
| 6563 |
-
"has-tostringtag": {
|
| 6564 |
-
"version": "1.0.0",
|
| 6565 |
-
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
|
| 6566 |
-
"integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
|
| 6567 |
-
"requires": {
|
| 6568 |
-
"has-symbols": "^1.0.2"
|
| 6569 |
-
}
|
| 6570 |
-
},
|
| 6571 |
-
"hash-base": {
|
| 6572 |
-
"version": "3.1.0",
|
| 6573 |
-
"resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
|
| 6574 |
-
"integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
|
| 6575 |
-
"dev": true,
|
| 6576 |
-
"requires": {
|
| 6577 |
-
"inherits": "^2.0.4",
|
| 6578 |
-
"readable-stream": "^3.6.0",
|
| 6579 |
-
"safe-buffer": "^5.2.0"
|
| 6580 |
-
},
|
| 6581 |
-
"dependencies": {
|
| 6582 |
-
"readable-stream": {
|
| 6583 |
-
"version": "3.6.0",
|
| 6584 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
| 6585 |
-
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
| 6586 |
-
"dev": true,
|
| 6587 |
-
"requires": {
|
| 6588 |
-
"inherits": "^2.0.3",
|
| 6589 |
-
"string_decoder": "^1.1.1",
|
| 6590 |
-
"util-deprecate": "^1.0.1"
|
| 6591 |
-
}
|
| 6592 |
-
}
|
| 6593 |
-
}
|
| 6594 |
-
},
|
| 6595 |
-
"hash-sum": {
|
| 6596 |
-
"version": "1.0.2",
|
| 6597 |
-
"resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz",
|
| 6598 |
-
"integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=",
|
| 6599 |
-
"dev": true
|
| 6600 |
-
},
|
| 6601 |
-
"hash.js": {
|
| 6602 |
-
"version": "1.1.7",
|
| 6603 |
-
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
|
| 6604 |
-
"integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
|
| 6605 |
-
"dev": true,
|
| 6606 |
-
"requires": {
|
| 6607 |
-
"inherits": "^2.0.3",
|
| 6608 |
-
"minimalistic-assert": "^1.0.1"
|
| 6609 |
-
}
|
| 6610 |
-
},
|
| 6611 |
-
"he": {
|
| 6612 |
-
"version": "1.2.0",
|
| 6613 |
-
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
|
| 6614 |
-
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
|
| 6615 |
-
"dev": true
|
| 6616 |
-
},
|
| 6617 |
-
"hex-color-regex": {
|
| 6618 |
-
"version": "1.1.0",
|
| 6619 |
-
"resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
|
| 6620 |
-
"integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="
|
| 6621 |
-
},
|
| 6622 |
-
"hey-listen": {
|
| 6623 |
-
"version": "1.0.8",
|
| 6624 |
-
"resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
|
| 6625 |
-
"integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
|
| 6626 |
-
},
|
| 6627 |
-
"highlight-words-core": {
|
| 6628 |
-
"version": "1.2.2",
|
| 6629 |
-
"resolved": "https://registry.npmjs.org/highlight-words-core/-/highlight-words-core-1.2.2.tgz",
|
| 6630 |
-
"integrity": "sha512-BXUKIkUuh6cmmxzi5OIbUJxrG8OAk2MqoL1DtO3Wo9D2faJg2ph5ntyuQeLqaHJmzER6H5tllCDA9ZnNe9BVGg=="
|
| 6631 |
-
},
|
| 6632 |
-
"hmac-drbg": {
|
| 6633 |
-
"version": "1.0.1",
|
| 6634 |
-
"resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
|
| 6635 |
-
"integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
|
| 6636 |
-
"dev": true,
|
| 6637 |
-
"requires": {
|
| 6638 |
-
"hash.js": "^1.0.3",
|
| 6639 |
-
"minimalistic-assert": "^1.0.0",
|
| 6640 |
-
"minimalistic-crypto-utils": "^1.0.1"
|
| 6641 |
-
}
|
| 6642 |
-
},
|
| 6643 |
-
"hoist-non-react-statics": {
|
| 6644 |
-
"version": "3.3.2",
|
| 6645 |
-
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
|
| 6646 |
-
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
|
| 6647 |
-
"requires": {
|
| 6648 |
-
"react-is": "^16.7.0"
|
| 6649 |
-
}
|
| 6650 |
-
},
|
| 6651 |
-
"hpack.js": {
|
| 6652 |
-
"version": "2.1.6",
|
| 6653 |
-
"resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz",
|
| 6654 |
-
"integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=",
|
| 6655 |
-
"dev": true,
|
| 6656 |
-
"requires": {
|
| 6657 |
-
"inherits": "^2.0.1",
|
| 6658 |
-
"obuf": "^1.0.0",
|
| 6659 |
-
"readable-stream": "^2.0.1",
|
| 6660 |
-
"wbuf": "^1.1.0"
|
| 6661 |
-
}
|
| 6662 |
-
},
|
| 6663 |
-
"hpq": {
|
| 6664 |
-
"version": "1.3.0",
|
| 6665 |
-
"resolved": "https://registry.npmjs.org/hpq/-/hpq-1.3.0.tgz",
|
| 6666 |
-
"integrity": "sha512-fvYTvdCFOWQupGxqkahrkA+ERBuMdzkxwtUdKrxR6rmMd4Pfl+iZ1QiQYoaZ0B/v0y59MOMnz3XFUWbT50/NWA=="
|
| 6667 |
-
},
|
| 6668 |
-
"hsl-regex": {
|
| 6669 |
-
"version": "1.0.0",
|
| 6670 |
-
"resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz",
|
| 6671 |
-
"integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4="
|
| 6672 |
-
},
|
| 6673 |
-
"hsla-regex": {
|
| 6674 |
-
"version": "1.0.0",
|
| 6675 |
-
"resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
|
| 6676 |
-
"integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg="
|
| 6677 |
-
},
|
| 6678 |
-
"html-entities": {
|
| 6679 |
-
"version": "2.3.2",
|
| 6680 |
-
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz",
|
| 6681 |
-
"integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==",
|
| 6682 |
-
"dev": true
|
| 6683 |
-
},
|
| 6684 |
-
"html-loader": {
|
| 6685 |
-
"version": "1.3.2",
|
| 6686 |
-
"resolved": "https://registry.npmjs.org/html-loader/-/html-loader-1.3.2.tgz",
|
| 6687 |
-
"integrity": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==",
|
| 6688 |
-
"dev": true,
|
| 6689 |
-
"requires": {
|
| 6690 |
-
"html-minifier-terser": "^5.1.1",
|
| 6691 |
-
"htmlparser2": "^4.1.0",
|
| 6692 |
-
"loader-utils": "^2.0.0",
|
| 6693 |
-
"schema-utils": "^3.0.0"
|
| 6694 |
-
},
|
| 6695 |
-
"dependencies": {
|
| 6696 |
-
"loader-utils": {
|
| 6697 |
-
"version": "2.0.2",
|
| 6698 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
| 6699 |
-
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
| 6700 |
-
"dev": true,
|
| 6701 |
-
"requires": {
|
| 6702 |
-
"big.js": "^5.2.2",
|
| 6703 |
-
"emojis-list": "^3.0.0",
|
| 6704 |
-
"json5": "^2.1.2"
|
| 6705 |
-
}
|
| 6706 |
-
},
|
| 6707 |
-
"schema-utils": {
|
| 6708 |
-
"version": "3.1.1",
|
| 6709 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 6710 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 6711 |
-
"dev": true,
|
| 6712 |
-
"requires": {
|
| 6713 |
-
"@types/json-schema": "^7.0.8",
|
| 6714 |
-
"ajv": "^6.12.5",
|
| 6715 |
-
"ajv-keywords": "^3.5.2"
|
| 6716 |
-
}
|
| 6717 |
-
}
|
| 6718 |
-
}
|
| 6719 |
-
},
|
| 6720 |
-
"html-minifier-terser": {
|
| 6721 |
-
"version": "5.1.1",
|
| 6722 |
-
"resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz",
|
| 6723 |
-
"integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==",
|
| 6724 |
-
"dev": true,
|
| 6725 |
-
"requires": {
|
| 6726 |
-
"camel-case": "^4.1.1",
|
| 6727 |
-
"clean-css": "^4.2.3",
|
| 6728 |
-
"commander": "^4.1.1",
|
| 6729 |
-
"he": "^1.2.0",
|
| 6730 |
-
"param-case": "^3.0.3",
|
| 6731 |
-
"relateurl": "^0.2.7",
|
| 6732 |
-
"terser": "^4.6.3"
|
| 6733 |
-
},
|
| 6734 |
-
"dependencies": {
|
| 6735 |
-
"clean-css": {
|
| 6736 |
-
"version": "4.2.4",
|
| 6737 |
-
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz",
|
| 6738 |
-
"integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==",
|
| 6739 |
-
"dev": true,
|
| 6740 |
-
"requires": {
|
| 6741 |
-
"source-map": "~0.6.0"
|
| 6742 |
-
}
|
| 6743 |
-
},
|
| 6744 |
-
"commander": {
|
| 6745 |
-
"version": "4.1.1",
|
| 6746 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
|
| 6747 |
-
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
|
| 6748 |
-
"dev": true
|
| 6749 |
-
},
|
| 6750 |
-
"source-map": {
|
| 6751 |
-
"version": "0.6.1",
|
| 6752 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 6753 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 6754 |
-
"dev": true
|
| 6755 |
-
},
|
| 6756 |
-
"terser": {
|
| 6757 |
-
"version": "4.8.0",
|
| 6758 |
-
"resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
|
| 6759 |
-
"integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
|
| 6760 |
-
"dev": true,
|
| 6761 |
-
"requires": {
|
| 6762 |
-
"commander": "^2.20.0",
|
| 6763 |
-
"source-map": "~0.6.1",
|
| 6764 |
-
"source-map-support": "~0.5.12"
|
| 6765 |
-
},
|
| 6766 |
-
"dependencies": {
|
| 6767 |
-
"commander": {
|
| 6768 |
-
"version": "2.20.3",
|
| 6769 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
| 6770 |
-
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
| 6771 |
-
"dev": true
|
| 6772 |
-
}
|
| 6773 |
-
}
|
| 6774 |
-
}
|
| 6775 |
-
}
|
| 6776 |
-
},
|
| 6777 |
-
"html-tags": {
|
| 6778 |
-
"version": "3.1.0",
|
| 6779 |
-
"resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz",
|
| 6780 |
-
"integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg=="
|
| 6781 |
-
},
|
| 6782 |
-
"htmlparser2": {
|
| 6783 |
-
"version": "4.1.0",
|
| 6784 |
-
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz",
|
| 6785 |
-
"integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==",
|
| 6786 |
-
"dev": true,
|
| 6787 |
-
"requires": {
|
| 6788 |
-
"domelementtype": "^2.0.1",
|
| 6789 |
-
"domhandler": "^3.0.0",
|
| 6790 |
-
"domutils": "^2.0.0",
|
| 6791 |
-
"entities": "^2.0.0"
|
| 6792 |
-
},
|
| 6793 |
-
"dependencies": {
|
| 6794 |
-
"domhandler": {
|
| 6795 |
-
"version": "3.3.0",
|
| 6796 |
-
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
|
| 6797 |
-
"integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
|
| 6798 |
-
"dev": true,
|
| 6799 |
-
"requires": {
|
| 6800 |
-
"domelementtype": "^2.0.1"
|
| 6801 |
-
}
|
| 6802 |
-
}
|
| 6803 |
-
}
|
| 6804 |
-
},
|
| 6805 |
-
"http-assert": {
|
| 6806 |
-
"version": "1.4.1",
|
| 6807 |
-
"resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.4.1.tgz",
|
| 6808 |
-
"integrity": "sha512-rdw7q6GTlibqVVbXr0CKelfV5iY8G2HqEUkhSk297BMbSpSL8crXC+9rjKoMcZZEsksX30le6f/4ul4E28gegw==",
|
| 6809 |
-
"dev": true,
|
| 6810 |
-
"requires": {
|
| 6811 |
-
"deep-equal": "~1.0.1",
|
| 6812 |
-
"http-errors": "~1.7.2"
|
| 6813 |
-
},
|
| 6814 |
-
"dependencies": {
|
| 6815 |
-
"deep-equal": {
|
| 6816 |
-
"version": "1.0.1",
|
| 6817 |
-
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz",
|
| 6818 |
-
"integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=",
|
| 6819 |
-
"dev": true
|
| 6820 |
-
}
|
| 6821 |
-
}
|
| 6822 |
-
},
|
| 6823 |
-
"http-deceiver": {
|
| 6824 |
-
"version": "1.2.7",
|
| 6825 |
-
"resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz",
|
| 6826 |
-
"integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=",
|
| 6827 |
-
"dev": true
|
| 6828 |
-
},
|
| 6829 |
-
"http-errors": {
|
| 6830 |
-
"version": "1.7.2",
|
| 6831 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
|
| 6832 |
-
"integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
|
| 6833 |
-
"dev": true,
|
| 6834 |
-
"requires": {
|
| 6835 |
-
"depd": "~1.1.2",
|
| 6836 |
-
"inherits": "2.0.3",
|
| 6837 |
-
"setprototypeof": "1.1.1",
|
| 6838 |
-
"statuses": ">= 1.5.0 < 2",
|
| 6839 |
-
"toidentifier": "1.0.0"
|
| 6840 |
-
},
|
| 6841 |
-
"dependencies": {
|
| 6842 |
-
"inherits": {
|
| 6843 |
-
"version": "2.0.3",
|
| 6844 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
| 6845 |
-
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
| 6846 |
-
"dev": true
|
| 6847 |
-
}
|
| 6848 |
-
}
|
| 6849 |
-
},
|
| 6850 |
-
"http-parser-js": {
|
| 6851 |
-
"version": "0.5.3",
|
| 6852 |
-
"resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz",
|
| 6853 |
-
"integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==",
|
| 6854 |
-
"dev": true
|
| 6855 |
-
},
|
| 6856 |
-
"http-proxy": {
|
| 6857 |
-
"version": "1.18.1",
|
| 6858 |
-
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
|
| 6859 |
-
"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
|
| 6860 |
-
"dev": true,
|
| 6861 |
-
"requires": {
|
| 6862 |
-
"eventemitter3": "^4.0.0",
|
| 6863 |
-
"follow-redirects": "^1.0.0",
|
| 6864 |
-
"requires-port": "^1.0.0"
|
| 6865 |
-
}
|
| 6866 |
-
},
|
| 6867 |
-
"http-proxy-middleware": {
|
| 6868 |
-
"version": "2.0.1",
|
| 6869 |
-
"resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz",
|
| 6870 |
-
"integrity": "sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==",
|
| 6871 |
-
"dev": true,
|
| 6872 |
-
"requires": {
|
| 6873 |
-
"@types/http-proxy": "^1.17.5",
|
| 6874 |
-
"http-proxy": "^1.18.1",
|
| 6875 |
-
"is-glob": "^4.0.1",
|
| 6876 |
-
"is-plain-obj": "^3.0.0",
|
| 6877 |
-
"micromatch": "^4.0.2"
|
| 6878 |
-
}
|
| 6879 |
-
},
|
| 6880 |
-
"https-browserify": {
|
| 6881 |
-
"version": "1.0.0",
|
| 6882 |
-
"resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
|
| 6883 |
-
"integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
|
| 6884 |
-
"dev": true
|
| 6885 |
-
},
|
| 6886 |
-
"human-signals": {
|
| 6887 |
-
"version": "2.1.0",
|
| 6888 |
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
|
| 6889 |
-
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
|
| 6890 |
-
"dev": true
|
| 6891 |
-
},
|
| 6892 |
-
"husky": {
|
| 6893 |
-
"version": "7.0.4",
|
| 6894 |
-
"resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz",
|
| 6895 |
-
"integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==",
|
| 6896 |
-
"dev": true
|
| 6897 |
-
},
|
| 6898 |
-
"iconv-lite": {
|
| 6899 |
-
"version": "0.6.3",
|
| 6900 |
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
| 6901 |
-
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
| 6902 |
-
"requires": {
|
| 6903 |
-
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
| 6904 |
-
}
|
| 6905 |
-
},
|
| 6906 |
-
"icss-utils": {
|
| 6907 |
-
"version": "5.1.0",
|
| 6908 |
-
"resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
|
| 6909 |
-
"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
|
| 6910 |
-
"dev": true
|
| 6911 |
-
},
|
| 6912 |
-
"ieee754": {
|
| 6913 |
-
"version": "1.2.1",
|
| 6914 |
-
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
| 6915 |
-
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
| 6916 |
-
"dev": true
|
| 6917 |
-
},
|
| 6918 |
-
"ignore": {
|
| 6919 |
-
"version": "4.0.6",
|
| 6920 |
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
|
| 6921 |
-
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
|
| 6922 |
-
"dev": true
|
| 6923 |
-
},
|
| 6924 |
-
"imagemin": {
|
| 6925 |
-
"version": "7.0.1",
|
| 6926 |
-
"resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz",
|
| 6927 |
-
"integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==",
|
| 6928 |
-
"dev": true,
|
| 6929 |
-
"requires": {
|
| 6930 |
-
"file-type": "^12.0.0",
|
| 6931 |
-
"globby": "^10.0.0",
|
| 6932 |
-
"graceful-fs": "^4.2.2",
|
| 6933 |
-
"junk": "^3.1.0",
|
| 6934 |
-
"make-dir": "^3.0.0",
|
| 6935 |
-
"p-pipe": "^3.0.0",
|
| 6936 |
-
"replace-ext": "^1.0.0"
|
| 6937 |
-
}
|
| 6938 |
-
},
|
| 6939 |
-
"img-loader": {
|
| 6940 |
-
"version": "4.0.0",
|
| 6941 |
-
"resolved": "https://registry.npmjs.org/img-loader/-/img-loader-4.0.0.tgz",
|
| 6942 |
-
"integrity": "sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ==",
|
| 6943 |
-
"dev": true,
|
| 6944 |
-
"requires": {
|
| 6945 |
-
"loader-utils": "^1.1.0"
|
| 6946 |
-
}
|
| 6947 |
-
},
|
| 6948 |
-
"immutable": {
|
| 6949 |
-
"version": "3.8.2",
|
| 6950 |
-
"resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
|
| 6951 |
-
"integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=",
|
| 6952 |
-
"dev": true
|
| 6953 |
-
},
|
| 6954 |
-
"import-cwd": {
|
| 6955 |
-
"version": "3.0.0",
|
| 6956 |
-
"resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz",
|
| 6957 |
-
"integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==",
|
| 6958 |
-
"requires": {
|
| 6959 |
-
"import-from": "^3.0.0"
|
| 6960 |
-
}
|
| 6961 |
-
},
|
| 6962 |
-
"import-fresh": {
|
| 6963 |
-
"version": "3.3.0",
|
| 6964 |
-
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
|
| 6965 |
-
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
|
| 6966 |
-
"requires": {
|
| 6967 |
-
"parent-module": "^1.0.0",
|
| 6968 |
-
"resolve-from": "^4.0.0"
|
| 6969 |
-
}
|
| 6970 |
-
},
|
| 6971 |
-
"import-from": {
|
| 6972 |
-
"version": "3.0.0",
|
| 6973 |
-
"resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz",
|
| 6974 |
-
"integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==",
|
| 6975 |
-
"requires": {
|
| 6976 |
-
"resolve-from": "^5.0.0"
|
| 6977 |
-
},
|
| 6978 |
-
"dependencies": {
|
| 6979 |
-
"resolve-from": {
|
| 6980 |
-
"version": "5.0.0",
|
| 6981 |
-
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
| 6982 |
-
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="
|
| 6983 |
-
}
|
| 6984 |
-
}
|
| 6985 |
-
},
|
| 6986 |
-
"import-local": {
|
| 6987 |
-
"version": "3.0.3",
|
| 6988 |
-
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz",
|
| 6989 |
-
"integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==",
|
| 6990 |
-
"dev": true,
|
| 6991 |
-
"requires": {
|
| 6992 |
-
"pkg-dir": "^4.2.0",
|
| 6993 |
-
"resolve-cwd": "^3.0.0"
|
| 6994 |
-
}
|
| 6995 |
-
},
|
| 6996 |
-
"imurmurhash": {
|
| 6997 |
-
"version": "0.1.4",
|
| 6998 |
-
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
|
| 6999 |
-
"integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
|
| 7000 |
-
"dev": true
|
| 7001 |
-
},
|
| 7002 |
-
"indent-string": {
|
| 7003 |
-
"version": "4.0.0",
|
| 7004 |
-
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
|
| 7005 |
-
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
|
| 7006 |
-
"dev": true
|
| 7007 |
-
},
|
| 7008 |
-
"indexof": {
|
| 7009 |
-
"version": "0.0.1",
|
| 7010 |
-
"resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
|
| 7011 |
-
"integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
|
| 7012 |
-
"dev": true
|
| 7013 |
-
},
|
| 7014 |
-
"inflight": {
|
| 7015 |
-
"version": "1.0.6",
|
| 7016 |
-
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
| 7017 |
-
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
| 7018 |
-
"requires": {
|
| 7019 |
-
"once": "^1.3.0",
|
| 7020 |
-
"wrappy": "1"
|
| 7021 |
-
}
|
| 7022 |
-
},
|
| 7023 |
-
"inherits": {
|
| 7024 |
-
"version": "2.0.4",
|
| 7025 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
| 7026 |
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
| 7027 |
-
},
|
| 7028 |
-
"internal-ip": {
|
| 7029 |
-
"version": "6.2.0",
|
| 7030 |
-
"resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz",
|
| 7031 |
-
"integrity": "sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==",
|
| 7032 |
-
"dev": true,
|
| 7033 |
-
"requires": {
|
| 7034 |
-
"default-gateway": "^6.0.0",
|
| 7035 |
-
"ipaddr.js": "^1.9.1",
|
| 7036 |
-
"is-ip": "^3.1.0",
|
| 7037 |
-
"p-event": "^4.2.0"
|
| 7038 |
-
},
|
| 7039 |
-
"dependencies": {
|
| 7040 |
-
"ipaddr.js": {
|
| 7041 |
-
"version": "1.9.1",
|
| 7042 |
-
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
| 7043 |
-
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
| 7044 |
-
"dev": true
|
| 7045 |
-
}
|
| 7046 |
-
}
|
| 7047 |
-
},
|
| 7048 |
-
"internal-slot": {
|
| 7049 |
-
"version": "1.0.3",
|
| 7050 |
-
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
|
| 7051 |
-
"integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
|
| 7052 |
-
"requires": {
|
| 7053 |
-
"get-intrinsic": "^1.1.0",
|
| 7054 |
-
"has": "^1.0.3",
|
| 7055 |
-
"side-channel": "^1.0.4"
|
| 7056 |
-
}
|
| 7057 |
-
},
|
| 7058 |
-
"interpret": {
|
| 7059 |
-
"version": "2.2.0",
|
| 7060 |
-
"resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz",
|
| 7061 |
-
"integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==",
|
| 7062 |
-
"dev": true
|
| 7063 |
-
},
|
| 7064 |
-
"ip": {
|
| 7065 |
-
"version": "1.1.5",
|
| 7066 |
-
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
|
| 7067 |
-
"integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
|
| 7068 |
-
"dev": true
|
| 7069 |
-
},
|
| 7070 |
-
"ip-regex": {
|
| 7071 |
-
"version": "4.3.0",
|
| 7072 |
-
"resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz",
|
| 7073 |
-
"integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==",
|
| 7074 |
-
"dev": true
|
| 7075 |
-
},
|
| 7076 |
-
"ipaddr.js": {
|
| 7077 |
-
"version": "2.0.1",
|
| 7078 |
-
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz",
|
| 7079 |
-
"integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==",
|
| 7080 |
-
"dev": true
|
| 7081 |
-
},
|
| 7082 |
-
"is-absolute-url": {
|
| 7083 |
-
"version": "3.0.3",
|
| 7084 |
-
"resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz",
|
| 7085 |
-
"integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==",
|
| 7086 |
-
"dev": true
|
| 7087 |
-
},
|
| 7088 |
-
"is-arguments": {
|
| 7089 |
-
"version": "1.1.1",
|
| 7090 |
-
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
|
| 7091 |
-
"integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
|
| 7092 |
-
"dev": true,
|
| 7093 |
-
"requires": {
|
| 7094 |
-
"call-bind": "^1.0.2",
|
| 7095 |
-
"has-tostringtag": "^1.0.0"
|
| 7096 |
-
}
|
| 7097 |
-
},
|
| 7098 |
-
"is-arrayish": {
|
| 7099 |
-
"version": "0.2.1",
|
| 7100 |
-
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
| 7101 |
-
"integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
|
| 7102 |
-
},
|
| 7103 |
-
"is-bigint": {
|
| 7104 |
-
"version": "1.0.4",
|
| 7105 |
-
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
|
| 7106 |
-
"integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
|
| 7107 |
-
"requires": {
|
| 7108 |
-
"has-bigints": "^1.0.1"
|
| 7109 |
-
}
|
| 7110 |
-
},
|
| 7111 |
-
"is-binary-path": {
|
| 7112 |
-
"version": "2.1.0",
|
| 7113 |
-
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
| 7114 |
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
| 7115 |
-
"requires": {
|
| 7116 |
-
"binary-extensions": "^2.0.0"
|
| 7117 |
-
}
|
| 7118 |
-
},
|
| 7119 |
-
"is-boolean-object": {
|
| 7120 |
-
"version": "1.1.2",
|
| 7121 |
-
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
|
| 7122 |
-
"integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
|
| 7123 |
-
"requires": {
|
| 7124 |
-
"call-bind": "^1.0.2",
|
| 7125 |
-
"has-tostringtag": "^1.0.0"
|
| 7126 |
-
}
|
| 7127 |
-
},
|
| 7128 |
-
"is-buffer": {
|
| 7129 |
-
"version": "1.1.6",
|
| 7130 |
-
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
| 7131 |
-
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
|
| 7132 |
-
"dev": true
|
| 7133 |
-
},
|
| 7134 |
-
"is-callable": {
|
| 7135 |
-
"version": "1.2.4",
|
| 7136 |
-
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz",
|
| 7137 |
-
"integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="
|
| 7138 |
-
},
|
| 7139 |
-
"is-color-stop": {
|
| 7140 |
-
"version": "1.1.0",
|
| 7141 |
-
"resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz",
|
| 7142 |
-
"integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=",
|
| 7143 |
-
"requires": {
|
| 7144 |
-
"css-color-names": "^0.0.4",
|
| 7145 |
-
"hex-color-regex": "^1.1.0",
|
| 7146 |
-
"hsl-regex": "^1.0.0",
|
| 7147 |
-
"hsla-regex": "^1.0.0",
|
| 7148 |
-
"rgb-regex": "^1.0.1",
|
| 7149 |
-
"rgba-regex": "^1.0.0"
|
| 7150 |
-
},
|
| 7151 |
-
"dependencies": {
|
| 7152 |
-
"css-color-names": {
|
| 7153 |
-
"version": "0.0.4",
|
| 7154 |
-
"resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
|
| 7155 |
-
"integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA="
|
| 7156 |
-
}
|
| 7157 |
-
}
|
| 7158 |
-
},
|
| 7159 |
-
"is-core-module": {
|
| 7160 |
-
"version": "2.4.0",
|
| 7161 |
-
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz",
|
| 7162 |
-
"integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==",
|
| 7163 |
-
"requires": {
|
| 7164 |
-
"has": "^1.0.3"
|
| 7165 |
-
}
|
| 7166 |
-
},
|
| 7167 |
-
"is-date-object": {
|
| 7168 |
-
"version": "1.0.5",
|
| 7169 |
-
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
|
| 7170 |
-
"integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
|
| 7171 |
-
"requires": {
|
| 7172 |
-
"has-tostringtag": "^1.0.0"
|
| 7173 |
-
}
|
| 7174 |
-
},
|
| 7175 |
-
"is-docker": {
|
| 7176 |
-
"version": "2.2.1",
|
| 7177 |
-
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
|
| 7178 |
-
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
|
| 7179 |
-
"dev": true
|
| 7180 |
-
},
|
| 7181 |
-
"is-extglob": {
|
| 7182 |
-
"version": "2.1.1",
|
| 7183 |
-
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
| 7184 |
-
"integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
|
| 7185 |
-
},
|
| 7186 |
-
"is-fullwidth-code-point": {
|
| 7187 |
-
"version": "2.0.0",
|
| 7188 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
| 7189 |
-
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
|
| 7190 |
-
},
|
| 7191 |
-
"is-generator-function": {
|
| 7192 |
-
"version": "1.0.9",
|
| 7193 |
-
"resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz",
|
| 7194 |
-
"integrity": "sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==",
|
| 7195 |
-
"dev": true
|
| 7196 |
-
},
|
| 7197 |
-
"is-glob": {
|
| 7198 |
-
"version": "4.0.3",
|
| 7199 |
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
| 7200 |
-
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
| 7201 |
-
"requires": {
|
| 7202 |
-
"is-extglob": "^2.1.1"
|
| 7203 |
-
}
|
| 7204 |
-
},
|
| 7205 |
-
"is-ip": {
|
| 7206 |
-
"version": "3.1.0",
|
| 7207 |
-
"resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz",
|
| 7208 |
-
"integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==",
|
| 7209 |
-
"dev": true,
|
| 7210 |
-
"requires": {
|
| 7211 |
-
"ip-regex": "^4.0.0"
|
| 7212 |
-
}
|
| 7213 |
-
},
|
| 7214 |
-
"is-negative-zero": {
|
| 7215 |
-
"version": "2.0.1",
|
| 7216 |
-
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz",
|
| 7217 |
-
"integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
|
| 7218 |
-
},
|
| 7219 |
-
"is-number": {
|
| 7220 |
-
"version": "7.0.0",
|
| 7221 |
-
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
| 7222 |
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
|
| 7223 |
-
},
|
| 7224 |
-
"is-number-like": {
|
| 7225 |
-
"version": "1.0.8",
|
| 7226 |
-
"resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz",
|
| 7227 |
-
"integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==",
|
| 7228 |
-
"dev": true,
|
| 7229 |
-
"requires": {
|
| 7230 |
-
"lodash.isfinite": "^3.3.2"
|
| 7231 |
-
}
|
| 7232 |
-
},
|
| 7233 |
-
"is-number-object": {
|
| 7234 |
-
"version": "1.0.6",
|
| 7235 |
-
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz",
|
| 7236 |
-
"integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==",
|
| 7237 |
-
"requires": {
|
| 7238 |
-
"has-tostringtag": "^1.0.0"
|
| 7239 |
-
}
|
| 7240 |
-
},
|
| 7241 |
-
"is-path-cwd": {
|
| 7242 |
-
"version": "2.2.0",
|
| 7243 |
-
"resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
|
| 7244 |
-
"integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
|
| 7245 |
-
"dev": true
|
| 7246 |
-
},
|
| 7247 |
-
"is-path-inside": {
|
| 7248 |
-
"version": "3.0.3",
|
| 7249 |
-
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
|
| 7250 |
-
"integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
|
| 7251 |
-
"dev": true
|
| 7252 |
-
},
|
| 7253 |
-
"is-plain-obj": {
|
| 7254 |
-
"version": "3.0.0",
|
| 7255 |
-
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz",
|
| 7256 |
-
"integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==",
|
| 7257 |
-
"dev": true
|
| 7258 |
-
},
|
| 7259 |
-
"is-plain-object": {
|
| 7260 |
-
"version": "2.0.4",
|
| 7261 |
-
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
|
| 7262 |
-
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
|
| 7263 |
-
"dev": true,
|
| 7264 |
-
"requires": {
|
| 7265 |
-
"isobject": "^3.0.1"
|
| 7266 |
-
}
|
| 7267 |
-
},
|
| 7268 |
-
"is-promise": {
|
| 7269 |
-
"version": "4.0.0",
|
| 7270 |
-
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
| 7271 |
-
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="
|
| 7272 |
-
},
|
| 7273 |
-
"is-regex": {
|
| 7274 |
-
"version": "1.1.4",
|
| 7275 |
-
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
|
| 7276 |
-
"integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
|
| 7277 |
-
"requires": {
|
| 7278 |
-
"call-bind": "^1.0.2",
|
| 7279 |
-
"has-tostringtag": "^1.0.0"
|
| 7280 |
-
}
|
| 7281 |
-
},
|
| 7282 |
-
"is-resolvable": {
|
| 7283 |
-
"version": "1.1.0",
|
| 7284 |
-
"resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
|
| 7285 |
-
"integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
|
| 7286 |
-
"dev": true
|
| 7287 |
-
},
|
| 7288 |
-
"is-shared-array-buffer": {
|
| 7289 |
-
"version": "1.0.1",
|
| 7290 |
-
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz",
|
| 7291 |
-
"integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="
|
| 7292 |
-
},
|
| 7293 |
-
"is-stream": {
|
| 7294 |
-
"version": "2.0.1",
|
| 7295 |
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
| 7296 |
-
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
|
| 7297 |
-
"dev": true
|
| 7298 |
-
},
|
| 7299 |
-
"is-string": {
|
| 7300 |
-
"version": "1.0.7",
|
| 7301 |
-
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
|
| 7302 |
-
"integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
|
| 7303 |
-
"requires": {
|
| 7304 |
-
"has-tostringtag": "^1.0.0"
|
| 7305 |
-
}
|
| 7306 |
-
},
|
| 7307 |
-
"is-symbol": {
|
| 7308 |
-
"version": "1.0.4",
|
| 7309 |
-
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
|
| 7310 |
-
"integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
|
| 7311 |
-
"requires": {
|
| 7312 |
-
"has-symbols": "^1.0.2"
|
| 7313 |
-
}
|
| 7314 |
-
},
|
| 7315 |
-
"is-touch-device": {
|
| 7316 |
-
"version": "1.0.1",
|
| 7317 |
-
"resolved": "https://registry.npmjs.org/is-touch-device/-/is-touch-device-1.0.1.tgz",
|
| 7318 |
-
"integrity": "sha512-LAYzo9kMT1b2p19L/1ATGt2XcSilnzNlyvq6c0pbPRVisLbAPpLqr53tIJS00kvrTkj0HtR8U7+u8X0yR8lPSw=="
|
| 7319 |
-
},
|
| 7320 |
-
"is-weakref": {
|
| 7321 |
-
"version": "1.0.1",
|
| 7322 |
-
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz",
|
| 7323 |
-
"integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==",
|
| 7324 |
-
"requires": {
|
| 7325 |
-
"call-bind": "^1.0.0"
|
| 7326 |
-
}
|
| 7327 |
-
},
|
| 7328 |
-
"is-wsl": {
|
| 7329 |
-
"version": "2.2.0",
|
| 7330 |
-
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
|
| 7331 |
-
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
|
| 7332 |
-
"dev": true,
|
| 7333 |
-
"requires": {
|
| 7334 |
-
"is-docker": "^2.0.0"
|
| 7335 |
-
}
|
| 7336 |
-
},
|
| 7337 |
-
"isarray": {
|
| 7338 |
-
"version": "2.0.1",
|
| 7339 |
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz",
|
| 7340 |
-
"integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=",
|
| 7341 |
-
"dev": true
|
| 7342 |
-
},
|
| 7343 |
-
"isexe": {
|
| 7344 |
-
"version": "2.0.0",
|
| 7345 |
-
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
| 7346 |
-
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
|
| 7347 |
-
"dev": true
|
| 7348 |
-
},
|
| 7349 |
-
"isobject": {
|
| 7350 |
-
"version": "3.0.1",
|
| 7351 |
-
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
|
| 7352 |
-
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
|
| 7353 |
-
"dev": true
|
| 7354 |
-
},
|
| 7355 |
-
"jest-worker": {
|
| 7356 |
-
"version": "27.3.1",
|
| 7357 |
-
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz",
|
| 7358 |
-
"integrity": "sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==",
|
| 7359 |
-
"dev": true,
|
| 7360 |
-
"requires": {
|
| 7361 |
-
"@types/node": "*",
|
| 7362 |
-
"merge-stream": "^2.0.0",
|
| 7363 |
-
"supports-color": "^8.0.0"
|
| 7364 |
-
},
|
| 7365 |
-
"dependencies": {
|
| 7366 |
-
"has-flag": {
|
| 7367 |
-
"version": "4.0.0",
|
| 7368 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 7369 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
| 7370 |
-
"dev": true
|
| 7371 |
-
},
|
| 7372 |
-
"supports-color": {
|
| 7373 |
-
"version": "8.1.1",
|
| 7374 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
| 7375 |
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
| 7376 |
-
"dev": true,
|
| 7377 |
-
"requires": {
|
| 7378 |
-
"has-flag": "^4.0.0"
|
| 7379 |
-
}
|
| 7380 |
-
}
|
| 7381 |
-
}
|
| 7382 |
-
},
|
| 7383 |
-
"js-base64": {
|
| 7384 |
-
"version": "2.6.4",
|
| 7385 |
-
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
|
| 7386 |
-
"integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==",
|
| 7387 |
-
"dev": true
|
| 7388 |
-
},
|
| 7389 |
-
"js-tokens": {
|
| 7390 |
-
"version": "4.0.0",
|
| 7391 |
-
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
| 7392 |
-
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
|
| 7393 |
-
},
|
| 7394 |
-
"js-yaml": {
|
| 7395 |
-
"version": "4.1.0",
|
| 7396 |
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
| 7397 |
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
| 7398 |
-
"dev": true,
|
| 7399 |
-
"requires": {
|
| 7400 |
-
"argparse": "^2.0.1"
|
| 7401 |
-
}
|
| 7402 |
-
},
|
| 7403 |
-
"jsesc": {
|
| 7404 |
-
"version": "2.5.2",
|
| 7405 |
-
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
|
| 7406 |
-
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
|
| 7407 |
-
"dev": true
|
| 7408 |
-
},
|
| 7409 |
-
"json-parse-better-errors": {
|
| 7410 |
-
"version": "1.0.2",
|
| 7411 |
-
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
|
| 7412 |
-
"integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
|
| 7413 |
-
"dev": true
|
| 7414 |
-
},
|
| 7415 |
-
"json-parse-even-better-errors": {
|
| 7416 |
-
"version": "2.3.1",
|
| 7417 |
-
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
| 7418 |
-
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
|
| 7419 |
-
},
|
| 7420 |
-
"json-schema-traverse": {
|
| 7421 |
-
"version": "0.4.1",
|
| 7422 |
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
| 7423 |
-
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
| 7424 |
-
"dev": true
|
| 7425 |
-
},
|
| 7426 |
-
"json-stable-stringify-without-jsonify": {
|
| 7427 |
-
"version": "1.0.1",
|
| 7428 |
-
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
| 7429 |
-
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
|
| 7430 |
-
"dev": true
|
| 7431 |
-
},
|
| 7432 |
-
"json5": {
|
| 7433 |
-
"version": "2.2.0",
|
| 7434 |
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
|
| 7435 |
-
"integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
|
| 7436 |
-
"dev": true,
|
| 7437 |
-
"requires": {
|
| 7438 |
-
"minimist": "^1.2.5"
|
| 7439 |
-
}
|
| 7440 |
-
},
|
| 7441 |
-
"jsonfile": {
|
| 7442 |
-
"version": "6.1.0",
|
| 7443 |
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
| 7444 |
-
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
| 7445 |
-
"requires": {
|
| 7446 |
-
"graceful-fs": "^4.1.6",
|
| 7447 |
-
"universalify": "^2.0.0"
|
| 7448 |
-
}
|
| 7449 |
-
},
|
| 7450 |
-
"jsx-ast-utils": {
|
| 7451 |
-
"version": "3.2.1",
|
| 7452 |
-
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz",
|
| 7453 |
-
"integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==",
|
| 7454 |
-
"dev": true,
|
| 7455 |
-
"requires": {
|
| 7456 |
-
"array-includes": "^3.1.3",
|
| 7457 |
-
"object.assign": "^4.1.2"
|
| 7458 |
-
}
|
| 7459 |
-
},
|
| 7460 |
-
"junk": {
|
| 7461 |
-
"version": "3.1.0",
|
| 7462 |
-
"resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
|
| 7463 |
-
"integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
|
| 7464 |
-
"dev": true
|
| 7465 |
-
},
|
| 7466 |
-
"keygrip": {
|
| 7467 |
-
"version": "1.1.0",
|
| 7468 |
-
"resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz",
|
| 7469 |
-
"integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==",
|
| 7470 |
-
"dev": true,
|
| 7471 |
-
"requires": {
|
| 7472 |
-
"tsscmp": "1.0.6"
|
| 7473 |
-
}
|
| 7474 |
-
},
|
| 7475 |
-
"kind-of": {
|
| 7476 |
-
"version": "6.0.3",
|
| 7477 |
-
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
|
| 7478 |
-
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
|
| 7479 |
-
"dev": true
|
| 7480 |
-
},
|
| 7481 |
-
"klona": {
|
| 7482 |
-
"version": "2.0.5",
|
| 7483 |
-
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz",
|
| 7484 |
-
"integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==",
|
| 7485 |
-
"dev": true
|
| 7486 |
-
},
|
| 7487 |
-
"koa": {
|
| 7488 |
-
"version": "2.13.1",
|
| 7489 |
-
"resolved": "https://registry.npmjs.org/koa/-/koa-2.13.1.tgz",
|
| 7490 |
-
"integrity": "sha512-Lb2Dloc72auj5vK4X4qqL7B5jyDPQaZucc9sR/71byg7ryoD1NCaCm63CShk9ID9quQvDEi1bGR/iGjCG7As3w==",
|
| 7491 |
-
"dev": true,
|
| 7492 |
-
"requires": {
|
| 7493 |
-
"accepts": "^1.3.5",
|
| 7494 |
-
"cache-content-type": "^1.0.0",
|
| 7495 |
-
"content-disposition": "~0.5.2",
|
| 7496 |
-
"content-type": "^1.0.4",
|
| 7497 |
-
"cookies": "~0.8.0",
|
| 7498 |
-
"debug": "~3.1.0",
|
| 7499 |
-
"delegates": "^1.0.0",
|
| 7500 |
-
"depd": "^2.0.0",
|
| 7501 |
-
"destroy": "^1.0.4",
|
| 7502 |
-
"encodeurl": "^1.0.2",
|
| 7503 |
-
"escape-html": "^1.0.3",
|
| 7504 |
-
"fresh": "~0.5.2",
|
| 7505 |
-
"http-assert": "^1.3.0",
|
| 7506 |
-
"http-errors": "^1.6.3",
|
| 7507 |
-
"is-generator-function": "^1.0.7",
|
| 7508 |
-
"koa-compose": "^4.1.0",
|
| 7509 |
-
"koa-convert": "^1.2.0",
|
| 7510 |
-
"on-finished": "^2.3.0",
|
| 7511 |
-
"only": "~0.0.2",
|
| 7512 |
-
"parseurl": "^1.3.2",
|
| 7513 |
-
"statuses": "^1.5.0",
|
| 7514 |
-
"type-is": "^1.6.16",
|
| 7515 |
-
"vary": "^1.1.2"
|
| 7516 |
-
},
|
| 7517 |
-
"dependencies": {
|
| 7518 |
-
"debug": {
|
| 7519 |
-
"version": "3.1.0",
|
| 7520 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
| 7521 |
-
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
| 7522 |
-
"dev": true,
|
| 7523 |
-
"requires": {
|
| 7524 |
-
"ms": "2.0.0"
|
| 7525 |
-
}
|
| 7526 |
-
},
|
| 7527 |
-
"depd": {
|
| 7528 |
-
"version": "2.0.0",
|
| 7529 |
-
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
| 7530 |
-
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
| 7531 |
-
"dev": true
|
| 7532 |
-
},
|
| 7533 |
-
"ms": {
|
| 7534 |
-
"version": "2.0.0",
|
| 7535 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 7536 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 7537 |
-
"dev": true
|
| 7538 |
-
}
|
| 7539 |
-
}
|
| 7540 |
-
},
|
| 7541 |
-
"koa-compose": {
|
| 7542 |
-
"version": "4.1.0",
|
| 7543 |
-
"resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz",
|
| 7544 |
-
"integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==",
|
| 7545 |
-
"dev": true
|
| 7546 |
-
},
|
| 7547 |
-
"koa-convert": {
|
| 7548 |
-
"version": "1.2.0",
|
| 7549 |
-
"resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-1.2.0.tgz",
|
| 7550 |
-
"integrity": "sha1-2kCHXfSd4FOQmNFwC1CCDOvNIdA=",
|
| 7551 |
-
"dev": true,
|
| 7552 |
-
"requires": {
|
| 7553 |
-
"co": "^4.6.0",
|
| 7554 |
-
"koa-compose": "^3.0.0"
|
| 7555 |
-
},
|
| 7556 |
-
"dependencies": {
|
| 7557 |
-
"koa-compose": {
|
| 7558 |
-
"version": "3.2.1",
|
| 7559 |
-
"resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-3.2.1.tgz",
|
| 7560 |
-
"integrity": "sha1-qFzLQLfZhtjlo0Wzoazo6rz1Tec=",
|
| 7561 |
-
"dev": true,
|
| 7562 |
-
"requires": {
|
| 7563 |
-
"any-promise": "^1.1.0"
|
| 7564 |
-
}
|
| 7565 |
-
}
|
| 7566 |
-
}
|
| 7567 |
-
},
|
| 7568 |
-
"koa-send": {
|
| 7569 |
-
"version": "5.0.1",
|
| 7570 |
-
"resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz",
|
| 7571 |
-
"integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==",
|
| 7572 |
-
"dev": true,
|
| 7573 |
-
"requires": {
|
| 7574 |
-
"debug": "^4.1.1",
|
| 7575 |
-
"http-errors": "^1.7.3",
|
| 7576 |
-
"resolve-path": "^1.4.0"
|
| 7577 |
-
},
|
| 7578 |
-
"dependencies": {
|
| 7579 |
-
"http-errors": {
|
| 7580 |
-
"version": "1.8.0",
|
| 7581 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz",
|
| 7582 |
-
"integrity": "sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==",
|
| 7583 |
-
"dev": true,
|
| 7584 |
-
"requires": {
|
| 7585 |
-
"depd": "~1.1.2",
|
| 7586 |
-
"inherits": "2.0.4",
|
| 7587 |
-
"setprototypeof": "1.2.0",
|
| 7588 |
-
"statuses": ">= 1.5.0 < 2",
|
| 7589 |
-
"toidentifier": "1.0.0"
|
| 7590 |
-
}
|
| 7591 |
-
},
|
| 7592 |
-
"setprototypeof": {
|
| 7593 |
-
"version": "1.2.0",
|
| 7594 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
| 7595 |
-
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
| 7596 |
-
"dev": true
|
| 7597 |
-
}
|
| 7598 |
-
}
|
| 7599 |
-
},
|
| 7600 |
-
"koa-static": {
|
| 7601 |
-
"version": "5.0.0",
|
| 7602 |
-
"resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz",
|
| 7603 |
-
"integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==",
|
| 7604 |
-
"dev": true,
|
| 7605 |
-
"requires": {
|
| 7606 |
-
"debug": "^3.1.0",
|
| 7607 |
-
"koa-send": "^5.0.0"
|
| 7608 |
-
},
|
| 7609 |
-
"dependencies": {
|
| 7610 |
-
"debug": {
|
| 7611 |
-
"version": "3.2.7",
|
| 7612 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
|
| 7613 |
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
| 7614 |
-
"dev": true,
|
| 7615 |
-
"requires": {
|
| 7616 |
-
"ms": "^2.1.1"
|
| 7617 |
-
}
|
| 7618 |
-
}
|
| 7619 |
-
}
|
| 7620 |
-
},
|
| 7621 |
-
"laravel-mix": {
|
| 7622 |
-
"version": "6.0.39",
|
| 7623 |
-
"resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-6.0.39.tgz",
|
| 7624 |
-
"integrity": "sha512-ChTRKSNx9ViD3Xw1+BDQUZ0PLETcBrXlM7vNmomoDUZBXLUurVUJ9oaRUdGmH/WENNqL0qQ8FFxjq+6U368Nlg==",
|
| 7625 |
-
"dev": true,
|
| 7626 |
-
"requires": {
|
| 7627 |
-
"@babel/core": "^7.15.8",
|
| 7628 |
-
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
|
| 7629 |
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
| 7630 |
-
"@babel/plugin-transform-runtime": "^7.15.8",
|
| 7631 |
-
"@babel/preset-env": "^7.15.8",
|
| 7632 |
-
"@babel/runtime": "^7.15.4",
|
| 7633 |
-
"@types/babel__core": "^7.1.16",
|
| 7634 |
-
"@types/clean-css": "^4.2.5",
|
| 7635 |
-
"@types/imagemin-gifsicle": "^7.0.1",
|
| 7636 |
-
"@types/imagemin-mozjpeg": "^8.0.1",
|
| 7637 |
-
"@types/imagemin-optipng": "^5.2.1",
|
| 7638 |
-
"@types/imagemin-svgo": "^8.0.0",
|
| 7639 |
-
"autoprefixer": "^10.4.0",
|
| 7640 |
-
"babel-loader": "^8.2.3",
|
| 7641 |
-
"chalk": "^4.1.2",
|
| 7642 |
-
"chokidar": "^3.5.2",
|
| 7643 |
-
"clean-css": "^4.2.3 || ^5.1.2",
|
| 7644 |
-
"cli-table3": "^0.6.0",
|
| 7645 |
-
"collect.js": "^4.28.5",
|
| 7646 |
-
"commander": "^7.2.0",
|
| 7647 |
-
"concat": "^1.0.3",
|
| 7648 |
-
"css-loader": "^5.2.6",
|
| 7649 |
-
"cssnano": "^5.0.8",
|
| 7650 |
-
"dotenv": "^10.0.0",
|
| 7651 |
-
"dotenv-expand": "^5.1.0",
|
| 7652 |
-
"file-loader": "^6.2.0",
|
| 7653 |
-
"fs-extra": "^10.0.0",
|
| 7654 |
-
"glob": "^7.2.0",
|
| 7655 |
-
"html-loader": "^1.3.2",
|
| 7656 |
-
"imagemin": "^7.0.1",
|
| 7657 |
-
"img-loader": "^4.0.0",
|
| 7658 |
-
"lodash": "^4.17.21",
|
| 7659 |
-
"md5": "^2.3.0",
|
| 7660 |
-
"mini-css-extract-plugin": "^1.6.2",
|
| 7661 |
-
"node-libs-browser": "^2.2.1",
|
| 7662 |
-
"postcss-load-config": "^3.1.0",
|
| 7663 |
-
"postcss-loader": "^6.2.0",
|
| 7664 |
-
"semver": "^7.3.5",
|
| 7665 |
-
"strip-ansi": "^6.0.0",
|
| 7666 |
-
"style-loader": "^2.0.0",
|
| 7667 |
-
"terser": "^5.9.0",
|
| 7668 |
-
"terser-webpack-plugin": "^5.2.4",
|
| 7669 |
-
"vue-style-loader": "^4.1.3",
|
| 7670 |
-
"webpack": "^5.60.0",
|
| 7671 |
-
"webpack-cli": "^4.9.1",
|
| 7672 |
-
"webpack-dev-server": "4.4.0",
|
| 7673 |
-
"webpack-merge": "^5.8.0",
|
| 7674 |
-
"webpack-notifier": "^1.14.1",
|
| 7675 |
-
"webpackbar": "^5.0.0-3",
|
| 7676 |
-
"yargs": "^17.2.1"
|
| 7677 |
-
},
|
| 7678 |
-
"dependencies": {
|
| 7679 |
-
"@babel/runtime": {
|
| 7680 |
-
"version": "7.16.3",
|
| 7681 |
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz",
|
| 7682 |
-
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
|
| 7683 |
-
"dev": true,
|
| 7684 |
-
"requires": {
|
| 7685 |
-
"regenerator-runtime": "^0.13.4"
|
| 7686 |
-
}
|
| 7687 |
-
},
|
| 7688 |
-
"ansi-regex": {
|
| 7689 |
-
"version": "5.0.1",
|
| 7690 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 7691 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 7692 |
-
"dev": true
|
| 7693 |
-
},
|
| 7694 |
-
"ansi-styles": {
|
| 7695 |
-
"version": "4.3.0",
|
| 7696 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 7697 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 7698 |
-
"dev": true,
|
| 7699 |
-
"requires": {
|
| 7700 |
-
"color-convert": "^2.0.1"
|
| 7701 |
-
}
|
| 7702 |
-
},
|
| 7703 |
-
"chalk": {
|
| 7704 |
-
"version": "4.1.2",
|
| 7705 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
| 7706 |
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
| 7707 |
-
"dev": true,
|
| 7708 |
-
"requires": {
|
| 7709 |
-
"ansi-styles": "^4.1.0",
|
| 7710 |
-
"supports-color": "^7.1.0"
|
| 7711 |
-
}
|
| 7712 |
-
},
|
| 7713 |
-
"cliui": {
|
| 7714 |
-
"version": "7.0.4",
|
| 7715 |
-
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
|
| 7716 |
-
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
| 7717 |
-
"dev": true,
|
| 7718 |
-
"requires": {
|
| 7719 |
-
"string-width": "^4.2.0",
|
| 7720 |
-
"strip-ansi": "^6.0.0",
|
| 7721 |
-
"wrap-ansi": "^7.0.0"
|
| 7722 |
-
}
|
| 7723 |
-
},
|
| 7724 |
-
"color-convert": {
|
| 7725 |
-
"version": "2.0.1",
|
| 7726 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 7727 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 7728 |
-
"dev": true,
|
| 7729 |
-
"requires": {
|
| 7730 |
-
"color-name": "~1.1.4"
|
| 7731 |
-
}
|
| 7732 |
-
},
|
| 7733 |
-
"color-name": {
|
| 7734 |
-
"version": "1.1.4",
|
| 7735 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 7736 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 7737 |
-
"dev": true
|
| 7738 |
-
},
|
| 7739 |
-
"commander": {
|
| 7740 |
-
"version": "7.2.0",
|
| 7741 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
|
| 7742 |
-
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
|
| 7743 |
-
"dev": true
|
| 7744 |
-
},
|
| 7745 |
-
"emoji-regex": {
|
| 7746 |
-
"version": "8.0.0",
|
| 7747 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 7748 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 7749 |
-
"dev": true
|
| 7750 |
-
},
|
| 7751 |
-
"fs-extra": {
|
| 7752 |
-
"version": "10.0.0",
|
| 7753 |
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz",
|
| 7754 |
-
"integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==",
|
| 7755 |
-
"dev": true,
|
| 7756 |
-
"requires": {
|
| 7757 |
-
"graceful-fs": "^4.2.0",
|
| 7758 |
-
"jsonfile": "^6.0.1",
|
| 7759 |
-
"universalify": "^2.0.0"
|
| 7760 |
-
}
|
| 7761 |
-
},
|
| 7762 |
-
"glob": {
|
| 7763 |
-
"version": "7.2.0",
|
| 7764 |
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
|
| 7765 |
-
"integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
|
| 7766 |
-
"dev": true,
|
| 7767 |
-
"requires": {
|
| 7768 |
-
"fs.realpath": "^1.0.0",
|
| 7769 |
-
"inflight": "^1.0.4",
|
| 7770 |
-
"inherits": "2",
|
| 7771 |
-
"minimatch": "^3.0.4",
|
| 7772 |
-
"once": "^1.3.0",
|
| 7773 |
-
"path-is-absolute": "^1.0.0"
|
| 7774 |
-
}
|
| 7775 |
-
},
|
| 7776 |
-
"has-flag": {
|
| 7777 |
-
"version": "4.0.0",
|
| 7778 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 7779 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
| 7780 |
-
"dev": true
|
| 7781 |
-
},
|
| 7782 |
-
"is-fullwidth-code-point": {
|
| 7783 |
-
"version": "3.0.0",
|
| 7784 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 7785 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 7786 |
-
"dev": true
|
| 7787 |
-
},
|
| 7788 |
-
"string-width": {
|
| 7789 |
-
"version": "4.2.3",
|
| 7790 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 7791 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 7792 |
-
"dev": true,
|
| 7793 |
-
"requires": {
|
| 7794 |
-
"emoji-regex": "^8.0.0",
|
| 7795 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 7796 |
-
"strip-ansi": "^6.0.1"
|
| 7797 |
-
}
|
| 7798 |
-
},
|
| 7799 |
-
"strip-ansi": {
|
| 7800 |
-
"version": "6.0.1",
|
| 7801 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 7802 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 7803 |
-
"dev": true,
|
| 7804 |
-
"requires": {
|
| 7805 |
-
"ansi-regex": "^5.0.1"
|
| 7806 |
-
}
|
| 7807 |
-
},
|
| 7808 |
-
"supports-color": {
|
| 7809 |
-
"version": "7.2.0",
|
| 7810 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
| 7811 |
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
| 7812 |
-
"dev": true,
|
| 7813 |
-
"requires": {
|
| 7814 |
-
"has-flag": "^4.0.0"
|
| 7815 |
-
}
|
| 7816 |
-
},
|
| 7817 |
-
"wrap-ansi": {
|
| 7818 |
-
"version": "7.0.0",
|
| 7819 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
| 7820 |
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
| 7821 |
-
"dev": true,
|
| 7822 |
-
"requires": {
|
| 7823 |
-
"ansi-styles": "^4.0.0",
|
| 7824 |
-
"string-width": "^4.1.0",
|
| 7825 |
-
"strip-ansi": "^6.0.0"
|
| 7826 |
-
}
|
| 7827 |
-
},
|
| 7828 |
-
"y18n": {
|
| 7829 |
-
"version": "5.0.8",
|
| 7830 |
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
| 7831 |
-
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
| 7832 |
-
"dev": true
|
| 7833 |
-
},
|
| 7834 |
-
"yargs": {
|
| 7835 |
-
"version": "17.2.1",
|
| 7836 |
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz",
|
| 7837 |
-
"integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==",
|
| 7838 |
-
"dev": true,
|
| 7839 |
-
"requires": {
|
| 7840 |
-
"cliui": "^7.0.2",
|
| 7841 |
-
"escalade": "^3.1.1",
|
| 7842 |
-
"get-caller-file": "^2.0.5",
|
| 7843 |
-
"require-directory": "^2.1.1",
|
| 7844 |
-
"string-width": "^4.2.0",
|
| 7845 |
-
"y18n": "^5.0.5",
|
| 7846 |
-
"yargs-parser": "^20.2.2"
|
| 7847 |
-
}
|
| 7848 |
-
},
|
| 7849 |
-
"yargs-parser": {
|
| 7850 |
-
"version": "20.2.9",
|
| 7851 |
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
|
| 7852 |
-
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
|
| 7853 |
-
"dev": true
|
| 7854 |
-
}
|
| 7855 |
-
}
|
| 7856 |
-
},
|
| 7857 |
-
"levn": {
|
| 7858 |
-
"version": "0.4.1",
|
| 7859 |
-
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
|
| 7860 |
-
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
| 7861 |
-
"dev": true,
|
| 7862 |
-
"requires": {
|
| 7863 |
-
"prelude-ls": "^1.2.1",
|
| 7864 |
-
"type-check": "~0.4.0"
|
| 7865 |
-
}
|
| 7866 |
-
},
|
| 7867 |
-
"lilconfig": {
|
| 7868 |
-
"version": "2.0.4",
|
| 7869 |
-
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz",
|
| 7870 |
-
"integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA=="
|
| 7871 |
-
},
|
| 7872 |
-
"limiter": {
|
| 7873 |
-
"version": "1.1.5",
|
| 7874 |
-
"resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz",
|
| 7875 |
-
"integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==",
|
| 7876 |
-
"dev": true
|
| 7877 |
-
},
|
| 7878 |
-
"line-height": {
|
| 7879 |
-
"version": "0.3.1",
|
| 7880 |
-
"resolved": "https://registry.npmjs.org/line-height/-/line-height-0.3.1.tgz",
|
| 7881 |
-
"integrity": "sha1-SxIF7d4YKHKl76PI9iCzGHqcVMk=",
|
| 7882 |
-
"requires": {
|
| 7883 |
-
"computed-style": "~0.1.3"
|
| 7884 |
-
}
|
| 7885 |
-
},
|
| 7886 |
-
"lines-and-columns": {
|
| 7887 |
-
"version": "1.1.6",
|
| 7888 |
-
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
|
| 7889 |
-
"integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
|
| 7890 |
-
},
|
| 7891 |
-
"lint-staged": {
|
| 7892 |
-
"version": "12.0.2",
|
| 7893 |
-
"resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-12.0.2.tgz",
|
| 7894 |
-
"integrity": "sha512-tpCvACqc7bykziGJmXG0G8YG2RaCrWiDBwmrP9wU7i/3za9JMOvCECQmXjw/sO4ICC70ApVwyqixS1htQX9Haw==",
|
| 7895 |
-
"dev": true,
|
| 7896 |
-
"requires": {
|
| 7897 |
-
"cli-truncate": "3.1.0",
|
| 7898 |
-
"colorette": "^2.0.16",
|
| 7899 |
-
"commander": "^8.3.0",
|
| 7900 |
-
"cosmiconfig": "^7.0.1",
|
| 7901 |
-
"debug": "^4.3.2",
|
| 7902 |
-
"execa": "^5.1.1",
|
| 7903 |
-
"listr2": "^3.13.3",
|
| 7904 |
-
"micromatch": "^4.0.4",
|
| 7905 |
-
"normalize-path": "^3.0.0",
|
| 7906 |
-
"object-inspect": "1.11.0",
|
| 7907 |
-
"string-argv": "0.3.1",
|
| 7908 |
-
"supports-color": "9.0.2"
|
| 7909 |
-
},
|
| 7910 |
-
"dependencies": {
|
| 7911 |
-
"commander": {
|
| 7912 |
-
"version": "8.3.0",
|
| 7913 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
|
| 7914 |
-
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
|
| 7915 |
-
"dev": true
|
| 7916 |
-
},
|
| 7917 |
-
"cosmiconfig": {
|
| 7918 |
-
"version": "7.0.1",
|
| 7919 |
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
|
| 7920 |
-
"integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
|
| 7921 |
-
"dev": true,
|
| 7922 |
-
"requires": {
|
| 7923 |
-
"@types/parse-json": "^4.0.0",
|
| 7924 |
-
"import-fresh": "^3.2.1",
|
| 7925 |
-
"parse-json": "^5.0.0",
|
| 7926 |
-
"path-type": "^4.0.0",
|
| 7927 |
-
"yaml": "^1.10.0"
|
| 7928 |
-
}
|
| 7929 |
-
},
|
| 7930 |
-
"debug": {
|
| 7931 |
-
"version": "4.3.2",
|
| 7932 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
|
| 7933 |
-
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
|
| 7934 |
-
"dev": true,
|
| 7935 |
-
"requires": {
|
| 7936 |
-
"ms": "2.1.2"
|
| 7937 |
-
}
|
| 7938 |
-
},
|
| 7939 |
-
"has-flag": {
|
| 7940 |
-
"version": "5.0.1",
|
| 7941 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-5.0.1.tgz",
|
| 7942 |
-
"integrity": "sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA==",
|
| 7943 |
-
"dev": true
|
| 7944 |
-
},
|
| 7945 |
-
"supports-color": {
|
| 7946 |
-
"version": "9.0.2",
|
| 7947 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.0.2.tgz",
|
| 7948 |
-
"integrity": "sha512-ii6tc8ImGFrgMPYq7RVAMKkhPo9vk8uA+D3oKbJq/3Pk2YSMv1+9dUAesa9UxMbxBTvxwKTQffBahNVNxEvM8Q==",
|
| 7949 |
-
"dev": true,
|
| 7950 |
-
"requires": {
|
| 7951 |
-
"has-flag": "^5.0.0"
|
| 7952 |
-
}
|
| 7953 |
-
}
|
| 7954 |
-
}
|
| 7955 |
-
},
|
| 7956 |
-
"listr2": {
|
| 7957 |
-
"version": "3.13.3",
|
| 7958 |
-
"resolved": "https://registry.npmjs.org/listr2/-/listr2-3.13.3.tgz",
|
| 7959 |
-
"integrity": "sha512-VqAgN+XVfyaEjSaFewGPcDs5/3hBbWVaX1VgWv2f52MF7US45JuARlArULctiB44IIcEk3JF7GtoFCLqEdeuPA==",
|
| 7960 |
-
"dev": true,
|
| 7961 |
-
"requires": {
|
| 7962 |
-
"cli-truncate": "^2.1.0",
|
| 7963 |
-
"clone": "^2.1.2",
|
| 7964 |
-
"colorette": "^2.0.16",
|
| 7965 |
-
"log-update": "^4.0.0",
|
| 7966 |
-
"p-map": "^4.0.0",
|
| 7967 |
-
"rxjs": "^7.4.0",
|
| 7968 |
-
"through": "^2.3.8",
|
| 7969 |
-
"wrap-ansi": "^7.0.0"
|
| 7970 |
-
},
|
| 7971 |
-
"dependencies": {
|
| 7972 |
-
"ansi-regex": {
|
| 7973 |
-
"version": "5.0.1",
|
| 7974 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 7975 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 7976 |
-
"dev": true
|
| 7977 |
-
},
|
| 7978 |
-
"ansi-styles": {
|
| 7979 |
-
"version": "4.3.0",
|
| 7980 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 7981 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 7982 |
-
"dev": true,
|
| 7983 |
-
"requires": {
|
| 7984 |
-
"color-convert": "^2.0.1"
|
| 7985 |
-
}
|
| 7986 |
-
},
|
| 7987 |
-
"cli-truncate": {
|
| 7988 |
-
"version": "2.1.0",
|
| 7989 |
-
"resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz",
|
| 7990 |
-
"integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
|
| 7991 |
-
"dev": true,
|
| 7992 |
-
"requires": {
|
| 7993 |
-
"slice-ansi": "^3.0.0",
|
| 7994 |
-
"string-width": "^4.2.0"
|
| 7995 |
-
}
|
| 7996 |
-
},
|
| 7997 |
-
"color-convert": {
|
| 7998 |
-
"version": "2.0.1",
|
| 7999 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 8000 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 8001 |
-
"dev": true,
|
| 8002 |
-
"requires": {
|
| 8003 |
-
"color-name": "~1.1.4"
|
| 8004 |
-
}
|
| 8005 |
-
},
|
| 8006 |
-
"color-name": {
|
| 8007 |
-
"version": "1.1.4",
|
| 8008 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 8009 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 8010 |
-
"dev": true
|
| 8011 |
-
},
|
| 8012 |
-
"emoji-regex": {
|
| 8013 |
-
"version": "8.0.0",
|
| 8014 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 8015 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 8016 |
-
"dev": true
|
| 8017 |
-
},
|
| 8018 |
-
"is-fullwidth-code-point": {
|
| 8019 |
-
"version": "3.0.0",
|
| 8020 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 8021 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 8022 |
-
"dev": true
|
| 8023 |
-
},
|
| 8024 |
-
"rxjs": {
|
| 8025 |
-
"version": "7.4.0",
|
| 8026 |
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.4.0.tgz",
|
| 8027 |
-
"integrity": "sha512-7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w==",
|
| 8028 |
-
"dev": true,
|
| 8029 |
-
"requires": {
|
| 8030 |
-
"tslib": "~2.1.0"
|
| 8031 |
-
}
|
| 8032 |
-
},
|
| 8033 |
-
"slice-ansi": {
|
| 8034 |
-
"version": "3.0.0",
|
| 8035 |
-
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz",
|
| 8036 |
-
"integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
|
| 8037 |
-
"dev": true,
|
| 8038 |
-
"requires": {
|
| 8039 |
-
"ansi-styles": "^4.0.0",
|
| 8040 |
-
"astral-regex": "^2.0.0",
|
| 8041 |
-
"is-fullwidth-code-point": "^3.0.0"
|
| 8042 |
-
}
|
| 8043 |
-
},
|
| 8044 |
-
"string-width": {
|
| 8045 |
-
"version": "4.2.3",
|
| 8046 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 8047 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 8048 |
-
"dev": true,
|
| 8049 |
-
"requires": {
|
| 8050 |
-
"emoji-regex": "^8.0.0",
|
| 8051 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 8052 |
-
"strip-ansi": "^6.0.1"
|
| 8053 |
-
}
|
| 8054 |
-
},
|
| 8055 |
-
"strip-ansi": {
|
| 8056 |
-
"version": "6.0.1",
|
| 8057 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 8058 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 8059 |
-
"dev": true,
|
| 8060 |
-
"requires": {
|
| 8061 |
-
"ansi-regex": "^5.0.1"
|
| 8062 |
-
}
|
| 8063 |
-
},
|
| 8064 |
-
"tslib": {
|
| 8065 |
-
"version": "2.1.0",
|
| 8066 |
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz",
|
| 8067 |
-
"integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==",
|
| 8068 |
-
"dev": true
|
| 8069 |
-
},
|
| 8070 |
-
"wrap-ansi": {
|
| 8071 |
-
"version": "7.0.0",
|
| 8072 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
| 8073 |
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
| 8074 |
-
"dev": true,
|
| 8075 |
-
"requires": {
|
| 8076 |
-
"ansi-styles": "^4.0.0",
|
| 8077 |
-
"string-width": "^4.1.0",
|
| 8078 |
-
"strip-ansi": "^6.0.0"
|
| 8079 |
-
}
|
| 8080 |
-
}
|
| 8081 |
-
}
|
| 8082 |
-
},
|
| 8083 |
-
"loader-runner": {
|
| 8084 |
-
"version": "4.2.0",
|
| 8085 |
-
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz",
|
| 8086 |
-
"integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==",
|
| 8087 |
-
"dev": true
|
| 8088 |
-
},
|
| 8089 |
-
"loader-utils": {
|
| 8090 |
-
"version": "1.4.0",
|
| 8091 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
|
| 8092 |
-
"integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
|
| 8093 |
-
"dev": true,
|
| 8094 |
-
"requires": {
|
| 8095 |
-
"big.js": "^5.2.2",
|
| 8096 |
-
"emojis-list": "^3.0.0",
|
| 8097 |
-
"json5": "^1.0.1"
|
| 8098 |
-
},
|
| 8099 |
-
"dependencies": {
|
| 8100 |
-
"json5": {
|
| 8101 |
-
"version": "1.0.1",
|
| 8102 |
-
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
|
| 8103 |
-
"integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
|
| 8104 |
-
"dev": true,
|
| 8105 |
-
"requires": {
|
| 8106 |
-
"minimist": "^1.2.0"
|
| 8107 |
-
}
|
| 8108 |
-
}
|
| 8109 |
-
}
|
| 8110 |
-
},
|
| 8111 |
-
"localtunnel": {
|
| 8112 |
-
"version": "2.0.2",
|
| 8113 |
-
"resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz",
|
| 8114 |
-
"integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==",
|
| 8115 |
-
"dev": true,
|
| 8116 |
-
"requires": {
|
| 8117 |
-
"axios": "0.21.4",
|
| 8118 |
-
"debug": "4.3.2",
|
| 8119 |
-
"openurl": "1.1.1",
|
| 8120 |
-
"yargs": "17.1.1"
|
| 8121 |
-
},
|
| 8122 |
-
"dependencies": {
|
| 8123 |
-
"ansi-regex": {
|
| 8124 |
-
"version": "5.0.1",
|
| 8125 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 8126 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 8127 |
-
"dev": true
|
| 8128 |
-
},
|
| 8129 |
-
"ansi-styles": {
|
| 8130 |
-
"version": "4.3.0",
|
| 8131 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 8132 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 8133 |
-
"dev": true,
|
| 8134 |
-
"requires": {
|
| 8135 |
-
"color-convert": "^2.0.1"
|
| 8136 |
-
}
|
| 8137 |
-
},
|
| 8138 |
-
"axios": {
|
| 8139 |
-
"version": "0.21.4",
|
| 8140 |
-
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
|
| 8141 |
-
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
|
| 8142 |
-
"dev": true,
|
| 8143 |
-
"requires": {
|
| 8144 |
-
"follow-redirects": "^1.14.0"
|
| 8145 |
-
}
|
| 8146 |
-
},
|
| 8147 |
-
"cliui": {
|
| 8148 |
-
"version": "7.0.4",
|
| 8149 |
-
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
|
| 8150 |
-
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
| 8151 |
-
"dev": true,
|
| 8152 |
-
"requires": {
|
| 8153 |
-
"string-width": "^4.2.0",
|
| 8154 |
-
"strip-ansi": "^6.0.0",
|
| 8155 |
-
"wrap-ansi": "^7.0.0"
|
| 8156 |
-
}
|
| 8157 |
-
},
|
| 8158 |
-
"color-convert": {
|
| 8159 |
-
"version": "2.0.1",
|
| 8160 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 8161 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 8162 |
-
"dev": true,
|
| 8163 |
-
"requires": {
|
| 8164 |
-
"color-name": "~1.1.4"
|
| 8165 |
-
}
|
| 8166 |
-
},
|
| 8167 |
-
"color-name": {
|
| 8168 |
-
"version": "1.1.4",
|
| 8169 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 8170 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 8171 |
-
"dev": true
|
| 8172 |
-
},
|
| 8173 |
-
"debug": {
|
| 8174 |
-
"version": "4.3.2",
|
| 8175 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
|
| 8176 |
-
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
|
| 8177 |
-
"dev": true,
|
| 8178 |
-
"requires": {
|
| 8179 |
-
"ms": "2.1.2"
|
| 8180 |
-
}
|
| 8181 |
-
},
|
| 8182 |
-
"emoji-regex": {
|
| 8183 |
-
"version": "8.0.0",
|
| 8184 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 8185 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 8186 |
-
"dev": true
|
| 8187 |
-
},
|
| 8188 |
-
"is-fullwidth-code-point": {
|
| 8189 |
-
"version": "3.0.0",
|
| 8190 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 8191 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 8192 |
-
"dev": true
|
| 8193 |
-
},
|
| 8194 |
-
"string-width": {
|
| 8195 |
-
"version": "4.2.3",
|
| 8196 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 8197 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 8198 |
-
"dev": true,
|
| 8199 |
-
"requires": {
|
| 8200 |
-
"emoji-regex": "^8.0.0",
|
| 8201 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 8202 |
-
"strip-ansi": "^6.0.1"
|
| 8203 |
-
}
|
| 8204 |
-
},
|
| 8205 |
-
"strip-ansi": {
|
| 8206 |
-
"version": "6.0.1",
|
| 8207 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 8208 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 8209 |
-
"dev": true,
|
| 8210 |
-
"requires": {
|
| 8211 |
-
"ansi-regex": "^5.0.1"
|
| 8212 |
-
}
|
| 8213 |
-
},
|
| 8214 |
-
"wrap-ansi": {
|
| 8215 |
-
"version": "7.0.0",
|
| 8216 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
| 8217 |
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
| 8218 |
-
"dev": true,
|
| 8219 |
-
"requires": {
|
| 8220 |
-
"ansi-styles": "^4.0.0",
|
| 8221 |
-
"string-width": "^4.1.0",
|
| 8222 |
-
"strip-ansi": "^6.0.0"
|
| 8223 |
-
}
|
| 8224 |
-
},
|
| 8225 |
-
"y18n": {
|
| 8226 |
-
"version": "5.0.8",
|
| 8227 |
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
| 8228 |
-
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
| 8229 |
-
"dev": true
|
| 8230 |
-
},
|
| 8231 |
-
"yargs": {
|
| 8232 |
-
"version": "17.1.1",
|
| 8233 |
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz",
|
| 8234 |
-
"integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==",
|
| 8235 |
-
"dev": true,
|
| 8236 |
-
"requires": {
|
| 8237 |
-
"cliui": "^7.0.2",
|
| 8238 |
-
"escalade": "^3.1.1",
|
| 8239 |
-
"get-caller-file": "^2.0.5",
|
| 8240 |
-
"require-directory": "^2.1.1",
|
| 8241 |
-
"string-width": "^4.2.0",
|
| 8242 |
-
"y18n": "^5.0.5",
|
| 8243 |
-
"yargs-parser": "^20.2.2"
|
| 8244 |
-
}
|
| 8245 |
-
},
|
| 8246 |
-
"yargs-parser": {
|
| 8247 |
-
"version": "20.2.9",
|
| 8248 |
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
|
| 8249 |
-
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
|
| 8250 |
-
"dev": true
|
| 8251 |
-
}
|
| 8252 |
-
}
|
| 8253 |
-
},
|
| 8254 |
-
"locate-path": {
|
| 8255 |
-
"version": "3.0.0",
|
| 8256 |
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
|
| 8257 |
-
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
|
| 8258 |
-
"requires": {
|
| 8259 |
-
"p-locate": "^3.0.0",
|
| 8260 |
-
"path-exists": "^3.0.0"
|
| 8261 |
-
}
|
| 8262 |
-
},
|
| 8263 |
-
"lodash": {
|
| 8264 |
-
"version": "4.17.21",
|
| 8265 |
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
| 8266 |
-
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
| 8267 |
-
},
|
| 8268 |
-
"lodash.debounce": {
|
| 8269 |
-
"version": "4.0.8",
|
| 8270 |
-
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
|
| 8271 |
-
"integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
|
| 8272 |
-
"dev": true
|
| 8273 |
-
},
|
| 8274 |
-
"lodash.isfinite": {
|
| 8275 |
-
"version": "3.3.2",
|
| 8276 |
-
"resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz",
|
| 8277 |
-
"integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=",
|
| 8278 |
-
"dev": true
|
| 8279 |
-
},
|
| 8280 |
-
"lodash.memoize": {
|
| 8281 |
-
"version": "4.1.2",
|
| 8282 |
-
"resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
|
| 8283 |
-
"integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
|
| 8284 |
-
"dev": true
|
| 8285 |
-
},
|
| 8286 |
-
"lodash.merge": {
|
| 8287 |
-
"version": "4.6.2",
|
| 8288 |
-
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
| 8289 |
-
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
| 8290 |
-
"dev": true
|
| 8291 |
-
},
|
| 8292 |
-
"lodash.topath": {
|
| 8293 |
-
"version": "4.5.2",
|
| 8294 |
-
"resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz",
|
| 8295 |
-
"integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak="
|
| 8296 |
-
},
|
| 8297 |
-
"lodash.uniq": {
|
| 8298 |
-
"version": "4.5.0",
|
| 8299 |
-
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
| 8300 |
-
"integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
|
| 8301 |
-
"dev": true
|
| 8302 |
-
},
|
| 8303 |
-
"log-update": {
|
| 8304 |
-
"version": "4.0.0",
|
| 8305 |
-
"resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz",
|
| 8306 |
-
"integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==",
|
| 8307 |
-
"dev": true,
|
| 8308 |
-
"requires": {
|
| 8309 |
-
"ansi-escapes": "^4.3.0",
|
| 8310 |
-
"cli-cursor": "^3.1.0",
|
| 8311 |
-
"slice-ansi": "^4.0.0",
|
| 8312 |
-
"wrap-ansi": "^6.2.0"
|
| 8313 |
-
},
|
| 8314 |
-
"dependencies": {
|
| 8315 |
-
"ansi-regex": {
|
| 8316 |
-
"version": "5.0.1",
|
| 8317 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 8318 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 8319 |
-
"dev": true
|
| 8320 |
-
},
|
| 8321 |
-
"ansi-styles": {
|
| 8322 |
-
"version": "4.3.0",
|
| 8323 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 8324 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 8325 |
-
"dev": true,
|
| 8326 |
-
"requires": {
|
| 8327 |
-
"color-convert": "^2.0.1"
|
| 8328 |
-
}
|
| 8329 |
-
},
|
| 8330 |
-
"color-convert": {
|
| 8331 |
-
"version": "2.0.1",
|
| 8332 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 8333 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 8334 |
-
"dev": true,
|
| 8335 |
-
"requires": {
|
| 8336 |
-
"color-name": "~1.1.4"
|
| 8337 |
-
}
|
| 8338 |
-
},
|
| 8339 |
-
"color-name": {
|
| 8340 |
-
"version": "1.1.4",
|
| 8341 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 8342 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 8343 |
-
"dev": true
|
| 8344 |
-
},
|
| 8345 |
-
"emoji-regex": {
|
| 8346 |
-
"version": "8.0.0",
|
| 8347 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 8348 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 8349 |
-
"dev": true
|
| 8350 |
-
},
|
| 8351 |
-
"is-fullwidth-code-point": {
|
| 8352 |
-
"version": "3.0.0",
|
| 8353 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 8354 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 8355 |
-
"dev": true
|
| 8356 |
-
},
|
| 8357 |
-
"slice-ansi": {
|
| 8358 |
-
"version": "4.0.0",
|
| 8359 |
-
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
|
| 8360 |
-
"integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
|
| 8361 |
-
"dev": true,
|
| 8362 |
-
"requires": {
|
| 8363 |
-
"ansi-styles": "^4.0.0",
|
| 8364 |
-
"astral-regex": "^2.0.0",
|
| 8365 |
-
"is-fullwidth-code-point": "^3.0.0"
|
| 8366 |
-
}
|
| 8367 |
-
},
|
| 8368 |
-
"string-width": {
|
| 8369 |
-
"version": "4.2.3",
|
| 8370 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
| 8371 |
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
| 8372 |
-
"dev": true,
|
| 8373 |
-
"requires": {
|
| 8374 |
-
"emoji-regex": "^8.0.0",
|
| 8375 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 8376 |
-
"strip-ansi": "^6.0.1"
|
| 8377 |
-
}
|
| 8378 |
-
},
|
| 8379 |
-
"strip-ansi": {
|
| 8380 |
-
"version": "6.0.1",
|
| 8381 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 8382 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 8383 |
-
"dev": true,
|
| 8384 |
-
"requires": {
|
| 8385 |
-
"ansi-regex": "^5.0.1"
|
| 8386 |
-
}
|
| 8387 |
-
},
|
| 8388 |
-
"wrap-ansi": {
|
| 8389 |
-
"version": "6.2.0",
|
| 8390 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
| 8391 |
-
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
| 8392 |
-
"dev": true,
|
| 8393 |
-
"requires": {
|
| 8394 |
-
"ansi-styles": "^4.0.0",
|
| 8395 |
-
"string-width": "^4.1.0",
|
| 8396 |
-
"strip-ansi": "^6.0.0"
|
| 8397 |
-
}
|
| 8398 |
-
}
|
| 8399 |
-
}
|
| 8400 |
-
},
|
| 8401 |
-
"loose-envify": {
|
| 8402 |
-
"version": "1.4.0",
|
| 8403 |
-
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
| 8404 |
-
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
| 8405 |
-
"requires": {
|
| 8406 |
-
"js-tokens": "^3.0.0 || ^4.0.0"
|
| 8407 |
-
}
|
| 8408 |
-
},
|
| 8409 |
-
"lower-case": {
|
| 8410 |
-
"version": "2.0.2",
|
| 8411 |
-
"resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
|
| 8412 |
-
"integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
|
| 8413 |
-
"dev": true,
|
| 8414 |
-
"requires": {
|
| 8415 |
-
"tslib": "^2.0.3"
|
| 8416 |
-
}
|
| 8417 |
-
},
|
| 8418 |
-
"lru-cache": {
|
| 8419 |
-
"version": "6.0.0",
|
| 8420 |
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
| 8421 |
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
| 8422 |
-
"dev": true,
|
| 8423 |
-
"requires": {
|
| 8424 |
-
"yallist": "^4.0.0"
|
| 8425 |
-
}
|
| 8426 |
-
},
|
| 8427 |
-
"make-dir": {
|
| 8428 |
-
"version": "3.1.0",
|
| 8429 |
-
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
|
| 8430 |
-
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
|
| 8431 |
-
"dev": true,
|
| 8432 |
-
"requires": {
|
| 8433 |
-
"semver": "^6.0.0"
|
| 8434 |
-
},
|
| 8435 |
-
"dependencies": {
|
| 8436 |
-
"semver": {
|
| 8437 |
-
"version": "6.3.0",
|
| 8438 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
| 8439 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
| 8440 |
-
"dev": true
|
| 8441 |
-
}
|
| 8442 |
-
}
|
| 8443 |
-
},
|
| 8444 |
-
"md5": {
|
| 8445 |
-
"version": "2.3.0",
|
| 8446 |
-
"resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz",
|
| 8447 |
-
"integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==",
|
| 8448 |
-
"dev": true,
|
| 8449 |
-
"requires": {
|
| 8450 |
-
"charenc": "0.0.2",
|
| 8451 |
-
"crypt": "0.0.2",
|
| 8452 |
-
"is-buffer": "~1.1.6"
|
| 8453 |
-
}
|
| 8454 |
-
},
|
| 8455 |
-
"md5.js": {
|
| 8456 |
-
"version": "1.3.5",
|
| 8457 |
-
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
| 8458 |
-
"integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
|
| 8459 |
-
"dev": true,
|
| 8460 |
-
"requires": {
|
| 8461 |
-
"hash-base": "^3.0.0",
|
| 8462 |
-
"inherits": "^2.0.1",
|
| 8463 |
-
"safe-buffer": "^5.1.2"
|
| 8464 |
-
}
|
| 8465 |
-
},
|
| 8466 |
-
"mdn-data": {
|
| 8467 |
-
"version": "2.0.14",
|
| 8468 |
-
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
|
| 8469 |
-
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==",
|
| 8470 |
-
"dev": true
|
| 8471 |
-
},
|
| 8472 |
-
"media-typer": {
|
| 8473 |
-
"version": "0.3.0",
|
| 8474 |
-
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
| 8475 |
-
"integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
|
| 8476 |
-
"dev": true
|
| 8477 |
-
},
|
| 8478 |
-
"memfs": {
|
| 8479 |
-
"version": "3.3.0",
|
| 8480 |
-
"resolved": "https://registry.npmjs.org/memfs/-/memfs-3.3.0.tgz",
|
| 8481 |
-
"integrity": "sha512-BEE62uMfKOavX3iG7GYX43QJ+hAeeWnwIAuJ/R6q96jaMtiLzhsxHJC8B1L7fK7Pt/vXDRwb3SG/yBpNGDPqzg==",
|
| 8482 |
-
"dev": true,
|
| 8483 |
-
"requires": {
|
| 8484 |
-
"fs-monkey": "1.0.3"
|
| 8485 |
-
}
|
| 8486 |
-
},
|
| 8487 |
-
"memize": {
|
| 8488 |
-
"version": "1.1.0",
|
| 8489 |
-
"resolved": "https://registry.npmjs.org/memize/-/memize-1.1.0.tgz",
|
| 8490 |
-
"integrity": "sha512-K4FcPETOMTwe7KL2LK0orMhpOmWD2wRGwWWpbZy0fyArwsyIKR8YJVz8+efBAh3BO4zPqlSICu4vsLTRRqtFAg=="
|
| 8491 |
-
},
|
| 8492 |
-
"merge-descriptors": {
|
| 8493 |
-
"version": "1.0.1",
|
| 8494 |
-
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
|
| 8495 |
-
"integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
|
| 8496 |
-
"dev": true
|
| 8497 |
-
},
|
| 8498 |
-
"merge-stream": {
|
| 8499 |
-
"version": "2.0.0",
|
| 8500 |
-
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
| 8501 |
-
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
| 8502 |
-
"dev": true
|
| 8503 |
-
},
|
| 8504 |
-
"merge2": {
|
| 8505 |
-
"version": "1.4.1",
|
| 8506 |
-
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
| 8507 |
-
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
|
| 8508 |
-
},
|
| 8509 |
-
"methods": {
|
| 8510 |
-
"version": "1.1.2",
|
| 8511 |
-
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
| 8512 |
-
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
|
| 8513 |
-
"dev": true
|
| 8514 |
-
},
|
| 8515 |
-
"micromatch": {
|
| 8516 |
-
"version": "4.0.4",
|
| 8517 |
-
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
|
| 8518 |
-
"integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
|
| 8519 |
-
"requires": {
|
| 8520 |
-
"braces": "^3.0.1",
|
| 8521 |
-
"picomatch": "^2.2.3"
|
| 8522 |
-
}
|
| 8523 |
-
},
|
| 8524 |
-
"micromodal": {
|
| 8525 |
-
"version": "0.4.6",
|
| 8526 |
-
"resolved": "https://registry.npmjs.org/micromodal/-/micromodal-0.4.6.tgz",
|
| 8527 |
-
"integrity": "sha512-2VDso2a22jWPpqwuWT/4RomVpoU3Bl9qF9D01xzwlNp5UVsImeA0gY4nSpF44vqcQtQOtkiMUV9EZkAJSRxBsg=="
|
| 8528 |
-
},
|
| 8529 |
-
"miller-rabin": {
|
| 8530 |
-
"version": "4.0.1",
|
| 8531 |
-
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
|
| 8532 |
-
"integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
|
| 8533 |
-
"dev": true,
|
| 8534 |
-
"requires": {
|
| 8535 |
-
"bn.js": "^4.0.0",
|
| 8536 |
-
"brorand": "^1.0.1"
|
| 8537 |
-
},
|
| 8538 |
-
"dependencies": {
|
| 8539 |
-
"bn.js": {
|
| 8540 |
-
"version": "4.12.0",
|
| 8541 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 8542 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 8543 |
-
"dev": true
|
| 8544 |
-
}
|
| 8545 |
-
}
|
| 8546 |
-
},
|
| 8547 |
-
"mime": {
|
| 8548 |
-
"version": "1.4.1",
|
| 8549 |
-
"resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
|
| 8550 |
-
"integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
|
| 8551 |
-
"dev": true
|
| 8552 |
-
},
|
| 8553 |
-
"mime-db": {
|
| 8554 |
-
"version": "1.49.0",
|
| 8555 |
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz",
|
| 8556 |
-
"integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==",
|
| 8557 |
-
"dev": true
|
| 8558 |
-
},
|
| 8559 |
-
"mime-types": {
|
| 8560 |
-
"version": "2.1.32",
|
| 8561 |
-
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz",
|
| 8562 |
-
"integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==",
|
| 8563 |
-
"dev": true,
|
| 8564 |
-
"requires": {
|
| 8565 |
-
"mime-db": "1.49.0"
|
| 8566 |
-
}
|
| 8567 |
-
},
|
| 8568 |
-
"mimic-fn": {
|
| 8569 |
-
"version": "2.1.0",
|
| 8570 |
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
| 8571 |
-
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
| 8572 |
-
"dev": true
|
| 8573 |
-
},
|
| 8574 |
-
"mini-css-extract-plugin": {
|
| 8575 |
-
"version": "1.6.2",
|
| 8576 |
-
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz",
|
| 8577 |
-
"integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==",
|
| 8578 |
-
"dev": true,
|
| 8579 |
-
"requires": {
|
| 8580 |
-
"loader-utils": "^2.0.0",
|
| 8581 |
-
"schema-utils": "^3.0.0",
|
| 8582 |
-
"webpack-sources": "^1.1.0"
|
| 8583 |
-
},
|
| 8584 |
-
"dependencies": {
|
| 8585 |
-
"loader-utils": {
|
| 8586 |
-
"version": "2.0.2",
|
| 8587 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
| 8588 |
-
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
| 8589 |
-
"dev": true,
|
| 8590 |
-
"requires": {
|
| 8591 |
-
"big.js": "^5.2.2",
|
| 8592 |
-
"emojis-list": "^3.0.0",
|
| 8593 |
-
"json5": "^2.1.2"
|
| 8594 |
-
}
|
| 8595 |
-
},
|
| 8596 |
-
"schema-utils": {
|
| 8597 |
-
"version": "3.1.1",
|
| 8598 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 8599 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 8600 |
-
"dev": true,
|
| 8601 |
-
"requires": {
|
| 8602 |
-
"@types/json-schema": "^7.0.8",
|
| 8603 |
-
"ajv": "^6.12.5",
|
| 8604 |
-
"ajv-keywords": "^3.5.2"
|
| 8605 |
-
}
|
| 8606 |
-
}
|
| 8607 |
-
}
|
| 8608 |
-
},
|
| 8609 |
-
"minimalistic-assert": {
|
| 8610 |
-
"version": "1.0.1",
|
| 8611 |
-
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
|
| 8612 |
-
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
|
| 8613 |
-
"dev": true
|
| 8614 |
-
},
|
| 8615 |
-
"minimalistic-crypto-utils": {
|
| 8616 |
-
"version": "1.0.1",
|
| 8617 |
-
"resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
|
| 8618 |
-
"integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
|
| 8619 |
-
"dev": true
|
| 8620 |
-
},
|
| 8621 |
-
"minimatch": {
|
| 8622 |
-
"version": "3.0.4",
|
| 8623 |
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
| 8624 |
-
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
| 8625 |
-
"requires": {
|
| 8626 |
-
"brace-expansion": "^1.1.7"
|
| 8627 |
-
}
|
| 8628 |
-
},
|
| 8629 |
-
"minimist": {
|
| 8630 |
-
"version": "1.2.5",
|
| 8631 |
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
| 8632 |
-
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
| 8633 |
-
},
|
| 8634 |
-
"mitt": {
|
| 8635 |
-
"version": "1.2.0",
|
| 8636 |
-
"resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz",
|
| 8637 |
-
"integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==",
|
| 8638 |
-
"dev": true
|
| 8639 |
-
},
|
| 8640 |
-
"mkdirp": {
|
| 8641 |
-
"version": "0.5.5",
|
| 8642 |
-
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
|
| 8643 |
-
"integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
|
| 8644 |
-
"dev": true,
|
| 8645 |
-
"requires": {
|
| 8646 |
-
"minimist": "^1.2.5"
|
| 8647 |
-
}
|
| 8648 |
-
},
|
| 8649 |
-
"modern-normalize": {
|
| 8650 |
-
"version": "1.1.0",
|
| 8651 |
-
"resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz",
|
| 8652 |
-
"integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA=="
|
| 8653 |
-
},
|
| 8654 |
-
"moment": {
|
| 8655 |
-
"version": "2.29.1",
|
| 8656 |
-
"resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz",
|
| 8657 |
-
"integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="
|
| 8658 |
-
},
|
| 8659 |
-
"moment-timezone": {
|
| 8660 |
-
"version": "0.5.34",
|
| 8661 |
-
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz",
|
| 8662 |
-
"integrity": "sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg==",
|
| 8663 |
-
"requires": {
|
| 8664 |
-
"moment": ">= 2.9.0"
|
| 8665 |
-
}
|
| 8666 |
-
},
|
| 8667 |
-
"mousetrap": {
|
| 8668 |
-
"version": "1.6.5",
|
| 8669 |
-
"resolved": "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.5.tgz",
|
| 8670 |
-
"integrity": "sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA=="
|
| 8671 |
-
},
|
| 8672 |
-
"ms": {
|
| 8673 |
-
"version": "2.1.2",
|
| 8674 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
| 8675 |
-
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
|
| 8676 |
-
"dev": true
|
| 8677 |
-
},
|
| 8678 |
-
"multicast-dns": {
|
| 8679 |
-
"version": "6.2.3",
|
| 8680 |
-
"resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz",
|
| 8681 |
-
"integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==",
|
| 8682 |
-
"dev": true,
|
| 8683 |
-
"requires": {
|
| 8684 |
-
"dns-packet": "^1.3.1",
|
| 8685 |
-
"thunky": "^1.0.2"
|
| 8686 |
-
}
|
| 8687 |
-
},
|
| 8688 |
-
"multicast-dns-service-types": {
|
| 8689 |
-
"version": "1.1.0",
|
| 8690 |
-
"resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz",
|
| 8691 |
-
"integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=",
|
| 8692 |
-
"dev": true
|
| 8693 |
-
},
|
| 8694 |
-
"nanoid": {
|
| 8695 |
-
"version": "3.1.30",
|
| 8696 |
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz",
|
| 8697 |
-
"integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ=="
|
| 8698 |
-
},
|
| 8699 |
-
"natural-compare": {
|
| 8700 |
-
"version": "1.4.0",
|
| 8701 |
-
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
| 8702 |
-
"integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
|
| 8703 |
-
"dev": true
|
| 8704 |
-
},
|
| 8705 |
-
"negotiator": {
|
| 8706 |
-
"version": "0.6.2",
|
| 8707 |
-
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
|
| 8708 |
-
"integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
|
| 8709 |
-
"dev": true
|
| 8710 |
-
},
|
| 8711 |
-
"neo-async": {
|
| 8712 |
-
"version": "2.6.2",
|
| 8713 |
-
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
|
| 8714 |
-
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
|
| 8715 |
-
"dev": true
|
| 8716 |
-
},
|
| 8717 |
-
"no-case": {
|
| 8718 |
-
"version": "3.0.4",
|
| 8719 |
-
"resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
|
| 8720 |
-
"integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
|
| 8721 |
-
"dev": true,
|
| 8722 |
-
"requires": {
|
| 8723 |
-
"lower-case": "^2.0.2",
|
| 8724 |
-
"tslib": "^2.0.3"
|
| 8725 |
-
}
|
| 8726 |
-
},
|
| 8727 |
-
"node-emoji": {
|
| 8728 |
-
"version": "1.11.0",
|
| 8729 |
-
"resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz",
|
| 8730 |
-
"integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==",
|
| 8731 |
-
"requires": {
|
| 8732 |
-
"lodash": "^4.17.21"
|
| 8733 |
-
}
|
| 8734 |
-
},
|
| 8735 |
-
"node-forge": {
|
| 8736 |
-
"version": "0.10.0",
|
| 8737 |
-
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz",
|
| 8738 |
-
"integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==",
|
| 8739 |
-
"dev": true
|
| 8740 |
-
},
|
| 8741 |
-
"node-libs-browser": {
|
| 8742 |
-
"version": "2.2.1",
|
| 8743 |
-
"resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
|
| 8744 |
-
"integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
|
| 8745 |
-
"dev": true,
|
| 8746 |
-
"requires": {
|
| 8747 |
-
"assert": "^1.1.1",
|
| 8748 |
-
"browserify-zlib": "^0.2.0",
|
| 8749 |
-
"buffer": "^4.3.0",
|
| 8750 |
-
"console-browserify": "^1.1.0",
|
| 8751 |
-
"constants-browserify": "^1.0.0",
|
| 8752 |
-
"crypto-browserify": "^3.11.0",
|
| 8753 |
-
"domain-browser": "^1.1.1",
|
| 8754 |
-
"events": "^3.0.0",
|
| 8755 |
-
"https-browserify": "^1.0.0",
|
| 8756 |
-
"os-browserify": "^0.3.0",
|
| 8757 |
-
"path-browserify": "0.0.1",
|
| 8758 |
-
"process": "^0.11.10",
|
| 8759 |
-
"punycode": "^1.2.4",
|
| 8760 |
-
"querystring-es3": "^0.2.0",
|
| 8761 |
-
"readable-stream": "^2.3.3",
|
| 8762 |
-
"stream-browserify": "^2.0.1",
|
| 8763 |
-
"stream-http": "^2.7.2",
|
| 8764 |
-
"string_decoder": "^1.0.0",
|
| 8765 |
-
"timers-browserify": "^2.0.4",
|
| 8766 |
-
"tty-browserify": "0.0.0",
|
| 8767 |
-
"url": "^0.11.0",
|
| 8768 |
-
"util": "^0.11.0",
|
| 8769 |
-
"vm-browserify": "^1.0.1"
|
| 8770 |
-
},
|
| 8771 |
-
"dependencies": {
|
| 8772 |
-
"punycode": {
|
| 8773 |
-
"version": "1.4.1",
|
| 8774 |
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
|
| 8775 |
-
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
|
| 8776 |
-
"dev": true
|
| 8777 |
-
}
|
| 8778 |
-
}
|
| 8779 |
-
},
|
| 8780 |
-
"node-notifier": {
|
| 8781 |
-
"version": "9.0.1",
|
| 8782 |
-
"resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz",
|
| 8783 |
-
"integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==",
|
| 8784 |
-
"dev": true,
|
| 8785 |
-
"requires": {
|
| 8786 |
-
"growly": "^1.3.0",
|
| 8787 |
-
"is-wsl": "^2.2.0",
|
| 8788 |
-
"semver": "^7.3.2",
|
| 8789 |
-
"shellwords": "^0.1.1",
|
| 8790 |
-
"uuid": "^8.3.0",
|
| 8791 |
-
"which": "^2.0.2"
|
| 8792 |
-
}
|
| 8793 |
-
},
|
| 8794 |
-
"node-releases": {
|
| 8795 |
-
"version": "2.0.1",
|
| 8796 |
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
|
| 8797 |
-
"integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
|
| 8798 |
-
"dev": true
|
| 8799 |
-
},
|
| 8800 |
-
"normalize-path": {
|
| 8801 |
-
"version": "3.0.0",
|
| 8802 |
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
| 8803 |
-
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
|
| 8804 |
-
},
|
| 8805 |
-
"normalize-range": {
|
| 8806 |
-
"version": "0.1.2",
|
| 8807 |
-
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
| 8808 |
-
"integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
|
| 8809 |
-
"dev": true
|
| 8810 |
-
},
|
| 8811 |
-
"normalize-url": {
|
| 8812 |
-
"version": "6.1.0",
|
| 8813 |
-
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
|
| 8814 |
-
"integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
|
| 8815 |
-
"dev": true
|
| 8816 |
-
},
|
| 8817 |
-
"normalize-wheel": {
|
| 8818 |
-
"version": "1.0.1",
|
| 8819 |
-
"resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz",
|
| 8820 |
-
"integrity": "sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU="
|
| 8821 |
-
},
|
| 8822 |
-
"npm-run-path": {
|
| 8823 |
-
"version": "4.0.1",
|
| 8824 |
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
|
| 8825 |
-
"integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
|
| 8826 |
-
"dev": true,
|
| 8827 |
-
"requires": {
|
| 8828 |
-
"path-key": "^3.0.0"
|
| 8829 |
-
}
|
| 8830 |
-
},
|
| 8831 |
-
"nth-check": {
|
| 8832 |
-
"version": "2.0.1",
|
| 8833 |
-
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz",
|
| 8834 |
-
"integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==",
|
| 8835 |
-
"dev": true,
|
| 8836 |
-
"requires": {
|
| 8837 |
-
"boolbase": "^1.0.0"
|
| 8838 |
-
}
|
| 8839 |
-
},
|
| 8840 |
-
"object-assign": {
|
| 8841 |
-
"version": "4.1.1",
|
| 8842 |
-
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
| 8843 |
-
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
|
| 8844 |
-
},
|
| 8845 |
-
"object-hash": {
|
| 8846 |
-
"version": "2.2.0",
|
| 8847 |
-
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz",
|
| 8848 |
-
"integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw=="
|
| 8849 |
-
},
|
| 8850 |
-
"object-inspect": {
|
| 8851 |
-
"version": "1.11.0",
|
| 8852 |
-
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz",
|
| 8853 |
-
"integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="
|
| 8854 |
-
},
|
| 8855 |
-
"object-is": {
|
| 8856 |
-
"version": "1.1.5",
|
| 8857 |
-
"resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
|
| 8858 |
-
"integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
|
| 8859 |
-
"requires": {
|
| 8860 |
-
"call-bind": "^1.0.2",
|
| 8861 |
-
"define-properties": "^1.1.3"
|
| 8862 |
-
}
|
| 8863 |
-
},
|
| 8864 |
-
"object-keys": {
|
| 8865 |
-
"version": "1.1.1",
|
| 8866 |
-
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
|
| 8867 |
-
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
|
| 8868 |
-
},
|
| 8869 |
-
"object.assign": {
|
| 8870 |
-
"version": "4.1.2",
|
| 8871 |
-
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
|
| 8872 |
-
"integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
|
| 8873 |
-
"requires": {
|
| 8874 |
-
"call-bind": "^1.0.0",
|
| 8875 |
-
"define-properties": "^1.1.3",
|
| 8876 |
-
"has-symbols": "^1.0.1",
|
| 8877 |
-
"object-keys": "^1.1.1"
|
| 8878 |
-
}
|
| 8879 |
-
},
|
| 8880 |
-
"object.entries": {
|
| 8881 |
-
"version": "1.1.5",
|
| 8882 |
-
"resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
|
| 8883 |
-
"integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
|
| 8884 |
-
"requires": {
|
| 8885 |
-
"call-bind": "^1.0.2",
|
| 8886 |
-
"define-properties": "^1.1.3",
|
| 8887 |
-
"es-abstract": "^1.19.1"
|
| 8888 |
-
}
|
| 8889 |
-
},
|
| 8890 |
-
"object.fromentries": {
|
| 8891 |
-
"version": "2.0.5",
|
| 8892 |
-
"resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
|
| 8893 |
-
"integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
|
| 8894 |
-
"dev": true,
|
| 8895 |
-
"requires": {
|
| 8896 |
-
"call-bind": "^1.0.2",
|
| 8897 |
-
"define-properties": "^1.1.3",
|
| 8898 |
-
"es-abstract": "^1.19.1"
|
| 8899 |
-
}
|
| 8900 |
-
},
|
| 8901 |
-
"object.hasown": {
|
| 8902 |
-
"version": "1.1.0",
|
| 8903 |
-
"resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz",
|
| 8904 |
-
"integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==",
|
| 8905 |
-
"dev": true,
|
| 8906 |
-
"requires": {
|
| 8907 |
-
"define-properties": "^1.1.3",
|
| 8908 |
-
"es-abstract": "^1.19.1"
|
| 8909 |
-
}
|
| 8910 |
-
},
|
| 8911 |
-
"object.values": {
|
| 8912 |
-
"version": "1.1.5",
|
| 8913 |
-
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
|
| 8914 |
-
"integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
|
| 8915 |
-
"requires": {
|
| 8916 |
-
"call-bind": "^1.0.2",
|
| 8917 |
-
"define-properties": "^1.1.3",
|
| 8918 |
-
"es-abstract": "^1.19.1"
|
| 8919 |
-
}
|
| 8920 |
-
},
|
| 8921 |
-
"obuf": {
|
| 8922 |
-
"version": "1.1.2",
|
| 8923 |
-
"resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
|
| 8924 |
-
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
|
| 8925 |
-
"dev": true
|
| 8926 |
-
},
|
| 8927 |
-
"on-finished": {
|
| 8928 |
-
"version": "2.3.0",
|
| 8929 |
-
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
|
| 8930 |
-
"integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
|
| 8931 |
-
"dev": true,
|
| 8932 |
-
"requires": {
|
| 8933 |
-
"ee-first": "1.1.1"
|
| 8934 |
-
}
|
| 8935 |
-
},
|
| 8936 |
-
"on-headers": {
|
| 8937 |
-
"version": "1.0.2",
|
| 8938 |
-
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
|
| 8939 |
-
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
|
| 8940 |
-
"dev": true
|
| 8941 |
-
},
|
| 8942 |
-
"once": {
|
| 8943 |
-
"version": "1.4.0",
|
| 8944 |
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
| 8945 |
-
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
| 8946 |
-
"requires": {
|
| 8947 |
-
"wrappy": "1"
|
| 8948 |
-
}
|
| 8949 |
-
},
|
| 8950 |
-
"onetime": {
|
| 8951 |
-
"version": "5.1.2",
|
| 8952 |
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
|
| 8953 |
-
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
|
| 8954 |
-
"dev": true,
|
| 8955 |
-
"requires": {
|
| 8956 |
-
"mimic-fn": "^2.1.0"
|
| 8957 |
-
}
|
| 8958 |
-
},
|
| 8959 |
-
"only": {
|
| 8960 |
-
"version": "0.0.2",
|
| 8961 |
-
"resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz",
|
| 8962 |
-
"integrity": "sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=",
|
| 8963 |
-
"dev": true
|
| 8964 |
-
},
|
| 8965 |
-
"open": {
|
| 8966 |
-
"version": "7.4.2",
|
| 8967 |
-
"resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz",
|
| 8968 |
-
"integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
|
| 8969 |
-
"dev": true,
|
| 8970 |
-
"requires": {
|
| 8971 |
-
"is-docker": "^2.0.0",
|
| 8972 |
-
"is-wsl": "^2.1.1"
|
| 8973 |
-
}
|
| 8974 |
-
},
|
| 8975 |
-
"openurl": {
|
| 8976 |
-
"version": "1.1.1",
|
| 8977 |
-
"resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz",
|
| 8978 |
-
"integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=",
|
| 8979 |
-
"dev": true
|
| 8980 |
-
},
|
| 8981 |
-
"opn": {
|
| 8982 |
-
"version": "5.3.0",
|
| 8983 |
-
"resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz",
|
| 8984 |
-
"integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==",
|
| 8985 |
-
"dev": true,
|
| 8986 |
-
"requires": {
|
| 8987 |
-
"is-wsl": "^1.1.0"
|
| 8988 |
-
},
|
| 8989 |
-
"dependencies": {
|
| 8990 |
-
"is-wsl": {
|
| 8991 |
-
"version": "1.1.0",
|
| 8992 |
-
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
|
| 8993 |
-
"integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
|
| 8994 |
-
"dev": true
|
| 8995 |
-
}
|
| 8996 |
-
}
|
| 8997 |
-
},
|
| 8998 |
-
"optionator": {
|
| 8999 |
-
"version": "0.9.1",
|
| 9000 |
-
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
|
| 9001 |
-
"integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
|
| 9002 |
-
"dev": true,
|
| 9003 |
-
"requires": {
|
| 9004 |
-
"deep-is": "^0.1.3",
|
| 9005 |
-
"fast-levenshtein": "^2.0.6",
|
| 9006 |
-
"levn": "^0.4.1",
|
| 9007 |
-
"prelude-ls": "^1.2.1",
|
| 9008 |
-
"type-check": "^0.4.0",
|
| 9009 |
-
"word-wrap": "^1.2.3"
|
| 9010 |
-
}
|
| 9011 |
-
},
|
| 9012 |
-
"os-browserify": {
|
| 9013 |
-
"version": "0.3.0",
|
| 9014 |
-
"resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
|
| 9015 |
-
"integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
|
| 9016 |
-
"dev": true
|
| 9017 |
-
},
|
| 9018 |
-
"p-event": {
|
| 9019 |
-
"version": "4.2.0",
|
| 9020 |
-
"resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz",
|
| 9021 |
-
"integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==",
|
| 9022 |
-
"dev": true,
|
| 9023 |
-
"requires": {
|
| 9024 |
-
"p-timeout": "^3.1.0"
|
| 9025 |
-
}
|
| 9026 |
-
},
|
| 9027 |
-
"p-finally": {
|
| 9028 |
-
"version": "1.0.0",
|
| 9029 |
-
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
|
| 9030 |
-
"integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
|
| 9031 |
-
"dev": true
|
| 9032 |
-
},
|
| 9033 |
-
"p-limit": {
|
| 9034 |
-
"version": "2.3.0",
|
| 9035 |
-
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
|
| 9036 |
-
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
|
| 9037 |
-
"requires": {
|
| 9038 |
-
"p-try": "^2.0.0"
|
| 9039 |
-
}
|
| 9040 |
-
},
|
| 9041 |
-
"p-locate": {
|
| 9042 |
-
"version": "3.0.0",
|
| 9043 |
-
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
|
| 9044 |
-
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
|
| 9045 |
-
"requires": {
|
| 9046 |
-
"p-limit": "^2.0.0"
|
| 9047 |
-
}
|
| 9048 |
-
},
|
| 9049 |
-
"p-map": {
|
| 9050 |
-
"version": "4.0.0",
|
| 9051 |
-
"resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
|
| 9052 |
-
"integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
|
| 9053 |
-
"dev": true,
|
| 9054 |
-
"requires": {
|
| 9055 |
-
"aggregate-error": "^3.0.0"
|
| 9056 |
-
}
|
| 9057 |
-
},
|
| 9058 |
-
"p-pipe": {
|
| 9059 |
-
"version": "3.1.0",
|
| 9060 |
-
"resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz",
|
| 9061 |
-
"integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==",
|
| 9062 |
-
"dev": true
|
| 9063 |
-
},
|
| 9064 |
-
"p-retry": {
|
| 9065 |
-
"version": "4.6.1",
|
| 9066 |
-
"resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz",
|
| 9067 |
-
"integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==",
|
| 9068 |
-
"dev": true,
|
| 9069 |
-
"requires": {
|
| 9070 |
-
"@types/retry": "^0.12.0",
|
| 9071 |
-
"retry": "^0.13.1"
|
| 9072 |
-
}
|
| 9073 |
-
},
|
| 9074 |
-
"p-timeout": {
|
| 9075 |
-
"version": "3.2.0",
|
| 9076 |
-
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
|
| 9077 |
-
"integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
|
| 9078 |
-
"dev": true,
|
| 9079 |
-
"requires": {
|
| 9080 |
-
"p-finally": "^1.0.0"
|
| 9081 |
-
}
|
| 9082 |
-
},
|
| 9083 |
-
"p-try": {
|
| 9084 |
-
"version": "2.2.0",
|
| 9085 |
-
"resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
|
| 9086 |
-
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
|
| 9087 |
-
},
|
| 9088 |
-
"pako": {
|
| 9089 |
-
"version": "1.0.11",
|
| 9090 |
-
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
| 9091 |
-
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
|
| 9092 |
-
"dev": true
|
| 9093 |
-
},
|
| 9094 |
-
"param-case": {
|
| 9095 |
-
"version": "3.0.4",
|
| 9096 |
-
"resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
|
| 9097 |
-
"integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
|
| 9098 |
-
"dev": true,
|
| 9099 |
-
"requires": {
|
| 9100 |
-
"dot-case": "^3.0.4",
|
| 9101 |
-
"tslib": "^2.0.3"
|
| 9102 |
-
}
|
| 9103 |
-
},
|
| 9104 |
-
"parent-module": {
|
| 9105 |
-
"version": "1.0.1",
|
| 9106 |
-
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
| 9107 |
-
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
|
| 9108 |
-
"requires": {
|
| 9109 |
-
"callsites": "^3.0.0"
|
| 9110 |
-
}
|
| 9111 |
-
},
|
| 9112 |
-
"parse-asn1": {
|
| 9113 |
-
"version": "5.1.6",
|
| 9114 |
-
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz",
|
| 9115 |
-
"integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==",
|
| 9116 |
-
"dev": true,
|
| 9117 |
-
"requires": {
|
| 9118 |
-
"asn1.js": "^5.2.0",
|
| 9119 |
-
"browserify-aes": "^1.0.0",
|
| 9120 |
-
"evp_bytestokey": "^1.0.0",
|
| 9121 |
-
"pbkdf2": "^3.0.3",
|
| 9122 |
-
"safe-buffer": "^5.1.1"
|
| 9123 |
-
}
|
| 9124 |
-
},
|
| 9125 |
-
"parse-json": {
|
| 9126 |
-
"version": "5.2.0",
|
| 9127 |
-
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
| 9128 |
-
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
| 9129 |
-
"requires": {
|
| 9130 |
-
"@babel/code-frame": "^7.0.0",
|
| 9131 |
-
"error-ex": "^1.3.1",
|
| 9132 |
-
"json-parse-even-better-errors": "^2.3.0",
|
| 9133 |
-
"lines-and-columns": "^1.1.6"
|
| 9134 |
-
}
|
| 9135 |
-
},
|
| 9136 |
-
"parseqs": {
|
| 9137 |
-
"version": "0.0.6",
|
| 9138 |
-
"resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz",
|
| 9139 |
-
"integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==",
|
| 9140 |
-
"dev": true
|
| 9141 |
-
},
|
| 9142 |
-
"parseuri": {
|
| 9143 |
-
"version": "0.0.6",
|
| 9144 |
-
"resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz",
|
| 9145 |
-
"integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==",
|
| 9146 |
-
"dev": true
|
| 9147 |
-
},
|
| 9148 |
-
"parseurl": {
|
| 9149 |
-
"version": "1.3.3",
|
| 9150 |
-
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
| 9151 |
-
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
| 9152 |
-
"dev": true
|
| 9153 |
-
},
|
| 9154 |
-
"pascal-case": {
|
| 9155 |
-
"version": "3.1.2",
|
| 9156 |
-
"resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
|
| 9157 |
-
"integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
|
| 9158 |
-
"dev": true,
|
| 9159 |
-
"requires": {
|
| 9160 |
-
"no-case": "^3.0.4",
|
| 9161 |
-
"tslib": "^2.0.3"
|
| 9162 |
-
}
|
| 9163 |
-
},
|
| 9164 |
-
"path-browserify": {
|
| 9165 |
-
"version": "0.0.1",
|
| 9166 |
-
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
|
| 9167 |
-
"integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
|
| 9168 |
-
"dev": true
|
| 9169 |
-
},
|
| 9170 |
-
"path-exists": {
|
| 9171 |
-
"version": "3.0.0",
|
| 9172 |
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
|
| 9173 |
-
"integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="
|
| 9174 |
-
},
|
| 9175 |
-
"path-is-absolute": {
|
| 9176 |
-
"version": "1.0.1",
|
| 9177 |
-
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
| 9178 |
-
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
|
| 9179 |
-
},
|
| 9180 |
-
"path-key": {
|
| 9181 |
-
"version": "3.1.1",
|
| 9182 |
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
| 9183 |
-
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
| 9184 |
-
"dev": true
|
| 9185 |
-
},
|
| 9186 |
-
"path-parse": {
|
| 9187 |
-
"version": "1.0.6",
|
| 9188 |
-
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
|
| 9189 |
-
"integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
|
| 9190 |
-
},
|
| 9191 |
-
"path-to-regexp": {
|
| 9192 |
-
"version": "0.1.7",
|
| 9193 |
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
|
| 9194 |
-
"integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
|
| 9195 |
-
"dev": true
|
| 9196 |
-
},
|
| 9197 |
-
"path-type": {
|
| 9198 |
-
"version": "4.0.0",
|
| 9199 |
-
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
| 9200 |
-
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
|
| 9201 |
-
},
|
| 9202 |
-
"pbkdf2": {
|
| 9203 |
-
"version": "3.1.2",
|
| 9204 |
-
"resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
|
| 9205 |
-
"integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
|
| 9206 |
-
"dev": true,
|
| 9207 |
-
"requires": {
|
| 9208 |
-
"create-hash": "^1.1.2",
|
| 9209 |
-
"create-hmac": "^1.1.4",
|
| 9210 |
-
"ripemd160": "^2.0.1",
|
| 9211 |
-
"safe-buffer": "^5.0.1",
|
| 9212 |
-
"sha.js": "^2.4.8"
|
| 9213 |
-
}
|
| 9214 |
-
},
|
| 9215 |
-
"picocolors": {
|
| 9216 |
-
"version": "1.0.0",
|
| 9217 |
-
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
|
| 9218 |
-
"integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
|
| 9219 |
-
},
|
| 9220 |
-
"picomatch": {
|
| 9221 |
-
"version": "2.3.0",
|
| 9222 |
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
|
| 9223 |
-
"integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="
|
| 9224 |
-
},
|
| 9225 |
-
"pkg-dir": {
|
| 9226 |
-
"version": "4.2.0",
|
| 9227 |
-
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
|
| 9228 |
-
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
|
| 9229 |
-
"dev": true,
|
| 9230 |
-
"requires": {
|
| 9231 |
-
"find-up": "^4.0.0"
|
| 9232 |
-
},
|
| 9233 |
-
"dependencies": {
|
| 9234 |
-
"find-up": {
|
| 9235 |
-
"version": "4.1.0",
|
| 9236 |
-
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
|
| 9237 |
-
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
|
| 9238 |
-
"dev": true,
|
| 9239 |
-
"requires": {
|
| 9240 |
-
"locate-path": "^5.0.0",
|
| 9241 |
-
"path-exists": "^4.0.0"
|
| 9242 |
-
}
|
| 9243 |
-
},
|
| 9244 |
-
"locate-path": {
|
| 9245 |
-
"version": "5.0.0",
|
| 9246 |
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
| 9247 |
-
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
|
| 9248 |
-
"dev": true,
|
| 9249 |
-
"requires": {
|
| 9250 |
-
"p-locate": "^4.1.0"
|
| 9251 |
-
}
|
| 9252 |
-
},
|
| 9253 |
-
"p-locate": {
|
| 9254 |
-
"version": "4.1.0",
|
| 9255 |
-
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
|
| 9256 |
-
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
|
| 9257 |
-
"dev": true,
|
| 9258 |
-
"requires": {
|
| 9259 |
-
"p-limit": "^2.2.0"
|
| 9260 |
-
}
|
| 9261 |
-
},
|
| 9262 |
-
"path-exists": {
|
| 9263 |
-
"version": "4.0.0",
|
| 9264 |
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
| 9265 |
-
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
| 9266 |
-
"dev": true
|
| 9267 |
-
}
|
| 9268 |
-
}
|
| 9269 |
-
},
|
| 9270 |
-
"popmotion": {
|
| 9271 |
-
"version": "9.3.6",
|
| 9272 |
-
"resolved": "https://registry.npmjs.org/popmotion/-/popmotion-9.3.6.tgz",
|
| 9273 |
-
"integrity": "sha512-ZTbXiu6zIggXzIliMi8LGxXBF5ST+wkpXGEjeTUDUOCdSQ356hij/xjeUdv0F8zCQNeqB1+PR5/BB+gC+QLAPw==",
|
| 9274 |
-
"requires": {
|
| 9275 |
-
"framesync": "5.3.0",
|
| 9276 |
-
"hey-listen": "^1.0.8",
|
| 9277 |
-
"style-value-types": "4.1.4",
|
| 9278 |
-
"tslib": "^2.1.0"
|
| 9279 |
-
}
|
| 9280 |
-
},
|
| 9281 |
-
"portfinder": {
|
| 9282 |
-
"version": "1.0.28",
|
| 9283 |
-
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz",
|
| 9284 |
-
"integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==",
|
| 9285 |
-
"dev": true,
|
| 9286 |
-
"requires": {
|
| 9287 |
-
"async": "^2.6.2",
|
| 9288 |
-
"debug": "^3.1.1",
|
| 9289 |
-
"mkdirp": "^0.5.5"
|
| 9290 |
-
},
|
| 9291 |
-
"dependencies": {
|
| 9292 |
-
"debug": {
|
| 9293 |
-
"version": "3.2.7",
|
| 9294 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
|
| 9295 |
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
| 9296 |
-
"dev": true,
|
| 9297 |
-
"requires": {
|
| 9298 |
-
"ms": "^2.1.1"
|
| 9299 |
-
}
|
| 9300 |
-
}
|
| 9301 |
-
}
|
| 9302 |
-
},
|
| 9303 |
-
"portscanner": {
|
| 9304 |
-
"version": "2.1.1",
|
| 9305 |
-
"resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz",
|
| 9306 |
-
"integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=",
|
| 9307 |
-
"dev": true,
|
| 9308 |
-
"requires": {
|
| 9309 |
-
"async": "1.5.2",
|
| 9310 |
-
"is-number-like": "^1.0.3"
|
| 9311 |
-
},
|
| 9312 |
-
"dependencies": {
|
| 9313 |
-
"async": {
|
| 9314 |
-
"version": "1.5.2",
|
| 9315 |
-
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
| 9316 |
-
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
|
| 9317 |
-
"dev": true
|
| 9318 |
-
}
|
| 9319 |
-
}
|
| 9320 |
-
},
|
| 9321 |
-
"postcss": {
|
| 9322 |
-
"version": "8.3.11",
|
| 9323 |
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz",
|
| 9324 |
-
"integrity": "sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==",
|
| 9325 |
-
"requires": {
|
| 9326 |
-
"nanoid": "^3.1.30",
|
| 9327 |
-
"picocolors": "^1.0.0",
|
| 9328 |
-
"source-map-js": "^0.6.2"
|
| 9329 |
-
}
|
| 9330 |
-
},
|
| 9331 |
-
"postcss-calc": {
|
| 9332 |
-
"version": "8.0.0",
|
| 9333 |
-
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz",
|
| 9334 |
-
"integrity": "sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==",
|
| 9335 |
-
"dev": true,
|
| 9336 |
-
"requires": {
|
| 9337 |
-
"postcss-selector-parser": "^6.0.2",
|
| 9338 |
-
"postcss-value-parser": "^4.0.2"
|
| 9339 |
-
}
|
| 9340 |
-
},
|
| 9341 |
-
"postcss-colormin": {
|
| 9342 |
-
"version": "5.2.1",
|
| 9343 |
-
"resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.1.tgz",
|
| 9344 |
-
"integrity": "sha512-VVwMrEYLcHYePUYV99Ymuoi7WhKrMGy/V9/kTS0DkCoJYmmjdOMneyhzYUxcNgteKDVbrewOkSM7Wje/MFwxzA==",
|
| 9345 |
-
"dev": true,
|
| 9346 |
-
"requires": {
|
| 9347 |
-
"browserslist": "^4.16.6",
|
| 9348 |
-
"caniuse-api": "^3.0.0",
|
| 9349 |
-
"colord": "^2.9.1",
|
| 9350 |
-
"postcss-value-parser": "^4.1.0"
|
| 9351 |
-
},
|
| 9352 |
-
"dependencies": {
|
| 9353 |
-
"colord": {
|
| 9354 |
-
"version": "2.9.1",
|
| 9355 |
-
"resolved": "https://registry.npmjs.org/colord/-/colord-2.9.1.tgz",
|
| 9356 |
-
"integrity": "sha512-4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw==",
|
| 9357 |
-
"dev": true
|
| 9358 |
-
}
|
| 9359 |
-
}
|
| 9360 |
-
},
|
| 9361 |
-
"postcss-convert-values": {
|
| 9362 |
-
"version": "5.0.2",
|
| 9363 |
-
"resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz",
|
| 9364 |
-
"integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==",
|
| 9365 |
-
"dev": true,
|
| 9366 |
-
"requires": {
|
| 9367 |
-
"postcss-value-parser": "^4.1.0"
|
| 9368 |
-
}
|
| 9369 |
-
},
|
| 9370 |
-
"postcss-discard-comments": {
|
| 9371 |
-
"version": "5.0.1",
|
| 9372 |
-
"resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz",
|
| 9373 |
-
"integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==",
|
| 9374 |
-
"dev": true
|
| 9375 |
-
},
|
| 9376 |
-
"postcss-discard-duplicates": {
|
| 9377 |
-
"version": "5.0.1",
|
| 9378 |
-
"resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz",
|
| 9379 |
-
"integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==",
|
| 9380 |
-
"dev": true
|
| 9381 |
-
},
|
| 9382 |
-
"postcss-discard-empty": {
|
| 9383 |
-
"version": "5.0.1",
|
| 9384 |
-
"resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz",
|
| 9385 |
-
"integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==",
|
| 9386 |
-
"dev": true
|
| 9387 |
-
},
|
| 9388 |
-
"postcss-discard-overridden": {
|
| 9389 |
-
"version": "5.0.1",
|
| 9390 |
-
"resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz",
|
| 9391 |
-
"integrity": "sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==",
|
| 9392 |
-
"dev": true
|
| 9393 |
-
},
|
| 9394 |
-
"postcss-import": {
|
| 9395 |
-
"version": "14.0.2",
|
| 9396 |
-
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.2.tgz",
|
| 9397 |
-
"integrity": "sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==",
|
| 9398 |
-
"dev": true,
|
| 9399 |
-
"requires": {
|
| 9400 |
-
"postcss-value-parser": "^4.0.0",
|
| 9401 |
-
"read-cache": "^1.0.0",
|
| 9402 |
-
"resolve": "^1.1.7"
|
| 9403 |
-
},
|
| 9404 |
-
"dependencies": {
|
| 9405 |
-
"postcss-value-parser": {
|
| 9406 |
-
"version": "4.1.0",
|
| 9407 |
-
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
|
| 9408 |
-
"integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
|
| 9409 |
-
"dev": true
|
| 9410 |
-
}
|
| 9411 |
-
}
|
| 9412 |
-
},
|
| 9413 |
-
"postcss-js": {
|
| 9414 |
-
"version": "3.0.3",
|
| 9415 |
-
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz",
|
| 9416 |
-
"integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==",
|
| 9417 |
-
"requires": {
|
| 9418 |
-
"camelcase-css": "^2.0.1",
|
| 9419 |
-
"postcss": "^8.1.6"
|
| 9420 |
-
}
|
| 9421 |
-
},
|
| 9422 |
-
"postcss-load-config": {
|
| 9423 |
-
"version": "3.1.0",
|
| 9424 |
-
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz",
|
| 9425 |
-
"integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==",
|
| 9426 |
-
"requires": {
|
| 9427 |
-
"import-cwd": "^3.0.0",
|
| 9428 |
-
"lilconfig": "^2.0.3",
|
| 9429 |
-
"yaml": "^1.10.2"
|
| 9430 |
-
}
|
| 9431 |
-
},
|
| 9432 |
-
"postcss-loader": {
|
| 9433 |
-
"version": "6.2.0",
|
| 9434 |
-
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.0.tgz",
|
| 9435 |
-
"integrity": "sha512-H9hv447QjQJVDbHj3OUdciyAXY3v5+UDduzEytAlZCVHCpNAAg/mCSwhYYqZr9BiGYhmYspU8QXxZwiHTLn3yA==",
|
| 9436 |
-
"dev": true,
|
| 9437 |
-
"requires": {
|
| 9438 |
-
"cosmiconfig": "^7.0.0",
|
| 9439 |
-
"klona": "^2.0.4",
|
| 9440 |
-
"semver": "^7.3.5"
|
| 9441 |
-
},
|
| 9442 |
-
"dependencies": {
|
| 9443 |
-
"cosmiconfig": {
|
| 9444 |
-
"version": "7.0.1",
|
| 9445 |
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
|
| 9446 |
-
"integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
|
| 9447 |
-
"dev": true,
|
| 9448 |
-
"requires": {
|
| 9449 |
-
"@types/parse-json": "^4.0.0",
|
| 9450 |
-
"import-fresh": "^3.2.1",
|
| 9451 |
-
"parse-json": "^5.0.0",
|
| 9452 |
-
"path-type": "^4.0.0",
|
| 9453 |
-
"yaml": "^1.10.0"
|
| 9454 |
-
}
|
| 9455 |
-
}
|
| 9456 |
-
}
|
| 9457 |
-
},
|
| 9458 |
-
"postcss-merge-longhand": {
|
| 9459 |
-
"version": "5.0.3",
|
| 9460 |
-
"resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.3.tgz",
|
| 9461 |
-
"integrity": "sha512-kmB+1TjMTj/bPw6MCDUiqSA5e/x4fvLffiAdthra3a0m2/IjTrWsTmD3FdSskzUjEwkj5ZHBDEbv5dOcqD7CMQ==",
|
| 9462 |
-
"dev": true,
|
| 9463 |
-
"requires": {
|
| 9464 |
-
"css-color-names": "^1.0.1",
|
| 9465 |
-
"postcss-value-parser": "^4.1.0",
|
| 9466 |
-
"stylehacks": "^5.0.1"
|
| 9467 |
-
}
|
| 9468 |
-
},
|
| 9469 |
-
"postcss-merge-rules": {
|
| 9470 |
-
"version": "5.0.2",
|
| 9471 |
-
"resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz",
|
| 9472 |
-
"integrity": "sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg==",
|
| 9473 |
-
"dev": true,
|
| 9474 |
-
"requires": {
|
| 9475 |
-
"browserslist": "^4.16.6",
|
| 9476 |
-
"caniuse-api": "^3.0.0",
|
| 9477 |
-
"cssnano-utils": "^2.0.1",
|
| 9478 |
-
"postcss-selector-parser": "^6.0.5",
|
| 9479 |
-
"vendors": "^1.0.3"
|
| 9480 |
-
}
|
| 9481 |
-
},
|
| 9482 |
-
"postcss-minify-font-values": {
|
| 9483 |
-
"version": "5.0.1",
|
| 9484 |
-
"resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz",
|
| 9485 |
-
"integrity": "sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==",
|
| 9486 |
-
"dev": true,
|
| 9487 |
-
"requires": {
|
| 9488 |
-
"postcss-value-parser": "^4.1.0"
|
| 9489 |
-
}
|
| 9490 |
-
},
|
| 9491 |
-
"postcss-minify-gradients": {
|
| 9492 |
-
"version": "5.0.3",
|
| 9493 |
-
"resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz",
|
| 9494 |
-
"integrity": "sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q==",
|
| 9495 |
-
"dev": true,
|
| 9496 |
-
"requires": {
|
| 9497 |
-
"colord": "^2.9.1",
|
| 9498 |
-
"cssnano-utils": "^2.0.1",
|
| 9499 |
-
"postcss-value-parser": "^4.1.0"
|
| 9500 |
-
},
|
| 9501 |
-
"dependencies": {
|
| 9502 |
-
"colord": {
|
| 9503 |
-
"version": "2.9.1",
|
| 9504 |
-
"resolved": "https://registry.npmjs.org/colord/-/colord-2.9.1.tgz",
|
| 9505 |
-
"integrity": "sha512-4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw==",
|
| 9506 |
-
"dev": true
|
| 9507 |
-
}
|
| 9508 |
-
}
|
| 9509 |
-
},
|
| 9510 |
-
"postcss-minify-params": {
|
| 9511 |
-
"version": "5.0.1",
|
| 9512 |
-
"resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz",
|
| 9513 |
-
"integrity": "sha512-4RUC4k2A/Q9mGco1Z8ODc7h+A0z7L7X2ypO1B6V8057eVK6mZ6xwz6QN64nHuHLbqbclkX1wyzRnIrdZehTEHw==",
|
| 9514 |
-
"dev": true,
|
| 9515 |
-
"requires": {
|
| 9516 |
-
"alphanum-sort": "^1.0.2",
|
| 9517 |
-
"browserslist": "^4.16.0",
|
| 9518 |
-
"cssnano-utils": "^2.0.1",
|
| 9519 |
-
"postcss-value-parser": "^4.1.0",
|
| 9520 |
-
"uniqs": "^2.0.0"
|
| 9521 |
-
}
|
| 9522 |
-
},
|
| 9523 |
-
"postcss-minify-selectors": {
|
| 9524 |
-
"version": "5.1.0",
|
| 9525 |
-
"resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz",
|
| 9526 |
-
"integrity": "sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==",
|
| 9527 |
-
"dev": true,
|
| 9528 |
-
"requires": {
|
| 9529 |
-
"alphanum-sort": "^1.0.2",
|
| 9530 |
-
"postcss-selector-parser": "^6.0.5"
|
| 9531 |
-
}
|
| 9532 |
-
},
|
| 9533 |
-
"postcss-modules-extract-imports": {
|
| 9534 |
-
"version": "3.0.0",
|
| 9535 |
-
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz",
|
| 9536 |
-
"integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==",
|
| 9537 |
-
"dev": true
|
| 9538 |
-
},
|
| 9539 |
-
"postcss-modules-local-by-default": {
|
| 9540 |
-
"version": "4.0.0",
|
| 9541 |
-
"resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz",
|
| 9542 |
-
"integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==",
|
| 9543 |
-
"dev": true,
|
| 9544 |
-
"requires": {
|
| 9545 |
-
"icss-utils": "^5.0.0",
|
| 9546 |
-
"postcss-selector-parser": "^6.0.2",
|
| 9547 |
-
"postcss-value-parser": "^4.1.0"
|
| 9548 |
-
}
|
| 9549 |
-
},
|
| 9550 |
-
"postcss-modules-scope": {
|
| 9551 |
-
"version": "3.0.0",
|
| 9552 |
-
"resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz",
|
| 9553 |
-
"integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==",
|
| 9554 |
-
"dev": true,
|
| 9555 |
-
"requires": {
|
| 9556 |
-
"postcss-selector-parser": "^6.0.4"
|
| 9557 |
-
}
|
| 9558 |
-
},
|
| 9559 |
-
"postcss-modules-values": {
|
| 9560 |
-
"version": "4.0.0",
|
| 9561 |
-
"resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
|
| 9562 |
-
"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
|
| 9563 |
-
"dev": true,
|
| 9564 |
-
"requires": {
|
| 9565 |
-
"icss-utils": "^5.0.0"
|
| 9566 |
-
}
|
| 9567 |
-
},
|
| 9568 |
-
"postcss-nested": {
|
| 9569 |
-
"version": "5.0.6",
|
| 9570 |
-
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz",
|
| 9571 |
-
"integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==",
|
| 9572 |
-
"requires": {
|
| 9573 |
-
"postcss-selector-parser": "^6.0.6"
|
| 9574 |
-
}
|
| 9575 |
-
},
|
| 9576 |
-
"postcss-normalize-charset": {
|
| 9577 |
-
"version": "5.0.1",
|
| 9578 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz",
|
| 9579 |
-
"integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==",
|
| 9580 |
-
"dev": true
|
| 9581 |
-
},
|
| 9582 |
-
"postcss-normalize-display-values": {
|
| 9583 |
-
"version": "5.0.1",
|
| 9584 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz",
|
| 9585 |
-
"integrity": "sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==",
|
| 9586 |
-
"dev": true,
|
| 9587 |
-
"requires": {
|
| 9588 |
-
"cssnano-utils": "^2.0.1",
|
| 9589 |
-
"postcss-value-parser": "^4.1.0"
|
| 9590 |
-
}
|
| 9591 |
-
},
|
| 9592 |
-
"postcss-normalize-positions": {
|
| 9593 |
-
"version": "5.0.1",
|
| 9594 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz",
|
| 9595 |
-
"integrity": "sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==",
|
| 9596 |
-
"dev": true,
|
| 9597 |
-
"requires": {
|
| 9598 |
-
"postcss-value-parser": "^4.1.0"
|
| 9599 |
-
}
|
| 9600 |
-
},
|
| 9601 |
-
"postcss-normalize-repeat-style": {
|
| 9602 |
-
"version": "5.0.1",
|
| 9603 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz",
|
| 9604 |
-
"integrity": "sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==",
|
| 9605 |
-
"dev": true,
|
| 9606 |
-
"requires": {
|
| 9607 |
-
"cssnano-utils": "^2.0.1",
|
| 9608 |
-
"postcss-value-parser": "^4.1.0"
|
| 9609 |
-
}
|
| 9610 |
-
},
|
| 9611 |
-
"postcss-normalize-string": {
|
| 9612 |
-
"version": "5.0.1",
|
| 9613 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz",
|
| 9614 |
-
"integrity": "sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==",
|
| 9615 |
-
"dev": true,
|
| 9616 |
-
"requires": {
|
| 9617 |
-
"postcss-value-parser": "^4.1.0"
|
| 9618 |
-
}
|
| 9619 |
-
},
|
| 9620 |
-
"postcss-normalize-timing-functions": {
|
| 9621 |
-
"version": "5.0.1",
|
| 9622 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz",
|
| 9623 |
-
"integrity": "sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==",
|
| 9624 |
-
"dev": true,
|
| 9625 |
-
"requires": {
|
| 9626 |
-
"cssnano-utils": "^2.0.1",
|
| 9627 |
-
"postcss-value-parser": "^4.1.0"
|
| 9628 |
-
}
|
| 9629 |
-
},
|
| 9630 |
-
"postcss-normalize-unicode": {
|
| 9631 |
-
"version": "5.0.1",
|
| 9632 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz",
|
| 9633 |
-
"integrity": "sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==",
|
| 9634 |
-
"dev": true,
|
| 9635 |
-
"requires": {
|
| 9636 |
-
"browserslist": "^4.16.0",
|
| 9637 |
-
"postcss-value-parser": "^4.1.0"
|
| 9638 |
-
}
|
| 9639 |
-
},
|
| 9640 |
-
"postcss-normalize-url": {
|
| 9641 |
-
"version": "5.0.2",
|
| 9642 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz",
|
| 9643 |
-
"integrity": "sha512-k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ==",
|
| 9644 |
-
"dev": true,
|
| 9645 |
-
"requires": {
|
| 9646 |
-
"is-absolute-url": "^3.0.3",
|
| 9647 |
-
"normalize-url": "^6.0.1",
|
| 9648 |
-
"postcss-value-parser": "^4.1.0"
|
| 9649 |
-
}
|
| 9650 |
-
},
|
| 9651 |
-
"postcss-normalize-whitespace": {
|
| 9652 |
-
"version": "5.0.1",
|
| 9653 |
-
"resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz",
|
| 9654 |
-
"integrity": "sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==",
|
| 9655 |
-
"dev": true,
|
| 9656 |
-
"requires": {
|
| 9657 |
-
"postcss-value-parser": "^4.1.0"
|
| 9658 |
-
}
|
| 9659 |
-
},
|
| 9660 |
-
"postcss-ordered-values": {
|
| 9661 |
-
"version": "5.0.2",
|
| 9662 |
-
"resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz",
|
| 9663 |
-
"integrity": "sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==",
|
| 9664 |
-
"dev": true,
|
| 9665 |
-
"requires": {
|
| 9666 |
-
"cssnano-utils": "^2.0.1",
|
| 9667 |
-
"postcss-value-parser": "^4.1.0"
|
| 9668 |
-
}
|
| 9669 |
-
},
|
| 9670 |
-
"postcss-reduce-initial": {
|
| 9671 |
-
"version": "5.0.1",
|
| 9672 |
-
"resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz",
|
| 9673 |
-
"integrity": "sha512-zlCZPKLLTMAqA3ZWH57HlbCjkD55LX9dsRyxlls+wfuRfqCi5mSlZVan0heX5cHr154Dq9AfbH70LyhrSAezJw==",
|
| 9674 |
-
"dev": true,
|
| 9675 |
-
"requires": {
|
| 9676 |
-
"browserslist": "^4.16.0",
|
| 9677 |
-
"caniuse-api": "^3.0.0"
|
| 9678 |
-
}
|
| 9679 |
-
},
|
| 9680 |
-
"postcss-reduce-transforms": {
|
| 9681 |
-
"version": "5.0.1",
|
| 9682 |
-
"resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz",
|
| 9683 |
-
"integrity": "sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==",
|
| 9684 |
-
"dev": true,
|
| 9685 |
-
"requires": {
|
| 9686 |
-
"cssnano-utils": "^2.0.1",
|
| 9687 |
-
"postcss-value-parser": "^4.1.0"
|
| 9688 |
-
}
|
| 9689 |
-
},
|
| 9690 |
-
"postcss-safe-important": {
|
| 9691 |
-
"version": "1.2.1",
|
| 9692 |
-
"resolved": "https://registry.npmjs.org/postcss-safe-important/-/postcss-safe-important-1.2.1.tgz",
|
| 9693 |
-
"integrity": "sha512-aDsibkGSaAL8yTqwK6dK9DBtXFJmbctvuz10Ony0lYJ8SIkk4Rs3Im9rg+yu7DVzFKYGfy/LT49CsKV7T9jNaw==",
|
| 9694 |
-
"dev": true,
|
| 9695 |
-
"requires": {
|
| 9696 |
-
"postcss": "^5.0.10"
|
| 9697 |
-
},
|
| 9698 |
-
"dependencies": {
|
| 9699 |
-
"ansi-regex": {
|
| 9700 |
-
"version": "2.1.1",
|
| 9701 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
| 9702 |
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
|
| 9703 |
-
"dev": true
|
| 9704 |
-
},
|
| 9705 |
-
"ansi-styles": {
|
| 9706 |
-
"version": "2.2.1",
|
| 9707 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
|
| 9708 |
-
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
|
| 9709 |
-
"dev": true
|
| 9710 |
-
},
|
| 9711 |
-
"chalk": {
|
| 9712 |
-
"version": "1.1.3",
|
| 9713 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
|
| 9714 |
-
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
|
| 9715 |
-
"dev": true,
|
| 9716 |
-
"requires": {
|
| 9717 |
-
"ansi-styles": "^2.2.1",
|
| 9718 |
-
"escape-string-regexp": "^1.0.2",
|
| 9719 |
-
"has-ansi": "^2.0.0",
|
| 9720 |
-
"strip-ansi": "^3.0.0",
|
| 9721 |
-
"supports-color": "^2.0.0"
|
| 9722 |
-
},
|
| 9723 |
-
"dependencies": {
|
| 9724 |
-
"supports-color": {
|
| 9725 |
-
"version": "2.0.0",
|
| 9726 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
|
| 9727 |
-
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
|
| 9728 |
-
"dev": true
|
| 9729 |
-
}
|
| 9730 |
-
}
|
| 9731 |
-
},
|
| 9732 |
-
"has-flag": {
|
| 9733 |
-
"version": "1.0.0",
|
| 9734 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
|
| 9735 |
-
"integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
|
| 9736 |
-
"dev": true
|
| 9737 |
-
},
|
| 9738 |
-
"postcss": {
|
| 9739 |
-
"version": "5.2.18",
|
| 9740 |
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz",
|
| 9741 |
-
"integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==",
|
| 9742 |
-
"dev": true,
|
| 9743 |
-
"requires": {
|
| 9744 |
-
"chalk": "^1.1.3",
|
| 9745 |
-
"js-base64": "^2.1.9",
|
| 9746 |
-
"source-map": "^0.5.6",
|
| 9747 |
-
"supports-color": "^3.2.3"
|
| 9748 |
-
}
|
| 9749 |
-
},
|
| 9750 |
-
"strip-ansi": {
|
| 9751 |
-
"version": "3.0.1",
|
| 9752 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
|
| 9753 |
-
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
|
| 9754 |
-
"dev": true,
|
| 9755 |
-
"requires": {
|
| 9756 |
-
"ansi-regex": "^2.0.0"
|
| 9757 |
-
}
|
| 9758 |
-
},
|
| 9759 |
-
"supports-color": {
|
| 9760 |
-
"version": "3.2.3",
|
| 9761 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
|
| 9762 |
-
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
|
| 9763 |
-
"dev": true,
|
| 9764 |
-
"requires": {
|
| 9765 |
-
"has-flag": "^1.0.0"
|
| 9766 |
-
}
|
| 9767 |
-
}
|
| 9768 |
-
}
|
| 9769 |
-
},
|
| 9770 |
-
"postcss-selector-parser": {
|
| 9771 |
-
"version": "6.0.6",
|
| 9772 |
-
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz",
|
| 9773 |
-
"integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==",
|
| 9774 |
-
"requires": {
|
| 9775 |
-
"cssesc": "^3.0.0",
|
| 9776 |
-
"util-deprecate": "^1.0.2"
|
| 9777 |
-
}
|
| 9778 |
-
},
|
| 9779 |
-
"postcss-svgo": {
|
| 9780 |
-
"version": "5.0.3",
|
| 9781 |
-
"resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.3.tgz",
|
| 9782 |
-
"integrity": "sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==",
|
| 9783 |
-
"dev": true,
|
| 9784 |
-
"requires": {
|
| 9785 |
-
"postcss-value-parser": "^4.1.0",
|
| 9786 |
-
"svgo": "^2.7.0"
|
| 9787 |
-
}
|
| 9788 |
-
},
|
| 9789 |
-
"postcss-unique-selectors": {
|
| 9790 |
-
"version": "5.0.1",
|
| 9791 |
-
"resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz",
|
| 9792 |
-
"integrity": "sha512-gwi1NhHV4FMmPn+qwBNuot1sG1t2OmacLQ/AX29lzyggnjd+MnVD5uqQmpXO3J17KGL2WAxQruj1qTd3H0gG/w==",
|
| 9793 |
-
"dev": true,
|
| 9794 |
-
"requires": {
|
| 9795 |
-
"alphanum-sort": "^1.0.2",
|
| 9796 |
-
"postcss-selector-parser": "^6.0.5",
|
| 9797 |
-
"uniqs": "^2.0.0"
|
| 9798 |
-
}
|
| 9799 |
-
},
|
| 9800 |
-
"postcss-value-parser": {
|
| 9801 |
-
"version": "4.1.0",
|
| 9802 |
-
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
|
| 9803 |
-
"integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="
|
| 9804 |
-
},
|
| 9805 |
-
"prelude-ls": {
|
| 9806 |
-
"version": "1.2.1",
|
| 9807 |
-
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
|
| 9808 |
-
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
|
| 9809 |
-
"dev": true
|
| 9810 |
-
},
|
| 9811 |
-
"prettier": {
|
| 9812 |
-
"version": "2.4.1",
|
| 9813 |
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz",
|
| 9814 |
-
"integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==",
|
| 9815 |
-
"dev": true
|
| 9816 |
-
},
|
| 9817 |
-
"prettier-linter-helpers": {
|
| 9818 |
-
"version": "1.0.0",
|
| 9819 |
-
"resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
|
| 9820 |
-
"integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
|
| 9821 |
-
"dev": true,
|
| 9822 |
-
"requires": {
|
| 9823 |
-
"fast-diff": "^1.1.2"
|
| 9824 |
-
}
|
| 9825 |
-
},
|
| 9826 |
-
"pretty-hrtime": {
|
| 9827 |
-
"version": "1.0.3",
|
| 9828 |
-
"resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
|
| 9829 |
-
"integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE="
|
| 9830 |
-
},
|
| 9831 |
-
"pretty-time": {
|
| 9832 |
-
"version": "1.1.0",
|
| 9833 |
-
"resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz",
|
| 9834 |
-
"integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==",
|
| 9835 |
-
"dev": true
|
| 9836 |
-
},
|
| 9837 |
-
"process": {
|
| 9838 |
-
"version": "0.11.10",
|
| 9839 |
-
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
| 9840 |
-
"integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
|
| 9841 |
-
"dev": true
|
| 9842 |
-
},
|
| 9843 |
-
"process-nextick-args": {
|
| 9844 |
-
"version": "2.0.1",
|
| 9845 |
-
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
| 9846 |
-
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
| 9847 |
-
"dev": true
|
| 9848 |
-
},
|
| 9849 |
-
"progress": {
|
| 9850 |
-
"version": "2.0.3",
|
| 9851 |
-
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
| 9852 |
-
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
|
| 9853 |
-
"dev": true
|
| 9854 |
-
},
|
| 9855 |
-
"prop-types": {
|
| 9856 |
-
"version": "15.7.2",
|
| 9857 |
-
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
|
| 9858 |
-
"integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
|
| 9859 |
-
"requires": {
|
| 9860 |
-
"loose-envify": "^1.4.0",
|
| 9861 |
-
"object-assign": "^4.1.1",
|
| 9862 |
-
"react-is": "^16.8.1"
|
| 9863 |
-
}
|
| 9864 |
-
},
|
| 9865 |
-
"prop-types-exact": {
|
| 9866 |
-
"version": "1.2.0",
|
| 9867 |
-
"resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz",
|
| 9868 |
-
"integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==",
|
| 9869 |
-
"requires": {
|
| 9870 |
-
"has": "^1.0.3",
|
| 9871 |
-
"object.assign": "^4.1.0",
|
| 9872 |
-
"reflect.ownkeys": "^0.2.0"
|
| 9873 |
-
}
|
| 9874 |
-
},
|
| 9875 |
-
"proxy-addr": {
|
| 9876 |
-
"version": "2.0.7",
|
| 9877 |
-
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
| 9878 |
-
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
| 9879 |
-
"dev": true,
|
| 9880 |
-
"requires": {
|
| 9881 |
-
"forwarded": "0.2.0",
|
| 9882 |
-
"ipaddr.js": "1.9.1"
|
| 9883 |
-
},
|
| 9884 |
-
"dependencies": {
|
| 9885 |
-
"ipaddr.js": {
|
| 9886 |
-
"version": "1.9.1",
|
| 9887 |
-
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
| 9888 |
-
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
| 9889 |
-
"dev": true
|
| 9890 |
-
}
|
| 9891 |
-
}
|
| 9892 |
-
},
|
| 9893 |
-
"public-encrypt": {
|
| 9894 |
-
"version": "4.0.3",
|
| 9895 |
-
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
|
| 9896 |
-
"integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
|
| 9897 |
-
"dev": true,
|
| 9898 |
-
"requires": {
|
| 9899 |
-
"bn.js": "^4.1.0",
|
| 9900 |
-
"browserify-rsa": "^4.0.0",
|
| 9901 |
-
"create-hash": "^1.1.0",
|
| 9902 |
-
"parse-asn1": "^5.0.0",
|
| 9903 |
-
"randombytes": "^2.0.1",
|
| 9904 |
-
"safe-buffer": "^5.1.2"
|
| 9905 |
-
},
|
| 9906 |
-
"dependencies": {
|
| 9907 |
-
"bn.js": {
|
| 9908 |
-
"version": "4.12.0",
|
| 9909 |
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
| 9910 |
-
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==",
|
| 9911 |
-
"dev": true
|
| 9912 |
-
}
|
| 9913 |
-
}
|
| 9914 |
-
},
|
| 9915 |
-
"punycode": {
|
| 9916 |
-
"version": "2.1.1",
|
| 9917 |
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
|
| 9918 |
-
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
|
| 9919 |
-
"dev": true
|
| 9920 |
-
},
|
| 9921 |
-
"purgecss": {
|
| 9922 |
-
"version": "4.0.3",
|
| 9923 |
-
"resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz",
|
| 9924 |
-
"integrity": "sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw==",
|
| 9925 |
-
"requires": {
|
| 9926 |
-
"commander": "^6.0.0",
|
| 9927 |
-
"glob": "^7.0.0",
|
| 9928 |
-
"postcss": "^8.2.1",
|
| 9929 |
-
"postcss-selector-parser": "^6.0.2"
|
| 9930 |
-
},
|
| 9931 |
-
"dependencies": {
|
| 9932 |
-
"commander": {
|
| 9933 |
-
"version": "6.2.1",
|
| 9934 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
|
| 9935 |
-
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="
|
| 9936 |
-
}
|
| 9937 |
-
}
|
| 9938 |
-
},
|
| 9939 |
-
"qs": {
|
| 9940 |
-
"version": "6.2.3",
|
| 9941 |
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz",
|
| 9942 |
-
"integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=",
|
| 9943 |
-
"dev": true
|
| 9944 |
-
},
|
| 9945 |
-
"querystring": {
|
| 9946 |
-
"version": "0.2.0",
|
| 9947 |
-
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
|
| 9948 |
-
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
|
| 9949 |
-
"dev": true
|
| 9950 |
-
},
|
| 9951 |
-
"querystring-es3": {
|
| 9952 |
-
"version": "0.2.1",
|
| 9953 |
-
"resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
|
| 9954 |
-
"integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
|
| 9955 |
-
"dev": true
|
| 9956 |
-
},
|
| 9957 |
-
"queue-microtask": {
|
| 9958 |
-
"version": "1.2.3",
|
| 9959 |
-
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
| 9960 |
-
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
|
| 9961 |
-
},
|
| 9962 |
-
"quick-lru": {
|
| 9963 |
-
"version": "5.1.1",
|
| 9964 |
-
"resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
|
| 9965 |
-
"integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
|
| 9966 |
-
},
|
| 9967 |
-
"randombytes": {
|
| 9968 |
-
"version": "2.1.0",
|
| 9969 |
-
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
|
| 9970 |
-
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
|
| 9971 |
-
"dev": true,
|
| 9972 |
-
"requires": {
|
| 9973 |
-
"safe-buffer": "^5.1.0"
|
| 9974 |
-
}
|
| 9975 |
-
},
|
| 9976 |
-
"randomfill": {
|
| 9977 |
-
"version": "1.0.4",
|
| 9978 |
-
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
|
| 9979 |
-
"integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
|
| 9980 |
-
"dev": true,
|
| 9981 |
-
"requires": {
|
| 9982 |
-
"randombytes": "^2.0.5",
|
| 9983 |
-
"safe-buffer": "^5.1.0"
|
| 9984 |
-
}
|
| 9985 |
-
},
|
| 9986 |
-
"range-parser": {
|
| 9987 |
-
"version": "1.2.1",
|
| 9988 |
-
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
| 9989 |
-
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
| 9990 |
-
"dev": true
|
| 9991 |
-
},
|
| 9992 |
-
"raw-body": {
|
| 9993 |
-
"version": "2.4.1",
|
| 9994 |
-
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz",
|
| 9995 |
-
"integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==",
|
| 9996 |
-
"dev": true,
|
| 9997 |
-
"requires": {
|
| 9998 |
-
"bytes": "3.1.0",
|
| 9999 |
-
"http-errors": "1.7.3",
|
| 10000 |
-
"iconv-lite": "0.4.24",
|
| 10001 |
-
"unpipe": "1.0.0"
|
| 10002 |
-
},
|
| 10003 |
-
"dependencies": {
|
| 10004 |
-
"http-errors": {
|
| 10005 |
-
"version": "1.7.3",
|
| 10006 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz",
|
| 10007 |
-
"integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==",
|
| 10008 |
-
"dev": true,
|
| 10009 |
-
"requires": {
|
| 10010 |
-
"depd": "~1.1.2",
|
| 10011 |
-
"inherits": "2.0.4",
|
| 10012 |
-
"setprototypeof": "1.1.1",
|
| 10013 |
-
"statuses": ">= 1.5.0 < 2",
|
| 10014 |
-
"toidentifier": "1.0.0"
|
| 10015 |
-
}
|
| 10016 |
-
},
|
| 10017 |
-
"iconv-lite": {
|
| 10018 |
-
"version": "0.4.24",
|
| 10019 |
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
| 10020 |
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
| 10021 |
-
"dev": true,
|
| 10022 |
-
"requires": {
|
| 10023 |
-
"safer-buffer": ">= 2.1.2 < 3"
|
| 10024 |
-
}
|
| 10025 |
-
}
|
| 10026 |
-
}
|
| 10027 |
-
},
|
| 10028 |
-
"re-resizable": {
|
| 10029 |
-
"version": "6.9.1",
|
| 10030 |
-
"resolved": "https://registry.npmjs.org/re-resizable/-/re-resizable-6.9.1.tgz",
|
| 10031 |
-
"integrity": "sha512-KRYAgr9/j1PJ3K+t+MBhlQ+qkkoLDJ1rs0z1heIWvYbCW/9Vq4djDU+QumJ3hQbwwtzXF6OInla6rOx6hhgRhQ==",
|
| 10032 |
-
"requires": {
|
| 10033 |
-
"fast-memoize": "^2.5.1"
|
| 10034 |
-
}
|
| 10035 |
-
},
|
| 10036 |
-
"react": {
|
| 10037 |
-
"version": "17.0.2",
|
| 10038 |
-
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
|
| 10039 |
-
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
|
| 10040 |
-
"requires": {
|
| 10041 |
-
"loose-envify": "^1.1.0",
|
| 10042 |
-
"object-assign": "^4.1.1"
|
| 10043 |
-
}
|
| 10044 |
-
},
|
| 10045 |
-
"react-addons-shallow-compare": {
|
| 10046 |
-
"version": "15.6.3",
|
| 10047 |
-
"resolved": "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.3.tgz",
|
| 10048 |
-
"integrity": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==",
|
| 10049 |
-
"requires": {
|
| 10050 |
-
"object-assign": "^4.1.0"
|
| 10051 |
-
}
|
| 10052 |
-
},
|
| 10053 |
-
"react-autosize-textarea": {
|
| 10054 |
-
"version": "7.1.0",
|
| 10055 |
-
"resolved": "https://registry.npmjs.org/react-autosize-textarea/-/react-autosize-textarea-7.1.0.tgz",
|
| 10056 |
-
"integrity": "sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g==",
|
| 10057 |
-
"requires": {
|
| 10058 |
-
"autosize": "^4.0.2",
|
| 10059 |
-
"line-height": "^0.3.1",
|
| 10060 |
-
"prop-types": "^15.5.6"
|
| 10061 |
-
}
|
| 10062 |
-
},
|
| 10063 |
-
"react-colorful": {
|
| 10064 |
-
"version": "5.5.0",
|
| 10065 |
-
"resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.5.0.tgz",
|
| 10066 |
-
"integrity": "sha512-BuzrlrM0ylg7coPkXOrRqlf2BgHLw5L44sybbr9Lg4xy7w9e5N7fGYbojOO0s8J0nvrM3PERN2rVFkvSa24lnQ=="
|
| 10067 |
-
},
|
| 10068 |
-
"react-dates": {
|
| 10069 |
-
"version": "17.2.0",
|
| 10070 |
-
"resolved": "https://registry.npmjs.org/react-dates/-/react-dates-17.2.0.tgz",
|
| 10071 |
-
"integrity": "sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==",
|
| 10072 |
-
"requires": {
|
| 10073 |
-
"airbnb-prop-types": "^2.10.0",
|
| 10074 |
-
"consolidated-events": "^1.1.1 || ^2.0.0",
|
| 10075 |
-
"is-touch-device": "^1.0.1",
|
| 10076 |
-
"lodash": "^4.1.1",
|
| 10077 |
-
"object.assign": "^4.1.0",
|
| 10078 |
-
"object.values": "^1.0.4",
|
| 10079 |
-
"prop-types": "^15.6.1",
|
| 10080 |
-
"react-addons-shallow-compare": "^15.6.2",
|
| 10081 |
-
"react-moment-proptypes": "^1.6.0",
|
| 10082 |
-
"react-outside-click-handler": "^1.2.0",
|
| 10083 |
-
"react-portal": "^4.1.5",
|
| 10084 |
-
"react-with-styles": "^3.2.0",
|
| 10085 |
-
"react-with-styles-interface-css": "^4.0.2"
|
| 10086 |
-
}
|
| 10087 |
-
},
|
| 10088 |
-
"react-dom": {
|
| 10089 |
-
"version": "17.0.2",
|
| 10090 |
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
|
| 10091 |
-
"integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
|
| 10092 |
-
"requires": {
|
| 10093 |
-
"loose-envify": "^1.1.0",
|
| 10094 |
-
"object-assign": "^4.1.1",
|
| 10095 |
-
"scheduler": "^0.20.2"
|
| 10096 |
-
}
|
| 10097 |
-
},
|
| 10098 |
-
"react-easy-crop": {
|
| 10099 |
-
"version": "3.5.3",
|
| 10100 |
-
"resolved": "https://registry.npmjs.org/react-easy-crop/-/react-easy-crop-3.5.3.tgz",
|
| 10101 |
-
"integrity": "sha512-ApTbh+lzKAvKqYW81ihd5J6ZTNN3vPDwi6ncFuUrHPI4bko2DlYOESkRm+0NYoW0H8YLaD7bxox+Z3EvIzAbUA==",
|
| 10102 |
-
"requires": {
|
| 10103 |
-
"normalize-wheel": "^1.0.1",
|
| 10104 |
-
"tslib": "2.0.1"
|
| 10105 |
-
},
|
| 10106 |
-
"dependencies": {
|
| 10107 |
-
"tslib": {
|
| 10108 |
-
"version": "2.0.1",
|
| 10109 |
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz",
|
| 10110 |
-
"integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ=="
|
| 10111 |
-
}
|
| 10112 |
-
}
|
| 10113 |
-
},
|
| 10114 |
-
"react-intersection-observer": {
|
| 10115 |
-
"version": "8.32.2",
|
| 10116 |
-
"resolved": "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-8.32.2.tgz",
|
| 10117 |
-
"integrity": "sha512-QTcea+n28AvOHbTku+jErfQqknbc4Nuh7EUNik8p/JMN56W2Jhjs+qcYZzQhAoyLX8pZD0QXpYX0lW87faackQ=="
|
| 10118 |
-
},
|
| 10119 |
-
"react-is": {
|
| 10120 |
-
"version": "16.13.1",
|
| 10121 |
-
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
| 10122 |
-
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
|
| 10123 |
-
},
|
| 10124 |
-
"react-masonry-css": {
|
| 10125 |
-
"version": "1.0.16",
|
| 10126 |
-
"resolved": "https://registry.npmjs.org/react-masonry-css/-/react-masonry-css-1.0.16.tgz",
|
| 10127 |
-
"integrity": "sha512-KSW0hR2VQmltt/qAa3eXOctQDyOu7+ZBevtKgpNDSzT7k5LA/0XntNa9z9HKCdz3QlxmJHglTZ18e4sX4V8zZQ=="
|
| 10128 |
-
},
|
| 10129 |
-
"react-moment-proptypes": {
|
| 10130 |
-
"version": "1.8.1",
|
| 10131 |
-
"resolved": "https://registry.npmjs.org/react-moment-proptypes/-/react-moment-proptypes-1.8.1.tgz",
|
| 10132 |
-
"integrity": "sha512-Er940DxWoObfIqPrZNfwXKugjxMIuk1LAuEzn23gytzV6hKS/sw108wibi9QubfMN4h+nrlje8eUCSbQRJo2fQ==",
|
| 10133 |
-
"requires": {
|
| 10134 |
-
"moment": ">=1.6.0"
|
| 10135 |
-
}
|
| 10136 |
-
},
|
| 10137 |
-
"react-outside-click-handler": {
|
| 10138 |
-
"version": "1.3.0",
|
| 10139 |
-
"resolved": "https://registry.npmjs.org/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz",
|
| 10140 |
-
"integrity": "sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==",
|
| 10141 |
-
"requires": {
|
| 10142 |
-
"airbnb-prop-types": "^2.15.0",
|
| 10143 |
-
"consolidated-events": "^1.1.1 || ^2.0.0",
|
| 10144 |
-
"document.contains": "^1.0.1",
|
| 10145 |
-
"object.values": "^1.1.0",
|
| 10146 |
-
"prop-types": "^15.7.2"
|
| 10147 |
-
}
|
| 10148 |
-
},
|
| 10149 |
-
"react-portal": {
|
| 10150 |
-
"version": "4.2.1",
|
| 10151 |
-
"resolved": "https://registry.npmjs.org/react-portal/-/react-portal-4.2.1.tgz",
|
| 10152 |
-
"integrity": "sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==",
|
| 10153 |
-
"requires": {
|
| 10154 |
-
"prop-types": "^15.5.8"
|
| 10155 |
-
}
|
| 10156 |
-
},
|
| 10157 |
-
"react-resize-aware": {
|
| 10158 |
-
"version": "3.1.1",
|
| 10159 |
-
"resolved": "https://registry.npmjs.org/react-resize-aware/-/react-resize-aware-3.1.1.tgz",
|
| 10160 |
-
"integrity": "sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg=="
|
| 10161 |
-
},
|
| 10162 |
-
"react-transition-group": {
|
| 10163 |
-
"version": "4.4.2",
|
| 10164 |
-
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz",
|
| 10165 |
-
"integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==",
|
| 10166 |
-
"requires": {
|
| 10167 |
-
"@babel/runtime": "^7.5.5",
|
| 10168 |
-
"dom-helpers": "^5.0.1",
|
| 10169 |
-
"loose-envify": "^1.4.0",
|
| 10170 |
-
"prop-types": "^15.6.2"
|
| 10171 |
-
}
|
| 10172 |
-
},
|
| 10173 |
-
"react-use-gesture": {
|
| 10174 |
-
"version": "9.1.3",
|
| 10175 |
-
"resolved": "https://registry.npmjs.org/react-use-gesture/-/react-use-gesture-9.1.3.tgz",
|
| 10176 |
-
"integrity": "sha512-CdqA2SmS/fj3kkS2W8ZU8wjTbVBAIwDWaRprX7OKaj7HlGwBasGEFggmk5qNklknqk9zK/h8D355bEJFTpqEMg=="
|
| 10177 |
-
},
|
| 10178 |
-
"react-with-direction": {
|
| 10179 |
-
"version": "1.4.0",
|
| 10180 |
-
"resolved": "https://registry.npmjs.org/react-with-direction/-/react-with-direction-1.4.0.tgz",
|
| 10181 |
-
"integrity": "sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==",
|
| 10182 |
-
"requires": {
|
| 10183 |
-
"airbnb-prop-types": "^2.16.0",
|
| 10184 |
-
"brcast": "^2.0.2",
|
| 10185 |
-
"deepmerge": "^1.5.2",
|
| 10186 |
-
"direction": "^1.0.4",
|
| 10187 |
-
"hoist-non-react-statics": "^3.3.2",
|
| 10188 |
-
"object.assign": "^4.1.2",
|
| 10189 |
-
"object.values": "^1.1.5",
|
| 10190 |
-
"prop-types": "^15.7.2"
|
| 10191 |
-
}
|
| 10192 |
-
},
|
| 10193 |
-
"react-with-styles": {
|
| 10194 |
-
"version": "3.2.3",
|
| 10195 |
-
"resolved": "https://registry.npmjs.org/react-with-styles/-/react-with-styles-3.2.3.tgz",
|
| 10196 |
-
"integrity": "sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==",
|
| 10197 |
-
"requires": {
|
| 10198 |
-
"hoist-non-react-statics": "^3.2.1",
|
| 10199 |
-
"object.assign": "^4.1.0",
|
| 10200 |
-
"prop-types": "^15.6.2",
|
| 10201 |
-
"react-with-direction": "^1.3.0"
|
| 10202 |
-
}
|
| 10203 |
-
},
|
| 10204 |
-
"react-with-styles-interface-css": {
|
| 10205 |
-
"version": "4.0.3",
|
| 10206 |
-
"resolved": "https://registry.npmjs.org/react-with-styles-interface-css/-/react-with-styles-interface-css-4.0.3.tgz",
|
| 10207 |
-
"integrity": "sha512-wE43PIyjal2dexxyyx4Lhbcb+E42amoYPnkunRZkb9WTA+Z+9LagbyxwsI352NqMdFmghR0opg29dzDO4/YXbw==",
|
| 10208 |
-
"requires": {
|
| 10209 |
-
"array.prototype.flat": "^1.2.1",
|
| 10210 |
-
"global-cache": "^1.2.1"
|
| 10211 |
-
}
|
| 10212 |
-
},
|
| 10213 |
-
"read-cache": {
|
| 10214 |
-
"version": "1.0.0",
|
| 10215 |
-
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
|
| 10216 |
-
"integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=",
|
| 10217 |
-
"dev": true,
|
| 10218 |
-
"requires": {
|
| 10219 |
-
"pify": "^2.3.0"
|
| 10220 |
-
},
|
| 10221 |
-
"dependencies": {
|
| 10222 |
-
"pify": {
|
| 10223 |
-
"version": "2.3.0",
|
| 10224 |
-
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
| 10225 |
-
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
|
| 10226 |
-
"dev": true
|
| 10227 |
-
}
|
| 10228 |
-
}
|
| 10229 |
-
},
|
| 10230 |
-
"readable-stream": {
|
| 10231 |
-
"version": "2.3.7",
|
| 10232 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
| 10233 |
-
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
| 10234 |
-
"dev": true,
|
| 10235 |
-
"requires": {
|
| 10236 |
-
"core-util-is": "~1.0.0",
|
| 10237 |
-
"inherits": "~2.0.3",
|
| 10238 |
-
"isarray": "~1.0.0",
|
| 10239 |
-
"process-nextick-args": "~2.0.0",
|
| 10240 |
-
"safe-buffer": "~5.1.1",
|
| 10241 |
-
"string_decoder": "~1.1.1",
|
| 10242 |
-
"util-deprecate": "~1.0.1"
|
| 10243 |
-
},
|
| 10244 |
-
"dependencies": {
|
| 10245 |
-
"isarray": {
|
| 10246 |
-
"version": "1.0.0",
|
| 10247 |
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
| 10248 |
-
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
| 10249 |
-
"dev": true
|
| 10250 |
-
},
|
| 10251 |
-
"safe-buffer": {
|
| 10252 |
-
"version": "5.1.2",
|
| 10253 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 10254 |
-
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 10255 |
-
"dev": true
|
| 10256 |
-
},
|
| 10257 |
-
"string_decoder": {
|
| 10258 |
-
"version": "1.1.1",
|
| 10259 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
| 10260 |
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
| 10261 |
-
"dev": true,
|
| 10262 |
-
"requires": {
|
| 10263 |
-
"safe-buffer": "~5.1.0"
|
| 10264 |
-
}
|
| 10265 |
-
}
|
| 10266 |
-
}
|
| 10267 |
-
},
|
| 10268 |
-
"readdirp": {
|
| 10269 |
-
"version": "3.6.0",
|
| 10270 |
-
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
| 10271 |
-
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
| 10272 |
-
"requires": {
|
| 10273 |
-
"picomatch": "^2.2.1"
|
| 10274 |
-
}
|
| 10275 |
-
},
|
| 10276 |
-
"reakit": {
|
| 10277 |
-
"version": "1.3.10",
|
| 10278 |
-
"resolved": "https://registry.npmjs.org/reakit/-/reakit-1.3.10.tgz",
|
| 10279 |
-
"integrity": "sha512-HxHtnegMDwidGU4Ik/fKTZ3coihf4nKeycs0QSIFWcau77qL5wL6xnqZrAxcjjDDPOIANct3LxTiAlf+qGLOlw==",
|
| 10280 |
-
"requires": {
|
| 10281 |
-
"@popperjs/core": "^2.5.4",
|
| 10282 |
-
"body-scroll-lock": "^3.1.5",
|
| 10283 |
-
"reakit-system": "^0.15.2",
|
| 10284 |
-
"reakit-utils": "^0.15.2",
|
| 10285 |
-
"reakit-warning": "^0.6.2"
|
| 10286 |
-
}
|
| 10287 |
-
},
|
| 10288 |
-
"reakit-system": {
|
| 10289 |
-
"version": "0.15.2",
|
| 10290 |
-
"resolved": "https://registry.npmjs.org/reakit-system/-/reakit-system-0.15.2.tgz",
|
| 10291 |
-
"integrity": "sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==",
|
| 10292 |
-
"requires": {
|
| 10293 |
-
"reakit-utils": "^0.15.2"
|
| 10294 |
-
}
|
| 10295 |
-
},
|
| 10296 |
-
"reakit-utils": {
|
| 10297 |
-
"version": "0.15.2",
|
| 10298 |
-
"resolved": "https://registry.npmjs.org/reakit-utils/-/reakit-utils-0.15.2.tgz",
|
| 10299 |
-
"integrity": "sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ=="
|
| 10300 |
-
},
|
| 10301 |
-
"reakit-warning": {
|
| 10302 |
-
"version": "0.6.2",
|
| 10303 |
-
"resolved": "https://registry.npmjs.org/reakit-warning/-/reakit-warning-0.6.2.tgz",
|
| 10304 |
-
"integrity": "sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==",
|
| 10305 |
-
"requires": {
|
| 10306 |
-
"reakit-utils": "^0.15.2"
|
| 10307 |
-
}
|
| 10308 |
-
},
|
| 10309 |
-
"rechoir": {
|
| 10310 |
-
"version": "0.7.1",
|
| 10311 |
-
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz",
|
| 10312 |
-
"integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==",
|
| 10313 |
-
"dev": true,
|
| 10314 |
-
"requires": {
|
| 10315 |
-
"resolve": "^1.9.0"
|
| 10316 |
-
}
|
| 10317 |
-
},
|
| 10318 |
-
"reduce-css-calc": {
|
| 10319 |
-
"version": "2.1.8",
|
| 10320 |
-
"resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz",
|
| 10321 |
-
"integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==",
|
| 10322 |
-
"requires": {
|
| 10323 |
-
"css-unit-converter": "^1.1.1",
|
| 10324 |
-
"postcss-value-parser": "^3.3.0"
|
| 10325 |
-
},
|
| 10326 |
-
"dependencies": {
|
| 10327 |
-
"postcss-value-parser": {
|
| 10328 |
-
"version": "3.3.1",
|
| 10329 |
-
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
|
| 10330 |
-
"integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
|
| 10331 |
-
}
|
| 10332 |
-
}
|
| 10333 |
-
},
|
| 10334 |
-
"redux": {
|
| 10335 |
-
"version": "4.1.2",
|
| 10336 |
-
"resolved": "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz",
|
| 10337 |
-
"integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==",
|
| 10338 |
-
"requires": {
|
| 10339 |
-
"@babel/runtime": "^7.9.2"
|
| 10340 |
-
}
|
| 10341 |
-
},
|
| 10342 |
-
"redux-multi": {
|
| 10343 |
-
"version": "0.1.12",
|
| 10344 |
-
"resolved": "https://registry.npmjs.org/redux-multi/-/redux-multi-0.1.12.tgz",
|
| 10345 |
-
"integrity": "sha1-KOH+XklnLLxb2KB/Cyrq8O+DVcI="
|
| 10346 |
-
},
|
| 10347 |
-
"reflect.ownkeys": {
|
| 10348 |
-
"version": "0.2.0",
|
| 10349 |
-
"resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz",
|
| 10350 |
-
"integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA="
|
| 10351 |
-
},
|
| 10352 |
-
"regenerate": {
|
| 10353 |
-
"version": "1.4.2",
|
| 10354 |
-
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
|
| 10355 |
-
"integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
|
| 10356 |
-
"dev": true
|
| 10357 |
-
},
|
| 10358 |
-
"regenerate-unicode-properties": {
|
| 10359 |
-
"version": "9.0.0",
|
| 10360 |
-
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
|
| 10361 |
-
"integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
|
| 10362 |
-
"dev": true,
|
| 10363 |
-
"requires": {
|
| 10364 |
-
"regenerate": "^1.4.2"
|
| 10365 |
-
}
|
| 10366 |
-
},
|
| 10367 |
-
"regenerator-runtime": {
|
| 10368 |
-
"version": "0.13.7",
|
| 10369 |
-
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz",
|
| 10370 |
-
"integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="
|
| 10371 |
-
},
|
| 10372 |
-
"regenerator-transform": {
|
| 10373 |
-
"version": "0.14.5",
|
| 10374 |
-
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
|
| 10375 |
-
"integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
|
| 10376 |
-
"dev": true,
|
| 10377 |
-
"requires": {
|
| 10378 |
-
"@babel/runtime": "^7.8.4"
|
| 10379 |
-
}
|
| 10380 |
-
},
|
| 10381 |
-
"regex-parser": {
|
| 10382 |
-
"version": "2.2.11",
|
| 10383 |
-
"resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz",
|
| 10384 |
-
"integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==",
|
| 10385 |
-
"dev": true
|
| 10386 |
-
},
|
| 10387 |
-
"regexp.prototype.flags": {
|
| 10388 |
-
"version": "1.3.1",
|
| 10389 |
-
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz",
|
| 10390 |
-
"integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==",
|
| 10391 |
-
"dev": true,
|
| 10392 |
-
"requires": {
|
| 10393 |
-
"call-bind": "^1.0.2",
|
| 10394 |
-
"define-properties": "^1.1.3"
|
| 10395 |
-
}
|
| 10396 |
-
},
|
| 10397 |
-
"regexpp": {
|
| 10398 |
-
"version": "3.2.0",
|
| 10399 |
-
"resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
|
| 10400 |
-
"integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
|
| 10401 |
-
"dev": true
|
| 10402 |
-
},
|
| 10403 |
-
"regexpu-core": {
|
| 10404 |
-
"version": "4.8.0",
|
| 10405 |
-
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
|
| 10406 |
-
"integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
|
| 10407 |
-
"dev": true,
|
| 10408 |
-
"requires": {
|
| 10409 |
-
"regenerate": "^1.4.2",
|
| 10410 |
-
"regenerate-unicode-properties": "^9.0.0",
|
| 10411 |
-
"regjsgen": "^0.5.2",
|
| 10412 |
-
"regjsparser": "^0.7.0",
|
| 10413 |
-
"unicode-match-property-ecmascript": "^2.0.0",
|
| 10414 |
-
"unicode-match-property-value-ecmascript": "^2.0.0"
|
| 10415 |
-
}
|
| 10416 |
-
},
|
| 10417 |
-
"regjsgen": {
|
| 10418 |
-
"version": "0.5.2",
|
| 10419 |
-
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
|
| 10420 |
-
"integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
|
| 10421 |
-
"dev": true
|
| 10422 |
-
},
|
| 10423 |
-
"regjsparser": {
|
| 10424 |
-
"version": "0.7.0",
|
| 10425 |
-
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
|
| 10426 |
-
"integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
|
| 10427 |
-
"dev": true,
|
| 10428 |
-
"requires": {
|
| 10429 |
-
"jsesc": "~0.5.0"
|
| 10430 |
-
},
|
| 10431 |
-
"dependencies": {
|
| 10432 |
-
"jsesc": {
|
| 10433 |
-
"version": "0.5.0",
|
| 10434 |
-
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
|
| 10435 |
-
"integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
|
| 10436 |
-
"dev": true
|
| 10437 |
-
}
|
| 10438 |
-
}
|
| 10439 |
-
},
|
| 10440 |
-
"relateurl": {
|
| 10441 |
-
"version": "0.2.7",
|
| 10442 |
-
"resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
|
| 10443 |
-
"integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=",
|
| 10444 |
-
"dev": true
|
| 10445 |
-
},
|
| 10446 |
-
"rememo": {
|
| 10447 |
-
"version": "3.0.0",
|
| 10448 |
-
"resolved": "https://registry.npmjs.org/rememo/-/rememo-3.0.0.tgz",
|
| 10449 |
-
"integrity": "sha512-eWtut/7pqMRnSccbexb647iPjN7ir6Tmf4RG92ZVlykFEkHqGYy9tWnpHH3I+FS+WQ6lQ1i1iDgarYzGKgTcRQ=="
|
| 10450 |
-
},
|
| 10451 |
-
"replace-ext": {
|
| 10452 |
-
"version": "1.0.1",
|
| 10453 |
-
"resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
|
| 10454 |
-
"integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==",
|
| 10455 |
-
"dev": true
|
| 10456 |
-
},
|
| 10457 |
-
"replace-in-file": {
|
| 10458 |
-
"version": "6.2.0",
|
| 10459 |
-
"resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-6.2.0.tgz",
|
| 10460 |
-
"integrity": "sha512-Im2AF9G/qgkYneOc9QwWwUS/efyyonTUBvzXS2VXuxPawE5yQIjT/e6x4CTijO0Quq48lfAujuo+S89RR2TP2Q==",
|
| 10461 |
-
"dev": true,
|
| 10462 |
-
"requires": {
|
| 10463 |
-
"chalk": "^4.1.0",
|
| 10464 |
-
"glob": "^7.1.6",
|
| 10465 |
-
"yargs": "^16.2.0"
|
| 10466 |
-
},
|
| 10467 |
-
"dependencies": {
|
| 10468 |
-
"ansi-regex": {
|
| 10469 |
-
"version": "5.0.0",
|
| 10470 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
|
| 10471 |
-
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
|
| 10472 |
-
"dev": true
|
| 10473 |
-
},
|
| 10474 |
-
"ansi-styles": {
|
| 10475 |
-
"version": "4.3.0",
|
| 10476 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 10477 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 10478 |
-
"dev": true,
|
| 10479 |
-
"requires": {
|
| 10480 |
-
"color-convert": "^2.0.1"
|
| 10481 |
-
}
|
| 10482 |
-
},
|
| 10483 |
-
"chalk": {
|
| 10484 |
-
"version": "4.1.1",
|
| 10485 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz",
|
| 10486 |
-
"integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==",
|
| 10487 |
-
"dev": true,
|
| 10488 |
-
"requires": {
|
| 10489 |
-
"ansi-styles": "^4.1.0",
|
| 10490 |
-
"supports-color": "^7.1.0"
|
| 10491 |
-
}
|
| 10492 |
-
},
|
| 10493 |
-
"cliui": {
|
| 10494 |
-
"version": "7.0.4",
|
| 10495 |
-
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
|
| 10496 |
-
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
| 10497 |
-
"dev": true,
|
| 10498 |
-
"requires": {
|
| 10499 |
-
"string-width": "^4.2.0",
|
| 10500 |
-
"strip-ansi": "^6.0.0",
|
| 10501 |
-
"wrap-ansi": "^7.0.0"
|
| 10502 |
-
}
|
| 10503 |
-
},
|
| 10504 |
-
"color-convert": {
|
| 10505 |
-
"version": "2.0.1",
|
| 10506 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 10507 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 10508 |
-
"dev": true,
|
| 10509 |
-
"requires": {
|
| 10510 |
-
"color-name": "~1.1.4"
|
| 10511 |
-
}
|
| 10512 |
-
},
|
| 10513 |
-
"color-name": {
|
| 10514 |
-
"version": "1.1.4",
|
| 10515 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 10516 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 10517 |
-
"dev": true
|
| 10518 |
-
},
|
| 10519 |
-
"emoji-regex": {
|
| 10520 |
-
"version": "8.0.0",
|
| 10521 |
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
| 10522 |
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
| 10523 |
-
"dev": true
|
| 10524 |
-
},
|
| 10525 |
-
"has-flag": {
|
| 10526 |
-
"version": "4.0.0",
|
| 10527 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 10528 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
| 10529 |
-
"dev": true
|
| 10530 |
-
},
|
| 10531 |
-
"is-fullwidth-code-point": {
|
| 10532 |
-
"version": "3.0.0",
|
| 10533 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
| 10534 |
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
| 10535 |
-
"dev": true
|
| 10536 |
-
},
|
| 10537 |
-
"string-width": {
|
| 10538 |
-
"version": "4.2.2",
|
| 10539 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz",
|
| 10540 |
-
"integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==",
|
| 10541 |
-
"dev": true,
|
| 10542 |
-
"requires": {
|
| 10543 |
-
"emoji-regex": "^8.0.0",
|
| 10544 |
-
"is-fullwidth-code-point": "^3.0.0",
|
| 10545 |
-
"strip-ansi": "^6.0.0"
|
| 10546 |
-
}
|
| 10547 |
-
},
|
| 10548 |
-
"strip-ansi": {
|
| 10549 |
-
"version": "6.0.0",
|
| 10550 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
|
| 10551 |
-
"integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
|
| 10552 |
-
"dev": true,
|
| 10553 |
-
"requires": {
|
| 10554 |
-
"ansi-regex": "^5.0.0"
|
| 10555 |
-
}
|
| 10556 |
-
},
|
| 10557 |
-
"supports-color": {
|
| 10558 |
-
"version": "7.2.0",
|
| 10559 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
| 10560 |
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
| 10561 |
-
"dev": true,
|
| 10562 |
-
"requires": {
|
| 10563 |
-
"has-flag": "^4.0.0"
|
| 10564 |
-
}
|
| 10565 |
-
},
|
| 10566 |
-
"wrap-ansi": {
|
| 10567 |
-
"version": "7.0.0",
|
| 10568 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
| 10569 |
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
| 10570 |
-
"dev": true,
|
| 10571 |
-
"requires": {
|
| 10572 |
-
"ansi-styles": "^4.0.0",
|
| 10573 |
-
"string-width": "^4.1.0",
|
| 10574 |
-
"strip-ansi": "^6.0.0"
|
| 10575 |
-
}
|
| 10576 |
-
},
|
| 10577 |
-
"y18n": {
|
| 10578 |
-
"version": "5.0.8",
|
| 10579 |
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
| 10580 |
-
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
| 10581 |
-
"dev": true
|
| 10582 |
-
},
|
| 10583 |
-
"yargs": {
|
| 10584 |
-
"version": "16.2.0",
|
| 10585 |
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
|
| 10586 |
-
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
|
| 10587 |
-
"dev": true,
|
| 10588 |
-
"requires": {
|
| 10589 |
-
"cliui": "^7.0.2",
|
| 10590 |
-
"escalade": "^3.1.1",
|
| 10591 |
-
"get-caller-file": "^2.0.5",
|
| 10592 |
-
"require-directory": "^2.1.1",
|
| 10593 |
-
"string-width": "^4.2.0",
|
| 10594 |
-
"y18n": "^5.0.5",
|
| 10595 |
-
"yargs-parser": "^20.2.2"
|
| 10596 |
-
}
|
| 10597 |
-
},
|
| 10598 |
-
"yargs-parser": {
|
| 10599 |
-
"version": "20.2.7",
|
| 10600 |
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz",
|
| 10601 |
-
"integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==",
|
| 10602 |
-
"dev": true
|
| 10603 |
-
}
|
| 10604 |
-
}
|
| 10605 |
-
},
|
| 10606 |
-
"require-directory": {
|
| 10607 |
-
"version": "2.1.1",
|
| 10608 |
-
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
| 10609 |
-
"integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I="
|
| 10610 |
-
},
|
| 10611 |
-
"require-main-filename": {
|
| 10612 |
-
"version": "2.0.0",
|
| 10613 |
-
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
|
| 10614 |
-
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
|
| 10615 |
-
},
|
| 10616 |
-
"requires-port": {
|
| 10617 |
-
"version": "1.0.0",
|
| 10618 |
-
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
| 10619 |
-
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
|
| 10620 |
-
"dev": true
|
| 10621 |
-
},
|
| 10622 |
-
"resolve": {
|
| 10623 |
-
"version": "1.20.0",
|
| 10624 |
-
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
|
| 10625 |
-
"integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
|
| 10626 |
-
"requires": {
|
| 10627 |
-
"is-core-module": "^2.2.0",
|
| 10628 |
-
"path-parse": "^1.0.6"
|
| 10629 |
-
}
|
| 10630 |
-
},
|
| 10631 |
-
"resolve-cwd": {
|
| 10632 |
-
"version": "3.0.0",
|
| 10633 |
-
"resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
|
| 10634 |
-
"integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
|
| 10635 |
-
"dev": true,
|
| 10636 |
-
"requires": {
|
| 10637 |
-
"resolve-from": "^5.0.0"
|
| 10638 |
-
},
|
| 10639 |
-
"dependencies": {
|
| 10640 |
-
"resolve-from": {
|
| 10641 |
-
"version": "5.0.0",
|
| 10642 |
-
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
| 10643 |
-
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
|
| 10644 |
-
"dev": true
|
| 10645 |
-
}
|
| 10646 |
-
}
|
| 10647 |
-
},
|
| 10648 |
-
"resolve-from": {
|
| 10649 |
-
"version": "4.0.0",
|
| 10650 |
-
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
| 10651 |
-
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
|
| 10652 |
-
},
|
| 10653 |
-
"resolve-path": {
|
| 10654 |
-
"version": "1.4.0",
|
| 10655 |
-
"resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz",
|
| 10656 |
-
"integrity": "sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc=",
|
| 10657 |
-
"dev": true,
|
| 10658 |
-
"requires": {
|
| 10659 |
-
"http-errors": "~1.6.2",
|
| 10660 |
-
"path-is-absolute": "1.0.1"
|
| 10661 |
-
},
|
| 10662 |
-
"dependencies": {
|
| 10663 |
-
"http-errors": {
|
| 10664 |
-
"version": "1.6.3",
|
| 10665 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
|
| 10666 |
-
"integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
|
| 10667 |
-
"dev": true,
|
| 10668 |
-
"requires": {
|
| 10669 |
-
"depd": "~1.1.2",
|
| 10670 |
-
"inherits": "2.0.3",
|
| 10671 |
-
"setprototypeof": "1.1.0",
|
| 10672 |
-
"statuses": ">= 1.4.0 < 2"
|
| 10673 |
-
}
|
| 10674 |
-
},
|
| 10675 |
-
"inherits": {
|
| 10676 |
-
"version": "2.0.3",
|
| 10677 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
| 10678 |
-
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
| 10679 |
-
"dev": true
|
| 10680 |
-
},
|
| 10681 |
-
"setprototypeof": {
|
| 10682 |
-
"version": "1.1.0",
|
| 10683 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
|
| 10684 |
-
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
|
| 10685 |
-
"dev": true
|
| 10686 |
-
}
|
| 10687 |
-
}
|
| 10688 |
-
},
|
| 10689 |
-
"resolve-url-loader": {
|
| 10690 |
-
"version": "4.0.0",
|
| 10691 |
-
"resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz",
|
| 10692 |
-
"integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==",
|
| 10693 |
-
"dev": true,
|
| 10694 |
-
"requires": {
|
| 10695 |
-
"adjust-sourcemap-loader": "^4.0.0",
|
| 10696 |
-
"convert-source-map": "^1.7.0",
|
| 10697 |
-
"loader-utils": "^2.0.0",
|
| 10698 |
-
"postcss": "^7.0.35",
|
| 10699 |
-
"source-map": "0.6.1"
|
| 10700 |
-
},
|
| 10701 |
-
"dependencies": {
|
| 10702 |
-
"loader-utils": {
|
| 10703 |
-
"version": "2.0.0",
|
| 10704 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
|
| 10705 |
-
"integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
|
| 10706 |
-
"dev": true,
|
| 10707 |
-
"requires": {
|
| 10708 |
-
"big.js": "^5.2.2",
|
| 10709 |
-
"emojis-list": "^3.0.0",
|
| 10710 |
-
"json5": "^2.1.2"
|
| 10711 |
-
}
|
| 10712 |
-
},
|
| 10713 |
-
"postcss": {
|
| 10714 |
-
"version": "7.0.36",
|
| 10715 |
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz",
|
| 10716 |
-
"integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==",
|
| 10717 |
-
"dev": true,
|
| 10718 |
-
"requires": {
|
| 10719 |
-
"chalk": "^2.4.2",
|
| 10720 |
-
"source-map": "^0.6.1",
|
| 10721 |
-
"supports-color": "^6.1.0"
|
| 10722 |
-
}
|
| 10723 |
-
},
|
| 10724 |
-
"source-map": {
|
| 10725 |
-
"version": "0.6.1",
|
| 10726 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 10727 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 10728 |
-
"dev": true
|
| 10729 |
-
},
|
| 10730 |
-
"supports-color": {
|
| 10731 |
-
"version": "6.1.0",
|
| 10732 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
|
| 10733 |
-
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
|
| 10734 |
-
"dev": true,
|
| 10735 |
-
"requires": {
|
| 10736 |
-
"has-flag": "^3.0.0"
|
| 10737 |
-
}
|
| 10738 |
-
}
|
| 10739 |
-
}
|
| 10740 |
-
},
|
| 10741 |
-
"resp-modifier": {
|
| 10742 |
-
"version": "6.0.2",
|
| 10743 |
-
"resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz",
|
| 10744 |
-
"integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=",
|
| 10745 |
-
"dev": true,
|
| 10746 |
-
"requires": {
|
| 10747 |
-
"debug": "^2.2.0",
|
| 10748 |
-
"minimatch": "^3.0.2"
|
| 10749 |
-
},
|
| 10750 |
-
"dependencies": {
|
| 10751 |
-
"debug": {
|
| 10752 |
-
"version": "2.6.9",
|
| 10753 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 10754 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 10755 |
-
"dev": true,
|
| 10756 |
-
"requires": {
|
| 10757 |
-
"ms": "2.0.0"
|
| 10758 |
-
}
|
| 10759 |
-
},
|
| 10760 |
-
"ms": {
|
| 10761 |
-
"version": "2.0.0",
|
| 10762 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 10763 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 10764 |
-
"dev": true
|
| 10765 |
-
}
|
| 10766 |
-
}
|
| 10767 |
-
},
|
| 10768 |
-
"restore-cursor": {
|
| 10769 |
-
"version": "3.1.0",
|
| 10770 |
-
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
|
| 10771 |
-
"integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
|
| 10772 |
-
"dev": true,
|
| 10773 |
-
"requires": {
|
| 10774 |
-
"onetime": "^5.1.0",
|
| 10775 |
-
"signal-exit": "^3.0.2"
|
| 10776 |
-
}
|
| 10777 |
-
},
|
| 10778 |
-
"retry": {
|
| 10779 |
-
"version": "0.13.1",
|
| 10780 |
-
"resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
|
| 10781 |
-
"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
|
| 10782 |
-
"dev": true
|
| 10783 |
-
},
|
| 10784 |
-
"reusify": {
|
| 10785 |
-
"version": "1.0.4",
|
| 10786 |
-
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
|
| 10787 |
-
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
|
| 10788 |
-
},
|
| 10789 |
-
"rgb-regex": {
|
| 10790 |
-
"version": "1.0.1",
|
| 10791 |
-
"resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz",
|
| 10792 |
-
"integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE="
|
| 10793 |
-
},
|
| 10794 |
-
"rgba-regex": {
|
| 10795 |
-
"version": "1.0.0",
|
| 10796 |
-
"resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",
|
| 10797 |
-
"integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM="
|
| 10798 |
-
},
|
| 10799 |
-
"rimraf": {
|
| 10800 |
-
"version": "3.0.2",
|
| 10801 |
-
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
| 10802 |
-
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
|
| 10803 |
-
"requires": {
|
| 10804 |
-
"glob": "^7.1.3"
|
| 10805 |
-
}
|
| 10806 |
-
},
|
| 10807 |
-
"ripemd160": {
|
| 10808 |
-
"version": "2.0.2",
|
| 10809 |
-
"resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
|
| 10810 |
-
"integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
|
| 10811 |
-
"dev": true,
|
| 10812 |
-
"requires": {
|
| 10813 |
-
"hash-base": "^3.0.0",
|
| 10814 |
-
"inherits": "^2.0.1"
|
| 10815 |
-
}
|
| 10816 |
-
},
|
| 10817 |
-
"run-parallel": {
|
| 10818 |
-
"version": "1.2.0",
|
| 10819 |
-
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
| 10820 |
-
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
|
| 10821 |
-
"requires": {
|
| 10822 |
-
"queue-microtask": "^1.2.2"
|
| 10823 |
-
}
|
| 10824 |
-
},
|
| 10825 |
-
"rungen": {
|
| 10826 |
-
"version": "0.3.2",
|
| 10827 |
-
"resolved": "https://registry.npmjs.org/rungen/-/rungen-0.3.2.tgz",
|
| 10828 |
-
"integrity": "sha1-QAwJ6+kU57F+C27zJjQA/Cq8fLM="
|
| 10829 |
-
},
|
| 10830 |
-
"rx": {
|
| 10831 |
-
"version": "4.1.0",
|
| 10832 |
-
"resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz",
|
| 10833 |
-
"integrity": "sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=",
|
| 10834 |
-
"dev": true
|
| 10835 |
-
},
|
| 10836 |
-
"rxjs": {
|
| 10837 |
-
"version": "5.5.12",
|
| 10838 |
-
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz",
|
| 10839 |
-
"integrity": "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==",
|
| 10840 |
-
"dev": true,
|
| 10841 |
-
"requires": {
|
| 10842 |
-
"symbol-observable": "1.0.1"
|
| 10843 |
-
}
|
| 10844 |
-
},
|
| 10845 |
-
"safe-buffer": {
|
| 10846 |
-
"version": "5.2.1",
|
| 10847 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
| 10848 |
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
| 10849 |
-
},
|
| 10850 |
-
"safer-buffer": {
|
| 10851 |
-
"version": "2.1.2",
|
| 10852 |
-
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
| 10853 |
-
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
| 10854 |
-
},
|
| 10855 |
-
"scheduler": {
|
| 10856 |
-
"version": "0.20.2",
|
| 10857 |
-
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz",
|
| 10858 |
-
"integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==",
|
| 10859 |
-
"requires": {
|
| 10860 |
-
"loose-envify": "^1.1.0",
|
| 10861 |
-
"object-assign": "^4.1.1"
|
| 10862 |
-
}
|
| 10863 |
-
},
|
| 10864 |
-
"schema-utils": {
|
| 10865 |
-
"version": "2.7.1",
|
| 10866 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
|
| 10867 |
-
"integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
|
| 10868 |
-
"dev": true,
|
| 10869 |
-
"requires": {
|
| 10870 |
-
"@types/json-schema": "^7.0.5",
|
| 10871 |
-
"ajv": "^6.12.4",
|
| 10872 |
-
"ajv-keywords": "^3.5.2"
|
| 10873 |
-
}
|
| 10874 |
-
},
|
| 10875 |
-
"select": {
|
| 10876 |
-
"version": "1.1.2",
|
| 10877 |
-
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
| 10878 |
-
"integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0="
|
| 10879 |
-
},
|
| 10880 |
-
"select-hose": {
|
| 10881 |
-
"version": "2.0.0",
|
| 10882 |
-
"resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz",
|
| 10883 |
-
"integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=",
|
| 10884 |
-
"dev": true
|
| 10885 |
-
},
|
| 10886 |
-
"selfsigned": {
|
| 10887 |
-
"version": "1.10.11",
|
| 10888 |
-
"resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz",
|
| 10889 |
-
"integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==",
|
| 10890 |
-
"dev": true,
|
| 10891 |
-
"requires": {
|
| 10892 |
-
"node-forge": "^0.10.0"
|
| 10893 |
-
}
|
| 10894 |
-
},
|
| 10895 |
-
"semver": {
|
| 10896 |
-
"version": "7.3.5",
|
| 10897 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
|
| 10898 |
-
"integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
|
| 10899 |
-
"dev": true,
|
| 10900 |
-
"requires": {
|
| 10901 |
-
"lru-cache": "^6.0.0"
|
| 10902 |
-
}
|
| 10903 |
-
},
|
| 10904 |
-
"send": {
|
| 10905 |
-
"version": "0.16.2",
|
| 10906 |
-
"resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz",
|
| 10907 |
-
"integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==",
|
| 10908 |
-
"dev": true,
|
| 10909 |
-
"requires": {
|
| 10910 |
-
"debug": "2.6.9",
|
| 10911 |
-
"depd": "~1.1.2",
|
| 10912 |
-
"destroy": "~1.0.4",
|
| 10913 |
-
"encodeurl": "~1.0.2",
|
| 10914 |
-
"escape-html": "~1.0.3",
|
| 10915 |
-
"etag": "~1.8.1",
|
| 10916 |
-
"fresh": "0.5.2",
|
| 10917 |
-
"http-errors": "~1.6.2",
|
| 10918 |
-
"mime": "1.4.1",
|
| 10919 |
-
"ms": "2.0.0",
|
| 10920 |
-
"on-finished": "~2.3.0",
|
| 10921 |
-
"range-parser": "~1.2.0",
|
| 10922 |
-
"statuses": "~1.4.0"
|
| 10923 |
-
},
|
| 10924 |
-
"dependencies": {
|
| 10925 |
-
"debug": {
|
| 10926 |
-
"version": "2.6.9",
|
| 10927 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 10928 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 10929 |
-
"dev": true,
|
| 10930 |
-
"requires": {
|
| 10931 |
-
"ms": "2.0.0"
|
| 10932 |
-
}
|
| 10933 |
-
},
|
| 10934 |
-
"http-errors": {
|
| 10935 |
-
"version": "1.6.3",
|
| 10936 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
|
| 10937 |
-
"integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
|
| 10938 |
-
"dev": true,
|
| 10939 |
-
"requires": {
|
| 10940 |
-
"depd": "~1.1.2",
|
| 10941 |
-
"inherits": "2.0.3",
|
| 10942 |
-
"setprototypeof": "1.1.0",
|
| 10943 |
-
"statuses": ">= 1.4.0 < 2"
|
| 10944 |
-
}
|
| 10945 |
-
},
|
| 10946 |
-
"inherits": {
|
| 10947 |
-
"version": "2.0.3",
|
| 10948 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
| 10949 |
-
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
| 10950 |
-
"dev": true
|
| 10951 |
-
},
|
| 10952 |
-
"ms": {
|
| 10953 |
-
"version": "2.0.0",
|
| 10954 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 10955 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 10956 |
-
"dev": true
|
| 10957 |
-
},
|
| 10958 |
-
"setprototypeof": {
|
| 10959 |
-
"version": "1.1.0",
|
| 10960 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
|
| 10961 |
-
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
|
| 10962 |
-
"dev": true
|
| 10963 |
-
},
|
| 10964 |
-
"statuses": {
|
| 10965 |
-
"version": "1.4.0",
|
| 10966 |
-
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
|
| 10967 |
-
"integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
|
| 10968 |
-
"dev": true
|
| 10969 |
-
}
|
| 10970 |
-
}
|
| 10971 |
-
},
|
| 10972 |
-
"serialize-javascript": {
|
| 10973 |
-
"version": "6.0.0",
|
| 10974 |
-
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
|
| 10975 |
-
"integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
|
| 10976 |
-
"dev": true,
|
| 10977 |
-
"requires": {
|
| 10978 |
-
"randombytes": "^2.1.0"
|
| 10979 |
-
}
|
| 10980 |
-
},
|
| 10981 |
-
"serve-index": {
|
| 10982 |
-
"version": "1.9.1",
|
| 10983 |
-
"resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz",
|
| 10984 |
-
"integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=",
|
| 10985 |
-
"dev": true,
|
| 10986 |
-
"requires": {
|
| 10987 |
-
"accepts": "~1.3.4",
|
| 10988 |
-
"batch": "0.6.1",
|
| 10989 |
-
"debug": "2.6.9",
|
| 10990 |
-
"escape-html": "~1.0.3",
|
| 10991 |
-
"http-errors": "~1.6.2",
|
| 10992 |
-
"mime-types": "~2.1.17",
|
| 10993 |
-
"parseurl": "~1.3.2"
|
| 10994 |
-
},
|
| 10995 |
-
"dependencies": {
|
| 10996 |
-
"debug": {
|
| 10997 |
-
"version": "2.6.9",
|
| 10998 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 10999 |
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 11000 |
-
"dev": true,
|
| 11001 |
-
"requires": {
|
| 11002 |
-
"ms": "2.0.0"
|
| 11003 |
-
}
|
| 11004 |
-
},
|
| 11005 |
-
"http-errors": {
|
| 11006 |
-
"version": "1.6.3",
|
| 11007 |
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
|
| 11008 |
-
"integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
|
| 11009 |
-
"dev": true,
|
| 11010 |
-
"requires": {
|
| 11011 |
-
"depd": "~1.1.2",
|
| 11012 |
-
"inherits": "2.0.3",
|
| 11013 |
-
"setprototypeof": "1.1.0",
|
| 11014 |
-
"statuses": ">= 1.4.0 < 2"
|
| 11015 |
-
}
|
| 11016 |
-
},
|
| 11017 |
-
"inherits": {
|
| 11018 |
-
"version": "2.0.3",
|
| 11019 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
| 11020 |
-
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
| 11021 |
-
"dev": true
|
| 11022 |
-
},
|
| 11023 |
-
"ms": {
|
| 11024 |
-
"version": "2.0.0",
|
| 11025 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 11026 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 11027 |
-
"dev": true
|
| 11028 |
-
},
|
| 11029 |
-
"setprototypeof": {
|
| 11030 |
-
"version": "1.1.0",
|
| 11031 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
|
| 11032 |
-
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
|
| 11033 |
-
"dev": true
|
| 11034 |
-
}
|
| 11035 |
-
}
|
| 11036 |
-
},
|
| 11037 |
-
"serve-static": {
|
| 11038 |
-
"version": "1.13.2",
|
| 11039 |
-
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
|
| 11040 |
-
"integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
|
| 11041 |
-
"dev": true,
|
| 11042 |
-
"requires": {
|
| 11043 |
-
"encodeurl": "~1.0.2",
|
| 11044 |
-
"escape-html": "~1.0.3",
|
| 11045 |
-
"parseurl": "~1.3.2",
|
| 11046 |
-
"send": "0.16.2"
|
| 11047 |
-
}
|
| 11048 |
-
},
|
| 11049 |
-
"server-destroy": {
|
| 11050 |
-
"version": "1.0.1",
|
| 11051 |
-
"resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz",
|
| 11052 |
-
"integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=",
|
| 11053 |
-
"dev": true
|
| 11054 |
-
},
|
| 11055 |
-
"set-blocking": {
|
| 11056 |
-
"version": "2.0.0",
|
| 11057 |
-
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
|
| 11058 |
-
"integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc="
|
| 11059 |
-
},
|
| 11060 |
-
"setimmediate": {
|
| 11061 |
-
"version": "1.0.5",
|
| 11062 |
-
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
|
| 11063 |
-
"integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
|
| 11064 |
-
"dev": true
|
| 11065 |
-
},
|
| 11066 |
-
"setprototypeof": {
|
| 11067 |
-
"version": "1.1.1",
|
| 11068 |
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
|
| 11069 |
-
"integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==",
|
| 11070 |
-
"dev": true
|
| 11071 |
-
},
|
| 11072 |
-
"sha.js": {
|
| 11073 |
-
"version": "2.4.11",
|
| 11074 |
-
"resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
|
| 11075 |
-
"integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
|
| 11076 |
-
"dev": true,
|
| 11077 |
-
"requires": {
|
| 11078 |
-
"inherits": "^2.0.1",
|
| 11079 |
-
"safe-buffer": "^5.0.1"
|
| 11080 |
-
}
|
| 11081 |
-
},
|
| 11082 |
-
"shallow-clone": {
|
| 11083 |
-
"version": "3.0.1",
|
| 11084 |
-
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
|
| 11085 |
-
"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
|
| 11086 |
-
"dev": true,
|
| 11087 |
-
"requires": {
|
| 11088 |
-
"kind-of": "^6.0.2"
|
| 11089 |
-
}
|
| 11090 |
-
},
|
| 11091 |
-
"shebang-command": {
|
| 11092 |
-
"version": "2.0.0",
|
| 11093 |
-
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
| 11094 |
-
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
| 11095 |
-
"dev": true,
|
| 11096 |
-
"requires": {
|
| 11097 |
-
"shebang-regex": "^3.0.0"
|
| 11098 |
-
}
|
| 11099 |
-
},
|
| 11100 |
-
"shebang-regex": {
|
| 11101 |
-
"version": "3.0.0",
|
| 11102 |
-
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
| 11103 |
-
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
| 11104 |
-
"dev": true
|
| 11105 |
-
},
|
| 11106 |
-
"shellwords": {
|
| 11107 |
-
"version": "0.1.1",
|
| 11108 |
-
"resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
|
| 11109 |
-
"integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
|
| 11110 |
-
"dev": true
|
| 11111 |
-
},
|
| 11112 |
-
"showdown": {
|
| 11113 |
-
"version": "1.9.1",
|
| 11114 |
-
"resolved": "https://registry.npmjs.org/showdown/-/showdown-1.9.1.tgz",
|
| 11115 |
-
"integrity": "sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==",
|
| 11116 |
-
"requires": {
|
| 11117 |
-
"yargs": "^14.2"
|
| 11118 |
-
}
|
| 11119 |
-
},
|
| 11120 |
-
"side-channel": {
|
| 11121 |
-
"version": "1.0.4",
|
| 11122 |
-
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
|
| 11123 |
-
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
|
| 11124 |
-
"requires": {
|
| 11125 |
-
"call-bind": "^1.0.0",
|
| 11126 |
-
"get-intrinsic": "^1.0.2",
|
| 11127 |
-
"object-inspect": "^1.9.0"
|
| 11128 |
-
}
|
| 11129 |
-
},
|
| 11130 |
-
"signal-exit": {
|
| 11131 |
-
"version": "3.0.5",
|
| 11132 |
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz",
|
| 11133 |
-
"integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==",
|
| 11134 |
-
"dev": true
|
| 11135 |
-
},
|
| 11136 |
-
"simple-html-tokenizer": {
|
| 11137 |
-
"version": "0.5.11",
|
| 11138 |
-
"resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz",
|
| 11139 |
-
"integrity": "sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og=="
|
| 11140 |
-
},
|
| 11141 |
-
"simple-swizzle": {
|
| 11142 |
-
"version": "0.2.2",
|
| 11143 |
-
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
|
| 11144 |
-
"integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
|
| 11145 |
-
"requires": {
|
| 11146 |
-
"is-arrayish": "^0.3.1"
|
| 11147 |
-
},
|
| 11148 |
-
"dependencies": {
|
| 11149 |
-
"is-arrayish": {
|
| 11150 |
-
"version": "0.3.2",
|
| 11151 |
-
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
|
| 11152 |
-
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
|
| 11153 |
-
}
|
| 11154 |
-
}
|
| 11155 |
-
},
|
| 11156 |
-
"slash": {
|
| 11157 |
-
"version": "3.0.0",
|
| 11158 |
-
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
| 11159 |
-
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
| 11160 |
-
"dev": true
|
| 11161 |
-
},
|
| 11162 |
-
"slice-ansi": {
|
| 11163 |
-
"version": "5.0.0",
|
| 11164 |
-
"resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz",
|
| 11165 |
-
"integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==",
|
| 11166 |
-
"dev": true,
|
| 11167 |
-
"requires": {
|
| 11168 |
-
"ansi-styles": "^6.0.0",
|
| 11169 |
-
"is-fullwidth-code-point": "^4.0.0"
|
| 11170 |
-
},
|
| 11171 |
-
"dependencies": {
|
| 11172 |
-
"ansi-styles": {
|
| 11173 |
-
"version": "6.1.0",
|
| 11174 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz",
|
| 11175 |
-
"integrity": "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==",
|
| 11176 |
-
"dev": true
|
| 11177 |
-
},
|
| 11178 |
-
"is-fullwidth-code-point": {
|
| 11179 |
-
"version": "4.0.0",
|
| 11180 |
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
|
| 11181 |
-
"integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
|
| 11182 |
-
"dev": true
|
| 11183 |
-
}
|
| 11184 |
-
}
|
| 11185 |
-
},
|
| 11186 |
-
"socket.io": {
|
| 11187 |
-
"version": "2.4.0",
|
| 11188 |
-
"resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.4.0.tgz",
|
| 11189 |
-
"integrity": "sha512-9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ==",
|
| 11190 |
-
"dev": true,
|
| 11191 |
-
"requires": {
|
| 11192 |
-
"debug": "~4.1.0",
|
| 11193 |
-
"engine.io": "~3.5.0",
|
| 11194 |
-
"has-binary2": "~1.0.2",
|
| 11195 |
-
"socket.io-adapter": "~1.1.0",
|
| 11196 |
-
"socket.io-client": "2.4.0",
|
| 11197 |
-
"socket.io-parser": "~3.4.0"
|
| 11198 |
-
},
|
| 11199 |
-
"dependencies": {
|
| 11200 |
-
"component-emitter": {
|
| 11201 |
-
"version": "1.2.1",
|
| 11202 |
-
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
|
| 11203 |
-
"integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
|
| 11204 |
-
"dev": true
|
| 11205 |
-
},
|
| 11206 |
-
"debug": {
|
| 11207 |
-
"version": "4.1.1",
|
| 11208 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
| 11209 |
-
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
|
| 11210 |
-
"dev": true,
|
| 11211 |
-
"requires": {
|
| 11212 |
-
"ms": "^2.1.1"
|
| 11213 |
-
}
|
| 11214 |
-
},
|
| 11215 |
-
"socket.io-parser": {
|
| 11216 |
-
"version": "3.4.1",
|
| 11217 |
-
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.4.1.tgz",
|
| 11218 |
-
"integrity": "sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==",
|
| 11219 |
-
"dev": true,
|
| 11220 |
-
"requires": {
|
| 11221 |
-
"component-emitter": "1.2.1",
|
| 11222 |
-
"debug": "~4.1.0",
|
| 11223 |
-
"isarray": "2.0.1"
|
| 11224 |
-
}
|
| 11225 |
-
}
|
| 11226 |
-
}
|
| 11227 |
-
},
|
| 11228 |
-
"socket.io-adapter": {
|
| 11229 |
-
"version": "1.1.2",
|
| 11230 |
-
"resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz",
|
| 11231 |
-
"integrity": "sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==",
|
| 11232 |
-
"dev": true
|
| 11233 |
-
},
|
| 11234 |
-
"socket.io-client": {
|
| 11235 |
-
"version": "2.4.0",
|
| 11236 |
-
"resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.4.0.tgz",
|
| 11237 |
-
"integrity": "sha512-M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==",
|
| 11238 |
-
"dev": true,
|
| 11239 |
-
"requires": {
|
| 11240 |
-
"backo2": "1.0.2",
|
| 11241 |
-
"component-bind": "1.0.0",
|
| 11242 |
-
"component-emitter": "~1.3.0",
|
| 11243 |
-
"debug": "~3.1.0",
|
| 11244 |
-
"engine.io-client": "~3.5.0",
|
| 11245 |
-
"has-binary2": "~1.0.2",
|
| 11246 |
-
"indexof": "0.0.1",
|
| 11247 |
-
"parseqs": "0.0.6",
|
| 11248 |
-
"parseuri": "0.0.6",
|
| 11249 |
-
"socket.io-parser": "~3.3.0",
|
| 11250 |
-
"to-array": "0.1.4"
|
| 11251 |
-
},
|
| 11252 |
-
"dependencies": {
|
| 11253 |
-
"debug": {
|
| 11254 |
-
"version": "3.1.0",
|
| 11255 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
| 11256 |
-
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
| 11257 |
-
"dev": true,
|
| 11258 |
-
"requires": {
|
| 11259 |
-
"ms": "2.0.0"
|
| 11260 |
-
}
|
| 11261 |
-
},
|
| 11262 |
-
"ms": {
|
| 11263 |
-
"version": "2.0.0",
|
| 11264 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 11265 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 11266 |
-
"dev": true
|
| 11267 |
-
}
|
| 11268 |
-
}
|
| 11269 |
-
},
|
| 11270 |
-
"socket.io-parser": {
|
| 11271 |
-
"version": "3.3.2",
|
| 11272 |
-
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.2.tgz",
|
| 11273 |
-
"integrity": "sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==",
|
| 11274 |
-
"dev": true,
|
| 11275 |
-
"requires": {
|
| 11276 |
-
"component-emitter": "~1.3.0",
|
| 11277 |
-
"debug": "~3.1.0",
|
| 11278 |
-
"isarray": "2.0.1"
|
| 11279 |
-
},
|
| 11280 |
-
"dependencies": {
|
| 11281 |
-
"debug": {
|
| 11282 |
-
"version": "3.1.0",
|
| 11283 |
-
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
| 11284 |
-
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
| 11285 |
-
"dev": true,
|
| 11286 |
-
"requires": {
|
| 11287 |
-
"ms": "2.0.0"
|
| 11288 |
-
}
|
| 11289 |
-
},
|
| 11290 |
-
"ms": {
|
| 11291 |
-
"version": "2.0.0",
|
| 11292 |
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 11293 |
-
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
| 11294 |
-
"dev": true
|
| 11295 |
-
}
|
| 11296 |
-
}
|
| 11297 |
-
},
|
| 11298 |
-
"sockjs": {
|
| 11299 |
-
"version": "0.3.21",
|
| 11300 |
-
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz",
|
| 11301 |
-
"integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==",
|
| 11302 |
-
"dev": true,
|
| 11303 |
-
"requires": {
|
| 11304 |
-
"faye-websocket": "^0.11.3",
|
| 11305 |
-
"uuid": "^3.4.0",
|
| 11306 |
-
"websocket-driver": "^0.7.4"
|
| 11307 |
-
},
|
| 11308 |
-
"dependencies": {
|
| 11309 |
-
"uuid": {
|
| 11310 |
-
"version": "3.4.0",
|
| 11311 |
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
|
| 11312 |
-
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
|
| 11313 |
-
"dev": true
|
| 11314 |
-
}
|
| 11315 |
-
}
|
| 11316 |
-
},
|
| 11317 |
-
"source-list-map": {
|
| 11318 |
-
"version": "2.0.1",
|
| 11319 |
-
"resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
|
| 11320 |
-
"integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
|
| 11321 |
-
"dev": true
|
| 11322 |
-
},
|
| 11323 |
-
"source-map": {
|
| 11324 |
-
"version": "0.5.7",
|
| 11325 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
| 11326 |
-
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
|
| 11327 |
-
},
|
| 11328 |
-
"source-map-js": {
|
| 11329 |
-
"version": "0.6.2",
|
| 11330 |
-
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz",
|
| 11331 |
-
"integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="
|
| 11332 |
-
},
|
| 11333 |
-
"source-map-support": {
|
| 11334 |
-
"version": "0.5.20",
|
| 11335 |
-
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz",
|
| 11336 |
-
"integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==",
|
| 11337 |
-
"dev": true,
|
| 11338 |
-
"requires": {
|
| 11339 |
-
"buffer-from": "^1.0.0",
|
| 11340 |
-
"source-map": "^0.6.0"
|
| 11341 |
-
},
|
| 11342 |
-
"dependencies": {
|
| 11343 |
-
"source-map": {
|
| 11344 |
-
"version": "0.6.1",
|
| 11345 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 11346 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 11347 |
-
"dev": true
|
| 11348 |
-
}
|
| 11349 |
-
}
|
| 11350 |
-
},
|
| 11351 |
-
"spdy": {
|
| 11352 |
-
"version": "4.0.2",
|
| 11353 |
-
"resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
|
| 11354 |
-
"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
|
| 11355 |
-
"dev": true,
|
| 11356 |
-
"requires": {
|
| 11357 |
-
"debug": "^4.1.0",
|
| 11358 |
-
"handle-thing": "^2.0.0",
|
| 11359 |
-
"http-deceiver": "^1.2.7",
|
| 11360 |
-
"select-hose": "^2.0.0",
|
| 11361 |
-
"spdy-transport": "^3.0.0"
|
| 11362 |
-
}
|
| 11363 |
-
},
|
| 11364 |
-
"spdy-transport": {
|
| 11365 |
-
"version": "3.0.0",
|
| 11366 |
-
"resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
|
| 11367 |
-
"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
|
| 11368 |
-
"dev": true,
|
| 11369 |
-
"requires": {
|
| 11370 |
-
"debug": "^4.1.0",
|
| 11371 |
-
"detect-node": "^2.0.4",
|
| 11372 |
-
"hpack.js": "^2.1.6",
|
| 11373 |
-
"obuf": "^1.1.2",
|
| 11374 |
-
"readable-stream": "^3.0.6",
|
| 11375 |
-
"wbuf": "^1.7.3"
|
| 11376 |
-
},
|
| 11377 |
-
"dependencies": {
|
| 11378 |
-
"readable-stream": {
|
| 11379 |
-
"version": "3.6.0",
|
| 11380 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
| 11381 |
-
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
|
| 11382 |
-
"dev": true,
|
| 11383 |
-
"requires": {
|
| 11384 |
-
"inherits": "^2.0.3",
|
| 11385 |
-
"string_decoder": "^1.1.1",
|
| 11386 |
-
"util-deprecate": "^1.0.1"
|
| 11387 |
-
}
|
| 11388 |
-
}
|
| 11389 |
-
}
|
| 11390 |
-
},
|
| 11391 |
-
"sprintf-js": {
|
| 11392 |
-
"version": "1.1.2",
|
| 11393 |
-
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
|
| 11394 |
-
"integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug=="
|
| 11395 |
-
},
|
| 11396 |
-
"stable": {
|
| 11397 |
-
"version": "0.1.8",
|
| 11398 |
-
"resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
|
| 11399 |
-
"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
|
| 11400 |
-
"dev": true
|
| 11401 |
-
},
|
| 11402 |
-
"statuses": {
|
| 11403 |
-
"version": "1.5.0",
|
| 11404 |
-
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
|
| 11405 |
-
"integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
|
| 11406 |
-
"dev": true
|
| 11407 |
-
},
|
| 11408 |
-
"std-env": {
|
| 11409 |
-
"version": "3.0.1",
|
| 11410 |
-
"resolved": "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz",
|
| 11411 |
-
"integrity": "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==",
|
| 11412 |
-
"dev": true
|
| 11413 |
-
},
|
| 11414 |
-
"stream-browserify": {
|
| 11415 |
-
"version": "2.0.2",
|
| 11416 |
-
"resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
|
| 11417 |
-
"integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
|
| 11418 |
-
"dev": true,
|
| 11419 |
-
"requires": {
|
| 11420 |
-
"inherits": "~2.0.1",
|
| 11421 |
-
"readable-stream": "^2.0.2"
|
| 11422 |
-
}
|
| 11423 |
-
},
|
| 11424 |
-
"stream-http": {
|
| 11425 |
-
"version": "2.8.3",
|
| 11426 |
-
"resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
|
| 11427 |
-
"integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
|
| 11428 |
-
"dev": true,
|
| 11429 |
-
"requires": {
|
| 11430 |
-
"builtin-status-codes": "^3.0.0",
|
| 11431 |
-
"inherits": "^2.0.1",
|
| 11432 |
-
"readable-stream": "^2.3.6",
|
| 11433 |
-
"to-arraybuffer": "^1.0.0",
|
| 11434 |
-
"xtend": "^4.0.0"
|
| 11435 |
-
}
|
| 11436 |
-
},
|
| 11437 |
-
"stream-throttle": {
|
| 11438 |
-
"version": "0.1.3",
|
| 11439 |
-
"resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz",
|
| 11440 |
-
"integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=",
|
| 11441 |
-
"dev": true,
|
| 11442 |
-
"requires": {
|
| 11443 |
-
"commander": "^2.2.0",
|
| 11444 |
-
"limiter": "^1.0.5"
|
| 11445 |
-
}
|
| 11446 |
-
},
|
| 11447 |
-
"string-argv": {
|
| 11448 |
-
"version": "0.3.1",
|
| 11449 |
-
"resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz",
|
| 11450 |
-
"integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==",
|
| 11451 |
-
"dev": true
|
| 11452 |
-
},
|
| 11453 |
-
"string-width": {
|
| 11454 |
-
"version": "3.1.0",
|
| 11455 |
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
|
| 11456 |
-
"integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
|
| 11457 |
-
"requires": {
|
| 11458 |
-
"emoji-regex": "^7.0.1",
|
| 11459 |
-
"is-fullwidth-code-point": "^2.0.0",
|
| 11460 |
-
"strip-ansi": "^5.1.0"
|
| 11461 |
-
}
|
| 11462 |
-
},
|
| 11463 |
-
"string.prototype.matchall": {
|
| 11464 |
-
"version": "4.0.6",
|
| 11465 |
-
"resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz",
|
| 11466 |
-
"integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==",
|
| 11467 |
-
"dev": true,
|
| 11468 |
-
"requires": {
|
| 11469 |
-
"call-bind": "^1.0.2",
|
| 11470 |
-
"define-properties": "^1.1.3",
|
| 11471 |
-
"es-abstract": "^1.19.1",
|
| 11472 |
-
"get-intrinsic": "^1.1.1",
|
| 11473 |
-
"has-symbols": "^1.0.2",
|
| 11474 |
-
"internal-slot": "^1.0.3",
|
| 11475 |
-
"regexp.prototype.flags": "^1.3.1",
|
| 11476 |
-
"side-channel": "^1.0.4"
|
| 11477 |
-
}
|
| 11478 |
-
},
|
| 11479 |
-
"string.prototype.trimend": {
|
| 11480 |
-
"version": "1.0.4",
|
| 11481 |
-
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz",
|
| 11482 |
-
"integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==",
|
| 11483 |
-
"requires": {
|
| 11484 |
-
"call-bind": "^1.0.2",
|
| 11485 |
-
"define-properties": "^1.1.3"
|
| 11486 |
-
}
|
| 11487 |
-
},
|
| 11488 |
-
"string.prototype.trimstart": {
|
| 11489 |
-
"version": "1.0.4",
|
| 11490 |
-
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz",
|
| 11491 |
-
"integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==",
|
| 11492 |
-
"requires": {
|
| 11493 |
-
"call-bind": "^1.0.2",
|
| 11494 |
-
"define-properties": "^1.1.3"
|
| 11495 |
-
}
|
| 11496 |
-
},
|
| 11497 |
-
"string_decoder": {
|
| 11498 |
-
"version": "1.3.0",
|
| 11499 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
| 11500 |
-
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
| 11501 |
-
"dev": true,
|
| 11502 |
-
"requires": {
|
| 11503 |
-
"safe-buffer": "~5.2.0"
|
| 11504 |
-
}
|
| 11505 |
-
},
|
| 11506 |
-
"strip-ansi": {
|
| 11507 |
-
"version": "5.2.0",
|
| 11508 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
| 11509 |
-
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
| 11510 |
-
"requires": {
|
| 11511 |
-
"ansi-regex": "^4.1.0"
|
| 11512 |
-
}
|
| 11513 |
-
},
|
| 11514 |
-
"strip-final-newline": {
|
| 11515 |
-
"version": "2.0.0",
|
| 11516 |
-
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
|
| 11517 |
-
"integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
|
| 11518 |
-
"dev": true
|
| 11519 |
-
},
|
| 11520 |
-
"strip-json-comments": {
|
| 11521 |
-
"version": "3.1.1",
|
| 11522 |
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
| 11523 |
-
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
| 11524 |
-
"dev": true
|
| 11525 |
-
},
|
| 11526 |
-
"style-loader": {
|
| 11527 |
-
"version": "2.0.0",
|
| 11528 |
-
"resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz",
|
| 11529 |
-
"integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==",
|
| 11530 |
-
"dev": true,
|
| 11531 |
-
"requires": {
|
| 11532 |
-
"loader-utils": "^2.0.0",
|
| 11533 |
-
"schema-utils": "^3.0.0"
|
| 11534 |
-
},
|
| 11535 |
-
"dependencies": {
|
| 11536 |
-
"loader-utils": {
|
| 11537 |
-
"version": "2.0.2",
|
| 11538 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz",
|
| 11539 |
-
"integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==",
|
| 11540 |
-
"dev": true,
|
| 11541 |
-
"requires": {
|
| 11542 |
-
"big.js": "^5.2.2",
|
| 11543 |
-
"emojis-list": "^3.0.0",
|
| 11544 |
-
"json5": "^2.1.2"
|
| 11545 |
-
}
|
| 11546 |
-
},
|
| 11547 |
-
"schema-utils": {
|
| 11548 |
-
"version": "3.1.1",
|
| 11549 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 11550 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 11551 |
-
"dev": true,
|
| 11552 |
-
"requires": {
|
| 11553 |
-
"@types/json-schema": "^7.0.8",
|
| 11554 |
-
"ajv": "^6.12.5",
|
| 11555 |
-
"ajv-keywords": "^3.5.2"
|
| 11556 |
-
}
|
| 11557 |
-
}
|
| 11558 |
-
}
|
| 11559 |
-
},
|
| 11560 |
-
"style-value-types": {
|
| 11561 |
-
"version": "4.1.4",
|
| 11562 |
-
"resolved": "https://registry.npmjs.org/style-value-types/-/style-value-types-4.1.4.tgz",
|
| 11563 |
-
"integrity": "sha512-LCJL6tB+vPSUoxgUBt9juXIlNJHtBMy8jkXzUJSBzeHWdBu6lhzHqCvLVkXFGsFIlNa2ln1sQHya/gzaFmB2Lg==",
|
| 11564 |
-
"requires": {
|
| 11565 |
-
"hey-listen": "^1.0.8",
|
| 11566 |
-
"tslib": "^2.1.0"
|
| 11567 |
-
}
|
| 11568 |
-
},
|
| 11569 |
-
"stylehacks": {
|
| 11570 |
-
"version": "5.0.1",
|
| 11571 |
-
"resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz",
|
| 11572 |
-
"integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==",
|
| 11573 |
-
"dev": true,
|
| 11574 |
-
"requires": {
|
| 11575 |
-
"browserslist": "^4.16.0",
|
| 11576 |
-
"postcss-selector-parser": "^6.0.4"
|
| 11577 |
-
}
|
| 11578 |
-
},
|
| 11579 |
-
"stylis": {
|
| 11580 |
-
"version": "4.0.10",
|
| 11581 |
-
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.10.tgz",
|
| 11582 |
-
"integrity": "sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg=="
|
| 11583 |
-
},
|
| 11584 |
-
"supports-color": {
|
| 11585 |
-
"version": "5.5.0",
|
| 11586 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
| 11587 |
-
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
| 11588 |
-
"requires": {
|
| 11589 |
-
"has-flag": "^3.0.0"
|
| 11590 |
-
}
|
| 11591 |
-
},
|
| 11592 |
-
"svgo": {
|
| 11593 |
-
"version": "2.8.0",
|
| 11594 |
-
"resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz",
|
| 11595 |
-
"integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==",
|
| 11596 |
-
"dev": true,
|
| 11597 |
-
"requires": {
|
| 11598 |
-
"@trysound/sax": "0.2.0",
|
| 11599 |
-
"commander": "^7.2.0",
|
| 11600 |
-
"css-select": "^4.1.3",
|
| 11601 |
-
"css-tree": "^1.1.3",
|
| 11602 |
-
"csso": "^4.2.0",
|
| 11603 |
-
"picocolors": "^1.0.0",
|
| 11604 |
-
"stable": "^0.1.8"
|
| 11605 |
-
},
|
| 11606 |
-
"dependencies": {
|
| 11607 |
-
"commander": {
|
| 11608 |
-
"version": "7.2.0",
|
| 11609 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
|
| 11610 |
-
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
|
| 11611 |
-
"dev": true
|
| 11612 |
-
}
|
| 11613 |
-
}
|
| 11614 |
-
},
|
| 11615 |
-
"symbol-observable": {
|
| 11616 |
-
"version": "1.0.1",
|
| 11617 |
-
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz",
|
| 11618 |
-
"integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=",
|
| 11619 |
-
"dev": true
|
| 11620 |
-
},
|
| 11621 |
-
"tailwind-config-viewer": {
|
| 11622 |
-
"version": "1.6.2",
|
| 11623 |
-
"resolved": "https://registry.npmjs.org/tailwind-config-viewer/-/tailwind-config-viewer-1.6.2.tgz",
|
| 11624 |
-
"integrity": "sha512-GEysLLUkHF/CW7idElDIsCUWwNfE5v4SpecNv5Z10KGtX8ez2ZUlHep/bJZ4E/Hk+IqJQt2hChFx43VkDN7WtQ==",
|
| 11625 |
-
"dev": true,
|
| 11626 |
-
"requires": {
|
| 11627 |
-
"@koa/router": "^9.0.1",
|
| 11628 |
-
"commander": "^6.0.0",
|
| 11629 |
-
"fs-extra": "^9.0.1",
|
| 11630 |
-
"koa": "^2.12.0",
|
| 11631 |
-
"koa-static": "^5.0.0",
|
| 11632 |
-
"open": "^7.0.4",
|
| 11633 |
-
"portfinder": "^1.0.26",
|
| 11634 |
-
"replace-in-file": "^6.1.0"
|
| 11635 |
-
},
|
| 11636 |
-
"dependencies": {
|
| 11637 |
-
"commander": {
|
| 11638 |
-
"version": "6.2.1",
|
| 11639 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
|
| 11640 |
-
"integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
|
| 11641 |
-
"dev": true
|
| 11642 |
-
}
|
| 11643 |
-
}
|
| 11644 |
-
},
|
| 11645 |
-
"tailwindcss": {
|
| 11646 |
-
"version": "2.2.19",
|
| 11647 |
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.19.tgz",
|
| 11648 |
-
"integrity": "sha512-6Ui7JSVtXadtTUo2NtkBBacobzWiQYVjYW0ZnKaP9S1ZCKQ0w7KVNz+YSDI/j7O7KCMHbOkz94ZMQhbT9pOqjw==",
|
| 11649 |
-
"requires": {
|
| 11650 |
-
"arg": "^5.0.1",
|
| 11651 |
-
"bytes": "^3.0.0",
|
| 11652 |
-
"chalk": "^4.1.2",
|
| 11653 |
-
"chokidar": "^3.5.2",
|
| 11654 |
-
"color": "^4.0.1",
|
| 11655 |
-
"cosmiconfig": "^7.0.1",
|
| 11656 |
-
"detective": "^5.2.0",
|
| 11657 |
-
"didyoumean": "^1.2.2",
|
| 11658 |
-
"dlv": "^1.1.3",
|
| 11659 |
-
"fast-glob": "^3.2.7",
|
| 11660 |
-
"fs-extra": "^10.0.0",
|
| 11661 |
-
"glob-parent": "^6.0.1",
|
| 11662 |
-
"html-tags": "^3.1.0",
|
| 11663 |
-
"is-color-stop": "^1.1.0",
|
| 11664 |
-
"is-glob": "^4.0.1",
|
| 11665 |
-
"lodash": "^4.17.21",
|
| 11666 |
-
"lodash.topath": "^4.5.2",
|
| 11667 |
-
"modern-normalize": "^1.1.0",
|
| 11668 |
-
"node-emoji": "^1.11.0",
|
| 11669 |
-
"normalize-path": "^3.0.0",
|
| 11670 |
-
"object-hash": "^2.2.0",
|
| 11671 |
-
"postcss-js": "^3.0.3",
|
| 11672 |
-
"postcss-load-config": "^3.1.0",
|
| 11673 |
-
"postcss-nested": "5.0.6",
|
| 11674 |
-
"postcss-selector-parser": "^6.0.6",
|
| 11675 |
-
"postcss-value-parser": "^4.1.0",
|
| 11676 |
-
"pretty-hrtime": "^1.0.3",
|
| 11677 |
-
"purgecss": "^4.0.3",
|
| 11678 |
-
"quick-lru": "^5.1.1",
|
| 11679 |
-
"reduce-css-calc": "^2.1.8",
|
| 11680 |
-
"resolve": "^1.20.0",
|
| 11681 |
-
"tmp": "^0.2.1"
|
| 11682 |
-
},
|
| 11683 |
-
"dependencies": {
|
| 11684 |
-
"ansi-styles": {
|
| 11685 |
-
"version": "4.3.0",
|
| 11686 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 11687 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 11688 |
-
"requires": {
|
| 11689 |
-
"color-convert": "^2.0.1"
|
| 11690 |
-
}
|
| 11691 |
-
},
|
| 11692 |
-
"chalk": {
|
| 11693 |
-
"version": "4.1.2",
|
| 11694 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
| 11695 |
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
| 11696 |
-
"requires": {
|
| 11697 |
-
"ansi-styles": "^4.1.0",
|
| 11698 |
-
"supports-color": "^7.1.0"
|
| 11699 |
-
}
|
| 11700 |
-
},
|
| 11701 |
-
"color-convert": {
|
| 11702 |
-
"version": "2.0.1",
|
| 11703 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 11704 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 11705 |
-
"requires": {
|
| 11706 |
-
"color-name": "~1.1.4"
|
| 11707 |
-
}
|
| 11708 |
-
},
|
| 11709 |
-
"color-name": {
|
| 11710 |
-
"version": "1.1.4",
|
| 11711 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 11712 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
| 11713 |
-
},
|
| 11714 |
-
"cosmiconfig": {
|
| 11715 |
-
"version": "7.0.1",
|
| 11716 |
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
|
| 11717 |
-
"integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
|
| 11718 |
-
"requires": {
|
| 11719 |
-
"@types/parse-json": "^4.0.0",
|
| 11720 |
-
"import-fresh": "^3.2.1",
|
| 11721 |
-
"parse-json": "^5.0.0",
|
| 11722 |
-
"path-type": "^4.0.0",
|
| 11723 |
-
"yaml": "^1.10.0"
|
| 11724 |
-
}
|
| 11725 |
-
},
|
| 11726 |
-
"fs-extra": {
|
| 11727 |
-
"version": "10.0.0",
|
| 11728 |
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz",
|
| 11729 |
-
"integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==",
|
| 11730 |
-
"requires": {
|
| 11731 |
-
"graceful-fs": "^4.2.0",
|
| 11732 |
-
"jsonfile": "^6.0.1",
|
| 11733 |
-
"universalify": "^2.0.0"
|
| 11734 |
-
}
|
| 11735 |
-
},
|
| 11736 |
-
"has-flag": {
|
| 11737 |
-
"version": "4.0.0",
|
| 11738 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 11739 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
| 11740 |
-
},
|
| 11741 |
-
"supports-color": {
|
| 11742 |
-
"version": "7.2.0",
|
| 11743 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
| 11744 |
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
| 11745 |
-
"requires": {
|
| 11746 |
-
"has-flag": "^4.0.0"
|
| 11747 |
-
}
|
| 11748 |
-
}
|
| 11749 |
-
}
|
| 11750 |
-
},
|
| 11751 |
-
"tannin": {
|
| 11752 |
-
"version": "1.2.0",
|
| 11753 |
-
"resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz",
|
| 11754 |
-
"integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==",
|
| 11755 |
-
"requires": {
|
| 11756 |
-
"@tannin/plural-forms": "^1.1.0"
|
| 11757 |
-
}
|
| 11758 |
-
},
|
| 11759 |
-
"tapable": {
|
| 11760 |
-
"version": "2.2.1",
|
| 11761 |
-
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
|
| 11762 |
-
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
|
| 11763 |
-
"dev": true
|
| 11764 |
-
},
|
| 11765 |
-
"terser": {
|
| 11766 |
-
"version": "5.10.0",
|
| 11767 |
-
"resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz",
|
| 11768 |
-
"integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==",
|
| 11769 |
-
"dev": true,
|
| 11770 |
-
"requires": {
|
| 11771 |
-
"commander": "^2.20.0",
|
| 11772 |
-
"source-map": "~0.7.2",
|
| 11773 |
-
"source-map-support": "~0.5.20"
|
| 11774 |
-
},
|
| 11775 |
-
"dependencies": {
|
| 11776 |
-
"source-map": {
|
| 11777 |
-
"version": "0.7.3",
|
| 11778 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
|
| 11779 |
-
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
|
| 11780 |
-
"dev": true
|
| 11781 |
-
}
|
| 11782 |
-
}
|
| 11783 |
-
},
|
| 11784 |
-
"terser-webpack-plugin": {
|
| 11785 |
-
"version": "5.2.5",
|
| 11786 |
-
"resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz",
|
| 11787 |
-
"integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==",
|
| 11788 |
-
"dev": true,
|
| 11789 |
-
"requires": {
|
| 11790 |
-
"jest-worker": "^27.0.6",
|
| 11791 |
-
"schema-utils": "^3.1.1",
|
| 11792 |
-
"serialize-javascript": "^6.0.0",
|
| 11793 |
-
"source-map": "^0.6.1",
|
| 11794 |
-
"terser": "^5.7.2"
|
| 11795 |
-
},
|
| 11796 |
-
"dependencies": {
|
| 11797 |
-
"schema-utils": {
|
| 11798 |
-
"version": "3.1.1",
|
| 11799 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 11800 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 11801 |
-
"dev": true,
|
| 11802 |
-
"requires": {
|
| 11803 |
-
"@types/json-schema": "^7.0.8",
|
| 11804 |
-
"ajv": "^6.12.5",
|
| 11805 |
-
"ajv-keywords": "^3.5.2"
|
| 11806 |
-
}
|
| 11807 |
-
},
|
| 11808 |
-
"source-map": {
|
| 11809 |
-
"version": "0.6.1",
|
| 11810 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 11811 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 11812 |
-
"dev": true
|
| 11813 |
-
}
|
| 11814 |
-
}
|
| 11815 |
-
},
|
| 11816 |
-
"text-table": {
|
| 11817 |
-
"version": "0.2.0",
|
| 11818 |
-
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
|
| 11819 |
-
"integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
|
| 11820 |
-
"dev": true
|
| 11821 |
-
},
|
| 11822 |
-
"tfunk": {
|
| 11823 |
-
"version": "4.0.0",
|
| 11824 |
-
"resolved": "https://registry.npmjs.org/tfunk/-/tfunk-4.0.0.tgz",
|
| 11825 |
-
"integrity": "sha512-eJQ0dGfDIzWNiFNYFVjJ+Ezl/GmwHaFTBTjrtqNPW0S7cuVDBrZrmzUz6VkMeCR4DZFqhd4YtLwsw3i2wYHswQ==",
|
| 11826 |
-
"dev": true,
|
| 11827 |
-
"requires": {
|
| 11828 |
-
"chalk": "^1.1.3",
|
| 11829 |
-
"dlv": "^1.1.3"
|
| 11830 |
-
},
|
| 11831 |
-
"dependencies": {
|
| 11832 |
-
"ansi-regex": {
|
| 11833 |
-
"version": "2.1.1",
|
| 11834 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
| 11835 |
-
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
|
| 11836 |
-
"dev": true
|
| 11837 |
-
},
|
| 11838 |
-
"ansi-styles": {
|
| 11839 |
-
"version": "2.2.1",
|
| 11840 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
|
| 11841 |
-
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
|
| 11842 |
-
"dev": true
|
| 11843 |
-
},
|
| 11844 |
-
"chalk": {
|
| 11845 |
-
"version": "1.1.3",
|
| 11846 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
|
| 11847 |
-
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
|
| 11848 |
-
"dev": true,
|
| 11849 |
-
"requires": {
|
| 11850 |
-
"ansi-styles": "^2.2.1",
|
| 11851 |
-
"escape-string-regexp": "^1.0.2",
|
| 11852 |
-
"has-ansi": "^2.0.0",
|
| 11853 |
-
"strip-ansi": "^3.0.0",
|
| 11854 |
-
"supports-color": "^2.0.0"
|
| 11855 |
-
}
|
| 11856 |
-
},
|
| 11857 |
-
"strip-ansi": {
|
| 11858 |
-
"version": "3.0.1",
|
| 11859 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
|
| 11860 |
-
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
|
| 11861 |
-
"dev": true,
|
| 11862 |
-
"requires": {
|
| 11863 |
-
"ansi-regex": "^2.0.0"
|
| 11864 |
-
}
|
| 11865 |
-
},
|
| 11866 |
-
"supports-color": {
|
| 11867 |
-
"version": "2.0.0",
|
| 11868 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
|
| 11869 |
-
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
|
| 11870 |
-
"dev": true
|
| 11871 |
-
}
|
| 11872 |
-
}
|
| 11873 |
-
},
|
| 11874 |
-
"through": {
|
| 11875 |
-
"version": "2.3.8",
|
| 11876 |
-
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
|
| 11877 |
-
"integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
|
| 11878 |
-
"dev": true
|
| 11879 |
-
},
|
| 11880 |
-
"thunky": {
|
| 11881 |
-
"version": "1.1.0",
|
| 11882 |
-
"resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
|
| 11883 |
-
"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
|
| 11884 |
-
"dev": true
|
| 11885 |
-
},
|
| 11886 |
-
"timers-browserify": {
|
| 11887 |
-
"version": "2.0.12",
|
| 11888 |
-
"resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz",
|
| 11889 |
-
"integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==",
|
| 11890 |
-
"dev": true,
|
| 11891 |
-
"requires": {
|
| 11892 |
-
"setimmediate": "^1.0.4"
|
| 11893 |
-
}
|
| 11894 |
-
},
|
| 11895 |
-
"timsort": {
|
| 11896 |
-
"version": "0.3.0",
|
| 11897 |
-
"resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz",
|
| 11898 |
-
"integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=",
|
| 11899 |
-
"dev": true
|
| 11900 |
-
},
|
| 11901 |
-
"tiny-emitter": {
|
| 11902 |
-
"version": "2.1.0",
|
| 11903 |
-
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
| 11904 |
-
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
|
| 11905 |
-
},
|
| 11906 |
-
"tmp": {
|
| 11907 |
-
"version": "0.2.1",
|
| 11908 |
-
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
|
| 11909 |
-
"integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
|
| 11910 |
-
"requires": {
|
| 11911 |
-
"rimraf": "^3.0.0"
|
| 11912 |
-
}
|
| 11913 |
-
},
|
| 11914 |
-
"to-array": {
|
| 11915 |
-
"version": "0.1.4",
|
| 11916 |
-
"resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz",
|
| 11917 |
-
"integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=",
|
| 11918 |
-
"dev": true
|
| 11919 |
-
},
|
| 11920 |
-
"to-arraybuffer": {
|
| 11921 |
-
"version": "1.0.1",
|
| 11922 |
-
"resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
|
| 11923 |
-
"integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
|
| 11924 |
-
"dev": true
|
| 11925 |
-
},
|
| 11926 |
-
"to-fast-properties": {
|
| 11927 |
-
"version": "2.0.0",
|
| 11928 |
-
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
|
| 11929 |
-
"integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
|
| 11930 |
-
},
|
| 11931 |
-
"to-regex-range": {
|
| 11932 |
-
"version": "5.0.1",
|
| 11933 |
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
| 11934 |
-
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
| 11935 |
-
"requires": {
|
| 11936 |
-
"is-number": "^7.0.0"
|
| 11937 |
-
}
|
| 11938 |
-
},
|
| 11939 |
-
"toidentifier": {
|
| 11940 |
-
"version": "1.0.0",
|
| 11941 |
-
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
|
| 11942 |
-
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==",
|
| 11943 |
-
"dev": true
|
| 11944 |
-
},
|
| 11945 |
-
"traverse": {
|
| 11946 |
-
"version": "0.6.6",
|
| 11947 |
-
"resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz",
|
| 11948 |
-
"integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc="
|
| 11949 |
-
},
|
| 11950 |
-
"tslib": {
|
| 11951 |
-
"version": "2.3.1",
|
| 11952 |
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
|
| 11953 |
-
"integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
|
| 11954 |
-
},
|
| 11955 |
-
"tsscmp": {
|
| 11956 |
-
"version": "1.0.6",
|
| 11957 |
-
"resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz",
|
| 11958 |
-
"integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==",
|
| 11959 |
-
"dev": true
|
| 11960 |
-
},
|
| 11961 |
-
"tty-browserify": {
|
| 11962 |
-
"version": "0.0.0",
|
| 11963 |
-
"resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
|
| 11964 |
-
"integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
|
| 11965 |
-
"dev": true
|
| 11966 |
-
},
|
| 11967 |
-
"turbo-combine-reducers": {
|
| 11968 |
-
"version": "1.0.2",
|
| 11969 |
-
"resolved": "https://registry.npmjs.org/turbo-combine-reducers/-/turbo-combine-reducers-1.0.2.tgz",
|
| 11970 |
-
"integrity": "sha512-gHbdMZlA6Ym6Ur5pSH/UWrNQMIM9IqTH6SoL1DbHpqEdQ8i+cFunSmSlFykPt0eGQwZ4d/XTHOl74H0/kFBVWw=="
|
| 11971 |
-
},
|
| 11972 |
-
"type-check": {
|
| 11973 |
-
"version": "0.4.0",
|
| 11974 |
-
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
|
| 11975 |
-
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
| 11976 |
-
"dev": true,
|
| 11977 |
-
"requires": {
|
| 11978 |
-
"prelude-ls": "^1.2.1"
|
| 11979 |
-
}
|
| 11980 |
-
},
|
| 11981 |
-
"type-fest": {
|
| 11982 |
-
"version": "0.20.2",
|
| 11983 |
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
|
| 11984 |
-
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
|
| 11985 |
-
"dev": true
|
| 11986 |
-
},
|
| 11987 |
-
"type-is": {
|
| 11988 |
-
"version": "1.6.18",
|
| 11989 |
-
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
| 11990 |
-
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
| 11991 |
-
"dev": true,
|
| 11992 |
-
"requires": {
|
| 11993 |
-
"media-typer": "0.3.0",
|
| 11994 |
-
"mime-types": "~2.1.24"
|
| 11995 |
-
}
|
| 11996 |
-
},
|
| 11997 |
-
"ua-parser-js": {
|
| 11998 |
-
"version": "1.0.2",
|
| 11999 |
-
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.2.tgz",
|
| 12000 |
-
"integrity": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==",
|
| 12001 |
-
"dev": true
|
| 12002 |
-
},
|
| 12003 |
-
"unbox-primitive": {
|
| 12004 |
-
"version": "1.0.1",
|
| 12005 |
-
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz",
|
| 12006 |
-
"integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==",
|
| 12007 |
-
"requires": {
|
| 12008 |
-
"function-bind": "^1.1.1",
|
| 12009 |
-
"has-bigints": "^1.0.1",
|
| 12010 |
-
"has-symbols": "^1.0.2",
|
| 12011 |
-
"which-boxed-primitive": "^1.0.2"
|
| 12012 |
-
}
|
| 12013 |
-
},
|
| 12014 |
-
"unicode-canonical-property-names-ecmascript": {
|
| 12015 |
-
"version": "2.0.0",
|
| 12016 |
-
"resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
|
| 12017 |
-
"integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
|
| 12018 |
-
"dev": true
|
| 12019 |
-
},
|
| 12020 |
-
"unicode-match-property-ecmascript": {
|
| 12021 |
-
"version": "2.0.0",
|
| 12022 |
-
"resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
|
| 12023 |
-
"integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
|
| 12024 |
-
"dev": true,
|
| 12025 |
-
"requires": {
|
| 12026 |
-
"unicode-canonical-property-names-ecmascript": "^2.0.0",
|
| 12027 |
-
"unicode-property-aliases-ecmascript": "^2.0.0"
|
| 12028 |
-
}
|
| 12029 |
-
},
|
| 12030 |
-
"unicode-match-property-value-ecmascript": {
|
| 12031 |
-
"version": "2.0.0",
|
| 12032 |
-
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
|
| 12033 |
-
"integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
|
| 12034 |
-
"dev": true
|
| 12035 |
-
},
|
| 12036 |
-
"unicode-property-aliases-ecmascript": {
|
| 12037 |
-
"version": "2.0.0",
|
| 12038 |
-
"resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
|
| 12039 |
-
"integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
|
| 12040 |
-
"dev": true
|
| 12041 |
-
},
|
| 12042 |
-
"uniqs": {
|
| 12043 |
-
"version": "2.0.0",
|
| 12044 |
-
"resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
|
| 12045 |
-
"integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=",
|
| 12046 |
-
"dev": true
|
| 12047 |
-
},
|
| 12048 |
-
"universalify": {
|
| 12049 |
-
"version": "2.0.0",
|
| 12050 |
-
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
|
| 12051 |
-
"integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="
|
| 12052 |
-
},
|
| 12053 |
-
"unpipe": {
|
| 12054 |
-
"version": "1.0.0",
|
| 12055 |
-
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
| 12056 |
-
"integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
|
| 12057 |
-
"dev": true
|
| 12058 |
-
},
|
| 12059 |
-
"uri-js": {
|
| 12060 |
-
"version": "4.4.1",
|
| 12061 |
-
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
|
| 12062 |
-
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
| 12063 |
-
"dev": true,
|
| 12064 |
-
"requires": {
|
| 12065 |
-
"punycode": "^2.1.0"
|
| 12066 |
-
}
|
| 12067 |
-
},
|
| 12068 |
-
"url": {
|
| 12069 |
-
"version": "0.11.0",
|
| 12070 |
-
"resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
|
| 12071 |
-
"integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
|
| 12072 |
-
"dev": true,
|
| 12073 |
-
"requires": {
|
| 12074 |
-
"punycode": "1.3.2",
|
| 12075 |
-
"querystring": "0.2.0"
|
| 12076 |
-
},
|
| 12077 |
-
"dependencies": {
|
| 12078 |
-
"punycode": {
|
| 12079 |
-
"version": "1.3.2",
|
| 12080 |
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
|
| 12081 |
-
"integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
|
| 12082 |
-
"dev": true
|
| 12083 |
-
}
|
| 12084 |
-
}
|
| 12085 |
-
},
|
| 12086 |
-
"use-memo-one": {
|
| 12087 |
-
"version": "1.1.2",
|
| 12088 |
-
"resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.2.tgz",
|
| 12089 |
-
"integrity": "sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ=="
|
| 12090 |
-
},
|
| 12091 |
-
"util": {
|
| 12092 |
-
"version": "0.11.1",
|
| 12093 |
-
"resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
|
| 12094 |
-
"integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
|
| 12095 |
-
"dev": true,
|
| 12096 |
-
"requires": {
|
| 12097 |
-
"inherits": "2.0.3"
|
| 12098 |
-
},
|
| 12099 |
-
"dependencies": {
|
| 12100 |
-
"inherits": {
|
| 12101 |
-
"version": "2.0.3",
|
| 12102 |
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
| 12103 |
-
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
| 12104 |
-
"dev": true
|
| 12105 |
-
}
|
| 12106 |
-
}
|
| 12107 |
-
},
|
| 12108 |
-
"util-deprecate": {
|
| 12109 |
-
"version": "1.0.2",
|
| 12110 |
-
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
| 12111 |
-
"integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
|
| 12112 |
-
},
|
| 12113 |
-
"utils-merge": {
|
| 12114 |
-
"version": "1.0.1",
|
| 12115 |
-
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
| 12116 |
-
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
|
| 12117 |
-
"dev": true
|
| 12118 |
-
},
|
| 12119 |
-
"uuid": {
|
| 12120 |
-
"version": "8.3.2",
|
| 12121 |
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
| 12122 |
-
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
| 12123 |
-
},
|
| 12124 |
-
"v8-compile-cache": {
|
| 12125 |
-
"version": "2.3.0",
|
| 12126 |
-
"resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz",
|
| 12127 |
-
"integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
|
| 12128 |
-
"dev": true
|
| 12129 |
-
},
|
| 12130 |
-
"vary": {
|
| 12131 |
-
"version": "1.1.2",
|
| 12132 |
-
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
| 12133 |
-
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
|
| 12134 |
-
"dev": true
|
| 12135 |
-
},
|
| 12136 |
-
"vendors": {
|
| 12137 |
-
"version": "1.0.4",
|
| 12138 |
-
"resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
|
| 12139 |
-
"integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==",
|
| 12140 |
-
"dev": true
|
| 12141 |
-
},
|
| 12142 |
-
"vm-browserify": {
|
| 12143 |
-
"version": "1.1.2",
|
| 12144 |
-
"resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
|
| 12145 |
-
"integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
|
| 12146 |
-
"dev": true
|
| 12147 |
-
},
|
| 12148 |
-
"vue-style-loader": {
|
| 12149 |
-
"version": "4.1.3",
|
| 12150 |
-
"resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz",
|
| 12151 |
-
"integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==",
|
| 12152 |
-
"dev": true,
|
| 12153 |
-
"requires": {
|
| 12154 |
-
"hash-sum": "^1.0.2",
|
| 12155 |
-
"loader-utils": "^1.0.2"
|
| 12156 |
-
}
|
| 12157 |
-
},
|
| 12158 |
-
"watchpack": {
|
| 12159 |
-
"version": "2.2.0",
|
| 12160 |
-
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz",
|
| 12161 |
-
"integrity": "sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==",
|
| 12162 |
-
"dev": true,
|
| 12163 |
-
"requires": {
|
| 12164 |
-
"glob-to-regexp": "^0.4.1",
|
| 12165 |
-
"graceful-fs": "^4.1.2"
|
| 12166 |
-
}
|
| 12167 |
-
},
|
| 12168 |
-
"wbuf": {
|
| 12169 |
-
"version": "1.7.3",
|
| 12170 |
-
"resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
|
| 12171 |
-
"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
|
| 12172 |
-
"dev": true,
|
| 12173 |
-
"requires": {
|
| 12174 |
-
"minimalistic-assert": "^1.0.0"
|
| 12175 |
-
}
|
| 12176 |
-
},
|
| 12177 |
-
"webpack": {
|
| 12178 |
-
"version": "5.64.1",
|
| 12179 |
-
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.64.1.tgz",
|
| 12180 |
-
"integrity": "sha512-b4FHmRgaaAjP+aVOVz41a9Qa5SmkUPQ+u8FntTQ1roPHahSComB6rXnLwc976VhUY4CqTaLu5mCswuHiNhOfVw==",
|
| 12181 |
-
"dev": true,
|
| 12182 |
-
"requires": {
|
| 12183 |
-
"@types/eslint-scope": "^3.7.0",
|
| 12184 |
-
"@types/estree": "^0.0.50",
|
| 12185 |
-
"@webassemblyjs/ast": "1.11.1",
|
| 12186 |
-
"@webassemblyjs/wasm-edit": "1.11.1",
|
| 12187 |
-
"@webassemblyjs/wasm-parser": "1.11.1",
|
| 12188 |
-
"acorn": "^8.4.1",
|
| 12189 |
-
"acorn-import-assertions": "^1.7.6",
|
| 12190 |
-
"browserslist": "^4.14.5",
|
| 12191 |
-
"chrome-trace-event": "^1.0.2",
|
| 12192 |
-
"enhanced-resolve": "^5.8.3",
|
| 12193 |
-
"es-module-lexer": "^0.9.0",
|
| 12194 |
-
"eslint-scope": "5.1.1",
|
| 12195 |
-
"events": "^3.2.0",
|
| 12196 |
-
"glob-to-regexp": "^0.4.1",
|
| 12197 |
-
"graceful-fs": "^4.2.4",
|
| 12198 |
-
"json-parse-better-errors": "^1.0.2",
|
| 12199 |
-
"loader-runner": "^4.2.0",
|
| 12200 |
-
"mime-types": "^2.1.27",
|
| 12201 |
-
"neo-async": "^2.6.2",
|
| 12202 |
-
"schema-utils": "^3.1.0",
|
| 12203 |
-
"tapable": "^2.1.1",
|
| 12204 |
-
"terser-webpack-plugin": "^5.1.3",
|
| 12205 |
-
"watchpack": "^2.2.0",
|
| 12206 |
-
"webpack-sources": "^3.2.2"
|
| 12207 |
-
},
|
| 12208 |
-
"dependencies": {
|
| 12209 |
-
"acorn": {
|
| 12210 |
-
"version": "8.5.0",
|
| 12211 |
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz",
|
| 12212 |
-
"integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==",
|
| 12213 |
-
"dev": true
|
| 12214 |
-
},
|
| 12215 |
-
"eslint-scope": {
|
| 12216 |
-
"version": "5.1.1",
|
| 12217 |
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
|
| 12218 |
-
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
|
| 12219 |
-
"dev": true,
|
| 12220 |
-
"requires": {
|
| 12221 |
-
"esrecurse": "^4.3.0",
|
| 12222 |
-
"estraverse": "^4.1.1"
|
| 12223 |
-
}
|
| 12224 |
-
},
|
| 12225 |
-
"estraverse": {
|
| 12226 |
-
"version": "4.3.0",
|
| 12227 |
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
|
| 12228 |
-
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
|
| 12229 |
-
"dev": true
|
| 12230 |
-
},
|
| 12231 |
-
"schema-utils": {
|
| 12232 |
-
"version": "3.1.1",
|
| 12233 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 12234 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 12235 |
-
"dev": true,
|
| 12236 |
-
"requires": {
|
| 12237 |
-
"@types/json-schema": "^7.0.8",
|
| 12238 |
-
"ajv": "^6.12.5",
|
| 12239 |
-
"ajv-keywords": "^3.5.2"
|
| 12240 |
-
}
|
| 12241 |
-
},
|
| 12242 |
-
"webpack-sources": {
|
| 12243 |
-
"version": "3.2.2",
|
| 12244 |
-
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz",
|
| 12245 |
-
"integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==",
|
| 12246 |
-
"dev": true
|
| 12247 |
-
}
|
| 12248 |
-
}
|
| 12249 |
-
},
|
| 12250 |
-
"webpack-cli": {
|
| 12251 |
-
"version": "4.9.1",
|
| 12252 |
-
"resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz",
|
| 12253 |
-
"integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==",
|
| 12254 |
-
"dev": true,
|
| 12255 |
-
"requires": {
|
| 12256 |
-
"@discoveryjs/json-ext": "^0.5.0",
|
| 12257 |
-
"@webpack-cli/configtest": "^1.1.0",
|
| 12258 |
-
"@webpack-cli/info": "^1.4.0",
|
| 12259 |
-
"@webpack-cli/serve": "^1.6.0",
|
| 12260 |
-
"colorette": "^2.0.14",
|
| 12261 |
-
"commander": "^7.0.0",
|
| 12262 |
-
"execa": "^5.0.0",
|
| 12263 |
-
"fastest-levenshtein": "^1.0.12",
|
| 12264 |
-
"import-local": "^3.0.2",
|
| 12265 |
-
"interpret": "^2.2.0",
|
| 12266 |
-
"rechoir": "^0.7.0",
|
| 12267 |
-
"webpack-merge": "^5.7.3"
|
| 12268 |
-
},
|
| 12269 |
-
"dependencies": {
|
| 12270 |
-
"commander": {
|
| 12271 |
-
"version": "7.2.0",
|
| 12272 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
|
| 12273 |
-
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
|
| 12274 |
-
"dev": true
|
| 12275 |
-
}
|
| 12276 |
-
}
|
| 12277 |
-
},
|
| 12278 |
-
"webpack-dev-middleware": {
|
| 12279 |
-
"version": "5.2.1",
|
| 12280 |
-
"resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.2.1.tgz",
|
| 12281 |
-
"integrity": "sha512-Kx1X+36Rn9JaZcQMrJ7qN3PMAuKmEDD9ZISjUj3Cgq4A6PtwYsC4mpaKotSRYH3iOF6HsUa8viHKS59FlyVifQ==",
|
| 12282 |
-
"dev": true,
|
| 12283 |
-
"requires": {
|
| 12284 |
-
"colorette": "^2.0.10",
|
| 12285 |
-
"memfs": "^3.2.2",
|
| 12286 |
-
"mime-types": "^2.1.31",
|
| 12287 |
-
"range-parser": "^1.2.1",
|
| 12288 |
-
"schema-utils": "^3.1.0"
|
| 12289 |
-
},
|
| 12290 |
-
"dependencies": {
|
| 12291 |
-
"schema-utils": {
|
| 12292 |
-
"version": "3.1.1",
|
| 12293 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 12294 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 12295 |
-
"dev": true,
|
| 12296 |
-
"requires": {
|
| 12297 |
-
"@types/json-schema": "^7.0.8",
|
| 12298 |
-
"ajv": "^6.12.5",
|
| 12299 |
-
"ajv-keywords": "^3.5.2"
|
| 12300 |
-
}
|
| 12301 |
-
}
|
| 12302 |
-
}
|
| 12303 |
-
},
|
| 12304 |
-
"webpack-dev-server": {
|
| 12305 |
-
"version": "4.4.0",
|
| 12306 |
-
"resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.4.0.tgz",
|
| 12307 |
-
"integrity": "sha512-+S0XRIbsopVjPFjCO8I07FXYBWYqkFmuP56ucGMTs2hA/gV4q2M9xTmNo5Tg4o8ffRR+Nm3AsXnQXxKRyYovrA==",
|
| 12308 |
-
"dev": true,
|
| 12309 |
-
"requires": {
|
| 12310 |
-
"ansi-html-community": "^0.0.8",
|
| 12311 |
-
"bonjour": "^3.5.0",
|
| 12312 |
-
"chokidar": "^3.5.2",
|
| 12313 |
-
"colorette": "^2.0.10",
|
| 12314 |
-
"compression": "^1.7.4",
|
| 12315 |
-
"connect-history-api-fallback": "^1.6.0",
|
| 12316 |
-
"del": "^6.0.0",
|
| 12317 |
-
"express": "^4.17.1",
|
| 12318 |
-
"graceful-fs": "^4.2.6",
|
| 12319 |
-
"html-entities": "^2.3.2",
|
| 12320 |
-
"http-proxy-middleware": "^2.0.0",
|
| 12321 |
-
"internal-ip": "^6.2.0",
|
| 12322 |
-
"ipaddr.js": "^2.0.1",
|
| 12323 |
-
"open": "^8.0.9",
|
| 12324 |
-
"p-retry": "^4.5.0",
|
| 12325 |
-
"portfinder": "^1.0.28",
|
| 12326 |
-
"schema-utils": "^3.1.0",
|
| 12327 |
-
"selfsigned": "^1.10.11",
|
| 12328 |
-
"serve-index": "^1.9.1",
|
| 12329 |
-
"sockjs": "^0.3.21",
|
| 12330 |
-
"spdy": "^4.0.2",
|
| 12331 |
-
"strip-ansi": "^7.0.0",
|
| 12332 |
-
"url": "^0.11.0",
|
| 12333 |
-
"webpack-dev-middleware": "^5.2.1",
|
| 12334 |
-
"ws": "^8.1.0"
|
| 12335 |
-
},
|
| 12336 |
-
"dependencies": {
|
| 12337 |
-
"ansi-regex": {
|
| 12338 |
-
"version": "6.0.1",
|
| 12339 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
| 12340 |
-
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
| 12341 |
-
"dev": true
|
| 12342 |
-
},
|
| 12343 |
-
"open": {
|
| 12344 |
-
"version": "8.4.0",
|
| 12345 |
-
"resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
|
| 12346 |
-
"integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
|
| 12347 |
-
"dev": true,
|
| 12348 |
-
"requires": {
|
| 12349 |
-
"define-lazy-prop": "^2.0.0",
|
| 12350 |
-
"is-docker": "^2.1.1",
|
| 12351 |
-
"is-wsl": "^2.2.0"
|
| 12352 |
-
}
|
| 12353 |
-
},
|
| 12354 |
-
"schema-utils": {
|
| 12355 |
-
"version": "3.1.1",
|
| 12356 |
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz",
|
| 12357 |
-
"integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==",
|
| 12358 |
-
"dev": true,
|
| 12359 |
-
"requires": {
|
| 12360 |
-
"@types/json-schema": "^7.0.8",
|
| 12361 |
-
"ajv": "^6.12.5",
|
| 12362 |
-
"ajv-keywords": "^3.5.2"
|
| 12363 |
-
}
|
| 12364 |
-
},
|
| 12365 |
-
"strip-ansi": {
|
| 12366 |
-
"version": "7.0.1",
|
| 12367 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz",
|
| 12368 |
-
"integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==",
|
| 12369 |
-
"dev": true,
|
| 12370 |
-
"requires": {
|
| 12371 |
-
"ansi-regex": "^6.0.1"
|
| 12372 |
-
}
|
| 12373 |
-
},
|
| 12374 |
-
"ws": {
|
| 12375 |
-
"version": "8.2.3",
|
| 12376 |
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz",
|
| 12377 |
-
"integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==",
|
| 12378 |
-
"dev": true
|
| 12379 |
-
}
|
| 12380 |
-
}
|
| 12381 |
-
},
|
| 12382 |
-
"webpack-merge": {
|
| 12383 |
-
"version": "5.8.0",
|
| 12384 |
-
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz",
|
| 12385 |
-
"integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==",
|
| 12386 |
-
"dev": true,
|
| 12387 |
-
"requires": {
|
| 12388 |
-
"clone-deep": "^4.0.1",
|
| 12389 |
-
"wildcard": "^2.0.0"
|
| 12390 |
-
}
|
| 12391 |
-
},
|
| 12392 |
-
"webpack-notifier": {
|
| 12393 |
-
"version": "1.14.1",
|
| 12394 |
-
"resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.14.1.tgz",
|
| 12395 |
-
"integrity": "sha512-OVOoiOyKHS3z9pN1nLdPY2Pf/R3wiBsN0KiPc3K6ApwMBfHbyUomQc2Mr0naeKxfqXyCBPHfQuqpL9yoL0rgkA==",
|
| 12396 |
-
"dev": true,
|
| 12397 |
-
"requires": {
|
| 12398 |
-
"node-notifier": "^9.0.0",
|
| 12399 |
-
"strip-ansi": "^6.0.0"
|
| 12400 |
-
},
|
| 12401 |
-
"dependencies": {
|
| 12402 |
-
"ansi-regex": {
|
| 12403 |
-
"version": "5.0.1",
|
| 12404 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
| 12405 |
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
| 12406 |
-
"dev": true
|
| 12407 |
-
},
|
| 12408 |
-
"strip-ansi": {
|
| 12409 |
-
"version": "6.0.1",
|
| 12410 |
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
| 12411 |
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
| 12412 |
-
"dev": true,
|
| 12413 |
-
"requires": {
|
| 12414 |
-
"ansi-regex": "^5.0.1"
|
| 12415 |
-
}
|
| 12416 |
-
}
|
| 12417 |
-
}
|
| 12418 |
-
},
|
| 12419 |
-
"webpack-sources": {
|
| 12420 |
-
"version": "1.4.3",
|
| 12421 |
-
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
|
| 12422 |
-
"integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
|
| 12423 |
-
"dev": true,
|
| 12424 |
-
"requires": {
|
| 12425 |
-
"source-list-map": "^2.0.0",
|
| 12426 |
-
"source-map": "~0.6.1"
|
| 12427 |
-
},
|
| 12428 |
-
"dependencies": {
|
| 12429 |
-
"source-map": {
|
| 12430 |
-
"version": "0.6.1",
|
| 12431 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
| 12432 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
| 12433 |
-
"dev": true
|
| 12434 |
-
}
|
| 12435 |
-
}
|
| 12436 |
-
},
|
| 12437 |
-
"webpackbar": {
|
| 12438 |
-
"version": "5.0.2",
|
| 12439 |
-
"resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz",
|
| 12440 |
-
"integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==",
|
| 12441 |
-
"dev": true,
|
| 12442 |
-
"requires": {
|
| 12443 |
-
"chalk": "^4.1.0",
|
| 12444 |
-
"consola": "^2.15.3",
|
| 12445 |
-
"pretty-time": "^1.1.0",
|
| 12446 |
-
"std-env": "^3.0.1"
|
| 12447 |
-
},
|
| 12448 |
-
"dependencies": {
|
| 12449 |
-
"ansi-styles": {
|
| 12450 |
-
"version": "4.3.0",
|
| 12451 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
| 12452 |
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
| 12453 |
-
"dev": true,
|
| 12454 |
-
"requires": {
|
| 12455 |
-
"color-convert": "^2.0.1"
|
| 12456 |
-
}
|
| 12457 |
-
},
|
| 12458 |
-
"chalk": {
|
| 12459 |
-
"version": "4.1.2",
|
| 12460 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
| 12461 |
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
| 12462 |
-
"dev": true,
|
| 12463 |
-
"requires": {
|
| 12464 |
-
"ansi-styles": "^4.1.0",
|
| 12465 |
-
"supports-color": "^7.1.0"
|
| 12466 |
-
}
|
| 12467 |
-
},
|
| 12468 |
-
"color-convert": {
|
| 12469 |
-
"version": "2.0.1",
|
| 12470 |
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
| 12471 |
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
| 12472 |
-
"dev": true,
|
| 12473 |
-
"requires": {
|
| 12474 |
-
"color-name": "~1.1.4"
|
| 12475 |
-
}
|
| 12476 |
-
},
|
| 12477 |
-
"color-name": {
|
| 12478 |
-
"version": "1.1.4",
|
| 12479 |
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
| 12480 |
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
| 12481 |
-
"dev": true
|
| 12482 |
-
},
|
| 12483 |
-
"has-flag": {
|
| 12484 |
-
"version": "4.0.0",
|
| 12485 |
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
| 12486 |
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
| 12487 |
-
"dev": true
|
| 12488 |
-
},
|
| 12489 |
-
"supports-color": {
|
| 12490 |
-
"version": "7.2.0",
|
| 12491 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
| 12492 |
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
| 12493 |
-
"dev": true,
|
| 12494 |
-
"requires": {
|
| 12495 |
-
"has-flag": "^4.0.0"
|
| 12496 |
-
}
|
| 12497 |
-
}
|
| 12498 |
-
}
|
| 12499 |
-
},
|
| 12500 |
-
"websocket-driver": {
|
| 12501 |
-
"version": "0.7.4",
|
| 12502 |
-
"resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz",
|
| 12503 |
-
"integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==",
|
| 12504 |
-
"dev": true,
|
| 12505 |
-
"requires": {
|
| 12506 |
-
"http-parser-js": ">=0.5.1",
|
| 12507 |
-
"safe-buffer": ">=5.1.0",
|
| 12508 |
-
"websocket-extensions": ">=0.1.1"
|
| 12509 |
-
}
|
| 12510 |
-
},
|
| 12511 |
-
"websocket-extensions": {
|
| 12512 |
-
"version": "0.1.4",
|
| 12513 |
-
"resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz",
|
| 12514 |
-
"integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==",
|
| 12515 |
-
"dev": true
|
| 12516 |
-
},
|
| 12517 |
-
"which": {
|
| 12518 |
-
"version": "2.0.2",
|
| 12519 |
-
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
| 12520 |
-
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
| 12521 |
-
"dev": true,
|
| 12522 |
-
"requires": {
|
| 12523 |
-
"isexe": "^2.0.0"
|
| 12524 |
-
}
|
| 12525 |
-
},
|
| 12526 |
-
"which-boxed-primitive": {
|
| 12527 |
-
"version": "1.0.2",
|
| 12528 |
-
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
|
| 12529 |
-
"integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
|
| 12530 |
-
"requires": {
|
| 12531 |
-
"is-bigint": "^1.0.1",
|
| 12532 |
-
"is-boolean-object": "^1.1.0",
|
| 12533 |
-
"is-number-object": "^1.0.4",
|
| 12534 |
-
"is-string": "^1.0.5",
|
| 12535 |
-
"is-symbol": "^1.0.3"
|
| 12536 |
-
}
|
| 12537 |
-
},
|
| 12538 |
-
"which-module": {
|
| 12539 |
-
"version": "2.0.0",
|
| 12540 |
-
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
|
| 12541 |
-
"integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
|
| 12542 |
-
},
|
| 12543 |
-
"wildcard": {
|
| 12544 |
-
"version": "2.0.0",
|
| 12545 |
-
"resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz",
|
| 12546 |
-
"integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==",
|
| 12547 |
-
"dev": true
|
| 12548 |
-
},
|
| 12549 |
-
"word-wrap": {
|
| 12550 |
-
"version": "1.2.3",
|
| 12551 |
-
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
|
| 12552 |
-
"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
|
| 12553 |
-
"dev": true
|
| 12554 |
-
},
|
| 12555 |
-
"wrap-ansi": {
|
| 12556 |
-
"version": "5.1.0",
|
| 12557 |
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
|
| 12558 |
-
"integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
|
| 12559 |
-
"requires": {
|
| 12560 |
-
"ansi-styles": "^3.2.0",
|
| 12561 |
-
"string-width": "^3.0.0",
|
| 12562 |
-
"strip-ansi": "^5.0.0"
|
| 12563 |
-
}
|
| 12564 |
-
},
|
| 12565 |
-
"wrappy": {
|
| 12566 |
-
"version": "1.0.2",
|
| 12567 |
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
| 12568 |
-
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
| 12569 |
-
},
|
| 12570 |
-
"ws": {
|
| 12571 |
-
"version": "7.4.6",
|
| 12572 |
-
"resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
|
| 12573 |
-
"integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
|
| 12574 |
-
"dev": true
|
| 12575 |
-
},
|
| 12576 |
-
"xmlhttprequest-ssl": {
|
| 12577 |
-
"version": "1.6.3",
|
| 12578 |
-
"resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz",
|
| 12579 |
-
"integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==",
|
| 12580 |
-
"dev": true
|
| 12581 |
-
},
|
| 12582 |
-
"xtend": {
|
| 12583 |
-
"version": "4.0.2",
|
| 12584 |
-
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
| 12585 |
-
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
| 12586 |
-
},
|
| 12587 |
-
"y18n": {
|
| 12588 |
-
"version": "4.0.3",
|
| 12589 |
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
|
| 12590 |
-
"integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
|
| 12591 |
-
},
|
| 12592 |
-
"yallist": {
|
| 12593 |
-
"version": "4.0.0",
|
| 12594 |
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
| 12595 |
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
| 12596 |
-
"dev": true
|
| 12597 |
-
},
|
| 12598 |
-
"yaml": {
|
| 12599 |
-
"version": "1.10.2",
|
| 12600 |
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
| 12601 |
-
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="
|
| 12602 |
-
},
|
| 12603 |
-
"yargs": {
|
| 12604 |
-
"version": "14.2.3",
|
| 12605 |
-
"resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz",
|
| 12606 |
-
"integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==",
|
| 12607 |
-
"requires": {
|
| 12608 |
-
"cliui": "^5.0.0",
|
| 12609 |
-
"decamelize": "^1.2.0",
|
| 12610 |
-
"find-up": "^3.0.0",
|
| 12611 |
-
"get-caller-file": "^2.0.1",
|
| 12612 |
-
"require-directory": "^2.1.1",
|
| 12613 |
-
"require-main-filename": "^2.0.0",
|
| 12614 |
-
"set-blocking": "^2.0.0",
|
| 12615 |
-
"string-width": "^3.0.0",
|
| 12616 |
-
"which-module": "^2.0.0",
|
| 12617 |
-
"y18n": "^4.0.0",
|
| 12618 |
-
"yargs-parser": "^15.0.1"
|
| 12619 |
-
}
|
| 12620 |
-
},
|
| 12621 |
-
"yargs-parser": {
|
| 12622 |
-
"version": "15.0.3",
|
| 12623 |
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.3.tgz",
|
| 12624 |
-
"integrity": "sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==",
|
| 12625 |
-
"requires": {
|
| 12626 |
-
"camelcase": "^5.0.0",
|
| 12627 |
-
"decamelize": "^1.2.0"
|
| 12628 |
-
}
|
| 12629 |
-
},
|
| 12630 |
-
"yeast": {
|
| 12631 |
-
"version": "0.1.2",
|
| 12632 |
-
"resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz",
|
| 12633 |
-
"integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=",
|
| 12634 |
-
"dev": true
|
| 12635 |
-
},
|
| 12636 |
-
"ylru": {
|
| 12637 |
-
"version": "1.2.1",
|
| 12638 |
-
"resolved": "https://registry.npmjs.org/ylru/-/ylru-1.2.1.tgz",
|
| 12639 |
-
"integrity": "sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ==",
|
| 12640 |
-
"dev": true
|
| 12641 |
-
},
|
| 12642 |
-
"zustand": {
|
| 12643 |
-
"version": "3.6.5",
|
| 12644 |
-
"resolved": "https://registry.npmjs.org/zustand/-/zustand-3.6.5.tgz",
|
| 12645 |
-
"integrity": "sha512-/WfLJuXiEJimt61KGMHebrFBwckkCHGhAgVXTgPQHl6IMzjqm6MREb1OnDSnCRiSmRdhgdFCctceg6tSm79hiw=="
|
| 12646 |
-
}
|
| 12647 |
-
}
|
| 12648 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/package.json
DELETED
|
@@ -1,70 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"name": "extendify-sdk",
|
| 3 |
-
"description": "",
|
| 4 |
-
"engines": {
|
| 5 |
-
"node": "14.18.1"
|
| 6 |
-
},
|
| 7 |
-
"scripts": {
|
| 8 |
-
"build": "npx mix --production",
|
| 9 |
-
"dev": "npx mix",
|
| 10 |
-
"watch": "npx mix watch",
|
| 11 |
-
"lint": "eslint . --ext .js",
|
| 12 |
-
"lint-fix": "eslint . --ext .js --fix",
|
| 13 |
-
"prettier": "prettier . --check",
|
| 14 |
-
"prettier-fix": "prettier . --write",
|
| 15 |
-
"prepare": "husky install",
|
| 16 |
-
"clean-build": "./bin/clean-build-files.sh"
|
| 17 |
-
},
|
| 18 |
-
"devDependencies": {
|
| 19 |
-
"@babel/preset-react": "^7.16.0",
|
| 20 |
-
"autoprefixer": "^10.4.0",
|
| 21 |
-
"browser-sync": "^2.27.7",
|
| 22 |
-
"browser-sync-webpack-plugin": "^2.3.0",
|
| 23 |
-
"eslint": "^8.2.0",
|
| 24 |
-
"eslint-config-prettier": "^8.3.0",
|
| 25 |
-
"eslint-plugin-prettier": "^4.0.0",
|
| 26 |
-
"eslint-plugin-react": "^7.27.0",
|
| 27 |
-
"eslint-plugin-react-hooks": "^4.3.0",
|
| 28 |
-
"husky": "^7.0.4",
|
| 29 |
-
"laravel-mix": "^6.0.39",
|
| 30 |
-
"lint-staged": "^12.0.2",
|
| 31 |
-
"postcss-import": "^14.0.2",
|
| 32 |
-
"postcss-safe-important": "^1.2.1",
|
| 33 |
-
"prettier": "^2.4.1",
|
| 34 |
-
"resolve-url-loader": "^4.0.0",
|
| 35 |
-
"semver": "^7.3.5",
|
| 36 |
-
"tailwind-config-viewer": "^1.6.2"
|
| 37 |
-
},
|
| 38 |
-
"dependencies": {
|
| 39 |
-
"@headlessui/react": "^1.4.2",
|
| 40 |
-
"@wordpress/base-styles": "*",
|
| 41 |
-
"@wordpress/block-editor": "^8.0.3",
|
| 42 |
-
"@wordpress/blocks": "^11.1.4",
|
| 43 |
-
"@wordpress/components": "^19.0.3",
|
| 44 |
-
"@wordpress/edit-post": "^5.0.9",
|
| 45 |
-
"@wordpress/icons": "6.1.1",
|
| 46 |
-
"axios": "^0.24.0",
|
| 47 |
-
"classnames": "^2.3.1",
|
| 48 |
-
"fuse.js": "^6.4.6",
|
| 49 |
-
"postcss": "^8.3.11",
|
| 50 |
-
"react": "^17.0.2",
|
| 51 |
-
"react-dom": "^17.0.2",
|
| 52 |
-
"react-intersection-observer": "^8.32.2",
|
| 53 |
-
"react-masonry-css": "^1.0.16",
|
| 54 |
-
"react-transition-group": "^4.4.2",
|
| 55 |
-
"tailwindcss": "^2.2.19",
|
| 56 |
-
"zustand": "^3.6.5"
|
| 57 |
-
},
|
| 58 |
-
"husky": {
|
| 59 |
-
"hooks": {
|
| 60 |
-
"pre-commit": "lint-staged"
|
| 61 |
-
}
|
| 62 |
-
},
|
| 63 |
-
"lint-staged": {
|
| 64 |
-
"*.js": [
|
| 65 |
-
"npm run lint-fix",
|
| 66 |
-
"npm run prettier-fix"
|
| 67 |
-
],
|
| 68 |
-
"*": "npm run clean-build"
|
| 69 |
-
}
|
| 70 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extendify-sdk/public/assets/preview.png
ADDED
|
Binary file
|
extendify-sdk/public/build/.gitkeep
ADDED
|
File without changes
|
extendify-sdk/public/build/extendify-sdk.css
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
div.extendify-sdk .sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}div.extendify-sdk .focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}div.extendify-sdk .pointer-events-none{pointer-events:none!important}div.extendify-sdk .invisible{visibility:hidden!important}div.extendify-sdk .static{position:static!important}div.extendify-sdk .fixed{position:fixed!important}div.extendify-sdk .absolute{position:absolute!important}div.extendify-sdk .relative{position:relative!important}div.extendify-sdk .sticky{position:-webkit-sticky!important;position:sticky!important}div.extendify-sdk .inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}div.extendify-sdk .top-0{top:0!important}div.extendify-sdk .top-1{top:.25rem!important}div.extendify-sdk .top-2{top:.5rem!important}div.extendify-sdk .-top-3{top:-.75rem!important}div.extendify-sdk .right-0{right:0!important}div.extendify-sdk .right-1{right:.25rem!important}div.extendify-sdk .right-2{right:.5rem!important}div.extendify-sdk .right-2\.5{right:.625rem!important}div.extendify-sdk .bottom-0{bottom:0!important}div.extendify-sdk .left-1{left:.25rem!important}div.extendify-sdk .z-0{z-index:0!important}div.extendify-sdk .z-20{z-index:20!important}div.extendify-sdk .z-30{z-index:30!important}div.extendify-sdk .z-high{z-index:99999!important}div.extendify-sdk .m-0{margin:0!important}div.extendify-sdk .m-8{margin:2rem!important}div.extendify-sdk .m-auto{margin:auto!important}div.extendify-sdk .mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}div.extendify-sdk .mx-auto{margin-left:auto!important;margin-right:auto!important}div.extendify-sdk .my-0{margin-bottom:0!important;margin-top:0!important}div.extendify-sdk .my-2{margin-bottom:.5rem!important}div.extendify-sdk .mt-2,div.extendify-sdk .my-2{margin-top:.5rem!important}div.extendify-sdk .mt-4{margin-top:1rem!important}div.extendify-sdk .mt-10{margin-top:2.5rem!important}div.extendify-sdk .mt-px{margin-top:1px!important}div.extendify-sdk .-mt-10{margin-top:-2.5rem!important}div.extendify-sdk .mr-1{margin-right:.25rem!important}div.extendify-sdk .mb-1{margin-bottom:.25rem!important}div.extendify-sdk .mb-2{margin-bottom:.5rem!important}div.extendify-sdk .mb-4{margin-bottom:1rem!important}div.extendify-sdk .mb-8{margin-bottom:2rem!important}div.extendify-sdk .mb-10{margin-bottom:2.5rem!important}div.extendify-sdk .-ml-1{margin-left:-.25rem!important}div.extendify-sdk .-ml-2{margin-left:-.5rem!important}div.extendify-sdk .-ml-8{margin-left:-2rem!important}div.extendify-sdk .-ml-px{margin-left:-1px!important}div.extendify-sdk .block{display:block!important}div.extendify-sdk .flex{display:flex!important}div.extendify-sdk .table{display:table!important}div.extendify-sdk .hidden{display:none!important}div.extendify-sdk .h-8{height:2rem!important}div.extendify-sdk .h-20{height:5rem!important}div.extendify-sdk .h-80{height:20rem!important}div.extendify-sdk .h-auto{height:auto!important}div.extendify-sdk .h-full{height:100%!important}div.extendify-sdk .h-screen{height:100vh!important}div.extendify-sdk .min-h-0{min-height:0!important}div.extendify-sdk .min-h-screen{min-height:100vh!important}div.extendify-sdk .w-60{width:15rem!important}div.extendify-sdk .w-72{width:18rem!important}div.extendify-sdk .w-80{width:20rem!important}div.extendify-sdk .w-auto{width:auto!important}div.extendify-sdk .w-full{width:100%!important}div.extendify-sdk .w-screen{width:100vw!important}div.extendify-sdk .min-w-sm{min-width:7rem!important}div.extendify-sdk .max-w-xs{max-width:20rem!important}div.extendify-sdk .max-w-md{max-width:28rem!important}div.extendify-sdk .max-w-lg{max-width:32rem!important}div.extendify-sdk .max-w-xl{max-width:36rem!important}div.extendify-sdk .max-w-full{max-width:100%!important}div.extendify-sdk .max-w-screen-4xl{max-width:1920px!important}div.extendify-sdk .flex-shrink-0{flex-shrink:0!important}div.extendify-sdk .flex-grow{flex-grow:1!important}div.extendify-sdk .transform{--tw-translate-x:0!important;--tw-translate-y:0!important;--tw-rotate:0!important;--tw-skew-x:0!important;--tw-skew-y:0!important;--tw-scale-x:1!important;--tw-scale-y:1!important;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}div.extendify-sdk .-translate-x-1{--tw-translate-x:-0.25rem!important}div.extendify-sdk .translate-y-0{--tw-translate-y:0px!important}div.extendify-sdk .translate-y-4{--tw-translate-y:1rem!important}div.extendify-sdk .-translate-y-20{--tw-translate-y:-5rem!important}div.extendify-sdk .-translate-y-full{--tw-translate-y:-100%!important}div.extendify-sdk .rotate-90{--tw-rotate:90deg!important}div.extendify-sdk .cursor-pointer{cursor:pointer!important}div.extendify-sdk .flex-col{flex-direction:column!important}div.extendify-sdk .items-end{align-items:flex-end!important}div.extendify-sdk .items-center{align-items:center!important}div.extendify-sdk .justify-end{justify-content:flex-end!important}div.extendify-sdk .justify-center{justify-content:center!important}div.extendify-sdk .justify-between{justify-content:space-between!important}div.extendify-sdk .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(.25rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(.5rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(1rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .space-x-12>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(3rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .space-x-1\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(.375rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(.375rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--tw-space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify-sdk .space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(1rem*var(--tw-space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify-sdk .space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(2rem*var(--tw-space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify-sdk .overflow-hidden{overflow:hidden!important}div.extendify-sdk .overflow-y-auto{overflow-y:auto!important}div.extendify-sdk .whitespace-nowrap{white-space:nowrap!important}div.extendify-sdk .rounded-none{border-radius:0!important}div.extendify-sdk .rounded-sm{border-radius:.125rem!important}div.extendify-sdk .rounded{border-radius:.25rem!important}div.extendify-sdk .rounded-md{border-radius:.375rem!important}div.extendify-sdk .rounded-tl-sm{border-top-left-radius:.125rem!important}div.extendify-sdk .rounded-tr-sm{border-top-right-radius:.125rem!important}div.extendify-sdk .rounded-br-sm{border-bottom-right-radius:.125rem!important}div.extendify-sdk .rounded-bl-sm{border-bottom-left-radius:.125rem!important}div.extendify-sdk .border-0{border-width:0!important}div.extendify-sdk .border-2{border-width:2px!important}div.extendify-sdk .border{border-width:1px!important}div.extendify-sdk .border-b-0{border-bottom-width:0!important}div.extendify-sdk .border-b{border-bottom-width:1px!important}div.extendify-sdk .border-black{--tw-border-opacity:1!important;border-color:rgba(0,0,0,var(--tw-border-opacity))!important}div.extendify-sdk .border-gray-900{--tw-border-opacity:1!important;border-color:rgba(30,30,30,var(--tw-border-opacity))!important}div.extendify-sdk .border-extendify-main{--tw-border-opacity:1!important;border-color:rgba(11,74,67,var(--tw-border-opacity))!important}div.extendify-sdk .border-wp-alert-red{--tw-border-opacity:1!important;border-color:rgba(204,24,24,var(--tw-border-opacity))!important}div.extendify-sdk .focus\:border-transparent:focus{border-color:transparent!important}div.extendify-sdk .bg-transparent{background-color:transparent!important}div.extendify-sdk .bg-black{--tw-bg-opacity:1!important;background-color:rgba(0,0,0,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-white{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-gray-100{--tw-bg-opacity:1!important;background-color:rgba(240,240,240,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-gray-900{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-extendify-main{--tw-bg-opacity:1!important;background-color:rgba(11,74,67,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-extendify-alert{--tw-bg-opacity:1!important;background-color:rgba(132,16,16,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-extendify-secondary{--tw-bg-opacity:1!important;background-color:rgba(203,195,245,var(--tw-bg-opacity))!important}div.extendify-sdk .hover\:bg-gray-150:hover{--tw-bg-opacity:1!important;background-color:rgba(234,234,234,var(--tw-bg-opacity))!important}div.extendify-sdk .hover\:bg-extendify-main-dark:hover{--tw-bg-opacity:1!important;background-color:rgba(5,49,44,var(--tw-bg-opacity))!important}div.extendify-sdk .active\:bg-gray-900:active{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}div.extendify-sdk .bg-opacity-40{--tw-bg-opacity:0.4!important}div.extendify-sdk .bg-clip-padding{background-clip:padding-box!important}div.extendify-sdk .fill-current{fill:currentColor!important}div.extendify-sdk .stroke-current{stroke:currentColor!important}div.extendify-sdk .p-0{padding:0!important}div.extendify-sdk .p-1{padding:.25rem!important}div.extendify-sdk .p-2{padding:.5rem!important}div.extendify-sdk .p-3{padding:.75rem!important}div.extendify-sdk .p-4{padding:1rem!important}div.extendify-sdk .p-6{padding:1.5rem!important}div.extendify-sdk .p-10{padding:2.5rem!important}div.extendify-sdk .p-12{padding:3rem!important}div.extendify-sdk .p-1\.5{padding:.375rem!important}div.extendify-sdk .p-3\.5{padding:.875rem!important}div.extendify-sdk .px-0{padding-left:0!important;padding-right:0!important}div.extendify-sdk .px-1{padding-left:.25rem!important;padding-right:.25rem!important}div.extendify-sdk .px-2{padding-left:.5rem!important;padding-right:.5rem!important}div.extendify-sdk .px-3{padding-left:.75rem!important;padding-right:.75rem!important}div.extendify-sdk .px-4{padding-left:1rem!important;padding-right:1rem!important}div.extendify-sdk .px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}div.extendify-sdk .px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}div.extendify-sdk .py-0{padding-bottom:0!important;padding-top:0!important}div.extendify-sdk .py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}div.extendify-sdk .py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}div.extendify-sdk .py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}div.extendify-sdk .py-4{padding-bottom:1rem!important;padding-top:1rem!important}div.extendify-sdk .py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}div.extendify-sdk .pt-0{padding-top:0!important}div.extendify-sdk .pt-2{padding-top:.5rem!important}div.extendify-sdk .pt-4{padding-top:1rem!important}div.extendify-sdk .pt-px{padding-top:1px!important}div.extendify-sdk .pt-0\.5{padding-top:.125rem!important}div.extendify-sdk .pr-3{padding-right:.75rem!important}div.extendify-sdk .pb-2{padding-bottom:.5rem!important}div.extendify-sdk .pb-4{padding-bottom:1rem!important}div.extendify-sdk .pb-6{padding-bottom:1.5rem!important}div.extendify-sdk .pb-20{padding-bottom:5rem!important}div.extendify-sdk .pb-32{padding-bottom:8rem!important}div.extendify-sdk .pb-40{padding-bottom:10rem!important}div.extendify-sdk .pl-0{padding-left:0!important}div.extendify-sdk .pl-5{padding-left:1.25rem!important}div.extendify-sdk .pl-6{padding-left:1.5rem!important}div.extendify-sdk .pl-8{padding-left:2rem!important}div.extendify-sdk .pl-0\.5{padding-left:.125rem!important}div.extendify-sdk .text-left{text-align:left!important}div.extendify-sdk .text-center{text-align:center!important}div.extendify-sdk .text-xs{font-size:.75rem!important;line-height:1rem!important}div.extendify-sdk .text-sm{font-size:.875rem!important;line-height:1.25rem!important}div.extendify-sdk .text-base{font-size:1rem!important;line-height:1.5rem!important}div.extendify-sdk .text-lg{font-size:1.125rem!important;line-height:1.75rem!important}div.extendify-sdk .text-xl{font-size:1.25rem!important;line-height:1.75rem!important}div.extendify-sdk .font-light{font-weight:300!important}div.extendify-sdk .font-medium{font-weight:500!important}div.extendify-sdk .font-semibold{font-weight:600!important}div.extendify-sdk .font-bold{font-weight:700!important}div.extendify-sdk .uppercase{text-transform:uppercase!important}div.extendify-sdk .leading-none{line-height:1!important}div.extendify-sdk .leading-extra-tight{line-height:.5!important}div.extendify-sdk .text-black{--tw-text-opacity:1!important;color:rgba(0,0,0,var(--tw-text-opacity))!important}div.extendify-sdk .text-white{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify-sdk .text-gray-700{--tw-text-opacity:1!important;color:rgba(117,117,117,var(--tw-text-opacity))!important}div.extendify-sdk .text-gray-800{--tw-text-opacity:1!important;color:rgba(31,41,55,var(--tw-text-opacity))!important}div.extendify-sdk .text-gray-900{--tw-text-opacity:1!important;color:rgba(30,30,30,var(--tw-text-opacity))!important}div.extendify-sdk .text-extendify-main{--tw-text-opacity:1!important;color:rgba(11,74,67,var(--tw-text-opacity))!important}div.extendify-sdk .text-extendify-gray{--tw-text-opacity:1!important;color:rgba(95,95,95,var(--tw-text-opacity))!important}div.extendify-sdk .text-extendify-black{--tw-text-opacity:1!important;color:rgba(30,30,30,var(--tw-text-opacity))!important}div.extendify-sdk .text-wp-theme-500{color:var(--wp-admin-theme-color)!important}div.extendify-sdk .text-wp-alert-red{--tw-text-opacity:1!important;color:rgba(204,24,24,var(--tw-text-opacity))!important}div.extendify-sdk .hover\:text-white:hover{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify-sdk .hover\:text-wp-theme-500:hover{color:var(--wp-admin-theme-color)!important}div.extendify-sdk .focus\:text-white:focus{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify-sdk .focus\:text-blue-500:focus{--tw-text-opacity:1!important;color:rgba(59,130,246,var(--tw-text-opacity))!important}div.extendify-sdk .active\:text-white:active{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify-sdk .underline{text-decoration:underline!important}div.extendify-sdk .hover\:no-underline:hover,div.extendify-sdk .no-underline{text-decoration:none!important}div.extendify-sdk .placeholder-transparent::-moz-placeholder{color:transparent!important}div.extendify-sdk .placeholder-transparent:-ms-input-placeholder{color:transparent!important}div.extendify-sdk .placeholder-transparent::placeholder{color:transparent!important}div.extendify-sdk .opacity-0{opacity:0!important}div.extendify-sdk .opacity-30{opacity:.3!important}div.extendify-sdk .opacity-50{opacity:.5!important}div.extendify-sdk .opacity-75{opacity:.75!important}div.extendify-sdk .focus\:opacity-100:focus,div.extendify-sdk .hover\:opacity-100:hover,div.extendify-sdk .opacity-100{opacity:1!important}div.extendify-sdk .shadow-modal{--tw-shadow: 0 0 0 1px rgba(0,0,0,.1),0 3px 15px -3px rgba(0,0,0,.035),0 0 1px rgba(0,0,0,.05)!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}div.extendify-sdk .focus\:outline-none:focus,div.extendify-sdk .outline-none{outline:2px solid transparent!important;outline-offset:2px!important}div.extendify-sdk .focus\:ring-wp:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}div.extendify-sdk .focus\:ring-wp-theme-500:focus{--tw-ring-color:var(--wp-admin-theme-color)!important}div.extendify-sdk .filter{--tw-blur:var(--tw-empty,/*!*/ /*!*/)!important;--tw-brightness:var(--tw-empty,/*!*/ /*!*/)!important;--tw-contrast:var(--tw-empty,/*!*/ /*!*/)!important;--tw-grayscale:var(--tw-empty,/*!*/ /*!*/)!important;--tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-invert:var(--tw-empty,/*!*/ /*!*/)!important;--tw-saturate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-sepia:var(--tw-empty,/*!*/ /*!*/)!important;--tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}div.extendify-sdk .transition-all{transition-duration:.15s!important;transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify-sdk .transition{transition-duration:.15s!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify-sdk .transition-opacity{transition-duration:.15s!important;transition-property:opacity!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify-sdk .duration-200{transition-duration:.2s!important}div.extendify-sdk .duration-300{transition-duration:.3s!important}div.extendify-sdk .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.extendify-sdk{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/)!important;--tw-ring-offset-width:0px!important;--tw-ring-offset-color:transparent!important;--tw-ring-color:var(--wp-admin-theme-color)!important}.extendify-sdk *,.extendify-sdk :after,.extendify-sdk :before{border:0 solid #e5e7eb!important;box-sizing:border-box!important}.extendify-sdk .button-focus:focus{--tw-shadow:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify-sdk .button-focus{outline:2px solid transparent!important;outline-offset:2px!important}.extendify-sdk .button-focus:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;--tw-ring-color:var(--wp-admin-theme-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.button-extendify-main{--tw-bg-opacity:1!important;background-color:rgba(11,74,67,var(--tw-bg-opacity))!important;cursor:pointer!important;white-space:nowrap!important}.button-extendify-main:hover{--tw-bg-opacity:1!important;background-color:rgba(5,49,44,var(--tw-bg-opacity))!important}.button-extendify-main:active{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}.button-extendify-main{padding:.375rem .75rem!important}.button-extendify-main,.button-extendify-main:active,.button-extendify-main:focus,.button-extendify-main:hover{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}.button-extendify-main{text-decoration:none!important;transition-duration:.15s!important;transition-duration:.2s!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.extendify-sdk .button-extendify-main:focus{--tw-shadow:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify-sdk .button-extendify-main{outline:2px solid transparent!important;outline-offset:2px!important}.extendify-sdk .button-extendify-main:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;--tw-ring-color:var(--wp-admin-theme-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.extendify-sdk input.button-extendify-main:focus,.extendify-sdk input.button-focus:focus,.extendify-sdk select.button-extendify-main:focus,.extendify-sdk select.button-focus:focus{--tw-shadow:0 0 #0000!important;border-color:transparent!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important;outline:2px solid transparent!important;outline-offset:2px!important}#extendify-search-input:not(:-moz-placeholder-shown)~svg{display:none!important}#extendify-search-input:not(:-ms-input-placeholder)~svg{display:none!important}#extendify-search-input:focus~svg,#extendify-search-input:not(:placeholder-shown)~svg{display:none!important}#extendify-search-input::-webkit-textfield-decoration-container{margin-right:.75rem!important}.extendify-sdk .components-panel__body>.components-panel__body-title{background-color:transparent!important;border-bottom:1px solid #e0e0e0!important}.extendify-sdk .components-modal__header{--tw-border-opacity:1!important;border-bottom-width:1px!important;border-color:rgba(221,221,221,var(--tw-border-opacity))!important}.extendify-special-input:-moz-placeholder-shown~label{--tw-text-opacity:1!important;color:rgba(148,148,148,var(--tw-text-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;top:.375rem!important}.extendify-special-input:-ms-input-placeholder~label{--tw-text-opacity:1!important;color:rgba(148,148,148,var(--tw-text-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;top:.375rem!important}.extendify-special-input:placeholder-shown~label{--tw-text-opacity:1!important;color:rgba(148,148,148,var(--tw-text-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;top:.375rem!important}.extendify-special-input:focus~label{--tw-text-opacity:1!important;color:rgba(11,74,67,var(--tw-text-opacity))!important;font-size:.75rem!important;line-height:1rem!important;top:-1rem!important}.block-editor-block-preview__content .block-editor-block-list__layout.is-root-container>.ext{max-width:none!important}.block-editor-block-list__layout.is-root-container .ext.block-editor-block-list__block{max-width:100%!important}.extendify-sdk .block-editor-block-preview__container{-webkit-animation:extendifyOpacityIn .2s cubic-bezier(.694,0,.335,1) 0ms forwards;animation:extendifyOpacityIn .2s cubic-bezier(.694,0,.335,1) 0ms forwards;opacity:0}.extendify-sdk .is-root-container>[data-align=full],.extendify-sdk .is-root-container>[data-align=full]>.wp-block,.extendify-sdk .is-root-container>[data-block]{margin-bottom:0!important;margin-top:0!important}.editor-styles-wrapper:not(.block-editor-writing-flow)>.is-root-container :where(.wp-block)[data-align=full]{margin-bottom:0!important;margin-top:0!important}@-webkit-keyframes extendifyOpacityIn{0%{opacity:0}to{opacity:1}}@keyframes extendifyOpacityIn{0%{opacity:0}to{opacity:1}}.extendify-sdk .with-light-shadow:after{--tw-shadow:inset 0 0 0 1px rgba(0,0,0,.1),0 3px 15px -3px rgba(0,0,0,.025),0 0 1px rgba(0,0,0,.02)!important;border-width:0!important;bottom:0!important;content:""!important;left:0!important;position:absolute!important;right:0!important;top:0!important}.extendify-sdk .with-light-shadow:after,.extendify-sdk .with-light-shadow:hover:after{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify-sdk .with-light-shadow:hover:after{--tw-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 3px 15px -3px rgba(0,0,0,.025),0 0 1px rgba(0,0,0,.02)!important}.components-panel__body.ext-type-control .components-panel__body-toggle{padding-left:0!important;padding-right:0!important}.components-panel__body.ext-type-control .components-panel__body-title{border-bottom-width:0!important;margin:0!important}.components-panel__body.ext-type-control .components-panel__body-title .components-button{--tw-text-opacity:1!important;border-bottom-width:0!important;color:rgba(95,95,95,var(--tw-text-opacity))!important;font-size:11px!important;font-weight:500!important;margin:0!important;padding-bottom:.5rem!important;padding-top:.5rem!important;text-transform:uppercase!important}.components-panel__body.ext-type-control .components-button .components-panel__arrow{--tw-text-opacity:1!important;color:rgba(95,95,95,var(--tw-text-opacity))!important;right:0!important}@media (min-width:600px){div.extendify-sdk .sm\:mx-0{margin-left:0!important;margin-right:0!important}div.extendify-sdk .sm\:mt-0{margin-top:0!important}div.extendify-sdk .sm\:mt-64{margin-top:16rem!important}div.extendify-sdk .sm\:block{display:block!important}div.extendify-sdk .sm\:flex{display:flex!important}div.extendify-sdk .sm\:h-auto{height:auto!important}div.extendify-sdk .sm\:w-56{width:14rem!important}div.extendify-sdk .sm\:w-auto{width:auto!important}div.extendify-sdk .sm\:translate-x-6{--tw-translate-x:1.5rem!important}div.extendify-sdk .sm\:translate-y-5{--tw-translate-y:1.25rem!important}div.extendify-sdk .sm\:space-x-12>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(3rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(3rem*var(--tw-space-x-reverse))!important}div.extendify-sdk .sm\:p-0{padding:0!important}div.extendify-sdk .sm\:pt-0{padding-top:0!important}div.extendify-sdk .sm\:pr-8{padding-right:2rem!important}div.extendify-sdk .sm\:pr-12{padding-right:3rem!important}div.extendify-sdk .sm\:pl-0{padding-left:0!important}div.extendify-sdk .sm\:pl-6{padding-left:1.5rem!important}div.extendify-sdk .sm\:pl-8{padding-left:2rem!important}}@media (min-width:782px){div.extendify-sdk .md\:m-0{margin:0!important}div.extendify-sdk .md\:ml-2{margin-left:.5rem!important}div.extendify-sdk .md\:block{display:block!important}div.extendify-sdk .md\:flex{display:flex!important}div.extendify-sdk .md\:w-6\/12{width:50%!important}div.extendify-sdk .md\:w-7\/12{width:58.333333%!important}div.extendify-sdk .md\:max-w-2xl{max-width:42rem!important}div.extendify-sdk .md\:rounded-l-md{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}div.extendify-sdk .md\:rounded-tr-none{border-top-right-radius:0!important}div.extendify-sdk .md\:pl-36{padding-left:9rem!important}div.extendify-sdk .md\:leading-3{line-height:.75rem!important}}@media (min-width:1080px){div.extendify-sdk .lg\:static{position:static!important}div.extendify-sdk .lg\:absolute{position:absolute!important}div.extendify-sdk .lg\:block{display:block!important}div.extendify-sdk .lg\:flex{display:flex!important}div.extendify-sdk .lg\:h-full{height:100%!important}div.extendify-sdk .lg\:w-72{width:18rem!important}div.extendify-sdk .lg\:overflow-hidden{overflow:hidden!important}div.extendify-sdk .lg\:p-16{padding:4rem!important}}
|
|
|
extendify-sdk/public/build/extendify-sdk.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
| 1 |
-
/*! For license information please see extendify-sdk.js.LICENSE.txt */
|
| 2 |
-
(()=>{var e,t={135:(e,t,n)=>{e.exports=n(248)},206:(e,t,n)=>{e.exports=n(57)},387:(e,t,n)=>{"use strict";var r=n(485),o=n(570),i=n(940),s=n(581),a=n(574),l=n(845),c=n(338),u=n(524),d=n(141),f=n(132);e.exports=function(e){return new Promise((function(t,n){var p,h=e.data,m=e.headers,x=e.responseType;function y(){e.cancelToken&&e.cancelToken.unsubscribe(p),e.signal&&e.signal.removeEventListener("abort",p)}r.isFormData(h)&&delete m["Content-Type"];var v=new XMLHttpRequest;if(e.auth){var g=e.auth.username||"",b=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";m.Authorization="Basic "+btoa(g+":"+b)}var w=a(e.baseURL,e.url);function j(){if(v){var r="getAllResponseHeaders"in v?l(v.getAllResponseHeaders()):null,i={data:x&&"text"!==x&&"json"!==x?v.response:v.responseText,status:v.status,statusText:v.statusText,headers:r,config:e,request:v};o((function(e){t(e),y()}),(function(e){n(e),y()}),i),v=null}}if(v.open(e.method.toUpperCase(),s(w,e.params,e.paramsSerializer),!0),v.timeout=e.timeout,"onloadend"in v?v.onloadend=j:v.onreadystatechange=function(){v&&4===v.readyState&&(0!==v.status||v.responseURL&&0===v.responseURL.indexOf("file:"))&&setTimeout(j)},v.onabort=function(){v&&(n(u("Request aborted",e,"ECONNABORTED",v)),v=null)},v.onerror=function(){n(u("Network Error",e,null,v)),v=null},v.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",r=e.transitional||d.transitional;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(u(t,e,r.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",v)),v=null},r.isStandardBrowserEnv()){var k=(e.withCredentials||c(w))&&e.xsrfCookieName?i.read(e.xsrfCookieName):void 0;k&&(m[e.xsrfHeaderName]=k)}"setRequestHeader"in v&&r.forEach(m,(function(e,t){void 0===h&&"content-type"===t.toLowerCase()?delete m[t]:v.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(v.withCredentials=!!e.withCredentials),x&&"json"!==x&&(v.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&v.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&v.upload&&v.upload.addEventListener("progress",e.onUploadProgress),(e.cancelToken||e.signal)&&(p=function(e){v&&(n(!e||e&&e.type?new f("canceled"):e),v.abort(),v=null)},e.cancelToken&&e.cancelToken.subscribe(p),e.signal&&(e.signal.aborted?p():e.signal.addEventListener("abort",p))),h||(h=null),v.send(h)}))}},57:(e,t,n)=>{"use strict";var r=n(485),o=n(875),i=n(29),s=n(941);var a=function e(t){var n=new i(t),a=o(i.prototype.request,n);return r.extend(a,i.prototype,n),r.extend(a,n),a.create=function(n){return e(s(t,n))},a}(n(141));a.Axios=i,a.Cancel=n(132),a.CancelToken=n(603),a.isCancel=n(475),a.VERSION=n(345).version,a.all=function(e){return Promise.all(e)},a.spread=n(739),a.isAxiosError=n(835),e.exports=a,e.exports.default=a},132:e=>{"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},603:(e,t,n)=>{"use strict";var r=n(132);function o(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;this.promise.then((function(e){if(n._listeners){var t,r=n._listeners.length;for(t=0;t<r;t++)n._listeners[t](e);n._listeners=null}})),this.promise.then=function(e){var t,r=new Promise((function(e){n.subscribe(e),t=e})).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e((function(e){n.reason||(n.reason=new r(e),t(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.prototype.subscribe=function(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]},o.prototype.unsubscribe=function(e){if(this._listeners){var t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}},o.source=function(){var e;return{token:new o((function(t){e=t})),cancel:e}},e.exports=o},475:e=>{"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},29:(e,t,n)=>{"use strict";var r=n(485),o=n(581),i=n(96),s=n(9),a=n(941),l=n(144),c=l.validators;function u(e){this.defaults=e,this.interceptors={request:new i,response:new i}}u.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=a(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=e.transitional;void 0!==t&&l.assertOptions(t,{silentJSONParsing:c.transitional(c.boolean),forcedJSONParsing:c.transitional(c.boolean),clarifyTimeoutError:c.transitional(c.boolean)},!1);var n=[],r=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(r=r&&t.synchronous,n.unshift(t.fulfilled,t.rejected))}));var o,i=[];if(this.interceptors.response.forEach((function(e){i.push(e.fulfilled,e.rejected)})),!r){var u=[s,void 0];for(Array.prototype.unshift.apply(u,n),u=u.concat(i),o=Promise.resolve(e);u.length;)o=o.then(u.shift(),u.shift());return o}for(var d=e;n.length;){var f=n.shift(),p=n.shift();try{d=f(d)}catch(e){p(e);break}}try{o=s(d)}catch(e){return Promise.reject(e)}for(;i.length;)o=o.then(i.shift(),i.shift());return o},u.prototype.getUri=function(e){return e=a(this.defaults,e),o(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(e){u.prototype[e]=function(t,n){return this.request(a(n||{},{method:e,url:t,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){u.prototype[e]=function(t,n,r){return this.request(a(r||{},{method:e,url:t,data:n}))}})),e.exports=u},96:(e,t,n)=>{"use strict";var r=n(485);function o(){this.handlers=[]}o.prototype.use=function(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},o.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},o.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=o},574:(e,t,n)=>{"use strict";var r=n(642),o=n(288);e.exports=function(e,t){return e&&!r(t)?o(e,t):t}},524:(e,t,n)=>{"use strict";var r=n(953);e.exports=function(e,t,n,o,i){var s=new Error(e);return r(s,t,n,o,i)}},9:(e,t,n)=>{"use strict";var r=n(485),o=n(212),i=n(475),s=n(141),a=n(132);function l(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new a("canceled")}e.exports=function(e){return l(e),e.headers=e.headers||{},e.data=o.call(e,e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||s.adapter)(e).then((function(t){return l(e),t.data=o.call(e,t.data,t.headers,e.transformResponse),t}),(function(t){return i(t)||(l(e),t&&t.response&&(t.response.data=o.call(e,t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},953:e=>{"use strict";e.exports=function(e,t,n,r,o){return e.config=t,n&&(e.code=n),e.request=r,e.response=o,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}},e}},941:(e,t,n)=>{"use strict";var r=n(485);e.exports=function(e,t){t=t||{};var n={};function o(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function i(n){return r.isUndefined(t[n])?r.isUndefined(e[n])?void 0:o(void 0,e[n]):o(e[n],t[n])}function s(e){if(!r.isUndefined(t[e]))return o(void 0,t[e])}function a(n){return r.isUndefined(t[n])?r.isUndefined(e[n])?void 0:o(void 0,e[n]):o(void 0,t[n])}function l(n){return n in t?o(e[n],t[n]):n in e?o(void 0,e[n]):void 0}var c={url:s,method:s,data:s,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:l};return r.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){var t=c[e]||i,o=t(e);r.isUndefined(o)&&t!==l||(n[e]=o)})),n}},570:(e,t,n)=>{"use strict";var r=n(524);e.exports=function(e,t,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},212:(e,t,n)=>{"use strict";var r=n(485),o=n(141);e.exports=function(e,t,n){var i=this||o;return r.forEach(n,(function(n){e=n.call(i,e,t)})),e}},141:(e,t,n)=>{"use strict";var r=n(61),o=n(485),i=n(446),s=n(953),a={"Content-Type":"application/x-www-form-urlencoded"};function l(e,t){!o.isUndefined(e)&&o.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var c,u={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(c=n(387)),c),transformRequest:[function(e,t){return i(t,"Accept"),i(t,"Content-Type"),o.isFormData(e)||o.isArrayBuffer(e)||o.isBuffer(e)||o.isStream(e)||o.isFile(e)||o.isBlob(e)?e:o.isArrayBufferView(e)?e.buffer:o.isURLSearchParams(e)?(l(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):o.isObject(e)||t&&"application/json"===t["Content-Type"]?(l(t,"application/json"),function(e,t,n){if(o.isString(e))try{return(t||JSON.parse)(e),o.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||u.transitional,n=t&&t.silentJSONParsing,r=t&&t.forcedJSONParsing,i=!n&&"json"===this.responseType;if(i||r&&o.isString(e)&&e.length)try{return JSON.parse(e)}catch(e){if(i){if("SyntaxError"===e.name)throw s(e,this,"E_JSON_PARSE");throw e}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};o.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),o.forEach(["post","put","patch"],(function(e){u.headers[e]=o.merge(a)})),e.exports=u},345:e=>{e.exports={version:"0.24.0"}},875:e=>{"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},581:(e,t,n)=>{"use strict";var r=n(485);function o(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var s=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),s.push(o(t)+"="+o(e))})))})),i=s.join("&")}if(i){var a=e.indexOf("#");-1!==a&&(e=e.slice(0,a)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},288:e=>{"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},940:(e,t,n)=>{"use strict";var r=n(485);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,o,i,s){var a=[];a.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),r.isString(o)&&a.push("path="+o),r.isString(i)&&a.push("domain="+i),!0===s&&a.push("secure"),document.cookie=a.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},642:e=>{"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},835:e=>{"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},338:(e,t,n)=>{"use strict";var r=n(485);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=o(window.location.href),function(t){var n=r.isString(t)?o(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},446:(e,t,n)=>{"use strict";var r=n(485);e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},845:(e,t,n)=>{"use strict";var r=n(485),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,i,s={};return e?(r.forEach(e.split("\n"),(function(e){if(i=e.indexOf(":"),t=r.trim(e.substr(0,i)).toLowerCase(),n=r.trim(e.substr(i+1)),t){if(s[t]&&o.indexOf(t)>=0)return;s[t]="set-cookie"===t?(s[t]?s[t]:[]).concat([n]):s[t]?s[t]+", "+n:n}})),s):s}},739:e=>{"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},144:(e,t,n)=>{"use strict";var r=n(345).version,o={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){o[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}}));var i={};o.transitional=function(e,t,n){function o(e,t){return"[Axios v"+r+"] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(n,r,s){if(!1===e)throw new Error(o(r," has been removed"+(t?" in "+t:"")));return t&&!i[r]&&(i[r]=!0,console.warn(o(r," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,r,s)}},e.exports={assertOptions:function(e,t,n){if("object"!=typeof e)throw new TypeError("options must be an object");for(var r=Object.keys(e),o=r.length;o-- >0;){var i=r[o],s=t[i];if(s){var a=e[i],l=void 0===a||s(a,i,e);if(!0!==l)throw new TypeError("option "+i+" must be "+l)}else if(!0!==n)throw Error("Unknown option "+i)}},validators:o}},485:(e,t,n)=>{"use strict";var r=n(875),o=Object.prototype.toString;function i(e){return"[object Array]"===o.call(e)}function s(e){return void 0===e}function a(e){return null!==e&&"object"==typeof e}function l(e){if("[object Object]"!==o.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function c(e){return"[object Function]"===o.call(e)}function u(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),i(e))for(var n=0,r=e.length;n<r;n++)t.call(null,e[n],n,e);else for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.call(null,e[o],o,e)}e.exports={isArray:i,isArrayBuffer:function(e){return"[object ArrayBuffer]"===o.call(e)},isBuffer:function(e){return null!==e&&!s(e)&&null!==e.constructor&&!s(e.constructor)&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)},isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:a,isPlainObject:l,isUndefined:s,isDate:function(e){return"[object Date]"===o.call(e)},isFile:function(e){return"[object File]"===o.call(e)},isBlob:function(e){return"[object Blob]"===o.call(e)},isFunction:c,isStream:function(e){return a(e)&&c(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:u,merge:function e(){var t={};function n(n,r){l(t[r])&&l(n)?t[r]=e(t[r],n):l(n)?t[r]=e({},n):i(n)?t[r]=n.slice():t[r]=n}for(var r=0,o=arguments.length;r<o;r++)u(arguments[r],n);return t},extend:function(e,t,n){return u(t,(function(t,o){e[o]=n&&"function"==typeof t?r(t,n):t})),e},trim:function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e}}},353:(e,t,n)=>{"use strict";const r=wp.element;var o=n(363),i=n.n(o);function s(e){let t;const n=new Set,r=(e,r)=>{const o="function"==typeof e?e(t):e;if(o!==t){const e=t;t=r?o:Object.assign({},t,o),n.forEach((n=>n(t,e)))}},o=()=>t,i={setState:r,getState:o,subscribe:(e,r,i)=>r||i?((e,r=o,i=Object.is)=>{console.warn("[DEPRECATED] Please use `subscribeWithSelector` middleware");let s=r(t);function a(){const n=r(t);if(!i(s,n)){const t=s;e(s=n,t)}}return n.add(a),()=>n.delete(a)})(e,r,i):(n.add(e),()=>n.delete(e)),destroy:()=>n.clear()};return t=e(r,o,i),i}const a="undefined"==typeof window||!window.navigator||/ServerSideRendering|^Deno\//.test(window.navigator.userAgent)?o.useEffect:o.useLayoutEffect;function l(e){const t="function"==typeof e?s(e):e,n=(e=t.getState,n=Object.is)=>{const[,r]=(0,o.useReducer)((e=>e+1),0),i=t.getState(),s=(0,o.useRef)(i),l=(0,o.useRef)(e),c=(0,o.useRef)(n),u=(0,o.useRef)(!1),d=(0,o.useRef)();let f;void 0===d.current&&(d.current=e(i));let p=!1;(s.current!==i||l.current!==e||c.current!==n||u.current)&&(f=e(i),p=!n(d.current,f)),a((()=>{p&&(d.current=f),s.current=i,l.current=e,c.current=n,u.current=!1}));const h=(0,o.useRef)(i);a((()=>{const e=()=>{try{const e=t.getState(),n=l.current(e);c.current(d.current,n)||(s.current=e,d.current=n,r())}catch(e){u.current=!0,r()}},n=t.subscribe(e);return t.getState()!==h.current&&e(),n}),[]);const m=p?f:d.current;return(0,o.useDebugValue)(m),m};return Object.assign(n,t),n[Symbol.iterator]=function(){console.warn("[useStore, api] = create() is deprecated and will be removed in v4");const e=[n,t];return{next(){const t=e.length<=0;return{value:e.shift(),done:t}}}},n}var c=Object.defineProperty,u=Object.getOwnPropertySymbols,d=Object.prototype.hasOwnProperty,f=Object.prototype.propertyIsEnumerable,p=(e,t,n)=>t in e?c(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,h=(e,t)=>{for(var n in t||(t={}))d.call(t,n)&&p(e,n,t[n]);if(u)for(var n of u(t))f.call(t,n)&&p(e,n,t[n]);return e};Symbol();const m=e=>t=>{try{const n=e(t);return n instanceof Promise?n:{then:e=>m(e)(n),catch(e){return this}}}catch(e){return{then(e){return this},catch:t=>m(t)(e)}}},x=(e,t)=>(n,r,o)=>{let i=h({getStorage:()=>localStorage,serialize:JSON.stringify,deserialize:JSON.parse,partialize:e=>e,version:0,merge:(e,t)=>h(h({},t),e)},t);(i.blacklist||i.whitelist)&&console.warn(`The ${i.blacklist?"blacklist":"whitelist"} option is deprecated and will be removed in the next version. Please use the 'partialize' option instead.`);let s=!1;const a=new Set,l=new Set;let c;try{c=i.getStorage()}catch(e){}if(!c)return e(((...e)=>{console.warn(`[zustand persist middleware] Unable to update item '${i.name}', the given storage is currently unavailable.`),n(...e)}),r,o);c.removeItem||console.warn(`[zustand persist middleware] The given storage for item '${i.name}' does not contain a 'removeItem' method, which will be required in v4.`);const u=m(i.serialize),d=()=>{const e=i.partialize(h({},r()));let t;i.whitelist&&Object.keys(e).forEach((t=>{var n;!(null==(n=i.whitelist)?void 0:n.includes(t))&&delete e[t]})),i.blacklist&&i.blacklist.forEach((t=>delete e[t]));const n=u({state:e,version:i.version}).then((e=>c.setItem(i.name,e))).catch((e=>{t=e}));if(t)throw t;return n},f=o.setState;o.setState=(e,t)=>{f(e,t),d()};const p=e(((...e)=>{n(...e),d()}),r,o);let x;const y=()=>{var e;if(!c)return;s=!1,a.forEach((e=>e(r())));const t=(null==(e=i.onRehydrateStorage)?void 0:e.call(i,r()))||void 0;return m(c.getItem.bind(c))(i.name).then((e=>{if(e)return i.deserialize(e)})).then((e=>{if(e){if("number"!=typeof e.version||e.version===i.version)return e.state;if(i.migrate)return i.migrate(e.state,e.version);console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}})).then((e=>(x=i.merge(e,p),n(x,!0),d()))).then((()=>{null==t||t(x,void 0),s=!0,l.forEach((e=>e(x)))})).catch((e=>{null==t||t(void 0,e)}))};return o.persist={setOptions:e=>{i=h(h({},i),e),e.getStorage&&(c=e.getStorage())},clearStorage:()=>{var e;null==(e=null==c?void 0:c.removeItem)||e.call(c,i.name)},rehydrate:()=>y(),hasHydrated:()=>s,onHydrate:e=>(a.add(e),()=>{a.delete(e)}),onFinishHydration:e=>(l.add(e),()=>{l.delete(e)})},y(),x||p};var y=l(x((function(e){return{open:!1,metaData:{},currentTaxonomies:{},currentType:"pattern",settingsModal:!1,updateCurrentTaxonomies:function(t){return e({currentTaxonomies:Object.assign({},t)})},updateCurrentType:function(t){return e({currentType:t})},setOpen:function(t){e({open:t})}}}),{name:"extendify-global-state"})),v=n(135),g=n.n(v),b=n(206),w=n.n(b)().create({baseURL:window.extendifySdkData.root,headers:{"X-WP-Nonce":window.extendifySdkData.nonce,"X-Requested-With":"XMLHttpRequest","X-Extendify":!0}});function j(e){return Object.prototype.hasOwnProperty.call(e,"data")?e.data:e}w.interceptors.response.use((function(e){return function(e){return Object.prototype.hasOwnProperty.call(e,"soft_error")&&window.dispatchEvent(new CustomEvent("extendify-sdk::softerror-encountered",{detail:e.soft_error,bubbles:!0})),e}(j(e))}),(function(e){return function(e){if(e.response)return console.error(e.response),Promise.reject(j(e.response))}(e)})),w.interceptors.request.use((function(e){return function(e){return e.headers["X-Extendify-Dev-Mode"]=window.location.search.indexOf("DEVMODE")>-1,e.headers["X-Extendify-Local-Mode"]=window.location.search.indexOf("LOCALMODE")>-1,e}(function(e){return e.data&&(e.data.remaining_imports=D.getState().remainingImports(),e.data.entry_point=D.getState().entryPoint,e.data.total_imports=D.getState().imports),e}(e))}),(function(e){return e}));var k=function(){return w.get("user")},O=function(e,t){var n=new FormData;return n.append("email",e),n.append("key",t),w.post("login",n,{headers:{"Content-Type":"multipart/form-data"}})},S=function(e){var t=new FormData;return t.append("data",JSON.stringify(e)),w.post("user",t,{headers:{"Content-Type":"multipart/form-data"}})},C=function(e){var t=new FormData;return t.append("email",e),w.post("register-mailing-list",t,{headers:{"Content-Type":"multipart/form-data"}})};function _(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_(Object(n),!0).forEach((function(t){N(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function N(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function A(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return P(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return P(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function T(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function I(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){T(i,r,o,s,a,"next",e)}function a(e){T(i,r,o,s,a,"throw",e)}s(void 0)}))}}var L,M,R={getItem:(M=I(g().mark((function e(){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,k();case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)}))),function(){return M.apply(this,arguments)}),setItem:(L=I(g().mark((function e(t,n){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,S(n);case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)}))),function(e,t){return L.apply(this,arguments)})},D=l(x((function(e,t){return{email:"",apiKey:"",imports:0,uuid:"",sdkPartner:"",registration:{email:""},noticesDismissedAt:{},allowedImports:0,entryPoint:"not-set",enabled:null===window.extendifySdkData.sitesettings||(null===(n=window.extendifySdkData)||void 0===n||null===(r=n.sitesettings)||void 0===r||null===(o=r.state)||void 0===o?void 0:o.enabled),canInstallPlugins:!1,canActivatePlugins:!1,preferredOptions:{taxonomies:{},type:"",search:""},preferredOptionsHistory:{siteType:[]},incrementImports:function(){return e({imports:t().imports+1})},canImport:function(){return!!t().apiKey||Number(t().imports)<Number(t().allowedImports)},remainingImports:function(){if(t().apiKey)return"unlimited";var e=Number(t().allowedImports)-Number(t().imports);return e>0?e:0},updateSiteType:function(n){if(t().updatePreferredOption("tax_categories",n),n&&"Unknown"!==n){var r=new Set([n].concat(A(t().preferredOptionsHistory.siteType)));e({preferredOptionsHistory:Object.assign({},t().preferredOptionsHistory,{siteType:A(r).slice(0,3)})})}},updatePreferredOption:function(n,r){var o,i,s;Object.prototype.hasOwnProperty.call(t().preferredOptions,n)||(r=Object.assign({},null!==(i=null===(s=t().preferredOptions)||void 0===s?void 0:s.taxonomies)&&void 0!==i?i:{},N({},n,r)),n="taxonomies");var a="type"==n&&r!==(null===(o=t().preferredOptions)||void 0===o?void 0:o.type);e({preferredOptions:E({},Object.assign({},t().preferredOptions,N({},n,r),a?{taxonomies:{}}:{}))})}};var n,r,o}),{name:"extendify-user",getStorage:function(){return R}}));function F(e){return function(e){if(Array.isArray(e))return B(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return B(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return B(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function B(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var U=l(x((function(e,t){return{taxonomies:{},openedTaxonomies:[],setTaxonomies:function(t){return e({taxonomies:t})},toggleOpenedTaxonomy:function(n,r){var o=t().openedTaxonomies;e({openedTaxonomies:r?[].concat(F(o),[n]):F(o.filter((function(e){return e!=n})))})}}}),{name:"extendify-taxonomies"}));function z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function q(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?z(Object(n),!0).forEach((function(t){V(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):z(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function $(e){return function(e){if(Array.isArray(e))return H(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return H(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var W,J,G=l((function(e,t){return{templates:[],skipNextFetch:!1,fetchToken:null,taxonomyDefaultState:{},nextPage:"",searchParams:{taxonomies:{},type:"pattern"},initTemplateData:function(){e({activeTemplate:{}}),t().setupDefaultTaxonomies(),t().updateType(y.getState().currentType)},appendTemplates:function(n){return e({templates:$(new Map([].concat($(t().templates),$(n)).map((function(e){return[e.id,e]}))).values())})},setupDefaultTaxonomies:function(){var n,r,o,i,s=U.getState().taxonomies,a=Object.entries(s).reduce((function(e,t){return e[t[0]]=function(e){var t,n,r;return"tax_categories"===e?"Unknown":null!==(t=null===(n=U.getState())||void 0===n||null===(r=n.taxonomies[e][0])||void 0===r?void 0:r.term)&&void 0!==t?t:void 0}(t[0]),e}),{}),l={};a=Object.assign({},a,null!==(n=null===(r=D.getState().preferredOptions)||void 0===r?void 0:r.taxonomies)&&void 0!==n?n:{},null!==(o=null===(i=y.getState())||void 0===i?void 0:i.currentTaxonomies)&&void 0!==o?o:{}),l.taxonomies=Object.assign({},a),e({taxonomyDefaultState:a,searchParams:q({},Object.assign(t().searchParams,l))})},updateTaxonomies:function(e){var n,r,o={};(o.taxonomies=Object.assign({},t().searchParams.taxonomies,e),null!=o&&null!==(n=o.taxonomies)&&void 0!==n&&n.tax_categories)&&D.getState().updatePreferredOption("tax_categories",null==o||null===(r=o.taxonomies)||void 0===r?void 0:r.tax_categories);y.getState().updateCurrentTaxonomies(null==o?void 0:o.taxonomies),t().updateSearchParams(o)},updateType:function(e){y.getState().updateCurrentType(e),t().updateSearchParams({type:e})},updateSearchParams:function(n){null!=n&&n.taxonomies&&!Object.keys(n.taxonomies).length&&(n.taxonomies=t().taxonomyDefaultState);var r=Object.assign({},t().searchParams,n);JSON.stringify(r)!==JSON.stringify(t().searchParams)&&e({templates:[],nextPage:"",searchParams:r})}}}));function K(){return K=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},K.apply(this,arguments)}function Z(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function Y(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function X(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Y(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Y(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}function Q(e,t){if(e in t){for(var n=t[e],r=arguments.length,o=new Array(r>2?r-2:0),i=2;i<r;i++)o[i-2]=arguments[i];return"function"==typeof n?n.apply(void 0,o):n}var s=new Error('Tried to handle "'+e+'" but there is no handler defined. Only defined handlers are: '+Object.keys(t).map((function(e){return'"'+e+'"'})).join(", ")+".");throw Error.captureStackTrace&&Error.captureStackTrace(s,Q),s}function ee(e){var t=e.props,n=e.slot,r=e.defaultTag,o=e.features,i=e.visible,s=void 0===i||i,a=e.name;if(s)return te(t,n,r,a);var l=null!=o?o:W.None;if(l&W.Static){var c=t.static,u=void 0!==c&&c,d=Z(t,["static"]);if(u)return te(d,n,r,a)}if(l&W.RenderStrategy){var f,p=t.unmount,h=void 0===p||p,m=Z(t,["unmount"]);return Q(h?J.Unmount:J.Hidden,((f={})[J.Unmount]=function(){return null},f[J.Hidden]=function(){return te(K({},m,{hidden:!0,style:{display:"none"}}),n,r,a)},f))}return te(t,n,r,a)}function te(e,t,n,r){var i;void 0===t&&(t={});var s=re(e,["unmount","static"]),a=s.as,l=void 0===a?n:a,c=s.children,u=s.refName,d=void 0===u?"ref":u,f=Z(s,["as","children","refName"]),p=void 0!==e.ref?((i={})[d]=e.ref,i):{},h="function"==typeof c?c(t):c;if(f.className&&"function"==typeof f.className&&(f.className=f.className(t)),l===o.Fragment&&Object.keys(f).length>0){if(!(0,o.isValidElement)(h)||Array.isArray(h)&&h.length>1)throw new Error(['Passing props on "Fragment"!',"","The current component <"+r+' /> is rendering a "Fragment".',"However we need to passthrough the following props:",Object.keys(f).map((function(e){return" - "+e})).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((function(e){return" - "+e})).join("\n")].join("\n"));return(0,o.cloneElement)(h,Object.assign({},function(e,t,n){for(var r,o=Object.assign({},e),i=function(){var n,i=r.value;void 0!==e[i]&&void 0!==t[i]&&Object.assign(o,((n={})[i]=function(n){n.defaultPrevented||e[i](n),n.defaultPrevented||t[i](n)},n))},s=X(n);!(r=s()).done;)i();return o}(function(e){var t=Object.assign({},e);for(var n in t)void 0===t[n]&&delete t[n];return t}(re(f,["ref"])),h.props,["onClick"]),p))}return(0,o.createElement)(l,Object.assign({},re(f,["ref"]),l!==o.Fragment&&p),h)}function ne(e){var t;return Object.assign((0,o.forwardRef)(e),{displayName:null!=(t=e.displayName)?t:e.name})}function re(e,t){void 0===t&&(t=[]);for(var n,r=Object.assign({},e),o=X(t);!(n=o()).done;){var i=n.value;i in r&&delete r[i]}return r}!function(e){e[e.None=0]="None",e[e.RenderStrategy=1]="RenderStrategy",e[e.Static=2]="Static"}(W||(W={})),function(e){e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden"}(J||(J={}));var oe="undefined"!=typeof window?o.useLayoutEffect:o.useEffect,ie={serverHandoffComplete:!1};function se(){var e=(0,o.useState)(ie.serverHandoffComplete),t=e[0],n=e[1];return(0,o.useEffect)((function(){!0!==t&&n(!0)}),[t]),(0,o.useEffect)((function(){!1===ie.serverHandoffComplete&&(ie.serverHandoffComplete=!0)}),[]),t}var ae=0;function le(){return++ae}function ce(){var e=se(),t=(0,o.useState)(e?le:null),n=t[0],r=t[1];return oe((function(){null===n&&r(le())}),[n]),null!=n?""+n:void 0}function ue(){var e=(0,o.useRef)(!1);return(0,o.useEffect)((function(){return e.current=!0,function(){e.current=!1}}),[]),e}var de,fe,pe=(0,o.createContext)(null);function he(){return(0,o.useContext)(pe)}function me(e){var t=e.value,n=e.children;return i().createElement(pe.Provider,{value:t},n)}function xe(){var e=[],t={requestAnimationFrame:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(){var e=requestAnimationFrame.apply(void 0,arguments);t.add((function(){return cancelAnimationFrame(e)}))})),nextFrame:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.requestAnimationFrame((function(){t.requestAnimationFrame.apply(t,n)}))},setTimeout:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(){var e=setTimeout.apply(void 0,arguments);t.add((function(){return clearTimeout(e)}))})),add:function(t){e.push(t)},dispose:function(){for(var t,n=X(e.splice(0));!(t=n()).done;){var r=t.value;r()}}};return t}function ye(e){for(var t,n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];e&&r.length>0&&(t=e.classList).add.apply(t,r)}function ve(e){for(var t,n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];e&&r.length>0&&(t=e.classList).remove.apply(t,r)}function ge(e,t,n,r,o,i){var s=xe(),a=void 0!==i?function(e){var t={called:!1};return function(){if(!t.called)return t.called=!0,e.apply(void 0,arguments)}}(i):function(){};return ve.apply(void 0,[e].concat(o)),ye.apply(void 0,[e].concat(t,n)),s.nextFrame((function(){ve.apply(void 0,[e].concat(n)),ye.apply(void 0,[e].concat(r)),s.add(function(e,t){var n=xe();if(!e)return n.dispose;var r=getComputedStyle(e),o=[r.transitionDuration,r.transitionDelay].map((function(e){var t=e.split(",").filter(Boolean).map((function(e){return e.includes("ms")?parseFloat(e):1e3*parseFloat(e)})).sort((function(e,t){return t-e}))[0];return void 0===t?0:t})),i=o[0],s=o[1];return 0!==i?n.setTimeout((function(){t(fe.Finished)}),i+s):t(fe.Finished),n.add((function(){return t(fe.Cancelled)})),n.dispose}(e,(function(n){return ve.apply(void 0,[e].concat(r,t)),ye.apply(void 0,[e].concat(o)),a(n)})))})),s.add((function(){return ve.apply(void 0,[e].concat(t,n,r,o))})),s.add((function(){return a(fe.Cancelled)})),s.dispose}function be(e){return void 0===e&&(e=""),(0,o.useMemo)((function(){return e.split(" ").filter((function(e){return e.trim().length>1}))}),[e])}pe.displayName="OpenClosedContext",function(e){e[e.Open=0]="Open",e[e.Closed=1]="Closed"}(de||(de={})),function(e){e.Finished="finished",e.Cancelled="cancelled"}(fe||(fe={}));var we,je=(0,o.createContext)(null);je.displayName="TransitionContext",function(e){e.Visible="visible",e.Hidden="hidden"}(we||(we={}));var ke=(0,o.createContext)(null);function Oe(e){return"children"in e?Oe(e.children):e.current.filter((function(e){return e.state===we.Visible})).length>0}function Se(e){var t=(0,o.useRef)(e),n=(0,o.useRef)([]),r=ue();(0,o.useEffect)((function(){t.current=e}),[e]);var i=(0,o.useCallback)((function(e,o){var i;void 0===o&&(o=J.Hidden);var s=n.current.findIndex((function(t){return t.id===e}));-1!==s&&(Q(o,((i={})[J.Unmount]=function(){n.current.splice(s,1)},i[J.Hidden]=function(){n.current[s].state=we.Hidden},i)),!Oe(n)&&r.current&&(null==t.current||t.current()))}),[t,r,n]),s=(0,o.useCallback)((function(e){var t=n.current.find((function(t){return t.id===e}));return t?t.state!==we.Visible&&(t.state=we.Visible):n.current.push({id:e,state:we.Visible}),function(){return i(e,J.Unmount)}}),[n,i]);return(0,o.useMemo)((function(){return{children:n,register:s,unregister:i}}),[s,i,n])}function Ce(){}ke.displayName="NestingContext";var _e=["beforeEnter","afterEnter","beforeLeave","afterLeave"];function Ee(e){for(var t,n={},r=X(_e);!(t=r()).done;){var o,i=t.value;n[i]=null!=(o=e[i])?o:Ce}return n}var Ne,Ae=W.RenderStrategy;function Pe(e){var t,n=e.beforeEnter,r=e.afterEnter,s=e.beforeLeave,a=e.afterLeave,l=e.enter,c=e.enterFrom,u=e.enterTo,d=e.entered,f=e.leave,p=e.leaveFrom,h=e.leaveTo,m=Z(e,["beforeEnter","afterEnter","beforeLeave","afterLeave","enter","enterFrom","enterTo","entered","leave","leaveFrom","leaveTo"]),x=(0,o.useRef)(null),y=(0,o.useState)(we.Visible),v=y[0],g=y[1],b=m.unmount?J.Unmount:J.Hidden,w=function(){var e=(0,o.useContext)(je);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),j=w.show,k=w.appear,O=w.initial,S=function(){var e=(0,o.useContext)(ke);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),C=S.register,_=S.unregister,E=ce(),N=(0,o.useRef)(!1),A=Se((function(){N.current||(g(we.Hidden),_(E),F.current.afterLeave())}));oe((function(){if(E)return C(E)}),[C,E]),oe((function(){var e;b===J.Hidden&&E&&(j&&v!==we.Visible?g(we.Visible):Q(v,((e={})[we.Hidden]=function(){return _(E)},e[we.Visible]=function(){return C(E)},e)))}),[v,E,C,_,j,b]);var P=be(l),T=be(c),I=be(u),L=be(d),M=be(f),R=be(p),D=be(h),F=function(e){var t=(0,o.useRef)(Ee(e));return(0,o.useEffect)((function(){t.current=Ee(e)}),[e]),t}({beforeEnter:n,afterEnter:r,beforeLeave:s,afterLeave:a}),B=se();(0,o.useEffect)((function(){if(B&&v===we.Visible&&null===x.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[x,v,B]);var U=O&&!k;oe((function(){var e=x.current;if(e&&!U)return N.current=!0,j&&F.current.beforeEnter(),j||F.current.beforeLeave(),j?ge(e,P,T,I,L,(function(e){N.current=!1,e===fe.Finished&&F.current.afterEnter()})):ge(e,M,R,D,L,(function(e){N.current=!1,e===fe.Finished&&(Oe(A)||(g(we.Hidden),_(E),F.current.afterLeave()))}))}),[F,E,N,_,A,x,U,j,P,T,I,M,R,D]);var z={ref:x},q=m;return i().createElement(ke.Provider,{value:A},i().createElement(me,{value:Q(v,(t={},t[we.Visible]=de.Open,t[we.Hidden]=de.Closed,t))},ee({props:K({},q,z),defaultTag:"div",features:Ae,visible:v===we.Visible,name:"Transition.Child"})))}function Te(e){var t,n=e.show,r=e.appear,s=void 0!==r&&r,a=e.unmount,l=Z(e,["show","appear","unmount"]),c=he();void 0===n&&null!==c&&(n=Q(c,((t={})[de.Open]=!0,t[de.Closed]=!1,t)));if(![!0,!1].includes(n))throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");var u=(0,o.useState)(n?we.Visible:we.Hidden),d=u[0],f=u[1],p=Se((function(){f(we.Hidden)})),h=function(){var e=(0,o.useRef)(!0);return(0,o.useEffect)((function(){e.current=!1}),[]),e.current}(),m=(0,o.useMemo)((function(){return{show:n,appear:s||!h,initial:h}}),[n,s,h]);(0,o.useEffect)((function(){n?f(we.Visible):Oe(p)||f(we.Hidden)}),[n,p]);var x={unmount:a};return i().createElement(ke.Provider,{value:p},i().createElement(je.Provider,{value:m},ee({props:K({},x,{as:o.Fragment,children:i().createElement(Pe,Object.assign({},x,l))}),defaultTag:o.Fragment,features:Ae,visible:d===we.Visible,name:"Transition"})))}function Ie(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=(0,o.useRef)(t);return(0,o.useEffect)((function(){r.current=t}),[t]),(0,o.useCallback)((function(e){for(var t,n=X(r.current);!(t=n()).done;){var o=t.value;null!=o&&("function"==typeof o?o(e):o.current=e)}}),[r])}function Le(e){for(var t,n,r=e.parentElement,o=null;r&&!(r instanceof HTMLFieldSetElement);)r instanceof HTMLLegendElement&&(o=r),r=r.parentElement;var i=null!=(t=""===(null==(n=r)?void 0:n.getAttribute("disabled")))&&t;return(!i||!function(e){if(!e)return!1;var t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(o))&&i}function Me(e,t,n){var r=(0,o.useRef)(t);r.current=t,(0,o.useEffect)((function(){function t(e){r.current.call(window,e)}return window.addEventListener(e,t,n),function(){return window.removeEventListener(e,t,n)}}),[e,n])}Te.Child=function(e){var t=null!==(0,o.useContext)(je),n=null!==he();return!t&&n?i().createElement(Te,Object.assign({},e)):i().createElement(Pe,Object.assign({},e))},Te.Root=Te,function(e){e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab"}(Ne||(Ne={}));var Re,De,Fe,Be,Ue,ze=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((function(e){return e+":not([tabindex='-1'])"})).join(",");function qe(e){null==e||e.focus({preventScroll:!0})}function Ve(e,t){var n=Array.isArray(e)?e:function(e){return void 0===e&&(e=document.body),null==e?[]:Array.from(e.querySelectorAll(ze))}(e),r=document.activeElement,o=function(){if(t&(Re.First|Re.Next))return Fe.Next;if(t&(Re.Previous|Re.Last))return Fe.Previous;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")}(),i=function(){if(t&Re.First)return 0;if(t&Re.Previous)return Math.max(0,n.indexOf(r))-1;if(t&Re.Next)return Math.max(0,n.indexOf(r))+1;if(t&Re.Last)return n.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")}(),s=t&Re.NoScroll?{preventScroll:!0}:{},a=0,l=n.length,c=void 0;do{var u;if(a>=l||a+l<=0)return De.Error;var d=i+a;if(t&Re.WrapAround)d=(d+l)%l;else{if(d<0)return De.Underflow;if(d>=l)return De.Overflow}null==(u=c=n[d])||u.focus(s),a+=o}while(c!==document.activeElement);return c.hasAttribute("tabindex")||c.setAttribute("tabindex","0"),De.Success}function $e(e,t,n){void 0===t&&(t=Ue.All);var r=void 0===n?{}:n,i=r.initialFocus,s=r.containers,a=(0,o.useRef)("undefined"!=typeof window?document.activeElement:null),l=(0,o.useRef)(null),c=ue(),u=Boolean(t&Ue.RestoreFocus),d=Boolean(t&Ue.InitialFocus);(0,o.useEffect)((function(){u&&(a.current=document.activeElement)}),[u]),(0,o.useEffect)((function(){if(u)return function(){qe(a.current),a.current=null}}),[u]),(0,o.useEffect)((function(){if(d&&e.current){var t=document.activeElement;if(null==i?void 0:i.current){if((null==i?void 0:i.current)===t)return void(l.current=t)}else if(e.current.contains(t))return void(l.current=t);(null==i?void 0:i.current)?qe(i.current):Ve(e.current,Re.First)===De.Error&&console.warn("There are no focusable elements inside the <FocusTrap />"),l.current=document.activeElement}}),[e,i,d]),Me("keydown",(function(n){t&Ue.TabLock&&e.current&&n.key===Ne.Tab&&(n.preventDefault(),Ve(e.current,(n.shiftKey?Re.Previous:Re.Next)|Re.WrapAround)===De.Success&&(l.current=document.activeElement))})),Me("focus",(function(n){if(t&Ue.FocusLock){var r=new Set(null==s?void 0:s.current);if(r.add(e),r.size){var o=l.current;if(o&&c.current){var i=n.target;i&&i instanceof HTMLElement?!function(e,t){for(var n,r=X(e);!(n=r()).done;){var o;if(null==(o=n.value.current)?void 0:o.contains(t))return!0}return!1}(r,i)?(n.preventDefault(),n.stopPropagation(),qe(o)):(l.current=i,qe(i)):qe(l.current)}}}}),!0)}!function(e){e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll"}(Re||(Re={})),function(e){e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow"}(De||(De={})),function(e){e[e.Previous=-1]="Previous",e[e.Next=1]="Next"}(Fe||(Fe={})),function(e){e[e.Strict=0]="Strict",e[e.Loose=1]="Loose"}(Be||(Be={})),function(e){e[e.None=1]="None",e[e.InitialFocus=2]="InitialFocus",e[e.TabLock=4]="TabLock",e[e.FocusLock=8]="FocusLock",e[e.RestoreFocus=16]="RestoreFocus",e[e.All=30]="All"}(Ue||(Ue={}));var He=new Set,We=new Map;function Je(e){e.setAttribute("aria-hidden","true"),e.inert=!0}function Ge(e){var t=We.get(e);t&&(null===t["aria-hidden"]?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",t["aria-hidden"]),e.inert=t.inert)}var Ke=(0,o.createContext)(!1);function Ze(e){return i().createElement(Ke.Provider,{value:e.force},e.children)}const Ye=ReactDOM;function Xe(){var e=(0,o.useContext)(Ke),t=(0,o.useContext)(nt),n=(0,o.useState)((function(){if(!e&&null!==t)return null;if("undefined"==typeof window)return null;var n=document.getElementById("headlessui-portal-root");if(n)return n;var r=document.createElement("div");return r.setAttribute("id","headlessui-portal-root"),document.body.appendChild(r)})),r=n[0],i=n[1];return(0,o.useEffect)((function(){e||null!==t&&i(t.current)}),[t,i,e]),r}var Qe=o.Fragment;function et(e){var t=e,n=Xe(),r=(0,o.useState)((function(){return"undefined"==typeof window?null:document.createElement("div")}))[0],i=se();return oe((function(){if(n&&r)return n.appendChild(r),function(){var e;n&&(r&&(n.removeChild(r),n.childNodes.length<=0&&(null==(e=n.parentElement)||e.removeChild(n))))}}),[n,r]),i&&n&&r?(0,Ye.createPortal)(ee({props:t,defaultTag:Qe,name:"Portal"}),r):null}var tt=o.Fragment,nt=(0,o.createContext)(null);et.Group=function(e){var t=e.target,n=Z(e,["target"]);return i().createElement(nt.Provider,{value:t},ee({props:n,defaultTag:tt,name:"Popover.Group"}))};var rt=(0,o.createContext)(null);function ot(){var e=(0,o.useContext)(rt);if(null===e){var t=new Error("You used a <Description /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(t,ot),t}return e}var it,st,at,lt,ct=(0,o.createContext)((function(){}));function ut(e){var t=e.children,n=e.onUpdate,r=e.type,s=e.element,a=(0,o.useContext)(ct),l=(0,o.useCallback)((function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];null==n||n.apply(void 0,t),a.apply(void 0,t)}),[a,n]);return oe((function(){return l(it.Add,r,s),function(){return l(it.Remove,r,s)}}),[l,r,s]),i().createElement(ct.Provider,{value:l},t)}ct.displayName="StackContext",function(e){e[e.Add=0]="Add",e[e.Remove=1]="Remove"}(it||(it={})),function(e){e[e.Open=0]="Open",e[e.Closed=1]="Closed"}(at||(at={})),function(e){e[e.SetTitleId=0]="SetTitleId"}(lt||(lt={}));var dt=((st={})[lt.SetTitleId]=function(e,t){return e.titleId===t.id?e:K({},e,{titleId:t.id})},st),ft=(0,o.createContext)(null);function pt(e){var t=(0,o.useContext)(ft);if(null===t){var n=new Error("<"+e+" /> is missing a parent <"+vt.displayName+" /> component.");throw Error.captureStackTrace&&Error.captureStackTrace(n,pt),n}return t}function ht(e,t){return Q(t.type,dt,e,t)}ft.displayName="DialogContext";var mt=W.RenderStrategy|W.Static,xt=ne((function(e,t){var n,r=e.open,s=e.onClose,a=e.initialFocus,l=Z(e,["open","onClose","initialFocus"]),c=(0,o.useState)(0),u=c[0],d=c[1],f=he();void 0===r&&null!==f&&(r=Q(f,((n={})[de.Open]=!0,n[de.Closed]=!1,n)));var p=(0,o.useRef)(new Set),h=(0,o.useRef)(null),m=Ie(h,t),x=e.hasOwnProperty("open")||null!==f,y=e.hasOwnProperty("onClose");if(!x&&!y)throw new Error("You have to provide an `open` and an `onClose` prop to the `Dialog` component.");if(!x)throw new Error("You provided an `onClose` prop to the `Dialog`, but forgot an `open` prop.");if(!y)throw new Error("You provided an `open` prop to the `Dialog`, but forgot an `onClose` prop.");if("boolean"!=typeof r)throw new Error("You provided an `open` prop to the `Dialog`, but the value is not a boolean. Received: "+r);if("function"!=typeof s)throw new Error("You provided an `onClose` prop to the `Dialog`, but the value is not a function. Received: "+s);var v=r?at.Open:at.Closed,g=null!==f?f===de.Open:v===at.Open,b=(0,o.useReducer)(ht,{titleId:null,descriptionId:null}),w=b[0],j=b[1],k=(0,o.useCallback)((function(){return s(!1)}),[s]),O=(0,o.useCallback)((function(e){return j({type:lt.SetTitleId,id:e})}),[j]),S=se()&&v===at.Open,C=u>1,_=null!==(0,o.useContext)(ft);$e(h,S?Q(C?"parent":"leaf",{parent:Ue.RestoreFocus,leaf:Ue.All}):Ue.None,{initialFocus:a,containers:p}),function(e,t){void 0===t&&(t=!0),oe((function(){if(t&&e.current){var n=e.current;He.add(n);for(var r,o=X(We.keys());!(r=o()).done;){var i=r.value;i.contains(n)&&(Ge(i),We.delete(i))}return document.querySelectorAll("body > *").forEach((function(e){if(e instanceof HTMLElement){for(var t,n=X(He);!(t=n()).done;){var r=t.value;if(e.contains(r))return}1===He.size&&(We.set(e,{"aria-hidden":e.getAttribute("aria-hidden"),inert:e.inert}),Je(e))}})),function(){if(He.delete(n),He.size>0)document.querySelectorAll("body > *").forEach((function(e){if(e instanceof HTMLElement&&!We.has(e)){for(var t,n=X(He);!(t=n()).done;){var r=t.value;if(e.contains(r))return}We.set(e,{"aria-hidden":e.getAttribute("aria-hidden"),inert:e.inert}),Je(e)}}));else for(var e,t=X(We.keys());!(e=t()).done;){var r=e.value;Ge(r),We.delete(r)}}}}),[t])}(h,!!C&&S),Me("mousedown",(function(e){var t,n=e.target;v===at.Open&&(C||(null==(t=h.current)?void 0:t.contains(n))||k())})),Me("keydown",(function(e){e.key===Ne.Escape&&v===at.Open&&(C||(e.preventDefault(),e.stopPropagation(),k()))})),(0,o.useEffect)((function(){if(v===at.Open&&!_){var e=document.documentElement.style.overflow,t=document.documentElement.style.paddingRight,n=window.innerWidth-document.documentElement.clientWidth;return document.documentElement.style.overflow="hidden",document.documentElement.style.paddingRight=n+"px",function(){document.documentElement.style.overflow=e,document.documentElement.style.paddingRight=t}}}),[v,_]),(0,o.useEffect)((function(){if(v===at.Open&&h.current){var e=new IntersectionObserver((function(e){for(var t,n=X(e);!(t=n()).done;){var r=t.value;0===r.boundingClientRect.x&&0===r.boundingClientRect.y&&0===r.boundingClientRect.width&&0===r.boundingClientRect.height&&k()}}));return e.observe(h.current),function(){return e.disconnect()}}}),[v,h,k]);var E=function(){var e=(0,o.useState)([]),t=e[0],n=e[1];return[t.length>0?t.join(" "):void 0,(0,o.useMemo)((function(){return function(e){var t=(0,o.useCallback)((function(e){return n((function(t){return[].concat(t,[e])})),function(){return n((function(t){var n=t.slice(),r=n.indexOf(e);return-1!==r&&n.splice(r,1),n}))}}),[]),r=(0,o.useMemo)((function(){return{register:t,slot:e.slot,name:e.name,props:e.props}}),[t,e.slot,e.name,e.props]);return i().createElement(rt.Provider,{value:r},e.children)}}),[n])]}(),N=E[0],A=E[1],P="headlessui-dialog-"+ce(),T=(0,o.useMemo)((function(){return[{dialogState:v,close:k,setTitleId:O},w]}),[v,w,k,O]),I=(0,o.useMemo)((function(){return{open:v===at.Open}}),[v]),L={ref:m,id:P,role:"dialog","aria-modal":v===at.Open||void 0,"aria-labelledby":w.titleId,"aria-describedby":N,onClick:function(e){e.stopPropagation()}},M=l;return i().createElement(ut,{type:"Dialog",element:h,onUpdate:(0,o.useCallback)((function(e,t,n){var r;"Dialog"===t&&Q(e,((r={})[it.Add]=function(){p.current.add(n),d((function(e){return e+1}))},r[it.Remove]=function(){p.current.add(n),d((function(e){return e-1}))},r))}),[])},i().createElement(Ze,{force:!0},i().createElement(et,null,i().createElement(ft.Provider,{value:T},i().createElement(et.Group,{target:h},i().createElement(Ze,{force:!1},i().createElement(A,{slot:I,name:"Dialog.Description"},ee({props:K({},M,L),slot:I,defaultTag:"div",features:mt,visible:g,name:"Dialog"}))))))))})),yt=ne((function e(t,n){var r=pt([vt.displayName,e.name].join("."))[0],i=r.dialogState,s=r.close,a=Ie(n),l="headlessui-dialog-overlay-"+ce(),c=(0,o.useCallback)((function(e){if(e.target===e.currentTarget){if(Le(e.currentTarget))return e.preventDefault();e.preventDefault(),e.stopPropagation(),s()}}),[s]),u=(0,o.useMemo)((function(){return{open:i===at.Open}}),[i]);return ee({props:K({},t,{ref:a,id:l,"aria-hidden":!0,onClick:c}),slot:u,defaultTag:"div",name:"Dialog.Overlay"})}));var vt=Object.assign(xt,{Overlay:yt,Title:function e(t){var n=pt([vt.displayName,e.name].join("."))[0],r=n.dialogState,i=n.setTitleId,s="headlessui-dialog-title-"+ce();(0,o.useEffect)((function(){return i(s),function(){return i(null)}}),[s,i]);var a=(0,o.useMemo)((function(){return{open:r===at.Open}}),[r]);return ee({props:K({},t,{id:s}),slot:a,defaultTag:"h2",name:"Dialog.Title"})},Description:function(e){var t=ot(),n="headlessui-description-"+ce();oe((function(){return t.register(n)}),[n,t.register]);var r=e,o=K({},t.props,{id:n});return ee({props:K({},r,o),slot:t.slot||{},defaultTag:"p",name:t.name||"Description"})}});const gt=wp.i18n,bt=wp.components;var wt=n(42),jt=n.n(wt);const kt=lodash;var Ot=function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"broken-event",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"open";D.setState({entryPoint:e}),window.dispatchEvent(new CustomEvent("extendify-sdk::".concat(t,"-library"),{detail:e,bubbles:!0}))}(e,"open")};function St(e){switch(e){case"editorplus":return"Editor Plus";case"ml-slider":return"MetaSlider"}return e}function Ct(e){switch(e){case"tax_categories":return"Site Type";case"tax_pattern_types":return"Content"}return e.replace("tax_","").replace(/_/g," ").replace(/\b\w/g,(function(e){return e.toUpperCase()}))}var _t=n(246);function Et(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Nt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Nt(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Nt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function At(e){var t=Et(e.taxonomy,2),n=t[0],r=t[1],o=G((function(e){return e.updateTaxonomies})),i=G((function(e){return e.searchParams})),s=U((function(e){return e.openedTaxonomies})),a=U((function(e){return e.toggleOpenedTaxonomy})),l=function(e){return(null==i?void 0:i.taxonomies[n])===e.term},c=Object.values(r).filter((function(e){var t;return null==e||null===(t=e.type)||void 0===t?void 0:t.includes(i.type)})).length;return Object.keys(r).length&&c?(0,_t.jsx)(bt.PanelBody,{title:Ct(n),className:"ext-type-control p-0",initialOpen:s.includes(n)||"tax_pattern_types"===n||"tax_page_types"===n,onToggle:function(e){return a(n,e)},children:(0,_t.jsx)(bt.PanelRow,{children:(0,_t.jsx)("div",{className:"overflow-hidden w-full relative",children:(0,_t.jsx)("ul",{className:"py-1 m-0 w-full",children:Object.values(r).filter((function(e){var t;return null==e||null===(t=e.type)||void 0===t?void 0:t.includes(i.type)})).map((function(e){return(0,_t.jsx)("li",{className:"m-0 w-full",children:(0,_t.jsx)("button",{type:"button",className:"text-left text-sm cursor-pointer w-full flex justify-between items-center px-0 py-2 m-0 leading-none bg-transparent hover:text-wp-theme-500 transition duration-200 button-focus",onClick:function(){return o((t={},r=n,i=e.term,r in t?Object.defineProperty(t,r,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[r]=i,t));var t,r,i},children:(0,_t.jsx)("span",{className:jt()({"text-wp-theme-500":l(e)}),children:e.term})})},e.term)}))})})})}):null}function Pt(e){return Array.isArray?Array.isArray(e):"[object Array]"===Ft(e)}function Tt(e){return"string"==typeof e}function It(e){return"number"==typeof e}function Lt(e){return!0===e||!1===e||function(e){return Mt(e)&&null!==e}(e)&&"[object Boolean]"==Ft(e)}function Mt(e){return"object"==typeof e}function Rt(e){return null!=e}function Dt(e){return!e.trim().length}function Ft(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}const Bt=Object.prototype.hasOwnProperty;class Ut{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach((e=>{let n=zt(e);t+=n.weight,this._keys.push(n),this._keyMap[n.id]=n,t+=n.weight})),this._keys.forEach((e=>{e.weight/=t}))}get(e){return this._keyMap[e]}keys(){return this._keys}toJSON(){return JSON.stringify(this._keys)}}function zt(e){let t=null,n=null,r=null,o=1;if(Tt(e)||Pt(e))r=e,t=qt(e),n=Vt(e);else{if(!Bt.call(e,"name"))throw new Error((e=>`Missing ${e} property in key`)("name"));const i=e.name;if(r=i,Bt.call(e,"weight")&&(o=e.weight,o<=0))throw new Error((e=>`Property 'weight' in key '${e}' must be a positive integer`)(i));t=qt(i),n=Vt(i)}return{path:t,id:n,weight:o,src:r}}function qt(e){return Pt(e)?e:e.split(".")}function Vt(e){return Pt(e)?e.join("."):e}var $t={isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:(e,t)=>e.score===t.score?e.idx<t.idx?-1:1:e.score<t.score?-1:1,includeMatches:!1,findAllMatches:!1,minMatchCharLength:1,location:0,threshold:.6,distance:100,...{useExtendedSearch:!1,getFn:function(e,t){let n=[],r=!1;const o=(e,t,i)=>{if(Rt(e))if(t[i]){const s=e[t[i]];if(!Rt(s))return;if(i===t.length-1&&(Tt(s)||It(s)||Lt(s)))n.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;let t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(s));else if(Pt(s)){r=!0;for(let e=0,n=s.length;e<n;e+=1)o(s[e],t,i+1)}else t.length&&o(s,t,i+1)}else n.push(e)};return o(e,Tt(t)?t.split("."):t,0),r?n:n[0]},ignoreLocation:!1,ignoreFieldNorm:!1}};const Ht=/[^ ]+/g;class Wt{constructor({getFn:e=$t.getFn}={}){this.norm=function(e=3){const t=new Map,n=Math.pow(10,e);return{get(e){const r=e.match(Ht).length;if(t.has(r))return t.get(r);const o=1/Math.sqrt(r),i=parseFloat(Math.round(o*n)/n);return t.set(r,i),i},clear(){t.clear()}}}(3),this.getFn=e,this.isCreated=!1,this.setIndexRecords()}setSources(e=[]){this.docs=e}setIndexRecords(e=[]){this.records=e}setKeys(e=[]){this.keys=e,this._keysMap={},e.forEach(((e,t)=>{this._keysMap[e.id]=t}))}create(){!this.isCreated&&this.docs.length&&(this.isCreated=!0,Tt(this.docs[0])?this.docs.forEach(((e,t)=>{this._addString(e,t)})):this.docs.forEach(((e,t)=>{this._addObject(e,t)})),this.norm.clear())}add(e){const t=this.size();Tt(e)?this._addString(e,t):this._addObject(e,t)}removeAt(e){this.records.splice(e,1);for(let t=e,n=this.size();t<n;t+=1)this.records[t].i-=1}getValueForItemAtKeyId(e,t){return e[this._keysMap[t]]}size(){return this.records.length}_addString(e,t){if(!Rt(e)||Dt(e))return;let n={v:e,i:t,n:this.norm.get(e)};this.records.push(n)}_addObject(e,t){let n={i:t,$:{}};this.keys.forEach(((t,r)=>{let o=this.getFn(e,t.path);if(Rt(o))if(Pt(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:n,value:r}=t.pop();if(Rt(r))if(Tt(r)&&!Dt(r)){let t={v:r,i:n,n:this.norm.get(r)};e.push(t)}else Pt(r)&&r.forEach(((e,n)=>{t.push({nestedArrIndex:n,value:e})}))}n.$[r]=e}else if(!Dt(o)){let e={v:o,n:this.norm.get(o)};n.$[r]=e}})),this.records.push(n)}toJSON(){return{keys:this.keys,records:this.records}}}function Jt(e,t,{getFn:n=$t.getFn}={}){const r=new Wt({getFn:n});return r.setKeys(e.map(zt)),r.setSources(t),r.create(),r}function Gt(e,{errors:t=0,currentLocation:n=0,expectedLocation:r=0,distance:o=$t.distance,ignoreLocation:i=$t.ignoreLocation}={}){const s=t/e.length;if(i)return s;const a=Math.abs(r-n);return o?s+a/o:a?1:s}const Kt=32;function Zt(e,t,n,{location:r=$t.location,distance:o=$t.distance,threshold:i=$t.threshold,findAllMatches:s=$t.findAllMatches,minMatchCharLength:a=$t.minMatchCharLength,includeMatches:l=$t.includeMatches,ignoreLocation:c=$t.ignoreLocation}={}){if(t.length>Kt)throw new Error(`Pattern length exceeds max of ${Kt}.`);const u=t.length,d=e.length,f=Math.max(0,Math.min(r,d));let p=i,h=f;const m=a>1||l,x=m?Array(d):[];let y;for(;(y=e.indexOf(t,h))>-1;){let e=Gt(t,{currentLocation:y,expectedLocation:f,distance:o,ignoreLocation:c});if(p=Math.min(e,p),h=y+u,m){let e=0;for(;e<u;)x[y+e]=1,e+=1}}h=-1;let v=[],g=1,b=u+d;const w=1<<u-1;for(let r=0;r<u;r+=1){let i=0,a=b;for(;i<a;){Gt(t,{errors:r,currentLocation:f+a,expectedLocation:f,distance:o,ignoreLocation:c})<=p?i=a:b=a,a=Math.floor((b-i)/2+i)}b=a;let l=Math.max(1,f-a+1),y=s?d:Math.min(f+a,d)+u,j=Array(y+2);j[y+1]=(1<<r)-1;for(let i=y;i>=l;i-=1){let s=i-1,a=n[e.charAt(s)];if(m&&(x[s]=+!!a),j[i]=(j[i+1]<<1|1)&a,r&&(j[i]|=(v[i+1]|v[i])<<1|1|v[i+1]),j[i]&w&&(g=Gt(t,{errors:r,currentLocation:s,expectedLocation:f,distance:o,ignoreLocation:c}),g<=p)){if(p=g,h=s,h<=f)break;l=Math.max(1,2*f-h)}}if(Gt(t,{errors:r+1,currentLocation:f,expectedLocation:f,distance:o,ignoreLocation:c})>p)break;v=j}const j={isMatch:h>=0,score:Math.max(.001,g)};if(m){const e=function(e=[],t=$t.minMatchCharLength){let n=[],r=-1,o=-1,i=0;for(let s=e.length;i<s;i+=1){let s=e[i];s&&-1===r?r=i:s||-1===r||(o=i-1,o-r+1>=t&&n.push([r,o]),r=-1)}return e[i-1]&&i-r>=t&&n.push([r,i-1]),n}(x,a);e.length?l&&(j.indices=e):j.isMatch=!1}return j}function Yt(e){let t={};for(let n=0,r=e.length;n<r;n+=1){const o=e.charAt(n);t[o]=(t[o]||0)|1<<r-n-1}return t}class Xt{constructor(e,{location:t=$t.location,threshold:n=$t.threshold,distance:r=$t.distance,includeMatches:o=$t.includeMatches,findAllMatches:i=$t.findAllMatches,minMatchCharLength:s=$t.minMatchCharLength,isCaseSensitive:a=$t.isCaseSensitive,ignoreLocation:l=$t.ignoreLocation}={}){if(this.options={location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:i,minMatchCharLength:s,isCaseSensitive:a,ignoreLocation:l},this.pattern=a?e:e.toLowerCase(),this.chunks=[],!this.pattern.length)return;const c=(e,t)=>{this.chunks.push({pattern:e,alphabet:Yt(e),startIndex:t})},u=this.pattern.length;if(u>Kt){let e=0;const t=u%Kt,n=u-t;for(;e<n;)c(this.pattern.substr(e,Kt),e),e+=Kt;if(t){const e=u-Kt;c(this.pattern.substr(e),e)}}else c(this.pattern,0)}searchIn(e){const{isCaseSensitive:t,includeMatches:n}=this.options;if(t||(e=e.toLowerCase()),this.pattern===e){let t={isMatch:!0,score:0};return n&&(t.indices=[[0,e.length-1]]),t}const{location:r,distance:o,threshold:i,findAllMatches:s,minMatchCharLength:a,ignoreLocation:l}=this.options;let c=[],u=0,d=!1;this.chunks.forEach((({pattern:t,alphabet:f,startIndex:p})=>{const{isMatch:h,score:m,indices:x}=Zt(e,t,f,{location:r+p,distance:o,threshold:i,findAllMatches:s,minMatchCharLength:a,includeMatches:n,ignoreLocation:l});h&&(d=!0),u+=m,h&&x&&(c=[...c,...x])}));let f={isMatch:d,score:d?u/this.chunks.length:1};return d&&n&&(f.indices=c),f}}class Qt{constructor(e){this.pattern=e}static isMultiMatch(e){return en(e,this.multiRegex)}static isSingleMatch(e){return en(e,this.singleRegex)}search(){}}function en(e,t){const n=e.match(t);return n?n[1]:null}class tn extends Qt{constructor(e,{location:t=$t.location,threshold:n=$t.threshold,distance:r=$t.distance,includeMatches:o=$t.includeMatches,findAllMatches:i=$t.findAllMatches,minMatchCharLength:s=$t.minMatchCharLength,isCaseSensitive:a=$t.isCaseSensitive,ignoreLocation:l=$t.ignoreLocation}={}){super(e),this._bitapSearch=new Xt(e,{location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:i,minMatchCharLength:s,isCaseSensitive:a,ignoreLocation:l})}static get type(){return"fuzzy"}static get multiRegex(){return/^"(.*)"$/}static get singleRegex(){return/^(.*)$/}search(e){return this._bitapSearch.searchIn(e)}}class nn extends Qt{constructor(e){super(e)}static get type(){return"include"}static get multiRegex(){return/^'"(.*)"$/}static get singleRegex(){return/^'(.*)$/}search(e){let t,n=0;const r=[],o=this.pattern.length;for(;(t=e.indexOf(this.pattern,n))>-1;)n=t+o,r.push([t,n-1]);const i=!!r.length;return{isMatch:i,score:i?0:1,indices:r}}}const rn=[class extends Qt{constructor(e){super(e)}static get type(){return"exact"}static get multiRegex(){return/^="(.*)"$/}static get singleRegex(){return/^=(.*)$/}search(e){const t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},nn,class extends Qt{constructor(e){super(e)}static get type(){return"prefix-exact"}static get multiRegex(){return/^\^"(.*)"$/}static get singleRegex(){return/^\^(.*)$/}search(e){const t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},class extends Qt{constructor(e){super(e)}static get type(){return"inverse-prefix-exact"}static get multiRegex(){return/^!\^"(.*)"$/}static get singleRegex(){return/^!\^(.*)$/}search(e){const t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends Qt{constructor(e){super(e)}static get type(){return"inverse-suffix-exact"}static get multiRegex(){return/^!"(.*)"\$$/}static get singleRegex(){return/^!(.*)\$$/}search(e){const t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends Qt{constructor(e){super(e)}static get type(){return"suffix-exact"}static get multiRegex(){return/^"(.*)"\$$/}static get singleRegex(){return/^(.*)\$$/}search(e){const t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}},class extends Qt{constructor(e){super(e)}static get type(){return"inverse-exact"}static get multiRegex(){return/^!"(.*)"$/}static get singleRegex(){return/^!(.*)$/}search(e){const t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},tn],on=rn.length,sn=/ +(?=([^\"]*\"[^\"]*\")*[^\"]*$)/;const an=new Set([tn.type,nn.type]);class ln{constructor(e,{isCaseSensitive:t=$t.isCaseSensitive,includeMatches:n=$t.includeMatches,minMatchCharLength:r=$t.minMatchCharLength,ignoreLocation:o=$t.ignoreLocation,findAllMatches:i=$t.findAllMatches,location:s=$t.location,threshold:a=$t.threshold,distance:l=$t.distance}={}){this.query=null,this.options={isCaseSensitive:t,includeMatches:n,minMatchCharLength:r,findAllMatches:i,ignoreLocation:o,location:s,threshold:a,distance:l},this.pattern=t?e:e.toLowerCase(),this.query=function(e,t={}){return e.split("|").map((e=>{let n=e.trim().split(sn).filter((e=>e&&!!e.trim())),r=[];for(let e=0,o=n.length;e<o;e+=1){const o=n[e];let i=!1,s=-1;for(;!i&&++s<on;){const e=rn[s];let n=e.isMultiMatch(o);n&&(r.push(new e(n,t)),i=!0)}if(!i)for(s=-1;++s<on;){const e=rn[s];let n=e.isSingleMatch(o);if(n){r.push(new e(n,t));break}}}return r}))}(this.pattern,this.options)}static condition(e,t){return t.useExtendedSearch}searchIn(e){const t=this.query;if(!t)return{isMatch:!1,score:1};const{includeMatches:n,isCaseSensitive:r}=this.options;e=r?e:e.toLowerCase();let o=0,i=[],s=0;for(let r=0,a=t.length;r<a;r+=1){const a=t[r];i.length=0,o=0;for(let t=0,r=a.length;t<r;t+=1){const r=a[t],{isMatch:l,indices:c,score:u}=r.search(e);if(!l){s=0,o=0,i.length=0;break}if(o+=1,s+=u,n){const e=r.constructor.type;an.has(e)?i=[...i,...c]:i.push(c)}}if(o){let e={isMatch:!0,score:s/o};return n&&(e.indices=i),e}}return{isMatch:!1,score:1}}}const cn=[];function un(e,t){for(let n=0,r=cn.length;n<r;n+=1){let r=cn[n];if(r.condition(e,t))return new r(e,t)}return new Xt(e,t)}const dn="$and",fn="$or",pn="$path",hn="$val",mn=e=>!(!e[dn]&&!e[fn]),xn=e=>({[dn]:Object.keys(e).map((t=>({[t]:e[t]})))});function yn(e,t,{auto:n=!0}={}){const r=e=>{let o=Object.keys(e);const i=(e=>!!e[pn])(e);if(!i&&o.length>1&&!mn(e))return r(xn(e));if((e=>!Pt(e)&&Mt(e)&&!mn(e))(e)){const r=i?e[pn]:o[0],s=i?e[hn]:e[r];if(!Tt(s))throw new Error((e=>`Invalid value for key ${e}`)(r));const a={keyId:Vt(r),pattern:s};return n&&(a.searcher=un(s,t)),a}let s={children:[],operator:o[0]};return o.forEach((t=>{const n=e[t];Pt(n)&&n.forEach((e=>{s.children.push(r(e))}))})),s};return mn(e)||(e=xn(e)),r(e)}function vn(e,t){const n=e.matches;t.matches=[],Rt(n)&&n.forEach((e=>{if(!Rt(e.indices)||!e.indices.length)return;const{indices:n,value:r}=e;let o={indices:n,value:r};e.key&&(o.key=e.key.src),e.idx>-1&&(o.refIndex=e.idx),t.matches.push(o)}))}function gn(e,t){t.score=e.score}class bn{constructor(e,t={},n){this.options={...$t,...t},this.options.useExtendedSearch,this._keyStore=new Ut(this.options.keys),this.setCollection(e,n)}setCollection(e,t){if(this._docs=e,t&&!(t instanceof Wt))throw new Error("Incorrect 'index' type");this._myIndex=t||Jt(this.options.keys,this._docs,{getFn:this.options.getFn})}add(e){Rt(e)&&(this._docs.push(e),this._myIndex.add(e))}remove(e=(()=>!1)){const t=[];for(let n=0,r=this._docs.length;n<r;n+=1){const o=this._docs[n];e(o,n)&&(this.removeAt(n),n-=1,r-=1,t.push(o))}return t}removeAt(e){this._docs.splice(e,1),this._myIndex.removeAt(e)}getIndex(){return this._myIndex}search(e,{limit:t=-1}={}){const{includeMatches:n,includeScore:r,shouldSort:o,sortFn:i,ignoreFieldNorm:s}=this.options;let a=Tt(e)?Tt(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return function(e,{ignoreFieldNorm:t=$t.ignoreFieldNorm}){e.forEach((e=>{let n=1;e.matches.forEach((({key:e,norm:r,score:o})=>{const i=e?e.weight:null;n*=Math.pow(0===o&&i?Number.EPSILON:o,(i||1)*(t?1:r))})),e.score=n}))}(a,{ignoreFieldNorm:s}),o&&a.sort(i),It(t)&&t>-1&&(a=a.slice(0,t)),function(e,t,{includeMatches:n=$t.includeMatches,includeScore:r=$t.includeScore}={}){const o=[];return n&&o.push(vn),r&&o.push(gn),e.map((e=>{const{idx:n}=e,r={item:t[n],refIndex:n};return o.length&&o.forEach((t=>{t(e,r)})),r}))}(a,this._docs,{includeMatches:n,includeScore:r})}_searchStringList(e){const t=un(e,this.options),{records:n}=this._myIndex,r=[];return n.forEach((({v:e,i:n,n:o})=>{if(!Rt(e))return;const{isMatch:i,score:s,indices:a}=t.searchIn(e);i&&r.push({item:e,idx:n,matches:[{score:s,value:e,norm:o,indices:a}]})})),r}_searchLogical(e){const t=yn(e,this.options),n=(e,t,r)=>{if(!e.children){const{keyId:n,searcher:o}=e,i=this._findMatches({key:this._keyStore.get(n),value:this._myIndex.getValueForItemAtKeyId(t,n),searcher:o});return i&&i.length?[{idx:r,item:t,matches:i}]:[]}switch(e.operator){case dn:{const o=[];for(let i=0,s=e.children.length;i<s;i+=1){const s=e.children[i],a=n(s,t,r);if(!a.length)return[];o.push(...a)}return o}case fn:{const o=[];for(let i=0,s=e.children.length;i<s;i+=1){const s=e.children[i],a=n(s,t,r);if(a.length){o.push(...a);break}}return o}}},r=this._myIndex.records,o={},i=[];return r.forEach((({$:e,i:r})=>{if(Rt(e)){let s=n(t,e,r);s.length&&(o[r]||(o[r]={idx:r,item:e,matches:[]},i.push(o[r])),s.forEach((({matches:e})=>{o[r].matches.push(...e)})))}})),i}_searchObjectList(e){const t=un(e,this.options),{keys:n,records:r}=this._myIndex,o=[];return r.forEach((({$:e,i:r})=>{if(!Rt(e))return;let i=[];n.forEach(((n,r)=>{i.push(...this._findMatches({key:n,value:e[r],searcher:t}))})),i.length&&o.push({idx:r,item:e,matches:i})})),o}_findMatches({key:e,value:t,searcher:n}){if(!Rt(t))return[];let r=[];if(Pt(t))t.forEach((({v:t,i:o,n:i})=>{if(!Rt(t))return;const{isMatch:s,score:a,indices:l}=n.searchIn(t);s&&r.push({score:a,key:e,value:t,idx:o,norm:i,indices:l})}));else{const{v:o,n:i}=t,{isMatch:s,score:a,indices:l}=n.searchIn(o);s&&r.push({score:a,key:e,value:o,norm:i,indices:l})}return r}}bn.version="6.4.6",bn.createIndex=Jt,bn.parseIndex=function(e,{getFn:t=$t.getFn}={}){const{keys:n,records:r}=e,o=new Wt({getFn:t});return o.setKeys(n),o.setIndexRecords(r),o},bn.config=$t,bn.parseQuery=yn,function(...e){cn.push(...e)}(ln);const wn=bn;function jn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return kn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return kn(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function kn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var On=new Map;function Sn(e){var t=e.value,n=e.setValue,o=e.terms,i=D((function(e){return e.preferredOptionsHistory})),s=G((function(e){return e.searchParams})),a=jn((0,r.useState)(!1),2),l=a[0],c=a[1],u=(0,r.useRef)(),d=jn((0,r.useState)({}),2),f=d[0],p=d[1],h=jn((0,r.useState)(""),2),m=h[0],x=h[1],y=jn((0,r.useState)([]),2),v=y[0],g=y[1],b=(0,r.useMemo)((function(){return Object.values(o.filter((function(e){return null==e?void 0:e.featured})).sort((function(e,t){return e.term<t.term?-1:e.term>t.term?1:0})))}),[o]),w=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(On.has(e))g(On.get(e));else{var t=f.search(e);On.set(e,null!=t&&t.length?t.map((function(e){return e.item})):b),g(On.get(e))}},j="Unknown"===t||!t.length;(0,r.useEffect)((function(){p(new wn(o,{keys:["term","parent","keywords"],minMatchCharLength:2,threshold:.3}))}),[o]),(0,r.useEffect)((function(){m.length||g(b)}),[b,m]),(0,r.useEffect)((function(){l&&u.current.focus()}),[l]);var k,O,S=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,gt.__)("Suggestions","extendify-sdk");return e===b&&(t=(0,gt.__)("Examples","extendify-sdk")),(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("h4",{className:"mt-4 mb-2 text-left uppercase text-xs text-gray-700",children:t}),(0,_t.jsx)("ul",{className:"m-0",children:e.map((function(e){var t;Object.prototype.hasOwnProperty.call(e,"term")&&(e=e.term);var r=(null==s||null===(t=s.taxonomies)||void 0===t?void 0:t.tax_categories)===e;return(0,_t.jsx)("li",{className:"m-0 mb-1",children:(0,_t.jsx)("button",{type:"button",className:jt()("w-full text-left text-sm bg-transparent hover:text-wp-theme-500 m-0 pl-0 cursor-pointer",{"text-gray-800":!r}),onClick:function(){c(!1),n(e)},children:e})},e)}))})]})};return(0,_t.jsxs)("div",{className:"w-full bg-gray-100 rounded",children:[(0,_t.jsx)("button",{type:"button",onClick:function(){return c((function(e){return!e}))},className:"flex items-center justify-between text-gray-800 button-focus w-full p-4 m-0 cursor-pointer bg-gray-100 hover:bg-gray-150 rounded",children:(O=l?(0,gt.__)("What kind of site is this?","extendify-sdk"):t,(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsxs)("span",{className:"flex flex-col text-left",children:[(0,_t.jsx)("span",{className:"text-sm mb-1",children:(0,gt.__)("Site Type","extendify-sdk")}),(0,_t.jsx)("span",{className:"font-light text-xs",children:O})]}),(0,_t.jsxs)("span",{className:"flex items-center space-x-4",children:[j&&!l&&(0,_t.jsxs)("svg",{className:"text-wp-alert-red","aria-hidden":"true",focusable:"false",width:"21",height:"21",viewBox:"0 0 21 21",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)("path",{className:"stroke-current",d:"M10.9982 4.05371C7.66149 4.05371 4.95654 6.75866 4.95654 10.0954C4.95654 13.4321 7.66149 16.137 10.9982 16.137C14.3349 16.137 17.0399 13.4321 17.0399 10.0954C17.0399 6.75866 14.3349 4.05371 10.9982 4.05371V4.05371Z",strokeWidth:"1.25"}),(0,_t.jsx)("path",{className:"fill-current",d:"M10.0205 12.8717C10.0205 12.3287 10.4508 11.8881 10.9938 11.8881C11.5368 11.8881 11.9774 12.3287 11.9774 12.8717C11.9774 13.4147 11.5368 13.8451 10.9938 13.8451C10.4508 13.8451 10.0205 13.4147 10.0205 12.8717Z"}),(0,_t.jsx)("path",{className:"fill-current",d:"M11.6495 10.2591C11.6086 10.6177 11.3524 10.9148 10.9938 10.9148C10.625 10.9148 10.3791 10.6074 10.3483 10.2591L10.0205 7.31855C9.95901 6.81652 10.4918 6.34521 10.9938 6.34521C11.4959 6.34521 12.0286 6.81652 11.9774 7.31855L11.6495 10.2591Z"})]}),(0,_t.jsx)("svg",{className:jt()("text-gray-700 stroke-current",{"transform rotate-90 -translate-x-1":l}),"aria-hidden":"true",focusable:"false",width:"8",height:"13",viewBox:"0 0 8 13",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsx)("path",{d:"M1.24194 11.5952L6.24194 6.09519L1.24194 0.595215",strokeWidth:"1.5"})})]})]}))}),l&&(0,_t.jsxs)("div",{className:"p-4 pt-0",children:[(0,_t.jsxs)("div",{className:"relative my-2",children:[(0,_t.jsx)("label",{htmlFor:"site-type-search",className:"sr-only",children:(0,gt.__)("Search","extendify-sdk")}),(0,_t.jsx)("input",{ref:u,id:"site-type-search",value:m||"",onChange:function(e){return t=e.target.value,x(t),void w(t);var t},type:"text",className:"button-focus bg-white border-0 m-0 p-3.5 py-2.5 rounded text-sm w-full",placeholder:(0,gt.__)("Search","extendify-sdk")}),(0,_t.jsx)("svg",{className:"absolute top-2 right-2 hidden lg:block pointer-events-none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24",role:"img","aria-hidden":"true",focusable:"false",children:(0,_t.jsx)("path",{d:"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"})})]}),m.length>1&&v===b&&(0,_t.jsx)("p",{className:"text-left",children:(0,gt.__)("Nothing found...","extendify-sdk")}),v===b&&(null==i||null===(k=i.siteType)||void 0===k?void 0:k.length)>0&&(0,_t.jsx)("div",{className:"mb-8",children:S(null==i?void 0:i.siteType,(0,gt.__)("Recent","extendify-sdk"))}),v&&(0,_t.jsx)("div",{children:S(v)}),j||(0,_t.jsx)("button",{type:"button",className:"mt-4 w-full text-left text-sm bg-transparent hover:text-wp-theme-500 pl-0 cursor-pointer text-wp-theme-500",onClick:function(){c(!1),n("Unknown")},children:(0,gt.__)("Reset","extendify-sdk")})]})]})}function Cn(){var e,t,n,r=U((function(e){return e.taxonomies})),o=G((function(e){return e.searchParams})),i=D((function(e){return e.updateSiteType})),s=G((function(e){return e.updateTaxonomies}));return(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("div",{className:"mb-8 mt-2 mx-6 sm:mx-0 sm:mt-0 pt-0.5",children:Object.keys(null!==(e=null==r?void 0:r.tax_categories)&&void 0!==e?e:{}).length>0&&(0,_t.jsx)(Sn,{value:null!==(t=null==o||null===(n=o.taxonomies)||void 0===n?void 0:n.tax_categories)&&void 0!==t?t:"",setValue:function(e){i(e),s({tax_categories:e})},terms:r.tax_categories})}),(0,_t.jsx)("div",{className:"mt-px flex-grow hidden overflow-y-auto pb-32 pt-px sm:block",children:(0,_t.jsx)(bt.Panel,{children:Object.entries(r).map((function(e){return"tax_categories"===e[0]?null:(0,_t.jsx)(At,{taxonomy:e},e[0])}))})})]})}const _n=function(e){let{icon:t,size:n=24,...o}=e;return(0,r.cloneElement)(t,{width:n,height:n,...o})},En=e=>(0,r.createElement)("circle",e),Nn=e=>(0,r.createElement)("g",e),An=e=>(0,r.createElement)("path",e),Pn=e=>(0,r.createElement)("rect",e),Tn=e=>{let{className:t,isPressed:n,...o}=e;const i={...o,className:jt()(t,{"is-pressed":n})||void 0,role:"img","aria-hidden":!0,focusable:!1};return(0,r.createElement)("svg",i)};const In=(0,_t.jsxs)(Tn,{viewBox:"0 0 14 14",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)(An,{d:"M7.32457 0.907043C3.98785 0.907043 1.2829 3.61199 1.2829 6.94871C1.2829 10.2855 3.98785 12.9904 7.32457 12.9904C10.6613 12.9904 13.3663 10.2855 13.3663 6.94871C13.3663 3.61199 10.6613 0.907043 7.32457 0.907043V0.907043Z",stroke:"currentColor",strokeWidth:"1.25",fill:"none"}),(0,_t.jsx)(An,{d:"M6.34684 9.72526C6.34684 9.18224 6.77716 8.74168 7.32018 8.74168C7.8632 8.74168 8.30377 9.18224 8.30377 9.72526C8.30377 10.2683 7.8632 10.6986 7.32018 10.6986C6.77716 10.6986 6.34684 10.2683 6.34684 9.72526Z",fill:"currentColor"}),(0,_t.jsx)(An,{d:"M7.9759 7.11261C7.93492 7.47121 7.67878 7.76834 7.32018 7.76834C6.95134 7.76834 6.70544 7.46097 6.6747 7.11261L6.34684 4.1721C6.28537 3.67006 6.81814 3.19876 7.32018 3.19876C7.82222 3.19876 8.35499 3.67006 8.30377 4.1721L7.9759 7.11261Z",fill:"currentColor"})]});const Ln=(0,_t.jsx)(Tn,{fill:"none",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsx)(An,{"clip-rule":"evenodd",d:"m13.505 4h3.3044c.936 0 1.2747.10161 1.6171.29127.3424.19042.6102.46965.7934.82489.1831.356.2801.70824.2801 1.6814v3.43584c0 .9731-.0977 1.3254-.2801 1.6814-.1832.356-.4517.6344-.7934.8248-.153.0852-.3057.1552-.5112.2054v2.7344c0 1.503-.151 2.047-.4327 2.5968-.2828.5498-.6976.9799-1.2252 1.274-.5288.294-1.052.4498-2.4975.4498h-5.10341c-1.44549 0-1.96869-.1569-2.49747-.4498-.52878-.2941-.94242-.7254-1.22526-1.274-.28284-.5487-.43376-1.0938-.43376-2.5968v-5.3051c0-1.50301.15092-2.04701.43264-2.59682.28284-.54981.6976-.98106 1.22638-1.27514.52767-.29293 1.05198-.44985 2.49747-.44985h2.18511c.041-.44652.1265-.69015.2522-.93557.1832-.356.4517-.63523.7941-.82565.3417-.18966.6812-.29127 1.6171-.29127zm-1.6984 2.18698c0-.63769.4973-1.15464 1.1106-1.15464h4.4793c.6133 0 1.1106.51695 1.1106 1.15464v4.65692c0 .6377-.4973 1.1547-1.1106 1.1547h-4.4793c-.6133 0-1.1106-.517-1.1106-1.1547z",fill:"currentColor","fill-rule":"evenodd"})});const Mn=(0,_t.jsx)(Tn,{fill:"none",width:"150",height:"30",viewBox:"0 0 2524 492",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsxs)(Nn,{fill:"currentColor",children:[(0,_t.jsx)(An,{d:"m609.404 378.5c-24.334 0-46-5.5-65-16.5-18.667-11.333-33.334-26.667-44-46-10.667-19.667-16-42.167-16-67.5 0-25.667 5.166-48.333 15.5-68 10.333-19.667 24.833-35 43.5-46 18.666-11.333 40-17 64-17 25 0 46.5 5.333 64.5 16 18 10.333 31.833 24.833 41.5 43.5 10 18.667 15 41 15 67v18.5l-212 .5 1-39h150.5c0-17-5.5-30.667-16.5-41-10.667-10.333-25.167-15.5-43.5-15.5-14.334 0-26.5 3-36.5 9-9.667 6-17 15-22 27s-7.5 26.667-7.5 44c0 26.667 5.666 46.833 17 60.5 11.666 13.667 28.833 20.5 51.5 20.5 16.666 0 30.333-3.167 41-9.5 11-6.333 18.166-15.333 21.5-27h56.5c-5.334 27-18.667 48.167-40 63.5-21 15.333-47.667 23-80 23z"}),(0,_t.jsx)("path",{d:"m797.529 372h-69.5l85-121-85-126h71l54.5 84 52.5-84h68.5l-84 125.5 81.5 121.5h-70l-53-81.5z"}),(0,_t.jsx)("path",{d:"m994.142 125h155.998v51h-155.998zm108.498 247h-61v-324h61z"}),(0,_t.jsx)("path",{d:"m1278.62 378.5c-24.33 0-46-5.5-65-16.5-18.66-11.333-33.33-26.667-44-46-10.66-19.667-16-42.167-16-67.5 0-25.667 5.17-48.333 15.5-68 10.34-19.667 24.84-35 43.5-46 18.67-11.333 40-17 64-17 25 0 46.5 5.333 64.5 16 18 10.333 31.84 24.833 41.5 43.5 10 18.667 15 41 15 67v18.5l-212 .5 1-39h150.5c0-17-5.5-30.667-16.5-41-10.66-10.333-25.16-15.5-43.5-15.5-14.33 0-26.5 3-36.5 9-9.66 6-17 15-22 27s-7.5 26.667-7.5 44c0 26.667 5.67 46.833 17 60.5 11.67 13.667 28.84 20.5 51.5 20.5 16.67 0 30.34-3.167 41-9.5 11-6.333 18.17-15.333 21.5-27h56.5c-5.33 27-18.66 48.167-40 63.5-21 15.333-47.66 23-80 23z"}),(0,_t.jsx)("path",{d:"m1484.44 372h-61v-247h56.5l5 32c7.67-12.333 18.5-22 32.5-29 14.34-7 29.84-10.5 46.5-10.5 31 0 54.34 9.167 70 27.5 16 18.333 24 43.333 24 75v152h-61v-137.5c0-20.667-4.66-36-14-46-9.33-10.333-22-15.5-38-15.5-19 0-33.83 6-44.5 18-10.66 12-16 28-16 48z"}),(0,_t.jsx)("path",{d:"m1798.38 378.5c-24 0-44.67-5.333-62-16-17-11-30.34-26.167-40-45.5-9.34-19.333-14-41.833-14-67.5s4.66-48.333 14-68c9.66-20 23.5-35.667 41.5-47s39.33-17 64-17c17.33 0 33.16 3.5 47.5 10.5 14.33 6.667 25.33 16.167 33 28.5v-156.5h60.5v372h-56l-4-38.5c-7.34 14-18.67 25-34 33-15 8-31.84 12-50.5 12zm13.5-56c14.33 0 26.66-3 37-9 10.33-6.333 18.33-15.167 24-26.5 6-11.667 9-24.833 9-39.5 0-15-3-28-9-39-5.67-11.333-13.67-20.167-24-26.5-10.34-6.667-22.67-10-37-10-14 0-26.17 3.333-36.5 10-10.34 6.333-18.34 15.167-24 26.5-5.34 11.333-8 24.333-8 39s2.66 27.667 8 39c5.66 11.333 13.66 20.167 24 26.5 10.33 6.333 22.5 9.5 36.5 9.5z"}),(0,_t.jsx)("path",{d:"m1996.45 372v-247h61v247zm30-296.5c-10.34 0-19.17-3.5-26.5-10.5-7-7.3333-10.5-16.1667-10.5-26.5s3.5-19 10.5-26c7.33-6.99999 16.16-10.49998 26.5-10.49998 10.33 0 19 3.49999 26 10.49998 7.33 7 11 15.6667 11 26s-3.67 19.1667-11 26.5c-7 7-15.67 10.5-26 10.5z"}),(0,_t.jsx)("path",{d:"m2085.97 125h155v51h-155zm155.5-122.5v52c-3.33 0-6.83 0-10.5 0-3.33 0-6.83 0-10.5 0-15.33 0-25.67 3.6667-31 11-5 7.3333-7.5 17.1667-7.5 29.5v277h-60.5v-277c0-22.6667 3.67-40.8333 11-54.5 7.33-14 17.67-24.1667 31-30.5 13.33-6.66666 28.83-10 46.5-10 5 0 10.17.166671 15.5.5 5.67.333329 11 .99999 16 2z"}),(0,_t.jsx)("path",{d:"m2330.4 125 80.5 228-33 62.5-112-290.5zm-58 361.5v-50.5h36.5c8 0 15-1 21-3 6-1.667 11.34-5 16-10 5-5 9.17-12.333 12.5-22l102.5-276h63l-121 302c-9 22.667-20.33 39.167-34 49.5-13.66 10.333-30.66 15.5-51 15.5-8.66 0-16.83-.5-24.5-1.5-7.33-.667-14.33-2-21-4z"}),(0,_t.jsx)("path",{clipRule:"evenodd",d:"m226.926 25.1299h83.271c23.586 0 32.123 2.4639 40.751 7.0633 8.628 4.6176 15.378 11.389 19.993 20.0037 4.615 8.6329 7.059 17.1746 7.059 40.7738v83.3183c0 23.599-2.463 32.141-7.059 40.774-4.615 8.633-11.383 15.386-19.993 20.003-3.857 2.065-7.704 3.764-12.884 4.981v66.308c0 36.447-3.803 49.639-10.902 62.972-7.128 13.333-17.579 23.763-30.877 30.894-13.325 7.132-26.51 10.909-62.936 10.909h-128.605c-36.4268 0-49.6113-3.805-62.9367-10.909-13.3254-7.131-23.749-17.589-30.8765-30.894-7.12757-13.304-10.9308-26.525-10.9308-62.972v-128.649c0-36.447 3.80323-49.639 10.9026-62.972 7.1275-13.333 17.5793-23.7909 30.9047-30.9224 13.2972-7.1034 26.5099-10.9088 62.9367-10.9088h55.064c1.033-10.8281 3.188-16.7362 6.357-22.6877 4.615-8.6329 11.382-15.4043 20.01-20.0219 8.61-4.5994 17.165-7.0633 40.751-7.0633zm-42.798 53.0342c0-15.464 12.53-28 27.986-28h112.877c15.457 0 27.987 12.536 27.987 28v112.9319c0 15.464-12.53 28-27.987 28h-112.877c-15.456 0-27.986-12.536-27.986-28z",fillRule:"evenodd"})]})});const Rn=(0,_t.jsxs)(Tn,{viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)(An,{d:"M7.32457 0.907043C3.98785 0.907043 1.2829 3.61199 1.2829 6.94871C1.2829 10.2855 3.98785 12.9904 7.32457 12.9904C10.6613 12.9904 13.3663 10.2855 13.3663 6.94871C13.3663 3.61199 10.6613 0.907043 7.32457 0.907043V0.907043Z",stroke:"white",strokeWidth:"1.25"}),(0,_t.jsx)(An,{d:"M7.32458 10.0998L4.82458 7.59977M7.32458 10.0998V3.79764V10.0998ZM7.32458 10.0998L9.82458 7.59977L7.32458 10.0998Z",stroke:"white",strokeWidth:"1.25"})]});const Dn=(0,_t.jsx)(Tn,{fill:"none",viewBox:"0 0 25 25",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsx)(An,{clipRule:"evenodd",d:"m13 4c4.9545 0 9 4.04545 9 9 0 4.9545-4.0455 9-9 9-4.95455 0-9-4.0455-9-9 0-4.95455 4.04545-9 9-9zm5.0909 13.4545c-1.9545 3.8637-8.22726 3.8637-10.22726 0-.04546-.1818-.04546-.3636 0-.5454 2-3.8636 8.27276-3.8636 10.22726 0 .0909.1818.0909.3636 0 .5454zm-5.0909-8.90905c-1.2727 0-2.3182 1.04546-2.3182 2.31815 0 1.2728 1.0455 2.3182 2.3182 2.3182s2.3182-1.0454 2.3182-2.3182c0-1.27269-1.0455-2.31815-2.3182-2.31815z",fill:"currentColor",fillRule:"evenodd"})});const Fn=(0,_t.jsxs)(Tn,{fill:"none",viewBox:"0 0 151 148",width:"151",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)(En,{cx:"65.6441",cy:"66.6114",fill:"#0b4a43",r:"65.3897"}),(0,_t.jsxs)(Nn,{fill:"#cbc3f5",stroke:"#0b4a43",children:[(0,_t.jsx)(An,{d:"m61.73 11.3928 3.0825 8.3304.1197.3234.3234.1197 8.3304 3.0825-8.3304 3.0825-.3234.1197-.1197.3234-3.0825 8.3304-3.0825-8.3304-.1197-.3234-.3234-.1197-8.3304-3.0825 8.3304-3.0825.3234-.1197.1197-.3234z",strokeWidth:"1.5"}),(0,_t.jsx)(An,{d:"m84.3065 31.2718c0 5.9939-12.4614 22.323-18.6978 22.323h-17.8958v56.1522c3.5249.9 11.6535 0 17.8958 0h6.2364c11.2074 3.33 36.0089 7.991 45.5529 0l-9.294-62.1623c-2.267-1.7171-5.949-6.6968-2.55-12.8786 3.4-6.1817 2.55-18.0406 0-24.5756-1.871-4.79616-8.3289-8.90882-14.4482-8.90882s-7.0825 4.00668-6.7993 6.01003z",strokeWidth:"1.75"}),(0,_t.jsx)(Pn,{height:"45.5077",rx:"9.13723",strokeWidth:"1.75",transform:"matrix(0 1 -1 0 191.5074 -96.0026)",width:"18.2745",x:"143.755",y:"47.7524"}),(0,_t.jsx)(Pn,{height:"42.3038",rx:"8.73674",strokeWidth:"1.75",transform:"matrix(0 1 -1 0 241.97 -50.348)",width:"17.4735",x:"146.159",y:"95.811"}),(0,_t.jsx)(Pn,{height:"55.9204",rx:"8.73674",strokeWidth:"1.75",transform:"matrix(0 1 -1 0 213.1347 -85.5913)",width:"17.4735",x:"149.363",y:"63.7717"}),(0,_t.jsx)(Pn,{height:"51.1145",rx:"8.73674",strokeWidth:"1.75",transform:"matrix(0 1 -1 0 229.1545 -69.5715)",width:"17.4735",x:"149.363",y:"79.7915"}),(0,_t.jsx)(An,{d:"m75.7483 105.349c.9858-25.6313-19.2235-42.0514-32.8401-44.0538v12.0146c8.5438 1.068 24.8303 9.7642 24.8303 36.0442 0 23.228 19.4905 33.374 29.6362 33.641v-10.413s-22.6122-1.602-21.6264-27.233z",strokeWidth:"1.75"}),(0,_t.jsx)(An,{d:"m68.5388 109.354c.9858-25.6312-19.2234-42.0513-32.8401-44.0537v12.0147c8.5438 1.0679 24.8303 9.7641 24.8303 36.044 0 23.228 19.4905 33.374 29.6362 33.641v-10.413s-22.6122-1.602-21.6264-27.233z",strokeWidth:"1.75"})]})]});const Bn=function(){var e=D((function(e){return e.remainingImports})),t=D((function(e){return e.allowedImports})),n=e()>0?"has-imports":"no-imports",r="has-imports"===n?"bg-extendify-main hover:bg-extendify-main-dark":"bg-extendify-alert",o="has-imports"===n?Rn:In;return(0,_t.jsxs)("a",{target:"_blank",rel:"noreferrer",className:jt()(r,"flex w-full no-underline button-focus -mt-10 text-sm justify-between py-3 px-4 text-white rounded"),href:"https://www.extendify.com/pricing/?utm_source=".concat(encodeURIComponent(window.extendifySdkData.sdk_partner),"&utm_medium=library&utm_campaign=import-counter&utm_content=upgrade&utm_term=").concat(n),children:[(0,_t.jsxs)("div",{className:"flex items-center space-x-2 no-underline",children:[(0,_t.jsx)(_n,{icon:o,size:14}),(0,_t.jsx)("span",{children:(0,gt.sprintf)((0,gt.__)("%s/%s Imports","extendify-sdk"),e(),Number(t))})]}),(0,_t.jsx)("span",{className:"text-white no-underline font-medium outline-none",children:(0,gt.__)("Upgrade","extendify-sdk")})]})};function Un(e){var t=e.children,n=D((function(e){return e.apiKey}));return(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsxs)("aside",{className:"flex-shrink-0 sm:pl-8 py-0 relative",children:[(0,_t.jsx)("div",{className:"sm:w-56 lg:w-72 sticky flex flex-col lg:h-full",children:t[0]}),(0,_t.jsx)("div",{className:"hidden sm:flex flex-col absolute bottom-0 mb-8 w-72 text-left space-y-4",children:!n.length&&(0,_t.jsx)(Bn,{})})]}),(0,_t.jsx)("main",{id:"extendify-templates",className:"w-full smp:l-12 h-full overflow-hidden",children:t[1]})]})}const zn=(0,r.createElement)(Tn,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(An,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));function qn(){var e=G((function(e){return e.updateType})),t=y((function(e){return e.currentType?e.currentType:"pattern"}));return(0,_t.jsxs)("div",{className:"text-center w-full md:pl-36 md:ml-2",children:[(0,_t.jsx)("h4",{className:"sr-only",children:(0,gt.__)("Type select","extendify-sdk")}),(0,_t.jsx)("button",{type:"button",className:jt()({"cursor-pointer text-xs leading-none m-0 py-2.5 px-4 min-w-sm border rounded-tl-sm rounded-bl-sm border-black button-focus":!0,"bg-gray-900 text-white":"pattern"===t,"bg-transparent text-black":"pattern"!==t}),onClick:function(){return e("pattern")},children:(0,_t.jsx)("span",{className:"",children:(0,gt.__)("Patterns","extendify-sdk")})}),(0,_t.jsx)("button",{type:"button",className:jt()({"cursor-pointer text-xs leading-none m-0 py-2.5 px-4 min-w-sm items-center border rounded-tr-sm rounded-br-sm border-black outline-none -ml-px button-focus":!0,"bg-gray-900 text-white":"template"===t,"bg-transparent text-black":"template"!==t}),onClick:function(){return e("template")},children:(0,_t.jsx)("span",{className:"",children:(0,gt.__)("Page Layouts","extendify-sdk")})})]})}function Vn(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function $n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Hn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Hn(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Hn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Wn(e){var t=e.actionCallback,n=e.initialFocus,o=D((function(e){return e.apiKey.length})),i=$n((0,r.useState)(""),2),s=i[0],a=i[1],l=$n((0,r.useState)(""),2),c=l[0],u=l[1],d=$n((0,r.useState)(""),2),f=d[0],p=d[1],h=$n((0,r.useState)("info"),2),m=h[0],x=h[1],y=$n((0,r.useState)(!1),2),v=y[0],b=y[1],w=$n((0,r.useState)(!1),2),j=w[0],k=w[1],S=(0,r.useRef)(null),C=(0,r.useRef)(null);(0,r.useEffect)((function(){return a(D.getState().email),function(){return x("info")}}),[]),(0,r.useEffect)((function(){var e;j&&(null==S||null===(e=S.current)||void 0===e||e.focus())}),[j]);var _=function(){var e,t=(e=g().mark((function e(t){var n,r,o,i,a;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),b(!0),p(""),e.next=5,O(s,c);case 5:if(n=e.sent,r=n.token,o=n.error,i=n.exception,void 0===(a=n.message)){e.next=15;break}return x("error"),b(!1),p(a.length?a:"Error: Are you interacting with the wrong server?"),e.abrupt("return");case 15:if(!o&&!i){e.next=20;break}return x("error"),b(!1),p(o.length?o:i),e.abrupt("return");case 20:if(r&&"string"==typeof r){e.next=25;break}return x("error"),b(!1),p((0,gt.__)("Something went wrong","extendify-sdk")),e.abrupt("return");case 25:x("success"),p("Success!"),k(!0),b(!1),D.setState({email:s,apiKey:r});case 30:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Vn(i,r,o,s,a,"next",e)}function a(e){Vn(i,r,o,s,a,"throw",e)}s(void 0)}))});return function(e){return t.apply(this,arguments)}}();return j?(0,_t.jsxs)("section",{className:"w-80 space-y-8 text-center pt-2 pb-4",children:[(0,_t.jsx)(_n,{icon:Fn,size:148}),(0,_t.jsx)("p",{className:"text-lg text-extendify-black text-center leading-extra-tight font-semibold",children:(0,gt.__)("You've signed in to Extendify","extendify-sdk")}),(0,_t.jsx)(bt.Button,{ref:S,className:"px-4 p-2 cursor-pointer text-center rounded bg-extendify-main text-white",onClick:t,children:(0,gt.__)("View patterns","extendify-sdk")})]}):o?(0,_t.jsxs)("section",{className:"space-y-8 w-full pb-2",children:[(0,_t.jsx)("p",{className:"text-base text-extendify-black leading-extra-tight",children:(0,gt.__)("Account","extendify-sdk")}),(0,_t.jsxs)("div",{className:"flex justify-between items-center",children:[(0,_t.jsxs)("div",{className:"flex items-center space-x-2 -ml-2",children:[(0,_t.jsx)(_n,{icon:Dn,size:48}),(0,_t.jsx)("p",{className:"text-extendify-black",children:null!=s&&s.length?s:(0,gt.__)("Logged In","extendify-sdk")})]}),window.location.search.indexOf("DEVMODE")>-1&&(0,_t.jsx)(bt.Button,{className:"px-4 py-3 cursor-pointer text-center rounded bg-extendify-main hover:bg-extendify-main-dark text-white",onClick:function(){u(""),D.setState({apiKey:""}),setTimeout((function(){var e;null==C||null===(e=C.current)||void 0===e||e.focus()}),0)},children:(0,gt.__)("Sign out","extendify-sdk")})]})]}):(0,_t.jsxs)("section",{className:"w-80 text-left space-y-8 pb-6",children:[(0,_t.jsxs)("div",{children:[(0,_t.jsx)("p",{className:"text-lg text-extendify-black text-center leading-extra-tight font-semibold",children:(0,gt.__)("Sign in to Extendify","extendify-sdk")}),(0,_t.jsxs)("p",{className:"text-sm text-extendify-gray text-center space-x-1 leading-extra-tight",children:[(0,_t.jsx)("span",{children:(0,gt.__)("Don't have an account?","extendify-sdk")}),(0,_t.jsx)("a",{href:"https://extendify.com/pricing?utm_source=".concat(window.extendifySdkData.sdk_partner,"&utm_medium=library&utm_campaign=sign-in-form&utm_content=sign-up"),target:"_blank",className:"underline hover:no-underline text-extendify-gray",rel:"noreferrer",children:(0,gt.__)("Sign up","extendify-sdk")})]})]}),(0,_t.jsxs)("form",{onSubmit:_,className:"space-y-2",children:[(0,_t.jsxs)("div",{className:"flex items-center",children:[(0,_t.jsx)("label",{className:"sr-only",htmlFor:"extendifysdk-login-email",children:(0,gt.__)("Email address","extendify-sdk")}),(0,_t.jsx)("input",{ref:n,id:"extendifysdk-login-email",name:"extendifysdk-login-email",type:"email",className:"border-2 p-2 w-full rounded",placeholder:(0,gt.__)("Email address","extendify-sdk"),value:s.length?s:"",onChange:function(e){return a(e.target.value)}})]}),(0,_t.jsxs)("div",{className:"flex items-center",children:[(0,_t.jsx)("label",{className:"sr-only",htmlFor:"extendifysdk-login-license",children:(0,gt.__)("License key","extendify-sdk")}),(0,_t.jsx)("input",{ref:C,id:"extendifysdk-login-license",name:"extendifysdk-login-license",type:"text",className:"border-2 p-2 w-full rounded",placeholder:(0,gt.__)("License key","extendify-sdk"),value:c,onChange:function(e){return u(e.target.value)}})]}),(0,_t.jsx)("div",{className:"pt-2 flex justify-center",children:(0,_t.jsxs)("button",{type:"submit",className:"relative p-2 py-3 w-72 max-w-full flex justify-center cursor-pointer text-center rounded bg-extendify-main hover:bg-extendify-main-dark text-base text-white ",children:[(0,_t.jsx)("span",{children:(0,gt.__)("Sign In","extendify-sdk")}),v&&(0,_t.jsx)("div",{className:"absolute right-2.5",children:(0,_t.jsx)(bt.Spinner,{})})]})}),f&&(0,_t.jsx)("div",{className:jt()({"border-gray-900 text-gray-900":"info"===m,"border-wp-alert-red text-wp-alert-red":"error"===m,"border-extendify-main text-extendify-main":"success"===m}),children:f}),(0,_t.jsx)("div",{className:"text-center pt-4",children:(0,_t.jsx)("a",{target:"_blank",rel:"noreferrer",href:"https://extendify.com/guides/sign-in?utm_source=".concat(window.extendifySdkData.sdk_partner,"&utm_medium=library&utm_campaign=sign-in-form&utm_content=need-help"),className:"underline hover:no-underline text-sm text-extendify-gray",children:(0,gt.__)("Need Help?","extendify-sdk")})})]})]})}function Jn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Gn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Jn(Object(n),!0).forEach((function(t){Kn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Jn(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Kn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zn=function(e){return(0,_t.jsx)(bt.Button,Gn(Gn({},e),{},{icon:(0,_t.jsx)(_n,{icon:zn}),className:"text-extendify-black opacity-75 hover:opacity-100",showTooltip:!1,label:(0,gt.__)("Close dialog","extendify-sdk")}))},Yn=(0,r.forwardRef)((function(e,t){var n=e.isOpen,o=e.heading,i=e.onRequestClose,s=e.children,a=(0,r.useRef)(null);return(0,_t.jsx)(Te.Root,{appear:!0,show:n,as:r.Fragment,children:(0,_t.jsx)(vt,{as:"div",static:!0,open:n,initialFocus:null!=t?t:a,className:"extendify-sdk",onClose:i,children:(0,_t.jsxs)("div",{className:"fixed z-high inset-0 flex",children:[(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-50 transition",enterFrom:"opacity-0",enterTo:"opacity-100",children:(0,_t.jsx)(vt.Overlay,{className:"fixed inset-0 bg-black bg-opacity-40 transition-opacity"})}),(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-300 translate transform",enterFrom:"opacity-0 translate-y-4 sm:translate-y-5",enterTo:"opacity-100 translate-y-0",children:(0,_t.jsx)("div",{className:"m-auto relative w-full",children:(0,_t.jsxs)("div",{className:"bg-white shadow-modal items-center justify-center m-auto max-w-lg relative rounded-sm w-full",children:[o?(0,_t.jsxs)("div",{className:"border-b flex justify-between items-center leading-none pl-6 py-2 pr-3",children:[(0,_t.jsx)("span",{className:"text-base text-extendify-black whitespace-nowrap",children:o}),(0,_t.jsx)(Zn,{onClick:i})]}):(0,_t.jsx)("div",{className:"absolute block px-6 py-4 top-0 right-0 ",children:(0,_t.jsx)(Zn,{ref:a,onClick:i})}),(0,_t.jsx)("div",{children:s})]})})})]})})})}));function Xn(e){var t=e.isOpen,n=e.onClose,o=(0,r.useRef)(null);return(0,_t.jsx)(Yn,{heading:(0,gt.__)("Settings","extendify-sdk"),isOpen:t,ref:o,onRequestClose:n,children:(0,_t.jsx)("div",{className:"flex p-6 justify-center",children:(0,_t.jsx)(Wn,{initialFocus:o,actionCallback:n})})})}function Qn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return er(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return er(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function er(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function tr(e){var t=e.className,n=y((function(e){return e.setOpen})),o=Qn((0,r.useState)(!1),2),i=o[0],s=o[1];return(0,_t.jsx)("div",{className:t,children:(0,_t.jsxs)("div",{className:"flex justify-between items-center px-6 sm:pl-6 sm:pr-12 h-full",children:[(0,_t.jsx)("div",{className:"flex space-x-12 h-full",children:(0,_t.jsx)("div",{className:"bg-transparent flex items-center space-x-1.5 lg:w-72 text-extendify-black",children:(0,_t.jsx)(_n,{icon:Ln,size:40})})}),(0,_t.jsx)(qn,{}),(0,_t.jsxs)("div",{className:"space-x-2 transform sm:translate-x-6 flex",children:[(0,_t.jsx)(bt.Button,{onClick:function(){return s(!0)},icon:(0,_t.jsx)(_n,{icon:Dn,size:24}),label:(0,gt.__)("Settings","extendify-sdk")}),i&&(0,_t.jsx)(Xn,{isOpen:i,onClose:function(){return s(!1)}}),(0,_t.jsx)(bt.Button,{onClick:function(){return n(!1)},icon:(0,_t.jsx)(_n,{icon:zn,size:24}),label:(0,gt.__)("Close library","extendify-sdk")})]})]})})}function nr(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function rr(){return rr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},rr.apply(this,arguments)}function or(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ir(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?or(Object(n),!0).forEach((function(t){sr(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):or(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function sr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const ar={breakpointCols:void 0,className:void 0,columnClassName:void 0,children:void 0,columnAttrs:void 0,column:void 0};class lr extends i().Component{constructor(e){let t;super(e),this.reCalculateColumnCount=this.reCalculateColumnCount.bind(this),this.reCalculateColumnCountDebounce=this.reCalculateColumnCountDebounce.bind(this),t=this.props.breakpointCols&&this.props.breakpointCols.default?this.props.breakpointCols.default:parseInt(this.props.breakpointCols)||2,this.state={columnCount:t}}componentDidMount(){this.reCalculateColumnCount(),window&&window.addEventListener("resize",this.reCalculateColumnCountDebounce)}componentDidUpdate(){this.reCalculateColumnCount()}componentWillUnmount(){window&&window.removeEventListener("resize",this.reCalculateColumnCountDebounce)}reCalculateColumnCountDebounce(){window&&window.requestAnimationFrame?(window.cancelAnimationFrame&&window.cancelAnimationFrame(this._lastRecalculateAnimationFrame),this._lastRecalculateAnimationFrame=window.requestAnimationFrame((()=>{this.reCalculateColumnCount()}))):this.reCalculateColumnCount()}reCalculateColumnCount(){const e=window&&window.innerWidth||1/0;let t=this.props.breakpointCols;"object"!=typeof t&&(t={default:parseInt(t)||2});let n=1/0,r=t.default||2;for(let o in t){const i=parseInt(o);i>0&&e<=i&&i<n&&(n=i,r=t[o])}r=Math.max(1,parseInt(r)||1),this.state.columnCount!==r&&this.setState({columnCount:r})}itemsInColumns(){const e=this.state.columnCount,t=new Array(e),n=i().Children.toArray(this.props.children);for(let r=0;r<n.length;r++){const o=r%e;t[o]||(t[o]=[]),t[o].push(n[r])}return t}renderColumns(){const{column:e,columnAttrs:t={},columnClassName:n}=this.props,r=this.itemsInColumns(),o=100/r.length+"%";let s=n;s&&"string"!=typeof s&&(this.logDeprecated('The property "columnClassName" requires a string'),void 0===s&&(s="my-masonry-grid_column"));const a=ir(ir(ir({},e),t),{},{style:ir(ir({},t.style),{},{width:o}),className:s});return r.map(((e,t)=>i().createElement("div",rr({},a,{key:t}),e)))}logDeprecated(e){console.error("[Masonry]",e)}render(){const e=this.props,{children:t,breakpointCols:n,columnClassName:r,columnAttrs:o,column:s,className:a}=e,l=nr(e,["children","breakpointCols","columnClassName","columnAttrs","column","className"]);let c=a;return"string"!=typeof a&&(this.logDeprecated('The property "className" requires a string'),void 0===a&&(c="my-masonry-grid")),i().createElement("div",rr({},l,{className:c}),this.renderColumns())}}lr.defaultProps=ar;const cr=lr;function ur(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return dr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return dr(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function dr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function fr(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hr(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function mr(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){hr(i,r,o,s,a,"next",e)}function a(e){hr(i,r,o,s,a,"throw",e)}s(void 0)}))}}var xr=0,yr=function(e){var t=arguments;return mr(g().mark((function n(){var r,o,i,s,a,l;return g().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return s=t.length>1&&void 0!==t[1]?t[1]:{},xr++,a="pattern"===e.type?"8":"4",n.next=5,w.post("templates",{filterByFormula:br(e),pageSize:null!==(r=null==s?void 0:s.pageSize)&&void 0!==r?r:a,categories:e.taxonomies,search:e.search,type:e.type,offset:null!==(o=s.offset)&&void 0!==o?o:"",initial:1===xr,request_count:xr,sdk_partner:null!==(i=D.getState().sdkPartner)&&void 0!==i?i:""});case 5:return l=n.sent,n.abrupt("return",l);case 7:case"end":return n.stop()}}),n)})))()},vr=function(e){var t;return w.post("templates/".concat(e.id),{template_id:e.id,maybe_import:!0,type:e.fields.type,pageSize:"1",template_name:null===(t=e.fields)||void 0===t?void 0:t.title})},gr=function(e){var t,n,r;return w.post("templates/".concat(e.id),{template_id:e.id,imported:!0,base_pattern:null!==(t=null===(n=e.fields)||void 0===n?void 0:n.base_pattern[0])&&void 0!==t?t:"",type:e.fields.type,pageSize:"1",template_name:null===(r=e.fields)||void 0===r?void 0:r.title})},br=function(e){var t,n=e.taxonomies,r=e.type;n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?fr(Object(n),!0).forEach((function(t){pr(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):fr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},n);var o=[];"Unknown"===(null===(t=n)||void 0===t?void 0:t.tax_categories)&&(n.tax_categories="Default");var i=Object.entries(n).filter((function(e){var t=ur(e,2),n=t[0],o=t[1];return jr(n,o,r)})).filter((function(e){var t=ur(e,1)[0];return Boolean(t[1].length)})).map((function(e){var t=ur(e,2),n=t[0],r=t[1];return"".concat(n,' = "').concat(r,'"')})).join(", ");return i.length&&o.push(i),r.length&&o.push('{type}="'.concat(r,'"')),o.length?"AND(".concat(o.join(", "),")").replace(/\r?\n|\r/g,""):""},wr=new Map,jr=function(e,t,n){var r,o,i,s,a="".concat(e,"-").concat(t,"-").concat(n);if("tax_categories-Default-pattern"===a)return!0;wr.has(a)||wr.set(a,null===(r=U.getState())||void 0===r||null===(o=r.taxonomies[e])||void 0===o||null===(i=o.find((function(e){return(null==e?void 0:e.term)===t})))||void 0===i||null===(s=i.type)||void 0===s?void 0:s.includes(n));return wr.get(a)};function kr(){return kr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},kr.apply(this,arguments)}var Or=new Map,Sr=new WeakMap,Cr=0;function _r(e){return Object.keys(e).sort().filter((function(t){return void 0!==e[t]})).map((function(t){return t+"_"+("root"===t?(n=e.root)?(Sr.has(n)||(Cr+=1,Sr.set(n,Cr.toString())),Sr.get(n)):"0":e[t]);var n})).toString()}function Er(e,t,n){if(void 0===n&&(n={}),!e)return function(){};var r=function(e){var t=_r(e),n=Or.get(t);if(!n){var r,o=new Map,i=new IntersectionObserver((function(t){t.forEach((function(t){var n,i=t.isIntersecting&&r.some((function(e){return t.intersectionRatio>=e}));e.trackVisibility&&void 0===t.isVisible&&(t.isVisible=i),null==(n=o.get(t.target))||n.forEach((function(e){e(i,t)}))}))}),e);r=i.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),n={id:t,observer:i,elements:o},Or.set(t,n)}return n}(n),o=r.id,i=r.observer,s=r.elements,a=s.get(e)||[];return s.has(e)||s.set(e,a),a.push(t),i.observe(e),function(){a.splice(a.indexOf(t),1),0===a.length&&(s.delete(e),i.unobserve(e)),0===s.size&&(i.disconnect(),Or.delete(o))}}function Nr(e){return"function"!=typeof e.children}var Ar=function(e){var t,n;function r(t){var n;return(n=e.call(this,t)||this).node=null,n._unobserveCb=null,n.handleNode=function(e){n.node&&(n.unobserve(),e||n.props.triggerOnce||n.props.skip||n.setState({inView:!!n.props.initialInView,entry:void 0})),n.node=e||null,n.observeNode()},n.handleChange=function(e,t){e&&n.props.triggerOnce&&n.unobserve(),Nr(n.props)||n.setState({inView:e,entry:t}),n.props.onChange&&n.props.onChange(e,t)},n.state={inView:!!t.initialInView,entry:void 0},n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var i=r.prototype;return i.componentDidUpdate=function(e){e.rootMargin===this.props.rootMargin&&e.root===this.props.root&&e.threshold===this.props.threshold&&e.skip===this.props.skip&&e.trackVisibility===this.props.trackVisibility&&e.delay===this.props.delay||(this.unobserve(),this.observeNode())},i.componentWillUnmount=function(){this.unobserve(),this.node=null},i.observeNode=function(){if(this.node&&!this.props.skip){var e=this.props,t=e.threshold,n=e.root,r=e.rootMargin,o=e.trackVisibility,i=e.delay;this._unobserveCb=Er(this.node,this.handleChange,{threshold:t,root:n,rootMargin:r,trackVisibility:o,delay:i})}},i.unobserve=function(){this._unobserveCb&&(this._unobserveCb(),this._unobserveCb=null)},i.render=function(){if(!Nr(this.props)){var e=this.state,t=e.inView,n=e.entry;return this.props.children({inView:t,entry:n,ref:this.handleNode})}var r=this.props,i=r.children,s=r.as,a=r.tag,l=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(r,["children","as","tag","triggerOnce","threshold","root","rootMargin","onChange","skip","trackVisibility","delay","initialInView"]);return(0,o.createElement)(s||a||"div",kr({ref:this.handleNode},l),i)},r}(o.Component);function Pr(e){var t=void 0===e?{}:e,n=t.threshold,r=t.delay,i=t.trackVisibility,s=t.rootMargin,a=t.root,l=t.triggerOnce,c=t.skip,u=t.initialInView,d=(0,o.useRef)(),f=(0,o.useState)({inView:!!u}),p=f[0],h=f[1],m=(0,o.useCallback)((function(e){void 0!==d.current&&(d.current(),d.current=void 0),c||e&&(d.current=Er(e,(function(e,t){h({inView:e,entry:t}),t.isIntersecting&&l&&d.current&&(d.current(),d.current=void 0)}),{root:a,rootMargin:s,threshold:n,trackVisibility:i,delay:r}))}),[Array.isArray(n)?n.toString():n,a,s,l,c,i,r]);(0,o.useEffect)((function(){d.current||!p.entry||l||c||h({inView:!!u})}));var x=[m,p.inView,p.entry];return x.ref=x[0],x.inView=x[1],x.entry=x[2],x}Ar.displayName="InView",Ar.defaultProps={threshold:0,triggerOnce:!1,initialInView:!1};var Tr=function(){return w.get("plugins")},Ir=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=new FormData;return t.append("plugins",JSON.stringify(e)),w.post("plugins",t,{headers:{"Content-Type":"multipart/form-data"}})},Lr=function(){return w.get("active-plugins")};function Mr(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function Rr(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Mr(i,r,o,s,a,"next",e)}function a(e){Mr(i,r,o,s,a,"throw",e)}s(void 0)}))}}var Dr=[],Fr=[];function Br(e){return Ur.apply(this,arguments)}function Ur(){return(Ur=Rr(g().mark((function e(t){var n,r,o,i;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((o=(o=null!==(n=null==t||null===(r=t.fields)||void 0===r?void 0:r.required_plugins)&&void 0!==n?n:[]).filter((function(e){return"editorplus"!==e}))).length){e.next=4;break}return e.abrupt("return",!1);case 4:if(Dr.length){e.next=10;break}return e.t0=Object,e.next=8,Tr();case 8:e.t1=e.sent,Dr=e.t0.keys.call(e.t0,e.t1);case 10:return i=!!o.length&&o.filter((function(e){return!Dr.some((function(t){return t.includes(e)}))})),e.abrupt("return",i.length);case 12:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function zr(e){return qr.apply(this,arguments)}function qr(){return(qr=Rr(g().mark((function e(t){var n,r,o,i;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if((o=(o=null!==(n=null==t||null===(r=t.fields)||void 0===r?void 0:r.required_plugins)&&void 0!==n?n:[]).filter((function(e){return"editorplus"!==e}))).length){e.next=4;break}return e.abrupt("return",!1);case 4:if(Fr.length){e.next=10;break}return e.t0=Object,e.next=8,Lr();case 8:e.t1=e.sent,Fr=e.t0.values.call(e.t0,e.t1);case 10:if(!(i=!!o.length&&o.filter((function(e){return!Fr.some((function(t){return t.includes(e)}))})))){e.next=16;break}return e.next=14,Br(t);case 14:if(!e.sent){e.next=16;break}return e.abrupt("return",!1);case 16:return e.abrupt("return",i.length);case 17:case"end":return e.stop()}}),e)})))).apply(this,arguments)}var Vr=l(x((function(e){return{wantedTemplate:{},importOnLoad:!1,setWanted:function(t){return e({wantedTemplate:t})},removeWanted:function(){return e({wantedTemplate:{}})}}}),{name:"extendify-wanted-template"}));function $r(e){var t=e.msg;return(0,_t.jsxs)(bt.Modal,{style:{maxWidth:"500px"},title:(0,gt.__)("Error installing plugins","extendify-sdk"),isDismissible:!1,children:[(0,gt.__)("You have encountered an error that we cannot recover from. Please try again.","extendify-sdk"),(0,_t.jsx)("br",{}),(0,_t.jsx)(bt.Notice,{isDismissible:!1,status:"error",children:t}),(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:function(){return(0,r.render)((0,_t.jsx)(Qr,{}),document.getElementById("extendify-root"))},children:(0,gt.__)("Go back","extendify-sdk")})]})}const Hr=wp.data;function Wr(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Jr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Jr(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Jr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Gr(){var e=Wr((0,r.useState)(!1),2),t=e[0],n=e[1],o=function(){location.reload()};return(0,(0,Hr.select)("core/editor").isEditedPostDirty)()?(0,_t.jsxs)(bt.Modal,{title:(0,gt.__)("Reload required","extendify-sdk"),isDismissible:!1,children:[(0,_t.jsx)("p",{style:{maxWidth:"400px"},children:(0,gt.__)("Just one more thing! We need to reload the page to continue.","extendify-sdk")}),(0,_t.jsxs)(bt.ButtonGroup,{children:[(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:o,disabled:t,children:(0,gt.__)("Reload page","extendify-sdk")}),(0,_t.jsx)(bt.Button,{isSecondary:!0,onClick:function(){n(!0),(0,Hr.dispatch)("core/editor").savePost(),n(!1)},isBusy:t,style:{margin:"0 4px"},children:(0,gt.__)("Save changes","extendify-sdk")})]})]}):(o(),null)}function Kr(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Zr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Zr(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Zr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Yr(){var e,t=Kr((0,r.useState)(""),2),n=t[0],o=t[1],i=Vr((function(e){return e.wantedTemplate})),s=null==i||null===(e=i.fields)||void 0===e?void 0:e.required_plugins.filter((function(e){return"editorplus"!==e}));return Ir(s).then((function(){Vr.setState({importOnLoad:!0}),(0,r.render)((0,_t.jsx)(Gr,{}),document.getElementById("extendify-root"))})).catch((function(e){var t=e.message;o(t)})),n?(0,_t.jsx)($r,{msg:n}):(0,_t.jsx)(bt.Modal,{title:(0,gt.__)("Installing plugins","extendify-sdk"),isDismissible:!1,children:(0,_t.jsx)(bt.Button,{style:{width:"100%"},disabled:!0,isPrimary:!0,isBusy:!0,onClick:function(){},children:(0,gt.__)("Installing...","extendify-sdk")})})}function Xr(){var e,t,n,o=Vr((function(e){return e.wantedTemplate})),i=(null==o||null===(e=o.fields)||void 0===e?void 0:e.required_plugins)||[];return(0,_t.jsxs)(bt.Modal,{title:(0,gt.__)("Plugins required","extendify-sdk"),isDismissible:!1,children:[(0,_t.jsx)("p",{style:{maxWidth:"400px"},children:(0,gt.sprintf)((0,gt.__)("In order to add this %s to your site, the following plugins are required to be installed and activated.","extendify-sdk"),null!==(t=null==o||null===(n=o.fields)||void 0===n?void 0:n.type)&&void 0!==t?t:"template")}),(0,_t.jsx)("ul",{children:i.filter((function(e){return"editorplus"!==e})).map((function(e){return(0,_t.jsx)("li",{children:St(e)},e)}))}),(0,_t.jsx)("p",{style:{maxWidth:"400px",fontWeight:"bold"},children:(0,gt.__)("Please contact a site admin for assistance in adding these plugins to your site.","extendify-sdk")}),(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:function(){return(0,r.render)((0,_t.jsx)(gi,{show:!0}),document.getElementById("extendify-root"))},style:{boxShadow:"none"},children:(0,gt.__)("Return to library","extendify-sdk")})]})}function Qr(e){var t,n,o,i,s,a,l,c,u=Vr((function(e){return e.wantedTemplate})),d=(null==u||null===(t=u.fields)||void 0===t?void 0:t.required_plugins)||[];return null!==(n=D.getState())&&void 0!==n&&n.canInstallPlugins?(0,_t.jsxs)(bt.Modal,{title:null!==(o=e.title)&&void 0!==o?o:(0,gt.__)("Install required plugins","extendify-sdk"),isDismissible:!1,children:[(0,_t.jsx)("p",{style:{maxWidth:"400px"},children:null!==(i=e.message)&&void 0!==i?i:(0,gt.__)((0,gt.sprintf)("There is just one more step. This %s requires the following to be automatically installed and activated:",null!==(s=null==u||null===(a=u.fields)||void 0===a?void 0:a.type)&&void 0!==s?s:"template"),"extendify-sdk")}),(null===(l=e.message)||void 0===l?void 0:l.length)>0||(0,_t.jsx)("ul",{children:d.filter((function(e){return"editorplus"!==e})).map((function(e){return(0,_t.jsx)("li",{children:St(e)},e)}))}),(0,_t.jsxs)(bt.ButtonGroup,{children:[(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:function(){return(0,r.render)((0,_t.jsx)(Yr,{}),document.getElementById("extendify-root"))},children:null!==(c=e.buttonLabel)&&void 0!==c?c:(0,gt.__)("Install Plugins","extendify-sdk")}),e.forceOpen||(0,_t.jsx)(bt.Button,{isTertiary:!0,onClick:function(){e.forceOpen||(0,r.render)((0,_t.jsx)(gi,{show:!0}),document.getElementById("extendify-root"))},style:{boxShadow:"none",margin:"0 4px"},children:(0,gt.__)("No thanks, take me back","extendify-sdk")})]})]}):(0,_t.jsx)(Xr,{})}function eo(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}var to=function(){var e,t=(e=g().mark((function e(t){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Br(t);case 2:return e.t0=!e.sent,e.t1=function(){},e.t2=function(){return new Promise((function(){(0,r.render)((0,_t.jsx)(Qr,{}),document.getElementById("extendify-root"))}))},e.abrupt("return",{id:"hasRequiredPlugins",pass:e.t0,allow:e.t1,deny:e.t2});case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){eo(i,r,o,s,a,"next",e)}function a(e){eo(i,r,o,s,a,"throw",e)}s(void 0)}))});return function(e){return t.apply(this,arguments)}}();function no(e){var t=e.msg;return(0,_t.jsxs)(bt.Modal,{style:{maxWidth:"500px"},title:(0,gt.__)("Error Activating plugins","extendify-sdk"),isDismissible:!1,children:[(0,gt.__)("You have encountered an error that we cannot recover from. Please try again.","extendify-sdk"),(0,_t.jsx)("br",{}),(0,_t.jsx)(bt.Notice,{isDismissible:!1,status:"error",children:t}),(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:function(){(0,r.render)((0,_t.jsx)(lo,{}),document.getElementById("extendify-root"))},children:(0,gt.__)("Go back","extendify-sdk")})]})}function ro(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function oo(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){ro(i,r,o,s,a,"next",e)}function a(e){ro(i,r,o,s,a,"throw",e)}s(void 0)}))}}function io(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return so(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return so(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function so(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ao(){var e,t=io((0,r.useState)(""),2),n=t[0],o=t[1],i=Vr((function(e){return e.wantedTemplate})),s=null==i||null===(e=i.fields)||void 0===e?void 0:e.required_plugins.filter((function(e){return"editorplus"!==e}));return Ir(s).then((function(){Vr.setState({importOnLoad:!0})})).then(oo(g().mark((function e(){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,new Promise((function(e){return setTimeout(e,1e3)}));case 2:(0,r.render)((0,_t.jsx)(Gr,{}),document.getElementById("extendify-root"));case 3:case"end":return e.stop()}}),e)})))).catch((function(e){var t=e.response;o(t.data.message)})),n?(0,_t.jsx)(no,{msg:n}):(0,_t.jsx)(bt.Modal,{title:(0,gt.__)("Activating plugins","extendify-sdk"),isDismissible:!1,children:(0,_t.jsx)(bt.Button,{style:{width:"100%"},disabled:!0,isPrimary:!0,isBusy:!0,onClick:function(){},children:(0,gt.__)("Activating...","extendify-sdk")})})}function lo(e){var t,n,o,i,s,a=Vr((function(e){return e.wantedTemplate})),l=(null==a||null===(t=a.fields)||void 0===t?void 0:t.required_plugins)||[];return null!==(n=D.getState())&&void 0!==n&&n.canActivatePlugins?(0,_t.jsx)(bt.Modal,{title:(0,gt.__)("Activate required plugins","extendify-sdk"),isDismissible:!1,children:(0,_t.jsxs)("div",{children:[(0,_t.jsx)("p",{style:{maxWidth:"400px"},children:null!==(o=e.message)&&void 0!==o?o:(0,gt.__)((0,gt.sprintf)("There is just one more step. This %s requires the following plugins to be installed and activated:",null!==(i=null==a||null===(s=a.fields)||void 0===s?void 0:s.type)&&void 0!==i?i:"template"),"extendify-sdk")}),(0,_t.jsx)("ul",{children:l.filter((function(e){return"editorplus"!==e})).map((function(e){return(0,_t.jsx)("li",{children:St(e)},e)}))}),(0,_t.jsxs)(bt.ButtonGroup,{children:[(0,_t.jsx)(bt.Button,{isPrimary:!0,onClick:function(){return(0,r.render)((0,_t.jsx)(ao,{}),document.getElementById("extendify-root"))},children:(0,gt.__)("Activate Plugins","extendify-sdk")}),e.showClose&&(0,_t.jsx)(bt.Button,{isTertiary:!0,onClick:function(){return(0,r.render)((0,_t.jsx)(gi,{show:!0}),document.getElementById("extendify-root"))},style:{boxShadow:"none",margin:"0 4px"},children:(0,gt.__)("No thanks, return to library","extendify-sdk")})]})]})}):(0,_t.jsx)(Xr,{})}function co(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}var uo=function(){var e,t=(e=g().mark((function e(t){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,zr(t);case 2:return e.t0=!e.sent,e.t1=function(){},e.t2=function(){return new Promise((function(){(0,r.render)((0,_t.jsx)(lo,{showClose:!0}),document.getElementById("extendify-root"))}))},e.abrupt("return",{id:"hasPluginsActivated",pass:e.t0,allow:e.t1,deny:e.t2});case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){co(i,r,o,s,a,"next",e)}function a(e){co(i,r,o,s,a,"throw",e)}s(void 0)}))});return function(e){return t.apply(this,arguments)}}();function fo(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function po(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ho(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ho(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ho(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function mo(e){var t=e.finished,n=po((0,r.useState)(""),2),o=n[0],i=n[1],s=(0,r.useRef)(),a=function(){var e,n=(e=g().mark((function e(n){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n.preventDefault(),e.next=3,C(o);case 3:D.setState({registration:{email:o}}),t();case 5:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){fo(i,r,o,s,a,"next",e)}function a(e){fo(i,r,o,s,a,"throw",e)}s(void 0)}))});return function(e){return n.apply(this,arguments)}}();return(0,_t.jsxs)(bt.Modal,{className:"extendify-sdk",title:(0,gt.__)("One last step...","extendify-sdk"),isDismissible:!1,children:[(0,_t.jsx)("p",{className:"m-0 mb-4 max-w-md",children:(0,gt.__)("Register now to receive updates and special offers from Extendify","extendify-sdk")}),(0,_t.jsxs)("form",{onSubmit:a,className:"flex space-x-4 mb-8",children:[(0,_t.jsxs)("div",{className:"relative w-full max-w-xs",children:[(0,_t.jsx)("input",{id:"extendify-email-register",required:!0,onChange:function(e){return i(e.target.value)},type:"text",className:"extendify-special-input button-focus text-sm h-8 min-h-0 border border-gray-900 special-input placeholder-transparent rounded-none w-full px-2",placeholder:(0,gt.__)("Email","extendify-sdk")}),(0,_t.jsx)("label",{htmlFor:"extendify-email-register",className:"-top-3 bg-white absolute left-1 px-1 transition-all",children:(0,gt.__)("Email","extendify-sdk")})]}),(0,_t.jsx)("input",{type:"submit",className:"hidden"})]}),(0,_t.jsxs)(bt.ButtonGroup,{children:[(0,_t.jsx)(bt.Button,{ref:s,isPrimary:!0,onClick:a,children:(0,gt.__)("Submit and import","extendify-sdk")}),(0,_t.jsx)(bt.Button,{isTertiary:!0,onClick:t,style:{boxShadow:"none",margin:"0 4px"},children:(0,gt.__)("Skip and import","extendify-sdk")})]})]})}function xo(){var e;return{id:"NeedsRegistrationModal",pass:Boolean((null===(e=D.getState().registration)||void 0===e?void 0:e.email)||D.getState().apiKey),allow:function(){},deny:function(){return new Promise((function(e){(0,r.render)((0,_t.jsx)(mo,{finished:e}),document.getElementById("extendify-root"))}))}}}function yo(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return vo(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vo(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function vo(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function go(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function bo(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){go(i,r,o,s,a,"next",e)}function a(e){go(i,r,o,s,a,"throw",e)}s(void 0)}))}}function wo(e){return function(){return new jo(e.apply(this,arguments))}}function jo(e){var t,n;function r(t,n){try{var i=e[t](n),s=i.value,a=s instanceof ko;Promise.resolve(a?s.wrapped:s).then((function(e){a?r("return"===t?"return":"next",e):o(i.done?"return":"normal",e)}),(function(e){r("throw",e)}))}catch(e){o("throw",e)}}function o(e,o){switch(e){case"return":t.resolve({value:o,done:!0});break;case"throw":t.reject(o);break;default:t.resolve({value:o,done:!1})}(t=t.next)?r(t.key,t.arg):n=null}this._invoke=function(e,o){return new Promise((function(i,s){var a={key:e,arg:o,resolve:i,reject:s,next:null};n?n=n.next=a:(t=n=a,r(e,o))}))},"function"!=typeof e.return&&(this.return=void 0)}function ko(e){this.wrapped=e}jo.prototype["function"==typeof Symbol&&Symbol.asyncIterator||"@@asyncIterator"]=function(){return this},jo.prototype.next=function(e){return this._invoke("next",e)},jo.prototype.throw=function(e){return this._invoke("throw",e)},jo.prototype.return=function(e){return this._invoke("return",e)};function Oo(e){return So.apply(this,arguments)}function So(){return(So=bo(g().mark((function e(t){var n;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=Co(t);case 1:return e.next=4,n.next();case 4:if(!e.sent.done){e.next=7;break}return e.abrupt("break",9);case 7:e.next=1;break;case 9:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function Co(e){return _o.apply(this,arguments)}function _o(){return(_o=wo(g().mark((function e(t){var n,r,o;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n=yo(t),e.prev=1,n.s();case 3:if((r=n.n()).done){e.next=9;break}return o=r.value,e.next=7,o();case 7:e.next=3;break;case 9:e.next=14;break;case 11:e.prev=11,e.t0=e.catch(1),n.e(e.t0);case 14:return e.prev=14,n.f(),e.finish(14);case 17:case"end":return e.stop()}}),e,null,[[1,11,14,17]])})))).apply(this,arguments)}function Eo(e,t){return(0,(0,Hr.dispatch)("core/block-editor").insertBlocks)(e).then((function(){window.dispatchEvent(new CustomEvent("extendify-sdk::template-inserted",{detail:{template:t},bubbles:!0}))}))}const No=wp.blockEditor,Ao=wp.blocks;var Po=["tagName","children"];function To(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Io(e){var t=e.tagName,n=void 0===t?"button":t,o=e.children,i=To(e,Po);return i.className=jt()(i.className,"bg-extendify-main hover:bg-extendify-main-dark py-3 pl-5 pr-3 w-60 rounded no-underline text-base text-white flex justify-center items-center space-x-2"),(0,r.createElement)(n,i,o)}function Lo(e){var t=e.onRequestClose,n=e.isOpen,o=e.left,i=e.right;return(0,_t.jsx)(Te.Root,{appear:!0,show:!0,as:r.Fragment,children:(0,_t.jsx)(vt,{as:"div",static:!0,open:n,className:"extendify-sdk",onClose:t,children:(0,_t.jsxs)("div",{className:"fixed z-high inset-0 flex",children:[(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-50 transition",enterFrom:"opacity-0",enterTo:"opacity-100",children:(0,_t.jsx)(vt.Overlay,{className:"fixed inset-0 bg-black bg-opacity-40 transition-opacity"})}),(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-300 translate transform",enterFrom:"opacity-0 translate-y-4 sm:translate-y-5",enterTo:"opacity-100 translate-y-0",children:(0,_t.jsx)("div",{className:"m-auto",children:(0,_t.jsxs)("div",{className:"shadow-modal relative m-8 md:m-0 max-w-md rounded-sm md:flex bg-gray-100 items-center justify-center md:max-w-2xl",children:[(0,_t.jsxs)("button",{onClick:t,className:"absolute bg-transparent block p-4 top-0 right-0 rounded-md cursor-pointer text-gray-700 opacity-30 hover:opacity-100",children:[(0,_t.jsx)("span",{className:"sr-only",children:(0,gt.__)("Close","extendify-sdk")}),(0,_t.jsx)(_n,{icon:zn})]}),(0,_t.jsx)("div",{className:"rounded-md md:rounded-l-md md:rounded-tr-none bg-white p-12 text-center md:w-7/12 items-center",children:o}),(0,_t.jsx)("div",{className:"justify-center md:justify-none md:w-6/12 p-10 text-black hidden md:block ",children:i})]})})})]})})})}function Mo(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function Ro(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Do(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Do(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Do(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Fo=(0,r.memo)((function(e){var t=e.blocks;return(0,_t.jsx)("div",{className:"with-light-shadow relative",children:(0,_t.jsx)(No.BlockPreview,{blocks:t,live:!1,viewportWidth:1400})})}),(function(e,t){return e.clientId==t.clientId})),Bo=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return{hasRequiredPlugins:to,hasPluginsActivated:uo,NeedsRegistrationModal:xo,stack:[],check:function(t){var n=this;return bo(g().mark((function r(){var o,i,s,a;return g().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:o=yo(e),r.prev=1,o.s();case 3:if((i=o.n()).done){r.next=11;break}return s=i.value,r.next=7,n["".concat(s)](t);case 7:a=r.sent,n.stack.push(a.pass?a.allow:a.deny);case 9:r.next=3;break;case 11:r.next=16;break;case 13:r.prev=13,r.t0=r.catch(1),o.e(r.t0);case 16:return r.prev=16,o.f(),r.finish(16);case 19:case"end":return r.stop()}}),r,null,[[1,13,16,19]])})))()},reset:function(){this.stack=[]}}}(["NeedsRegistrationModal","hasRequiredPlugins","hasPluginsActivated"]);function Uo(e){var t,n=e.template,o=(0,r.useRef)(null),i=(0,r.useRef)(!1),s=D((function(e){return e.canImport})),a=y((function(e){return e.setOpen})),l=(0,Ao.rawHandler)({HTML:n.fields.code}),c=Ro((0,r.useState)(!1),2),u=c[0],d=c[1],f=Ro(Pr(),2),p=f[0],h=f[1],m=Ro((0,r.useState)(!1),2),x=m[0],v=m[1],b=function(){var e,t=(e=g().mark((function e(){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Bo.check(n);case 2:Oo(Bo.stack).then((function(){setTimeout((function(){Eo(l,n).then((function(){return a(!1)})).then((function(){return(0,r.render)((0,_t.jsx)(gi,{}),document.getElementById("extendify-root"))})).then((function(){return Bo.reset()}))}),100)}));case 3:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Mo(i,r,o,s,a,"next",e)}function a(e){Mo(i,r,o,s,a,"throw",e)}s(void 0)}))});return function(){return t.apply(this,arguments)}}(),w=function(){s()?(vr(n),b()):v(!0)};return(0,r.useEffect)((function(){!u&&h&&d(!0)}),[h,u,n]),(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsxs)("div",{role:"button",tabIndex:"0",ref:o,"aria-label":(0,gt.sprintf)((0,gt.__)("Press to import %s","extendify-sdk"),null==n||null===(t=n.fields)||void 0===t?void 0:t.type),className:"mb-8 cursor-pointer button-focus",onFocus:function(){i.current||(i.current=!0,Array.from(o.current.querySelectorAll('a, button, input, textarea, select, details, [tabindex]:not([tabindex="-1"])')).forEach((function(e){return e.setAttribute("tabIndex","-1")})))},onClick:w,onKeyDown:function(e){["Enter","Space"," "].includes(e.key)&&(e.stopPropagation(),e.preventDefault(),w())},children:[(0,_t.jsx)("div",{ref:p,className:"invisible absolute inset-0 pointer-events-none"}),u&&(0,_t.jsx)(Fo,{blocks:l})]}),x&&(0,_t.jsx)(Lo,{isOpen:x,onRequestClose:function(){return v(!1)},left:(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("div",{className:"flex space-x-2 items-center justify-center mb-10 text-extendify-black",children:Mn}),(0,_t.jsx)("h3",{className:"text-xl md:leading-3",children:(0,gt.__)("You're out of imports","extendify-sdk")}),(0,_t.jsx)("p",{className:"text-sm text-black",children:(0,gt.__)("Sign up today and get unlimited access to our entire collection of patterns and page layouts.","extendify-sdk")}),(0,_t.jsx)("div",{children:(0,_t.jsxs)(Io,{tagName:"a",target:"_blank",className:"m-auto mt-10",href:"https://extendify.com/pricing/?utm_source=".concat(window.extendifySdkData.sdk_partner,"&utm_medium=library&utm_campaign=no-imports-modal&utm_content=get-unlimited-imports"),rel:"noreferrer",children:[(0,gt.__)("Get Unlimited Imports","extendify-sdk"),(0,_t.jsx)("svg",{fill:"none",height:"24",viewBox:"0 0 25 24",width:"25",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsx)("path",{d:"m10.3949 8.7864 5.5476-.02507m0 0-.0476 5.52507m.0476-5.52507c-2.357 2.35707-5.4183 5.41827-7.68101 7.68097",stroke:"currentColor",strokeWidth:"1.5"})})]})})]}),right:(0,_t.jsxs)("div",{className:"space-y-2",children:[(0,_t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,_t.jsxs)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.49271 18.0092C6.97815 17.1176 7.28413 15.9755 8.17569 15.4609C9.06724 14.946 10.2094 15.252 10.7243 16.1435C11.2389 17.0355 10.9329 18.1772 10.0413 18.6922C9.14978 19.2071 8.00764 18.9011 7.49271 18.0092V18.0092Z",fill:"currentColor"}),(0,_t.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.5073 6.12747C17.0218 7.01903 16.7158 8.16117 15.8243 8.67573C14.9327 9.19066 13.7906 8.88467 13.2757 7.99312C12.7611 7.10119 13.0671 5.95942 13.9586 5.44449C14.8502 4.92956 15.9923 5.23555 16.5073 6.12747V6.12747Z",fill:"currentColor"}),(0,_t.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.60135 11.1355C5.11628 10.2439 6.25805 9.93793 7.14998 10.4525C8.04153 10.9674 8.34752 12.1096 7.83296 13.0011C7.31803 13.8927 6.17588 14.1987 5.28433 13.6841C4.39278 13.1692 4.08679 12.0274 4.60135 11.1355V11.1355Z",fill:"currentColor"}),(0,_t.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.3986 13.0011C18.8837 13.8927 17.7419 14.1987 16.85 13.6841C15.9584 13.1692 15.6525 12.027 16.167 11.1355C16.682 10.2439 17.8241 9.93793 18.7157 10.4525C19.6072 10.9674 19.9132 12.1092 19.3986 13.0011V13.0011Z",fill:"currentColor"}),(0,_t.jsx)("path",{d:"M9.10857 8.92594C10.1389 8.92594 10.9742 8.09066 10.9742 7.06029C10.9742 6.02992 10.1389 5.19464 9.10857 5.19464C8.0782 5.19464 7.24292 6.02992 7.24292 7.06029C7.24292 8.09066 8.0782 8.92594 9.10857 8.92594Z",fill:"currentColor"}),(0,_t.jsx)("path",{d:"M14.8913 18.942C15.9217 18.942 16.7569 18.1067 16.7569 17.0763C16.7569 16.046 15.9217 15.2107 14.8913 15.2107C13.8609 15.2107 13.0256 16.046 13.0256 17.0763C13.0256 18.1067 13.8609 18.942 14.8913 18.942Z",fill:"currentColor"}),(0,_t.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.3841 13.0011C9.86951 12.1096 10.1755 10.9674 11.067 10.4525C11.9586 9.93793 13.1007 10.2439 13.6157 11.1355C14.1302 12.0274 13.8242 13.1692 12.9327 13.6841C12.0411 14.1987 10.899 13.8927 10.3841 13.0011V13.0011Z",fill:"currentColor"})]}),(0,_t.jsx)("span",{className:"text-sm leading-none",children:(0,gt.__)("Access to 100's of Patterns","extendify-sdk")})]}),(0,_t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,_t.jsx)("svg",{fill:"none",height:"24",viewBox:"0 0 24 24",width:"24",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsxs)("g",{stroke:"currentColor",strokeWidth:"1.5",children:[(0,_t.jsx)("path",{d:"m6 4.75h12c.6904 0 1.25.55964 1.25 1.25v12c0 .6904-.5596 1.25-1.25 1.25h-12c-.69036 0-1.25-.5596-1.25-1.25v-12c0-.69036.55964-1.25 1.25-1.25z"}),(0,_t.jsx)("path",{d:"m9.25 19v-14"})]})}),(0,_t.jsx)("span",{className:"text-sm leading-none",children:(0,gt.__)("Beautiful full page layouts","extendify-sdk")})]}),(0,_t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,_t.jsxs)("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[(0,_t.jsx)("circle",{cx:"12",cy:"12",r:"7.25",stroke:"currentColor",strokeWidth:"1.5"}),(0,_t.jsx)("circle",{cx:"12",cy:"12",r:"4.25",stroke:"currentColor",strokeWidth:"1.5"}),(0,_t.jsx)("circle",{cx:"11.9999",cy:"12.2",r:"6",transform:"rotate(-45 11.9999 12.2)",stroke:"currentColor",strokeWidth:"3",strokeDasharray:"1.5 4"})]}),(0,_t.jsx)("span",{className:"text-sm leading-none",children:(0,gt.__)("Fast and friendly support","extendify-sdk")})]}),(0,_t.jsxs)("div",{className:"flex items-center space-x-2",children:[(0,_t.jsx)("svg",{fill:"none",height:"24",viewBox:"0 0 24 24",width:"24",xmlns:"http://www.w3.org/2000/svg",children:(0,_t.jsx)("path",{d:"m11.7758 3.45425c.0917-.18582.3567-.18581.4484 0l2.3627 4.78731c.0364.07379.1068.12493.1882.13676l5.2831.76769c.2051.02979.287.28178.1386.42642l-3.8229 3.72637c-.0589.0575-.0858.1402-.0719.2213l.9024 5.2618c.0351.2042-.1793.36-.3627.2635l-4.7254-2.4842c-.0728-.0383-.1598-.0383-.2326 0l-4.7254 2.4842c-.18341.0965-.39776-.0593-.36274-.2635l.90247-5.2618c.01391-.0811-.01298-.1638-.0719-.2213l-3.8229-3.72637c-.14838-.14464-.0665-.39663.13855-.42642l5.28312-.76769c.08143-.01183.15182-.06297.18823-.13676z",fill:"currentColor"})}),(0,_t.jsx)("span",{className:"text-sm leading-none",children:(0,gt.__)("14-Day guarantee","extendify-sdk")})]})]})})]})}function zo(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function qo(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){zo(i,r,o,s,a,"next",e)}function a(e){zo(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Vo(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return $o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return $o(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function $o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ho(){var e=function(){var e=(0,r.useRef)(!1);return(0,r.useEffect)((function(){return e.current=!0,function(){return e.current=!1}})),e}(),t=G((function(e){return e.templates})),n=G((function(e){return e.appendTemplates})),o=Vo((0,r.useState)(""),2),i=o[0],s=o[1],a=Vo((0,r.useState)(!1),2),l=a[0],c=a[1],u=Vo(Pr(),2),d=u[0],f=u[1],p=G((function(e){return e.updateSearchParams})),h=G((function(e){return e.searchParams})),m=(0,r.useRef)(G.getState().nextPage),x=(0,r.useRef)(G.getState().searchParams);(0,r.useEffect)((function(){return G.subscribe((function(e){return m.current=e}),(function(e){return e.nextPage}))}),[]),(0,r.useEffect)((function(){return G.subscribe((function(e){return x.current=e}),(function(e){return e.searchParams}))}),[]);var y=(0,r.useCallback)(qo(g().mark((function t(){var r,o;return g().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return s(""),c(!1),t.next=4,yr(x.current,{offset:m.current}).catch((function(e){console.error(e),s(e&&e.message?e.message:(0,gt.__)("Unknown error occured. Check browser console or contact support.","extendify-sdk"))}));case 4:if(o=t.sent,e.current){t.next=7;break}return t.abrupt("return");case 7:null!=o&&null!==(r=o.error)&&void 0!==r&&r.length&&s(null==o?void 0:o.error),null!=o&&o.records&&h===x.current&&(G.setState({nextPage:o.offset}),n(o.records),c(o.records.length<=0));case 9:case"end":return t.stop()}}),t)}))),[h,n,e]);if((0,r.useEffect)((function(){Object.keys(x.current.taxonomies).length&&(G.getState().skipNextFetch?G.setState({skipNextFetch:!1}):y())}),[y,x]),(0,r.useEffect)((function(){f&&y()}),[f,y]),i.length)return(0,_t.jsxs)("div",{className:"text-left",children:[(0,_t.jsx)("h2",{className:"text-left",children:(0,gt.__)("Server error","extendify-sdk")}),(0,_t.jsx)("code",{className:"block max-w-xl p-4 mb-4",style:{minHeight:"10rem"},children:i}),(0,_t.jsx)(bt.Button,{isTertiary:!0,onClick:function(){p({taxonomies:{},search:""}),y()},children:(0,gt.__)("Press here to reload experience")})]});if(l)return(0,_t.jsx)("h2",{className:"text-left",children:(0,gt.__)("No results found.","extendify-sdk")});if(!t.length)return(0,_t.jsx)("div",{className:"flex items-center justify-center w-full sm:mt-64",children:(0,_t.jsx)(bt.Spinner,{})});return(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)(cr,{breakpointCols:{default:2,1320:2,860:1,599:2,400:1},className:"flex -ml-8 w-auto pb-40 pt-0.5 pl-0.5",columnClassName:"pl-8 bg-clip-padding min-h-screen",children:t.map((function(e){return(0,_t.jsx)(Uo,{template:e},e.id)}))}),G.getState().nextPage&&(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("div",{className:"transform -translate-y-20",children:(0,_t.jsx)(bt.Spinner,{})}),(0,_t.jsx)("div",{className:"-translate-y-full flex flex-col h-80 items-end justify-end my-2 relative transform z-0 text",ref:d,style:{zIndex:-1}})]})]})}function Wo(e){var t=e.setOpen;return(0,_t.jsxs)("div",{className:"bg-white h-full flex flex-col items-center relative max-w-screen-4xl mx-auto",children:[(0,_t.jsx)(tr,{className:"w-full h-20 flex-shrink-0",hideLibrary:function(){return t(!1)}}),(0,_t.jsxs)("div",{className:"w-full flex-grow overflow-hidden",children:[(0,_t.jsx)("button",{onClick:function(){return document.getElementById("extendify-templates").querySelector("button").focus()},className:"sr-only focus:not-sr-only focus:text-blue-500",children:(0,gt.__)("Skip to content","extendify-sdk")}),(0,_t.jsx)("div",{className:"sm:flex sm:space-x-12 relative mx-auto h-full",children:(0,_t.jsxs)(Un,{children:[(0,_t.jsx)(Cn,{}),(0,_t.jsx)("div",{className:"relative h-full z-30",children:(0,_t.jsx)("div",{className:"absolute z-20 inset-0 lg:static h-screen overflow-y-auto pt-4 sm:pt-0 px-6 sm:pl-0 sm:pr-8 pb-40",children:(0,_t.jsx)(Ho,{})})})]})})]})]})}const Jo=(0,r.createElement)(Tn,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,r.createElement)(An,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"}));function Go(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ko(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Go(Object(n),!0).forEach((function(t){Zo(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Go(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Zo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Yo(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Xo(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Xo(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Xo(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Qo={welcome:function(){var e=y((function(e){return e.setOpen}));return(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("span",{className:"text-black",children:(0,gt.__)("Welcome to the Extendify Library","extendify-sdk")}),(0,_t.jsx)("span",{className:"px-2 opacity-50","aria-hidden":"true",children:"|"}),(0,_t.jsxs)("div",{className:"flex space-x-2 justify-center items-center",children:[(0,_t.jsx)(bt.Button,{variant:"link",className:"text-black underline hover:no-underline p-0 h-auto",href:"https://extendify.com/welcome/?utm_source=".concat(window.extendifySdkData.sdk_partner,"&utm_medium=library&utm_campaign=welcome-notice&utm_content=tell-me-more"),target:"_blank",children:(0,gt.__)("Tell me more","extendify-sdk")}),(0,_t.jsx)("span",{className:"font-bold","aria-hidden":"true",children:"•"}),(0,_t.jsx)(bt.Button,{variant:"link",className:"text-black underline hover:no-underline p-0 h-auto",onClick:function(){document.getElementById("extendify-templates-inserter-btn").classList.add("invisible"),D.setState({enabled:!1}),e(!1)},children:(0,gt.__)("Turn off the library","extendify-sdk")})]})]})},promotion:function(e){var t,n=e.promotionData;return console.log({promotionData:n}),(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("span",{className:"text-black",children:null!==(t=null==n?void 0:n.text)&&void 0!==t?t:""}),(0,_t.jsx)("span",{className:"px-2 opacity-50","aria-hidden":"true",children:"|"}),(0,_t.jsx)("div",{className:"flex space-x-2 justify-center items-center",children:(null==n?void 0:n.url)&&(0,_t.jsx)(bt.Button,{variant:"link",className:"text-black underline hover:no-underline p-0 h-auto",href:"".concat(n.url,"?utm_source=").concat(window.extendifySdkData.sdk_partner),target:"_blank",children:null==n?void 0:n.button_text})})]})}};function ei(){var e,t=Yo((0,r.useState)(null),2),n=t[0],o=t[1],i=(0,r.useRef)(!1),s=y((function(e){var t,n;return null===(t=e.metaData)||void 0===t||null===(n=t.banners)||void 0===n?void 0:n.footer})),a=null!==(e=Object.keys(Qo).find((function(e){return"promotion"===e?(null==s?void 0:s.key)&&!D.getState().noticesDismissedAt[s.key]:!D.getState().noticesDismissedAt[e]})))&&void 0!==e?e:null,l=Qo[a];return(0,r.useEffect)((function(){Qo[a]&&!i.current&&(o(!0),i.current=!0)}),[a]),n?(0,_t.jsxs)("div",{className:"bg-extendify-secondary hidden lg:flex space-x-4 py-3 px-5 justify-center items-center relative max-w-screen-4xl mx-auto",children:[(0,_t.jsx)(l,{promotionData:s}),(0,_t.jsx)("div",{className:"absolute right-1",children:(0,_t.jsx)(bt.Button,{className:"opacity-50 hover:opacity-100 focus:opacity-100 text-extendify-black",icon:(0,_t.jsx)(_n,{icon:Jo}),label:(0,gt.__)("Dismiss this notice","extendify-sdk"),onClick:function(){o(!1);var e="promotion"===a?s.key:a;D.setState({noticesDismissedAt:Object.assign({},Ko(Ko({},D.getState().noticesDismissedAt),{},Zo({},e,(new Date).toISOString())))})},showTooltip:!1})})]}):null}function ti(){var e=(0,r.useRef)(null),t=y((function(e){return e.open})),n=y((function(e){return e.setOpen}));return(0,_t.jsx)(Te.Root,{show:t,as:r.Fragment,children:(0,_t.jsx)(vt,{as:"div",static:!0,className:"extendify-sdk",initialFocus:e,onClose:function(){return n(!1)},children:(0,_t.jsx)("div",{className:"h-screen w-screen sm:h-auto m-auto sm:w-auto fixed z-high inset-0 overflow-y-auto",children:(0,_t.jsxs)("div",{className:"flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0",children:[(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",children:(0,_t.jsx)(vt.Overlay,{className:"fixed inset-0 bg-black bg-opacity-40 transition-opacity"})}),(0,_t.jsx)(Te.Child,{as:r.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-5",enterTo:"opacity-100 translate-y-0",children:(0,_t.jsxs)("div",{ref:e,tabIndex:"0",onClick:function(e){return e.target===e.currentTarget&&n(!1)},className:"fixed lg:absolute inset-0 lg:overflow-hidden transform transition-all p-2 lg:p-16",children:[(0,_t.jsx)(Wo,{}),(0,_t.jsx)(ei,{})]})})]})})})})}const ni=wp.compose,ri=wp.hooks,oi=JSON.parse('{"t":["ext-absolute","ext-relative","ext-top-base","ext-top-lg","ext--top-base","ext--top-lg","ext-right-base","ext-right-lg","ext--right-base","ext--right-lg","ext-bottom-base","ext-bottom-lg","ext--bottom-base","ext--bottom-lg","ext-left-base","ext-left-lg","ext--left-base","ext--left-lg","ext-order-1","ext-order-2","ext-col-auto","ext-col-span-1","ext-col-span-2","ext-col-span-3","ext-col-span-4","ext-col-span-5","ext-col-span-6","ext-col-span-7","ext-col-span-8","ext-col-span-9","ext-col-span-10","ext-col-span-11","ext-col-span-12","ext-col-span-full","ext-col-start-1","ext-col-start-2","ext-col-start-3","ext-col-start-4","ext-col-start-5","ext-col-start-6","ext-col-start-7","ext-col-start-8","ext-col-start-9","ext-col-start-10","ext-col-start-11","ext-col-start-12","ext-col-start-13","ext-col-start-auto","ext-col-end-1","ext-col-end-2","ext-col-end-3","ext-col-end-4","ext-col-end-5","ext-col-end-6","ext-col-end-7","ext-col-end-8","ext-col-end-9","ext-col-end-10","ext-col-end-11","ext-col-end-12","ext-col-end-13","ext-col-end-auto","ext-row-auto","ext-row-span-1","ext-row-span-2","ext-row-span-3","ext-row-span-4","ext-row-span-5","ext-row-span-6","ext-row-span-full","ext-row-start-1","ext-row-start-2","ext-row-start-3","ext-row-start-4","ext-row-start-5","ext-row-start-6","ext-row-start-7","ext-row-start-auto","ext-row-end-1","ext-row-end-2","ext-row-end-3","ext-row-end-4","ext-row-end-5","ext-row-end-6","ext-row-end-7","ext-row-end-auto","ext-m-0","ext-m-auto","ext-m-base","ext-m-lg","ext--m-base","ext--m-lg","ext-mx-0","ext-mx-auto","ext-mx-base","ext-mx-lg","ext--mx-base","ext--mx-lg","ext-my-0","ext-my-auto","ext-my-base","ext-my-lg","ext--my-base","ext--my-lg","ext-mt-0","ext-mt-auto","ext-mt-base","ext-mt-lg","ext--mt-base","ext--mt-lg","ext-mr-0","ext-mr-auto","ext-mr-base","ext-mr-lg","ext--mr-base","ext--mr-lg","ext-mb-0","ext-mb-auto","ext-mb-base","ext-mb-lg","ext--mb-base","ext--mb-lg","ext-ml-0","ext-ml-auto","ext-ml-base","ext-ml-lg","ext--ml-base","ext--ml-lg","ext-block","ext-inline-block","ext-inline","ext-flex","ext-inline-flex","ext-grid","ext-inline-grid","ext-hidden","ext-w-auto","ext-w-full","ext-max-w-full","ext-flex-1","ext-flex-auto","ext-flex-initial","ext-flex-none","ext-flex-shrink-0","ext-flex-shrink","ext-flex-grow-0","ext-flex-grow","ext-list-none","ext-grid-cols-1","ext-grid-cols-2","ext-grid-cols-3","ext-grid-cols-4","ext-grid-cols-5","ext-grid-cols-6","ext-grid-cols-7","ext-grid-cols-8","ext-grid-cols-9","ext-grid-cols-10","ext-grid-cols-11","ext-grid-cols-12","ext-grid-cols-none","ext-grid-rows-1","ext-grid-rows-2","ext-grid-rows-3","ext-grid-rows-4","ext-grid-rows-5","ext-grid-rows-6","ext-grid-rows-none","ext-flex-row","ext-flex-row-reverse","ext-flex-col","ext-flex-col-reverse","ext-flex-wrap","ext-flex-wrap-reverse","ext-flex-nowrap","ext-items-start","ext-items-end","ext-items-center","ext-items-baseline","ext-items-stretch","ext-justify-start","ext-justify-end","ext-justify-center","ext-justify-between","ext-justify-around","ext-justify-evenly","ext-justify-items-start","ext-justify-items-end","ext-justify-items-center","ext-justify-items-stretch","ext-gap-0","ext-gap-base","ext-gap-lg","ext-gap-x-0","ext-gap-x-base","ext-gap-x-lg","ext-gap-y-0","ext-gap-y-base","ext-gap-y-lg","ext-justify-self-auto","ext-justify-self-start","ext-justify-self-end","ext-justify-self-center","ext-justify-self-stretch","ext-rounded-none","ext-rounded-full","ext-rounded-t-none","ext-rounded-t-full","ext-rounded-r-none","ext-rounded-r-full","ext-rounded-b-none","ext-rounded-b-full","ext-rounded-l-none","ext-rounded-l-full","ext-rounded-tl-none","ext-rounded-tl-full","ext-rounded-tr-none","ext-rounded-tr-full","ext-rounded-br-none","ext-rounded-br-full","ext-rounded-bl-none","ext-rounded-bl-full","ext-border-0","ext-border-t-0","ext-border-r-0","ext-border-b-0","ext-border-l-0","ext-p-0","ext-p-base","ext-p-lg","ext-px-0","ext-px-base","ext-px-lg","ext-py-0","ext-py-base","ext-py-lg","ext-pt-0","ext-pt-base","ext-pt-lg","ext-pr-0","ext-pr-base","ext-pr-lg","ext-pb-0","ext-pb-base","ext-pb-lg","ext-pl-0","ext-pl-base","ext-pl-lg","ext-text-left","ext-text-center","ext-text-right","ext-leading-none","ext-leading-tight","ext-leading-snug","ext-leading-normal","ext-leading-relaxed","ext-leading-loose","clip-path--rhombus","clip-path--diamond","clip-path--rhombus-alt","wp-block-columns[class*=\\"fullwidth-cols\\"]\\n","tablet\\\\:fullwidth-cols","desktop\\\\:fullwidth-cols","direction-rtl","direction-ltr","bring-to-front","text-stroke","text-stroke--primary","text-stroke--secondary","editor\\\\:no-caption","editor\\\\:no-inserter","editor\\\\:no-resize","editor\\\\:pointer-events-none","tablet\\\\:ext-absolute","tablet\\\\:ext-relative","tablet\\\\:ext-top-base","tablet\\\\:ext-top-lg","tablet\\\\:ext--top-base","tablet\\\\:ext--top-lg","tablet\\\\:ext-right-base","tablet\\\\:ext-right-lg","tablet\\\\:ext--right-base","tablet\\\\:ext--right-lg","tablet\\\\:ext-bottom-base","tablet\\\\:ext-bottom-lg","tablet\\\\:ext--bottom-base","tablet\\\\:ext--bottom-lg","tablet\\\\:ext-left-base","tablet\\\\:ext-left-lg","tablet\\\\:ext--left-base","tablet\\\\:ext--left-lg","tablet\\\\:ext-order-1","tablet\\\\:ext-order-2","tablet\\\\:ext-m-0","tablet\\\\:ext-m-auto","tablet\\\\:ext-m-base","tablet\\\\:ext-m-lg","tablet\\\\:ext--m-base","tablet\\\\:ext--m-lg","tablet\\\\:ext-mx-0","tablet\\\\:ext-mx-auto","tablet\\\\:ext-mx-base","tablet\\\\:ext-mx-lg","tablet\\\\:ext--mx-base","tablet\\\\:ext--mx-lg","tablet\\\\:ext-my-0","tablet\\\\:ext-my-auto","tablet\\\\:ext-my-base","tablet\\\\:ext-my-lg","tablet\\\\:ext--my-base","tablet\\\\:ext--my-lg","tablet\\\\:ext-mt-0","tablet\\\\:ext-mt-auto","tablet\\\\:ext-mt-base","tablet\\\\:ext-mt-lg","tablet\\\\:ext--mt-base","tablet\\\\:ext--mt-lg","tablet\\\\:ext-mr-0","tablet\\\\:ext-mr-auto","tablet\\\\:ext-mr-base","tablet\\\\:ext-mr-lg","tablet\\\\:ext--mr-base","tablet\\\\:ext--mr-lg","tablet\\\\:ext-mb-0","tablet\\\\:ext-mb-auto","tablet\\\\:ext-mb-base","tablet\\\\:ext-mb-lg","tablet\\\\:ext--mb-base","tablet\\\\:ext--mb-lg","tablet\\\\:ext-ml-0","tablet\\\\:ext-ml-auto","tablet\\\\:ext-ml-base","tablet\\\\:ext-ml-lg","tablet\\\\:ext--ml-base","tablet\\\\:ext--ml-lg","tablet\\\\:ext-block","tablet\\\\:ext-inline-block","tablet\\\\:ext-inline","tablet\\\\:ext-flex","tablet\\\\:ext-inline-flex","tablet\\\\:ext-grid","tablet\\\\:ext-inline-grid","tablet\\\\:ext-hidden","tablet\\\\:ext-w-auto","tablet\\\\:ext-w-full","tablet\\\\:ext-max-w-full","tablet\\\\:ext-flex-1","tablet\\\\:ext-flex-auto","tablet\\\\:ext-flex-initial","tablet\\\\:ext-flex-none","tablet\\\\:ext-flex-shrink-0","tablet\\\\:ext-flex-shrink","tablet\\\\:ext-flex-grow-0","tablet\\\\:ext-flex-grow","tablet\\\\:ext-list-none","tablet\\\\:ext-grid-cols-1","tablet\\\\:ext-grid-cols-2","tablet\\\\:ext-grid-cols-3","tablet\\\\:ext-grid-cols-4","tablet\\\\:ext-grid-cols-5","tablet\\\\:ext-grid-cols-6","tablet\\\\:ext-grid-cols-7","tablet\\\\:ext-grid-cols-8","tablet\\\\:ext-grid-cols-9","tablet\\\\:ext-grid-cols-10","tablet\\\\:ext-grid-cols-11","tablet\\\\:ext-grid-cols-12","tablet\\\\:ext-grid-cols-none","tablet\\\\:ext-flex-row","tablet\\\\:ext-flex-row-reverse","tablet\\\\:ext-flex-col","tablet\\\\:ext-flex-col-reverse","tablet\\\\:ext-flex-wrap","tablet\\\\:ext-flex-wrap-reverse","tablet\\\\:ext-flex-nowrap","tablet\\\\:ext-items-start","tablet\\\\:ext-items-end","tablet\\\\:ext-items-center","tablet\\\\:ext-items-baseline","tablet\\\\:ext-items-stretch","tablet\\\\:ext-justify-start","tablet\\\\:ext-justify-end","tablet\\\\:ext-justify-center","tablet\\\\:ext-justify-between","tablet\\\\:ext-justify-around","tablet\\\\:ext-justify-evenly","tablet\\\\:ext-justify-items-start","tablet\\\\:ext-justify-items-end","tablet\\\\:ext-justify-items-center","tablet\\\\:ext-justify-items-stretch","tablet\\\\:ext-justify-self-auto","tablet\\\\:ext-justify-self-start","tablet\\\\:ext-justify-self-end","tablet\\\\:ext-justify-self-center","tablet\\\\:ext-justify-self-stretch","tablet\\\\:ext-p-0","tablet\\\\:ext-p-base","tablet\\\\:ext-p-lg","tablet\\\\:ext-px-0","tablet\\\\:ext-px-base","tablet\\\\:ext-px-lg","tablet\\\\:ext-py-0","tablet\\\\:ext-py-base","tablet\\\\:ext-py-lg","tablet\\\\:ext-pt-0","tablet\\\\:ext-pt-base","tablet\\\\:ext-pt-lg","tablet\\\\:ext-pr-0","tablet\\\\:ext-pr-base","tablet\\\\:ext-pr-lg","tablet\\\\:ext-pb-0","tablet\\\\:ext-pb-base","tablet\\\\:ext-pb-lg","tablet\\\\:ext-pl-0","tablet\\\\:ext-pl-base","tablet\\\\:ext-pl-lg","tablet\\\\:ext-text-left","tablet\\\\:ext-text-center","tablet\\\\:ext-text-right","desktop\\\\:ext-absolute","desktop\\\\:ext-relative","desktop\\\\:ext-top-base","desktop\\\\:ext-top-lg","desktop\\\\:ext--top-base","desktop\\\\:ext--top-lg","desktop\\\\:ext-right-base","desktop\\\\:ext-right-lg","desktop\\\\:ext--right-base","desktop\\\\:ext--right-lg","desktop\\\\:ext-bottom-base","desktop\\\\:ext-bottom-lg","desktop\\\\:ext--bottom-base","desktop\\\\:ext--bottom-lg","desktop\\\\:ext-left-base","desktop\\\\:ext-left-lg","desktop\\\\:ext--left-base","desktop\\\\:ext--left-lg","desktop\\\\:ext-order-1","desktop\\\\:ext-order-2","desktop\\\\:ext-m-0","desktop\\\\:ext-m-auto","desktop\\\\:ext-m-base","desktop\\\\:ext-m-lg","desktop\\\\:ext--m-base","desktop\\\\:ext--m-lg","desktop\\\\:ext-mx-0","desktop\\\\:ext-mx-auto","desktop\\\\:ext-mx-base","desktop\\\\:ext-mx-lg","desktop\\\\:ext--mx-base","desktop\\\\:ext--mx-lg","desktop\\\\:ext-my-0","desktop\\\\:ext-my-auto","desktop\\\\:ext-my-base","desktop\\\\:ext-my-lg","desktop\\\\:ext--my-base","desktop\\\\:ext--my-lg","desktop\\\\:ext-mt-0","desktop\\\\:ext-mt-auto","desktop\\\\:ext-mt-base","desktop\\\\:ext-mt-lg","desktop\\\\:ext--mt-base","desktop\\\\:ext--mt-lg","desktop\\\\:ext-mr-0","desktop\\\\:ext-mr-auto","desktop\\\\:ext-mr-base","desktop\\\\:ext-mr-lg","desktop\\\\:ext--mr-base","desktop\\\\:ext--mr-lg","desktop\\\\:ext-mb-0","desktop\\\\:ext-mb-auto","desktop\\\\:ext-mb-base","desktop\\\\:ext-mb-lg","desktop\\\\:ext--mb-base","desktop\\\\:ext--mb-lg","desktop\\\\:ext-ml-0","desktop\\\\:ext-ml-auto","desktop\\\\:ext-ml-base","desktop\\\\:ext-ml-lg","desktop\\\\:ext--ml-base","desktop\\\\:ext--ml-lg","desktop\\\\:ext-block","desktop\\\\:ext-inline-block","desktop\\\\:ext-inline","desktop\\\\:ext-flex","desktop\\\\:ext-inline-flex","desktop\\\\:ext-grid","desktop\\\\:ext-inline-grid","desktop\\\\:ext-hidden","desktop\\\\:ext-w-auto","desktop\\\\:ext-w-full","desktop\\\\:ext-max-w-full","desktop\\\\:ext-flex-1","desktop\\\\:ext-flex-auto","desktop\\\\:ext-flex-initial","desktop\\\\:ext-flex-none","desktop\\\\:ext-flex-shrink-0","desktop\\\\:ext-flex-shrink","desktop\\\\:ext-flex-grow-0","desktop\\\\:ext-flex-grow","desktop\\\\:ext-list-none","desktop\\\\:ext-grid-cols-1","desktop\\\\:ext-grid-cols-2","desktop\\\\:ext-grid-cols-3","desktop\\\\:ext-grid-cols-4","desktop\\\\:ext-grid-cols-5","desktop\\\\:ext-grid-cols-6","desktop\\\\:ext-grid-cols-7","desktop\\\\:ext-grid-cols-8","desktop\\\\:ext-grid-cols-9","desktop\\\\:ext-grid-cols-10","desktop\\\\:ext-grid-cols-11","desktop\\\\:ext-grid-cols-12","desktop\\\\:ext-grid-cols-none","desktop\\\\:ext-flex-row","desktop\\\\:ext-flex-row-reverse","desktop\\\\:ext-flex-col","desktop\\\\:ext-flex-col-reverse","desktop\\\\:ext-flex-wrap","desktop\\\\:ext-flex-wrap-reverse","desktop\\\\:ext-flex-nowrap","desktop\\\\:ext-items-start","desktop\\\\:ext-items-end","desktop\\\\:ext-items-center","desktop\\\\:ext-items-baseline","desktop\\\\:ext-items-stretch","desktop\\\\:ext-justify-start","desktop\\\\:ext-justify-end","desktop\\\\:ext-justify-center","desktop\\\\:ext-justify-between","desktop\\\\:ext-justify-around","desktop\\\\:ext-justify-evenly","desktop\\\\:ext-justify-items-start","desktop\\\\:ext-justify-items-end","desktop\\\\:ext-justify-items-center","desktop\\\\:ext-justify-items-stretch","desktop\\\\:ext-justify-self-auto","desktop\\\\:ext-justify-self-start","desktop\\\\:ext-justify-self-end","desktop\\\\:ext-justify-self-center","desktop\\\\:ext-justify-self-stretch","desktop\\\\:ext-p-0","desktop\\\\:ext-p-base","desktop\\\\:ext-p-lg","desktop\\\\:ext-px-0","desktop\\\\:ext-px-base","desktop\\\\:ext-px-lg","desktop\\\\:ext-py-0","desktop\\\\:ext-py-base","desktop\\\\:ext-py-lg","desktop\\\\:ext-pt-0","desktop\\\\:ext-pt-base","desktop\\\\:ext-pt-lg","desktop\\\\:ext-pr-0","desktop\\\\:ext-pr-base","desktop\\\\:ext-pr-lg","desktop\\\\:ext-pb-0","desktop\\\\:ext-pb-base","desktop\\\\:ext-pb-lg","desktop\\\\:ext-pl-0","desktop\\\\:ext-pl-base","desktop\\\\:ext-pl-lg","desktop\\\\:ext-text-left","desktop\\\\:ext-text-center","desktop\\\\:ext-text-right"]}');function ii(e){return function(e){if(Array.isArray(e))return si(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return si(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return si(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function si(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ai(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function li(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ai(Object(n),!0).forEach((function(t){ci(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ai(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ci(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ui=(0,ni.createHigherOrderComponent)((function(e){return function(t){var n=t.attributes.extUtilities,r=oi.t.map((function(e){return e.replace(".","").replace(new RegExp("\\\\","g"),"")}));return(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)(e,li({},t)),n&&(0,_t.jsx)(No.InspectorAdvancedControls,{children:(0,_t.jsx)(bt.FormTokenField,{label:(0,gt.__)("Extendify Utilities","extendify-sdk"),tokenizeOnSpace:!0,value:n,suggestions:r,onChange:function(e){t.setAttributes({extUtilities:e})}})})]})}}),"utilityClassEdit");function di(e,t,n){var r=e.className,o=n.extUtilities,i=n.className;if(!o||!Object.keys(o).length)return e;var s=function(e){switch(Object.prototype.toString.call(e)){case"[object String]":return e.split(" ");case"[object Array]":return e;default:return[]}},a=new Set([].concat(ii(s(i)),ii(s(r)),ii(s(o))));return Object.assign({},e,{className:ii(a).join(" ")})}function fi(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}(0,ri.addFilter)("blocks.registerBlockType","extendify/utilities/attributes",(function(e){return li(li({},e),{},{attributes:li(li({},e.attributes),{},{extUtilities:{type:"array",default:[]}})})})),(0,ri.addFilter)("blocks.registerBlockType","extendify/utilities/addEditProps",(function(e){var t=e.getEditWrapperProps;return e.getEditWrapperProps=function(n){var r={};return t&&(r=t(n)),di(r,e,n)},e})),(0,ri.addFilter)("editor.BlockEdit","extendify/utilities/advancedClassControls",ui),(0,ri.addFilter)("blocks.getSaveContent.extraProps","extendify/utilities/extra-props",di);var pi=function(){return(e=g().mark((function e(){var t;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w.get("taxonomies-simple");case 2:return(t=e.sent)["tax_pattern_types_2.0"]&&(t.tax_pattern_types=t["tax_pattern_types_2.0"],delete t["tax_pattern_types_2.0"]),t["tax_page_types_2.0"]&&(t.tax_page_types=t["tax_page_types_2.0"],delete t["tax_page_types_2.0"]),e.abrupt("return",t);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){fi(i,r,o,s,a,"next",e)}function a(e){fi(i,r,o,s,a,"throw",e)}s(void 0)}))})();var e};function hi(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function mi(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){hi(i,r,o,s,a,"next",e)}function a(e){hi(i,r,o,s,a,"throw",e)}s(void 0)}))}}var xi=function(){return w.get("meta-data")};function yi(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return vi(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vi(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function vi(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function gi(e){var t=e.show,n=void 0!==t&&t,o=y((function(e){return e.open})),i=y((function(e){return e.setOpen})),s=yi((0,r.useState)(!1),2),a=s[0],l=s[1],c=(0,r.useCallback)((function(){return i(!0)}),[i]),u=(0,r.useCallback)((function(){return i(!1)}),[i]),d=G((function(e){return e.initTemplateData})),f=D((function(e){return e.uuid.length>0})),p=G((function(e){return Object.keys(e.taxonomyDefaultState).length>0}));return function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=G((function(e){return e.setupDefaultTaxonomies})),n=U((function(e){return e.setTaxonomies})),o=(0,r.useCallback)(mi(g().mark((function e(){var r,o;return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,pi();case 2:if(o=e.sent,o=Object.keys(o).filter((function(e){return e.startsWith("tax_")})).reduce((function(e,t){return e[t]=o[t],e}),{}),null!==(r=Object.keys(o))&&void 0!==r&&r.length){e.next=6;break}return e.abrupt("return");case 6:n(o),t();case 8:case"end":return e.stop()}}),e)}))),[n,t]);(0,r.useEffect)((function(){e&&o()}),[o,e])}(o),(0,r.useEffect)((function(){f&&p&&(d(),l(!0))}),[f,p,d]),(0,r.useEffect)((function(){n&&i(!0)}),[n,i]),(0,r.useEffect)((function(){xi().then((function(e){y.setState({metaData:e})}))}),[]),(0,r.useEffect)((function(){return window.addEventListener("extendify-sdk::open-library",c),window.addEventListener("extendify-sdk::close-library",u),function(){window.removeEventListener("extendify-sdk::open-library",c),window.removeEventListener("extendify-sdk::close-library",u)}}),[u,c]),a?(0,_t.jsx)(ti,{}):null}const bi=wp.plugins,wi=wp.editPost;var ji=function(){return w.get("site-settings")},ki=function(e){var t=new FormData;return t.append("data",JSON.stringify(e)),w.post("site-settings",t,{headers:{"Content-Type":"multipart/form-data"}})};function Oi(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function Si(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Oi(i,r,o,s,a,"next",e)}function a(e){Oi(i,r,o,s,a,"throw",e)}s(void 0)}))}}var Ci={getItem:function(){var e=Si(g().mark((function e(){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,ji();case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),setItem:function(){var e=Si(g().mark((function e(t,n){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,ki(n);case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}()},_i=l(x((function(){return{enabled:!0}}),{name:"extendify-sitesettings",getStorage:function(){return Ci}}));function Ei(e,t,n,r,o,i,s){try{var a=e[i](s),l=a.value}catch(e){return void n(e)}a.done?t(l):Promise.resolve(l).then(r,o)}function Ni(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Ei(i,r,o,s,a,"next",e)}function a(e){Ei(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Ai(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],s=!0,a=!1;try{for(n=n.call(e);!(s=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);s=!0);}catch(e){a=!0,o=e}finally{try{s||null==n.return||n.return()}finally{if(a)throw o}}return i}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Pi(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Pi(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Pi(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}const Ti=function(){var e=(0,Hr.useSelect)((function(e){return e("core").canUser("create","users")})),t=Ai((0,r.useState)(D((function(e){return e.enabled}))),2),n=t[0],o=t[1],i=Ai((0,r.useState)(_i((function(e){return e.enabled}))),2),s=i[0],a=i[1];function l(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=document.getElementById("extendify-templates-inserter-btn");t&&(e?t.classList.add("invisible"):t.classList.remove("invisible"))}function c(e){return u.apply(this,arguments)}function u(){return(u=Ni(g().mark((function e(t){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,D.setState({enabled:t});case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function d(e){return f.apply(this,arguments)}function f(){return(f=Ni(g().mark((function e(t){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,_i.setState({enabled:t});case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function p(e,t){return h.apply(this,arguments)}function h(){return h=Ni(g().mark((function e(t,n){return g().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if("global"!==n){e.next=5;break}return e.next=3,d(t);case 3:e.next=7;break;case 5:return e.next=7,c(t);case 7:case"end":return e.stop()}}),e)}))),h.apply(this,arguments)}function m(e){"global"===e?a((function(t){return p(!t,e),!t})):o((function(t){return l(!t),p(!t,e),!t}))}return(0,r.useEffect)((function(){l(!n)}),[n]),(0,_t.jsxs)(bt.Modal,{title:(0,gt.__)("Extendify Settings","extendify-sdk"),onRequestClose:function(){var e=document.getElementById("extendify-util");(0,r.unmountComponentAtNode)(e)},children:[(0,_t.jsx)(bt.ToggleControl,{label:e?(0,gt.__)("Enable the library for myself","extendify-sdk"):(0,gt.__)("Enable the library","extendify-sdk"),help:(0,gt.__)("Publish with hundreds of patterns & page layouts","extendify-sdk"),checked:n,onChange:function(){return m("user")}}),e&&(0,_t.jsxs)(_t.Fragment,{children:[(0,_t.jsx)("br",{}),(0,_t.jsx)(bt.ToggleControl,{label:(0,gt.__)("Allow all users to publish with the library"),help:(0,gt.__)("Everyone publishes with patterns & page layouts","extendify-sdk"),checked:s,onChange:function(){return m("global")}})]})]})};var Ii=function(e){var t,n;Ot(null===(t=e.target.closest("[data-extendify-identifier]"))||void 0===t||null===(n=t.dataset)||void 0===n?void 0:n.extendifyIdentifier)},Li=function(){var e,t,n;return null===window.extendifySdkData.user||(null===(e=window.extendifySdkData)||void 0===e||null===(t=e.user)||void 0===t||null===(n=t.state)||void 0===n?void 0:n.isAdmin)},Mi=function(){var e,t,n;return null===window.extendifySdkData.sitesettings||(null===(e=window.extendifySdkData)||void 0===e||null===(t=e.sitesettings)||void 0===t||null===(n=t.state)||void 0===n?void 0:n.enabled)},Ri=(0,_t.jsx)("div",{id:"extendify-templates-inserter",className:"extendify-sdk",children:(0,_t.jsxs)("button",{style:"background:#D9F1EE;color:#1e1e1e;border:1px solid #949494 !important;font-weight:bold;font-size:14px;padding:8px;margin-right:8px",type:"button","data-extendify-identifier":"main-button",id:"extendify-templates-inserter-btn",className:"components-button",children:[(0,_t.jsx)(_n,{icon:Ln,size:24,className:"-ml-1 mr-1"}),(0,gt.__)("Library","extendify-sdk")]})});if(window._wpLoadBlockEditor)var Di=window.wp.data.subscribe((function(){requestAnimationFrame((function(){var e,t,n;(Mi()||Li())&&(document.getElementById("extendify-templates-inserter-btn")||document.querySelector(".edit-post-header-toolbar")&&(document.querySelector(".edit-post-header-toolbar").insertAdjacentHTML("beforeend",(0,r.renderToString)(Ri)),document.getElementById("extendify-templates-inserter-btn").addEventListener("click",Ii),(null===window.extendifySdkData.user?Mi():null===(e=window.extendifySdkData)||void 0===e||null===(t=e.user)||void 0===t||null===(n=t.state)||void 0===n?void 0:n.enabled)||document.getElementById("extendify-templates-inserter-btn").classList.add("invisible"),Di()))}))}));if(window._wpLoadBlockEditor)var Fi=window.wp.data.subscribe((function(){requestAnimationFrame((function(){if((Mi()||Li())&&document.querySelector("[id$=patterns-view]")&&!document.getElementById("extendify-cta-button")){var e=(0,_t.jsx)("div",{children:(0,_t.jsx)("button",{id:"extendify-cta-button",style:"margin:1rem 1rem 0","data-extendify-identifier":"patterns-cta",className:"components-button is-secondary",children:(0,gt.__)("Discover more patterns in Extendify Library","extendify-sdk")})});document.querySelector("[id$=patterns-view]").insertAdjacentHTML("afterbegin",(0,r.renderToString)(e)),document.getElementById("extendify-cta-button").addEventListener("click",Ii),Fi()}}))}));window._wpLoadBlockEditor&&(0,bi.registerPlugin)("extendify-settings-enable-disable",{render:function(){return(0,_t.jsx)(_t.Fragment,{children:(0,_t.jsxs)(wi.PluginSidebarMoreMenuItem,{onClick:function(){var e=document.getElementById("extendify-util");(0,r.render)((0,_t.jsx)(Ti,{}),e)},icon:(0,_t.jsx)(_n,{icon:Ln,size:24}),children:[" ",(0,gt.__)("Extendify","extendify-sdk")]})})}}),[{register:function(){var e=(0,Hr.dispatch)("core/notices").createNotice,t=D.getState().incrementImports;window.addEventListener("extendify-sdk::template-inserted",(function(n){e("info",(0,gt.__)("Page layout Added"),{isDismissible:!0,type:"snackbar"}),setTimeout((function(){var e;t(),gr(null===(e=n.detail)||void 0===e?void 0:e.template)}),0)}))}},{register:function(){var e=this;window.addEventListener("extendify-sdk::softerror-encountered",(function(t){e[(0,kt.camelCase)(t.detail.type)](t.detail)}))},versionOutdated:function(e){(0,r.render)((0,_t.jsx)(Qr,{title:e.data.title,message:e.data.message,buttonLabel:e.data.buttonLabel,forceOpen:!0}),document.getElementById("extendify-root"))}}].forEach((function(e){return e.register()})),window._wpLoadBlockEditor&&window.wp.domReady((function(){var e=Object.assign(document.createElement("div"),{id:"extendify-root"});if(document.body.append(e),(0,r.render)((0,_t.jsx)(gi,{}),e),e.parentNode.insertBefore(Object.assign(document.createElement("div"),{id:"extendify-util"}),e.nextSibling),Vr.getState().importOnLoad){var t=Vr.getState().wantedTemplate;setTimeout((function(){Eo((0,Ao.rawHandler)({HTML:t.fields.code}),t)}),0)}Vr.setState({importOnLoad:!1,wantedTemplate:{}})}))},42:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var i=typeof n;if("string"===i||"number"===i)e.push(n);else if(Array.isArray(n)){if(n.length){var s=o.apply(null,n);s&&e.push(s)}}else if("object"===i)if(n.toString===Object.prototype.toString)for(var a in n)r.call(n,a)&&n[a]&&e.push(a);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},716:()=>{},965:()=>{},525:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var s,a,l=o(e),c=1;c<arguments.length;c++){for(var u in s=Object(arguments[c]))n.call(s,u)&&(l[u]=s[u]);if(t){a=t(s);for(var d=0;d<a.length;d++)r.call(s,a[d])&&(l[a[d]]=s[a[d]])}}return l}},61:e=>{var t,n,r=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function s(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{n="function"==typeof clearTimeout?clearTimeout:i}catch(e){n=i}}();var a,l=[],c=!1,u=-1;function d(){c&&a&&(c=!1,a.length?l=a.concat(l):u=-1,l.length&&f())}function f(){if(!c){var e=s(d);c=!0;for(var t=l.length;t;){for(a=l,l=[];++u<t;)a&&a[u].run();u=-1,t=l.length}a=null,c=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===i||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function h(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||s(f)},p.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=h,r.addListener=h,r.once=h,r.off=h,r.removeListener=h,r.removeAllListeners=h,r.emit=h,r.prependListener=h,r.prependOnceListener=h,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},426:(e,t,n)=>{"use strict";n(525);var r=n(363),o=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var i=Symbol.for;o=i("react.element"),t.Fragment=i("react.fragment")}var s=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,a=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function c(e,t,n){var r,i={},c=null,u=null;for(r in void 0!==n&&(c=""+n),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(u=t.ref),t)a.call(t,r)&&!l.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===i[r]&&(i[r]=t[r]);return{$$typeof:o,type:e,key:c,ref:u,props:i,_owner:s.current}}t.jsx=c,t.jsxs=c},246:(e,t,n)=>{"use strict";e.exports=n(426)},248:e=>{var t=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",a=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function c(e,t,n,r){var o=t&&t.prototype instanceof x?t:x,i=Object.create(o.prototype),s=new E(r||[]);return i._invoke=function(e,t,n){var r=d;return function(o,i){if(r===p)throw new Error("Generator is already running");if(r===h){if("throw"===o)throw i;return A()}for(n.method=o,n.arg=i;;){var s=n.delegate;if(s){var a=S(s,n);if(a){if(a===m)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===d)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var l=u(e,t,n);if("normal"===l.type){if(r=n.done?h:f,l.arg===m)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r=h,n.method="throw",n.arg=l.arg)}}}(e,n,s),i}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d="suspendedStart",f="suspendedYield",p="executing",h="completed",m={};function x(){}function y(){}function v(){}var g={};g[i]=function(){return this};var b=Object.getPrototypeOf,w=b&&b(b(N([])));w&&w!==n&&r.call(w,i)&&(g=w);var j=v.prototype=x.prototype=Object.create(g);function k(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var l=u(e[o],e,i);if("throw"!==l.type){var c=l.arg,d=c.value;return d&&"object"==typeof d&&r.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(d).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(l.arg)}var o;this._invoke=function(e,r){function i(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(i,i):i()}}function S(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator.return&&(n.method="return",n.arg=t,S(e,n),"throw"===n.method))return m;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return m}var o=u(r,e.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,m;var i=o.arg;return i?i.done?(n[e.resultName]=i.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,m):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function _(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function E(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function N(e){if(e){var n=e[i];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,s=function n(){for(;++o<e.length;)if(r.call(e,o))return n.value=e[o],n.done=!1,n;return n.value=t,n.done=!0,n};return s.next=s}}return{next:A}}function A(){return{value:t,done:!0}}return y.prototype=j.constructor=v,v.constructor=y,y.displayName=l(v,a,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===y||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,l(e,a,"GeneratorFunction")),e.prototype=Object.create(j),e},e.awrap=function(e){return{__await:e}},k(O.prototype),O.prototype[s]=function(){return this},e.AsyncIterator=O,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var s=new O(c(t,n,r,o),i);return e.isGeneratorFunction(n)?s:s.next().then((function(e){return e.done?e.value:s.next()}))},k(j),l(j,a,"Generator"),j[i]=function(){return this},j.toString=function(){return"[object Generator]"},e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;t.length;){var r=t.pop();if(r in e)return n.value=r,n.done=!1,n}return n.done=!0,n}},e.values=N,E.prototype={constructor:E,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(_),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function o(r,o){return a.type="throw",a.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var l=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(l&&c){if(this.prev<s.catchLoc)return o(s.catchLoc,!0);if(this.prev<s.finallyLoc)return o(s.finallyLoc)}else if(l){if(this.prev<s.catchLoc)return o(s.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<s.finallyLoc)return o(s.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===e||"continue"===e)&&i.tryLoc<=t&&t<=i.finallyLoc&&(i=null);var s=i?i.completion:{};return s.type=e,s.arg=t,i?(this.method="next",this.next=i.finallyLoc,m):this.complete(s)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),m},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),_(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;_(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:N(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),m}},e}(e.exports);try{regeneratorRuntime=t}catch(e){Function("r","regeneratorRuntime = r")(t)}},363:e=>{"use strict";e.exports=React}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var i=n[e]={exports:{}};return t[e](i,i.exports,r),i.exports}r.m=t,e=[],r.O=(t,n,o,i)=>{if(!n){var s=1/0;for(u=0;u<e.length;u++){for(var[n,o,i]=e[u],a=!0,l=0;l<n.length;l++)(!1&i||s>=i)&&Object.keys(r.O).every((e=>r.O[e](n[l])))?n.splice(l--,1):(a=!1,i<s&&(s=i));if(a){e.splice(u--,1);var c=o();void 0!==c&&(t=c)}}return t}i=i||0;for(var u=e.length;u>0&&e[u-1][2]>i;u--)e[u]=e[u-1];e[u]=[n,o,i]},r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={286:0,506:0,310:0};r.O.j=t=>0===e[t];var t=(t,n)=>{var o,i,[s,a,l]=n,c=0;if(s.some((t=>0!==e[t]))){for(o in a)r.o(a,o)&&(r.m[o]=a[o]);if(l)var u=l(r)}for(t&&t(n);c<s.length;c++)i=s[c],r.o(e,i)&&e[i]&&e[i][0](),e[s[c]]=0;return r.O(u)},n=self.webpackChunk=self.webpackChunk||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))})(),r.O(void 0,[506,310],(()=>r(353))),r.O(void 0,[506,310],(()=>r(716)));var o=r.O(void 0,[506,310],(()=>r(965)));o=r.O(o)})();
|
|
|
|
|
|
extendify-sdk/public/build/extendify-utilities.css
CHANGED
|
@@ -2,6 +2,6 @@
|
|
| 2 |
--wp--custom--typography--text-stroke-width,2px
|
| 3 |
)}.text-stroke--primary{-webkit-text-stroke-color:var(--wp--preset--color--primary)}.text-stroke--secondary{-webkit-text-stroke-width:var(
|
| 4 |
--wp--custom--typography--text-stroke-width,2px
|
| 5 |
-
);-webkit-text-stroke-color:var(--wp--preset--color--secondary)}.editor\:no-caption .block-editor-rich-text__editable{display:none!important}.editor\:no-inserter .wp-block-column:not(.is-selected)>.block-list-appender,.editor\:no-inserter .wp-block-cover__inner-container>.block-list-appender,.editor\:no-inserter .wp-block-group__inner-container>.block-list-appender,.editor\:no-inserter>.block-list-appender{display:none}.editor\:no-resize .components-resizable-box__handle,.editor\:no-resize .components-resizable-box__handle:after,.editor\:no-resize .components-resizable-box__side-handle:before{display:none;pointer-events:none}.editor\:no-resize .components-resizable-box__container{display:block}.editor\:pointer-events-none{pointer-events:none}.is-style-angled{justify-content:flex-end}.ext .is-style-angled>[class*=_inner-container],.is-style-angled{align-items:center}.is-style-angled .wp-block-cover__image-background,.is-style-angled .wp-block-cover__video-background{-webkit-clip-path:polygon(0 0,30% 0,50% 100%,0 100%);clip-path:polygon(0 0,30% 0,50% 100%,0 100%);z-index:1}@media (min-width:782px){.is-style-angled .wp-block-cover__image-background,.is-style-angled .wp-block-cover__video-background{-webkit-clip-path:polygon(0 0,55% 0,65% 100%,0 100%);clip-path:polygon(0 0,55% 0,65% 100%,0 100%)}}.ext .wp-block[data-align=wide]{margin-bottom:0!important;margin-top:0!important}.has-foreground-color{color:var(--wp--preset--color--foreground,#000)!important}.has-foreground-background-color{background-color:var(--wp--preset--color--foreground,#000)!important}.has-background-color{color:var(--wp--preset--color--background,#fff)!important}.has-background-background-color{background-color:var(--wp--preset--color--background,#fff)!important}.has-primary-color{color:var(--wp--preset--color--primary,#4b5563)!important}.has-primary-background-color{background-color:var(--wp--preset--color--primary,#4b5563)!important}.has-secondary-color{color:var(--wp--preset--color--secondary,#9ca3af)!important}.has-secondary-background-color{background-color:var(--wp--preset--color--secondary,#9ca3af)!important}.ext.has-text-color h1,.ext.has-text-color h2,.ext.has-text-color h3,.ext.has-text-color h4,.ext.has-text-color h5,.ext.has-text-color h6,.ext.has-text-color p{color:currentColor}.editor-styles-wrapper .has-gigantic-font-size.wp-block,.has-gigantic-font-size{--fallback-size:clamp(var(--wp--preset--font-size--huge,22px),calc(1rem + var(--wp--custom--typography--gigantic--preferred, 5vw)),var(--wp--preset--font-size--huge,42px) * 2);font-size:var(--wp--preset--font-size--gigantic,var(--fallback-size))}.ext .ext-grid>[class*=_inner-container]{display:grid}.ext>[class*=_inner-container]>.ext-grid:not([class*=columns]),.ext>[class*=_inner-container]>.wp-block>.ext-grid:not([class*=columns]){display:initial!important}.ext .ext-grid-cols-1>[class*=_inner-container]{grid-template-columns:repeat(1,minmax(0,1fr))!important}.ext .ext-grid-cols-2>[class*=_inner-container]{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ext .ext-grid-cols-3>[class*=_inner-container]{grid-template-columns:repeat(3,minmax(0,1fr))!important}.ext .ext-grid-cols-4>[class*=_inner-container]{grid-template-columns:repeat(4,minmax(0,1fr))!important}.ext .ext-grid-cols-5>[class*=_inner-container]{grid-template-columns:repeat(5,minmax(0,1fr))!important}.ext .ext-grid-cols-6>[class*=_inner-container]{grid-template-columns:repeat(6,minmax(0,1fr))!important}.ext .ext-grid-cols-7>[class*=_inner-container]{grid-template-columns:repeat(7,minmax(0,1fr))!important}.ext .ext-grid-cols-8>[class*=_inner-container]{grid-template-columns:repeat(8,minmax(0,1fr))!important}.ext .ext-grid-cols-9>[class*=_inner-container]{grid-template-columns:repeat(9,minmax(0,1fr))!important}.ext .ext-grid-cols-10>[class*=_inner-container]{grid-template-columns:repeat(10,minmax(0,1fr))!important}.ext .ext-grid-cols-11>[class*=_inner-container]{grid-template-columns:repeat(11,minmax(0,1fr))!important}.ext .ext-grid-cols-12>[class*=_inner-container]{grid-template-columns:repeat(12,minmax(0,1fr))!important}.ext .ext-grid-cols-13>[class*=_inner-container]{grid-template-columns:repeat(13,minmax(0,1fr))!important}.ext .ext-grid-cols-none>[class*=_inner-container]{grid-template-columns:none!important}.ext .ext-grid-rows-1>[class*=_inner-container]{grid-template-rows:repeat(1,minmax(0,1fr))!important}.ext .ext-grid-rows-2>[class*=_inner-container]{grid-template-rows:repeat(2,minmax(0,1fr))!important}.ext .ext-grid-rows-3>[class*=_inner-container]{grid-template-rows:repeat(3,minmax(0,1fr))!important}.ext .ext-grid-rows-4>[class*=_inner-container]{grid-template-rows:repeat(4,minmax(0,1fr))!important}.ext .ext-grid-rows-5>[class*=_inner-container]{grid-template-rows:repeat(5,minmax(0,1fr))!important}.ext .ext-grid-rows-6>[class*=_inner-container]{grid-template-rows:repeat(6,minmax(0,1fr))!important}.ext .ext-grid-rows-none>[class*=_inner-container]{grid-template-rows:none!important}.ext .ext-items-start>[class*=_inner-container]{align-items:flex-start!important}.ext .ext-items-end>[class*=_inner-container]{align-items:flex-end!important}.ext .ext-items-center>[class*=_inner-container]{align-items:center!important}.ext .ext-items-baseline>[class*=_inner-container]{align-items:baseline!important}.ext .ext-items-stretch>[class*=_inner-container]{align-items:stretch!important}.ext.wp-block-group>:last-child{margin-bottom:0}.ext .wp-block-group__inner-container{padding:0!important}.ext.has-background{padding-left:var(--wp--style--block-gap,2rem);padding-right:var(--wp--style--block-gap,2rem)}.ext [class*=inner-container]>.alignwide [class*=inner-container]{max-width:var(--responsive--alignwide-width,120rem)}.ext [class*=inner-container]>.alignwide [class*=inner-container]>*{max-width:100%!important}.ext [class*=inner-container]>.alignfull [class*=inner-container]{max-width:100%}.ext [class*=inner-container]>.alignfull [class*=inner-container]>*{max-width:100%!important}.ext .wp-block-image{position:relative;text-align:center}.ext .wp-block-image img{display:inline-block;vertical-align:middle}body{--extendify--spacing--large:var(
|
| 6 |
--wp--custom--spacing--large,clamp(2em,8vw,8em)
|
| 7 |
-
)}.ast-separate-container .ext .block-editor-block-list__layout{padding:0!important}.ext [data-block].wp-block-buttons .wp-block-button{margin-bottom:0;margin-top:0}.ext [data-block].wp-block-buttons .wp-block-button:first-child{margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:0!important}.ext .wp-block-group__inner-container figure.wp-block-gallery.alignfull{margin-bottom:unset;margin-top:unset}.ext .alignwide{margin-left:auto!important;margin-right:auto!important}@media (min-width:782px){.tablet\:ext-absolute{position:absolute!important}.tablet\:ext-relative{position:relative!important}.tablet\:ext-top-base{top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-top-lg{top:var(--extendify--spacing--large)!important}.tablet\:ext--top-base{top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--top-lg{top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-right-base{right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-right-lg{right:var(--extendify--spacing--large)!important}.tablet\:ext--right-base{right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--right-lg{right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-bottom-base{bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-bottom-lg{bottom:var(--extendify--spacing--large)!important}.tablet\:ext--bottom-base{bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--bottom-lg{bottom:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-left-base{left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-left-lg{left:var(--extendify--spacing--large)!important}.tablet\:ext--left-base{left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--left-lg{left:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-order-1{order:1!important}.tablet\:ext-order-2{order:2!important}.tablet\:ext-m-0:not([style*=margin]){margin:0!important}.tablet\:ext-m-auto:not([style*=margin]){margin:auto!important}.tablet\:ext-m-base:not([style*=margin]){margin:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-m-lg:not([style*=margin]){margin:var(--extendify--spacing--large)!important}.tablet\:ext--m-base:not([style*=margin]){margin:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--m-lg:not([style*=margin]){margin:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mx-0:not([style*=margin]){margin-left:0!important;margin-right:0!important}.tablet\:ext-mx-auto:not([style*=margin]){margin-left:auto!important;margin-right:auto!important}.tablet\:ext-mx-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important;margin-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mx-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important;margin-right:var(--extendify--spacing--large)!important}.tablet\:ext--mx-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mx-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important;margin-right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.tablet\:ext-my-auto:not([style*=margin]){margin-bottom:auto!important;margin-top:auto!important}.tablet\:ext-my-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-my-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important;margin-top:var(--extendify--spacing--large)!important}.tablet\:ext--my-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--my-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important;margin-top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mt-0:not([style*=margin]){margin-top:0!important}.tablet\:ext-mt-auto:not([style*=margin]){margin-top:auto!important}.tablet\:ext-mt-base:not([style*=margin]){margin-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mt-lg:not([style*=margin]){margin-top:var(--extendify--spacing--large)!important}.tablet\:ext--mt-base:not([style*=margin]){margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mt-lg:not([style*=margin]){margin-top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mr-0:not([style*=margin]){margin-right:0!important}.tablet\:ext-mr-auto:not([style*=margin]){margin-right:auto!important}.tablet\:ext-mr-base:not([style*=margin]){margin-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mr-lg:not([style*=margin]){margin-right:var(--extendify--spacing--large)!important}.tablet\:ext--mr-base:not([style*=margin]){margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mr-lg:not([style*=margin]){margin-right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mb-0:not([style*=margin]){margin-bottom:0!important}.tablet\:ext-mb-auto:not([style*=margin]){margin-bottom:auto!important}.tablet\:ext-mb-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mb-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important}.tablet\:ext--mb-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mb-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-ml-0:not([style*=margin]){margin-left:0!important}.tablet\:ext-ml-auto:not([style*=margin]){margin-left:auto!important}.tablet\:ext-ml-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-ml-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important}.tablet\:ext--ml-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--ml-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-block{display:block!important}.tablet\:ext-inline-block{display:inline-block!important}.tablet\:ext-inline{display:inline!important}.tablet\:ext-flex{display:flex!important}.tablet\:ext-inline-flex{display:inline-flex!important}.tablet\:ext-grid{display:grid!important}.tablet\:ext-inline-grid{display:inline-grid!important}.tablet\:ext-hidden{display:none!important}.tablet\:ext-w-auto{width:auto!important}.tablet\:ext-w-full{width:100%!important}.tablet\:ext-max-w-full{max-width:100%!important}.tablet\:ext-flex-1{flex:1 1 0%!important}.tablet\:ext-flex-auto{flex:1 1 auto!important}.tablet\:ext-flex-initial{flex:0 1 auto!important}.tablet\:ext-flex-none{flex:none!important}.tablet\:ext-flex-shrink-0{flex-shrink:0!important}.tablet\:ext-flex-shrink{flex-shrink:1!important}.tablet\:ext-flex-grow-0{flex-grow:0!important}.tablet\:ext-flex-grow{flex-grow:1!important}.tablet\:ext-list-none{list-style-type:none!important}.tablet\:ext-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.tablet\:ext-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.tablet\:ext-grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.tablet\:ext-grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.tablet\:ext-grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.tablet\:ext-grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.tablet\:ext-grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.tablet\:ext-grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.tablet\:ext-grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.tablet\:ext-grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.tablet\:ext-grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.tablet\:ext-grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.tablet\:ext-grid-cols-none{grid-template-columns:none!important}.tablet\:ext-flex-row{flex-direction:row!important}.tablet\:ext-flex-row-reverse{flex-direction:row-reverse!important}.tablet\:ext-flex-col{flex-direction:column!important}.tablet\:ext-flex-col-reverse{flex-direction:column-reverse!important}.tablet\:ext-flex-wrap{flex-wrap:wrap!important}.tablet\:ext-flex-wrap-reverse{flex-wrap:wrap-reverse!important}.tablet\:ext-flex-nowrap{flex-wrap:nowrap!important}.tablet\:ext-items-start{align-items:flex-start!important}.tablet\:ext-items-end{align-items:flex-end!important}.tablet\:ext-items-center{align-items:center!important}.tablet\:ext-items-baseline{align-items:baseline!important}.tablet\:ext-items-stretch{align-items:stretch!important}.tablet\:ext-justify-start{justify-content:flex-start!important}.tablet\:ext-justify-end{justify-content:flex-end!important}.tablet\:ext-justify-center{justify-content:center!important}.tablet\:ext-justify-between{justify-content:space-between!important}.tablet\:ext-justify-around{justify-content:space-around!important}.tablet\:ext-justify-evenly{justify-content:space-evenly!important}.tablet\:ext-justify-items-start{justify-items:start!important}.tablet\:ext-justify-items-end{justify-items:end!important}.tablet\:ext-justify-items-center{justify-items:center!important}.tablet\:ext-justify-items-stretch{justify-items:stretch!important}.tablet\:ext-justify-self-auto{justify-self:auto!important}.tablet\:ext-justify-self-start{justify-self:start!important}.tablet\:ext-justify-self-end{justify-self:end!important}.tablet\:ext-justify-self-center{justify-self:center!important}.tablet\:ext-justify-self-stretch{justify-self:stretch!important}.tablet\:ext-p-0:not([style*=padding]){padding:0!important}.tablet\:ext-p-base:not([style*=padding]){padding:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-p-lg:not([style*=padding]){padding:var(--extendify--spacing--large)!important}.tablet\:ext-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.tablet\:ext-px-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important;padding-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-px-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important;padding-right:var(--extendify--spacing--large)!important}.tablet\:ext-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.tablet\:ext-py-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important;padding-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-py-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important;padding-top:var(--extendify--spacing--large)!important}.tablet\:ext-pt-0:not([style*=padding]){padding-top:0!important}.tablet\:ext-pt-base:not([style*=padding]){padding-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pt-lg:not([style*=padding]){padding-top:var(--extendify--spacing--large)!important}.tablet\:ext-pr-0:not([style*=padding]){padding-right:0!important}.tablet\:ext-pr-base:not([style*=padding]){padding-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pr-lg:not([style*=padding]){padding-right:var(--extendify--spacing--large)!important}.tablet\:ext-pb-0:not([style*=padding]){padding-bottom:0!important}.tablet\:ext-pb-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pb-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important}.tablet\:ext-pl-0:not([style*=padding]){padding-left:0!important}.tablet\:ext-pl-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pl-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important}.tablet\:ext-text-left{text-align:left!important}.tablet\:ext-text-center{text-align:center!important}.tablet\:ext-text-right{text-align:right!important}}@media (min-width:1080px){.desktop\:ext-absolute{position:absolute!important}.desktop\:ext-relative{position:relative!important}.desktop\:ext-top-base{top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-top-lg{top:var(--extendify--spacing--large)!important}.desktop\:ext--top-base{top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--top-lg{top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-right-base{right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-right-lg{right:var(--extendify--spacing--large)!important}.desktop\:ext--right-base{right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--right-lg{right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-bottom-base{bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-bottom-lg{bottom:var(--extendify--spacing--large)!important}.desktop\:ext--bottom-base{bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--bottom-lg{bottom:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-left-base{left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-left-lg{left:var(--extendify--spacing--large)!important}.desktop\:ext--left-base{left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--left-lg{left:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-order-1{order:1!important}.desktop\:ext-order-2{order:2!important}.desktop\:ext-m-0:not([style*=margin]){margin:0!important}.desktop\:ext-m-auto:not([style*=margin]){margin:auto!important}.desktop\:ext-m-base:not([style*=margin]){margin:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-m-lg:not([style*=margin]){margin:var(--extendify--spacing--large)!important}.desktop\:ext--m-base:not([style*=margin]){margin:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--m-lg:not([style*=margin]){margin:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mx-0:not([style*=margin]){margin-left:0!important;margin-right:0!important}.desktop\:ext-mx-auto:not([style*=margin]){margin-left:auto!important;margin-right:auto!important}.desktop\:ext-mx-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important;margin-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mx-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important;margin-right:var(--extendify--spacing--large)!important}.desktop\:ext--mx-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mx-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important;margin-right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.desktop\:ext-my-auto:not([style*=margin]){margin-bottom:auto!important;margin-top:auto!important}.desktop\:ext-my-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-my-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important;margin-top:var(--extendify--spacing--large)!important}.desktop\:ext--my-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--my-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important;margin-top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mt-0:not([style*=margin]){margin-top:0!important}.desktop\:ext-mt-auto:not([style*=margin]){margin-top:auto!important}.desktop\:ext-mt-base:not([style*=margin]){margin-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mt-lg:not([style*=margin]){margin-top:var(--extendify--spacing--large)!important}.desktop\:ext--mt-base:not([style*=margin]){margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mt-lg:not([style*=margin]){margin-top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mr-0:not([style*=margin]){margin-right:0!important}.desktop\:ext-mr-auto:not([style*=margin]){margin-right:auto!important}.desktop\:ext-mr-base:not([style*=margin]){margin-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mr-lg:not([style*=margin]){margin-right:var(--extendify--spacing--large)!important}.desktop\:ext--mr-base:not([style*=margin]){margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mr-lg:not([style*=margin]){margin-right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mb-0:not([style*=margin]){margin-bottom:0!important}.desktop\:ext-mb-auto:not([style*=margin]){margin-bottom:auto!important}.desktop\:ext-mb-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mb-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important}.desktop\:ext--mb-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mb-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-ml-0:not([style*=margin]){margin-left:0!important}.desktop\:ext-ml-auto:not([style*=margin]){margin-left:auto!important}.desktop\:ext-ml-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-ml-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important}.desktop\:ext--ml-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--ml-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-block{display:block!important}.desktop\:ext-inline-block{display:inline-block!important}.desktop\:ext-inline{display:inline!important}.desktop\:ext-flex{display:flex!important}.desktop\:ext-inline-flex{display:inline-flex!important}.desktop\:ext-grid{display:grid!important}.desktop\:ext-inline-grid{display:inline-grid!important}.desktop\:ext-hidden{display:none!important}.desktop\:ext-w-auto{width:auto!important}.desktop\:ext-w-full{width:100%!important}.desktop\:ext-max-w-full{max-width:100%!important}.desktop\:ext-flex-1{flex:1 1 0%!important}.desktop\:ext-flex-auto{flex:1 1 auto!important}.desktop\:ext-flex-initial{flex:0 1 auto!important}.desktop\:ext-flex-none{flex:none!important}.desktop\:ext-flex-shrink-0{flex-shrink:0!important}.desktop\:ext-flex-shrink{flex-shrink:1!important}.desktop\:ext-flex-grow-0{flex-grow:0!important}.desktop\:ext-flex-grow{flex-grow:1!important}.desktop\:ext-list-none{list-style-type:none!important}.desktop\:ext-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.desktop\:ext-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.desktop\:ext-grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.desktop\:ext-grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.desktop\:ext-grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.desktop\:ext-grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.desktop\:ext-grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.desktop\:ext-grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.desktop\:ext-grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.desktop\:ext-grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.desktop\:ext-grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.desktop\:ext-grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.desktop\:ext-grid-cols-none{grid-template-columns:none!important}.desktop\:ext-flex-row{flex-direction:row!important}.desktop\:ext-flex-row-reverse{flex-direction:row-reverse!important}.desktop\:ext-flex-col{flex-direction:column!important}.desktop\:ext-flex-col-reverse{flex-direction:column-reverse!important}.desktop\:ext-flex-wrap{flex-wrap:wrap!important}.desktop\:ext-flex-wrap-reverse{flex-wrap:wrap-reverse!important}.desktop\:ext-flex-nowrap{flex-wrap:nowrap!important}.desktop\:ext-items-start{align-items:flex-start!important}.desktop\:ext-items-end{align-items:flex-end!important}.desktop\:ext-items-center{align-items:center!important}.desktop\:ext-items-baseline{align-items:baseline!important}.desktop\:ext-items-stretch{align-items:stretch!important}.desktop\:ext-justify-start{justify-content:flex-start!important}.desktop\:ext-justify-end{justify-content:flex-end!important}.desktop\:ext-justify-center{justify-content:center!important}.desktop\:ext-justify-between{justify-content:space-between!important}.desktop\:ext-justify-around{justify-content:space-around!important}.desktop\:ext-justify-evenly{justify-content:space-evenly!important}.desktop\:ext-justify-items-start{justify-items:start!important}.desktop\:ext-justify-items-end{justify-items:end!important}.desktop\:ext-justify-items-center{justify-items:center!important}.desktop\:ext-justify-items-stretch{justify-items:stretch!important}.desktop\:ext-justify-self-auto{justify-self:auto!important}.desktop\:ext-justify-self-start{justify-self:start!important}.desktop\:ext-justify-self-end{justify-self:end!important}.desktop\:ext-justify-self-center{justify-self:center!important}.desktop\:ext-justify-self-stretch{justify-self:stretch!important}.desktop\:ext-p-0:not([style*=padding]){padding:0!important}.desktop\:ext-p-base:not([style*=padding]){padding:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-p-lg:not([style*=padding]){padding:var(--extendify--spacing--large)!important}.desktop\:ext-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.desktop\:ext-px-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important;padding-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-px-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important;padding-right:var(--extendify--spacing--large)!important}.desktop\:ext-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.desktop\:ext-py-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important;padding-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-py-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important;padding-top:var(--extendify--spacing--large)!important}.desktop\:ext-pt-0:not([style*=padding]){padding-top:0!important}.desktop\:ext-pt-base:not([style*=padding]){padding-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pt-lg:not([style*=padding]){padding-top:var(--extendify--spacing--large)!important}.desktop\:ext-pr-0:not([style*=padding]){padding-right:0!important}.desktop\:ext-pr-base:not([style*=padding]){padding-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pr-lg:not([style*=padding]){padding-right:var(--extendify--spacing--large)!important}.desktop\:ext-pb-0:not([style*=padding]){padding-bottom:0!important}.desktop\:ext-pb-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pb-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important}.desktop\:ext-pl-0:not([style*=padding]){padding-left:0!important}.desktop\:ext-pl-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pl-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important}.desktop\:ext-text-left{text-align:left!important}.desktop\:ext-text-center{text-align:center!important}.desktop\:ext-text-right{text-align:right!important}}
|
| 2 |
--wp--custom--typography--text-stroke-width,2px
|
| 3 |
)}.text-stroke--primary{-webkit-text-stroke-color:var(--wp--preset--color--primary)}.text-stroke--secondary{-webkit-text-stroke-width:var(
|
| 4 |
--wp--custom--typography--text-stroke-width,2px
|
| 5 |
+
);-webkit-text-stroke-color:var(--wp--preset--color--secondary)}.editor\:no-caption .block-editor-rich-text__editable{display:none!important}.editor\:no-inserter .wp-block-column:not(.is-selected)>.block-list-appender,.editor\:no-inserter .wp-block-cover__inner-container>.block-list-appender,.editor\:no-inserter .wp-block-group__inner-container>.block-list-appender,.editor\:no-inserter>.block-list-appender{display:none}.editor\:no-resize .components-resizable-box__handle,.editor\:no-resize .components-resizable-box__handle:after,.editor\:no-resize .components-resizable-box__side-handle:before{display:none;pointer-events:none}.editor\:no-resize .components-resizable-box__container{display:block}.editor\:pointer-events-none{pointer-events:none}.is-style-angled{justify-content:flex-end}.ext .is-style-angled>[class*=_inner-container],.is-style-angled{align-items:center}.is-style-angled .wp-block-cover__image-background,.is-style-angled .wp-block-cover__video-background{-webkit-clip-path:polygon(0 0,30% 0,50% 100%,0 100%);clip-path:polygon(0 0,30% 0,50% 100%,0 100%);z-index:1}@media (min-width:782px){.is-style-angled .wp-block-cover__image-background,.is-style-angled .wp-block-cover__video-background{-webkit-clip-path:polygon(0 0,55% 0,65% 100%,0 100%);clip-path:polygon(0 0,55% 0,65% 100%,0 100%)}}.ext .wp-block[data-align=wide]{margin-bottom:0!important;margin-top:0!important}.has-foreground-color{color:var(--wp--preset--color--foreground,#000)!important}.has-foreground-background-color{background-color:var(--wp--preset--color--foreground,#000)!important}.has-background-color{color:var(--wp--preset--color--background,#fff)!important}.has-background-background-color{background-color:var(--wp--preset--color--background,#fff)!important}.has-primary-color{color:var(--wp--preset--color--primary,#4b5563)!important}.has-primary-background-color{background-color:var(--wp--preset--color--primary,#4b5563)!important}.has-secondary-color{color:var(--wp--preset--color--secondary,#9ca3af)!important}.has-secondary-background-color{background-color:var(--wp--preset--color--secondary,#9ca3af)!important}.ext.has-text-color h1,.ext.has-text-color h2,.ext.has-text-color h3,.ext.has-text-color h4,.ext.has-text-color h5,.ext.has-text-color h6,.ext.has-text-color p{color:currentColor}.editor-styles-wrapper .has-gigantic-font-size.wp-block,.has-gigantic-font-size{--fallback-size:clamp(var(--wp--preset--font-size--huge,22px),calc(1rem + var(--wp--custom--typography--gigantic--preferred, 5vw)),var(--wp--preset--font-size--huge,42px) * 2);font-size:var(--wp--preset--font-size--gigantic,var(--fallback-size))}.has-ext-small-font-size{font-size:var(--wp--preset--font-size--ext-small)!important}.has-ext-medium-font-size{font-size:var(--wp--preset--font-size--ext-medium)!important}.has-ext-large-font-size{font-size:var(--wp--preset--font-size--ext-large)!important}.has-ext-x-large-font-size{font-size:var(--wp--preset--font-size--ext-x-large)!important}.has-ext-gigantic-font-size{font-size:var(--wp--preset--font-size--ext-gigantic)!important}.ext .ext-grid>[class*=_inner-container]{display:grid}.ext>[class*=_inner-container]>.ext-grid:not([class*=columns]),.ext>[class*=_inner-container]>.wp-block>.ext-grid:not([class*=columns]){display:initial!important}.ext .ext-grid-cols-1>[class*=_inner-container]{grid-template-columns:repeat(1,minmax(0,1fr))!important}.ext .ext-grid-cols-2>[class*=_inner-container]{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ext .ext-grid-cols-3>[class*=_inner-container]{grid-template-columns:repeat(3,minmax(0,1fr))!important}.ext .ext-grid-cols-4>[class*=_inner-container]{grid-template-columns:repeat(4,minmax(0,1fr))!important}.ext .ext-grid-cols-5>[class*=_inner-container]{grid-template-columns:repeat(5,minmax(0,1fr))!important}.ext .ext-grid-cols-6>[class*=_inner-container]{grid-template-columns:repeat(6,minmax(0,1fr))!important}.ext .ext-grid-cols-7>[class*=_inner-container]{grid-template-columns:repeat(7,minmax(0,1fr))!important}.ext .ext-grid-cols-8>[class*=_inner-container]{grid-template-columns:repeat(8,minmax(0,1fr))!important}.ext .ext-grid-cols-9>[class*=_inner-container]{grid-template-columns:repeat(9,minmax(0,1fr))!important}.ext .ext-grid-cols-10>[class*=_inner-container]{grid-template-columns:repeat(10,minmax(0,1fr))!important}.ext .ext-grid-cols-11>[class*=_inner-container]{grid-template-columns:repeat(11,minmax(0,1fr))!important}.ext .ext-grid-cols-12>[class*=_inner-container]{grid-template-columns:repeat(12,minmax(0,1fr))!important}.ext .ext-grid-cols-13>[class*=_inner-container]{grid-template-columns:repeat(13,minmax(0,1fr))!important}.ext .ext-grid-cols-none>[class*=_inner-container]{grid-template-columns:none!important}.ext .ext-grid-rows-1>[class*=_inner-container]{grid-template-rows:repeat(1,minmax(0,1fr))!important}.ext .ext-grid-rows-2>[class*=_inner-container]{grid-template-rows:repeat(2,minmax(0,1fr))!important}.ext .ext-grid-rows-3>[class*=_inner-container]{grid-template-rows:repeat(3,minmax(0,1fr))!important}.ext .ext-grid-rows-4>[class*=_inner-container]{grid-template-rows:repeat(4,minmax(0,1fr))!important}.ext .ext-grid-rows-5>[class*=_inner-container]{grid-template-rows:repeat(5,minmax(0,1fr))!important}.ext .ext-grid-rows-6>[class*=_inner-container]{grid-template-rows:repeat(6,minmax(0,1fr))!important}.ext .ext-grid-rows-none>[class*=_inner-container]{grid-template-rows:none!important}.ext .ext-items-start>[class*=_inner-container]{align-items:flex-start!important}.ext .ext-items-end>[class*=_inner-container]{align-items:flex-end!important}.ext .ext-items-center>[class*=_inner-container]{align-items:center!important}.ext .ext-items-baseline>[class*=_inner-container]{align-items:baseline!important}.ext .ext-items-stretch>[class*=_inner-container]{align-items:stretch!important}.ext.wp-block-group>:last-child{margin-bottom:0}.ext .wp-block-group__inner-container{padding:0!important}.ext.has-background{padding-left:var(--wp--style--block-gap,2rem);padding-right:var(--wp--style--block-gap,2rem)}.ext [class*=inner-container]>.alignwide [class*=inner-container],.ext [class*=inner-container]>[data-align=wide] [class*=inner-container]{max-width:var(--responsive--alignwide-width,120rem)}.ext [class*=inner-container]>.alignwide [class*=inner-container]>*,.ext [class*=inner-container]>[data-align=wide] [class*=inner-container]>*{max-width:100%!important}.ext [class*=inner-container]>.alignfull [class*=inner-container],.ext [class*=inner-container]>[data-align=full] [class*=inner-container]{max-width:100%}.ext [class*=inner-container]>.alignfull [class*=inner-container]>*,.ext [class*=inner-container]>[data-align=full] [class*=inner-container]>*{max-width:100%!important}.ext .wp-block-image{position:relative;text-align:center}.ext .wp-block-image img{display:inline-block;vertical-align:middle}body{--extendify--spacing--large:var(
|
| 6 |
--wp--custom--spacing--large,clamp(2em,8vw,8em)
|
| 7 |
+
);--wp--preset--font-size--ext-small:1rem;--wp--preset--font-size--ext-medium:clamp(1.5rem,2vw,2rem);--wp--preset--font-size--ext-large:clamp(2.25rem,4vw,3.75rem);--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem);--wp--preset--font-size--ext-gigantic:clamp(3.25rem,7.5vw,5.75rem)}.ast-separate-container .ext .block-editor-block-list__layout{padding:0!important}.block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .components-resizable-box__container{background:transparent!important}.block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .block-library-spacer__resize-container:before{display:none!important}.ext [data-block].wp-block-buttons .wp-block-button{margin-bottom:0;margin-top:0}.ext [data-block].wp-block-buttons .wp-block-button:first-child{margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:0!important}.ext .wp-block-group__inner-container figure.wp-block-gallery.alignfull{margin-bottom:unset;margin-top:unset}.ext .alignwide{margin-left:auto!important;margin-right:auto!important}@media (min-width:782px){.tablet\:ext-absolute{position:absolute!important}.tablet\:ext-relative{position:relative!important}.tablet\:ext-top-base{top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-top-lg{top:var(--extendify--spacing--large)!important}.tablet\:ext--top-base{top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--top-lg{top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-right-base{right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-right-lg{right:var(--extendify--spacing--large)!important}.tablet\:ext--right-base{right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--right-lg{right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-bottom-base{bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-bottom-lg{bottom:var(--extendify--spacing--large)!important}.tablet\:ext--bottom-base{bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--bottom-lg{bottom:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-left-base{left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-left-lg{left:var(--extendify--spacing--large)!important}.tablet\:ext--left-base{left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--left-lg{left:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-order-1{order:1!important}.tablet\:ext-order-2{order:2!important}.tablet\:ext-m-0:not([style*=margin]){margin:0!important}.tablet\:ext-m-auto:not([style*=margin]){margin:auto!important}.tablet\:ext-m-base:not([style*=margin]){margin:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-m-lg:not([style*=margin]){margin:var(--extendify--spacing--large)!important}.tablet\:ext--m-base:not([style*=margin]){margin:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--m-lg:not([style*=margin]){margin:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mx-0:not([style*=margin]){margin-left:0!important;margin-right:0!important}.tablet\:ext-mx-auto:not([style*=margin]){margin-left:auto!important;margin-right:auto!important}.tablet\:ext-mx-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important;margin-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mx-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important;margin-right:var(--extendify--spacing--large)!important}.tablet\:ext--mx-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mx-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important;margin-right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.tablet\:ext-my-auto:not([style*=margin]){margin-bottom:auto!important;margin-top:auto!important}.tablet\:ext-my-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-my-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important;margin-top:var(--extendify--spacing--large)!important}.tablet\:ext--my-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--my-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important;margin-top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mt-0:not([style*=margin]){margin-top:0!important}.tablet\:ext-mt-auto:not([style*=margin]){margin-top:auto!important}.tablet\:ext-mt-base:not([style*=margin]){margin-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mt-lg:not([style*=margin]){margin-top:var(--extendify--spacing--large)!important}.tablet\:ext--mt-base:not([style*=margin]){margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mt-lg:not([style*=margin]){margin-top:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mr-0:not([style*=margin]){margin-right:0!important}.tablet\:ext-mr-auto:not([style*=margin]){margin-right:auto!important}.tablet\:ext-mr-base:not([style*=margin]){margin-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mr-lg:not([style*=margin]){margin-right:var(--extendify--spacing--large)!important}.tablet\:ext--mr-base:not([style*=margin]){margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mr-lg:not([style*=margin]){margin-right:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-mb-0:not([style*=margin]){margin-bottom:0!important}.tablet\:ext-mb-auto:not([style*=margin]){margin-bottom:auto!important}.tablet\:ext-mb-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-mb-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important}.tablet\:ext--mb-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--mb-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-ml-0:not([style*=margin]){margin-left:0!important}.tablet\:ext-ml-auto:not([style*=margin]){margin-left:auto!important}.tablet\:ext-ml-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-ml-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important}.tablet\:ext--ml-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.tablet\:ext--ml-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important}.tablet\:ext-block{display:block!important}.tablet\:ext-inline-block{display:inline-block!important}.tablet\:ext-inline{display:inline!important}.tablet\:ext-flex{display:flex!important}.tablet\:ext-inline-flex{display:inline-flex!important}.tablet\:ext-grid{display:grid!important}.tablet\:ext-inline-grid{display:inline-grid!important}.tablet\:ext-hidden{display:none!important}.tablet\:ext-w-auto{width:auto!important}.tablet\:ext-w-full{width:100%!important}.tablet\:ext-max-w-full{max-width:100%!important}.tablet\:ext-flex-1{flex:1 1 0%!important}.tablet\:ext-flex-auto{flex:1 1 auto!important}.tablet\:ext-flex-initial{flex:0 1 auto!important}.tablet\:ext-flex-none{flex:none!important}.tablet\:ext-flex-shrink-0{flex-shrink:0!important}.tablet\:ext-flex-shrink{flex-shrink:1!important}.tablet\:ext-flex-grow-0{flex-grow:0!important}.tablet\:ext-flex-grow{flex-grow:1!important}.tablet\:ext-list-none{list-style-type:none!important}.tablet\:ext-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.tablet\:ext-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.tablet\:ext-grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.tablet\:ext-grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.tablet\:ext-grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.tablet\:ext-grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.tablet\:ext-grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.tablet\:ext-grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.tablet\:ext-grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.tablet\:ext-grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.tablet\:ext-grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.tablet\:ext-grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.tablet\:ext-grid-cols-none{grid-template-columns:none!important}.tablet\:ext-flex-row{flex-direction:row!important}.tablet\:ext-flex-row-reverse{flex-direction:row-reverse!important}.tablet\:ext-flex-col{flex-direction:column!important}.tablet\:ext-flex-col-reverse{flex-direction:column-reverse!important}.tablet\:ext-flex-wrap{flex-wrap:wrap!important}.tablet\:ext-flex-wrap-reverse{flex-wrap:wrap-reverse!important}.tablet\:ext-flex-nowrap{flex-wrap:nowrap!important}.tablet\:ext-items-start{align-items:flex-start!important}.tablet\:ext-items-end{align-items:flex-end!important}.tablet\:ext-items-center{align-items:center!important}.tablet\:ext-items-baseline{align-items:baseline!important}.tablet\:ext-items-stretch{align-items:stretch!important}.tablet\:ext-justify-start{justify-content:flex-start!important}.tablet\:ext-justify-end{justify-content:flex-end!important}.tablet\:ext-justify-center{justify-content:center!important}.tablet\:ext-justify-between{justify-content:space-between!important}.tablet\:ext-justify-around{justify-content:space-around!important}.tablet\:ext-justify-evenly{justify-content:space-evenly!important}.tablet\:ext-justify-items-start{justify-items:start!important}.tablet\:ext-justify-items-end{justify-items:end!important}.tablet\:ext-justify-items-center{justify-items:center!important}.tablet\:ext-justify-items-stretch{justify-items:stretch!important}.tablet\:ext-justify-self-auto{justify-self:auto!important}.tablet\:ext-justify-self-start{justify-self:start!important}.tablet\:ext-justify-self-end{justify-self:end!important}.tablet\:ext-justify-self-center{justify-self:center!important}.tablet\:ext-justify-self-stretch{justify-self:stretch!important}.tablet\:ext-p-0:not([style*=padding]){padding:0!important}.tablet\:ext-p-base:not([style*=padding]){padding:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-p-lg:not([style*=padding]){padding:var(--extendify--spacing--large)!important}.tablet\:ext-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.tablet\:ext-px-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important;padding-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-px-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important;padding-right:var(--extendify--spacing--large)!important}.tablet\:ext-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.tablet\:ext-py-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important;padding-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-py-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important;padding-top:var(--extendify--spacing--large)!important}.tablet\:ext-pt-0:not([style*=padding]){padding-top:0!important}.tablet\:ext-pt-base:not([style*=padding]){padding-top:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pt-lg:not([style*=padding]){padding-top:var(--extendify--spacing--large)!important}.tablet\:ext-pr-0:not([style*=padding]){padding-right:0!important}.tablet\:ext-pr-base:not([style*=padding]){padding-right:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pr-lg:not([style*=padding]){padding-right:var(--extendify--spacing--large)!important}.tablet\:ext-pb-0:not([style*=padding]){padding-bottom:0!important}.tablet\:ext-pb-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pb-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important}.tablet\:ext-pl-0:not([style*=padding]){padding-left:0!important}.tablet\:ext-pl-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important}.tablet\:ext-pl-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important}.tablet\:ext-text-left{text-align:left!important}.tablet\:ext-text-center{text-align:center!important}.tablet\:ext-text-right{text-align:right!important}}@media (min-width:1080px){.desktop\:ext-absolute{position:absolute!important}.desktop\:ext-relative{position:relative!important}.desktop\:ext-top-base{top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-top-lg{top:var(--extendify--spacing--large)!important}.desktop\:ext--top-base{top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--top-lg{top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-right-base{right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-right-lg{right:var(--extendify--spacing--large)!important}.desktop\:ext--right-base{right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--right-lg{right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-bottom-base{bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-bottom-lg{bottom:var(--extendify--spacing--large)!important}.desktop\:ext--bottom-base{bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--bottom-lg{bottom:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-left-base{left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-left-lg{left:var(--extendify--spacing--large)!important}.desktop\:ext--left-base{left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--left-lg{left:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-order-1{order:1!important}.desktop\:ext-order-2{order:2!important}.desktop\:ext-m-0:not([style*=margin]){margin:0!important}.desktop\:ext-m-auto:not([style*=margin]){margin:auto!important}.desktop\:ext-m-base:not([style*=margin]){margin:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-m-lg:not([style*=margin]){margin:var(--extendify--spacing--large)!important}.desktop\:ext--m-base:not([style*=margin]){margin:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--m-lg:not([style*=margin]){margin:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mx-0:not([style*=margin]){margin-left:0!important;margin-right:0!important}.desktop\:ext-mx-auto:not([style*=margin]){margin-left:auto!important;margin-right:auto!important}.desktop\:ext-mx-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important;margin-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mx-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important;margin-right:var(--extendify--spacing--large)!important}.desktop\:ext--mx-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mx-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important;margin-right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-my-0:not([style*=margin]){margin-bottom:0!important;margin-top:0!important}.desktop\:ext-my-auto:not([style*=margin]){margin-bottom:auto!important;margin-top:auto!important}.desktop\:ext-my-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important;margin-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-my-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important;margin-top:var(--extendify--spacing--large)!important}.desktop\:ext--my-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important;margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--my-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important;margin-top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mt-0:not([style*=margin]){margin-top:0!important}.desktop\:ext-mt-auto:not([style*=margin]){margin-top:auto!important}.desktop\:ext-mt-base:not([style*=margin]){margin-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mt-lg:not([style*=margin]){margin-top:var(--extendify--spacing--large)!important}.desktop\:ext--mt-base:not([style*=margin]){margin-top:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mt-lg:not([style*=margin]){margin-top:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mr-0:not([style*=margin]){margin-right:0!important}.desktop\:ext-mr-auto:not([style*=margin]){margin-right:auto!important}.desktop\:ext-mr-base:not([style*=margin]){margin-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mr-lg:not([style*=margin]){margin-right:var(--extendify--spacing--large)!important}.desktop\:ext--mr-base:not([style*=margin]){margin-right:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mr-lg:not([style*=margin]){margin-right:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-mb-0:not([style*=margin]){margin-bottom:0!important}.desktop\:ext-mb-auto:not([style*=margin]){margin-bottom:auto!important}.desktop\:ext-mb-base:not([style*=margin]){margin-bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-mb-lg:not([style*=margin]){margin-bottom:var(--extendify--spacing--large)!important}.desktop\:ext--mb-base:not([style*=margin]){margin-bottom:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--mb-lg:not([style*=margin]){margin-bottom:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-ml-0:not([style*=margin]){margin-left:0!important}.desktop\:ext-ml-auto:not([style*=margin]){margin-left:auto!important}.desktop\:ext-ml-base:not([style*=margin]){margin-left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-ml-lg:not([style*=margin]){margin-left:var(--extendify--spacing--large)!important}.desktop\:ext--ml-base:not([style*=margin]){margin-left:calc(var(--wp--style--block-gap, 2rem)*-1)!important}.desktop\:ext--ml-lg:not([style*=margin]){margin-left:calc(var(--extendify--spacing--large)*-1)!important}.desktop\:ext-block{display:block!important}.desktop\:ext-inline-block{display:inline-block!important}.desktop\:ext-inline{display:inline!important}.desktop\:ext-flex{display:flex!important}.desktop\:ext-inline-flex{display:inline-flex!important}.desktop\:ext-grid{display:grid!important}.desktop\:ext-inline-grid{display:inline-grid!important}.desktop\:ext-hidden{display:none!important}.desktop\:ext-w-auto{width:auto!important}.desktop\:ext-w-full{width:100%!important}.desktop\:ext-max-w-full{max-width:100%!important}.desktop\:ext-flex-1{flex:1 1 0%!important}.desktop\:ext-flex-auto{flex:1 1 auto!important}.desktop\:ext-flex-initial{flex:0 1 auto!important}.desktop\:ext-flex-none{flex:none!important}.desktop\:ext-flex-shrink-0{flex-shrink:0!important}.desktop\:ext-flex-shrink{flex-shrink:1!important}.desktop\:ext-flex-grow-0{flex-grow:0!important}.desktop\:ext-flex-grow{flex-grow:1!important}.desktop\:ext-list-none{list-style-type:none!important}.desktop\:ext-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.desktop\:ext-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.desktop\:ext-grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.desktop\:ext-grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.desktop\:ext-grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))!important}.desktop\:ext-grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.desktop\:ext-grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))!important}.desktop\:ext-grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))!important}.desktop\:ext-grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))!important}.desktop\:ext-grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))!important}.desktop\:ext-grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))!important}.desktop\:ext-grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))!important}.desktop\:ext-grid-cols-none{grid-template-columns:none!important}.desktop\:ext-flex-row{flex-direction:row!important}.desktop\:ext-flex-row-reverse{flex-direction:row-reverse!important}.desktop\:ext-flex-col{flex-direction:column!important}.desktop\:ext-flex-col-reverse{flex-direction:column-reverse!important}.desktop\:ext-flex-wrap{flex-wrap:wrap!important}.desktop\:ext-flex-wrap-reverse{flex-wrap:wrap-reverse!important}.desktop\:ext-flex-nowrap{flex-wrap:nowrap!important}.desktop\:ext-items-start{align-items:flex-start!important}.desktop\:ext-items-end{align-items:flex-end!important}.desktop\:ext-items-center{align-items:center!important}.desktop\:ext-items-baseline{align-items:baseline!important}.desktop\:ext-items-stretch{align-items:stretch!important}.desktop\:ext-justify-start{justify-content:flex-start!important}.desktop\:ext-justify-end{justify-content:flex-end!important}.desktop\:ext-justify-center{justify-content:center!important}.desktop\:ext-justify-between{justify-content:space-between!important}.desktop\:ext-justify-around{justify-content:space-around!important}.desktop\:ext-justify-evenly{justify-content:space-evenly!important}.desktop\:ext-justify-items-start{justify-items:start!important}.desktop\:ext-justify-items-end{justify-items:end!important}.desktop\:ext-justify-items-center{justify-items:center!important}.desktop\:ext-justify-items-stretch{justify-items:stretch!important}.desktop\:ext-justify-self-auto{justify-self:auto!important}.desktop\:ext-justify-self-start{justify-self:start!important}.desktop\:ext-justify-self-end{justify-self:end!important}.desktop\:ext-justify-self-center{justify-self:center!important}.desktop\:ext-justify-self-stretch{justify-self:stretch!important}.desktop\:ext-p-0:not([style*=padding]){padding:0!important}.desktop\:ext-p-base:not([style*=padding]){padding:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-p-lg:not([style*=padding]){padding:var(--extendify--spacing--large)!important}.desktop\:ext-px-0:not([style*=padding]){padding-left:0!important;padding-right:0!important}.desktop\:ext-px-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important;padding-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-px-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important;padding-right:var(--extendify--spacing--large)!important}.desktop\:ext-py-0:not([style*=padding]){padding-bottom:0!important;padding-top:0!important}.desktop\:ext-py-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important;padding-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-py-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important;padding-top:var(--extendify--spacing--large)!important}.desktop\:ext-pt-0:not([style*=padding]){padding-top:0!important}.desktop\:ext-pt-base:not([style*=padding]){padding-top:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pt-lg:not([style*=padding]){padding-top:var(--extendify--spacing--large)!important}.desktop\:ext-pr-0:not([style*=padding]){padding-right:0!important}.desktop\:ext-pr-base:not([style*=padding]){padding-right:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pr-lg:not([style*=padding]){padding-right:var(--extendify--spacing--large)!important}.desktop\:ext-pb-0:not([style*=padding]){padding-bottom:0!important}.desktop\:ext-pb-base:not([style*=padding]){padding-bottom:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pb-lg:not([style*=padding]){padding-bottom:var(--extendify--spacing--large)!important}.desktop\:ext-pl-0:not([style*=padding]){padding-left:0!important}.desktop\:ext-pl-base:not([style*=padding]){padding-left:var(--wp--style--block-gap,2rem)!important}.desktop\:ext-pl-lg:not([style*=padding]){padding-left:var(--extendify--spacing--large)!important}.desktop\:ext-text-left{text-align:left!important}.desktop\:ext-text-center{text-align:center!important}.desktop\:ext-text-right{text-align:right!important}}
|
extendify-sdk/public/build/extendify.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
| 1 |
+
div.extendify .sr-only{clip:rect(0,0,0,0)!important;border-width:0!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}div.extendify .focus\:not-sr-only:focus{clip:auto!important;height:auto!important;margin:0!important;overflow:visible!important;padding:0!important;position:static!important;white-space:normal!important;width:auto!important}div.extendify .pointer-events-none{pointer-events:none!important}div.extendify .invisible{visibility:hidden!important}div.extendify .static{position:static!important}div.extendify .fixed{position:fixed!important}div.extendify .absolute{position:absolute!important}div.extendify .relative{position:relative!important}div.extendify .inset-0{bottom:0!important;left:0!important;right:0!important;top:0!important}div.extendify .top-0{top:0!important}div.extendify .top-2{top:.5rem!important}div.extendify .right-0{right:0!important}div.extendify .right-1{right:.25rem!important}div.extendify .right-2{right:.5rem!important}div.extendify .right-2\.5{right:.625rem!important}div.extendify .bottom-0{bottom:0!important}div.extendify .left-0{left:0!important}div.extendify .z-0{z-index:0!important}div.extendify .z-20{z-index:20!important}div.extendify .z-30{z-index:30!important}div.extendify .z-high{z-index:99999!important}div.extendify .m-0{margin:0!important}div.extendify .m-8{margin:2rem!important}div.extendify .m-auto{margin:auto!important}div.extendify .mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}div.extendify .mx-auto{margin-left:auto!important;margin-right:auto!important}div.extendify .my-0{margin-bottom:0!important;margin-top:0!important}div.extendify .my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}div.extendify .mt-4{margin-top:1rem!important}div.extendify .mt-10{margin-top:2.5rem!important}div.extendify .mt-px{margin-top:1px!important}div.extendify .-mt-2{margin-top:-.5rem!important}div.extendify .mr-1{margin-right:.25rem!important}div.extendify .mb-0{margin-bottom:0!important}div.extendify .mb-1{margin-bottom:.25rem!important}div.extendify .mb-2{margin-bottom:.5rem!important}div.extendify .mb-4{margin-bottom:1rem!important}div.extendify .mb-6{margin-bottom:1.5rem!important}div.extendify .mb-8{margin-bottom:2rem!important}div.extendify .mb-10{margin-bottom:2.5rem!important}div.extendify .ml-2{margin-left:.5rem!important}div.extendify .-ml-1{margin-left:-.25rem!important}div.extendify .-ml-2{margin-left:-.5rem!important}div.extendify .-ml-6{margin-left:-1.5rem!important}div.extendify .-ml-px{margin-left:-1px!important}div.extendify .-ml-1\.5{margin-left:-.375rem!important}div.extendify .block{display:block!important}div.extendify .flex{display:flex!important}div.extendify .table{display:table!important}div.extendify .hidden{display:none!important}div.extendify .h-20{height:5rem!important}div.extendify .h-80{height:20rem!important}div.extendify .h-auto{height:auto!important}div.extendify .h-full{height:100%!important}div.extendify .h-screen{height:100vh!important}div.extendify .max-h-96{max-height:24rem!important}div.extendify .min-h-0{min-height:0!important}div.extendify .min-h-screen{min-height:100vh!important}div.extendify .w-72{width:18rem!important}div.extendify .w-80{width:20rem!important}div.extendify .w-auto{width:auto!important}div.extendify .w-full{width:100%!important}div.extendify .w-screen{width:100vw!important}div.extendify .min-w-sm{min-width:7rem!important}div.extendify .max-w-xs{max-width:20rem!important}div.extendify .max-w-md{max-width:28rem!important}div.extendify .max-w-lg{max-width:32rem!important}div.extendify .max-w-xl{max-width:36rem!important}div.extendify .max-w-full{max-width:100%!important}div.extendify .max-w-screen-4xl{max-width:1920px!important}div.extendify .flex-1{flex:1 1 0%!important}div.extendify .flex-shrink-0{flex-shrink:0!important}div.extendify .flex-grow{flex-grow:1!important}div.extendify .transform{--tw-translate-x:0!important;--tw-translate-y:0!important;--tw-rotate:0!important;--tw-skew-x:0!important;--tw-skew-y:0!important;--tw-scale-x:1!important;--tw-scale-y:1!important;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important}div.extendify .-translate-x-1{--tw-translate-x:-0.25rem!important}div.extendify .translate-y-0{--tw-translate-y:0px!important}div.extendify .translate-y-4{--tw-translate-y:1rem!important}div.extendify .-translate-y-20{--tw-translate-y:-5rem!important}div.extendify .-translate-y-full{--tw-translate-y:-100%!important}div.extendify .rotate-90{--tw-rotate:90deg!important}div.extendify .cursor-pointer{cursor:pointer!important}div.extendify .resize{resize:both!important}div.extendify .flex-col{flex-direction:column!important}div.extendify .items-end{align-items:flex-end!important}div.extendify .items-center{align-items:center!important}div.extendify .items-stretch{align-items:stretch!important}div.extendify .justify-end{justify-content:flex-end!important}div.extendify .justify-center{justify-content:center!important}div.extendify .justify-between{justify-content:space-between!important}div.extendify .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(.25rem*var(--tw-space-x-reverse))!important}div.extendify .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(.5rem*var(--tw-space-x-reverse))!important}div.extendify .space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))!important;margin-right:calc(1rem*var(--tw-space-x-reverse))!important}div.extendify .space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(.5rem*var(--tw-space-y-reverse))!important;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify .space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(1rem*var(--tw-space-y-reverse))!important;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify .space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(2rem*var(--tw-space-y-reverse))!important;margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify .overflow-hidden{overflow:hidden!important}div.extendify .overflow-y-auto{overflow-y:auto!important}div.extendify .whitespace-nowrap{white-space:nowrap!important}div.extendify .rounded-sm{border-radius:.125rem!important}div.extendify .rounded{border-radius:.25rem!important}div.extendify .rounded-md{border-radius:.375rem!important}div.extendify .rounded-tl-sm{border-top-left-radius:.125rem!important}div.extendify .rounded-tr-sm{border-top-right-radius:.125rem!important}div.extendify .rounded-br-sm{border-bottom-right-radius:.125rem!important}div.extendify .rounded-bl-sm{border-bottom-left-radius:.125rem!important}div.extendify .border-0{border-width:0!important}div.extendify .border-2{border-width:2px!important}div.extendify .border{border-width:1px!important}div.extendify .border-r{border-right-width:1px!important}div.extendify .border-b-0{border-bottom-width:0!important}div.extendify .border-b{border-bottom-width:1px!important}div.extendify .border-black{--tw-border-opacity:1!important;border-color:rgba(0,0,0,var(--tw-border-opacity))!important}div.extendify .border-gray-900{--tw-border-opacity:1!important;border-color:rgba(30,30,30,var(--tw-border-opacity))!important}div.extendify .border-extendify-main{--tw-border-opacity:1!important;border-color:rgba(11,74,67,var(--tw-border-opacity))!important}div.extendify .border-extendify-transparent-black-100{border-color:rgba(0,0,0,.07)!important}div.extendify .border-wp-alert-red{--tw-border-opacity:1!important;border-color:rgba(204,24,24,var(--tw-border-opacity))!important}div.extendify .focus\:border-transparent:focus{border-color:transparent!important}div.extendify .bg-transparent{background-color:transparent!important}div.extendify .bg-black{--tw-bg-opacity:1!important;background-color:rgba(0,0,0,var(--tw-bg-opacity))!important}div.extendify .bg-white{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}div.extendify .bg-gray-100{--tw-bg-opacity:1!important;background-color:rgba(240,240,240,var(--tw-bg-opacity))!important}div.extendify .bg-gray-900{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}div.extendify .bg-extendify-main{--tw-bg-opacity:1!important;background-color:rgba(11,74,67,var(--tw-bg-opacity))!important}div.extendify .bg-extendify-alert{--tw-bg-opacity:1!important;background-color:rgba(132,16,16,var(--tw-bg-opacity))!important}div.extendify .bg-extendify-secondary{--tw-bg-opacity:1!important;background-color:rgba(203,195,245,var(--tw-bg-opacity))!important}div.extendify .bg-extendify-transparent-white{background-color:hsla(0,0%,99%,.88)!important}div.extendify .bg-extendify-transparent-black{background-color:rgba(0,0,0,.05)!important}div.extendify .hover\:bg-extendify-main-dark:hover{--tw-bg-opacity:1!important;background-color:rgba(5,49,44,var(--tw-bg-opacity))!important}div.extendify .hover\:bg-extendify-transparent-black-100:hover{background-color:rgba(0,0,0,.07)!important}div.extendify .active\:bg-gray-900:active{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}div.extendify .bg-opacity-40{--tw-bg-opacity:0.4!important}div.extendify .bg-clip-padding{background-clip:padding-box!important}div.extendify .fill-current{fill:currentColor!important}div.extendify .stroke-current{stroke:currentColor!important}div.extendify .p-0{padding:0!important}div.extendify .p-1{padding:.25rem!important}div.extendify .p-2{padding:.5rem!important}div.extendify .p-3{padding:.75rem!important}div.extendify .p-4{padding:1rem!important}div.extendify .p-6{padding:1.5rem!important}div.extendify .p-10{padding:2.5rem!important}div.extendify .p-12{padding:3rem!important}div.extendify .p-1\.5{padding:.375rem!important}div.extendify .p-3\.5{padding:.875rem!important}div.extendify .px-0{padding-left:0!important;padding-right:0!important}div.extendify .px-2{padding-left:.5rem!important;padding-right:.5rem!important}div.extendify .px-3{padding-left:.75rem!important;padding-right:.75rem!important}div.extendify .px-4{padding-left:1rem!important;padding-right:1rem!important}div.extendify .px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}div.extendify .px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}div.extendify .px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}div.extendify .py-0{padding-bottom:0!important;padding-top:0!important}div.extendify .py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}div.extendify .py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}div.extendify .py-3{padding-bottom:.75rem!important;padding-top:.75rem!important}div.extendify .py-4{padding-bottom:1rem!important;padding-top:1rem!important}div.extendify .py-6{padding-bottom:1.5rem!important;padding-top:1.5rem!important}div.extendify .py-2\.5{padding-bottom:.625rem!important;padding-top:.625rem!important}div.extendify .pt-0{padding-top:0!important}div.extendify .pt-2{padding-top:.5rem!important}div.extendify .pt-4{padding-top:1rem!important}div.extendify .pt-6{padding-top:1.5rem!important}div.extendify .pt-px{padding-top:1px!important}div.extendify .pt-0\.5{padding-top:.125rem!important}div.extendify .pr-3{padding-right:.75rem!important}div.extendify .pb-2{padding-bottom:.5rem!important}div.extendify .pb-4{padding-bottom:1rem!important}div.extendify .pb-6{padding-bottom:1.5rem!important}div.extendify .pb-20{padding-bottom:5rem!important}div.extendify .pb-32{padding-bottom:8rem!important}div.extendify .pb-40{padding-bottom:10rem!important}div.extendify .pl-0{padding-left:0!important}div.extendify .pl-2{padding-left:.5rem!important}div.extendify .pl-6{padding-left:1.5rem!important}div.extendify .pl-8{padding-left:2rem!important}div.extendify .text-left{text-align:left!important}div.extendify .text-center{text-align:center!important}div.extendify .text-xs{font-size:.75rem!important;line-height:1rem!important}div.extendify .text-sm{font-size:.875rem!important;line-height:1.25rem!important}div.extendify .text-base{font-size:1rem!important;line-height:1.5rem!important}div.extendify .text-lg{font-size:1.125rem!important;line-height:1.75rem!important}div.extendify .text-xl{font-size:1.25rem!important;line-height:1.75rem!important}div.extendify .text-xss{font-size:11px!important}div.extendify .font-light{font-weight:300!important}div.extendify .font-normal{font-weight:400!important}div.extendify .font-medium{font-weight:500!important}div.extendify .font-semibold{font-weight:600!important}div.extendify .font-bold{font-weight:700!important}div.extendify .uppercase{text-transform:uppercase!important}div.extendify .leading-none{line-height:1!important}div.extendify .leading-extra-tight{line-height:.5!important}div.extendify .text-black{--tw-text-opacity:1!important;color:rgba(0,0,0,var(--tw-text-opacity))!important}div.extendify .text-white{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify .text-gray-700{--tw-text-opacity:1!important;color:rgba(117,117,117,var(--tw-text-opacity))!important}div.extendify .text-gray-800{--tw-text-opacity:1!important;color:rgba(31,41,55,var(--tw-text-opacity))!important}div.extendify .text-gray-900{--tw-text-opacity:1!important;color:rgba(30,30,30,var(--tw-text-opacity))!important}div.extendify .text-extendify-main{--tw-text-opacity:1!important;color:rgba(11,74,67,var(--tw-text-opacity))!important}div.extendify .text-extendify-gray{--tw-text-opacity:1!important;color:rgba(95,95,95,var(--tw-text-opacity))!important}div.extendify .text-extendify-black{--tw-text-opacity:1!important;color:rgba(30,30,30,var(--tw-text-opacity))!important}div.extendify .text-wp-theme-500{color:var(--wp-admin-theme-color)!important}div.extendify .text-wp-alert-red{--tw-text-opacity:1!important;color:rgba(204,24,24,var(--tw-text-opacity))!important}div.extendify .hover\:text-white:hover{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify .hover\:text-wp-theme-500:hover{color:var(--wp-admin-theme-color)!important}div.extendify .focus\:text-white:focus{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify .focus\:text-blue-500:focus{--tw-text-opacity:1!important;color:rgba(59,130,246,var(--tw-text-opacity))!important}div.extendify .active\:text-white:active{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}div.extendify .underline{text-decoration:underline!important}div.extendify .hover\:no-underline:hover,div.extendify .no-underline{text-decoration:none!important}div.extendify .opacity-0{opacity:0!important}div.extendify .opacity-30{opacity:.3!important}div.extendify .opacity-50{opacity:.5!important}div.extendify .opacity-75{opacity:.75!important}div.extendify .opacity-100{opacity:1!important}div.extendify .group:hover .group-hover\:opacity-90{opacity:.9!important}div.extendify .focus\:opacity-100:focus,div.extendify .hover\:opacity-100:hover{opacity:1!important}div.extendify .shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)!important}div.extendify .shadow-md,div.extendify .shadow-modal{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}div.extendify .shadow-modal{--tw-shadow: 0 0 0 1px rgba(0,0,0,.1),0 3px 15px -3px rgba(0,0,0,.035),0 0 1px rgba(0,0,0,.05)!important}div.extendify .focus\:outline-none:focus,div.extendify .outline-none{outline:2px solid transparent!important;outline-offset:2px!important}div.extendify .focus\:ring-wp:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}div.extendify .focus\:ring-wp-theme-500:focus{--tw-ring-color:var(--wp-admin-theme-color)!important}div.extendify .filter{--tw-blur:var(--tw-empty,/*!*/ /*!*/)!important;--tw-brightness:var(--tw-empty,/*!*/ /*!*/)!important;--tw-contrast:var(--tw-empty,/*!*/ /*!*/)!important;--tw-grayscale:var(--tw-empty,/*!*/ /*!*/)!important;--tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-invert:var(--tw-empty,/*!*/ /*!*/)!important;--tw-saturate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-sepia:var(--tw-empty,/*!*/ /*!*/)!important;--tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/)!important;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}div.extendify .backdrop-filter{--tw-backdrop-blur:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-brightness:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-contrast:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-grayscale:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-hue-rotate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-invert:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-opacity:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-saturate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-backdrop-sepia:var(--tw-empty,/*!*/ /*!*/)!important;-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important;backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)!important}div.extendify .backdrop-blur-xl{--tw-backdrop-blur:blur(24px)!important}div.extendify .backdrop-saturate-200{--tw-backdrop-saturate:saturate(2)!important}div.extendify .transition-all{transition-duration:.15s!important;transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify .transition{transition-duration:.15s!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify .transition-opacity{transition-duration:.15s!important;transition-property:opacity!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}div.extendify .duration-200{transition-duration:.2s!important}div.extendify .duration-300{transition-duration:.3s!important}div.extendify .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}div.extendify .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.extendify{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/)!important;--tw-ring-offset-width:0px!important;--tw-ring-offset-color:transparent!important;--tw-ring-color:var(--wp-admin-theme-color)!important}.extendify *,.extendify :after,.extendify :before{border:0 solid #e5e7eb!important;box-sizing:border-box!important}.extendify .button-focus:focus{--tw-shadow:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify .button-focus{outline:2px solid transparent!important;outline-offset:2px!important}.extendify .button-focus:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;--tw-ring-color:var(--wp-admin-theme-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.button-extendify-main{--tw-bg-opacity:1!important;background-color:rgba(11,74,67,var(--tw-bg-opacity))!important;cursor:pointer!important;white-space:nowrap!important}.button-extendify-main:hover{--tw-bg-opacity:1!important;background-color:rgba(5,49,44,var(--tw-bg-opacity))!important}.button-extendify-main:active{--tw-bg-opacity:1!important;background-color:rgba(30,30,30,var(--tw-bg-opacity))!important}.button-extendify-main{padding:.375rem .75rem!important}.button-extendify-main,.button-extendify-main:active,.button-extendify-main:focus,.button-extendify-main:hover{--tw-text-opacity:1!important;color:rgba(255,255,255,var(--tw-text-opacity))!important}.button-extendify-main{text-decoration:none!important;transition-duration:.15s!important;transition-duration:.2s!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.extendify .button-extendify-main:focus{--tw-shadow:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify .button-extendify-main{outline:2px solid transparent!important;outline-offset:2px!important}.extendify .button-extendify-main:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--wp-admin-border-width-focus) + var(--tw-ring-offset-width)) var(--tw-ring-color)!important;--tw-ring-color:var(--wp-admin-theme-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important}.extendify input.button-extendify-main:focus,.extendify input.button-focus:focus,.extendify select.button-extendify-main:focus,.extendify select.button-focus:focus{--tw-shadow:0 0 #0000!important;border-color:transparent!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important;outline:2px solid transparent!important;outline-offset:2px!important}#extendify-search-input:not(:-moz-placeholder-shown)~svg{display:none!important}#extendify-search-input:not(:-ms-input-placeholder)~svg{display:none!important}#extendify-search-input:focus~svg,#extendify-search-input:not(:placeholder-shown)~svg{display:none!important}#extendify-search-input::-webkit-textfield-decoration-container{margin-right:.75rem!important}.extendify .components-panel__body>.components-panel__body-title{background-color:transparent!important;border-bottom:1px solid #e0e0e0!important}.extendify .components-modal__header{--tw-border-opacity:1!important;border-bottom-width:1px!important;border-color:rgba(221,221,221,var(--tw-border-opacity))!important}.block-editor-block-preview__content .block-editor-block-list__layout.is-root-container>.ext{max-width:none!important}.block-editor-block-list__layout.is-root-container .ext.block-editor-block-list__block{max-width:100%!important}.extendify .block-editor-block-preview__container{-webkit-animation:extendifyOpacityIn .2s cubic-bezier(.694,0,.335,1) 0ms forwards;animation:extendifyOpacityIn .2s cubic-bezier(.694,0,.335,1) 0ms forwards;opacity:0}.extendify .is-root-container>[data-align=full],.extendify .is-root-container>[data-align=full]>.wp-block,.extendify .is-root-container>[data-block]{margin-bottom:0!important;margin-top:0!important}.editor-styles-wrapper:not(.block-editor-writing-flow)>.is-root-container :where(.wp-block)[data-align=full]{margin-bottom:0!important;margin-top:0!important}@-webkit-keyframes extendifyOpacityIn{0%{opacity:0}to{opacity:1}}@keyframes extendifyOpacityIn{0%{opacity:0}to{opacity:1}}.extendify .with-light-shadow:after{--tw-shadow:inset 0 0 0 1px rgba(0,0,0,.1),0 3px 15px -3px rgba(0,0,0,.025),0 0 1px rgba(0,0,0,.02)!important;border-width:0!important;bottom:0!important;content:""!important;left:0!important;position:absolute!important;right:0!important;top:0!important}.extendify .with-light-shadow:after,.extendify .with-light-shadow:hover:after{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.extendify .with-light-shadow:hover:after{--tw-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 3px 15px -3px rgba(0,0,0,.025),0 0 1px rgba(0,0,0,.02)!important}.components-panel__body.ext-type-control .components-panel__body-toggle{padding-left:0!important;padding-right:0!important}.components-panel__body.ext-type-control .components-panel__body-title{border-bottom-width:0!important;margin:0!important;padding-left:1.25rem!important;padding-right:1.25rem!important}.components-panel__body.ext-type-control .components-panel__body-title .components-button{--tw-text-opacity:1!important;border-bottom-width:0!important;color:rgba(95,95,95,var(--tw-text-opacity))!important;font-size:11px!important;font-weight:500!important;margin:0!important;padding-bottom:.5rem!important;padding-top:.5rem!important;text-transform:uppercase!important}.components-panel__body.ext-type-control .components-button .components-panel__arrow{--tw-text-opacity:1!important;color:rgba(95,95,95,var(--tw-text-opacity))!important;right:0!important}.extendify .animate-pulse{-webkit-animation:extendifyPulse 3s cubic-bezier(.4,0,.6,1) infinite;animation:extendifyPulse 3s cubic-bezier(.4,0,.6,1) infinite}@-webkit-keyframes extendifyPulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes extendifyPulse{0%,to{opacity:1}50%{opacity:.5}}@media (min-width:600px){div.extendify .sm\:mx-0{margin-left:0!important;margin-right:0!important}div.extendify .sm\:mt-0{margin-top:0!important}div.extendify .sm\:mb-8{margin-bottom:2rem!important}div.extendify .sm\:block{display:block!important}div.extendify .sm\:flex{display:flex!important}div.extendify .sm\:h-auto{height:auto!important}div.extendify .sm\:w-64{width:16rem!important}div.extendify .sm\:w-auto{width:auto!important}div.extendify .sm\:translate-y-5{--tw-translate-y:1.25rem!important}div.extendify .sm\:space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))!important;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))!important}div.extendify .sm\:p-0{padding:0!important}div.extendify .sm\:py-0{padding-bottom:0!important;padding-top:0!important}div.extendify .sm\:py-5{padding-bottom:1.25rem!important;padding-top:1.25rem!important}div.extendify .sm\:pt-0{padding-top:0!important}}@media (min-width:782px){div.extendify .md\:m-0{margin:0!important}div.extendify .md\:mb-8{margin-bottom:2rem!important}div.extendify .md\:-ml-8{margin-left:-2rem!important}div.extendify .md\:block{display:block!important}div.extendify .md\:flex{display:flex!important}div.extendify .md\:w-6\/12{width:50%!important}div.extendify .md\:w-7\/12{width:58.333333%!important}div.extendify .md\:max-w-2xl{max-width:42rem!important}div.extendify .md\:rounded-l-md{border-bottom-left-radius:.375rem!important;border-top-left-radius:.375rem!important}div.extendify .md\:rounded-tr-none{border-top-right-radius:0!important}div.extendify .md\:px-8{padding-right:2rem!important}div.extendify .md\:pl-8,div.extendify .md\:px-8{padding-left:2rem!important}div.extendify .md\:leading-3{line-height:.75rem!important}}@media (min-width:1080px){div.extendify .lg\:absolute{position:absolute!important}di
|
