git: 33c4381d405b - main - net-im/signal-desktop: Remove useless files

From: Mikael Urankar <mikael_at_FreeBSD.org>
Date: Thu, 09 Mar 2023 11:13:12 UTC
The branch main has been updated by mikael:

URL: https://cgit.FreeBSD.org/ports/commit/?id=33c4381d405b3d400099ac6d5ad3bd53e9167593

commit 33c4381d405b3d400099ac6d5ad3bd53e9167593
Author:     Mikael Urankar <mikael@FreeBSD.org>
AuthorDate: 2023-03-09 11:12:42 +0000
Commit:     Mikael Urankar <mikael@FreeBSD.org>
CommitDate: 2023-03-09 11:12:42 +0000

    net-im/signal-desktop: Remove useless files
    
    yarn.lock and package.json are not used anymore.
---
 net-im/signal-desktop/files/package.json |   507 -
 net-im/signal-desktop/files/yarn.lock    | 19034 -----------------------------
 2 files changed, 19541 deletions(-)

diff --git a/net-im/signal-desktop/files/package.json b/net-im/signal-desktop/files/package.json
deleted file mode 100644
index 5f1cfcca76be..000000000000
--- a/net-im/signal-desktop/files/package.json
+++ /dev/null
@@ -1,507 +0,0 @@
-{
-  "name": "signal-desktop",
-  "productName": "Signal",
-  "description": "Private messaging from your desktop",
-  "desktopName": "signal.desktop",
-  "repository": "https://github.com/signalapp/Signal-Desktop.git",
-  "version": "6.7.0",
-  "license": "AGPL-3.0-only",
-  "author": {
-    "name": "Signal Messenger, LLC",
-    "email": "support@signal.org"
-  },
-  "browserslist": "last 1 chrome versions",
-  "main": "app/main.js",
-  "scripts": {
-    "postinstall": "yarn build:acknowledgments && patch-package && yarn electron:install-app-deps",
-    "postuninstall": "yarn build:acknowledgments",
-    "start": "electron .",
-    "generate": "npm-run-all build-protobuf build:esbuild sass get-expire-time copy-components",
-    "build-release": "yarn run build",
-    "sign-release": "node ts/updater/generateSignature.js",
-    "notarize": "echo 'No longer necessary'",
-    "get-strings": "node ts/scripts/get-strings.js",
-    "push-strings": "node ts/scripts/push-strings.js",
-    "get-expire-time": "node ts/scripts/get-expire-time.js",
-    "copy-components": "node ts/scripts/copy.js",
-    "sass": "sass stylesheets/manifest.scss:stylesheets/manifest.css stylesheets/manifest_bridge.scss:stylesheets/manifest_bridge.css",
-    "build-module-protobuf": "pbjs --target static-module --force-long --no-verify --no-create --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
-    "clean-module-protobuf": "rm -f ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
-    "build-protobuf": "yarn build-module-protobuf",
-    "clean-protobuf": "yarn clean-module-protobuf",
-    "prepare-beta-build": "node scripts/prepare_beta_build.js",
-    "prepare-alpha-build": "node scripts/prepare_alpha_build.js",
-    "prepare-alpha-version": "node scripts/prepare_alpha_version.js",
-    "prepare-staging-build": "node scripts/prepare_staging_build.js",
-    "prepare-windows-cert": "node scripts/prepare_windows_cert.js",
-    "publish-to-apt": "NAME=$npm_package_name VERSION=$npm_package_version ./aptly.sh",
-    "test": "yarn test-node && yarn test-electron && yarn test-lint-intl && yarn test-eslint",
-    "test-electron": "node ts/scripts/test-electron.js",
-    "test-release": "node ts/scripts/test-release.js",
-    "test-node": "electron-mocha --timeout 10000 --file test/setup-test-node.js --recursive test/modules ts/test-node ts/test-both",
-    "test-mock": "mocha ts/test-mock/**/*_test.js",
-    "test-eslint": "mocha .eslint/rules/**/*.test.js --ignore-leaks",
-    "test-node-coverage": "nyc --reporter=lcov --reporter=text mocha --recursive test/modules ts/test-node ts/test-both",
-    "test-lint-intl": "ts-node ./build/intl-linter/linter.ts --test",
-    "eslint": "eslint --cache . --max-warnings 0",
-    "lint": "run-s --print-label lint-prettier check:types eslint",
-    "lint-deps": "node ts/util/lint/linter.js",
-    "lint-license-comments": "ts-node ts/util/lint/license_comments.ts",
-    "lint-prettier": "pprettier --check '**/*.{ts,tsx,d.ts,js,json,html,scss,md,yml,yaml}' '!node_modules/**'",
-    "lint-intl": "ts-node ./build/intl-linter/linter.ts",
-    "danger:local": "./danger/danger.sh local --base main",
-    "danger:ci": "./danger/danger.sh ci --base origin/main",
-    "format": "pprettier --write '**/*.{ts,tsx,d.ts,js,json,html,scss,md,yml,yaml}' '!node_modules/**'",
-    "svgo": "svgo images/**/*.svg",
-    "transpile": "run-p check:types build:esbuild",
-    "check:types": "tsc --noEmit",
-    "clean-transpile-once": "rimraf app/**/*.js app/*.js sticker-creator/**/*.js sticker-creator/*.js ts/**/*.js ts/*.js tsconfig.tsbuildinfo",
-    "clean-transpile": "yarn run clean-transpile-once && yarn run clean-transpile-once",
-    "open-coverage": "open coverage/lcov-report/index.html",
-    "ready": "npm-run-all --print-label clean-transpile generate --parallel lint lint-deps lint-intl test-node test-electron",
-    "dev": "run-p --print-label dev:*",
-    "dev:transpile": "run-p \"check:types --watch\" dev:esbuild",
-    "dev:webpack": "run-p dev:esbuild dev:webpack:sticker-creator",
-    "dev:webpack:sticker-creator": "cross-env NODE_ENV=development webpack serve --mode development",
-    "dev:esbuild": "node scripts/esbuild.js --watch",
-    "dev:typed-scss": "yarn build:typed-scss -w",
-    "dev:storybook": "cross-env SIGNAL_ENV=storybook start-storybook -p 6006 -s ./",
-    "dev:sass": "yarn sass --watch",
-    "build": "run-s --print-label generate build:typed-scss build:webpack build:release",
-    "build:acknowledgments": "node scripts/generate-acknowledgments.js",
-    "build:dev": "run-s --print-label generate build:typed-scss build:webpack",
-    "build:typed-scss": "tsm sticker-creator",
-    "build:webpack": "run-p build:webpack:sticker-creator \"build:esbuild --prod\"",
-    "build:webpack:sticker-creator": "cross-env NODE_ENV=production webpack",
-    "build:esbuild": "node scripts/esbuild.js",
-    "build:electron": "electron-builder --config.extraMetadata.environment=$SIGNAL_ENV",
-    "build:release": "cross-env SIGNAL_ENV=production yarn build:electron -- --config.directories.output=release",
-    "preverify:ts": "yarn build:typed-scss",
-    "verify": "run-p --print-label verify:*",
-    "verify:ts": "tsc --noEmit",
-    "electron:install-app-deps": "electron-builder install-app-deps"
-  },
-  "optionalDependencies": {
-    "fs-xattr": "0.3.0"
-  },
-  "dependencies": {
-    "@formatjs/fast-memoize": "1.2.6",
-    "@indutny/frameless-titlebar": "2.3.5",
-    "@indutny/sneequals": "4.0.0",
-    "@popperjs/core": "2.11.6",
-    "@react-spring/web": "9.5.5",
-    "@signalapp/better-sqlite3": "8.4.3",
-    "@signalapp/libsignal-client": "0.22.0",
-    "@signalapp/ringrtc": "2.24.0",
-    "@types/fabric": "4.5.3",
-    "array-move": "2.1.0",
-    "backbone": "1.4.0",
-    "blob-util": "2.0.2",
-    "blueimp-load-image": "5.14.0",
-    "blurhash": "1.1.3",
-    "classnames": "2.2.5",
-    "config": "1.28.1",
-    "copy-text-to-clipboard": "2.1.0",
-    "dashdash": "1.14.1",
-    "dicer": "0.3.1",
-    "direction": "1.0.4",
-    "emoji-datasource": "14.0.0",
-    "emoji-datasource-apple": "14.0.0",
-    "emoji-regex": "10.1.0",
-    "encoding": "0.1.13",
-    "fabric": "4.6.0",
-    "fast-glob": "3.2.1",
-    "filesize": "3.6.1",
-    "firstline": "1.2.1",
-    "focus-trap-react": "8.8.1",
-    "form-data": "4.0.0",
-    "fs-extra": "5.0.0",
-    "fuse.js": "6.5.3",
-    "glob": "7.1.6",
-    "google-libphonenumber": "3.2.27",
-    "got": "11.8.5",
-    "heic-convert": "1.2.4",
-    "history": "4.9.0",
-    "humanize-duration": "3.27.1",
-    "intl-tel-input": "17.0.13",
-    "js-yaml": "3.13.1",
-    "linkify-it": "2.2.0",
-    "lodash": "4.17.21",
-    "long": "4.0.0",
-    "lru-cache": "6.0.0",
-    "mac-screen-capture-permissions": "2.0.0",
-    "memoizee": "0.4.14",
-    "moment": "2.29.4",
-    "mp4box": "0.5.2",
-    "node-fetch": "2.6.7",
-    "normalize-path": "3.0.0",
-    "p-map": "2.1.0",
-    "p-props": "4.0.0",
-    "p-queue": "6.6.2",
-    "p-timeout": "4.1.0",
-    "parchment": "1.1.4",
-    "pify": "3.0.0",
-    "pino": "8.6.1",
-    "protobufjs": "6.11.3",
-    "proxy-agent": "5.0.0",
-    "qrcode-generator": "1.4.4",
-    "quill": "1.3.7",
-    "quill-delta": "4.0.1",
-    "react": "17.0.2",
-    "react-blurhash": "0.1.2",
-    "react-contextmenu": "2.11.0",
-    "react-dom": "17.0.2",
-    "react-dropzone": "10.2.2",
-    "react-hot-loader": "4.13.0",
-    "react-intl": "6.1.1",
-    "react-measure": "2.3.0",
-    "react-popper": "2.3.0",
-    "react-quill": "2.0.0-beta.4",
-    "react-redux": "7.2.8",
-    "react-router-dom": "5.0.1",
-    "react-sortable-hoc": "2.0.0",
-    "react-textarea-autosize": "8.3.4",
-    "react-virtualized": "9.22.3",
-    "read-last-lines": "1.8.0",
-    "redux": "4.1.2",
-    "redux-logger": "3.0.6",
-    "redux-promise-middleware": "6.1.0",
-    "redux-thunk": "2.3.0",
-    "redux-ts-utils": "3.2.2",
-    "reselect": "4.1.2",
-    "rimraf": "2.6.2",
-    "sanitize.css": "11.0.0",
-    "semver": "5.4.1",
-    "split2": "4.0.0",
-    "type-fest": "3.5.0",
-    "typeface-inter": "3.18.1",
-    "uuid": "3.3.2",
-    "websocket": "1.0.34",
-    "zod": "3.5.1"
-  },
-  "devDependencies": {
-    "@babel/core": "7.14.3",
-    "@babel/plugin-proposal-class-properties": "7.17.12",
-    "@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
-    "@babel/plugin-proposal-optional-chaining": "7.17.12",
-    "@babel/plugin-transform-runtime": "7.18.2",
-    "@babel/plugin-transform-typescript": "7.18.4",
-    "@babel/preset-react": "7.17.12",
-    "@babel/preset-typescript": "7.17.12",
-    "@electron/fuses": "1.5.0",
-    "@mixer/parallel-prettier": "2.0.1",
-    "@storybook/addon-a11y": "6.5.6",
-    "@storybook/addon-actions": "6.5.6",
-    "@storybook/addon-controls": "6.5.6",
-    "@storybook/addon-interactions": "6.5.9",
-    "@storybook/addon-knobs": "6.4.0",
-    "@storybook/addon-measure": "6.5.6",
-    "@storybook/addon-toolbars": "6.5.6",
-    "@storybook/addon-viewport": "6.5.6",
-    "@storybook/addons": "6.5.6",
-    "@storybook/builder-webpack5": "6.5.15",
-    "@storybook/jest": "0.0.10",
-    "@storybook/manager-webpack5": "6.5.15",
-    "@storybook/react": "6.5.6",
-    "@storybook/testing-library": "0.0.13",
-    "@types/backbone": "1.4.5",
-    "@types/blueimp-load-image": "5.14.1",
-    "@types/chai": "4.2.18",
-    "@types/chai-as-promised": "7.1.4",
-    "@types/classnames": "2.2.3",
-    "@types/config": "0.0.39",
-    "@types/dashdash": "1.14.0",
-    "@types/debug": "4.1.7",
-    "@types/dicer": "0.2.2",
-    "@types/direction": "1.0.0",
-    "@types/filesize": "3.6.0",
-    "@types/fs-extra": "5.0.5",
-    "@types/google-libphonenumber": "7.4.23",
-    "@types/history": "4.7.2",
-    "@types/humanize-duration": "3.18.1",
-    "@types/intl-tel-input": "17.0.4",
-    "@types/js-yaml": "3.12.0",
-    "@types/json-to-ast": "2.1.2",
-    "@types/linkify-it": "2.1.0",
-    "@types/lodash": "4.14.106",
-    "@types/long": "4.0.1",
-    "@types/lru-cache": "5.1.0",
-    "@types/memoizee": "0.4.2",
-    "@types/mocha": "9.0.0",
-    "@types/node": "16.18.3",
-    "@types/node-fetch": "2.6.2",
-    "@types/normalize-path": "3.0.0",
-    "@types/pify": "3.0.2",
-    "@types/quill": "1.3.10",
-    "@types/react": "17.0.45",
-    "@types/react-dom": "17.0.17",
-    "@types/react-measure": "2.0.5",
-    "@types/react-redux": "7.1.24",
-    "@types/react-router-dom": "4.3.4",
-    "@types/react-sortable-hoc": "0.6.5",
-    "@types/react-virtualized": "9.18.12",
-    "@types/redux-logger": "3.0.7",
-    "@types/rimraf": "2.0.2",
-    "@types/semver": "5.5.0",
-    "@types/sinon": "10.0.2",
-    "@types/split2": "3.2.1",
-    "@types/terser-webpack-plugin": "5.0.3",
-    "@types/uuid": "3.4.4",
-    "@types/webpack": "5.28.0",
-    "@types/websocket": "1.0.0",
-    "@types/yargs": "17.0.7",
-    "@typescript-eslint/eslint-plugin": "5.47.0",
-    "@typescript-eslint/parser": "5.47.0",
-    "arraybuffer-loader": "1.0.3",
-    "asar": "3.1.0",
-    "axe-core": "4.1.4",
-    "babel-core": "7.0.0-bridge.0",
-    "babel-loader": "8.0.6",
-    "babel-plugin-lodash": "3.3.4",
-    "casual": "1.6.2",
-    "chai": "4.3.4",
-    "chai-as-promised": "7.1.1",
-    "chalk": "4.1.2",
-    "core-js": "2.6.9",
-    "cross-env": "5.2.0",
-    "css-loader": "3.2.0",
-    "danger": "11.1.2",
-    "debug": "4.3.3",
-    "electron": "22.2.0",
-    "electron-builder": "23.0.8",
-    "electron-mocha": "11.0.2",
-    "electron-notarize": "1.2.1",
-    "endanger": "7.0.4",
-    "esbuild": "0.17.2",
-    "eslint": "8.30.0",
-    "eslint-config-airbnb-typescript-prettier": "5.0.0",
-    "eslint-config-prettier": "8.5.0",
-    "eslint-plugin-import": "2.26.0",
-    "eslint-plugin-local-rules": "1.3.2",
-    "eslint-plugin-mocha": "10.1.0",
-    "eslint-plugin-more": "1.0.5",
-    "eslint-plugin-react": "7.31.10",
-    "file-loader": "4.2.0",
-    "html-webpack-plugin": "5.3.1",
-    "json-to-ast": "2.1.0",
-    "mocha": "9.1.3",
-    "node-gyp": "9.0.0",
-    "npm-run-all": "4.1.5",
-    "nyc": "11.4.1",
-    "patch-package": "6.4.7",
-    "playwright": "1.30.0",
-    "prettier": "2.7.1",
-    "sass": "1.49.7",
-    "sass-loader": "10.2.0",
-    "sinon": "11.1.1",
-    "style-loader": "1.0.0",
-    "svgo": "3.0.2",
-    "terser-webpack-plugin": "5.1.1",
-    "ts-loader": "4.1.0",
-    "ts-node": "8.3.0",
-    "typed-scss-modules": "4.1.1",
-    "typescript": "4.9.3",
-    "webpack": "5.30.0",
-    "webpack-cli": "4.9.2",
-    "webpack-dev-server": "4.11.1"
-  },
-  "resolutions": {
-    "@storybook/react/@storybook/core/node-fetch": "2.6.1",
-    "@types/react": "17.0.45",
-    "@types/react-dom": "17.0.17",
-    "dmg-license": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
-    "fabric/canvas": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
-    "fabric/jsdom": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
-    "fast-glob/glob-parent": "5.1.2",
-    "read-last-lines/mz/thenify-all/thenify": "3.3.1"
-  },
-  "engines": {
-    "node": "16.19.1"
-  },
-  "build": {
-    "appId": "org.whispersystems.signal-desktop",
-    "mac": {
-      "artifactName": "${name}-mac-${arch}-${version}.${ext}",
-      "category": "public.app-category.social-networking",
-      "darkModeSupport": true,
-      "hardenedRuntime": true,
-      "entitlements": "./build/entitlements.mac.plist",
-      "icon": "build/icons/mac/icon.icns",
-      "publish": [
-        {
-          "provider": "generic",
-          "url": "https://updates.signal.org/desktop"
-        }
-      ],
-      "mergeASARs": true,
-      "releaseInfo": {
-        "vendor": {
-          "minOSVersion": "17.0.0"
-        }
-      },
-      "singleArchFiles": "node_modules/@signalapp/{libsignal-client/prebuilds/**,ringrtc/build/**}",
-      "target": [
-        {
-          "target": "zip",
-          "arch": [
-            "x64",
-            "arm64"
-          ]
-        },
-        {
-          "target": "dmg",
-          "arch": [
-            "x64",
-            "arm64",
-            "universal"
-          ]
-        }
-      ],
-      "bundleVersion": "1"
-    },
-    "win": {
-      "artifactName": "${name}-win-${version}.${ext}",
-      "certificateSubjectName": "Signal Messenger, LLC",
-      "certificateSha1": "8C9A0B5C852EC703D83EF7BFBCEB54B796073759",
-      "signingHashAlgorithms": [
-        "sha256"
-      ],
-      "publisherName": "Signal Messenger, LLC",
-      "icon": "build/icons/win/icon.ico",
-      "publish": [
-        {
-          "provider": "generic",
-          "url": "https://updates.signal.org/desktop"
-        }
-      ],
-      "releaseInfo": {
-        "vendor": {
-          "minOSVersion": "6.1.0"
-        }
-      },
-      "signDlls": true,
-      "target": [
-        "nsis"
-      ]
-    },
-    "nsis": {
-      "deleteAppDataOnUninstall": true
-    },
-    "linux": {
-      "category": "Network;InstantMessaging;Chat",
-      "desktop": {
-        "StartupWMClass": "Signal"
-      },
-      "target": [
-        "deb"
-      ],
-      "icon": "build/icons/png"
-    },
-    "deb": {
-      "depends": [
-        "libnotify4",
-        "libxtst6",
-        "libnss3",
-        "libasound2",
-        "libxss1"
-      ]
-    },
-    "protocols": {
-      "name": "sgnl-url-scheme",
-      "schemes": [
-        "sgnl",
-        "signalcaptcha"
-      ]
-    },
-    "afterPack": "ts/scripts/after-pack.js",
-    "afterSign": "ts/scripts/after-sign.js",
-    "afterAllArtifactBuild": "ts/scripts/after-all-artifact-build.js",
-    "asar": {
-      "smartUnpack": false
-    },
-    "asarUnpack": [
-      "**/*.node"
-    ],
-    "files": [
-      "package.json",
-      "config/default.json",
-      "config/${env.SIGNAL_ENV}.json",
-      "config/local-${env.SIGNAL_ENV}.json",
-      "background.html",
-      "about.html",
-      "screenShare.html",
-      "settings.html",
-      "permissions_popup.html",
-      "debug_log.html",
-      "loading.html",
-      "_locales/**",
-      "js/**",
-      "libtextsecure/**",
-      "ts/**/*.js",
-      "ts/*.js",
-      "!build",
-      "!ts/{storybook,test-node,test-mock,test-both,test-electron}",
-      "!**/{tsconfig,bower,component}.json",
-      "!**/.{github,husky,grenrc,npmrc,nycrc,taprc,bithoundrc}",
-      "!**/.testem.json",
-      "!**/.babelrc*",
-      "!**/.eslintrc*",
-      "!**/.prettier*",
-      "!**/.jscs*",
-      "!**/*travis*.yml",
-      "!**/{CHANGES,TODO,CHANGES.md~,README.md~}",
-      "!**/*.stories.js",
-      "!**/*.jest.js",
-      "!**/*.{bak,bnf,flow,patch,markdown,bnf,mli,ts,map}",
-      "!node_modules/intl-tel-input/composer.json",
-      "!js/register.js",
-      "stylesheets/*.css",
-      "app/*",
-      "preload.bundle.js",
-      "preload_utils.js",
-      "main.js",
-      "images/**",
-      "fonts/**",
-      "sounds/*",
-      "build/icons",
-      "node_modules/**",
-      "sticker-creator/preload.js",
-      "sticker-creator/window/*.js",
-      "sticker-creator/dist/**",
-      "!node_modules/underscore/**",
-      "!node_modules/emoji-datasource/emoji_pretty.json",
-      "!node_modules/emoji-datasource/**/*.png",
-      "!node_modules/emoji-datasource-apple/emoji_pretty.json",
-      "!node_modules/emoji-datasource-apple/img/apple/sheets*",
-      "!node_modules/spellchecker/vendor/hunspell/**/*",
-      "!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts,.snyk-*.flag,benchmark}",
-      "!**/node_modules/.bin",
-      "!**/node_modules/**/build/**",
-      "node_modules/intl-tel-input/build/**",
-      "!**/node_modules/**/prebuilds/**",
-      "!**/*.{o,hprof,orig,pyc,pyo,rbc,c,h,m}",
-      "!**/._*",
-      "!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.flowconfig,.yarn-metadata.json,.idea,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}",
-      "node_modules/spellchecker/build/Release/*.node",
-      "node_modules/websocket/build/Release/*.node",
-      "!node_modules/websocket/builderror.log",
-      "node_modules/socks/build/*.js",
-      "node_modules/socks/build/common/*.js",
-      "node_modules/socks/build/client/*.js",
-      "node_modules/smart-buffer/build/*.js",
-      "!node_modules/@signalapp/better-sqlite3/deps/*",
-      "!node_modules/@signalapp/better-sqlite3/src/*",
-      "node_modules/@signalapp/better-sqlite3/build/Release/better_sqlite3.node",
-      "node_modules/@signalapp/libsignal-client/prebuilds/${platform}-${arch}/*.node",
-      "!node_modules/@signalapp/ringrtc/scripts/*",
-      "node_modules/@signalapp/ringrtc/build/${platform}/*${arch}*.node",
-      "node_modules/mac-screen-capture-permissions/build/Release/*.node",
-      "node_modules/fs-xattr/build/Release/*.node",
-      "!**/node_modules/react-dom/*/*.development.js",
-      "!node_modules/mp4box/**",
-      "node_modules/mp4box/package.json",
-      "node_modules/mp4box/dist/mp4box.all.js",
-      "!node_modules/.cache"
-    ]
-  }
-}
diff --git a/net-im/signal-desktop/files/yarn.lock b/net-im/signal-desktop/files/yarn.lock
deleted file mode 100644
index 49b1fbbd0e10..000000000000
--- a/net-im/signal-desktop/files/yarn.lock
+++ /dev/null
@@ -1,19034 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"7zip-bin@~5.1.1":
-  version "5.1.1"
-  resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.1.1.tgz#9274ec7460652f9c632c59addf24efb1684ef876"
-  integrity sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==
-
-"@ampproject/remapping@^2.1.0":
-  version "2.2.0"
-  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
-  integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
-  dependencies:
-    "@jridgewell/gen-mapping" "^0.1.0"
-    "@jridgewell/trace-mapping" "^0.3.9"
-
-"@babel/code-frame@^7.0.0":
-  version "7.16.0"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431"
-  integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==
-  dependencies:
-    "@babel/highlight" "^7.16.0"
-
-"@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
-  integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
-  dependencies:
-    "@babel/highlight" "^7.16.7"
-
-"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10":
-  version "7.17.10"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.10.tgz#711dc726a492dfc8be8220028b1b92482362baab"
-  integrity sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==
-
-"@babel/core@7.12.9":
-  version "7.12.9"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
-  integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
-  dependencies:
-    "@babel/code-frame" "^7.10.4"
-    "@babel/generator" "^7.12.5"
-    "@babel/helper-module-transforms" "^7.12.1"
-    "@babel/helpers" "^7.12.5"
-    "@babel/parser" "^7.12.7"
-    "@babel/template" "^7.12.7"
-    "@babel/traverse" "^7.12.9"
-    "@babel/types" "^7.12.7"
-    convert-source-map "^1.7.0"
-    debug "^4.1.0"
-    gensync "^1.0.0-beta.1"
-    json5 "^2.1.2"
-    lodash "^4.17.19"
-    resolve "^1.3.2"
-    semver "^5.4.1"
-    source-map "^0.5.0"
-
-"@babel/core@7.14.3":
-  version "7.14.3"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
-  integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
-  dependencies:
-    "@babel/code-frame" "^7.12.13"
-    "@babel/generator" "^7.14.3"
-    "@babel/helper-compilation-targets" "^7.13.16"
-    "@babel/helper-module-transforms" "^7.14.2"
-    "@babel/helpers" "^7.14.0"
-    "@babel/parser" "^7.14.3"
-    "@babel/template" "^7.12.13"
-    "@babel/traverse" "^7.14.2"
-    "@babel/types" "^7.14.2"
-    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"
-
-"@babel/core@^7.12.10", "@babel/core@^7.7.5":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.2.tgz#87b2fcd7cce9becaa7f5acebdc4f09f3dd19d876"
-  integrity sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==
-  dependencies:
-    "@ampproject/remapping" "^2.1.0"
-    "@babel/code-frame" "^7.16.7"
-    "@babel/generator" "^7.18.2"
-    "@babel/helper-compilation-targets" "^7.18.2"
-    "@babel/helper-module-transforms" "^7.18.0"
-    "@babel/helpers" "^7.18.2"
-    "@babel/parser" "^7.18.0"
-    "@babel/template" "^7.16.7"
-    "@babel/traverse" "^7.18.2"
-    "@babel/types" "^7.18.2"
-    convert-source-map "^1.7.0"
-    debug "^4.1.0"
-    gensync "^1.0.0-beta.2"
-    json5 "^2.2.1"
-    semver "^6.3.0"
-
-"@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.14.3", "@babel/generator@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d"
-  integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==
-  dependencies:
-    "@babel/types" "^7.18.2"
-    "@jridgewell/gen-mapping" "^0.3.0"
-    jsesc "^2.5.1"
-
-"@babel/helper-annotate-as-pure@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
-  integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
-  integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
-  dependencies:
-    "@babel/helper-explode-assignable-expression" "^7.16.7"
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b"
-  integrity sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==
-  dependencies:
-    "@babel/compat-data" "^7.17.10"
-    "@babel/helper-validator-option" "^7.16.7"
-    browserslist "^4.20.2"
-    semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0":
-  version "7.18.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19"
-  integrity sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.16.7"
-    "@babel/helper-environment-visitor" "^7.16.7"
-    "@babel/helper-function-name" "^7.17.9"
-    "@babel/helper-member-expression-to-functions" "^7.17.7"
-    "@babel/helper-optimise-call-expression" "^7.16.7"
-    "@babel/helper-replace-supers" "^7.16.7"
-    "@babel/helper-split-export-declaration" "^7.16.7"
-
-"@babel/helper-create-regexp-features-plugin@^7.16.7", "@babel/helper-create-regexp-features-plugin@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd"
-  integrity sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.16.7"
-    regexpu-core "^5.0.1"
-
-"@babel/helper-define-polyfill-provider@^0.1.5":
-  version "0.1.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e"
-  integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==
-  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"
-
-"@babel/helper-define-polyfill-provider@^0.3.1":
-  version "0.3.1"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665"
-  integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==
-  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"
-
-"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd"
-  integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==
-
-"@babel/helper-explode-assignable-expression@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
-  integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":
-  version "7.17.9"
-  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12"
-  integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==
-  dependencies:
-    "@babel/template" "^7.16.7"
-    "@babel/types" "^7.17.0"
-
-"@babel/helper-hoist-variables@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
-  integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-member-expression-to-functions@^7.17.7":
-  version "7.17.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
-  integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==
-  dependencies:
-    "@babel/types" "^7.17.0"
-
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
-  integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-module-imports@^7.0.0-beta.49":
-  version "7.13.12"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
-  integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
-  dependencies:
-    "@babel/types" "^7.13.12"
-
-"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.2", "@babel/helper-module-transforms@^7.18.0":
-  version "7.18.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd"
-  integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==
-  dependencies:
-    "@babel/helper-environment-visitor" "^7.16.7"
-    "@babel/helper-module-imports" "^7.16.7"
-    "@babel/helper-simple-access" "^7.17.7"
-    "@babel/helper-split-export-declaration" "^7.16.7"
-    "@babel/helper-validator-identifier" "^7.16.7"
-    "@babel/template" "^7.16.7"
-    "@babel/traverse" "^7.18.0"
-    "@babel/types" "^7.18.0"
-
-"@babel/helper-optimise-call-expression@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2"
-  integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-plugin-utils@7.10.4":
-  version "7.10.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
-  integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
-  version "7.14.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
-  integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==
-
-"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96"
-  integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==
-
-"@babel/helper-regex@^7.4.4":
-  version "7.5.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351"
-  integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==
-  dependencies:
-    lodash "^4.17.13"
-
-"@babel/helper-remap-async-to-generator@^7.16.8":
-  version "7.16.8"
-  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3"
-  integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.16.7"
-    "@babel/helper-wrap-function" "^7.16.8"
-    "@babel/types" "^7.16.8"
-
-"@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0"
-  integrity sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==
-  dependencies:
-    "@babel/helper-environment-visitor" "^7.18.2"
-    "@babel/helper-member-expression-to-functions" "^7.17.7"
-    "@babel/helper-optimise-call-expression" "^7.16.7"
-    "@babel/traverse" "^7.18.2"
-    "@babel/types" "^7.18.2"
-
-"@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9"
-  integrity sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==
-  dependencies:
-    "@babel/types" "^7.18.2"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
-  version "7.16.0"
-  resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
-  integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
-  dependencies:
-    "@babel/types" "^7.16.0"
-
-"@babel/helper-split-export-declaration@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
-  integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
-  dependencies:
-    "@babel/types" "^7.16.7"
-
-"@babel/helper-validator-identifier@^7.15.7":
-  version "7.15.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
-  integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==
-
-"@babel/helper-validator-identifier@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
-  integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
-
-"@babel/helper-validator-option@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
-  integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==
-
-"@babel/helper-wrap-function@^7.16.8":
-  version "7.16.8"
-  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200"
-  integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==
-  dependencies:
-    "@babel/helper-function-name" "^7.16.7"
-    "@babel/template" "^7.16.7"
-    "@babel/traverse" "^7.16.8"
-    "@babel/types" "^7.16.8"
-
-"@babel/helpers@^7.12.5", "@babel/helpers@^7.14.0", "@babel/helpers@^7.18.2":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384"
-  integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==
-  dependencies:
-    "@babel/template" "^7.16.7"
-    "@babel/traverse" "^7.18.2"
-    "@babel/types" "^7.18.2"
-
-"@babel/highlight@^7.16.0":
-  version "7.16.0"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a"
-  integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==
-  dependencies:
-    "@babel/helper-validator-identifier" "^7.15.7"
-    chalk "^2.0.0"
-    js-tokens "^4.0.0"
-
-"@babel/highlight@^7.16.7":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351"
-  integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==
-  dependencies:
-    "@babel/helper-validator-identifier" "^7.16.7"
-    chalk "^2.0.0"
-    js-tokens "^4.0.0"
-
-"@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.14.3", "@babel/parser@^7.16.7", "@babel/parser@^7.18.0":
-  version "7.18.4"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.4.tgz#6774231779dd700e0af29f6ad8d479582d7ce5ef"
-  integrity sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==
-
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.17.12.tgz#1dca338caaefca368639c9ffb095afbd4d420b1e"
-  integrity sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.17.12"
-
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.17.12.tgz#0d498ec8f0374b1e2eb54b9cb2c4c78714c77753"
-  integrity sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
-    "@babel/plugin-proposal-optional-chaining" "^7.17.12"
-
-"@babel/plugin-proposal-async-generator-functions@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz#094a417e31ce7e692d84bab06c8e2a607cbeef03"
-  integrity sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/helper-remap-async-to-generator" "^7.16.8"
-    "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-class-properties@7.17.12", "@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4"
-  integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.17.12"
-    "@babel/helper-plugin-utils" "^7.17.12"
-
-"@babel/plugin-proposal-class-static-block@^7.18.0":
-  version "7.18.0"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.0.tgz#7d02253156e3c3793bdb9f2faac3a1c05f0ba710"
-  integrity sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.18.0"
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-proposal-decorators@^7.12.12":
-  version "7.18.2"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.2.tgz#dbe4086d2d42db489399783c3aa9272e9700afd4"
-  integrity sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.18.0"
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/helper-replace-supers" "^7.18.2"
-    "@babel/helper-split-export-declaration" "^7.16.7"
-    "@babel/plugin-syntax-decorators" "^7.17.12"
-    charcodes "^0.2.0"
-
-"@babel/plugin-proposal-dynamic-import@^7.16.7":
-  version "7.16.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz#c19c897eaa46b27634a00fee9fb7d829158704b2"
-  integrity sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.16.7"
-    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
-"@babel/plugin-proposal-export-default-from@^7.12.1":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.17.12.tgz#df785e638618d8ffa14e08c78c44d9695d083b73"
-  integrity sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/plugin-syntax-export-default-from" "^7.16.7"
-
-"@babel/plugin-proposal-export-namespace-from@^7.17.12":
-  version "7.17.12"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz#b22864ccd662db9606edb2287ea5fd1709f05378"
-  integrity sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.17.12"
-    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
*** 18584 LINES SKIPPED ***