From 17fbf3abe27a0f8e19d8ba0279c81b4b0e4bb948 Mon Sep 17 00:00:00 2001 From: Nikurasu Date: Thu, 9 Dec 2021 09:10:43 +0100 Subject: [PATCH] FIX: cleaned folder structure --- .gitignore | 16 + src/.env.example | 52 + src/.styleci.yml | 14 + src/README.md | 66 + src/app/Console/Kernel.php | 32 + src/app/Exceptions/Handler.php | 41 + src/app/Http/Controllers/Controller.php | 13 + .../Controllers/SocialTreePageController.php | 35 + src/app/Http/Kernel.php | 67 + src/app/Http/Middleware/Authenticate.php | 21 + src/app/Http/Middleware/EncryptCookies.php | 17 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 32 + src/app/Http/Middleware/TrimStrings.php | 19 + src/app/Http/Middleware/TrustHosts.php | 20 + src/app/Http/Middleware/TrustProxies.php | 28 + src/app/Http/Middleware/VerifyCsrfToken.php | 17 + src/app/Models/User.php | 44 + src/app/Models/links.php | 27 + src/app/Models/userdata.php | 11 + src/app/Providers/AppServiceProvider.php | 28 + src/app/Providers/AuthServiceProvider.php | 30 + .../Providers/BroadcastServiceProvider.php | 21 + src/app/Providers/EventServiceProvider.php | 32 + src/app/Providers/RouteServiceProvider.php | 63 + .../Services/SocialTreePageDataProvider.php | 16 + src/app/Services/SocialTreePageService.php | 19 + src/artisan | 53 + src/bootstrap/app.php | 55 + src/bootstrap/cache/.gitignore | 2 + src/composer.json | 63 + src/composer.lock | 8032 +++++++ src/config/app.php | 234 + src/config/auth.php | 111 + src/config/broadcasting.php | 64 + src/config/cache.php | 110 + src/config/cors.php | 34 + src/config/database.php | 147 + src/config/filesystems.php | 73 + src/config/hashing.php | 52 + src/config/logging.php | 118 + src/config/mail.php | 118 + src/config/queue.php | 93 + src/config/sanctum.php | 65 + src/config/services.php | 33 + src/config/session.php | 201 + src/config/view.php | 36 + src/database/.gitignore | 1 + src/database/factories/UserFactory.php | 39 + .../2014_10_12_000000_create_users_table.php | 36 + ...12_100000_create_password_resets_table.php | 32 + ..._08_19_000000_create_failed_jobs_table.php | 36 + ...01_create_personal_access_tokens_table.php | 36 + .../2021_11_30_091208_create_links_table.php | 35 + ...21_12_01_110933_create_userdatas_table.php | 33 + src/database/seeders/DatabaseSeeder.php | 18 + src/package-lock.json | 16964 +++++++++++++ src/package.json | 26 + src/phpunit.xml | 31 + src/public/.htaccess | 21 + src/public/css/app.css | 265 + src/public/favicon.ico | 0 src/public/fonts/JetBrainsMono-Bold.woff2 | Bin 0 -> 71180 bytes src/public/fonts/JetBrainsMono-SemiBold.woff2 | Bin 0 -> 70820 bytes src/public/img/download20210506213644.png | Bin 0 -> 333964 bytes src/public/index.php | 55 + src/public/js/app.js | 19694 ++++++++++++++++ src/public/mix-manifest.json | 4 + src/public/robots.txt | 2 + src/public/web.config | 28 + src/resources/css/app.scss | 129 + src/resources/js/app.js | 1 + src/resources/js/bootstrap.js | 28 + src/resources/lang/en/auth.php | 20 + src/resources/lang/en/pagination.php | 19 + src/resources/lang/en/passwords.php | 22 + src/resources/lang/en/validation.php | 160 + src/resources/socialtree.sqlite | Bin 0 -> 57344 bytes src/resources/views/app.blade.php | 16 + src/resources/views/linkpage.blade.php | 16 + src/routes/api.php | 19 + src/routes/channels.php | 18 + src/routes/console.php | 19 + src/routes/web.php | 19 + src/server.php | 21 + src/storage/app/.gitignore | 3 + src/storage/app/public/.gitignore | 2 + src/storage/framework/.gitignore | 9 + src/storage/framework/cache/.gitignore | 3 + src/storage/framework/cache/data/.gitignore | 2 + src/storage/framework/sessions/.gitignore | 2 + src/storage/framework/testing/.gitignore | 2 + src/storage/framework/views/.gitignore | 2 + src/storage/logs/.gitignore | 2 + src/tests/CreatesApplication.php | 22 + src/tests/Feature/ExampleTest.php | 21 + src/tests/TestCase.php | 10 + src/tests/Unit/ExampleTest.php | 18 + src/webpack.mix.js | 15 + 99 files changed, 48468 insertions(+) create mode 100644 .gitignore create mode 100644 src/.env.example create mode 100644 src/.styleci.yml create mode 100644 src/README.md create mode 100644 src/app/Console/Kernel.php create mode 100644 src/app/Exceptions/Handler.php create mode 100644 src/app/Http/Controllers/Controller.php create mode 100644 src/app/Http/Controllers/SocialTreePageController.php create mode 100644 src/app/Http/Kernel.php create mode 100644 src/app/Http/Middleware/Authenticate.php create mode 100644 src/app/Http/Middleware/EncryptCookies.php create mode 100644 src/app/Http/Middleware/PreventRequestsDuringMaintenance.php create mode 100644 src/app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 src/app/Http/Middleware/TrimStrings.php create mode 100644 src/app/Http/Middleware/TrustHosts.php create mode 100644 src/app/Http/Middleware/TrustProxies.php create mode 100644 src/app/Http/Middleware/VerifyCsrfToken.php create mode 100644 src/app/Models/User.php create mode 100644 src/app/Models/links.php create mode 100644 src/app/Models/userdata.php create mode 100644 src/app/Providers/AppServiceProvider.php create mode 100644 src/app/Providers/AuthServiceProvider.php create mode 100644 src/app/Providers/BroadcastServiceProvider.php create mode 100644 src/app/Providers/EventServiceProvider.php create mode 100644 src/app/Providers/RouteServiceProvider.php create mode 100644 src/app/Services/SocialTreePageDataProvider.php create mode 100644 src/app/Services/SocialTreePageService.php create mode 100755 src/artisan create mode 100644 src/bootstrap/app.php create mode 100644 src/bootstrap/cache/.gitignore create mode 100644 src/composer.json create mode 100644 src/composer.lock create mode 100644 src/config/app.php create mode 100644 src/config/auth.php create mode 100644 src/config/broadcasting.php create mode 100644 src/config/cache.php create mode 100644 src/config/cors.php create mode 100644 src/config/database.php create mode 100644 src/config/filesystems.php create mode 100644 src/config/hashing.php create mode 100644 src/config/logging.php create mode 100644 src/config/mail.php create mode 100644 src/config/queue.php create mode 100644 src/config/sanctum.php create mode 100644 src/config/services.php create mode 100644 src/config/session.php create mode 100644 src/config/view.php create mode 100644 src/database/.gitignore create mode 100644 src/database/factories/UserFactory.php create mode 100644 src/database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 src/database/migrations/2014_10_12_100000_create_password_resets_table.php create mode 100644 src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php create mode 100644 src/database/migrations/2021_11_30_091208_create_links_table.php create mode 100644 src/database/migrations/2021_12_01_110933_create_userdatas_table.php create mode 100644 src/database/seeders/DatabaseSeeder.php create mode 100644 src/package-lock.json create mode 100644 src/package.json create mode 100644 src/phpunit.xml create mode 100644 src/public/.htaccess create mode 100644 src/public/css/app.css create mode 100644 src/public/favicon.ico create mode 100644 src/public/fonts/JetBrainsMono-Bold.woff2 create mode 100644 src/public/fonts/JetBrainsMono-SemiBold.woff2 create mode 100644 src/public/img/download20210506213644.png create mode 100644 src/public/index.php create mode 100644 src/public/js/app.js create mode 100644 src/public/mix-manifest.json create mode 100644 src/public/robots.txt create mode 100644 src/public/web.config create mode 100644 src/resources/css/app.scss create mode 100644 src/resources/js/app.js create mode 100644 src/resources/js/bootstrap.js create mode 100644 src/resources/lang/en/auth.php create mode 100644 src/resources/lang/en/pagination.php create mode 100644 src/resources/lang/en/passwords.php create mode 100644 src/resources/lang/en/validation.php create mode 100644 src/resources/socialtree.sqlite create mode 100644 src/resources/views/app.blade.php create mode 100644 src/resources/views/linkpage.blade.php create mode 100644 src/routes/api.php create mode 100644 src/routes/channels.php create mode 100644 src/routes/console.php create mode 100644 src/routes/web.php create mode 100644 src/server.php create mode 100644 src/storage/app/.gitignore create mode 100644 src/storage/app/public/.gitignore create mode 100644 src/storage/framework/.gitignore create mode 100644 src/storage/framework/cache/.gitignore create mode 100644 src/storage/framework/cache/data/.gitignore create mode 100644 src/storage/framework/sessions/.gitignore create mode 100644 src/storage/framework/testing/.gitignore create mode 100644 src/storage/framework/views/.gitignore create mode 100644 src/storage/logs/.gitignore create mode 100644 src/tests/CreatesApplication.php create mode 100644 src/tests/Feature/ExampleTest.php create mode 100644 src/tests/TestCase.php create mode 100644 src/tests/Unit/ExampleTest.php create mode 100644 src/webpack.mix.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2fe35e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +/node_modules +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.phpunit.result.cache +docker-compose.override.yml +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log +/.idea +/.vscode +.editorconfig diff --git a/src/.env.example b/src/.env.example new file mode 100644 index 0000000..f250ad0 --- /dev/null +++ b/src/.env.example @@ -0,0 +1,52 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=social_tree +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DRIVER=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailhog +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS=null +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_APP_CLUSTER=mt1 + +MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/src/.styleci.yml b/src/.styleci.yml new file mode 100644 index 0000000..877ea70 --- /dev/null +++ b/src/.styleci.yml @@ -0,0 +1,14 @@ +php: + preset: laravel + version: 8 + disabled: + - no_unused_imports + finder: + not-name: + - index.php + - server.php +js: + finder: + not-name: + - webpack.mix.js +css: true diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..8878ec1 --- /dev/null +++ b/src/README.md @@ -0,0 +1,66 @@ +

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Cubet Techno Labs](https://cubettech.com)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[Many](https://www.many.co.uk)** +- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** +- **[DevSquad](https://devsquad.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[OP.GG](https://op.gg)** +- **[CMS Max](https://www.cmsmax.com/)** +- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** +- **[Lendio](https://lendio.com)** +- **[Romega Software](https://romegasoftware.com)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/src/app/Console/Kernel.php b/src/app/Console/Kernel.php new file mode 100644 index 0000000..d8bc1d2 --- /dev/null +++ b/src/app/Console/Kernel.php @@ -0,0 +1,32 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/src/app/Exceptions/Handler.php b/src/app/Exceptions/Handler.php new file mode 100644 index 0000000..3ca4b34 --- /dev/null +++ b/src/app/Exceptions/Handler.php @@ -0,0 +1,41 @@ +reportable(function (Throwable $e) { + // + }); + } +} diff --git a/src/app/Http/Controllers/Controller.php b/src/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..a0a2a8a --- /dev/null +++ b/src/app/Http/Controllers/Controller.php @@ -0,0 +1,13 @@ +socialTreePageService = new SocialTreePageService(); + } + + public function index(): view + { + + $username = "Nikurasu"; + $links = [ + ["id" => 1, "platform" => "YouTube", "link" => "https://youtube.com/test", "linktext" => "YouTube", "brandcolors" => true], + ["id" => 2, "platform" => "Twitter", "link" => "https://twitter.com/test", "linktext" => "Twitter", "brandcolors" => false], + ["id" => 3, "platform" => "LinkedIn", "link" => "https://linkedIn.com/test", "linktext" => "LinkedIn", "brandcolors" => true], + ]; + $links = $this->socialTreePageService->getLinks(); + return view('app',[ + 'title' => 'Nikurasus LinkTree', + 'username' => $username, + 'links' => $links, + 'content' => 'linkpage' + ]); + } +} diff --git a/src/app/Http/Kernel.php b/src/app/Http/Kernel.php new file mode 100644 index 0000000..39910d7 --- /dev/null +++ b/src/app/Http/Kernel.php @@ -0,0 +1,67 @@ + [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + // \Illuminate\Session\Middleware\AuthenticateSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + 'throttle:api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's route middleware. + * + * These middleware may be assigned to groups or used individually. + * + * @var array + */ + protected $routeMiddleware = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + ]; +} diff --git a/src/app/Http/Middleware/Authenticate.php b/src/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..704089a --- /dev/null +++ b/src/app/Http/Middleware/Authenticate.php @@ -0,0 +1,21 @@ +expectsJson()) { + return route('login'); + } + } +} diff --git a/src/app/Http/Middleware/EncryptCookies.php b/src/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..033136a --- /dev/null +++ b/src/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/src/app/Http/Middleware/TrimStrings.php b/src/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..a8a252d --- /dev/null +++ b/src/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ +allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/src/app/Http/Middleware/TrustProxies.php b/src/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..0c7d3b6 --- /dev/null +++ b/src/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ + 'datetime', + ]; +} diff --git a/src/app/Models/links.php b/src/app/Models/links.php new file mode 100644 index 0000000..1cc95b1 --- /dev/null +++ b/src/app/Models/links.php @@ -0,0 +1,27 @@ + null, + 'link' => 'null' + ]; +} diff --git a/src/app/Models/userdata.php b/src/app/Models/userdata.php new file mode 100644 index 0000000..ed1b1f5 --- /dev/null +++ b/src/app/Models/userdata.php @@ -0,0 +1,11 @@ + 'App\Policies\ModelPolicy', + ]; + + /** + * Register any authentication / authorization services. + * + * @return void + */ + public function boot() + { + $this->registerPolicies(); + + // + } +} diff --git a/src/app/Providers/BroadcastServiceProvider.php b/src/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..395c518 --- /dev/null +++ b/src/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,21 @@ + [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + * + * @return void + */ + public function boot() + { + // + } +} diff --git a/src/app/Providers/RouteServiceProvider.php b/src/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..3bd3c81 --- /dev/null +++ b/src/app/Providers/RouteServiceProvider.php @@ -0,0 +1,63 @@ +configureRateLimiting(); + + $this->routes(function () { + Route::prefix('api') + ->middleware('api') + ->namespace($this->namespace) + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->namespace($this->namespace) + ->group(base_path('routes/web.php')); + }); + } + + /** + * Configure the rate limiters for the application. + * + * @return void + */ + protected function configureRateLimiting() + { + RateLimiter::for('api', function (Request $request) { + return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip()); + }); + } +} diff --git a/src/app/Services/SocialTreePageDataProvider.php b/src/app/Services/SocialTreePageDataProvider.php new file mode 100644 index 0000000..7e4904b --- /dev/null +++ b/src/app/Services/SocialTreePageDataProvider.php @@ -0,0 +1,16 @@ +toArray(); + } +} diff --git a/src/app/Services/SocialTreePageService.php b/src/app/Services/SocialTreePageService.php new file mode 100644 index 0000000..9e63f4c --- /dev/null +++ b/src/app/Services/SocialTreePageService.php @@ -0,0 +1,19 @@ +socialTreePageDataProvider = new SocialTreePageDataProvider(); + } + + public function getLinks(): array + { + return $this->socialTreePageDataProvider->getLinks(); + } + +} diff --git a/src/artisan b/src/artisan new file mode 100755 index 0000000..67a3329 --- /dev/null +++ b/src/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/src/bootstrap/app.php b/src/bootstrap/app.php new file mode 100644 index 0000000..037e17d --- /dev/null +++ b/src/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/src/bootstrap/cache/.gitignore b/src/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/src/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/src/composer.json b/src/composer.json new file mode 100644 index 0000000..58c6078 --- /dev/null +++ b/src/composer.json @@ -0,0 +1,63 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The Laravel Framework.", + "keywords": ["framework", "laravel"], + "license": "MIT", + "require": { + "php": "^7.3|^8.0", + "fruitcake/laravel-cors": "^2.0", + "guzzlehttp/guzzle": "^7.0.1", + "laravel/framework": "^8.65", + "laravel/sanctum": "^2.11", + "laravel/tinker": "^2.5", + "ext-json": "*" + }, + "require-dev": { + "facade/ignition": "^2.5", + "fakerphp/faker": "^1.9.1", + "laravel/sail": "^1.0.1", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^5.10", + "phpunit/phpunit": "^9.5.10" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/src/composer.lock b/src/composer.lock new file mode 100644 index 0000000..c7f8269 --- /dev/null +++ b/src/composer.lock @@ -0,0 +1,8032 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "3b0119ae7ab26f9c33a79509e66e21a4", + "packages": [ + { + "name": "asm89/stack-cors", + "version": "v2.0.3", + "source": { + "type": "git", + "url": "https://github.com/asm89/stack-cors.git", + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714", + "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714", + "shasum": "" + }, + "require": { + "php": "^7.0|^8.0", + "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" + }, + "require-dev": { + "phpunit/phpunit": "^6|^7|^8|^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "Asm89\\Stack\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cross-origin resource sharing library and stack middleware", + "homepage": "https://github.com/asm89/stack-cors", + "keywords": [ + "cors", + "stack" + ], + "support": { + "issues": "https://github.com/asm89/stack-cors/issues", + "source": "https://github.com/asm89/stack-cors/tree/v2.0.3" + }, + "time": "2021-03-11T06:42:03+00:00" + }, + { + "name": "brick/math", + "version": "0.9.3", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae", + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0", + "vimeo/psalm": "4.9.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "brick", + "math" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.9.3" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/brick/math", + "type": "tidelift" + } + ], + "time": "2021-08-15T20:50:18+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.1", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "0992cc19268b259a39e86f296da5f0677841f42c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c", + "reference": "0992cc19268b259a39e86f296da5f0677841f42c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^3.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1" + }, + "time": "2021-08-13T13:06:58+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", + "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^8.2", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "vimeo/psalm": "^4.10" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2021-10-22T20:16:43+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", + "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.7.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-webmozart-assert": "^0.12.7", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2020-11-24T19:55:57+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.25", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.10" + }, + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2020-12-29T14:50:06+00:00" + }, + { + "name": "fruitcake/laravel-cors", + "version": "v2.0.4", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/laravel-cors.git", + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a", + "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "^2.0.1", + "illuminate/contracts": "^6|^7|^8|^9", + "illuminate/support": "^6|^7|^8|^9", + "php": ">=7.2", + "symfony/http-foundation": "^4|^5", + "symfony/http-kernel": "^4.3.4|^5" + }, + "require-dev": { + "laravel/framework": "^6|^7|^8", + "orchestra/testbench-dusk": "^4|^5|^6|^7", + "phpunit/phpunit": "^6|^7|^8|^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + }, + "laravel": { + "providers": [ + "Fruitcake\\Cors\\CorsServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application", + "keywords": [ + "api", + "cors", + "crossdomain", + "laravel" + ], + "support": { + "issues": "https://github.com/fruitcake/laravel-cors/issues", + "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4" + }, + "funding": [ + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2021-04-26T11:24:25+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.0.4", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "0690bde05318336c7221785f2a932467f98b64ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca", + "reference": "0690bde05318336c7221785f2a932467f98b64ca", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "phpoption/phpoption": "^1.8" + }, + "require-dev": { + "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2021-11-21T21:41:47+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.4.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/868b3571a039f0ebc11ac8f344f4080babe2cb94", + "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5", + "guzzlehttp/psr7": "^1.8.3 || ^2.1", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-curl": "*", + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.5.5 || ^9.3.5", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.4.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2021-10-18T09:52:00+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "1.5.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "symfony/phpunit-bridge": "^4.4 || ^5.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.5-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.5.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2021-10-22T20:56:57+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72", + "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2021-10-06T17:43:30+00:00" + }, + { + "name": "laravel/framework", + "version": "v8.73.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "0e1c63315eeaee5920552ff042bd820bb4014533" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/0e1c63315eeaee5920552ff042bd820bb4014533", + "reference": "0e1c63315eeaee5920552ff042bd820bb4014533", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.4|^2.0", + "dragonmantank/cron-expression": "^3.0.2", + "egulias/email-validator": "^2.1.10", + "ext-json": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "laravel/serializable-closure": "^1.0", + "league/commonmark": "^1.3|^2.0.2", + "league/flysystem": "^1.1", + "monolog/monolog": "^2.0", + "nesbot/carbon": "^2.53.1", + "opis/closure": "^3.6", + "php": "^7.3|^8.0", + "psr/container": "^1.0", + "psr/log": "^1.0 || ^2.0", + "psr/simple-cache": "^1.0", + "ramsey/uuid": "^4.2.2", + "swiftmailer/swiftmailer": "^6.3", + "symfony/console": "^5.1.4", + "symfony/error-handler": "^5.1.4", + "symfony/finder": "^5.1.4", + "symfony/http-foundation": "^5.1.4", + "symfony/http-kernel": "^5.1.4", + "symfony/mime": "^5.1.4", + "symfony/process": "^5.1.4", + "symfony/routing": "^5.1.4", + "symfony/var-dumper": "^5.1.4", + "tijsverkoyen/css-to-inline-styles": "^2.2.2", + "vlucas/phpdotenv": "^5.2", + "voku/portable-ascii": "^1.4.8" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.198.1", + "doctrine/dbal": "^2.13.3|^3.1.4", + "filp/whoops": "^2.14.3", + "guzzlehttp/guzzle": "^6.5.5|^7.0.1", + "league/flysystem-cached-adapter": "^1.0", + "mockery/mockery": "^1.4.4", + "orchestra/testbench-core": "^6.27", + "pda/pheanstalk": "^4.0", + "phpunit/phpunit": "^8.5.19|^9.5.8", + "predis/predis": "^1.1.9", + "symfony/cache": "^5.1.4" + }, + "suggest": { + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", + "ext-bcmath": "Required to use the multiple_of validation rule.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", + "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", + "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", + "mockery/mockery": "Required to use mocking (^1.4.4).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).", + "predis/predis": "Required to use the predis connector (^1.1.9).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", + "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2021-11-23T14:27:43+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v2.12.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "76b2d552c00477d520338889160f80a0cfb5fc55" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/76b2d552c00477d520338889160f80a0cfb5fc55", + "reference": "76b2d552c00477d520338889160f80a0cfb5fc55", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/contracts": "^6.9|^7.0|^8.0", + "illuminate/database": "^6.9|^7.0|^8.0", + "illuminate/support": "^6.9|^7.0|^8.0", + "php": "^7.2|^8.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^4.0|^5.0|^6.0", + "phpunit/phpunit": "^8.0|^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2021-11-16T16:57:07+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.0.4", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "8148e72e6c2c3af7f05640ada1b26c3bca970f8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/8148e72e6c2c3af7f05640ada1b26c3bca970f8d", + "reference": "8148e72e6c2c3af7f05640ada1b26c3bca970f8d", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "pestphp/pest": "^1.18", + "phpstan/phpstan": "^0.12.98", + "symfony/var-dumper": "^5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2021-11-16T17:01:57+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.6.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc", + "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0", + "illuminate/contracts": "^6.0|^7.0|^8.0", + "illuminate/support": "^6.0|^7.0|^8.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.10.4", + "symfony/var-dumper": "^4.3.4|^5.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.6.2" + }, + "time": "2021-09-28T15:47:34+00:00" + }, + { + "name": "league/commonmark", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "2df87709f44b0dd733df86aef0830dce9b1f0f13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2df87709f44b0dd733df86aef0830dce9b1f0f13", + "reference": "2df87709f44b0dd733df86aef0830dce9b1f0f13", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/polyfill-php80": "^1.15" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4", + "phpstan/phpstan": "^0.12.88", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark", + "type": "custom" + }, + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://www.patreon.com/colinodell", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2021-08-14T14:06:04+00:00" + }, + { + "name": "league/config", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.90", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2021-08-14T12:15:32+00:00" + }, + { + "name": "league/flysystem", + "version": "1.1.8", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c995bb0c23c58c9813d081f9523c9b7bb496698e", + "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" + }, + "suggest": { + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", + "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", + "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", + "files", + "filesystem", + "filesystems", + "ftp", + "rackspace", + "remote", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.1.8" + }, + "funding": [ + { + "url": "https://offset.earth/frankdejonge", + "type": "other" + } + ], + "time": "2021-11-28T21:50:23+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.9.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69", + "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2021-11-21T11:48:40+00:00" + }, + { + "name": "monolog/monolog", + "version": "2.3.5", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "fd4380d6fc37626e2f799f29d91195040137eba9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9", + "reference": "fd4380d6fc37626e2f799f29d91195040137eba9", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7", + "graylog2/gelf-php": "^1.4.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.3", + "phpspec/prophecy": "^1.6.1", + "phpstan/phpstan": "^0.12.91", + "phpunit/phpunit": "^8.5", + "predis/predis": "^1.1", + "rollbar/rollbar": "^1.3", + "ruflin/elastica": ">=0.90@dev", + "swiftmailer/swiftmailer": "^5.3|^6.0" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "php-console/php-console": "Allow sending log messages to Google Chrome", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/2.3.5" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2021-10-01T21:08:31+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.54.0", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/eed83939f1aed3eee517d03a33f5ec587ac529b5", + "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.0", + "doctrine/orm": "^2.7", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.54", + "phpunit/phpunit": "^7.5.20 || ^8.5.14", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2021-11-01T21:22:20+00:00" + }, + { + "name": "nette/schema", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", + "shasum": "" + }, + "require": { + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": ">=7.1 <8.2" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^0.12", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.2" + }, + "time": "2021-10-15T11:40:02+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.6", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "2f261e55bd6a12057442045bf2c249806abc1d02" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/2f261e55bd6a12057442045bf2c249806abc1d02", + "reference": "2f261e55bd6a12057442045bf2c249806abc1d02", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.2" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.6" + }, + "time": "2021-11-24T15:47:23+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.13.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/63a79e8daa781cac14e5195e63ed8ae231dd10fd", + "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.1" + }, + "time": "2021-11-03T20:52:16+00:00" + }, + { + "name": "opis/closure", + "version": "3.6.2", + "source": { + "type": "git", + "url": "https://github.com/opis/closure.git", + "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6", + "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6", + "shasum": "" + }, + "require": { + "php": "^5.4 || ^7.0 || ^8.0" + }, + "require-dev": { + "jeremeamia/superclosure": "^2.0", + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\Closure\\": "src/" + }, + "files": [ + "functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", + "homepage": "https://opis.io/closure", + "keywords": [ + "anonymous functions", + "closure", + "function", + "serializable", + "serialization", + "serialize" + ], + "support": { + "issues": "https://github.com/opis/closure/issues", + "source": "https://github.com/opis/closure/tree/3.6.2" + }, + "time": "2021-04-09T13:42:10+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.8.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2021-08-28T21:27:29+00:00" + }, + { + "name": "predis/predis", + "version": "v1.1.9", + "source": { + "type": "git", + "url": "https://github.com/predis/predis.git", + "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259", + "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259", + "shasum": "" + }, + "require": { + "php": ">=5.3.9" + }, + "require-dev": { + "phpunit/phpunit": "~4.8" + }, + "suggest": { + "ext-curl": "Allows access to Webdis when paired with phpiredis", + "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol" + }, + "type": "library", + "autoload": { + "psr-4": { + "Predis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniele Alessandri", + "email": "suppakilla@gmail.com", + "homepage": "http://clorophilla.net", + "role": "Creator & Maintainer" + }, + { + "name": "Till Krüss", + "homepage": "https://till.im", + "role": "Maintainer" + } + ], + "description": "Flexible and feature-complete Redis client for PHP and HHVM", + "homepage": "http://github.com/predis/predis", + "keywords": [ + "nosql", + "predis", + "redis" + ], + "support": { + "issues": "https://github.com/predis/predis/issues", + "source": "https://github.com/predis/predis/tree/v1.1.9" + }, + "funding": [ + { + "url": "https://github.com/sponsors/tillkruss", + "type": "github" + } + ], + "time": "2021-10-05T19:02:38+00:00" + }, + { + "name": "psr/container", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.2" + }, + "time": "2021-11-05T16:50:12+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + }, + "time": "2020-06-29T06:28:15+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/master" + }, + "time": "2019-04-30T12:38:16+00:00" + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, + "time": "2016-08-06T14:39:51+00:00" + }, + { + "name": "psr/log", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376", + "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/2.0.0" + }, + "time": "2021-07-14T16:41:46+00:00" + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, + "time": "2017-10-23T01:57:42+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.10.11", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "38017532bba35d15d28dcc001b4274df0251c4a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38017532bba35d15d28dcc001b4274df0251c4a1", + "reference": "38017532bba35d15d28dcc001b4274df0251c4a1", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", + "php": "^8.0 || ^7.0 || ^5.5.9", + "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10", + "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "3.17.*" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", + "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.10.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.10.11" + }, + "time": "2021-11-23T15:02:17+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8", + "symfony/polyfill-php81": "^1.23" + }, + "require-dev": { + "captainhook/captainhook": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "ergebnis/composer-normalize": "^2.6", + "fakerphp/faker": "^1.5", + "hamcrest/hamcrest-php": "^2", + "jangregor/phpstan-prophecy": "^0.8", + "mockery/mockery": "^1.3", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1", + "phpstan/phpstan": "^0.12.32", + "phpstan/phpstan-mockery": "^0.12.5", + "phpstan/phpstan-phpunit": "^0.12.11", + "phpunit/phpunit": "^8.5 || ^9", + "psy/psysh": "^0.10.4", + "slevomat/coding-standard": "^6.3", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/1.2.2" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2021-10-10T03:01:02+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.2.3", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "shasum": "" + }, + "require": { + "brick/math": "^0.8 || ^0.9", + "ext-json": "*", + "php": "^7.2 || ^8.0", + "ramsey/collection": "^1.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php80": "^1.14" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "moontoast/math": "^1.1", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-mockery": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^8.5 || ^9", + "slevomat/coding-standard": "^7.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-ctype": "Enables faster processing of character classification using ctype functions.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.x-dev" + }, + "captainhook": { + "force-install": true + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Uuid\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.2.3" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2021-09-25T23:10:38+00:00" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v6.3.0", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.0|^3.1", + "php": ">=7.0.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.4" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.2-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" + } + ], + "abandoned": "symfony/mailer", + "time": "2021-10-18T15:26:12+00:00" + }, + { + "name": "symfony/console", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "3e7ab8f5905058984899b05a4648096f558bfeba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/3e7ab8f5905058984899b05a4648096f558bfeba", + "reference": "3e7ab8f5905058984899b05a4648096f558bfeba", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2", + "symfony/string": "^5.1" + }, + "conflict": { + "symfony/dependency-injection": "<4.4", + "symfony/dotenv": "<5.1", + "symfony/event-dispatcher": "<4.4", + "symfony/lock": "<4.4", + "symfony/process": "<4.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0" + }, + "require-dev": { + "psr/log": "^1|^2", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/event-dispatcher": "^4.4|^5.0", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/var-dumper": "^4.4|^5.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-21T19:41:05+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v5.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "7fb120adc7f600a59027775b224c13a33530dd90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90", + "reference": "7fb120adc7f600a59027775b224c13a33530dd90", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-07-21T12:38:00+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8", + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-07-12T14:48:14+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "eec73dd7218713f48a7996583a741b3bae58c8d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/eec73dd7218713f48a7996583a741b3bae58c8d3", + "reference": "eec73dd7218713f48a7996583a741b3bae58c8d3", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4.4|^5.0" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.1", + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-13T13:42:37+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "661a7a6e085394f8513945669e31f7c1338a7e69" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/661a7a6e085394f8513945669e31f7c1338a7e69", + "reference": "661a7a6e085394f8513945669e31f7c1338a7e69", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/event-dispatcher-contracts": "^2", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/dependency-injection": "<4.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/error-handler": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^4.4|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-17T12:16:12+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a", + "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/event-dispatcher": "^1" + }, + "suggest": { + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-07-12T14:48:14+00:00" + }, + { + "name": "symfony/finder", + "version": "v5.3.7", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93", + "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v5.3.7" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-08-04T21:20:46+00:00" + }, + { + "name": "symfony/http-client-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "ec82e57b5b714dbb69300d348bd840b345e24166" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ec82e57b5b714dbb69300d348bd840b345e24166", + "reference": "ec82e57b5b714dbb69300d348bd840b345e24166", + "shasum": "" + }, + "require": { + "php": ">=7.2.5" + }, + "suggest": { + "symfony/http-client-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\HttpClient\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to HTTP clients", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-03T09:24:47+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "d1e7059ebeb0b8f9fe5eb5b26eacd2e3c1f371cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d1e7059ebeb0b8f9fe5eb5b26eacd2e3c1f371cc", + "reference": "d1e7059ebeb0b8f9fe5eb5b26eacd2e3c1f371cc", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/cache": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/mime": "^4.4|^5.0" + }, + "suggest": { + "symfony/mime": "To use the file extension guesser" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-04T16:37:19+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v5.3.12", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "f53025cd1d91b1af85d6d9e17eefa98e31ee953b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f53025cd1d91b1af85d6d9e17eefa98e31ee953b", + "reference": "f53025cd1d91b1af85d6d9e17eefa98e31ee953b", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/log": "^1|^2", + "symfony/deprecation-contracts": "^2.1", + "symfony/error-handler": "^4.4|^5.0", + "symfony/event-dispatcher": "^5.0", + "symfony/http-client-contracts": "^1.1|^2", + "symfony/http-foundation": "^5.3.7", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/browser-kit": "<4.4", + "symfony/cache": "<5.0", + "symfony/config": "<5.0", + "symfony/console": "<4.4", + "symfony/dependency-injection": "<5.3", + "symfony/doctrine-bridge": "<5.0", + "symfony/form": "<5.0", + "symfony/http-client": "<5.0", + "symfony/mailer": "<5.0", + "symfony/messenger": "<5.0", + "symfony/translation": "<5.0", + "symfony/twig-bridge": "<5.0", + "symfony/validator": "<5.0", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/config": "^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dependency-injection": "^5.3", + "symfony/dom-crawler": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "symfony/routing": "^4.4|^5.0", + "symfony/stopwatch": "^4.4|^5.0", + "symfony/translation": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "twig/twig": "^2.13|^3.0.4" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v5.3.12" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-24T08:46:46+00:00" + }, + { + "name": "symfony/mime", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "dffc0684f10526db12c52fcd6238c64695426d61" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/dffc0684f10526db12c52fcd6238c64695426d61", + "reference": "dffc0684f10526db12c52fcd6238c64695426d61", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<4.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/property-access": "^4.4|^5.1", + "symfony/property-info": "^4.4|^5.1", + "symfony/serializer": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-20T16:42:42+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-19T12:13:01+00:00" + }, + { + "name": "symfony/polyfill-iconv", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-iconv": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T09:27:20+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T12:26:48+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T09:27:20+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-19T12:13:01+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T12:26:48+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T09:17:38+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", + "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-19T12:13:01+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-07-28T13:41:28+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "e66119f3de95efc359483f810c4c3e6436279436" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436", + "reference": "e66119f3de95efc359483f810c4c3e6436279436", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-21T13:25:03+00:00" + }, + { + "name": "symfony/process", + "version": "v5.3.12", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "e498803a6e95ede78e9d5646ad32a2255c033a6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/e498803a6e95ede78e9d5646ad32a2255c033a6a", + "reference": "e498803a6e95ede78e9d5646ad32a2255c033a6a", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v5.3.12" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-22T22:39:13+00:00" + }, + { + "name": "symfony/routing", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "fcbc2b81d55984f04bb704c2269755fa5aaf5cca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/fcbc2b81d55984f04bb704c2269755fa5aaf5cca", + "reference": "fcbc2b81d55984f04bb704c2269755fa5aaf5cca", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<5.3", + "symfony/dependency-injection": "<4.4", + "symfony/yaml": "<4.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.3", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/expression-language": "^4.4|^5.0", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-04T16:37:19+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/container": "^1.1", + "symfony/deprecation-contracts": "^2.1" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v2.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-04T16:48:04+00:00" + }, + { + "name": "symfony/string", + "version": "v5.3.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c", + "reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "~1.15" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "files": [ + "Resources/functions.php" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.3.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-10-27T18:21:46+00:00" + }, + { + "name": "symfony/translation", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "17a965c8f3b1b348cf15d903ac53942984561f8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/17a965c8f3b1b348cf15d903ac53942984561f8a", + "reference": "17a965c8f3b1b348cf15d903ac53942984561f8a", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation-contracts": "^2.3" + }, + "conflict": { + "symfony/config": "<4.4", + "symfony/dependency-injection": "<5.0", + "symfony/http-kernel": "<5.0", + "symfony/twig-bundle": "<5.0", + "symfony/yaml": "<4.4" + }, + "provide": { + "symfony/translation-implementation": "2.3" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/dependency-injection": "^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/http-kernel": "^5.0", + "symfony/intl": "^4.4|^5.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/service-contracts": "^1.1.2|^2", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-04T16:37:19+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e", + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e", + "shasum": "" + }, + "require": { + "php": ">=7.2.5" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-08-17T14:20:01+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v5.3.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "a029b3a11b757f9cc8693040339153b4745a913f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a029b3a11b757f9cc8693040339153b4745a913f", + "reference": "a029b3a11b757f9cc8693040339153b4745a913f", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^2.13|^3.0.4" + }, + "suggest": { + "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", + "ext-intl": "To show region name in time zone dump", + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v5.3.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-12T11:38:27+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.3", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5", + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3" + }, + "time": "2020-07-13T06:12:54+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.4.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "d4394d044ed69a8f244f3445bcedf8a0d7fe2403" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d4394d044ed69a8f244f3445bcedf8a0d7fe2403", + "reference": "d4394d044ed69a8f244f3445bcedf8a0d7fe2403", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.2", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2021-11-10T01:08:39+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "1.5.6", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "80953678b19901e5165c56752d087fc11526017c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c", + "reference": "80953678b19901e5165c56752d087fc11526017c", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/1.5.6" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2020-11-12T00:07:28+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.10.0" + }, + "time": "2021-03-09T10:59:23+00:00" + } + ], + "packages-dev": [ + { + "name": "doctrine/instantiator", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b", + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^8.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2020-11-10T18:47:58+00:00" + }, + { + "name": "facade/flare-client-php", + "version": "1.9.1", + "source": { + "type": "git", + "url": "https://github.com/facade/flare-client-php.git", + "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed", + "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed", + "shasum": "" + }, + "require": { + "facade/ignition-contracts": "~1.0", + "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0", + "php": "^7.1|^8.0", + "symfony/http-foundation": "^3.3|^4.1|^5.0", + "symfony/mime": "^3.4|^4.0|^5.1", + "symfony/var-dumper": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.14", + "phpunit/phpunit": "^7.5.16", + "spatie/phpunit-snapshot-assertions": "^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "Facade\\FlareClient\\": "src" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/facade/flare-client-php", + "keywords": [ + "exception", + "facade", + "flare", + "reporting" + ], + "support": { + "issues": "https://github.com/facade/flare-client-php/issues", + "source": "https://github.com/facade/flare-client-php/tree/1.9.1" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2021-09-13T12:16:46+00:00" + }, + { + "name": "facade/ignition", + "version": "2.17.1", + "source": { + "type": "git", + "url": "https://github.com/facade/ignition.git", + "reference": "317f6110c1977b50e06365bbb155fbe5079035ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/ignition/zipball/317f6110c1977b50e06365bbb155fbe5079035ec", + "reference": "317f6110c1977b50e06365bbb155fbe5079035ec", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "facade/flare-client-php": "^1.9.1", + "facade/ignition-contracts": "^1.0.2", + "illuminate/support": "^7.0|^8.0", + "monolog/monolog": "^2.0", + "php": "^7.2.5|^8.0", + "symfony/console": "^5.0", + "symfony/var-dumper": "^5.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.14", + "livewire/livewire": "^2.4", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^5.0|^6.0", + "psalm/plugin-laravel": "^1.2" + }, + "suggest": { + "laravel/telescope": "^3.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, + "laravel": { + "providers": [ + "Facade\\Ignition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Facade\\Ignition\\Facades\\Flare" + } + } + }, + "autoload": { + "psr-4": { + "Facade\\Ignition\\": "src" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://github.com/facade/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/facade/ignition/issues", + "source": "https://github.com/facade/ignition" + }, + "time": "2021-11-25T10:26:30+00:00" + }, + { + "name": "facade/ignition-contracts", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/facade/ignition-contracts.git", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^v2.15.8", + "phpunit/phpunit": "^9.3.11", + "vimeo/psalm": "^3.17.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Facade\\IgnitionContracts\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://flareapp.io", + "role": "Developer" + } + ], + "description": "Solution contracts for Ignition", + "homepage": "https://github.com/facade/ignition-contracts", + "keywords": [ + "contracts", + "flare", + "ignition" + ], + "support": { + "issues": "https://github.com/facade/ignition-contracts/issues", + "source": "https://github.com/facade/ignition-contracts/tree/1.0.2" + }, + "time": "2020-10-16T08:27:54+00:00" + }, + { + "name": "fakerphp/faker", + "version": "v1.16.0", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "271d384d216e5e5c468a6b28feedf95d49f83b35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/271d384d216e5e5c468a6b28feedf95d49f83b35", + "reference": "271d384d216e5e5c468a6b28feedf95d49f83b35", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-intl": "*", + "symfony/phpunit-bridge": "^4.4 || ^5.2" + }, + "suggest": { + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "v1.16-dev" + } + }, + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.16.0" + }, + "time": "2021-09-06T14:53:37+00:00" + }, + { + "name": "filp/whoops", + "version": "2.14.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "f056f1fe935d9ed86e698905a957334029899895" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895", + "reference": "f056f1fe935d9ed86e698905a957334029899895", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.14.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2021-10-03T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.12.8", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "10e0494c9befcca039d5626c7f4f91caa45d6394" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/10e0494c9befcca039d5626c7f4f91caa45d6394", + "reference": "10e0494c9befcca039d5626c7f4f91caa45d6394", + "shasum": "" + }, + "require": { + "illuminate/console": "^8.0|^9.0", + "illuminate/contracts": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0", + "php": "^7.3|^8.0" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2021-11-26T17:38:07+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.4.4", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346", + "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": "^7.3 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-0": { + "Mockery": "library/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "http://blog.astrumfutura.com" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "issues": "https://github.com/mockery/mockery/issues", + "source": "https://github.com/mockery/mockery/tree/1.4.4" + }, + "time": "2021-09-13T15:28:59+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.10.2", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "replace": { + "myclabs/deep-copy": "self.version" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-11-13T09:40:50+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v5.10.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/3004cfa49c022183395eabc6d0e5207dfe498d00", + "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00", + "shasum": "" + }, + "require": { + "facade/ignition-contracts": "^1.0", + "filp/whoops": "^2.14.3", + "php": "^7.3 || ^8.0", + "symfony/console": "^5.0" + }, + "require-dev": { + "brianium/paratest": "^6.1", + "fideloper/proxy": "^4.4.1", + "fruitcake/laravel-cors": "^2.0.3", + "laravel/framework": "8.x-dev", + "nunomaduro/larastan": "^0.6.2", + "nunomaduro/mock-final-classes": "^1.0", + "orchestra/testbench": "^6.0", + "phpstan/phpstan": "^0.12.64", + "phpunit/phpunit": "^9.5.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2021-09-20T15:06:32+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" + }, + "time": "2021-07-20T11:28:43+00:00" + }, + { + "name": "phar-io/version", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "bae7c545bef187884426f042434e561ab1ddb182" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182", + "reference": "bae7c545bef187884426f042434e561ab1ddb182", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.1.0" + }, + "time": "2021-02-23T14:00:09+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" + }, + "require-dev": { + "mockery/mockery": "~1.3.2", + "psalm/phar": "^4.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + }, + "time": "2021-10-19T17:43:47+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.5.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae", + "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" + }, + "require-dev": { + "ext-tokenizer": "*", + "psalm/phar": "^4.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1" + }, + "time": "2021-10-02T14:08:47+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.14.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", + "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2", + "php": "^7.2 || ~8.0, <8.2", + "phpdocumentor/reflection-docblock": "^5.2", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0 || ^7.0", + "phpunit/phpunit": "^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/1.14.0" + }, + "time": "2021-09-10T09:02:12+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "9.2.9", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "f301eb1453c9e7a1bc912ee8b0ea9db22c60223b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f301eb1453c9e7a1bc912ee8b0ea9db22c60223b", + "reference": "f301eb1453c9e7a1bc912ee8b0ea9db22c60223b", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.13.0", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcov": "*", + "ext-xdebug": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.9" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-11-19T15:21:02+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8", + "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:57:25+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "9.5.10", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a", + "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.3.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=7.3", + "phpspec/prophecy": "^1.12.1", + "phpunit/php-code-coverage": "^9.2.7", + "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.3", + "phpunit/php-timer": "^5.0.2", + "sebastian/cli-parser": "^1.0.1", + "sebastian/code-unit": "^1.0.6", + "sebastian/comparator": "^4.0.5", + "sebastian/diff": "^4.0.3", + "sebastian/environment": "^5.1.3", + "sebastian/exporter": "^4.0.3", + "sebastian/global-state": "^5.0.1", + "sebastian/object-enumerator": "^4.0.3", + "sebastian/resource-operations": "^3.0.3", + "sebastian/type": "^2.3.4", + "sebastian/version": "^3.0.2" + }, + "require-dev": { + "ext-pdo": "*", + "phpspec/prophecy-phpunit": "^2.0.1" + }, + "suggest": { + "ext-soap": "*", + "ext-xdebug": "*" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ], + "files": [ + "src/Framework/Assert/Functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10" + }, + "funding": [ + { + "url": "https://phpunit.de/donate.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-09-25T07:38:51+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:08:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "55f4261989e546dc112258c7a75935a81a7ce382" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", + "reference": "55f4261989e546dc112258c7a75935a81a7ce382", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T15:49:45+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.7", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T15:52:27+00:00" + }, + { + "name": "sebastian/diff", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:10:38+00:00" + }, + { + "name": "sebastian/environment", + "version": "5.1.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "388b6ced16caa751030f6a69e588299fa09200ac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac", + "reference": "388b6ced16caa751030f6a69e588299fa09200ac", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:52:38+00:00" + }, + { + "name": "sebastian/exporter", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9", + "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-11-11T14:18:36+00:00" + }, + { + "name": "sebastian/global-state", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49", + "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-06-11T13:31:12+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.6", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-28T06:42:11+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:14:26+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", + "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:17:30+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:45:17+00:00" + }, + { + "name": "sebastian/type", + "version": "2.3.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914", + "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/2.3.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-06-15T12:49:02+00:00" + }, + { + "name": "sebastian/version", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2021-07-28T10:34:58+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^7.3|^8.0" + }, + "platform-dev": [], + "plugin-api-version": "2.1.0" +} diff --git a/src/config/app.php b/src/config/app.php new file mode 100644 index 0000000..a09a407 --- /dev/null +++ b/src/config/app.php @@ -0,0 +1,234 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'de', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => [ + + /* + * Laravel Framework Service Providers... + */ + Illuminate\Auth\AuthServiceProvider::class, + Illuminate\Broadcasting\BroadcastServiceProvider::class, + Illuminate\Bus\BusServiceProvider::class, + Illuminate\Cache\CacheServiceProvider::class, + Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, + Illuminate\Cookie\CookieServiceProvider::class, + Illuminate\Database\DatabaseServiceProvider::class, + Illuminate\Encryption\EncryptionServiceProvider::class, + Illuminate\Filesystem\FilesystemServiceProvider::class, + Illuminate\Foundation\Providers\FoundationServiceProvider::class, + Illuminate\Hashing\HashServiceProvider::class, + Illuminate\Mail\MailServiceProvider::class, + Illuminate\Notifications\NotificationServiceProvider::class, + Illuminate\Pagination\PaginationServiceProvider::class, + Illuminate\Pipeline\PipelineServiceProvider::class, + Illuminate\Queue\QueueServiceProvider::class, + Illuminate\Redis\RedisServiceProvider::class, + Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, + Illuminate\Session\SessionServiceProvider::class, + Illuminate\Translation\TranslationServiceProvider::class, + Illuminate\Validation\ValidationServiceProvider::class, + Illuminate\View\ViewServiceProvider::class, + + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + + ], + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => [ + + 'App' => Illuminate\Support\Facades\App::class, + 'Arr' => Illuminate\Support\Arr::class, + 'Artisan' => Illuminate\Support\Facades\Artisan::class, + 'Auth' => Illuminate\Support\Facades\Auth::class, + 'Blade' => Illuminate\Support\Facades\Blade::class, + 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, + 'Bus' => Illuminate\Support\Facades\Bus::class, + 'Cache' => Illuminate\Support\Facades\Cache::class, + 'Config' => Illuminate\Support\Facades\Config::class, + 'Cookie' => Illuminate\Support\Facades\Cookie::class, + 'Crypt' => Illuminate\Support\Facades\Crypt::class, + 'Date' => Illuminate\Support\Facades\Date::class, + 'DB' => Illuminate\Support\Facades\DB::class, + 'Eloquent' => Illuminate\Database\Eloquent\Model::class, + 'Event' => Illuminate\Support\Facades\Event::class, + 'File' => Illuminate\Support\Facades\File::class, + 'Gate' => Illuminate\Support\Facades\Gate::class, + 'Hash' => Illuminate\Support\Facades\Hash::class, + 'Http' => Illuminate\Support\Facades\Http::class, + 'Lang' => Illuminate\Support\Facades\Lang::class, + 'Log' => Illuminate\Support\Facades\Log::class, + 'Mail' => Illuminate\Support\Facades\Mail::class, + 'Notification' => Illuminate\Support\Facades\Notification::class, + 'Password' => Illuminate\Support\Facades\Password::class, + 'Queue' => Illuminate\Support\Facades\Queue::class, + 'RateLimiter' => Illuminate\Support\Facades\RateLimiter::class, + 'Redirect' => Illuminate\Support\Facades\Redirect::class, + // 'Redis' => Illuminate\Support\Facades\Redis::class, + 'Request' => Illuminate\Support\Facades\Request::class, + 'Response' => Illuminate\Support\Facades\Response::class, + 'Route' => Illuminate\Support\Facades\Route::class, + 'Schema' => Illuminate\Support\Facades\Schema::class, + 'Session' => Illuminate\Support\Facades\Session::class, + 'StorageService' => Illuminate\Support\Facades\Storage::class, + 'Str' => Illuminate\Support\Str::class, + 'URL' => Illuminate\Support\Facades\URL::class, + 'Validator' => Illuminate\Support\Facades\Validator::class, + 'View' => Illuminate\Support\Facades\View::class, + + ], + +]; diff --git a/src/config/auth.php b/src/config/auth.php new file mode 100644 index 0000000..e29a3f7 --- /dev/null +++ b/src/config/auth.php @@ -0,0 +1,111 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expire time is the number of minutes that the reset token should be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_resets', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/src/config/broadcasting.php b/src/config/broadcasting.php new file mode 100644 index 0000000..2d52982 --- /dev/null +++ b/src/config/broadcasting.php @@ -0,0 +1,64 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'useTLS' => true, + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/src/config/cache.php b/src/config/cache.php new file mode 100644 index 0000000..8736c7a --- /dev/null +++ b/src/config/cache.php @@ -0,0 +1,110 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing a RAM based store such as APC or Memcached, there might + | be other applications utilizing the same cache. So, we'll specify a + | value to get prefixed to all our keys so we can avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), + +]; diff --git a/src/config/cors.php b/src/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/src/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/src/config/database.php b/src/config/database.php new file mode 100644 index 0000000..b4c8003 --- /dev/null +++ b/src/config/database.php @@ -0,0 +1,147 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + # 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + # 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'schema' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/src/config/filesystems.php b/src/config/filesystems.php new file mode 100644 index 0000000..760ef97 --- /dev/null +++ b/src/config/filesystems.php @@ -0,0 +1,73 @@ + env('FILESYSTEM_DRIVER', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been setup for each driver as an example of the required options. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/src/config/hashing.php b/src/config/hashing.php new file mode 100644 index 0000000..8425770 --- /dev/null +++ b/src/config/hashing.php @@ -0,0 +1,52 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 10), + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 1024, + 'threads' => 2, + 'time' => 2, + ], + +]; diff --git a/src/config/logging.php b/src/config/logging.php new file mode 100644 index 0000000..880cd92 --- /dev/null +++ b/src/config/logging.php @@ -0,0 +1,118 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => 14, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => SyslogUdpHandler::class, + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + ], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/src/config/mail.php b/src/config/mail.php new file mode 100644 index 0000000..e860749 --- /dev/null +++ b/src/config/mail.php @@ -0,0 +1,118 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", + | "postmark", "log", "array", "failover" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'auth_mode' => null, + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + ], + + 'postmark' => [ + 'transport' => 'postmark', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => '/usr/sbin/sendmail -bs', + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/src/config/queue.php b/src/config/queue.php new file mode 100644 index 0000000..25ea5a8 --- /dev/null +++ b/src/config/queue.php @@ -0,0 +1,93 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/src/config/sanctum.php b/src/config/sanctum.php new file mode 100644 index 0000000..9281c92 --- /dev/null +++ b/src/config/sanctum.php @@ -0,0 +1,65 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + env('APP_URL') ? ','.parse_url(env('APP_URL'), PHP_URL_HOST) : '' + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. If this value is null, personal access tokens do + | not expire. This won't tweak the lifetime of first-party sessions. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + ], + +]; diff --git a/src/config/services.php b/src/config/services.php new file mode 100644 index 0000000..2a1d616 --- /dev/null +++ b/src/config/services.php @@ -0,0 +1,33 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/src/config/session.php b/src/config/session.php new file mode 100644 index 0000000..ac0802b --- /dev/null +++ b/src/config/session.php @@ -0,0 +1,201 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION', null), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE', null), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN', null), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + +]; diff --git a/src/config/view.php b/src/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/src/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/src/database/.gitignore b/src/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/src/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/src/database/factories/UserFactory.php b/src/database/factories/UserFactory.php new file mode 100644 index 0000000..a3eb239 --- /dev/null +++ b/src/database/factories/UserFactory.php @@ -0,0 +1,39 @@ + $this->faker->name(), + 'email' => $this->faker->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + * + * @return \Illuminate\Database\Eloquent\Factories\Factory + */ + public function unverified() + { + return $this->state(function (array $attributes) { + return [ + 'email_verified_at' => null, + ]; + }); + } +} diff --git a/src/database/migrations/2014_10_12_000000_create_users_table.php b/src/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..621a24e --- /dev/null +++ b/src/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,36 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('users'); + } +} diff --git a/src/database/migrations/2014_10_12_100000_create_password_resets_table.php b/src/database/migrations/2014_10_12_100000_create_password_resets_table.php new file mode 100644 index 0000000..0ee0a36 --- /dev/null +++ b/src/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -0,0 +1,32 @@ +string('email')->index(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('password_resets'); + } +} diff --git a/src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..6aa6d74 --- /dev/null +++ b/src/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,36 @@ +id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('failed_jobs'); + } +} diff --git a/src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..4315e16 --- /dev/null +++ b/src/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,36 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('personal_access_tokens'); + } +} diff --git a/src/database/migrations/2021_11_30_091208_create_links_table.php b/src/database/migrations/2021_11_30_091208_create_links_table.php new file mode 100644 index 0000000..ea8c2c6 --- /dev/null +++ b/src/database/migrations/2021_11_30_091208_create_links_table.php @@ -0,0 +1,35 @@ +id(); + $table->string('platform'); + $table->string('link'); + $table->string('linktext'); + $table->integer('brandcolors'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('links'); + } +} diff --git a/src/database/migrations/2021_12_01_110933_create_userdatas_table.php b/src/database/migrations/2021_12_01_110933_create_userdatas_table.php new file mode 100644 index 0000000..730d343 --- /dev/null +++ b/src/database/migrations/2021_12_01_110933_create_userdatas_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('username'); + $table->string('theme'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('userdatas'); + } +} diff --git a/src/database/seeders/DatabaseSeeder.php b/src/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..57b73b5 --- /dev/null +++ b/src/database/seeders/DatabaseSeeder.php @@ -0,0 +1,18 @@ +create(); + } +} diff --git a/src/package-lock.json b/src/package-lock.json new file mode 100644 index 0000000..813f42c --- /dev/null +++ b/src/package-lock.json @@ -0,0 +1,16964 @@ +{ + "name": "social-tree", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "postcss-scss": "^4.0.2" + }, + "devDependencies": { + "autoprefixer": "^10.4.0", + "axios": "^0.21", + "laravel-mix": "^6.0.6", + "lodash": "^4.17.19", + "postcss": "^8.4.4", + "resolve-url-loader": "^4.0.0", + "sass": "^1.44.0", + "sass-loader": "^12.3.0", + "tailwindcss": "^2.2.19" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", + "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helpers": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", + "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz", + "integrity": "sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", + "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz", + "integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "regexpu-core": "^4.7.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz", + "integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "dev": true, + "dependencies": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz", + "integrity": "sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-wrap-function": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz", + "integrity": "sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.2", + "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", + "integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.0", + "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", + "integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz", + "integrity": "sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz", + "integrity": "sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.0.tgz", + "integrity": "sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz", + "integrity": "sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz", + "integrity": "sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz", + "integrity": "sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz", + "integrity": "sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz", + "integrity": "sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz", + "integrity": "sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.0.tgz", + "integrity": "sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz", + "integrity": "sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz", + "integrity": "sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz", + "integrity": "sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz", + "integrity": "sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz", + "integrity": "sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz", + "integrity": "sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz", + "integrity": "sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz", + "integrity": "sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz", + "integrity": "sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz", + "integrity": "sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz", + "integrity": "sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz", + "integrity": "sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz", + "integrity": "sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz", + "integrity": "sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz", + "integrity": "sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz", + "integrity": "sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz", + "integrity": "sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz", + "integrity": "sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz", + "integrity": "sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz", + "integrity": "sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz", + "integrity": "sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.16.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz", + "integrity": "sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.15.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz", + "integrity": "sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz", + "integrity": "sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz", + "integrity": "sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz", + "integrity": "sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz", + "integrity": "sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz", + "integrity": "sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz", + "integrity": "sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==", + "dev": true, + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz", + "integrity": "sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz", + "integrity": "sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz", + "integrity": "sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz", + "integrity": "sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz", + "integrity": "sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz", + "integrity": "sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz", + "integrity": "sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz", + "integrity": "sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz", + "integrity": "sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.4.tgz", + "integrity": "sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.3", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.2", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-async-generator-functions": "^7.16.4", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-class-static-block": "^7.16.0", + "@babel/plugin-proposal-dynamic-import": "^7.16.0", + "@babel/plugin-proposal-export-namespace-from": "^7.16.0", + "@babel/plugin-proposal-json-strings": "^7.16.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-object-rest-spread": "^7.16.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.0", + "@babel/plugin-transform-async-to-generator": "^7.16.0", + "@babel/plugin-transform-block-scoped-functions": "^7.16.0", + "@babel/plugin-transform-block-scoping": "^7.16.0", + "@babel/plugin-transform-classes": "^7.16.0", + "@babel/plugin-transform-computed-properties": "^7.16.0", + "@babel/plugin-transform-destructuring": "^7.16.0", + "@babel/plugin-transform-dotall-regex": "^7.16.0", + "@babel/plugin-transform-duplicate-keys": "^7.16.0", + "@babel/plugin-transform-exponentiation-operator": "^7.16.0", + "@babel/plugin-transform-for-of": "^7.16.0", + "@babel/plugin-transform-function-name": "^7.16.0", + "@babel/plugin-transform-literals": "^7.16.0", + "@babel/plugin-transform-member-expression-literals": "^7.16.0", + "@babel/plugin-transform-modules-amd": "^7.16.0", + "@babel/plugin-transform-modules-commonjs": "^7.16.0", + "@babel/plugin-transform-modules-systemjs": "^7.16.0", + "@babel/plugin-transform-modules-umd": "^7.16.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.0", + "@babel/plugin-transform-new-target": "^7.16.0", + "@babel/plugin-transform-object-super": "^7.16.0", + "@babel/plugin-transform-parameters": "^7.16.3", + "@babel/plugin-transform-property-literals": "^7.16.0", + "@babel/plugin-transform-regenerator": "^7.16.0", + "@babel/plugin-transform-reserved-words": "^7.16.0", + "@babel/plugin-transform-shorthand-properties": "^7.16.0", + "@babel/plugin-transform-spread": "^7.16.0", + "@babel/plugin-transform-sticky-regex": "^7.16.0", + "@babel/plugin-transform-template-literals": "^7.16.0", + "@babel/plugin-transform-typeof-symbol": "^7.16.0", + "@babel/plugin-transform-unicode-escapes": "^7.16.0", + "@babel/plugin-transform-unicode-regex": "^7.16.0", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.0", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.19.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", + "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.3", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz", + "integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.1.16", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz", + "integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/clean-css": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.5.tgz", + "integrity": "sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/eslint": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz", + "integrity": "sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/http-proxy": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz", + "integrity": "sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/imagemin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@types/imagemin/-/imagemin-8.0.0.tgz", + "integrity": "sha512-B9X2CUeDv/uUeY9CqkzSTfmsLkeJP6PkmXlh4lODBbf9SwpmNuLS30WzUOi863dgsjY3zt3gY5q2F+UdifRi1A==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/imagemin-gifsicle": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz", + "integrity": "sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-mozjpeg": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz", + "integrity": "sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-optipng": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz", + "integrity": "sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==", + "dev": true, + "dependencies": { + "@types/imagemin": "*" + } + }, + "node_modules/@types/imagemin-svgo": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz", + "integrity": "sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ==", + "dev": true, + "dependencies": { + "@types/imagemin": "*", + "@types/svgo": "^1" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz", + "integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==", + "dev": true + }, + "node_modules/@types/svgo": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.6.tgz", + "integrity": "sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz", + "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==", + "dev": true, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz", + "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==", + "dev": true, + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz", + "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==", + "dev": true, + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==", + "dev": true + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz", + "integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==", + "dev": true, + "dependencies": { + "browserslist": "^4.17.5", + "caniuse-lite": "^1.0.30001272", + "fraction.js": "^4.1.1", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz", + "integrity": "sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.18.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "dependencies": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "dev": true, + "dependencies": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001283", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001283.tgz", + "integrity": "sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/clean-css": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz", + "integrity": "sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-table3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz", + "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==", + "dev": true, + "dependencies": { + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "colors": "^1.1.2" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/collect.js": { + "version": "4.29.3", + "resolved": "https://registry.npmjs.org/collect.js/-/collect.js-4.29.3.tgz", + "integrity": "sha512-/6idZ7r3B25Q4cForbiHJ7+aqupcgMEtrKRn9D3viCbLw+YuNFjd23HwDH89Y2cU4jlhkwksD80nZFKtNE25Gw==", + "dev": true + }, + "node_modules/color": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/color/-/color-4.0.2.tgz", + "integrity": "sha512-fSu0jW2aKQG2FHlDywqdFPdabJHsUdZ0xabSt3wFZdcgRKtLnUHs19nUtuFuLGVMFhINGgfZEIjbUOsGZXGu7Q==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.7.4" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-string": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.8.1.tgz", + "integrity": "sha512-AGfGNQbnXlYqPStIx3QB2XA3Wy8vjbreqklmCiGVwcoHSLN5KIpDZDflYnXlBliKHI8CTBX3PsCgG+xfZgqK8A==", + "dev": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colord": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.1.tgz", + "integrity": "sha512-4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/concat": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", + "integrity": "sha1-QPM1MInWVGdpXLGIa0Xt1jfYzKg=", + "dev": true, + "dependencies": { + "commander": "^2.9.0" + }, + "bin": { + "concat": "bin/concat" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/concat/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", + "dev": true + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "node_modules/core-js-compat": { + "version": "3.19.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.1.tgz", + "integrity": "sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==", + "dev": true, + "dependencies": { + "browserslist": "^4.17.6", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz", + "integrity": "sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA==", + "dev": true, + "dependencies": { + "timsort": "^0.3.0" + }, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select/node_modules/domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", + "dev": true + }, + "node_modules/css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.12.tgz", + "integrity": "sha512-U38V4x2iJ3ijPdeWqUrEr4eKBB5PbEKsNP5T8xcik2Au3LeMtiMHX0i2Hu9k51FcKofNZumbrcdC6+a521IUHg==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.1.8", + "is-resolvable": "^1.1.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.8.tgz", + "integrity": "sha512-zWMlP0+AMPBVE852SqTrP0DnhTcTA2C1wAF92TKZ3Va+aUVqLIhkqKlnJIXXdqXD7RN+S1ujuWmNpvrJBiM/vg==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.0.3", + "cssnano-utils": "^2.0.1", + "postcss-calc": "^8.0.0", + "postcss-colormin": "^5.2.1", + "postcss-convert-values": "^5.0.2", + "postcss-discard-comments": "^5.0.1", + "postcss-discard-duplicates": "^5.0.1", + "postcss-discard-empty": "^5.0.1", + "postcss-discard-overridden": "^5.0.1", + "postcss-merge-longhand": "^5.0.4", + "postcss-merge-rules": "^5.0.3", + "postcss-minify-font-values": "^5.0.1", + "postcss-minify-gradients": "^5.0.3", + "postcss-minify-params": "^5.0.2", + "postcss-minify-selectors": "^5.1.0", + "postcss-normalize-charset": "^5.0.1", + "postcss-normalize-display-values": "^5.0.1", + "postcss-normalize-positions": "^5.0.1", + "postcss-normalize-repeat-style": "^5.0.1", + "postcss-normalize-string": "^5.0.1", + "postcss-normalize-timing-functions": "^5.0.1", + "postcss-normalize-unicode": "^5.0.1", + "postcss-normalize-url": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.1", + "postcss-ordered-values": "^5.0.2", + "postcss-reduce-initial": "^5.0.2", + "postcss-reduce-transforms": "^5.0.1", + "postcss-svgo": "^5.0.3", + "postcss-unique-selectors": "^5.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz", + "integrity": "sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "node_modules/del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "dev": true, + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/del/node_modules/globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "dev": true, + "dependencies": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/domutils/node_modules/domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.4.tgz", + "integrity": "sha512-teHtgwcmVcL46jlFvAaqjyiTLWuMrUQO1JqV303JKB4ysXG6m8fXSFhbjal9st0r9mNskI22AraJZorb1VcLVg==", + "dev": true + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", + "integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", + "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz", + "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "dev": true + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "node_modules/html-entities": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz", + "integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==", + "dev": true + }, + "node_modules/html-loader": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-1.3.2.tgz", + "integrity": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==", + "dev": true, + "dependencies": { + "html-minifier-terser": "^5.1.1", + "htmlparser2": "^4.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/html-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-minifier-terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/html-minifier-terser/node_modules/terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/htmlparser2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", + "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0", + "domutils": "^2.0.0", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "node_modules/http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/http-parser-js": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.5.tgz", + "integrity": "sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz", + "integrity": "sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "dependencies": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/img-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/img-loader/-/img-loader-4.0.0.tgz", + "integrity": "sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "imagemin": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/immutable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz", + "integrity": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==", + "dev": true + }, + "node_modules/import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", + "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", + "dev": true, + "dependencies": { + "import-from": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-ip": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz", + "integrity": "sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==", + "dev": true, + "dependencies": { + "default-gateway": "^6.0.0", + "ipaddr.js": "^1.9.1", + "is-ip": "^3.1.0", + "p-event": "^4.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/internal-ip?sponsor=1" + } + }, + "node_modules/internal-ip/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "node_modules/ip-regex": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-ip": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", + "integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==", + "dev": true, + "dependencies": { + "ip-regex": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "27.3.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz", + "integrity": "sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/laravel-mix": { + "version": "6.0.39", + "resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-6.0.39.tgz", + "integrity": "sha512-ChTRKSNx9ViD3Xw1+BDQUZ0PLETcBrXlM7vNmomoDUZBXLUurVUJ9oaRUdGmH/WENNqL0qQ8FFxjq+6U368Nlg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.15.8", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.15.8", + "@babel/preset-env": "^7.15.8", + "@babel/runtime": "^7.15.4", + "@types/babel__core": "^7.1.16", + "@types/clean-css": "^4.2.5", + "@types/imagemin-gifsicle": "^7.0.1", + "@types/imagemin-mozjpeg": "^8.0.1", + "@types/imagemin-optipng": "^5.2.1", + "@types/imagemin-svgo": "^8.0.0", + "autoprefixer": "^10.4.0", + "babel-loader": "^8.2.3", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "clean-css": "^4.2.3 || ^5.1.2", + "cli-table3": "^0.6.0", + "collect.js": "^4.28.5", + "commander": "^7.2.0", + "concat": "^1.0.3", + "css-loader": "^5.2.6", + "cssnano": "^5.0.8", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "html-loader": "^1.3.2", + "imagemin": "^7.0.1", + "img-loader": "^4.0.0", + "lodash": "^4.17.21", + "md5": "^2.3.0", + "mini-css-extract-plugin": "^1.6.2", + "node-libs-browser": "^2.2.1", + "postcss-load-config": "^3.1.0", + "postcss-loader": "^6.2.0", + "semver": "^7.3.5", + "strip-ansi": "^6.0.0", + "style-loader": "^2.0.0", + "terser": "^5.9.0", + "terser-webpack-plugin": "^5.2.4", + "vue-style-loader": "^4.1.3", + "webpack": "^5.60.0", + "webpack-cli": "^4.9.1", + "webpack-dev-server": "4.4.0", + "webpack-merge": "^5.8.0", + "webpack-notifier": "^1.14.1", + "webpackbar": "^5.0.0-3", + "yargs": "^17.2.1" + }, + "bin": { + "laravel-mix": "bin/cli.js", + "mix": "bin/cli.js" + }, + "engines": { + "node": ">=12.14.0" + }, + "peerDependencies": { + "@babel/core": "^7.15.8", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.15.8", + "@babel/preset-env": "^7.15.8", + "postcss": "^8.3.11", + "webpack": "^5.60.0", + "webpack-cli": "^4.9.1" + } + }, + "node_modules/lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", + "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "node_modules/lodash.topath": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", + "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz", + "integrity": "sha512-o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA==", + "dev": true, + "dependencies": { + "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dev": true, + "dependencies": { + "mime-db": "1.51.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/modern-normalize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", + "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-emoji": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", + "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-notifier": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz", + "integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==", + "dev": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-notifier/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "node_modules/p-event": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", + "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "dev": true, + "dependencies": { + "p-timeout": "^3.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", + "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", + "dev": true, + "dependencies": { + "@types/retry": "^0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dev": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/postcss": { + "version": "8.4.4", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.4.tgz", + "integrity": "sha512-joU6fBsN6EIer28Lj6GDFoC/5yOZzLCfn0zHAn/MYXI7aPt4m4hK5KC5ovEZXy+lnCjmYIbQWngvju2ddyEr8Q==", + "dev": true, + "dependencies": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-calc": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz", + "integrity": "sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.1.tgz", + "integrity": "sha512-VVwMrEYLcHYePUYV99Ymuoi7WhKrMGy/V9/kTS0DkCoJYmmjdOMneyhzYUxcNgteKDVbrewOkSM7Wje/MFwxzA==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", + "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", + "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", + "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", + "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz", + "integrity": "sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-js": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", + "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1", + "postcss": "^8.1.6" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", + "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", + "dev": true, + "dependencies": { + "import-cwd": "^3.0.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", + "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0", + "stylehacks": "^5.0.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.3.tgz", + "integrity": "sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^2.0.1", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz", + "integrity": "sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz", + "integrity": "sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.2.tgz", + "integrity": "sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.2", + "browserslist": "^4.16.6", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz", + "integrity": "sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", + "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz", + "integrity": "sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz", + "integrity": "sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==", + "dev": true, + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz", + "integrity": "sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz", + "integrity": "sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==", + "dev": true, + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz", + "integrity": "sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.3.tgz", + "integrity": "sha512-qWiUMbvkRx3kc1Dp5opzUwc7MBWZcSDK2yofCmdvFBCpx+zFPkxBC1FASQ59Pt+flYfj/nTZSkmF56+XG5elSg==", + "dev": true, + "dependencies": { + "is-absolute-url": "^3.0.3", + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz", + "integrity": "sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz", + "integrity": "sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.2.tgz", + "integrity": "sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz", + "integrity": "sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==", + "dev": true, + "dependencies": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-scss": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.2.tgz", + "integrity": "sha512-xfdkU128CkKKKVAwkyt0M8OdnelJ3MRcIRAPPQkRpoPeuzWY3RIeg7piRCpZ79MK7Q16diLXMMAD9dN5mauPlQ==", + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.3.tgz", + "integrity": "sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", + "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + }, + "node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "node_modules/purgecss": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.1.3.tgz", + "integrity": "sha512-99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw==", + "dev": true, + "dependencies": { + "commander": "^8.0.0", + "glob": "^7.1.7", + "postcss": "^8.3.5", + "postcss-selector-parser": "^6.0.6" + }, + "bin": { + "purgecss": "bin/purgecss.js" + } + }, + "node_modules/purgecss/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "dev": true, + "dependencies": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + } + }, + "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dev": true, + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.44.0.tgz", + "integrity": "sha512-0hLREbHFXGQqls/K8X+koeP+ogFRPF4ZqetVB19b7Cst9Er8cOR0rc6RU7MaI4W1JmUShd1BPgPoeqmmgMMYFw==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/sass-loader": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.3.0.tgz", + "integrity": "sha512-6l9qwhdOb7qSrtOu96QQ81LVl8v6Dp9j1w3akOm0aWHyrTYtagDt5+kS32N4yq4hHk3M+rdqoRMH+lIdqvW6HA==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", + "sass": "^1.3.0", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "node_modules/signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", + "dev": true + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/std-env": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz", + "integrity": "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==", + "dev": true + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/stylehacks": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", + "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.0", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss": { + "version": "2.2.19", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.19.tgz", + "integrity": "sha512-6Ui7JSVtXadtTUo2NtkBBacobzWiQYVjYW0ZnKaP9S1ZCKQ0w7KVNz+YSDI/j7O7KCMHbOkz94ZMQhbT9pOqjw==", + "dev": true, + "dependencies": { + "arg": "^5.0.1", + "bytes": "^3.0.0", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "color": "^4.0.1", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.7", + "fs-extra": "^10.0.0", + "glob-parent": "^6.0.1", + "html-tags": "^3.1.0", + "is-color-stop": "^1.1.0", + "is-glob": "^4.0.1", + "lodash": "^4.17.21", + "lodash.topath": "^4.5.2", + "modern-normalize": "^1.1.0", + "node-emoji": "^1.11.0", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss-js": "^3.0.3", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.6", + "postcss-value-parser": "^4.1.0", + "pretty-hrtime": "^1.0.3", + "purgecss": "^4.0.3", + "quick-lru": "^5.1.1", + "reduce-css-calc": "^2.1.8", + "resolve": "^1.20.0", + "tmp": "^0.2.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "autoprefixer": "^10.0.2", + "postcss": "^8.0.9" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "acorn": "^8.5.0" + }, + "peerDependenciesMeta": { + "acorn": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", + "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "dev": true, + "dependencies": { + "jest-worker": "^27.0.6", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "node_modules/vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "node_modules/watchpack": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.0.tgz", + "integrity": "sha512-MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.64.4", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz", + "integrity": "sha512-LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.0", + "webpack-sources": "^3.2.2" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", + "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.0", + "@webpack-cli/info": "^1.4.0", + "@webpack-cli/serve": "^1.6.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.2.2.tgz", + "integrity": "sha512-DjZyYrsHhkikAFNvSNKrpnziXukU1EChFAh9j4LAm6ndPLPW8cN0KhM7T+RAiOqsQ6ABfQ8hoKIs9IWMTjov+w==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.4.0.tgz", + "integrity": "sha512-+S0XRIbsopVjPFjCO8I07FXYBWYqkFmuP56ucGMTs2hA/gV4q2M9xTmNo5Tg4o8ffRR+Nm3AsXnQXxKRyYovrA==", + "dev": true, + "dependencies": { + "ansi-html-community": "^0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^3.5.2", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "del": "^6.0.0", + "express": "^4.17.1", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.0", + "internal-ip": "^6.2.0", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "portfinder": "^1.0.28", + "schema-utils": "^3.1.0", + "selfsigned": "^1.10.11", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "strip-ansi": "^7.0.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^5.2.1", + "ws": "^8.1.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-notifier": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.14.1.tgz", + "integrity": "sha512-OVOoiOyKHS3z9pN1nLdPY2Pf/R3wiBsN0KiPc3K6ApwMBfHbyUomQc2Mr0naeKxfqXyCBPHfQuqpL9yoL0rgkA==", + "dev": true, + "dependencies": { + "node-notifier": "^9.0.0", + "strip-ansi": "^6.0.0" + }, + "peerDependencies": { + "@types/webpack": "^4.41.31" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpackbar": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", + "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.3", + "pretty-time": "^1.1.0", + "std-env": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "webpack": "3 || 4 || 5" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/ws": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.3.0.tgz", + "integrity": "sha512-Gs5EZtpqZzLvmIM59w4igITU57lrtYVFneaa434VROv4thzJyV6UjIL3D42lslWlI+D4KzLYnxSwtfuiO79sNw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.2.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz", + "integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true + }, + "@babel/core": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", + "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helpers": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", + "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz", + "integrity": "sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", + "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz", + "integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz", + "integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz", + "integrity": "sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-wrap-function": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz", + "integrity": "sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helpers": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "dev": true, + "requires": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.2", + "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", + "integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.0", + "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", + "integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz", + "integrity": "sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz", + "integrity": "sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.0.tgz", + "integrity": "sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz", + "integrity": "sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz", + "integrity": "sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz", + "integrity": "sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz", + "integrity": "sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz", + "integrity": "sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz", + "integrity": "sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.0.tgz", + "integrity": "sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.0" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz", + "integrity": "sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz", + "integrity": "sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz", + "integrity": "sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz", + "integrity": "sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz", + "integrity": "sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz", + "integrity": "sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz", + "integrity": "sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz", + "integrity": "sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz", + "integrity": "sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz", + "integrity": "sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz", + "integrity": "sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz", + "integrity": "sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz", + "integrity": "sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz", + "integrity": "sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz", + "integrity": "sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz", + "integrity": "sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz", + "integrity": "sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz", + "integrity": "sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz", + "integrity": "sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz", + "integrity": "sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz", + "integrity": "sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.16.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz", + "integrity": "sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.15.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz", + "integrity": "sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz", + "integrity": "sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz", + "integrity": "sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz", + "integrity": "sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz", + "integrity": "sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz", + "integrity": "sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz", + "integrity": "sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz", + "integrity": "sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz", + "integrity": "sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz", + "integrity": "sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz", + "integrity": "sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz", + "integrity": "sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz", + "integrity": "sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz", + "integrity": "sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz", + "integrity": "sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz", + "integrity": "sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.4.tgz", + "integrity": "sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.3", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.2", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-async-generator-functions": "^7.16.4", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-class-static-block": "^7.16.0", + "@babel/plugin-proposal-dynamic-import": "^7.16.0", + "@babel/plugin-proposal-export-namespace-from": "^7.16.0", + "@babel/plugin-proposal-json-strings": "^7.16.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-object-rest-spread": "^7.16.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.0", + "@babel/plugin-transform-async-to-generator": "^7.16.0", + "@babel/plugin-transform-block-scoped-functions": "^7.16.0", + "@babel/plugin-transform-block-scoping": "^7.16.0", + "@babel/plugin-transform-classes": "^7.16.0", + "@babel/plugin-transform-computed-properties": "^7.16.0", + "@babel/plugin-transform-destructuring": "^7.16.0", + "@babel/plugin-transform-dotall-regex": "^7.16.0", + "@babel/plugin-transform-duplicate-keys": "^7.16.0", + "@babel/plugin-transform-exponentiation-operator": "^7.16.0", + "@babel/plugin-transform-for-of": "^7.16.0", + "@babel/plugin-transform-function-name": "^7.16.0", + "@babel/plugin-transform-literals": "^7.16.0", + "@babel/plugin-transform-member-expression-literals": "^7.16.0", + "@babel/plugin-transform-modules-amd": "^7.16.0", + "@babel/plugin-transform-modules-commonjs": "^7.16.0", + "@babel/plugin-transform-modules-systemjs": "^7.16.0", + "@babel/plugin-transform-modules-umd": "^7.16.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.0", + "@babel/plugin-transform-new-target": "^7.16.0", + "@babel/plugin-transform-object-super": "^7.16.0", + "@babel/plugin-transform-parameters": "^7.16.3", + "@babel/plugin-transform-property-literals": "^7.16.0", + "@babel/plugin-transform-regenerator": "^7.16.0", + "@babel/plugin-transform-reserved-words": "^7.16.0", + "@babel/plugin-transform-shorthand-properties": "^7.16.0", + "@babel/plugin-transform-spread": "^7.16.0", + "@babel/plugin-transform-sticky-regex": "^7.16.0", + "@babel/plugin-transform-template-literals": "^7.16.0", + "@babel/plugin-transform-typeof-symbol": "^7.16.0", + "@babel/plugin-transform-unicode-escapes": "^7.16.0", + "@babel/plugin-transform-unicode-regex": "^7.16.0", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.0", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.19.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/traverse": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", + "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.3", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz", + "integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==", + "dev": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true + }, + "@types/babel__core": { + "version": "7.1.16", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz", + "integrity": "sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/clean-css": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.5.tgz", + "integrity": "sha512-NEzjkGGpbs9S9fgC4abuBvTpVwE3i+Acu9BBod3PUyjDVZcNsGx61b8r2PphR61QGPnn0JHVs5ey6/I4eTrkxw==", + "dev": true, + "requires": { + "@types/node": "*", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/eslint": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz", + "integrity": "sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/http-proxy": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz", + "integrity": "sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/imagemin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@types/imagemin/-/imagemin-8.0.0.tgz", + "integrity": "sha512-B9X2CUeDv/uUeY9CqkzSTfmsLkeJP6PkmXlh4lODBbf9SwpmNuLS30WzUOi863dgsjY3zt3gY5q2F+UdifRi1A==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/imagemin-gifsicle": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-gifsicle/-/imagemin-gifsicle-7.0.1.tgz", + "integrity": "sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-mozjpeg": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-mozjpeg/-/imagemin-mozjpeg-8.0.1.tgz", + "integrity": "sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-optipng": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz", + "integrity": "sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==", + "dev": true, + "requires": { + "@types/imagemin": "*" + } + }, + "@types/imagemin-svgo": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@types/imagemin-svgo/-/imagemin-svgo-8.0.1.tgz", + "integrity": "sha512-YafkdrVAcr38U0Ln1C+L1n4SIZqC47VBHTyxCq7gTUSd1R9MdIvMcrljWlgU1M9O68WZDeQWUrKipKYfEOCOvQ==", + "dev": true, + "requires": { + "@types/imagemin": "*", + "@types/svgo": "^1" + } + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/retry": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz", + "integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==", + "dev": true + }, + "@types/svgo": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@types/svgo/-/svgo-1.3.6.tgz", + "integrity": "sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz", + "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==", + "dev": true + }, + "@webpack-cli/info": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz", + "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==", + "dev": true, + "requires": { + "envinfo": "^7.7.3" + } + }, + "@webpack-cli/serve": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz", + "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==", + "dev": true + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "autoprefixer": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz", + "integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==", + "dev": true, + "requires": { + "browserslist": "^4.17.5", + "caniuse-lite": "^1.0.30001272", + "fraction.js": "^4.1.1", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.1.0" + } + }, + "axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dev": true, + "requires": { + "follow-redirects": "^1.14.0" + } + }, + "babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz", + "integrity": "sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.18.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==", + "dev": true + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001283", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001283.tgz", + "integrity": "sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "dev": true + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "clean-css": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz", + "integrity": "sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-table3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz", + "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==", + "dev": true, + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "collect.js": { + "version": "4.29.3", + "resolved": "https://registry.npmjs.org/collect.js/-/collect.js-4.29.3.tgz", + "integrity": "sha512-/6idZ7r3B25Q4cForbiHJ7+aqupcgMEtrKRn9D3viCbLw+YuNFjd23HwDH89Y2cU4jlhkwksD80nZFKtNE25Gw==", + "dev": true + }, + "color": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/color/-/color-4.0.2.tgz", + "integrity": "sha512-fSu0jW2aKQG2FHlDywqdFPdabJHsUdZ0xabSt3wFZdcgRKtLnUHs19nUtuFuLGVMFhINGgfZEIjbUOsGZXGu7Q==", + "dev": true, + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.7.4" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-string": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.8.1.tgz", + "integrity": "sha512-AGfGNQbnXlYqPStIx3QB2XA3Wy8vjbreqklmCiGVwcoHSLN5KIpDZDflYnXlBliKHI8CTBX3PsCgG+xfZgqK8A==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colord": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.1.tgz", + "integrity": "sha512-4LBMSt09vR0uLnPVkOUBnmxgoaeN4ewRbx801wY/bXcltXfpR/G46OdWn96XpYmCWuYvO46aBZP4NgX8HpNAcw==", + "dev": true + }, + "colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true, + "optional": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "concat": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/concat/-/concat-1.0.3.tgz", + "integrity": "sha1-QPM1MInWVGdpXLGIa0Xt1jfYzKg=", + "dev": true, + "requires": { + "commander": "^2.9.0" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", + "dev": true + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "core-js-compat": { + "version": "3.19.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.1.tgz", + "integrity": "sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==", + "dev": true, + "requires": { + "browserslist": "^4.17.6", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", + "dev": true + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + }, + "css-declaration-sorter": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.1.3.tgz", + "integrity": "sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA==", + "dev": true, + "requires": { + "timsort": "^0.3.0" + } + }, + "css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", + "dev": true + }, + "css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.12.tgz", + "integrity": "sha512-U38V4x2iJ3ijPdeWqUrEr4eKBB5PbEKsNP5T8xcik2Au3LeMtiMHX0i2Hu9k51FcKofNZumbrcdC6+a521IUHg==", + "dev": true, + "requires": { + "cssnano-preset-default": "^5.1.8", + "is-resolvable": "^1.1.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.8.tgz", + "integrity": "sha512-zWMlP0+AMPBVE852SqTrP0DnhTcTA2C1wAF92TKZ3Va+aUVqLIhkqKlnJIXXdqXD7RN+S1ujuWmNpvrJBiM/vg==", + "dev": true, + "requires": { + "css-declaration-sorter": "^6.0.3", + "cssnano-utils": "^2.0.1", + "postcss-calc": "^8.0.0", + "postcss-colormin": "^5.2.1", + "postcss-convert-values": "^5.0.2", + "postcss-discard-comments": "^5.0.1", + "postcss-discard-duplicates": "^5.0.1", + "postcss-discard-empty": "^5.0.1", + "postcss-discard-overridden": "^5.0.1", + "postcss-merge-longhand": "^5.0.4", + "postcss-merge-rules": "^5.0.3", + "postcss-minify-font-values": "^5.0.1", + "postcss-minify-gradients": "^5.0.3", + "postcss-minify-params": "^5.0.2", + "postcss-minify-selectors": "^5.1.0", + "postcss-normalize-charset": "^5.0.1", + "postcss-normalize-display-values": "^5.0.1", + "postcss-normalize-positions": "^5.0.1", + "postcss-normalize-repeat-style": "^5.0.1", + "postcss-normalize-string": "^5.0.1", + "postcss-normalize-timing-functions": "^5.0.1", + "postcss-normalize-unicode": "^5.0.1", + "postcss-normalize-url": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.1", + "postcss-ordered-values": "^5.0.2", + "postcss-reduce-initial": "^5.0.2", + "postcss-reduce-transforms": "^5.0.1", + "postcss-svgo": "^5.0.3", + "postcss-unique-selectors": "^5.0.2" + } + }, + "cssnano-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz", + "integrity": "sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + } + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "requires": { + "execa": "^5.0.0" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "dev": true, + "requires": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "dependencies": { + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "dev": true, + "requires": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "dependencies": { + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + } + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.4.tgz", + "integrity": "sha512-teHtgwcmVcL46jlFvAaqjyiTLWuMrUQO1JqV303JKB4ysXG6m8fXSFhbjal9st0r9mNskI22AraJZorb1VcLVg==", + "dev": true + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dev": true, + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", + "integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "follow-redirects": { + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", + "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", + "dev": true + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fraction.js": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz", + "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==", + "dev": true + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=", + "dev": true + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "html-entities": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.2.tgz", + "integrity": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==", + "dev": true + }, + "html-loader": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-1.3.2.tgz", + "integrity": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==", + "dev": true, + "requires": { + "html-minifier-terser": "^5.1.1", + "htmlparser2": "^4.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dev": true, + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + } + } + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "dev": true + }, + "htmlparser2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", + "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^3.0.0", + "domutils": "^2.0.0", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "http-parser-js": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.5.tgz", + "integrity": "sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz", + "integrity": "sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg==", + "dev": true, + "requires": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true + }, + "imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "requires": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + } + }, + "img-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/img-loader/-/img-loader-4.0.0.tgz", + "integrity": "sha512-UwRcPQdwdOyEHyCxe1V9s9YFwInwEWCpoO+kJGfIqDrBDqA8jZUsEZTxQ0JteNPGw/Gupmwesk2OhLTcnw6tnQ==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "immutable": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz", + "integrity": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==", + "dev": true + }, + "import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", + "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", + "dev": true, + "requires": { + "import-from": "^3.0.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "import-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "internal-ip": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-6.2.0.tgz", + "integrity": "sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==", + "dev": true, + "requires": { + "default-gateway": "^6.0.0", + "ipaddr.js": "^1.9.1", + "is-ip": "^3.1.0", + "p-event": "^4.2.0" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } + } + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", + "dev": true + }, + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-ip": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", + "integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==", + "dev": true, + "requires": { + "ip-regex": "^4.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "jest-worker": { + "version": "27.3.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz", + "integrity": "sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true + }, + "laravel-mix": { + "version": "6.0.39", + "resolved": "https://registry.npmjs.org/laravel-mix/-/laravel-mix-6.0.39.tgz", + "integrity": "sha512-ChTRKSNx9ViD3Xw1+BDQUZ0PLETcBrXlM7vNmomoDUZBXLUurVUJ9oaRUdGmH/WENNqL0qQ8FFxjq+6U368Nlg==", + "dev": true, + "requires": { + "@babel/core": "^7.15.8", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.15.8", + "@babel/preset-env": "^7.15.8", + "@babel/runtime": "^7.15.4", + "@types/babel__core": "^7.1.16", + "@types/clean-css": "^4.2.5", + "@types/imagemin-gifsicle": "^7.0.1", + "@types/imagemin-mozjpeg": "^8.0.1", + "@types/imagemin-optipng": "^5.2.1", + "@types/imagemin-svgo": "^8.0.0", + "autoprefixer": "^10.4.0", + "babel-loader": "^8.2.3", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "clean-css": "^4.2.3 || ^5.1.2", + "cli-table3": "^0.6.0", + "collect.js": "^4.28.5", + "commander": "^7.2.0", + "concat": "^1.0.3", + "css-loader": "^5.2.6", + "cssnano": "^5.0.8", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "html-loader": "^1.3.2", + "imagemin": "^7.0.1", + "img-loader": "^4.0.0", + "lodash": "^4.17.21", + "md5": "^2.3.0", + "mini-css-extract-plugin": "^1.6.2", + "node-libs-browser": "^2.2.1", + "postcss-load-config": "^3.1.0", + "postcss-loader": "^6.2.0", + "semver": "^7.3.5", + "strip-ansi": "^6.0.0", + "style-loader": "^2.0.0", + "terser": "^5.9.0", + "terser-webpack-plugin": "^5.2.4", + "vue-style-loader": "^4.1.3", + "webpack": "^5.60.0", + "webpack-cli": "^4.9.1", + "webpack-dev-server": "4.4.0", + "webpack-merge": "^5.8.0", + "webpack-notifier": "^1.14.1", + "webpackbar": "^5.0.0-3", + "yargs": "^17.2.1" + } + }, + "lilconfig": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.4.tgz", + "integrity": "sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.topath": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", + "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memfs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz", + "integrity": "sha512-o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA==", + "dev": true, + "requires": { + "fs-monkey": "1.0.3" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "dev": true + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dev": true, + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "modern-normalize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", + "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-emoji": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", + "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "dev": true, + "requires": { + "lodash": "^4.17.21" + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node-notifier": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz", + "integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==", + "dev": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } + } + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-hash": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", + "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "p-event": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", + "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "dev": true, + "requires": { + "p-timeout": "^3.1.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true + }, + "p-retry": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz", + "integrity": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==", + "dev": true, + "requires": { + "@types/retry": "^0.12.0", + "retry": "^0.13.1" + } + }, + "p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "postcss": { + "version": "8.4.4", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.4.tgz", + "integrity": "sha512-joU6fBsN6EIer28Lj6GDFoC/5yOZzLCfn0zHAn/MYXI7aPt4m4hK5KC5ovEZXy+lnCjmYIbQWngvju2ddyEr8Q==", + "dev": true, + "requires": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + } + }, + "postcss-calc": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz", + "integrity": "sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-colormin": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.1.tgz", + "integrity": "sha512-VVwMrEYLcHYePUYV99Ymuoi7WhKrMGy/V9/kTS0DkCoJYmmjdOMneyhzYUxcNgteKDVbrewOkSM7Wje/MFwxzA==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-convert-values": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", + "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-discard-comments": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", + "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==", + "dev": true + }, + "postcss-discard-duplicates": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", + "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==", + "dev": true + }, + "postcss-discard-empty": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", + "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==", + "dev": true + }, + "postcss-discard-overridden": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz", + "integrity": "sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==", + "dev": true + }, + "postcss-js": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", + "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", + "dev": true, + "requires": { + "camelcase-css": "^2.0.1", + "postcss": "^8.1.6" + } + }, + "postcss-load-config": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", + "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", + "dev": true, + "requires": { + "import-cwd": "^3.0.0", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + } + }, + "postcss-merge-longhand": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", + "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0", + "stylehacks": "^5.0.1" + } + }, + "postcss-merge-rules": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.3.tgz", + "integrity": "sha512-cEKTMEbWazVa5NXd8deLdCnXl+6cYG7m2am+1HzqH0EnTdy8fRysatkaXb2dEnR+fdaDxTvuZ5zoBdv6efF6hg==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^2.0.1", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-minify-font-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz", + "integrity": "sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-gradients": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.3.tgz", + "integrity": "sha512-Z91Ol22nB6XJW+5oe31+YxRsYooxOdFKcbOqY/V8Fxse1Y3vqlNRpi1cxCqoACZTQEhl+xvt4hsbWiV5R+XI9Q==", + "dev": true, + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-params": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.2.tgz", + "integrity": "sha512-qJAPuBzxO1yhLad7h2Dzk/F7n1vPyfHfCCh5grjGfjhi1ttCnq4ZXGIW77GSrEbh9Hus9Lc/e/+tB4vh3/GpDg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "browserslist": "^4.16.6", + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-minify-selectors": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz", + "integrity": "sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.6" + } + }, + "postcss-normalize-charset": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", + "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==", + "dev": true + }, + "postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-positions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz", + "integrity": "sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz", + "integrity": "sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-string": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz", + "integrity": "sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz", + "integrity": "sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz", + "integrity": "sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==", + "dev": true, + "requires": { + "browserslist": "^4.16.0", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-url": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.3.tgz", + "integrity": "sha512-qWiUMbvkRx3kc1Dp5opzUwc7MBWZcSDK2yofCmdvFBCpx+zFPkxBC1FASQ59Pt+flYfj/nTZSkmF56+XG5elSg==", + "dev": true, + "requires": { + "is-absolute-url": "^3.0.3", + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz", + "integrity": "sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-ordered-values": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz", + "integrity": "sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-reduce-initial": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.2.tgz", + "integrity": "sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz", + "integrity": "sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==", + "dev": true, + "requires": { + "cssnano-utils": "^2.0.1", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-scss": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.2.tgz", + "integrity": "sha512-xfdkU128CkKKKVAwkyt0M8OdnelJ3MRcIRAPPQkRpoPeuzWY3RIeg7piRCpZ79MK7Q16diLXMMAD9dN5mauPlQ==" + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.3.tgz", + "integrity": "sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.1.0", + "svgo": "^2.7.0" + } + }, + "postcss-unique-selectors": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", + "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.2", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true + }, + "pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } + } + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "dev": true + } + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "purgecss": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.1.3.tgz", + "integrity": "sha512-99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw==", + "dev": true, + "requires": { + "commander": "^8.0.0", + "glob": "^7.1.7", + "postcss": "^8.3.5", + "postcss-selector-parser": "^6.0.6" + }, + "dependencies": { + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + } + } + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "requires": { + "resolve": "^1.9.0" + } + }, + "reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "dev": true, + "requires": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dev": true, + "requires": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sass": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.44.0.tgz", + "integrity": "sha512-0hLREbHFXGQqls/K8X+koeP+ogFRPF4ZqetVB19b7Cst9Er8cOR0rc6RU7MaI4W1JmUShd1BPgPoeqmmgMMYFw==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0" + } + }, + "sass-loader": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.3.0.tgz", + "integrity": "sha512-6l9qwhdOb7qSrtOu96QQ81LVl8v6Dp9j1w3akOm0aWHyrTYtagDt5+kS32N4yq4hHk3M+rdqoRMH+lIdqvW6HA==", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==", + "dev": true + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "std-env": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz", + "integrity": "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==", + "dev": true + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "stylehacks": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", + "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "dev": true, + "requires": { + "browserslist": "^4.16.0", + "postcss-selector-parser": "^6.0.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + }, + "tailwindcss": { + "version": "2.2.19", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.19.tgz", + "integrity": "sha512-6Ui7JSVtXadtTUo2NtkBBacobzWiQYVjYW0ZnKaP9S1ZCKQ0w7KVNz+YSDI/j7O7KCMHbOkz94ZMQhbT9pOqjw==", + "dev": true, + "requires": { + "arg": "^5.0.1", + "bytes": "^3.0.0", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "color": "^4.0.1", + "cosmiconfig": "^7.0.1", + "detective": "^5.2.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.7", + "fs-extra": "^10.0.0", + "glob-parent": "^6.0.1", + "html-tags": "^3.1.0", + "is-color-stop": "^1.1.0", + "is-glob": "^4.0.1", + "lodash": "^4.17.21", + "lodash.topath": "^4.5.2", + "modern-normalize": "^1.1.0", + "node-emoji": "^1.11.0", + "normalize-path": "^3.0.0", + "object-hash": "^2.2.0", + "postcss-js": "^3.0.3", + "postcss-load-config": "^3.1.0", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.6", + "postcss-value-parser": "^4.1.0", + "pretty-hrtime": "^1.0.3", + "purgecss": "^4.0.3", + "quick-lru": "^5.1.1", + "reduce-css-calc": "^2.1.8", + "resolve": "^1.20.0", + "tmp": "^0.2.1" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + } + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", + "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "dev": true, + "requires": { + "jest-worker": "^27.0.6", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + } + } + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "watchpack": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.0.tgz", + "integrity": "sha512-MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webpack": { + "version": "5.64.4", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz", + "integrity": "sha512-LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.0", + "webpack-sources": "^3.2.2" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==", + "dev": true + } + } + }, + "webpack-cli": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", + "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.0", + "@webpack-cli/info": "^1.4.0", + "@webpack-cli/serve": "^1.6.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + } + }, + "webpack-dev-middleware": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.2.2.tgz", + "integrity": "sha512-DjZyYrsHhkikAFNvSNKrpnziXukU1EChFAh9j4LAm6ndPLPW8cN0KhM7T+RAiOqsQ6ABfQ8hoKIs9IWMTjov+w==", + "dev": true, + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.2.2", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "webpack-dev-server": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.4.0.tgz", + "integrity": "sha512-+S0XRIbsopVjPFjCO8I07FXYBWYqkFmuP56ucGMTs2hA/gV4q2M9xTmNo5Tg4o8ffRR+Nm3AsXnQXxKRyYovrA==", + "dev": true, + "requires": { + "ansi-html-community": "^0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^3.5.2", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "del": "^6.0.0", + "express": "^4.17.1", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.0", + "internal-ip": "^6.2.0", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "portfinder": "^1.0.28", + "schema-utils": "^3.1.0", + "selfsigned": "^1.10.11", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "spdy": "^4.0.2", + "strip-ansi": "^7.0.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^5.2.1", + "ws": "^8.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-notifier": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/webpack-notifier/-/webpack-notifier-1.14.1.tgz", + "integrity": "sha512-OVOoiOyKHS3z9pN1nLdPY2Pf/R3wiBsN0KiPc3K6ApwMBfHbyUomQc2Mr0naeKxfqXyCBPHfQuqpL9yoL0rgkA==", + "dev": true, + "requires": { + "node-notifier": "^9.0.0", + "strip-ansi": "^6.0.0" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "webpackbar": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", + "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "consola": "^2.15.3", + "pretty-time": "^1.1.0", + "std-env": "^3.0.1" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "ws": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.3.0.tgz", + "integrity": "sha512-Gs5EZtpqZzLvmIM59w4igITU57lrtYVFneaa434VROv4thzJyV6UjIL3D42lslWlI+D4KzLYnxSwtfuiO79sNw==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "17.2.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.2.1.tgz", + "integrity": "sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } +} diff --git a/src/package.json b/src/package.json new file mode 100644 index 0000000..296ffcc --- /dev/null +++ b/src/package.json @@ -0,0 +1,26 @@ +{ + "private": true, + "scripts": { + "dev": "npm run development", + "development": "mix", + "watch": "mix watch", + "watch-poll": "mix watch -- --watch-options-poll=1000", + "hot": "mix watch --hot", + "prod": "npm run production", + "production": "mix --production" + }, + "devDependencies": { + "autoprefixer": "^10.4.0", + "axios": "^0.21", + "laravel-mix": "^6.0.6", + "lodash": "^4.17.19", + "postcss": "^8.4.4", + "resolve-url-loader": "^4.0.0", + "sass": "^1.44.0", + "sass-loader": "^12.3.0", + "tailwindcss": "^2.2.19" + }, + "dependencies": { + "postcss-scss": "^4.0.2" + } +} diff --git a/src/phpunit.xml b/src/phpunit.xml new file mode 100644 index 0000000..4ae4d97 --- /dev/null +++ b/src/phpunit.xml @@ -0,0 +1,31 @@ + + + + + ./tests/Unit + + + ./tests/Feature + + + + + ./app + + + + + + + + + + + + + + diff --git a/src/public/.htaccess b/src/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/src/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/src/public/css/app.css b/src/public/css/app.css new file mode 100644 index 0000000..34ec805 --- /dev/null +++ b/src/public/css/app.css @@ -0,0 +1,265 @@ +body { + margin: 0; + padding: 0; +} + +.linkpage { + height: 100vh; + width: 100vw; + background: linear-gradient(165deg, #c7a25c 0%, #ff9601 43%, #980d0d 100%); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: "JetBrains Mono", monospace; +} +.linkpage img { + height: 13rem; + width: 13rem; + border-radius: 15%; +} +.linkpage p.username { + font-size: 2rem; + font-weight: bold; + margin: 0.125rem; + color: white; +} + +.links { + display: flex; + flex-direction: column; + text-align: center; + font-family: "JetBrains Mono", monospace; + font-weight: bolder; + width: 40rem; + max-width: 50%; + min-width: 13rem; +} + +.link { + text-decoration: none; + font-size: 1.5rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + margin-top: 1rem; +} + +.link-default { + border: solid white 0.2rem; + color: white; +} + +.link-default:hover { + background-color: white; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-youtube { + border: solid #FF0000 0.2rem; + color: #FF0000; +} + +.link-youtube:hover { + background-color: #FF0000; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-pinterest { + border: solid #bd081c 0.2rem; + color: #bd081c; +} + +.link-pinterest:hover { + background-color: #bd081c; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-twitter { + border: solid #00acee 0.2rem; + color: #00acee; +} + +.link-twitter:hover { + background-color: #00acee; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-tiktok { + border: solid #69c9d0 0.2rem; + color: #69c9d0; +} + +.link-tiktok:hover { + background-color: #69c9d0; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-telegram { + border: solid #3b5998 0.2rem; + color: #3b5998; +} + +.link-telegram:hover { + background-color: #3b5998; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-linkedin { + border: solid #2867B2 0.2rem; + color: #2867B2; +} + +.link-linkedin:hover { + background-color: #2867B2; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-mastodon { + border: solid #2b90d9 0.2rem; + color: #2b90d9; +} + +.link-mastodon:hover { + background-color: #2b90d9; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-tumblr { + border: solid #35465d 0.2rem; + color: #35465d; +} + +.link-tumblr:hover { + background-color: #35465d; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-discord { + border: solid #7289da 0.2rem; + color: #7289da; +} + +.link-discord:hover { + background-color: #7289da; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-twitch { + border: solid #9146FF 0.2rem; + color: #9146FF; +} + +.link-twitch:hover { + background-color: #9146FF; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-instagram { + border: solid #833AB4 0.2rem; + color: #833AB4; +} + +.link-instagram:hover { + background-color: #833AB4; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-flickr { + border: solid #f40083 0.2rem; + color: #f40083; +} + +.link-flickr:hover { + background-color: #f40083; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-deviantart { + border: solid #05CC46 0.2rem; + color: #05CC46; +} + +.link-deviantart:hover { + background-color: #05CC46; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-spotify { + border: solid #1ed760 0.2rem; + color: #1ed760; +} + +.link-spotify:hover { + background-color: #1ed760; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-snapchat { + border: solid #fffc00 0.2rem; + color: #fffc00; +} + +.link-snapchat:hover { + background-color: #fffc00; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-reddit { + border: solid #ff4500 0.2rem; + color: #ff4500; +} + +.link-reddit:hover { + background-color: #ff4500; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-soundcloud { + border: solid #ff5500 0.2rem; + color: #ff5500; +} + +.link-soundcloud:hover { + background-color: #ff5500; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-vk { + border: solid #4a76a8 0.2rem; + color: #4a76a8; +} + +.link-vk:hover { + background-color: #4a76a8; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} + +.link-steam { + border: solid #171A21 0.2rem; + color: #171A21; +} + +.link-steam:hover { + background-color: #171A21; + color: #ff9601; + transition: color, background-color ease-in-out 0.25s; +} diff --git a/src/public/favicon.ico b/src/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/src/public/fonts/JetBrainsMono-Bold.woff2 b/src/public/fonts/JetBrainsMono-Bold.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..023512c051ea83dc4b5b147f4a211e1869d53ad5 GIT binary patch literal 71180 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%0DiFJsm-;1AfyF?s*v3;=2H4im8{W-_-VVsf-; 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 YVRMAb83ue;i z|4H3F>ovhzUNgS`+WmzPhJGF+ohli0&JN!4rSm)poz)7F4@>6{|ACxb{XJ!B3boGU z-tzJGWgPc_cJ8xmJ$O8)!$aU{$zMHIjC8(QwP=XR02Un?DSnBB#C6;#&{QqQXF zF%PfjTEZT5`*~2y(dT~>t51Zzu{Lq}{M^r@-(qk^uE}i`spx{{#Cul%+yqhUHQV&FzQ{#+3lv15=v2F*frPnjeM$+@$% za+4`aeCQu+S~-rpk*KmSvS+O@=c=UYeG(l+eS>IqBP*pf4qjmZs8(x^{ZsW<0=##o~!)_)!D{TFJdoM1klV z1ZvGdP8P2MCZ;7sUdyj64$#xugX@>TdB$KN*JRt<)H6zHE+VYCDvDxjnrwv0Cs&4K z%&kIIy#>)`X+$BHP{uk-D~~dlMegkBm5}O1r+xuu`9T6(s8s`rk*fkHmtfnOS|hXA zp;z24UG)*nLBnEGASbC;Hmb{9?sc6;wqDYREH5(S391eDJcNlOy$~FJYi$KhJzn~} zqsvpit;v{g)DDYNvaj?}s z@Rw3FmyP0@@T@dM)MSw_rPwEQh-qTTPW{$AfJhY8shr9b{vnab$Y~7M5#yL!@ew{n z21BMi)Ew{V;Q2=35d*wDL~<`J!t}$?=-`K*d8pW-Uu5A#M$qs*#QdhAh70(e5;AYB z`QtbdyjDE(>G2fDs2+V2ngRckNSoB89s0$Cw_ZfwG|Yv$F~h$}-sjR>I!@cn>**|E z4;rNc5UOU{90;jd%W4%4tD=$cC%$~S^%8*(o*U?&ilffEOHfDM4a~mfr-1rt_A^UQ z3X8xuLN$U^C-4|+T(gad6+$I1{~2E&^|0HAy}mep*}p7CC~zRus~Zs?L8yBl1TgP= zAoV|yYa%i-^=LjH(*KqQkh3uFmFZIOT=$M9K_p9h<~dqQ@2(^CS8QdSN?|24PY}S| WOYE&R^8P1|W&fi1R)ClX000114L)K3 literal 0 HcmV?d00001 diff --git a/src/public/fonts/JetBrainsMono-SemiBold.woff2 b/src/public/fonts/JetBrainsMono-SemiBold.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..fce8cd8053c3675478cef2f097b37ac97f9d4c6d GIT binary patch literal 70820 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

GI;tXZIcky~2Ft2! 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 eg$$2kF{!8=UErkKfG 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

i7V?zjo86kS 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�^5@yZrMaN=TU(qR;vVPI5=cmNpiL4TGI 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

q3o=YO&g{2&S|L3{=oc%>*A;RzkdcCLVqeNp7X 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 literal 0 HcmV?d00001 diff --git a/src/public/index.php b/src/public/index.php new file mode 100644 index 0000000..002ee24 --- /dev/null +++ b/src/public/index.php @@ -0,0 +1,55 @@ +make(Kernel::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response); diff --git a/src/public/js/app.js b/src/public/js/app.js new file mode 100644 index 0000000..b3b6263 --- /dev/null +++ b/src/public/js/app.js @@ -0,0 +1,19694 @@ +/******/ (() => { // webpackBootstrap +/******/ var __webpack_modules__ = ({ + +/***/ "./node_modules/axios/index.js": +/*!*************************************!*\ + !*** ./node_modules/axios/index.js ***! + \*************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +module.exports = __webpack_require__(/*! ./lib/axios */ "./node_modules/axios/lib/axios.js"); + +/***/ }), + +/***/ "./node_modules/axios/lib/adapters/xhr.js": +/*!************************************************!*\ + !*** ./node_modules/axios/lib/adapters/xhr.js ***! + \************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); +var settle = __webpack_require__(/*! ./../core/settle */ "./node_modules/axios/lib/core/settle.js"); +var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./node_modules/axios/lib/helpers/cookies.js"); +var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js"); +var buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ "./node_modules/axios/lib/core/buildFullPath.js"); +var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./node_modules/axios/lib/helpers/parseHeaders.js"); +var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./node_modules/axios/lib/helpers/isURLSameOrigin.js"); +var createError = __webpack_require__(/*! ../core/createError */ "./node_modules/axios/lib/core/createError.js"); + +module.exports = function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + var requestData = config.data; + var requestHeaders = config.headers; + var responseType = config.responseType; + + if (utils.isFormData(requestData)) { + delete requestHeaders['Content-Type']; // Let the browser set it + } + + var request = new XMLHttpRequest(); + + // HTTP basic authentication + if (config.auth) { + var username = config.auth.username || ''; + var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password); + } + + var fullPath = buildFullPath(config.baseURL, config.url); + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); + + // Set the request timeout in MS + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } + // Prepare the response + var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null; + var responseData = !responseType || responseType === 'text' || responseType === 'json' ? + request.responseText : request.response; + var response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config: config, + request: request + }; + + settle(resolve, reject, response); + + // Clean up request + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } + // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + setTimeout(onloadend); + }; + } + + // Handle browser request cancellation (as opposed to a manual cancellation) + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(createError('Request aborted', config, 'ECONNABORTED', request)); + + // Clean up request + request = null; + }; + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(createError('Network Error', config, null, request)); + + // Clean up request + request = null; + }; + + // Handle timeout + request.ontimeout = function handleTimeout() { + var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded'; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(createError( + timeoutErrorMessage, + config, + config.transitional && config.transitional.clarifyTimeoutError ? 'ETIMEDOUT' : 'ECONNABORTED', + request)); + + // Clean up request + request = null; + }; + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (utils.isStandardBrowserEnv()) { + // Add xsrf header + var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ? + cookies.read(config.xsrfCookieName) : + undefined; + + if (xsrfValue) { + requestHeaders[config.xsrfHeaderName] = xsrfValue; + } + } + + // Add headers to the request + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders, function setRequestHeader(val, key) { + if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') { + // Remove Content-Type if data is undefined + delete requestHeaders[key]; + } else { + // Otherwise add header to the request + request.setRequestHeader(key, val); + } + }); + } + + // Add withCredentials to request if needed + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } + + // Add responseType to request if needed + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', config.onDownloadProgress); + } + + // Not all browsers support upload events + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', config.onUploadProgress); + } + + if (config.cancelToken) { + // Handle cancellation + config.cancelToken.promise.then(function onCanceled(cancel) { + if (!request) { + return; + } + + request.abort(); + reject(cancel); + // Clean up request + request = null; + }); + } + + if (!requestData) { + requestData = null; + } + + // Send the request + request.send(requestData); + }); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/axios.js": +/*!*****************************************!*\ + !*** ./node_modules/axios/lib/axios.js ***! + \*****************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js"); +var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js"); +var Axios = __webpack_require__(/*! ./core/Axios */ "./node_modules/axios/lib/core/Axios.js"); +var mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js"); +var defaults = __webpack_require__(/*! ./defaults */ "./node_modules/axios/lib/defaults.js"); + +/** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * @return {Axios} A new instance of Axios + */ +function createInstance(defaultConfig) { + var context = new Axios(defaultConfig); + var instance = bind(Axios.prototype.request, context); + + // Copy axios.prototype to instance + utils.extend(instance, Axios.prototype, context); + + // Copy context to instance + utils.extend(instance, context); + + return instance; +} + +// Create the default instance to be exported +var axios = createInstance(defaults); + +// Expose Axios class to allow class inheritance +axios.Axios = Axios; + +// Factory for creating new instances +axios.create = function create(instanceConfig) { + return createInstance(mergeConfig(axios.defaults, instanceConfig)); +}; + +// Expose Cancel & CancelToken +axios.Cancel = __webpack_require__(/*! ./cancel/Cancel */ "./node_modules/axios/lib/cancel/Cancel.js"); +axios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ "./node_modules/axios/lib/cancel/CancelToken.js"); +axios.isCancel = __webpack_require__(/*! ./cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js"); + +// Expose all/spread +axios.all = function all(promises) { + return Promise.all(promises); +}; +axios.spread = __webpack_require__(/*! ./helpers/spread */ "./node_modules/axios/lib/helpers/spread.js"); + +// Expose isAxiosError +axios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ "./node_modules/axios/lib/helpers/isAxiosError.js"); + +module.exports = axios; + +// Allow use of default import syntax in TypeScript +module.exports["default"] = axios; + + +/***/ }), + +/***/ "./node_modules/axios/lib/cancel/Cancel.js": +/*!*************************************************!*\ + !*** ./node_modules/axios/lib/cancel/Cancel.js ***! + \*************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * A `Cancel` is an object that is thrown when an operation is canceled. + * + * @class + * @param {string=} message The message. + */ +function Cancel(message) { + this.message = message; +} + +Cancel.prototype.toString = function toString() { + return 'Cancel' + (this.message ? ': ' + this.message : ''); +}; + +Cancel.prototype.__CANCEL__ = true; + +module.exports = Cancel; + + +/***/ }), + +/***/ "./node_modules/axios/lib/cancel/CancelToken.js": +/*!******************************************************!*\ + !*** ./node_modules/axios/lib/cancel/CancelToken.js ***! + \******************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var Cancel = __webpack_require__(/*! ./Cancel */ "./node_modules/axios/lib/cancel/Cancel.js"); + +/** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @class + * @param {Function} executor The executor function. + */ +function CancelToken(executor) { + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + var resolvePromise; + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + + var token = this; + executor(function cancel(message) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new Cancel(message); + resolvePromise(token.reason); + }); +} + +/** + * Throws a `Cancel` if cancellation has been requested. + */ +CancelToken.prototype.throwIfRequested = function throwIfRequested() { + if (this.reason) { + throw this.reason; + } +}; + +/** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ +CancelToken.source = function source() { + var cancel; + var token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token: token, + cancel: cancel + }; +}; + +module.exports = CancelToken; + + +/***/ }), + +/***/ "./node_modules/axios/lib/cancel/isCancel.js": +/*!***************************************************!*\ + !*** ./node_modules/axios/lib/cancel/isCancel.js ***! + \***************************************************/ +/***/ ((module) => { + +"use strict"; + + +module.exports = function isCancel(value) { + return !!(value && value.__CANCEL__); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/Axios.js": +/*!**********************************************!*\ + !*** ./node_modules/axios/lib/core/Axios.js ***! + \**********************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); +var buildURL = __webpack_require__(/*! ../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js"); +var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./node_modules/axios/lib/core/InterceptorManager.js"); +var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./node_modules/axios/lib/core/dispatchRequest.js"); +var mergeConfig = __webpack_require__(/*! ./mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js"); +var validator = __webpack_require__(/*! ../helpers/validator */ "./node_modules/axios/lib/helpers/validator.js"); + +var validators = validator.validators; +/** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + */ +function Axios(instanceConfig) { + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + }; +} + +/** + * Dispatch a request + * + * @param {Object} config The config specific for this request (merged with this.defaults) + */ +Axios.prototype.request = function request(config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof config === 'string') { + config = arguments[1] || {}; + config.url = arguments[0]; + } else { + config = config || {}; + } + + config = mergeConfig(this.defaults, config); + + // Set config.method + if (config.method) { + config.method = config.method.toLowerCase(); + } else if (this.defaults.method) { + config.method = this.defaults.method.toLowerCase(); + } else { + config.method = 'get'; + } + + var transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators.boolean, '1.0.0'), + forcedJSONParsing: validators.transitional(validators.boolean, '1.0.0'), + clarifyTimeoutError: validators.transitional(validators.boolean, '1.0.0') + }, false); + } + + // filter out skipped interceptors + var requestInterceptorChain = []; + var synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + + var responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + + var promise; + + if (!synchronousRequestInterceptors) { + var chain = [dispatchRequest, undefined]; + + Array.prototype.unshift.apply(chain, requestInterceptorChain); + chain = chain.concat(responseInterceptorChain); + + promise = Promise.resolve(config); + while (chain.length) { + promise = promise.then(chain.shift(), chain.shift()); + } + + return promise; + } + + + var newConfig = config; + while (requestInterceptorChain.length) { + var onFulfilled = requestInterceptorChain.shift(); + var onRejected = requestInterceptorChain.shift(); + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected(error); + break; + } + } + + try { + promise = dispatchRequest(newConfig); + } catch (error) { + return Promise.reject(error); + } + + while (responseInterceptorChain.length) { + promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift()); + } + + return promise; +}; + +Axios.prototype.getUri = function getUri(config) { + config = mergeConfig(this.defaults, config); + return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\?/, ''); +}; + +// Provide aliases for supported request methods +utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request(mergeConfig(config || {}, { + method: method, + url: url, + data: (config || {}).data + })); + }; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, data, config) { + return this.request(mergeConfig(config || {}, { + method: method, + url: url, + data: data + })); + }; +}); + +module.exports = Axios; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/InterceptorManager.js": +/*!***********************************************************!*\ + !*** ./node_modules/axios/lib/core/InterceptorManager.js ***! + \***********************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); + +function InterceptorManager() { + this.handlers = []; +} + +/** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ +InterceptorManager.prototype.use = function use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled: fulfilled, + rejected: rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; +}; + +/** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + */ +InterceptorManager.prototype.eject = function eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } +}; + +/** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + */ +InterceptorManager.prototype.forEach = function forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); +}; + +module.exports = InterceptorManager; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/buildFullPath.js": +/*!******************************************************!*\ + !*** ./node_modules/axios/lib/core/buildFullPath.js ***! + \******************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ "./node_modules/axios/lib/helpers/isAbsoluteURL.js"); +var combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ "./node_modules/axios/lib/helpers/combineURLs.js"); + +/** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * @returns {string} The combined full path + */ +module.exports = function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + return requestedURL; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/createError.js": +/*!****************************************************!*\ + !*** ./node_modules/axios/lib/core/createError.js ***! + \****************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var enhanceError = __webpack_require__(/*! ./enhanceError */ "./node_modules/axios/lib/core/enhanceError.js"); + +/** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {Object} config The config. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * @returns {Error} The created error. + */ +module.exports = function createError(message, config, code, request, response) { + var error = new Error(message); + return enhanceError(error, config, code, request, response); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/dispatchRequest.js": +/*!********************************************************!*\ + !*** ./node_modules/axios/lib/core/dispatchRequest.js ***! + \********************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); +var transformData = __webpack_require__(/*! ./transformData */ "./node_modules/axios/lib/core/transformData.js"); +var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js"); +var defaults = __webpack_require__(/*! ../defaults */ "./node_modules/axios/lib/defaults.js"); + +/** + * Throws a `Cancel` if cancellation has been requested. + */ +function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } +} + +/** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * @returns {Promise} The Promise to be fulfilled + */ +module.exports = function dispatchRequest(config) { + throwIfCancellationRequested(config); + + // Ensure headers exist + config.headers = config.headers || {}; + + // Transform request data + config.data = transformData.call( + config, + config.data, + config.headers, + config.transformRequest + ); + + // Flatten headers + config.headers = utils.merge( + config.headers.common || {}, + config.headers[config.method] || {}, + config.headers + ); + + utils.forEach( + ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], + function cleanHeaderConfig(method) { + delete config.headers[method]; + } + ); + + var adapter = config.adapter || defaults.adapter; + + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); + + // Transform response data + response.data = transformData.call( + config, + response.data, + response.headers, + config.transformResponse + ); + + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData.call( + config, + reason.response.data, + reason.response.headers, + config.transformResponse + ); + } + } + + return Promise.reject(reason); + }); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/enhanceError.js": +/*!*****************************************************!*\ + !*** ./node_modules/axios/lib/core/enhanceError.js ***! + \*****************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * Update an Error with the specified config, error code, and response. + * + * @param {Error} error The error to update. + * @param {Object} config The config. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * @returns {Error} The error. + */ +module.exports = function enhanceError(error, config, code, request, response) { + error.config = config; + if (code) { + error.code = code; + } + + error.request = request; + error.response = response; + error.isAxiosError = true; + + error.toJSON = function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code + }; + }; + return error; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/mergeConfig.js": +/*!****************************************************!*\ + !*** ./node_modules/axios/lib/core/mergeConfig.js ***! + \****************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ../utils */ "./node_modules/axios/lib/utils.js"); + +/** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * @returns {Object} New object resulting from merging config2 to config1 + */ +module.exports = function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + var config = {}; + + var valueFromConfig2Keys = ['url', 'method', 'data']; + var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params']; + var defaultToConfig2Keys = [ + 'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer', + 'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName', + 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress', + 'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent', + 'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding' + ]; + var directMergeKeys = ['validateStatus']; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + return source; + } + + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + config[prop] = getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + config[prop] = getMergedValue(undefined, config1[prop]); + } + } + + utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + config[prop] = getMergedValue(undefined, config2[prop]); + } + }); + + utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties); + + utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + config[prop] = getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + config[prop] = getMergedValue(undefined, config1[prop]); + } + }); + + utils.forEach(directMergeKeys, function merge(prop) { + if (prop in config2) { + config[prop] = getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + config[prop] = getMergedValue(undefined, config1[prop]); + } + }); + + var axiosKeys = valueFromConfig2Keys + .concat(mergeDeepPropertiesKeys) + .concat(defaultToConfig2Keys) + .concat(directMergeKeys); + + var otherKeys = Object + .keys(config1) + .concat(Object.keys(config2)) + .filter(function filterAxiosKeys(key) { + return axiosKeys.indexOf(key) === -1; + }); + + utils.forEach(otherKeys, mergeDeepProperties); + + return config; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/settle.js": +/*!***********************************************!*\ + !*** ./node_modules/axios/lib/core/settle.js ***! + \***********************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var createError = __webpack_require__(/*! ./createError */ "./node_modules/axios/lib/core/createError.js"); + +/** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + */ +module.exports = function settle(resolve, reject, response) { + var validateStatus = response.config.validateStatus; + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(createError( + 'Request failed with status code ' + response.status, + response.config, + null, + response.request, + response + )); + } +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/core/transformData.js": +/*!******************************************************!*\ + !*** ./node_modules/axios/lib/core/transformData.js ***! + \******************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); +var defaults = __webpack_require__(/*! ./../defaults */ "./node_modules/axios/lib/defaults.js"); + +/** + * Transform the data for a request or a response + * + * @param {Object|String} data The data to be transformed + * @param {Array} headers The headers for the request or response + * @param {Array|Function} fns A single function or Array of functions + * @returns {*} The resulting transformed data + */ +module.exports = function transformData(data, headers, fns) { + var context = this || defaults; + /*eslint no-param-reassign:0*/ + utils.forEach(fns, function transform(fn) { + data = fn.call(context, data, headers); + }); + + return data; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/defaults.js": +/*!********************************************!*\ + !*** ./node_modules/axios/lib/defaults.js ***! + \********************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; +/* provided dependency */ var process = __webpack_require__(/*! process/browser.js */ "./node_modules/process/browser.js"); + + +var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js"); +var normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ "./node_modules/axios/lib/helpers/normalizeHeaderName.js"); +var enhanceError = __webpack_require__(/*! ./core/enhanceError */ "./node_modules/axios/lib/core/enhanceError.js"); + +var DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' +}; + +function setContentTypeIfUnset(headers, value) { + if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) { + headers['Content-Type'] = value; + } +} + +function getDefaultAdapter() { + var adapter; + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = __webpack_require__(/*! ./adapters/xhr */ "./node_modules/axios/lib/adapters/xhr.js"); + } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') { + // For node use HTTP adapter + adapter = __webpack_require__(/*! ./adapters/http */ "./node_modules/axios/lib/adapters/xhr.js"); + } + return adapter; +} + +function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); +} + +var defaults = { + + transitional: { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false + }, + + adapter: getDefaultAdapter(), + + transformRequest: [function transformRequest(data, headers) { + normalizeHeaderName(headers, 'Accept'); + normalizeHeaderName(headers, 'Content-Type'); + + if (utils.isFormData(data) || + utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data; + } + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + if (utils.isURLSearchParams(data)) { + setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8'); + return data.toString(); + } + if (utils.isObject(data) || (headers && headers['Content-Type'] === 'application/json')) { + setContentTypeIfUnset(headers, 'application/json'); + return stringifySafely(data); + } + return data; + }], + + transformResponse: [function transformResponse(data) { + var transitional = this.transitional; + var silentJSONParsing = transitional && transitional.silentJSONParsing; + var forcedJSONParsing = transitional && transitional.forcedJSONParsing; + var strictJSONParsing = !silentJSONParsing && this.responseType === 'json'; + + if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) { + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw enhanceError(e, this, 'E_JSON_PARSE'); + } + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + + maxContentLength: -1, + maxBodyLength: -1, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + } +}; + +defaults.headers = { + common: { + 'Accept': 'application/json, text/plain, */*' + } +}; + +utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); +}); + +module.exports = defaults; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/bind.js": +/*!************************************************!*\ + !*** ./node_modules/axios/lib/helpers/bind.js ***! + \************************************************/ +/***/ ((module) => { + +"use strict"; + + +module.exports = function bind(fn, thisArg) { + return function wrap() { + var args = new Array(arguments.length); + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i]; + } + return fn.apply(thisArg, args); + }; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/buildURL.js": +/*!****************************************************!*\ + !*** ./node_modules/axios/lib/helpers/buildURL.js ***! + \****************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); + +function encode(val) { + return encodeURIComponent(val). + replace(/%3A/gi, ':'). + replace(/%24/g, '$'). + replace(/%2C/gi, ','). + replace(/%20/g, '+'). + replace(/%5B/gi, '['). + replace(/%5D/gi, ']'); +} + +/** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @returns {string} The formatted url + */ +module.exports = function buildURL(url, params, paramsSerializer) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + var serializedParams; + if (paramsSerializer) { + serializedParams = paramsSerializer(params); + } else if (utils.isURLSearchParams(params)) { + serializedParams = params.toString(); + } else { + var parts = []; + + utils.forEach(params, function serialize(val, key) { + if (val === null || typeof val === 'undefined') { + return; + } + + if (utils.isArray(val)) { + key = key + '[]'; + } else { + val = [val]; + } + + utils.forEach(val, function parseValue(v) { + if (utils.isDate(v)) { + v = v.toISOString(); + } else if (utils.isObject(v)) { + v = JSON.stringify(v); + } + parts.push(encode(key) + '=' + encode(v)); + }); + }); + + serializedParams = parts.join('&'); + } + + if (serializedParams) { + var hashmarkIndex = url.indexOf('#'); + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams; + } + + return url; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/combineURLs.js": +/*!*******************************************************!*\ + !*** ./node_modules/axios/lib/helpers/combineURLs.js ***! + \*******************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * @returns {string} The combined URL + */ +module.exports = function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') + : baseURL; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/cookies.js": +/*!***************************************************!*\ + !*** ./node_modules/axios/lib/helpers/cookies.js ***! + \***************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); + +module.exports = ( + utils.isStandardBrowserEnv() ? + + // Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + var cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + + read: function read(name) { + var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return (match ? decodeURIComponent(match[3]) : null); + }, + + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + })() : + + // Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { return null; }, + remove: function remove() {} + }; + })() +); + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/isAbsoluteURL.js": +/*!*********************************************************!*\ + !*** ./node_modules/axios/lib/helpers/isAbsoluteURL.js ***! + \*********************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ +module.exports = function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/isAxiosError.js": +/*!********************************************************!*\ + !*** ./node_modules/axios/lib/helpers/isAxiosError.js ***! + \********************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ +module.exports = function isAxiosError(payload) { + return (typeof payload === 'object') && (payload.isAxiosError === true); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js": +/*!***********************************************************!*\ + !*** ./node_modules/axios/lib/helpers/isURLSameOrigin.js ***! + \***********************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); + +module.exports = ( + utils.isStandardBrowserEnv() ? + + // Standard browser envs have full support of the APIs needed to test + // whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + var msie = /(msie|trident)/i.test(navigator.userAgent); + var urlParsingNode = document.createElement('a'); + var originURL; + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + var href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: (urlParsingNode.pathname.charAt(0) === '/') ? + urlParsingNode.pathname : + '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; + return (parsed.protocol === originURL.protocol && + parsed.host === originURL.host); + }; + })() : + + // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + })() +); + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/normalizeHeaderName.js": +/*!***************************************************************!*\ + !*** ./node_modules/axios/lib/helpers/normalizeHeaderName.js ***! + \***************************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ../utils */ "./node_modules/axios/lib/utils.js"); + +module.exports = function normalizeHeaderName(headers, normalizedName) { + utils.forEach(headers, function processHeader(value, name) { + if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) { + headers[normalizedName] = value; + delete headers[name]; + } + }); +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/parseHeaders.js": +/*!********************************************************!*\ + !*** ./node_modules/axios/lib/helpers/parseHeaders.js ***! + \********************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js"); + +// Headers whose duplicates are ignored by node +// c.f. https://nodejs.org/api/http.html#http_message_headers +var ignoreDuplicateOf = [ + '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' +]; + +/** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} headers Headers needing to be parsed + * @returns {Object} Headers parsed into an object + */ +module.exports = function parseHeaders(headers) { + var parsed = {}; + var key; + var val; + var i; + + if (!headers) { return parsed; } + + utils.forEach(headers.split('\n'), function parser(line) { + i = line.indexOf(':'); + key = utils.trim(line.substr(0, i)).toLowerCase(); + val = utils.trim(line.substr(i + 1)); + + if (key) { + if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) { + return; + } + if (key === 'set-cookie') { + parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]); + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + } + }); + + return parsed; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/spread.js": +/*!**************************************************!*\ + !*** ./node_modules/axios/lib/helpers/spread.js ***! + \**************************************************/ +/***/ ((module) => { + +"use strict"; + + +/** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * @returns {Function} + */ +module.exports = function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/helpers/validator.js": +/*!*****************************************************!*\ + !*** ./node_modules/axios/lib/helpers/validator.js ***! + \*****************************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var pkg = __webpack_require__(/*! ./../../package.json */ "./node_modules/axios/package.json"); + +var validators = {}; + +// eslint-disable-next-line func-names +['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) { + validators[type] = function validator(thing) { + return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; +}); + +var deprecatedWarnings = {}; +var currentVerArr = pkg.version.split('.'); + +/** + * Compare package versions + * @param {string} version + * @param {string?} thanVersion + * @returns {boolean} + */ +function isOlderVersion(version, thanVersion) { + var pkgVersionArr = thanVersion ? thanVersion.split('.') : currentVerArr; + var destVer = version.split('.'); + for (var i = 0; i < 3; i++) { + if (pkgVersionArr[i] > destVer[i]) { + return true; + } else if (pkgVersionArr[i] < destVer[i]) { + return false; + } + } + return false; +} + +/** + * Transitional option validator + * @param {function|boolean?} validator + * @param {string?} version + * @param {string} message + * @returns {function} + */ +validators.transitional = function transitional(validator, version, message) { + var isDeprecated = version && isOlderVersion(version); + + function formatMessage(opt, desc) { + return '[Axios v' + pkg.version + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } + + // eslint-disable-next-line func-names + return function(value, opt, opts) { + if (validator === false) { + throw new Error(formatMessage(opt, ' has been removed in ' + version)); + } + + if (isDeprecated && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; + // eslint-disable-next-line no-console + console.warn( + formatMessage( + opt, + ' has been deprecated since v' + version + ' and will be removed in the near future' + ) + ); + } + + return validator ? validator(value, opt, opts) : true; + }; +}; + +/** + * Assert object's properties type + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + */ + +function assertOptions(options, schema, allowUnknown) { + if (typeof options !== 'object') { + throw new TypeError('options must be an object'); + } + var keys = Object.keys(options); + var i = keys.length; + while (i-- > 0) { + var opt = keys[i]; + var validator = schema[opt]; + if (validator) { + var value = options[opt]; + var result = value === undefined || validator(value, opt, options); + if (result !== true) { + throw new TypeError('option ' + opt + ' must be ' + result); + } + continue; + } + if (allowUnknown !== true) { + throw Error('Unknown option ' + opt); + } + } +} + +module.exports = { + isOlderVersion: isOlderVersion, + assertOptions: assertOptions, + validators: validators +}; + + +/***/ }), + +/***/ "./node_modules/axios/lib/utils.js": +/*!*****************************************!*\ + !*** ./node_modules/axios/lib/utils.js ***! + \*****************************************/ +/***/ ((module, __unused_webpack_exports, __webpack_require__) => { + +"use strict"; + + +var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js"); + +// utils is a library of generic helper functions non-specific to axios + +var toString = Object.prototype.toString; + +/** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Array, otherwise false + */ +function isArray(val) { + return toString.call(val) === '[object Array]'; +} + +/** + * Determine if a value is undefined + * + * @param {Object} val The value to test + * @returns {boolean} True if the value is undefined, otherwise false + */ +function isUndefined(val) { + return typeof val === 'undefined'; +} + +/** + * Determine if a value is a Buffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Buffer, otherwise false + */ +function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) + && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val); +} + +/** + * Determine if a value is an ArrayBuffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ +function isArrayBuffer(val) { + return toString.call(val) === '[object ArrayBuffer]'; +} + +/** + * Determine if a value is a FormData + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an FormData, otherwise false + */ +function isFormData(val) { + return (typeof FormData !== 'undefined') && (val instanceof FormData); +} + +/** + * Determine if a value is a view on an ArrayBuffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ +function isArrayBufferView(val) { + var result; + if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) { + result = ArrayBuffer.isView(val); + } else { + result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer); + } + return result; +} + +/** + * Determine if a value is a String + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a String, otherwise false + */ +function isString(val) { + return typeof val === 'string'; +} + +/** + * Determine if a value is a Number + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Number, otherwise false + */ +function isNumber(val) { + return typeof val === 'number'; +} + +/** + * Determine if a value is an Object + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Object, otherwise false + */ +function isObject(val) { + return val !== null && typeof val === 'object'; +} + +/** + * Determine if a value is a plain Object + * + * @param {Object} val The value to test + * @return {boolean} True if value is a plain Object, otherwise false + */ +function isPlainObject(val) { + if (toString.call(val) !== '[object Object]') { + return false; + } + + var prototype = Object.getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; +} + +/** + * Determine if a value is a Date + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Date, otherwise false + */ +function isDate(val) { + return toString.call(val) === '[object Date]'; +} + +/** + * Determine if a value is a File + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a File, otherwise false + */ +function isFile(val) { + return toString.call(val) === '[object File]'; +} + +/** + * Determine if a value is a Blob + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Blob, otherwise false + */ +function isBlob(val) { + return toString.call(val) === '[object Blob]'; +} + +/** + * Determine if a value is a Function + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ +function isFunction(val) { + return toString.call(val) === '[object Function]'; +} + +/** + * Determine if a value is a Stream + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Stream, otherwise false + */ +function isStream(val) { + return isObject(val) && isFunction(val.pipe); +} + +/** + * Determine if a value is a URLSearchParams object + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ +function isURLSearchParams(val) { + return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams; +} + +/** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * @returns {String} The String freed of excess whitespace + */ +function trim(str) { + return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, ''); +} + +/** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + * nativescript + * navigator.product -> 'NativeScript' or 'NS' + */ +function isStandardBrowserEnv() { + if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' || + navigator.product === 'NativeScript' || + navigator.product === 'NS')) { + return false; + } + return ( + typeof window !== 'undefined' && + typeof document !== 'undefined' + ); +} + +/** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + */ +function forEach(obj, fn) { + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + // Force an array if not already something iterable + if (typeof obj !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (var i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) { + fn.call(null, obj[key], key, obj); + } + } + } +} + +/** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * @returns {Object} Result of all merge properties + */ +function merge(/* obj1, obj2, obj3, ... */) { + var result = {}; + function assignValue(val, key) { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + } + + for (var i = 0, l = arguments.length; i < l; i++) { + forEach(arguments[i], assignValue); + } + return result; +} + +/** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * @return {Object} The resulting value of object a + */ +function extend(a, b, thisArg) { + forEach(b, function assignValue(val, key) { + if (thisArg && typeof val === 'function') { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }); + return a; +} + +/** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * @return {string} content value without BOM + */ +function stripBOM(content) { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + return content; +} + +module.exports = { + isArray: isArray, + isArrayBuffer: isArrayBuffer, + isBuffer: isBuffer, + isFormData: isFormData, + isArrayBufferView: isArrayBufferView, + isString: isString, + isNumber: isNumber, + isObject: isObject, + isPlainObject: isPlainObject, + isUndefined: isUndefined, + isDate: isDate, + isFile: isFile, + isBlob: isBlob, + isFunction: isFunction, + isStream: isStream, + isURLSearchParams: isURLSearchParams, + isStandardBrowserEnv: isStandardBrowserEnv, + forEach: forEach, + merge: merge, + extend: extend, + trim: trim, + stripBOM: stripBOM +}; + + +/***/ }), + +/***/ "./resources/js/app.js": +/*!*****************************!*\ + !*** ./resources/js/app.js ***! + \*****************************/ +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { + +__webpack_require__(/*! ./bootstrap */ "./resources/js/bootstrap.js"); + +/***/ }), + +/***/ "./resources/js/bootstrap.js": +/*!***********************************!*\ + !*** ./resources/js/bootstrap.js ***! + \***********************************/ +/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => { + +window._ = __webpack_require__(/*! lodash */ "./node_modules/lodash/lodash.js"); +/** + * We'll load the axios HTTP library which allows us to easily issue requests + * to our Laravel back-end. This library automatically handles sending the + * CSRF token as a header based on the value of the "XSRF" token cookie. + */ + +window.axios = __webpack_require__(/*! axios */ "./node_modules/axios/index.js"); +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; +/** + * Echo exposes an expressive API for subscribing to channels and listening + * for events that are broadcast by Laravel. Echo and event broadcasting + * allows your team to easily build robust real-time web applications. + */ +// import Echo from 'laravel-echo'; +// window.Pusher = require('pusher-js'); +// window.Echo = new Echo({ +// broadcaster: 'pusher', +// key: process.env.MIX_PUSHER_APP_KEY, +// cluster: process.env.MIX_PUSHER_APP_CLUSTER, +// forceTLS: true +// }); + +/***/ }), + +/***/ "./node_modules/lodash/lodash.js": +/*!***************************************!*\ + !*** ./node_modules/lodash/lodash.js ***! + \***************************************/ +/***/ (function(module, exports, __webpack_require__) { + +/* module decorator */ module = __webpack_require__.nmd(module); +var __WEBPACK_AMD_DEFINE_RESULT__;/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '4.17.21'; + + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; + + /** Error message constants. */ + var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', + FUNC_ERROR_TEXT = 'Expected a function', + INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`'; + + /** Used to stand-in for `undefined` hash values. */ + var HASH_UNDEFINED = '__lodash_hash_undefined__'; + + /** Used as the maximum memoize cache size. */ + var MAX_MEMOIZE_SIZE = 500; + + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; + + /** Used to compose bitmasks for cloning. */ + var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; + + /** Used as default options for `_.truncate`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; + + /** Used to detect hot functions by number of calls within a span of milliseconds. */ + var HOT_COUNT = 800, + HOT_SPAN = 16; + + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2, + LAZY_WHILE_FLAG = 3; + + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991, + MAX_INTEGER = 1.7976931348623157e+308, + NAN = 0 / 0; + + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + + /** Used to associate wrap methods with their bit flags. */ + var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] + ]; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + domExcTag = '[object DOMException]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + nullTag = '[object Null]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + undefinedTag = '[object Undefined]', + weakMapTag = '[object WeakMap]', + weakSetTag = '[object WeakSet]'; + + var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; + + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, + reUnescapedHtml = /[&<>"']/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; + + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; + + /** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ + var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); + + /** Used to match leading whitespace. */ + var reTrimStart = /^\s+/; + + /** Used to match a single whitespace character. */ + var reWhitespace = /\s/; + + /** Used to match wrap detail comments. */ + var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, + reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; + + /** Used to match words composed of alphanumeric characters. */ + var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; + + /** + * Used to validate the `validate` option in `_.template` variable. + * + * Forbids characters which could potentially change the meaning of the function argument definition: + * - "()," (modification of function parameters) + * - "=" (default value) + * - "[]{}" (destructuring of function parameters) + * - "/" (beginning of a comment) + * - whitespace + */ + var reForbiddenIdentifierChars = /[()=,{}\[\]\/\s]/; + + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; + + /** + * Used to match + * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; + + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; + + /** Used to detect bad signed hexadecimal string values. */ + var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; + + /** Used to detect binary string values. */ + var reIsBinary = /^0b[01]+$/i; + + /** Used to detect host constructors (Safari). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; + + /** Used to detect octal string values. */ + var reIsOctal = /^0o[0-7]+$/i; + + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; + + /** Used to match Latin Unicode letters (excluding mathematical operators). */ + var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; + + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; + + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; + + /** Used to compose unicode character classes. */ + var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; + + /** Used to compose unicode capture groups. */ + var rsApos = "['\u2019]", + rsAstral = '[' + rsAstralRange + ']', + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; + + /** Used to compose unicode regexes. */ + var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + + /** Used to match apostrophes. */ + var reApos = RegExp(rsApos, 'g'); + + /** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ + var reComboMark = RegExp(rsCombo, 'g'); + + /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ + var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + + /** Used to match complex or compound words. */ + var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji + ].join('|'), 'g'); + + /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ + var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + + /** Used to detect strings that need a more robust regexp to match words. */ + var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; + + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', + 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', + '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' + ]; + + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; + + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = + typedArrayTags[errorTag] = typedArrayTags[funcTag] = + typedArrayTags[mapTag] = typedArrayTags[numberTag] = + typedArrayTags[objectTag] = typedArrayTags[regexpTag] = + typedArrayTags[setTag] = typedArrayTags[stringTag] = + typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = + cloneableTags[boolTag] = cloneableTags[dateTag] = + cloneableTags[float32Tag] = cloneableTags[float64Tag] = + cloneableTags[int8Tag] = cloneableTags[int16Tag] = + cloneableTags[int32Tag] = cloneableTags[mapTag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[setTag] = + cloneableTags[stringTag] = cloneableTags[symbolTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map Latin Unicode letters to basic Latin letters. */ + var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" + }; + + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + /** Built-in method references without a dependency on `root`. */ + var freeParseFloat = parseFloat, + freeParseInt = parseInt; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof __webpack_require__.g == 'object' && __webpack_require__.g && __webpack_require__.g.Object === Object && __webpack_require__.g; + + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); + + /** Detect free variable `exports`. */ + var freeExports = true && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = freeExports && "object" == 'object' && module && !module.nodeType && module; + + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports; + + /** Detect free variable `process` from Node.js. */ + var freeProcess = moduleExports && freeGlobal.process; + + /** Used to access faster Node.js helpers. */ + var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; + } + + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} + }()); + + /* Node.js helper references. */ + var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, + nodeIsDate = nodeUtil && nodeUtil.isDate, + nodeIsMap = nodeUtil && nodeUtil.isMap, + nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, + nodeIsSet = nodeUtil && nodeUtil.isSet, + nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + + /*--------------------------------------------------------------------------*/ + + /** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ + function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); + } + + /** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; + } + + /** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + + /** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; + } + + /** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (comparator(value, array[index])) { + return true; + } + } + return false; + } + + /** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; + } + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; + } + + /** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; + + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } + + /** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; + } + + /** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; + } + + /** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + var asciiSize = baseProperty('length'); + + /** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function asciiToArray(string) { + return string.split(''); + } + + /** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function asciiWords(string) { + return string.match(reAsciiWord) || []; + } + + /** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; + } + }); + return result; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); + } + + /** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ + function baseIsNaN(value) { + return value !== value; + } + + /** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ + function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; + } + + /** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); + } + } + return result; + } + + /** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ + function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; + } + + /** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ + function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); + } + + /** + * The base implementation of `_.trim`. + * + * @private + * @param {string} string The string to trim. + * @returns {string} Returns the trimmed string. + */ + function baseTrim(string) { + return string + ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') + : string; + } + + /** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ + function baseUnary(func) { + return function(value) { + return func(value); + }; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); + } + + /** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function cacheHas(cache, key) { + return cache.has(key); + } + + /** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ + function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; + + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ + function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; + + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ + function countHolders(array, placeholder) { + var length = array.length, + result = 0; + + while (length--) { + if (array[length] === placeholder) { + ++result; + } + } + return result; + } + + /** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + var deburrLetter = basePropertyOf(deburredLetters); + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); + + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } + + /** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function getValue(object, key) { + return object == null ? undefined : object[key]; + } + + /** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ + function hasUnicode(string) { + return reHasUnicode.test(string); + } + + /** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ + function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); + } + + /** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ + function iteratorToArray(iterator) { + var data, + result = []; + + while (!(data = iterator.next()).done) { + result.push(data.value); + } + return result; + } + + /** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ + function mapToArray(map) { + var index = -1, + result = Array(map.size); + + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; + } + + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } + + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; + } + } + return result; + } + + /** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ + function setToArray(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = value; + }); + return result; + } + + /** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ + function setToPairs(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; + } + + /** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } + } + return index; + } + + /** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ + function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); + } + + /** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); + } + + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the last non-whitespace character. + */ + function trimmedEndIndex(string) { + var index = string.length; + + while (index-- && reWhitespace.test(string.charAt(index))) {} + return index; + } + + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + + /** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; + } + + /** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function unicodeToArray(string) { + return string.match(reUnicode) || []; + } + + /** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function unicodeWords(string) { + return string.match(reUnicodeWord) || []; + } + + /*--------------------------------------------------------------------------*/ + + /** + * Create a new pristine `lodash` function using the `context` object. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Util + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // Create a suped-up `defer` in Node.js. + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + var runInContext = (function runInContext(context) { + context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); + + /** Built-in constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; + + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + funcProto = Function.prototype, + objectProto = Object.prototype; + + /** Used to detect overreaching core-js shims. */ + var coreJsData = context['__core-js_shared__']; + + /** Used to resolve the decompiled source of functions. */ + var funcToString = funcProto.toString; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** Used to detect methods masquerading as native. */ + var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; + }()); + + /** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ + var nativeObjectToString = objectProto.toString; + + /** Used to infer the `Object` constructor. */ + var objectCtorString = funcToString.call(Object); + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Built-in value references. */ + var Buffer = moduleExports ? context.Buffer : undefined, + Symbol = context.Symbol, + Uint8Array = context.Uint8Array, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, + getPrototype = overArg(Object.getPrototypeOf, Object), + objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + splice = arrayProto.splice, + spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, + symIterator = Symbol ? Symbol.iterator : undefined, + symToStringTag = Symbol ? Symbol.toStringTag : undefined; + + var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} + }()); + + /** Mocked built-ins. */ + var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, + ctxNow = Date && Date.now !== root.Date.now && Date.now, + ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; + + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeGetSymbols = Object.getOwnPropertySymbols, + nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, + nativeIsFinite = context.isFinite, + nativeJoin = arrayProto.join, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = Date.now, + nativeParseInt = context.parseInt, + nativeRandom = Math.random, + nativeReverse = arrayProto.reverse; + + /* Built-in method references that are verified to be native. */ + var DataView = getNative(context, 'DataView'), + Map = getNative(context, 'Map'), + Promise = getNative(context, 'Promise'), + Set = getNative(context, 'Set'), + WeakMap = getNative(context, 'WeakMap'), + nativeCreate = getNative(Object, 'create'); + + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; + + /** Used to lookup unminified function names. */ + var realNames = {}; + + /** Used to detect maps, sets, and weakmaps. */ + var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); + + /** Used to convert symbols to primitives and strings. */ + var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. + * + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. + * + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; + }()); + + /** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ + function baseLodash() { + // No operation performed. + } + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; + } + + /** + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB) as well as ES2015 template strings. Change the + * following template settings to use alternative delimiters. + * + * @static + * @memberOf _ + * @type {Object} + */ + lodash.templateSettings = { + + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'escape': reEscape, + + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'evaluate': reEvaluate, + + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'interpolate': reInterpolate, + + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type {string} + */ + 'variable': '', + + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type {Object} + */ + 'imports': { + + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type {Function} + */ + '_': lodash + } + }; + + // Ensure wrappers are instances of `baseLodash`. + lodash.prototype = baseLodash.prototype; + lodash.prototype.constructor = lodash; + + LodashWrapper.prototype = baseCreate(baseLodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; + } + + /** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; + } + + /** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; + } + + /** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; + } + + // Ensure `LazyWrapper` is an instance of `baseLodash`. + LazyWrapper.prototype = baseCreate(baseLodash.prototype); + LazyWrapper.prototype.constructor = LazyWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; + } + + /** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; + } + return hasOwnProperty.call(data, key) ? data[key] : undefined; + } + + /** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); + } + + /** + * Sets the hash `key` to `value`. + * + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. + */ + function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; + } + + // Add methods to `Hash`. + Hash.prototype.clear = hashClear; + Hash.prototype['delete'] = hashDelete; + Hash.prototype.get = hashGet; + Hash.prototype.has = hashHas; + Hash.prototype.set = hashSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ + function listCacheClear() { + this.__data__ = []; + this.size = 0; + } + + /** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; + } + + /** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; + } + + /** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; + } + + /** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ + function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; + } + + // Add methods to `ListCache`. + ListCache.prototype.clear = listCacheClear; + ListCache.prototype['delete'] = listCacheDelete; + ListCache.prototype.get = listCacheGet; + ListCache.prototype.has = listCacheHas; + ListCache.prototype.set = listCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ + function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; + } + + /** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } + + /** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } + + /** + * Sets the map `key` to `value`. + * + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. + */ + function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; + } + + // Add methods to `MapCache`. + MapCache.prototype.clear = mapCacheClear; + MapCache.prototype['delete'] = mapCacheDelete; + MapCache.prototype.get = mapCacheGet; + MapCache.prototype.has = mapCacheHas; + MapCache.prototype.set = mapCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ + function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); + } + } + + /** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ + function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; + } + + /** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ + function setCacheHas(value) { + return this.__data__.has(value); + } + + // Add methods to `SetCache`. + SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; + SetCache.prototype.has = setCacheHas; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; + } + + /** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ + function stackClear() { + this.__data__ = new ListCache; + this.size = 0; + } + + /** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; + } + + /** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function stackGet(key) { + return this.__data__.get(key); + } + + /** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function stackHas(key) { + return this.__data__.has(key); + } + + /** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ + function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; + } + + // Add methods to `Stack`. + Stack.prototype.clear = stackClear; + Stack.prototype['delete'] = stackDelete; + Stack.prototype.get = stackGet; + Stack.prototype.has = stackHas; + Stack.prototype.set = stackSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ + function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } + } + return result; + } + + /** + * A specialized version of `_.sample` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. + */ + function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; + } + + /** + * A specialized version of `_.sampleSize` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); + } + + /** + * A specialized version of `_.shuffle` for arrays. + * + * @private + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); + } + + /** + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; + } + + /** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); + } + + /** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); + } + + /** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } + } + + /** + * The base implementation of `_.at` without support for individual paths. + * + * @private + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. + */ + function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; + } + + /** + * The base implementation of `_.clamp` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + */ + function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; + } + + /** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ + function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; + } + + /** + * The base implementation of `_.conforms` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + */ + function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; + } + + /** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ + function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } + } + return true; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.forEachRight` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEachRight = createBaseEach(baseForOwnRight, true); + + /** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; + } + + /** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ + function baseFill(array, value, start, end) { + var length = array.length; + + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; + } + return array; + } + + /** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseForRight = createBaseFor(true); + + /** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ + function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); + } + + /** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ + function baseGet(object, path) { + path = castPath(path, object); + + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; + } + + /** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ + function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); + } + + /** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); + } + + /** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ + function baseGt(value, other) { + return value > other; + } + + /** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); + } + + /** + * The base implementation of `_.hasIn` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHasIn(object, key) { + return object != null && key in Object(object); + } + + /** + * The base implementation of `_.inRange` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + */ + function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); + } + + /** + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + */ + function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; + + var index = -1, + seen = caches[0]; + + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. + */ + function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; + } + + /** + * The base implementation of `_.invoke` without support for individual + * method arguments. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ + function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); + } + + /** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ + function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; + } + + /** + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + */ + function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; + } + + /** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; + } + + /** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); + } + + /** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ + function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; + } + + /** + * The base implementation of `_.isMatch` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ + function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } + } + return true; + } + + /** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ + function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); + } + + /** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; + } + + /** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ + function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; + } + + /** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ + function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; + } + + /** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ + function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); + } + + /** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; + + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ + function baseLt(value, other) { + return value < other; + } + + /** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; + } + + /** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; + } + + /** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); + } + + /** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); + } + + /** + * The base implementation of `_.nth` which doesn't coerce arguments. + * + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. + */ + function baseNth(array, n) { + var length = array.length; + if (!length) { + return; + } + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; + } + + /** + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ + function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); + } + + /** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ + function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); + } + + /** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ + function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } + } + return result; + } + + /** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; + } + + /** + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + */ + function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; + } + + /** + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; + } + + /** + * The base implementation of `_.random` without support for returning + * floating-point numbers. + * + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. + */ + function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); + } + + /** + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. + * + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. + */ + function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; + } + + /** + * The base implementation of `_.repeat` which doesn't coerce arguments. + * + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. + */ + function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); + + return result; + } + + /** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.sample`. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ + function baseSample(collection) { + return arraySample(values(collection)); + } + + /** + * The base implementation of `_.sampleSize` without param guards. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); + } + + /** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; + } + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; + } + + /** + * The base implementation of `setData` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); + }; + + /** + * The base implementation of `_.shuffle`. + * + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function baseShuffle(collection) { + return shuffleSelf(values(collection)); + } + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); + } + + /** + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndexBy(array, value, iteratee, retHighest) { + var low = 0, + high = array == null ? 0 : array.length; + if (high === 0) { + return 0; + } + + value = iteratee(value); + var valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); + } + + /** + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; + } + } + return result; + } + + /** + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. + * + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. + */ + function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; + } + + /** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ + function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * The base implementation of `_.uniqBy` without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); + } + isCommon = false; + includes = cacheHas; + seen = new SetCache; + } + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ + function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; + } + + /** + * The base implementation of `_.update`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); + } + + /** + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); + } + + /** + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + */ + function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; + } + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); + } + + /** + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. + * + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. + */ + function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; + } + + /** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ + function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; + } + + /** + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. + */ + function castFunction(value) { + return typeof value == 'function' ? value : identity; + } + + /** + * Casts `value` to a path array if it's not one. + * + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. + */ + function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); + } + + /** + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. + * + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + var castRest = baseRest; + + /** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ + function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); + } + + /** + * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). + * + * @private + * @param {number|Object} id The timer id or timeout object of the timer to clear. + */ + var clearTimeout = ctxClearTimeout || function(id) { + return root.clearTimeout(id); + }; + + /** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ + function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; + } + + /** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; + } + + /** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ + function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); + } + + /** + * Creates a clone of `regexp`. + * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. + */ + function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; + } + + /** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ + function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; + } + + /** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ + function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); + } + + /** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; + } + + /** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; + } + + /** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } + + /** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } + + /** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); + } + + /** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); + } + + /** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ + function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, getIteratee(iteratee, 2), accumulator); + }; + } + + /** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; + } + + /** + * Creates a function like `_.lowerFirst`. + * + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. + */ + function createCaseFirst(methodName) { + return function(string) { + string = toString(string); + + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; + } + + /** + * Creates a function like `_.camelCase`. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ + function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a function that wraps `func` to enable currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = getIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; + } + + /** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ + function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); + } + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); + } + + /** + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; + } + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); + } + return wrapper; + } + + /** + * Creates a function like `_.invertBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. + */ + function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; + } + + /** + * Creates a function that performs a mathematical operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. + */ + function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; + } + + /** + * Creates a function like `_.over`. + * + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. + */ + function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); + } + + /** + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. + * + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. + */ + function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); + } + + /** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ + function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * Creates a `_.range` or `_.rangeRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. + */ + function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; + } + + /** + * Creates a function that performs a relational operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. + */ + function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; + } + + /** + * Creates a function that wraps `func` to continue currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); + } + + /** + * Creates a function like `_.round`. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision && nativeIsFinite(number)) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; + } + + /** + * Creates a set object of `values`. + * + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. + */ + var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); + }; + + /** + * Creates a `_.toPairs` or `_.toPairsIn` function. + * + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. + */ + function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; + } + + /** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); + } else { + result = createHybrid.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); + } + + /** + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. + */ + function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; + } + return objValue; + } + + /** + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ + function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; + } + + /** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ + function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; + + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; + } + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } + + /** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); + } + + /** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); + } + + /** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ + function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; + } + + /** + * Gets the argument placeholder value for `func`. + * + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. + */ + function getHolder(func) { + var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; + return object.placeholder; + } + + /** + * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, + * this function returns the custom method, otherwise it returns `baseIteratee`. + * If arguments are provided, the chosen function is invoked with them and + * its result is returned. + * + * @private + * @param {*} [value] The value to convert to an iteratee. + * @param {number} [arity] The arity of the created iteratee. + * @returns {Function} Returns the chosen function or its result. + */ + function getIteratee() { + var result = lodash.iteratee || iteratee; + result = result === iteratee ? baseIteratee : result; + return arguments.length ? result(arguments[0], arguments[1]) : result; + } + + /** + * Gets the data for `map`. + * + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. + */ + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; + } + + /** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ + function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; + } + return result; + } + + /** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; + } + + /** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ + function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; + } + + /** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); + }; + + /** + * Creates an array of the own and inherited enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; + }; + + /** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + var getTag = baseGetTag; + + // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. + if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; + } + + /** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; + } + + /** + * Extracts wrapper details from the `source` body comment. + * + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. + */ + function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; + } + + /** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ + function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; + } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); + } + + /** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; + } + + /** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; + } + + /** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return new Ctor; + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return new Ctor; + + case symbolTag: + return cloneSymbol(object); + } + } + + /** + * Inserts wrapper `details` in a comment at the top of the `source` body. + * + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. + */ + function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + } + + /** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ + function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); + } + + /** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; + } + + /** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ + function isKey(value, object) { + if (isArray(value)) { + return false; + } + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); + } + + /** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ + function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); + } + + /** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ + function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; + + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } + + /** + * Checks if `func` has its source masked. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. + */ + function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); + } + + /** + * Checks if `func` is capable of being masked. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + */ + var isMaskable = coreJsData ? isFunction : stubFalse; + + /** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ + function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; + } + + /** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ + function isStrictComparable(value) { + return value === value && !isObject(value); + } + + /** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; + } + + /** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ + function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); + + var cache = result.cache; + return result; + } + + /** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); + + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; + } + + /** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ + function objectToString(value) { + return nativeObjectToString.call(value); + } + + /** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; + } + + /** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ + function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); + } + + /** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; + } + + /** + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; + } + + /** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var setData = shortOut(baseSetData); + + /** + * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @returns {number|Object} Returns the timer id or timeout object. + */ + var setTimeout = ctxSetTimeout || function(func, wait) { + return root.setTimeout(func, wait); + }; + + /** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = shortOut(baseSetToString); + + /** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. + * + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. + */ + function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); + } + + /** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ + function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; + } + + /** + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. + */ + function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; + } + + /** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ + var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + }); + + /** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ + function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ + function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; + } + + /** + * Updates wrapper `details` based on `bitmask` flags. + * + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. + */ + function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); + } + + /** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ + function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; + } + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } + + /** + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] + */ + var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] + * + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] + */ + var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; + }); + + /** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] + * + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] + * + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true, true) + : []; + } + + /** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true) + : []; + } + + /** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] + */ + function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, getIteratee(predicate, 3), index); + } + + /** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 + * + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 + */ + function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, getIteratee(predicate, 3), index, true); + } + + /** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } + + /** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; + } + + /** + * Recursively flatten `array` up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * var array = [1, [2, [3, [4]], 5]]; + * + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] + * + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] + */ + function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); + } + + /** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } + */ + function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; + } + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ + function head(array) { + return (array && array.length) ? array[0] : undefined; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); + } + + /** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ + function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; + } + + /** + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersection([2, 1], [2, 3]); + * // => [2] + */ + var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ + var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ + var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; + }); + + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ + function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); + } + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } + + /** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + */ + function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); + } + + /** + * Gets the element at index `n` of `array`. If `n` is negative, the nth + * element from the end is returned. + * + * @static + * @memberOf _ + * @since 4.11.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=0] The index of the element to return. + * @returns {*} Returns the nth element of `array`. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * + * _.nth(array, 1); + * // => 'b' + * + * _.nth(array, -2); + * // => 'c'; + */ + function nth(array, n) { + return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; + } + + /** + * Removes all given values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` + * to remove elements from an array by predicate. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pull(array, 'a', 'c'); + * console.log(array); + * // => ['b', 'b'] + */ + var pull = baseRest(pullAll); + + /** + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pullAll(array, ['a', 'c']); + * console.log(array); + * // => ['b', 'b'] + */ + function pullAll(array, values) { + return (array && array.length && values && values.length) + ? basePullAll(array, values) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ + function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, getIteratee(iteratee, 2)) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `comparator` which + * is invoked to compare elements of `array` to `values`. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.differenceWith`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; + * + * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); + * console.log(array); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] + */ + function pullAllWith(array, values, comparator) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, undefined, comparator) + : array; + } + + /** + * Removes elements from `array` corresponding to `indexes` and returns an + * array of removed elements. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * var pulled = _.pullAt(array, [1, 3]); + * + * console.log(array); + * // => ['a', 'c'] + * + * console.log(pulled); + * // => ['b', 'd'] + */ + var pullAt = flatRest(function(array, indexes) { + var length = array == null ? 0 : array.length, + result = baseAt(array, indexes); + + basePullAt(array, arrayMap(indexes, function(index) { + return isIndex(index, length) ? +index : index; + }).sort(compareAscending)); + + return result; + }); + + /** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is invoked + * with three arguments: (value, index, array). + * + * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` + * to pull elements from an array by value. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ + function remove(array, predicate) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getIteratee(predicate, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } + + /** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function reverse(array) { + return array == null ? array : nativeReverse.call(array); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + else { + start = start == null ? 0 : toInteger(start); + end = end === undefined ? length : toInteger(end); + } + return baseSlice(array, start, end); + } + + /** + * Uses a binary search to determine the lowest index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + */ + function sortedIndex(array, value) { + return baseSortedIndex(array, value); + } + + /** + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); + * // => 0 + */ + function sortedIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); + } + + /** + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedIndexOf([4, 5, 5, 5, 6], 5); + * // => 1 + */ + function sortedIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value); + if (index < length && eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 5, 5, 5, 6], 5); + * // => 4 + */ + function sortedLastIndex(array, value) { + return baseSortedIndex(array, value, true); + } + + /** + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 1 + * + * // The `_.property` iteratee shorthand. + * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); + * // => 1 + */ + function sortedLastIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); + } + + /** + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); + * // => 3 + */ + function sortedLastIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value, true) - 1; + if (eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] + */ + function sortedUniq(array) { + return (array && array.length) + ? baseSortedUniq(array) + : []; + } + + /** + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.3] + */ + function sortedUniqBy(array, iteratee) { + return (array && array.length) + ? baseSortedUniq(array, getIteratee(iteratee, 2)) + : []; + } + + /** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.tail([1, 2, 3]); + * // => [2, 3] + */ + function tail(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 1, length) : []; + } + + /** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ + function take(array, n, guard) { + if (!(array && array.length)) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ + function takeRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.takeRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeRightWhile(users, ['active', false]); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.takeRightWhile(users, 'active'); + * // => [] + */ + function takeRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), false, true) + : []; + } + + /** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.takeWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matches` iteratee shorthand. + * _.takeWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeWhile(users, ['active', false]); + * // => objects for ['barney', 'fred'] + * + * // The `_.property` iteratee shorthand. + * _.takeWhile(users, 'active'); + * // => [] + */ + function takeWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3)) + : []; + } + + /** + * Creates an array of unique values, in order, from all given arrays using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([2], [1, 2]); + * // => [2, 1] + */ + var union = baseRest(function(arrays) { + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); + }); + + /** + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which uniqueness is computed. Result values are chosen from the first + * array in which the value occurs. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.unionBy([2.1], [1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + var unionBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. Result values are chosen from + * the first array in which the value occurs. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var unionWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); + }); + + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. The order of result values is determined by the order they occur + * in the array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + function uniq(array) { + return (array && array.length) ? baseUniq(array) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The order of result values is determined by the + * order they occur in the array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + function uniqBy(array, iteratee) { + return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ + function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; + } + + /** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + * + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] + */ + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); + } + + /** + * This method is like `_.unzip` except that it accepts `iteratee` to specify + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee=_.identity] The function to combine + * regrouped values. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ + function unzipWith(array, iteratee) { + if (!(array && array.length)) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + return arrayMap(result, function(group) { + return apply(iteratee, undefined, group); + }); + } + + /** + * Creates an array excluding all given values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.pull`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.xor + * @example + * + * _.without([2, 1, 2, 3], 1, 2); + * // => [3] + */ + var without = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, values) + : []; + }); + + /** + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without + * @example + * + * _.xor([2, 1], [2, 3]); + * // => [1, 3] + */ + var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); + }); + + /** + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which by which they're compared. The order of result values is determined + * by the order they occur in the arrays. The iteratee is invoked with one + * argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2, 3.4] + * + * // The `_.property` iteratee shorthand. + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var xorBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The order of result values is + * determined by the order they occur in the arrays. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var xorWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); + }); + + /** + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ + var zip = baseRest(unzip); + + /** + * This method is like `_.fromPairs` except that it accepts two arrays, + * one of property identifiers and one of corresponding values. + * + * @static + * @memberOf _ + * @since 0.4.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject(['a', 'b'], [1, 2]); + * // => { 'a': 1, 'b': 2 } + */ + function zipObject(props, values) { + return baseZipObject(props || [], values || [], assignValue); + } + + /** + * This method is like `_.zipObject` except that it supports property paths. + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); + * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } + */ + function zipObjectDeep(props, values) { + return baseZipObject(props || [], values || [], baseSet); + } + + /** + * This method is like `_.zip` except that it accepts `iteratee` to specify + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee=_.identity] The function to combine + * grouped values. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { + * return a + b + c; + * }); + * // => [111, 222] + */ + var zipWith = baseRest(function(arrays) { + var length = arrays.length, + iteratee = length > 1 ? arrays[length - 1] : undefined; + + iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; + return unzipWith(arrays, iteratee); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor) { + interceptor(value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * This method is the wrapper version of `_.at`. + * + * @name at + * @memberOf _ + * @since 1.0.0 + * @category Seq + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _(object).at(['a[0].b.c', 'a[1]']).value(); + * // => [3, 4] + */ + var wrapperAt = flatRest(function(paths) { + var length = paths.length, + start = length ? paths[0] : 0, + value = this.__wrapped__, + interceptor = function(object) { return baseAt(object, paths); }; + + if (length > 1 || this.__actions__.length || + !(value instanceof LazyWrapper) || !isIndex(start)) { + return this.thru(interceptor); + } + value = value.slice(start, +start + (length ? 1 : 0)); + value.__actions__.push({ + 'func': thru, + 'args': [interceptor], + 'thisArg': undefined + }); + return new LodashWrapper(value, this.__chain__).thru(function(array) { + if (length && !array.length) { + array.push(undefined); + } + return array; + }); + }); + + /** + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. + * + * @name chain + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chain sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); + } + + /** + * Gets the next value on a wrapped object following the + * [iterator protocol](https://mdn.io/iteration_protocols#iterator). + * + * @name next + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the next iterator value. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped.next(); + * // => { 'done': false, 'value': 1 } + * + * wrapped.next(); + * // => { 'done': false, 'value': 2 } + * + * wrapped.next(); + * // => { 'done': true, 'value': undefined } + */ + function wrapperNext() { + if (this.__values__ === undefined) { + this.__values__ = toArray(this.value()); + } + var done = this.__index__ >= this.__values__.length, + value = done ? undefined : this.__values__[this.__index__++]; + + return { 'done': done, 'value': value }; + } + + /** + * Enables the wrapper to be iterable. + * + * @name Symbol.iterator + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the wrapper object. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped[Symbol.iterator]() === wrapped; + * // => true + * + * Array.from(wrapped); + * // => [1, 2] + */ + function wrapperToIterator() { + return this; + } + + /** + * Creates a clone of the chain sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @param {*} value The value to plant. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2]).map(square); + * var other = wrapped.plant([3, 4]); + * + * other.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ + function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + clone.__index__ = 0; + clone.__values__ = undefined; + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; + } + + /** + * This method is the wrapper version of `_.reverse`. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function wrapperReverse() { + var value = this.__wrapped__; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ + 'func': thru, + 'args': [reverse], + 'thisArg': undefined + }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(reverse); + } + + /** + * Executes the chain sequence to resolve the unwrapped value. + * + * @name value + * @memberOf _ + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the number of times the key was returned by `iteratee`. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': 1, '6': 2 } + * + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ + var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); + } + }); + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] + */ + function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ + var find = createFind(findIndex); + + /** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ + var findLast = createFind(findLastIndex); + + /** + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] + */ + function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); + } + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach + * @example + * + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ + function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } + }); + + /** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ + function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); + } + + /** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ + var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; + }); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ + var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); + }); + + /** + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + */ + function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseOrderBy(collection, iteratees, orders); + } + + /** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * _.partition(users, function(o) { return o.active; }); + * // => objects for [['fred'], ['barney', 'pebbles']] + * + * // The `_.matches` iteratee shorthand. + * _.partition(users, { 'age': 1, 'active': false }); + * // => objects for [['pebbles'], ['barney', 'fred']] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.partition(users, ['active', false]); + * // => objects for [['barney', 'pebbles'], ['fred']] + * + * // The `_.property` iteratee shorthand. + * _.partition(users, 'active'); + * // => objects for [['fred'], ['barney', 'pebbles']] + */ + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight + * @example + * + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + */ + function reduce(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduce : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + } + + /** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduce + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ + function reduceRight(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduceRight : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + } + + /** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.filter + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * _.reject(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.reject(users, { 'age': 40, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.reject(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.reject(users, 'active'); + * // => objects for ['barney'] + */ + function reject(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, negate(getIteratee(predicate, 3))); + } + + /** + * Gets a random element from `collection`. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + */ + function sample(collection) { + var func = isArray(collection) ? arraySample : baseSample; + return func(collection); + } + + /** + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. + * @example + * + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] + * + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] + */ + function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); + } + + /** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ + function shuffle(collection) { + var func = isArray(collection) ? arrayShuffle : baseShuffle; + return func(collection); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + */ + var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Gets the timestamp of the number of milliseconds that have elapsed since + * the Unix epoch (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Date + * @returns {number} Returns the timestamp. + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => Logs the number of milliseconds it took for the deferred invocation. + */ + var now = ctxNow || function() { + return root.Date.now(); + }; + + /*------------------------------------------------------------------------*/ + + /** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. + */ + function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; + } + + /** + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ + function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); + } + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(func, bitmask, thisArg, partials, holders); + }); + + /** + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ + var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(key, bitmask, object, partials, holders); + }); + + /** + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ + function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; + } + + /** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ + function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; + } + + /** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); + */ + function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); + } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); + } + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + clearTimeout(timerId); + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; + } + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); + }); + + /** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ + function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); + } + + /** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; + * + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] + * + * values(other); + * // => [3, 4] + * + * object.a = 2; + * values(object); + * // => [1, 2] + * + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] + * + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; + */ + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; + } + + // Expose `MapCache`. + memoize.Cache = MapCache; + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with its arguments transformed. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms=[_.identity]] + * The argument transforms. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var func = _.overArgs(function(x, y) { + * return [x, y]; + * }, [square, doubled]); + * + * func(9, 3); + * // => [81, 6] + * + * func(10, 5); + * // => [100, 10] + */ + var overArgs = castRest(function(func, transforms) { + transforms = (transforms.length == 1 && isArray(transforms[0])) + ? arrayMap(transforms[0], baseUnary(getIteratee())) + : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); + + var funcsLength = transforms.length; + return baseRest(function(args) { + var index = -1, + length = nativeMin(args.length, funcsLength); + + while (++index < length) { + args[index] = transforms[index].call(this, args[index]); + } + return apply(func, this, args); + }); + }); + + /** + * Creates a function that invokes `func` with `partials` prepended to the + * arguments it receives. This method is like `_.bind` except it does **not** + * alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 0.2.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // Partially applied with placeholders. + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ + var partial = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partial)); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); + }); + + /** + * This method is like `_.partial` except that partially applied arguments + * are appended to the arguments it receives. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // Partially applied with placeholders. + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ + var partialRight = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partialRight)); + return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); + }); + + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified `indexes` where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, [2, 0, 1]); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + */ + var rearg = flatRest(function(func, indexes) { + return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); + }); + + /** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as + * an array. + * + * **Note:** This method is based on the + * [rest parameter](https://mdn.io/rest_parameters). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.rest(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ + function rest(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start === undefined ? start : toInteger(start); + return baseRest(func, start); + } + + /** + * Creates a function that invokes `func` with the `this` binding of the + * create function and an array of arguments much like + * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). + * + * **Note:** This method is based on the + * [spread operator](https://mdn.io/spread_operator). + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Function + * @param {Function} func The function to spread arguments over. + * @param {number} [start=0] The start position of the spread. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ + function spread(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start == null ? 0 : nativeMax(toInteger(start), 0); + return baseRest(function(args) { + var array = args[start], + otherArgs = castSlice(args, 0, start); + + if (array) { + arrayPush(otherArgs, array); + } + return apply(func, this, otherArgs); + }); + } + + /** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed `func` invocations and a `flush` method to + * immediately invoke them. Provide `options` to indicate whether `func` + * should be invoked on the leading and/or trailing edge of the `wait` + * timeout. The `func` is invoked with the last arguments provided to the + * throttled function. Subsequent calls to the throttled function return the + * result of the last `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the throttled function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=true] + * Specify invoking on the leading edge of the timeout. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // Avoid excessively updating the position while scrolling. + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. + * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); + * jQuery(element).on('click', throttled); + * + * // Cancel the trailing throttled invocation. + * jQuery(window).on('popstate', throttled.cancel); + */ + function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { + 'leading': leading, + 'maxWait': wait, + 'trailing': trailing + }); + } + + /** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ + function unary(func) { + return ary(func, 1); + } + + /** + * Creates a function that provides `value` to `wrapper` as its first + * argument. Any additional arguments provided to the function are appended + * to those provided to the `wrapper`. The wrapper is invoked with the `this` + * binding of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {*} value The value to wrap. + * @param {Function} [wrapper=identity] The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ + function wrap(value, wrapper) { + return partial(castFunction(wrapper), value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Casts `value` as an array if it's not one. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. + * @example + * + * _.castArray(1); + * // => [1] + * + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true + */ + function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; + } + + /** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ + function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 + */ + function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ + function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.cloneWith` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } + * + * var el = _.cloneDeepWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 + */ + function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. + * + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false + */ + function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); + } + + /** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + function eq(value, other) { + return value === other || (value !== value && other !== other); + } + + /** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ + var gt = createRelationalOperation(baseGt); + + /** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ + var gte = createRelationalOperation(function(value, other) { + return value >= other; + }); + + /** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + * @example + * + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true + * + * _.isArrayBuffer(new Array(2)); + * // => false + */ + var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); + } + + /** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ + function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false + */ + var isBuffer = nativeIsBuffer || stubFalse; + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + + /** + * Checks if `value` is likely a DOM element. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ + function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); + } + + /** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + function isEqual(value, other) { + return baseIsEqual(value, other); + } + + /** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ + function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; + } + + /** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ + function isError(value) { + if (!isObjectLike(value)) { + return false; + } + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + } + + /** + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ + function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } + + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + function isObjectLike(value) { + return value != null && typeof value == 'object'; + } + + /** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ + var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + + /** + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. + * + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.isMatch(object, { 'b': 2 }); + * // => true + * + * _.isMatch(object, { 'b': 1 }); + * // => false + */ + function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); + } + + /** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ + function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ + function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ + function isNil(value) { + return value == null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); + } + + /** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ + function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + + /** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ + function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ + var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } + + /** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ + function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); + } + + /** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ + var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + + /** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ + function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; + } + + /** + * Checks if `value` is classified as a `WeakSet` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @example + * + * _.isWeakSet(new WeakSet); + * // => true + * + * _.isWeakSet(new Set); + * // => false + */ + function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; + } + + /** + * Checks if `value` is less than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + * @see _.gt + * @example + * + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false + */ + var lt = createRelationalOperation(baseLt); + + /** + * Checks if `value` is less than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to + * `other`, else `false`. + * @see _.gte + * @example + * + * _.lte(1, 3); + * // => true + * + * _.lte(3, 3); + * // => true + * + * _.lte(3, 1); + * // => false + */ + var lte = createRelationalOperation(function(value, other) { + return value <= other; + }); + + /** + * Converts `value` to an array. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] + * + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] + */ + function toArray(value) { + if (!value) { + return []; + } + if (isArrayLike(value)) { + return isString(value) ? stringToArray(value) : copyArray(value); + } + if (symIterator && value[symIterator]) { + return iteratorToArray(value[symIterator]()); + } + var tag = getTag(value), + func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); + + return func(value); + } + + /** + * Converts `value` to a finite number. + * + * @static + * @memberOf _ + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. + * @example + * + * _.toFinite(3.2); + * // => 3.2 + * + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toFinite('3.2'); + * // => 3.2 + */ + function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; + } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; + } + + /** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ + function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; + + return result === result ? (remainder ? result - remainder : result) : 0; + } + + /** + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toLength(3.2); + * // => 3 + * + * _.toLength(Number.MIN_VALUE); + * // => 0 + * + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3.2'); + * // => 3 + */ + function toLength(value) { + return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + } + + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ + function toNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = baseTrim(value); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); + } + + /** + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } + */ + function toPlainObject(value) { + return copyObject(value, keysIn(value)); + } + + /** + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toSafeInteger(3.2); + * // => 3 + * + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3.2'); + * // => 3 + */ + function toSafeInteger(value) { + return value + ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) + : (value === 0 ? value : 0); + } + + /** + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + return value == null ? '' : baseToString(value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); + } + } + }); + + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); + }); + + /** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); + }); + + /** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); + }); + + /** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ + var at = flatRest(baseAt); + + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); + } + + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; + }); + + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ + var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); + }); + + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ + function findKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + } + + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + function findLastKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + } + + /** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ + function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ + function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forOwn(object, iteratee) { + return object && baseForOwn(object, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ + function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, getIteratee(iteratee, 3)); + } + + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); + } + + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); + } + + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; + } + + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasPath(object, path, baseHas); + } + + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); + } + + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ + var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + result[value] = key; + }, constant(identity)); + + /** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ + var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + }, getIteratee); + + /** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ + var invoke = baseRest(baseInvoke); + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + } + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + } + + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * string keyed property of `object` thru `iteratee`. The iteratee is invoked + * with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapValues + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + function mapKeys(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, iteratee(value, key, object), value); + }); + return result; + } + + /** + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys + * @example + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * + * // The `_.property` iteratee shorthand. + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + function mapValues(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; + } + + /** + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ + var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); + }); + + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined`, merging is handled by the + * method instead. The `customizer` is invoked with six arguments: + * (objValue, srcValue, key, object, source, stack). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { 'a': [1], 'b': [2] }; + * var other = { 'a': [3], 'b': [4] }; + * + * _.mergeWith(object, other, customizer); + * // => { 'a': [1, 3], 'b': [2, 4] } + */ + var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { + baseMerge(object, source, srcIndex, customizer); + }); + + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; + }); + + /** + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + function omitBy(object, predicate) { + return pickBy(object, negate(getIteratee(predicate))); + } + + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); + + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = getIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); + } + + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + path = castPath(path, object); + + var index = -1, + length = path.length; + + // Ensure the loop is entered when path is empty. + if (!length) { + length = 1; + object = undefined; + } + while (++index < length) { + var value = object == null ? undefined : object[toKey(path[index])]; + if (value === undefined) { + index = length; + value = defaultValue; + } + object = isFunction(value) ? value.call(object) : value; + } + return object; + } + + /** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); + } + + /** + * This method is like `_.set` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.setWith(object, '[0][1]', 'a', Object); + * // => { '0': { '1': 'a' } } + */ + function setWith(object, path, value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseSet(object, path, value, customizer); + } + + /** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ + var toPairs = createToPairs(keys); + + /** + * Creates an array of own and inherited enumerable string keyed-value pairs + * for `object` which can be consumed by `_.fromPairs`. If `object` is a map + * or set, its entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entriesIn + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairsIn(new Foo); + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + */ + var toPairsIn = createToPairs(keysIn); + + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); + + iteratee = getIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } + + /** + * Removes the property at `path` of `object`. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 7 } }] }; + * _.unset(object, 'a[0].b.c'); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + * + * _.unset(object, ['a', '0', 'b', 'c']); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + */ + function unset(object, path) { + return object == null ? true : baseUnset(object, path); + } + + /** + * This method is like `_.set` except that accepts `updater` to produce the + * value to set. Use `_.updateWith` to customize `path` creation. The `updater` + * is invoked with one argument: (value). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.update(object, 'a[0].b.c', function(n) { return n * n; }); + * console.log(object.a[0].b.c); + * // => 9 + * + * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); + * console.log(object.x[0].y.z); + * // => 0 + */ + function update(object, path, updater) { + return object == null ? object : baseUpdate(object, path, castFunction(updater)); + } + + /** + * This method is like `_.update` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.updateWith(object, '[0][1]', _.constant('a'), Object); + * // => { '0': { '1': 'a' } } + */ + function updateWith(object, path, updater, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); + } + + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } + + /** + * Creates an array of the own and inherited enumerable string keyed property + * values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return object == null ? [] : baseValues(object, keysIn(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); + } + + /** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ + function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); + } + + /** + * Produces a random number between the inclusive `lower` and `upper` bounds. + * If only one argument is provided a number between `0` and the given number + * is returned. If `floating` is `true`, or either `lower` or `upper` are + * floats, a floating-point number is returned instead of an integer. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Number + * @param {number} [lower=0] The lower bound. + * @param {number} [upper=1] The upper bound. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(lower, upper, floating) { + if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { + upper = floating = undefined; + } + if (floating === undefined) { + if (typeof upper == 'boolean') { + floating = upper; + upper = undefined; + } + else if (typeof lower == 'boolean') { + floating = lower; + lower = undefined; + } + } + if (lower === undefined && upper === undefined) { + lower = 0; + upper = 1; + } + else { + lower = toFinite(lower); + if (upper === undefined) { + upper = lower; + lower = 0; + } else { + upper = toFinite(upper); + } + } + if (lower > upper) { + var temp = lower; + lower = upper; + upper = temp; + } + if (floating || lower % 1 || upper % 1) { + var rand = nativeRandom(); + return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); + } + return baseRandom(lower, upper); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); + }); + + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ + function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); + } + + /** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + } + + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); + + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); + + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; + } + + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ + function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; + } + + /** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); + + /** + * Converts `string`, as space separated words, to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.lowerCase('--Foo-Bar--'); + * // => 'foo bar' + * + * _.lowerCase('fooBar'); + * // => 'foo bar' + * + * _.lowerCase('__FOO_BAR__'); + * // => 'foo bar' + */ + var lowerCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toLowerCase(); + }); + + /** + * Converts the first character of `string` to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.lowerFirst('Fred'); + * // => 'fred' + * + * _.lowerFirst('FRED'); + * // => 'fRED' + */ + var lowerFirst = createCaseFirst('toLowerCase'); + + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + if (!length || strLength >= length) { + return string; + } + var mid = (length - strLength) / 2; + return ( + createPadding(nativeFloor(mid), chars) + + string + + createPadding(nativeCeil(mid), chars) + ); + } + + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padEnd('abc', 6); + * // => 'abc ' + * + * _.padEnd('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padEnd('abc', 3); + * // => 'abc' + */ + function padEnd(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (string + createPadding(length - strLength, chars)) + : string; + } + + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padStart('abc', 6); + * // => ' abc' + * + * _.padStart('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padStart('abc', 3); + * // => 'abc' + */ + function padStart(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (createPadding(length - strLength, chars) + string) + : string; + } + + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a + * hexadecimal, in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the + * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category String + * @param {string} string The string to convert. + * @param {number} [radix=10] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + if (guard || radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); + } + + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=1] The number of times to repeat the string. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n, guard) { + if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + return baseRepeat(toString(string), n); + } + + /** + * Replaces matches for `pattern` in `string` with `replacement`. + * + * **Note:** This method is based on + * [`String#replace`](https://mdn.io/String/replace). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to modify. + * @param {RegExp|string} pattern The pattern to replace. + * @param {Function|string} replacement The match replacement. + * @returns {string} Returns the modified string. + * @example + * + * _.replace('Hi Fred', 'Fred', 'Barney'); + * // => 'Hi Barney' + */ + function replace() { + var args = arguments, + string = toString(args[0]); + + return args.length < 3 ? string : string.replace(args[1], args[2]); + } + + /** + * Converts `string` to + * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--FOO-BAR--'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); + + /** + * Splits `string` by `separator`. + * + * **Note:** This method is based on + * [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ + function split(string, separator, limit) { + if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { + separator = limit = undefined; + } + limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; + if (!limit) { + return []; + } + string = toString(string); + if (string && ( + typeof separator == 'string' || + (separator != null && !isRegExp(separator)) + )) { + separator = baseToString(separator); + if (!separator && hasUnicode(string)) { + return castSlice(stringToArray(string), 0, limit); + } + } + return string.split(separator, limit); + } + + /** + * Converts `string` to + * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @since 3.1.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar--'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__FOO_BAR__'); + * // => 'FOO BAR' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + upperFirst(word); + }); + + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); + + target = baseToString(target); + return string.slice(position, position + target.length) == target; + } + + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is given, it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options={}] The options object. + * @param {RegExp} [options.escape=_.templateSettings.escape] + * The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] + * The "evaluate" delimiter. + * @param {Object} [options.imports=_.templateSettings.imports] + * An object to import into the template as free variables. + * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] + * The "interpolate" delimiter. + * @param {string} [options.sourceURL='lodash.templateSources[n]'] + * The sourceURL of the compiled template. + * @param {string} [options.variable='obj'] + * The data object variable name. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the compiled template function. + * @example + * + * // Use the "interpolate" delimiter to create a compiled template. + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // Use the HTML "escape" delimiter to escape data property values. + * var compiled = _.template('<%- value %>'); + * compiled({ 'value': '