diff --git a/.circleci/config.yml b/.circleci/config.yml index b2c77ce00ca59..1bd1b9a6f3fe7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,33 +3,6 @@ orbs: k8s: circleci/kubernetes@0.7.0 slack: circleci/slack@3.4.2 commands: - git_checkout_from_cache: - description: "Git checkout and save cache" - steps: - - restore_cache: - keys: - - source-v1-{{ .Branch }}-{{ .Revision }} - - source-v1-{{ .Branch }}- - - source-v1- - - run: - name: Fetch git tags - command: | - mkdir -p ~/.ssh - ssh-keyscan github.com >> ~/.ssh/known_hosts - echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== ' >> ~/.ssh/known_hosts - # Fetch tags if git cache is present - if [ -e /home/circleci/project/.git ] - then - git fetch origin --tags - fi - - checkout - - run: - name: Compress git objects - command: git gc - - save_cache: - key: source-v1-{{ .Branch }}-{{ .Revision }} - paths: - - ".git" npm_install: description: "npm install and save cache" steps: @@ -60,15 +33,12 @@ commands: - run: name: Building dist for << parameters.target >> command: node_modules/grunt/bin/grunt releaseci --<< parameters.target >> - deploy: - description: "Deploy to static branches" + versioning: + description: "Add version to build" parameters: target_branch: type: string steps: - - checkout - - attach_workspace: - at: dist - run: name: Tag build command: echo "<< parameters.target_branch >> $(date -u +'%Y-%m-%dT%H:%M:%SZ')" > dist/version @@ -132,7 +102,7 @@ commands: command: | cd dist npx wrangler pages publish . --project-name=binary-static-pages --branch=staging - echo "New staging website - http://staging.cf-pages-binary-static.deriv.com" + echo "New staging website - http://staging.cf-pages-binary-static.binary.com" publish_to_pages_production: description: "Publish to cloudflare pages" @@ -142,60 +112,52 @@ commands: command: | cd dist npx wrangler pages publish . --project-name=binary-static-pages --branch=main - echo "New website - http://cf-pages-binary-static.deriv.com" + echo "New website - http://cf-pages-binary-static.binary.com" jobs: test: docker: - - image: circleci/node:9.8.0-stretch + - image: circleci/node:14-stretch steps: - - git_checkout_from_cache + - checkout - npm_install - test release_staging: docker: - - image: circleci/node:9.8.0-stretch + - image: circleci/node:14-stretch steps: - - git_checkout_from_cache + - checkout - npm_install - test - build: target: 'staging' - build: target: 'translations' + - versioning: + target_branch: "staging" - persist_to_workspace: root: dist paths: - . - - deploy: + - versioning: target_branch: "staging" - docker_build_push - k8s_deploy - notify_slack release_production: docker: - - image: circleci/node:9.8.0-stretch + - image: circleci/node:14-stretch steps: - - git_checkout_from_cache + - checkout - npm_install - test - build: target: 'production' + - versioning: + target_branch: "production" - persist_to_workspace: root: dist paths: - . - - deploy: - target_branch: "production" - - notify_slack - release_aws_production: - docker: - - image: circleci/node:9.8.0-stretch - steps: - - git_checkout_from_cache - - npm_install - - test - - build: - target: 'production' - docker_build_push: docker_latest_image_tag: latest docker_image_tag: ${CIRCLE_TAG} @@ -203,17 +165,17 @@ jobs: k8s_svc_name: "production-binary-com" k8s_namespace: "www-binary-com-production" k8s_version: ${CIRCLE_TAG} + - notify_slack publish_cloudflare_staging: docker: - - image: circleci/node:16.13.1-stretch + - image: cimg/node:20.2.0 steps: - attach_workspace: at: dist - publish_to_pages_staging - publish_cloudflare_production: docker: - - image: circleci/node:16.13.1-stretch + - image: cimg/node:20.2.0 steps: - attach_workspace: at: dist @@ -232,6 +194,7 @@ workflows: filters: branches: only: /^master$/ + context: binary-frontend-artifact-upload - publish_cloudflare_staging: requires: - release_staging @@ -245,16 +208,10 @@ workflows: ignore: /.*/ tags: only: /^production.*/ - - release_aws_production: - filters: - branches: - ignore: /.*/ - tags: - only: /^production.*/ context: binary-frontend-artifact-upload - publish_cloudflare_production: requires: - - release_aws_production + - release_production filters: branches: ignore: /.*/ diff --git a/.github/workflows/generate_app_id.yml b/.github/workflows/generate_app_id.yml index 27ede78b0dc09..f86bb1a9a8d0b 100644 --- a/.github/workflows/generate_app_id.yml +++ b/.github/workflows/generate_app_id.yml @@ -1,5 +1,13 @@ name: Binary App ID Generator +permissions: + actions: write + checks: write + contents: write + deployments: write + pull-requests: write + statuses: write + on: issue_comment: types: [edited] @@ -14,6 +22,7 @@ jobs: uses: binary-com/vercel-preview-url-action@v1.0.5 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + preview_url_regexp: \[Visit Preview\]\((.*?.sx)\) - name: Generate Binary App ID for deployment Preview URL id: generate_app_id uses: DerivFE/binary-app-id-action@master diff --git a/.github/workflows/sync_crowdin_translations.yml b/.github/workflows/sync_crowdin_translations.yml index afdf350ad7477..fb4c6cdc87e21 100644 --- a/.github/workflows/sync_crowdin_translations.yml +++ b/.github/workflows/sync_crowdin_translations.yml @@ -1,5 +1,13 @@ name: Sync Crowdin translations +permissions: + actions: write + checks: write + contents: write + deployments: write + pull-requests: write + statuses: write + on: workflow_dispatch: push: @@ -19,7 +27,7 @@ jobs: - name: Setup node uses: actions/setup-node@v2 with: - node-version: '12' + node-version: '14' - name: Checkout master branch uses: actions/checkout@v2 @@ -33,7 +41,7 @@ jobs: git config --global user.email "80095553+DerivFE@users.noreply.github.com" echo "Installing Crowdin CLI" - sudo npm i -g @crowdin/cli + sudo npm i -g @crowdin/cli@3.7.8 echo "Installing project dependencies and building the project" npm install npm run build diff --git a/package-lock.json b/package-lock.json index f46d0d672990c..46a4b19f59c69 100644 --- a/package-lock.json +++ b/package-lock.json @@ -535,6 +535,12 @@ } } }, + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -746,6 +752,66 @@ "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", "dev": true }, + "@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + } + } + }, + "@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, "@pushwoosh/logger": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@pushwoosh/logger/-/logger-1.0.4.tgz", @@ -866,10 +932,16 @@ "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz", "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==" }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, "@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "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": "*", @@ -882,12 +954,24 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", "dev": true }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, "@types/node": { "version": "14.14.14", "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.14.tgz", "integrity": "sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==", "dev": true }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, "@types/q": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", @@ -900,9 +984,9 @@ "integrity": "sha512-r8ENXtljrt8U6knz4fWsiuUVrDk9nkBeJOePWCzUJDRS20MN/OWoZj+gbsPhWSXSXF1aUaS4iAE4xa5jCFW9Dw==" }, "@types/unist": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz", - "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", "dev": true }, "@types/vfile": { @@ -1179,9 +1263,9 @@ "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==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true }, "after": { @@ -1189,6 +1273,66 @@ "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=" }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "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 + } + } + }, + "agentkeepalive": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "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 + } + } + }, "aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -1266,12 +1410,6 @@ "resolved": "https://registry.npmjs.org/almond/-/almond-0.3.3.tgz", "integrity": "sha1-oOfJWsdiTWQXtElLHmi/9pMWiiA=" }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true - }, "ansi-align": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", @@ -1279,6 +1417,33 @@ "dev": true, "requires": { "string-width": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "ansi-colors": { @@ -1362,13 +1527,26 @@ "dev": true }, "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, "requires": { "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "readable-stream": "^3.6.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" + } + } } }, "argparse": { @@ -1415,7 +1593,7 @@ "array-each": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", "dev": true }, "array-equal": { @@ -1652,6 +1830,25 @@ "num2fraction": "^1.2.2", "postcss": "^6.0.14", "postcss-value-parser": "^3.2.3" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "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 + } } }, "aws-sign2": { @@ -2843,18 +3040,6 @@ "callsite": "1.0.0" } }, - "bfj": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz", - "integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "check-types": "^8.0.3", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" - } - }, "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -2901,15 +3086,6 @@ "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz", "integrity": "sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==" }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true, - "requires": { - "inherits": "~2.0.0" - } - }, "bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -3103,11 +3279,36 @@ "widest-line": "^2.0.0" }, "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, "camelcase": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } } } }, @@ -3314,26 +3515,37 @@ "dev": true }, "cacache": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", - "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", "dev": true, "requires": { - "bluebird": "^3.5.1", - "chownr": "^1.0.1", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "lru-cache": "^4.1.1", - "mississippi": "^2.0.0", + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "move-concurrently": "^1.0.1", "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", - "ssri": "^5.2.4", - "unique-filename": "^1.1.0", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", "y18n": "^4.0.0" }, "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, "rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", @@ -3344,9 +3556,15 @@ } }, "y18n": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", - "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } @@ -3421,13 +3639,13 @@ "call-me-maybe": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "integrity": "sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==", "dev": true }, "caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", "dev": true, "requires": { "callsites": "^2.0.0" @@ -3436,7 +3654,7 @@ "callsites": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", "dev": true } } @@ -3444,7 +3662,7 @@ "caller-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", "dev": true, "requires": { "caller-callsite": "^2.0.0" @@ -3600,79 +3818,199 @@ "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", "dev": true }, - "check-types": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz", - "integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==", - "dev": true - }, "cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", - "dev": true, - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - } - }, - "chokidar": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", - "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", - "dev": true, - "optional": true, - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "dev": true, + "requires": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, - "optional": true, "requires": { - "fill-range": "^7.0.1" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" } }, - "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==", + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, - "optional": true, "requires": { - "to-regex-range": "^5.0.1" + "domelementtype": "^2.3.0" } }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "domutils": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dev": true, - "optional": true, "requires": { - "is-glob": "^4.0.1" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" } }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dev": true, - "optional": true, + "entities": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==", + "dev": true + }, + "htmlparser2": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", + "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "entities": "^4.3.0" + } + }, + "parse5": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.0.0.tgz", + "integrity": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==", + "dev": true, + "requires": { + "entities": "^4.3.0" + } + } + } + }, + "cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "dependencies": { + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0" + } + }, + "domutils": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "dev": true, + "requires": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" + } + }, + "entities": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==", + "dev": true + } + } + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "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, + "optional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "optional": true, "requires": { "is-extglob": "^2.1.1" } @@ -3826,34 +4164,87 @@ "dev": true }, "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "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": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" }, "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "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": { - "number-is-nan": "^1.0.0" + "color-convert": "^2.0.1" + } + }, + "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 + }, + "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 + }, + "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 + }, "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "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": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "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" + } + }, + "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" } } } @@ -3930,16 +4321,16 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, - "colorette": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", - "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==", + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, "colors": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "integrity": "sha512-ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w==", "dev": true }, "combined-stream": { @@ -3976,7 +4367,7 @@ "component-inherit": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", - "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=" + "integrity": "sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==" }, "compressible": { "version": "2.0.18", @@ -4122,12 +4513,23 @@ "dev": true }, "connect-modrewrite": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/connect-modrewrite/-/connect-modrewrite-0.9.0.tgz", - "integrity": "sha1-dHsqtlxEqlG3ah4sEWihkABjkBw=", + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/connect-modrewrite/-/connect-modrewrite-0.10.2.tgz", + "integrity": "sha512-37+kS9t26vxjW5ErNrr8d04F7Us1EH7XhHtxSm8yE8kO2uDF2DsPI+qI2wCeBSaoakXKit0/88sg4vL2Wl8tDw==", "dev": true, "requires": { - "qs": "^1.2.2" + "qs": "^6.3.1" + }, + "dependencies": { + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + } } }, "console-browserify": { @@ -4139,7 +4541,7 @@ "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, "constants-browserify": { @@ -4280,7 +4682,7 @@ "import-fresh": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", "dev": true, "requires": { "caller-path": "^2.0.0", @@ -4290,7 +4692,7 @@ "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "requires": { "error-ex": "^1.3.1", @@ -4300,7 +4702,7 @@ "resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "dev": true } } @@ -4444,15 +4846,70 @@ } }, "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "dependencies": { + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0" + } + }, + "domutils": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "dev": true, + "requires": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" + } + }, + "entities": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==", + "dev": true + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + } } }, "css-select-base-adapter": { @@ -4486,9 +4943,9 @@ "dev": true }, "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true }, "csso": { @@ -4637,7 +5094,7 @@ "decamelize-keys": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", - "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "integrity": "sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==", "dev": true, "requires": { "decamelize": "^1.1.0", @@ -4862,7 +5319,7 @@ "delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "dev": true }, "depd": { @@ -4970,9 +5427,9 @@ "dev": true }, "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "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", @@ -5053,9 +5510,9 @@ } }, "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "dev": true, "requires": { "dom-serializer": "0", @@ -5145,12 +5602,6 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, - "ejs": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", - "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", - "dev": true - }, "electron-to-chromium": { "version": "1.3.627", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.627.tgz", @@ -5226,9 +5677,9 @@ } }, "engine.io-client": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.3.2.tgz", - "integrity": "sha512-y0CPINnhMvPuwtqXfsGuWE8BB66+B6wTtCofQDRecMQPYX3MYUZXFNKDhdrSe3EVjgOu4V3rxdeqN/Tr91IgbQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.3.3.tgz", + "integrity": "sha512-PXIgpzb1brtBzh8Q6vCjzCMeu4nfEPmaDm+L3Qb2sVHwLkxC1qRiBMSjOB0NJNjZ0hbPNUKQa+s8J2XxLOIEeQ==", "requires": { "component-emitter": "1.2.1", "component-inherit": "0.0.3", @@ -5239,7 +5690,7 @@ "parseqs": "0.0.5", "parseuri": "0.0.5", "ws": "~6.1.0", - "xmlhttprequest-ssl": "~1.5.4", + "xmlhttprequest-ssl": "~1.6.3", "yeast": "0.1.2" }, "dependencies": { @@ -5254,7 +5705,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "ws": { "version": "6.1.4", @@ -5312,6 +5763,12 @@ "resolved": "https://registry.npmjs.org/enumerate-devices/-/enumerate-devices-1.1.1.tgz", "integrity": "sha512-8zDbrc7ocusTL1ZGmvgy0cTwdyCaM7sGZoYLRmnWJalLQzmftDtce+uDU91gafOTo9MCtgjSIxyMv/F4+Hcchw==" }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, "enzyme": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.3.0.tgz", @@ -5392,6 +5849,12 @@ } } }, + "err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, "errlop": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/errlop/-/errlop-2.2.0.tgz", @@ -5966,12 +6429,9 @@ "dev": true }, "eventsource": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", - "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", - "requires": { - "original": "^1.0.0" - } + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.2.tgz", + "integrity": "sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==" }, "evp_bytestokey": { "version": "1.0.3", @@ -6014,7 +6474,7 @@ "execall": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz", - "integrity": "sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M=", + "integrity": "sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ==", "dev": true, "requires": { "clone-regexp": "^1.0.0" @@ -6023,7 +6483,7 @@ "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, "exit-on-epipe": { @@ -6339,7 +6799,7 @@ "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true }, "fast-deep-equal": { @@ -6363,9 +6823,9 @@ }, "dependencies": { "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "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" @@ -6461,12 +6921,6 @@ "dev": true, "optional": true }, - "filesize": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", - "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", - "dev": true - }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -6569,7 +7023,7 @@ "findup-sync": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz", - "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=", + "integrity": "sha512-z8Nrwhi6wzxNMIbxlrTzuUW6KWuKkogZ/7OdDVq+0+kxn77KUH1nipx8iU6suqkHqc4y6n7a9A8IpmxY/pTjWg==", "dev": true, "requires": { "glob": "~5.0.0" @@ -6578,7 +7032,7 @@ "glob": { "version": "5.0.15", "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", "dev": true, "requires": { "inflight": "^1.0.4", @@ -6648,9 +7102,9 @@ } }, "follow-redirects": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz", - "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", "dev": true }, "for-each": { @@ -6670,7 +7124,7 @@ "for-own": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", "dev": true, "requires": { "for-in": "^1.0.1" @@ -6829,6 +7283,15 @@ } } }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, "fs-write-stream-atomic": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", @@ -6854,38 +7317,15 @@ "dev": true, "optional": true }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.3.tgz", - "integrity": "sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag==", + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.3.tgz", + "integrity": "sha512-H51qkbNSp8mtkJt+nyW1gyStBiKZxfRqySNUR99ylq6BPXHKI4SEvIlTKp4odLfjRKJV04DFWMU3G/YRlQOsag==", "dev": true, "requires": { "call-bind": "^1.0.0", @@ -6907,39 +7347,58 @@ "dev": true }, "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, "requires": { - "aproba": "^1.0.3", + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" }, "dependencies": { + "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 + }, + "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 + }, "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "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 + }, + "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": { - "number-is-nan": "^1.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "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": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "ansi-regex": "^5.0.1" } } } @@ -7006,9 +7465,9 @@ "dev": true }, "getobject": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz", - "integrity": "sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz", + "integrity": "sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg==", "dev": true }, "getpass": { @@ -7057,7 +7516,7 @@ "glob-to-regexp": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==", "dev": true }, "global": { @@ -7128,7 +7587,7 @@ "array-union": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", "dev": true, "requires": { "array-uniq": "^1.0.1" @@ -7151,7 +7610,7 @@ "globjoin": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", "dev": true }, "globule": { @@ -7194,9 +7653,9 @@ } }, "graceful-fs": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "growl": { @@ -7206,9 +7665,9 @@ "dev": true }, "grunt": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.3.0.tgz", - "integrity": "sha512-6ILlMXv11/4cxuhSMfSU+SfvbxrPuqZrAtLN64+tZpQ3DAKfSQPQHRbTjSbdtxfyQhGZPtN0bDZJ/LdCM5WXXA==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.5.3.tgz", + "integrity": "sha512-mKwmo4X2d8/4c/BmcOETHek675uOqw0RuA/zy12jaspWqvTp4+ZeQF1W+OTpcbncnaBsfbQJ6l0l4j+Sn/GmaQ==", "dev": true, "requires": { "dateformat": "~3.0.3", @@ -7216,10 +7675,10 @@ "exit": "~0.1.2", "findup-sync": "~0.3.0", "glob": "~7.1.6", - "grunt-cli": "~1.3.2", - "grunt-known-options": "~1.1.0", + "grunt-cli": "~1.4.3", + "grunt-known-options": "~2.0.0", "grunt-legacy-log": "~3.0.0", - "grunt-legacy-util": "~2.0.0", + "grunt-legacy-util": "~2.0.1", "iconv-lite": "~0.4.13", "js-yaml": "~3.14.0", "minimatch": "~3.0.4", @@ -7231,20 +7690,20 @@ "eventemitter2": { "version": "0.4.14", "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", - "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=", + "integrity": "sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==", "dev": true }, "grunt-cli": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz", - "integrity": "sha512-8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz", + "integrity": "sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==", "dev": true, "requires": { - "grunt-known-options": "~1.1.0", + "grunt-known-options": "~2.0.0", "interpret": "~1.1.0", - "liftoff": "~2.5.0", + "liftup": "~3.0.1", "nopt": "~4.0.1", - "v8flags": "~3.1.1" + "v8flags": "~3.2.0" }, "dependencies": { "nopt": { @@ -7463,9 +7922,9 @@ } }, "grunt-known-options": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz", - "integrity": "sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz", + "integrity": "sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==", "dev": true }, "grunt-legacy-log": { @@ -7500,9 +7959,9 @@ } }, "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "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", @@ -7542,18 +8001,35 @@ } }, "grunt-legacy-util": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.0.tgz", - "integrity": "sha512-ZEmYFB44bblwPE2oz3q3ygfF6hseQja9tx8I3UZIwbUik32FMWewA+d1qSFicMFB+8dNXDkh35HcDCWlpRsGlA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz", + "integrity": "sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w==", "dev": true, "requires": { - "async": "~1.5.2", - "exit": "~0.1.1", - "getobject": "~0.1.0", + "async": "~3.2.0", + "exit": "~0.1.2", + "getobject": "~1.0.0", "hooker": "~0.2.3", - "lodash": "~4.17.20", + "lodash": "~4.17.21", "underscore.string": "~3.3.5", - "which": "~1.3.0" + "which": "~2.0.2" + }, + "dependencies": { + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "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" + } + } } }, "grunt-mocha-test": { @@ -7578,74 +8054,31 @@ } }, "grunt-postcss": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/grunt-postcss/-/grunt-postcss-0.8.0.tgz", - "integrity": "sha1-jzCor2B5A84MRfAfC+QsYOMc6w4=", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/grunt-postcss/-/grunt-postcss-0.9.0.tgz", + "integrity": "sha512-lglLcVaoOIqH0sFv7RqwUKkEFGQwnlqyAKbatxZderwZGV1nDyKHN7gZS9LUiTx1t5GOvRBx0BEalHMyVwFAIA==", "dev": true, "requires": { - "chalk": "^1.0.0", - "diff": "^2.0.2", - "postcss": "^5.0.0" + "chalk": "^2.1.0", + "diff": "^3.0.0", + "postcss": "^6.0.11" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "diff": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/diff/-/diff-2.2.3.tgz", - "integrity": "sha1-YOr9DSjukG5Oj/ClLBIpUhAzv5k=", - "dev": true - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", "dev": true, "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - }, - "dependencies": { - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - } + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" } }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "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 } } @@ -7789,6 +8222,12 @@ "har-schema": "^2.0.0" } }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -7844,7 +8283,7 @@ "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "dev": true }, "has-value": { @@ -7934,7 +8373,7 @@ "he": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", - "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", + "integrity": "sha512-z/GDPjlRMNOa2XJiB4em8wJpuuBfrFOlYKTZxtpkdr1uPdibHI8rYA3MY0KDObpVyaes0e/aunid/t88ZI2EKA==", "dev": true }, "highlight.js": { @@ -8005,16 +8444,10 @@ "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=", "dev": true }, - "hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", - "dev": true - }, "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, "hpack.js": { @@ -8061,7 +8494,7 @@ "html-tags": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", - "integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", "dev": true }, "htmlparser2": { @@ -8091,6 +8524,12 @@ } } }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", @@ -8139,6 +8578,34 @@ "requires-port": "^1.0.0" } }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "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 + } + } + }, "http-proxy-middleware": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz", @@ -8185,6 +8652,42 @@ "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", "dev": true }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "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 + } + } + }, + "humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dev": true, + "requires": { + "ms": "^2.0.0" + } + }, "i18n-iso-countries": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/i18n-iso-countries/-/i18n-iso-countries-6.8.0.tgz", @@ -8322,12 +8825,6 @@ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, - "in-publish": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", - "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==", - "dev": true - }, "indent-string": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", @@ -8340,7 +8837,7 @@ "indexes-of": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", "dev": true }, "indexof": { @@ -8411,6 +8908,33 @@ "escape-string-regexp": "^1.0.5" } }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -8435,7 +8959,7 @@ "interpret": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", + "integrity": "sha512-CLM8SNMDu7C5psFCn6Wg/tgpj/bKAg7hc2gWqcuR9OD5Ft9PhBpIu8PLicPeis+xDd6YX2ncI8MCA64I9tftIA==", "dev": true }, "invariant": { @@ -8446,12 +8970,6 @@ "loose-envify": "^1.0.0" } }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true - }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -8515,7 +9033,7 @@ "is-alphanumeric": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", - "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=", + "integrity": "sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==", "dev": true }, "is-alphanumerical": { @@ -8586,9 +9104,9 @@ } }, "is-core-module": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", - "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", "dev": true, "requires": { "has": "^1.0.3" @@ -8647,7 +9165,7 @@ "is-directory": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", "dev": true }, "is-extendable": { @@ -8702,6 +9220,12 @@ "is-path-inside": "^1.0.0" } }, + "is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, "is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -8771,7 +9295,7 @@ "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true }, "is-plain-object": { @@ -8807,7 +9331,7 @@ "is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "dev": true }, "is-relative": { @@ -9251,10 +9775,16 @@ "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": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { @@ -9298,14 +9828,14 @@ } }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -9365,15 +9895,6 @@ "package-json": "^4.0.0" } }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "dev": true, - "requires": { - "invert-kv": "^1.0.0" - } - }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -9390,36 +9911,100 @@ "type-check": "~0.3.2" } }, - "liftoff": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz", - "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=", + "liftup": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz", + "integrity": "sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw==", "dev": true, "requires": { - "extend": "^3.0.0", - "findup-sync": "^2.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", + "extend": "^3.0.2", + "findup-sync": "^4.0.0", + "fined": "^1.2.0", + "flagged-respawn": "^1.0.1", "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" + "object.map": "^1.0.1", + "rechoir": "^0.7.0", + "resolve": "^1.19.0" }, "dependencies": { - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "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": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", + "fill-range": "^7.0.1" + } + }, + "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" + } + }, + "findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", "resolve-dir": "^1.0.1" } + }, + "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-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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" + } } } }, + "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 + }, "livereload-js": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", @@ -9673,14 +10258,14 @@ } }, "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash-es": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.15.tgz", - "integrity": "sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ==" + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" }, "lodash._reinterpolate": { "version": "3.0.0", @@ -9831,6 +10416,103 @@ "pify": "^3.0.0" } }, + "make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "dev": true, + "requires": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "dependencies": { + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "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" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "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" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, "make-iterator": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", @@ -10221,6 +10903,12 @@ "dom-walk": "^0.1.0" } }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, "mini-create-react-context": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", @@ -10252,9 +10940,9 @@ } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "minimist-options": { "version": "3.0.2", @@ -10266,10 +10954,93 @@ "is-plain-obj": "^1.1.0" } }, + "minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "dev": true, + "requires": { + "encoding": "^0.1.12", + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, "mississippi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", - "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", "dev": true, "requires": { "concat-stream": "^1.5.0", @@ -10278,10 +11049,22 @@ "flush-write-stream": "^1.0.0", "from2": "^2.1.0", "parallel-transform": "^1.1.0", - "pump": "^2.0.1", + "pump": "^3.0.0", "pumpify": "^1.3.3", "stream-each": "^1.1.0", "through2": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } } }, "mitt": { @@ -10369,13 +11152,13 @@ "minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "integrity": "sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q==", "dev": true }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "integrity": "sha512-SknJC52obPfGQPnjIkXbmA6+5H15E+fR+E4iR2oQ3zzCLbd7/ONua69R/Gw7AgkTLsRG+r5fzksYwWe1AgTyWA==", "dev": true, "requires": { "minimist": "0.0.8" @@ -10384,7 +11167,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, "supports-color": { @@ -10417,9 +11200,9 @@ } }, "moment": { - "version": "2.19.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.19.4.tgz", - "integrity": "sha512-1xFTAknSLfc47DIxHDUbnJWC+UwgWxATmymaxIPQpmMh7LBm7ZbwVEsuushqwL2GYZU0jie4xO+TK44hJPjNSQ==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "moo": { "version": "0.5.1", @@ -10488,6 +11271,12 @@ } } }, + "mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true + }, "ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -10542,6 +11331,12 @@ "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", "dev": true }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true + }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", @@ -10658,38 +11453,159 @@ } }, "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", "dev": true, "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" }, "dependencies": { + "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 + }, + "are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "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 + }, + "gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "dev": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + } + }, + "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 + }, + "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" + } + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "dev": true, + "requires": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + } + }, + "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" + } + }, "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "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" } }, "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } @@ -10764,75 +11680,407 @@ } }, "node-releases": { - "version": "1.1.67", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz", - "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", "dev": true }, "node-sass": { - "version": "4.13.1", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz", - "integrity": "sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.1.tgz", + "integrity": "sha512-uMy+Xt29NlqKCFdFRZyXKOTqGt+QaKHexv9STj2WeLottnlqZEEWx6Bj0MXNthmFRRdM/YwyNo/8Tr46TOM0jQ==", "dev": true, "requires": { "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", "gaze": "^1.0.0", "get-stdin": "^4.0.1", "glob": "^7.0.3", - "in-publish": "^2.0.0", "lodash": "^4.17.15", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", + "meow": "^9.0.0", "nan": "^2.13.2", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", + "node-gyp": "^8.4.1", + "npmlog": "^5.0.0", "request": "^2.88.0", - "sass-graph": "^2.2.4", + "sass-graph": "4.0.0", "stdout-stream": "^1.4.0", "true-case-path": "^1.0.2" }, "dependencies": { "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "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" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "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" + } + } + } + }, + "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 + }, + "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" + } + }, + "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" + } + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "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 + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.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 + }, + "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" + } + }, + "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" + } + }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, + "meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "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-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 + }, + "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" + } + }, + "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-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 + }, + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "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 + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "min-indent": "^1.0.0" } }, - "cross-spawn": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + }, + "trim-newlines": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "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": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" + "isexe": "^2.0.0" } }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "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 } } @@ -10873,7 +12121,7 @@ "normalize-selector": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", - "integrity": "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=", + "integrity": "sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw==", "dev": true }, "npm-run-path": { @@ -10886,15 +12134,15 @@ } }, "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", "dev": true, "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" } }, "nth-check": { @@ -11294,7 +12542,7 @@ "object.defaults": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", "dev": true, "requires": { "array-each": "^1.0.1", @@ -11341,7 +12589,7 @@ "object.map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", "dev": true, "requires": { "for-own": "^1.0.0", @@ -11508,14 +12756,6 @@ "word-wrap": "~1.2.3" } }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "requires": { - "url-parse": "^1.4.3" - } - }, "os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", @@ -11528,15 +12768,6 @@ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", "dev": true }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true, - "requires": { - "lcid": "^1.0.0" - } - }, "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -11697,7 +12928,7 @@ "parse-filepath": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", "dev": true, "requires": { "is-absolute": "^1.0.0", @@ -11740,6 +12971,48 @@ "@types/node": "*" } }, + "parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", + "dev": true, + "requires": { + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "requires": { + "domelementtype": "^2.3.0" + } + }, + "entities": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.1.tgz", + "integrity": "sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==", + "dev": true + }, + "parse5": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.0.0.tgz", + "integrity": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==", + "dev": true, + "requires": { + "entities": "^4.3.0" + } + } + } + }, "parseqs": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", @@ -11805,15 +13078,15 @@ "dev": true }, "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "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-root": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", "dev": true, "requires": { "path-root-regex": "^0.1.0" @@ -11822,7 +13095,7 @@ "path-root-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", "dev": true }, "path-to-regexp": { @@ -11851,9 +13124,9 @@ } }, "pathval": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", - "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", "dev": true }, "pbkdf2": { @@ -11880,11 +13153,18 @@ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, + "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.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true + "dev": true, + "optional": true }, "pify": { "version": "3.0.0", @@ -11984,22 +13264,14 @@ "dev": true }, "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", "dev": true, "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.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 - } + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, "postcss-bem-linter": { @@ -12068,15 +13340,20 @@ "postcss": "^7.0.14" }, "dependencies": { + "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.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { @@ -12084,15 +13361,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -12109,7 +13377,7 @@ "postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", - "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", "dev": true }, "postcss-reporter": { @@ -12124,15 +13392,20 @@ "postcss": "^7.0.7" }, "dependencies": { + "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.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { @@ -12140,15 +13413,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -12167,15 +13431,20 @@ "postcss": "^7.0.26" }, "dependencies": { + "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.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { @@ -12183,15 +13452,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -12205,15 +13465,20 @@ "postcss": "^7.0.1" }, "dependencies": { + "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.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { @@ -12221,15 +13486,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -12423,14 +13679,24 @@ "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-6.1.0.tgz", "integrity": "sha1-36lpQ+qcEh/KTem1hoyznTRy4Fc=" }, + "promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, "prop-types-exact": { @@ -12575,7 +13841,7 @@ "quick-lru": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz", - "integrity": "sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=", + "integrity": "sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA==", "dev": true }, "raf": { @@ -12991,12 +14257,12 @@ } }, "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "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.1.6" + "resolve": "^1.9.0" } }, "redent": { @@ -13411,6 +14677,12 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", @@ -13532,15 +14804,15 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass-graph": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.6.tgz", - "integrity": "sha512-MKuEYXFSGuRSi8FZ3A7imN1CeVn9Gpw0/SFJKdL1ejXJneI9a5rwlEZrKejhEFAA3O6yr3eIyl/WuvASvlT36g==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.0.tgz", + "integrity": "sha512-WSO/MfXqKH7/TS8RdkCX3lVkPFQzCgbqdGsmSKq6tlPU+GpGEsa/5aW18JqItnqh+lPtcjifqdZ/VmiILkKckQ==", "dev": true, "requires": { "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" + "lodash": "^4.17.11", + "scss-tokenizer": "^0.3.0", + "yargs": "^17.2.1" } }, "sax": { @@ -13559,12 +14831,13 @@ } }, "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", "dev": true, "requires": { "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", "ajv-keywords": "^3.1.0" } }, @@ -13574,23 +14847,20 @@ "integrity": "sha1-0MQ5VcLmutM7bk7fe1O4llqnyl8=" }, "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.3.0.tgz", + "integrity": "sha512-14Zl9GcbBvOT9057ZKjpz5yPOyUWG2ojd9D5io28wHRYsOrs7U95Q+KNL87+32p8rc+LvDpbu/i9ZYjM9Q+FsQ==", "dev": true, "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" + "js-base64": "^2.4.3", + "source-map": "^0.7.1" }, "dependencies": { "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true } } }, @@ -13704,12 +14974,6 @@ } } }, - "serialize-javascript": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz", - "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==", - "dev": true - }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -13831,15 +15095,45 @@ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "dependencies": { + "get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + } + } + }, "sightglass": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/sightglass/-/sightglass-0.2.6.tgz", "integrity": "sha1-kSC7hS0lnPghJ0hWN1u9+QCYOEE=" }, "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, "sinon": { @@ -13856,6 +15150,17 @@ "supports-color": "^5.5.0" } }, + "sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "dev": true, + "requires": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + } + }, "sitemap": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-1.13.0.tgz", @@ -13883,6 +15188,12 @@ "is-fullwidth-code-point": "^2.0.0" } }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -14103,19 +15414,65 @@ } } }, - "sockjs-client": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", - "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", - "requires": { - "debug": "^3.2.6", - "eventsource": "^1.0.7", - "faye-websocket": "^0.11.3", - "inherits": "^2.0.4", - "json3": "^3.3.3", - "url-parse": "^1.4.7" - } - }, + "sockjs-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" + } + }, + "socks": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.0.tgz", + "integrity": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==", + "dev": true, + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "dependencies": { + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + } + } + }, + "socks-proxy-agent": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", + "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "dev": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "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 + } + } + }, "source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -14127,6 +15484,12 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, "source-map-resolve": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", @@ -14347,12 +15710,12 @@ } }, "ssri": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", - "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", "dev": true, "requires": { - "safe-buffer": "^5.1.1" + "figgy-pudding": "^3.5.1" } }, "stable": { @@ -14455,28 +15818,41 @@ "dev": true }, "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "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": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "dependencies": { "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 + }, + "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 + }, + "is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "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 }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "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": "^3.0.0" + "ansi-regex": "^5.0.1" } } } @@ -14687,7 +16063,7 @@ "style-search": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true }, "stylelint": { @@ -14745,31 +16121,25 @@ "table": "^5.2.3" }, "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, "autoprefixer": { - "version": "9.8.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", - "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", "dev": true, "requires": { "browserslist": "^4.12.0", "caniuse-lite": "^1.0.30001109", - "colorette": "^1.2.1", "normalize-range": "^0.1.2", "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", "postcss": "^7.0.32", "postcss-value-parser": "^4.1.0" }, "dependencies": { "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==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true } } @@ -14784,28 +16154,35 @@ } }, "browserslist": { - "version": "4.16.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", - "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001165", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.621", - "escalade": "^3.1.1", - "node-releases": "^1.1.67" + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + }, + "dependencies": { + "caniuse-lite": { + "version": "1.0.30001365", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001365.tgz", + "integrity": "sha512-VDQZ8OtpuIPMBA4YYvZXECtXbddMCUFJk1qu8Mqxfm/SZJNSr1cy4IuLCOL7RJ/YASrvJcYg1Zh+UEUQ5m6z8Q==", + "dev": true + } } }, "camelcase": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==", "dev": true }, "camelcase-keys": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz", - "integrity": "sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=", + "integrity": "sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q==", "dev": true, "requires": { "camelcase": "^4.1.0", @@ -14814,18 +16191,18 @@ } }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" } }, - "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==", + "electron-to-chromium": { + "version": "1.4.186", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.186.tgz", + "integrity": "sha512-YoVeFrGd/7ROjz4R9uPoND1K/hSRC/xADy9639ZmIZeJSaBnKdYx3I6LMPsY7CXLpK7JFgKQVzeZ/dk2br6Eaw==", "dev": true }, "fill-range": { @@ -14864,21 +16241,15 @@ } }, "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true }, "indent-string": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "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==", + "integrity": "sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==", "dev": true }, "is-number": { @@ -14890,7 +16261,7 @@ "load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -14902,7 +16273,7 @@ "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true } } @@ -14910,7 +16281,7 @@ "map-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz", - "integrity": "sha1-plzSkIepJZi4eRJXpSPgISIqwfk=", + "integrity": "sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ==", "dev": true }, "meow": { @@ -14931,13 +16302,13 @@ } }, "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "ms": { @@ -14949,7 +16320,7 @@ "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "requires": { "error-ex": "^1.3.1", @@ -14968,11 +16339,23 @@ "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true } } }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -14980,14 +16363,13 @@ "dev": true }, "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-scss": { @@ -15002,7 +16384,7 @@ "read-pkg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", "dev": true, "requires": { "load-json-file": "^4.0.0", @@ -15013,7 +16395,7 @@ "read-pkg-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", - "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", + "integrity": "sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==", "dev": true, "requires": { "find-up": "^2.0.0", @@ -15023,7 +16405,7 @@ "redent": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz", - "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=", + "integrity": "sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw==", "dev": true, "requires": { "indent-string": "^3.0.0", @@ -15042,41 +16424,12 @@ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, "strip-indent": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", - "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "integrity": "sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==", "dev": true }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -15089,7 +16442,7 @@ "trim-newlines": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz", - "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=", + "integrity": "sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA==", "dev": true }, "yargs-parser": { @@ -15122,6 +16475,12 @@ "integrity": "sha1-W65SvkJIeN2Xg+iRDj/Cki6DyBs=", "dev": true }, + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", @@ -15150,6 +16509,27 @@ "chalk": "^1.0.0" } }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", @@ -15179,15 +16559,20 @@ "postcss": "^7.0.2" }, "dependencies": { + "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.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "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": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { @@ -15195,15 +16580,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -15223,7 +16599,7 @@ "svg-tags": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, "svgo": { @@ -15425,14 +16801,37 @@ "dev": true }, "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", "dev": true, "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "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 + } } }, "term-size": { @@ -15920,6 +17319,12 @@ "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", "dev": true }, + "totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "dev": true + }, "tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", @@ -15939,7 +17344,7 @@ "trim": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", + "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==", "dev": true }, "trim-newlines": { @@ -15975,12 +17380,6 @@ "glob": "^7.1.2" } }, - "tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", - "dev": true - }, "ts-toolbelt": { "version": "6.15.5", "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", @@ -16091,9 +17490,9 @@ } }, "ua-parser-js": { - "version": "0.7.23", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.23.tgz", - "integrity": "sha512-m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA==" + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==" }, "uglify-es": { "version": "3.3.9", @@ -16119,22 +17518,114 @@ } } }, + "uglify-js": { + "version": "3.16.2", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.2.tgz", + "integrity": "sha512-AaQNokTNgExWrkEYA24BTNMSjyqEXPSfhqoS0AxmHkCJ4U+Dyy5AvbGV/sqxuxficEfGGoX3zWw9R7QpLFfEsg==", + "dev": true + }, "uglifyjs-webpack-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", - "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz", + "integrity": "sha512-mHSkufBmBuJ+KHQhv5H0MXijtsoA1lynJt1lXOaotja8/I0pR4L9oGaPIZw+bQBOFittXZg9OC1sXSGO9D9ZYg==", "dev": true, "requires": { - "cacache": "^10.0.4", - "find-cache-dir": "^1.0.0", - "schema-utils": "^0.4.5", - "serialize-javascript": "^1.4.0", + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^1.7.0", "source-map": "^0.6.1", - "uglify-es": "^3.3.4", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" + "uglify-js": "^3.6.0", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" }, "dependencies": { + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "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": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.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 + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "serialize-javascript": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz", + "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==", + "dev": true + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -16164,22 +17655,22 @@ "unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", "dev": true }, "underscore": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.0.tgz", - "integrity": "sha512-21rQzss/XPMjolTiIezSu3JAjgagXKROtNrYFEOWK109qY1Uv2tVjPTZ1ci2HgvQDA16gHYSthQIJfB+XId/rQ==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz", + "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ==", "dev": true }, "underscore.string": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz", - "integrity": "sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz", + "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==", "dev": true, "requires": { - "sprintf-js": "^1.0.3", + "sprintf-js": "^1.1.1", "util-deprecate": "^1.0.2" } }, @@ -16237,7 +17728,7 @@ "uniq": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", "dev": true }, "unique-filename": { @@ -16292,12 +17783,12 @@ } }, "unist-util-stringify-position": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz", + "integrity": "sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==", "dev": true, "requires": { - "@types/unist": "^2.0.2" + "@types/unist": "^2.0.0" } }, "unist-util-visit": { @@ -16403,6 +17894,16 @@ "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true }, + "update-browserslist-db": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", + "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "update-notifier": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", @@ -16439,9 +17940,9 @@ } }, "urijs": { - "version": "1.19.6", - "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.6.tgz", - "integrity": "sha512-eSXsXZ2jLvGWeLYlQA3Gh36BcjF+0amo92+wHPyN1mdR8Nxf75fuEuYTd9c0a+m/vhCjRK0ESlE9YNLW+E1VEw==", + "version": "1.19.11", + "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz", + "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==", "dev": true }, "urix": { @@ -16475,9 +17976,9 @@ "dev": true }, "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "requires": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" @@ -16584,9 +18085,9 @@ "dev": true }, "v8flags": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz", - "integrity": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", "dev": true, "requires": { "homedir-polyfill": "^1.0.1" @@ -16616,7 +18117,7 @@ "verror": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "dev": true, "requires": { "assert-plus": "^1.0.0", @@ -16645,7 +18146,7 @@ "replace-ext": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "integrity": "sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==", "dev": true }, "unist-util-stringify-position": { @@ -16672,13 +18173,13 @@ "dev": true }, "vfile-message": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.2.tgz", + "integrity": "sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==", "dev": true, "requires": { "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "unist-util-stringify-position": "^3.0.0" } }, "vinyl-sourcemaps-apply": { @@ -16920,62 +18421,97 @@ } }, "webpack-bundle-analyzer": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.1.tgz", - "integrity": "sha512-Nfd8HDwfSx1xBwC+P8QMGvHAOITxNBSvu/J/mCJvOwv+G4VWkU7zir9SSenTtyCi0LnVtmsc7G5SZo1uV+bxRw==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1", - "bfj": "^6.1.1", - "chalk": "^2.4.1", - "commander": "^2.18.0", - "ejs": "^2.6.1", - "express": "^4.16.3", - "filesize": "^3.6.1", - "gzip-size": "^5.0.0", - "lodash": "^4.17.15", - "mkdirp": "^0.5.1", - "opener": "^1.5.1", - "ws": "^6.0.0" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dev": true, + "requires": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" }, "dependencies": { "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "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" + } + }, + "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" + } + }, + "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 }, "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==", + "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 }, "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" + "duplexer": "^0.1.2" } }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "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 }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "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": { - "async-limiter": "~1.0.0" + "has-flag": "^4.0.0" } + }, + "ws": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz", + "integrity": "sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==", + "dev": true } } }, @@ -17107,6 +18643,16 @@ "wrap-ansi": "^2.0.0" }, "dependencies": { + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", @@ -17328,6 +18874,27 @@ "which-module": "^2.0.0", "y18n": "^3.2.1 || ^4.0.0", "yargs-parser": "^10.1.0" + }, + "dependencies": { + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "yargs-parser": { @@ -17498,19 +19065,13 @@ "is-symbol": "^1.0.3" } }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, "requires": { - "string-width": "^1.0.2 || 2" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, "widest-line": { @@ -17520,6 +19081,33 @@ "dev": true, "requires": { "string-width": "^2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, "word-wrap": { @@ -17613,7 +19201,7 @@ "x-is-string": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", - "integrity": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=", + "integrity": "sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==", "dev": true }, "xdg-basedir": { @@ -17629,9 +19217,9 @@ "dev": true }, "xmlhttprequest-ssl": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz", - "integrity": "sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=" + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz", + "integrity": "sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==" }, "xregexp": { "version": "4.0.0", @@ -17658,155 +19246,82 @@ "dev": true }, "yargs": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.1.tgz", - "integrity": "sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g==", + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz", + "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==", "dev": true, "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "5.0.0-security.0" + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.0.0" }, "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "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 }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "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 }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } + "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 }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } + "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 }, "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "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": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "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": { - "is-utf8": "^0.2.0" + "ansi-regex": "^5.0.1" } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true } } }, "yargs-parser": { - "version": "5.0.0-security.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz", - "integrity": "sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ==", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true }, "yeast": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=" + "integrity": "sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==" } } } diff --git a/package.json b/package.json index f0a1d33c2f308..ec2d7ef5a4be8 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "cli-spinner": "0.2.7", "commander": "2.12.2", "connect-livereload": "0.6.0", - "connect-modrewrite": "0.9.0", + "connect-modrewrite": "^0.10.2", "deep-diff": "0.3.8", "emphasize": "2.0.0", "enzyme": "3.3.0", @@ -65,7 +65,7 @@ "estraverse": "4.2.0", "extend": "3.0.2", "gettext-parser": "1.3.0", - "grunt": "^1.1.0", + "grunt": "^1.5.3", "grunt-babel": "7.0.0", "grunt-check-dependencies": "1.0.0", "grunt-concurrent": "2.3.1", @@ -78,7 +78,7 @@ "grunt-gh-pages": "3.1.0", "grunt-mocha-test": "0.13.3", "grunt-notify": "0.4.5", - "grunt-postcss": "0.8.0", + "grunt-postcss": "^0.9.0", "grunt-sass": "3.0.2", "grunt-shell": "2.1.0", "grunt-stylelint": "0.8.0", @@ -90,7 +90,7 @@ "mocha": "5.2.0", "mock-local-storage": "1.1.7", "node-gettext": "2.0.0", - "node-sass": "4.13.1", + "node-sass": "^7.0.1", "nyc": "^15.1.0", "postcss-scss": "0.4.1", "react-render-html": "0.6.0", @@ -102,9 +102,9 @@ "svgo": "1.2.1", "sw-precache-webpack-plugin": "0.11.5", "time-grunt": "1.4.0", - "uglifyjs-webpack-plugin": "1.3.0", + "uglifyjs-webpack-plugin": "^2.2.0", "webpack": "4.42.1", - "webpack-bundle-analyzer": "3.6.1", + "webpack-bundle-analyzer": "^4.5.0", "webpack-dev-server": "3.1.14", "webpack-manifest-plugin": "2.0.4", "webpack-merge": "4.1.4", @@ -129,10 +129,10 @@ "jquery.scrollto": "2.1.2", "js-cookie": "2.2.0", "kinetic": "5.2.0", - "moment": "2.19.4", + "moment": "^2.29.4", "onfido-sdk-ui": "^6.3.0", "promise-polyfill": "6.1.0", - "prop-types": "15.6.1", + "prop-types": "^15.8.1", "react": "16.8.6", "react-dom": "16.8.6", "scriptjs": "2.5.8", @@ -158,5 +158,8 @@ "src/javascript/**/*.{js, jsx }", "scripts/**/*.{js, jsx}" ] + }, + "engines": { + "node": "14.19.3" } } diff --git a/scripts/common.js b/scripts/common.js index 368be4b0a1897..05245df79f01c 100644 --- a/scripts/common.js +++ b/scripts/common.js @@ -5,7 +5,7 @@ const util = require('util'); exports.root_path = require('app-root-path').path; -// ---------- Pages config ---------- +// --------- Pages config ---------- exports.pages = require('./config/pages.js').map(p => ({ save_as : p[0], tpl_path : p[1], diff --git a/scripts/js_texts/extracted_strings_app.js b/scripts/js_texts/extracted_strings_app.js index 716d19ea8eff8..c373c6679d536 100644 --- a/scripts/js_texts/extracted_strings_app.js +++ b/scripts/js_texts/extracted_strings_app.js @@ -12,6 +12,7 @@ module.exports = [ 'Account balance:', 'Account currency', 'Accounts List', + 'Accumulator', 'Acknowledge', 'Action', 'Action required!', @@ -72,6 +73,7 @@ module.exports = [ 'Buy', 'Buy price', 'CFDs', + 'Call', 'Call Spread', 'Camera access is denied', 'Camera not detected', @@ -166,11 +168,12 @@ module.exports = [ 'Demo Account', 'Demo Accounts', 'Demo CFDs', + 'Demo Derived', 'Demo Financial', 'Demo Financial STP', - 'Demo Synthetic', 'Deposit', 'Deposits are temporarily unavailable due to system maintenance. You can make your deposits when the maintenance is complete.', + 'Derived', 'Description', 'Details', 'Digit', @@ -255,6 +258,7 @@ module.exports = [ 'Go to DTrader', 'Go to Deriv', 'Go to Deriv to add an MT5 account', + 'Go to Deriv to add an account', 'Go to statement', 'Goes Outside', 'Got it', @@ -364,6 +368,7 @@ module.exports = [ 'No authentication required', 'No document detected', 'No face found', + 'No further trading is allowed on this contract type for the current trading session. For more info, refer to our [_1]terms and conditions[_2].', 'No need for symbols, digits, or uppercase letters', 'Not', 'Not announced for this currency.', @@ -468,14 +473,15 @@ module.exports = [ 'Purchase Price', 'Purchase Time', 'Purchase request sent', + 'Put', 'Put Spread', 'Read', 'Real', 'Real Account', 'Real CFDs', + 'Real Derived', 'Real Financial', 'Real Financial STP', - 'Real Synthetic', 'Real money account opening', 'Real-Money Account', 'Real-Money Accounts', @@ -597,8 +603,6 @@ module.exports = [ 'Switch account', 'Switch account?', 'Switch to crypto account?', - 'Synthetic', - 'Synthetic Indices', 'Take a photo', 'Take a photo of the back of your card', 'Take a photo of the back of your license', @@ -617,10 +621,13 @@ module.exports = [ 'Tether ERC20 (eUSDT) is a version of Tether that\'s pegged to USD and is hosted on the Ethereum platform.', 'Tether Omni', 'Tether Omni (USDT) is a version of Tether that\'s pegged to USD and is built on the Bitcoin blockchain.', + 'Tether TRC20', + 'Tether as a TRC20 token (tUSDT) is a version of Tether that is hosted on Tron.', + 'Tether as an ERC20 token (eUSDT) is a version of Tether that is hosted on Ethereum.', + 'Tether as an Omni token (USDT) is a version of Tether that is hosted on the Omni layer on the Bitcoin blockchain.', 'Th', 'Thank you', 'Thank you for signing up! Please check your email to complete the registration process.', - 'Thank you, we\'ll get back to you within 24 hours', 'The email address provided is already in use. If you forgot your password, please try our password recovery tool or contact our customer service.', 'The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier.', 'The investor password of account number [_1] has been changed.', @@ -815,12 +822,15 @@ module.exports = [ 'Your changes have been updated successfully.', 'Your changes have been updated.', 'Your computer may take a few seconds to update', + 'Your date of birth in the document doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].', 'Your demo account balance is currently [_1] or less. You may top up your account with an additional [_2].', + 'Your document name doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].', 'Your face is needed in the selfie', 'Your fiat account\'s currency is currently set to [_1].', 'Your fiat account\'s currency is set to [_1].', 'Your link will expire in one hour', 'Your mobile link will expire in one hour', + 'Your name and date of birth in the document doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].', 'Your password cannot be the same as your email address.', 'Your professional client request is [_1]not approved[_2].', 'Your request to transfer [_1] [_2] from [_3] to [_4] has been successfully processed.', diff --git a/src/download/regulation/Vanuatu-license.pdf b/src/download/regulation/Vanuatu-license.pdf index 9910de9842cf3..66b78af3d4fae 100644 Binary files a/src/download/regulation/Vanuatu-license.pdf and b/src/download/regulation/Vanuatu-license.pdf differ diff --git a/src/images/deriv/deriv-signup-mobile.png b/src/images/deriv/deriv-signup-mobile.png new file mode 100644 index 0000000000000..c25acaaf9a11f Binary files /dev/null and b/src/images/deriv/deriv-signup-mobile.png differ diff --git a/src/images/deriv/deriv-signup.png b/src/images/deriv/deriv-signup.png new file mode 100644 index 0000000000000..c67f564254352 Binary files /dev/null and b/src/images/deriv/deriv-signup.png differ diff --git a/src/images/pages/home/home-banner.png b/src/images/pages/home/home-banner.png index 7586e1490cede..bd7356503314d 100644 Binary files a/src/images/pages/home/home-banner.png and b/src/images/pages/home/home-banner.png differ diff --git a/src/images/pages/regulation/labuan-second-logo.png b/src/images/pages/regulation/labuan-second-logo.png new file mode 100644 index 0000000000000..f76d44ba44c00 Binary files /dev/null and b/src/images/pages/regulation/labuan-second-logo.png differ diff --git a/src/images/pages/set_currency/tusdt.svg b/src/images/pages/set_currency/tusdt.svg new file mode 100644 index 0000000000000..8997e45719502 --- /dev/null +++ b/src/images/pages/set_currency/tusdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/pages/warning_scam_message/ic-account-cross.svg b/src/images/pages/warning_scam_message/ic-account-cross.svg new file mode 100644 index 0000000000000..81fa18c776a0e --- /dev/null +++ b/src/images/pages/warning_scam_message/ic-account-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/pages/warning_scam_message/ic-account-dont-get-scam.svg b/src/images/pages/warning_scam_message/ic-account-dont-get-scam.svg new file mode 100644 index 0000000000000..fea9213e32c2d --- /dev/null +++ b/src/images/pages/warning_scam_message/ic-account-dont-get-scam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/images/pages/warning_scam_message/ic-account-tick.svg b/src/images/pages/warning_scam_message/ic-account-tick.svg new file mode 100644 index 0000000000000..8b79910ac316f --- /dev/null +++ b/src/images/pages/warning_scam_message/ic-account-tick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/javascript/_autogenerated/ach.js b/src/javascript/_autogenerated/ach.js index 1ac19d61383bb..e66f695ae2c0c 100644 --- a/src/javascript/_autogenerated/ach.js +++ b/src/javascript/_autogenerated/ach.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['ACH'] = {"Real":"crwdns39612:0crwdne39612:0","Multipliers":"crwdns157624:0crwdne157624:0","Gaming":"crwdns167659:0crwdne167659:0","Options":"crwdns166301:0crwdne166301:0","Demo":"crwdns38215:0crwdne38215:0","Real_CFDs":"crwdns167571:0crwdne167571:0","Real_Financial":"crwdns167655:0crwdne167655:0","Demo_CFDs":"crwdns167553:0crwdne167553:0","Demo_Financial":"crwdns167653:0crwdne167653:0","Synthetic":"crwdns118020:0crwdne118020:0","Demo_Synthetic":"crwdns117994:0crwdne117994:0","Real_Synthetic":"crwdns118018:0crwdne118018:0","CFDs":"crwdns42056:0crwdne42056:0","Financial":"crwdns117996:0crwdne117996:0","Financial_STP":"crwdns117998:0crwdne117998:0","Demo_Financial_STP":"crwdns117992:0crwdne117992:0","Real_Financial_STP":"crwdns118016:0crwdne118016:0","MT5":"crwdns124284:0crwdne124284:0","Bitcoin":"crwdns37943:0crwdne37943:0","Ethereum":"crwdns125042:0crwdne125042:0","Ether_Classic":"crwdns38370:0crwdne38370:0","Litecoin":"crwdns39084:0crwdne39084:0","IDK":"crwdns125044:0crwdne125044:0","Binance_USD":"crwdns125040:0crwdne125040:0","Multi-Collateral":"crwdns125046:0crwdne125046:0","STASIS_Euro":"crwdns125050:0crwdne125050:0","Paxos_Standard":"crwdns125048:0crwdne125048:0","True_USD":"crwdns125060:0crwdne125060:0","USD_Coin":"crwdns125062:0crwdne125062:0","USDK":"crwdns125064:0crwdne125064:0","Tether_Omni":"crwdns125056:0crwdne125056:0","Tether_ERC20":"crwdns125052:0crwdne125052:0","Binary_Coin":"crwdns52940:0crwdne52940:0","Thank_you,_we'll_get_back_to_you_within_24_hours":"crwdns51342:0crwdne51342:0","Online":"crwdns43608:0crwdne43608:0","Offline":"crwdns43607:0crwdne43607:0","Connecting_to_server":"crwdns43605:0crwdne43605:0","Use_a_few_words,_avoid_common_phrases":"crwdns160118:0crwdne160118:0","No_need_for_symbols,_digits,_or_uppercase_letters":"crwdns160088:0crwdne160088:0","Add_another_word_or_two__Uncommon_words_are_better_":"crwdns160066:0crwdne160066:0","Straight_rows_of_keys_are_easy_to_guess":"crwdns160104:0crwdne160104:0","Short_keyboard_patterns_are_easy_to_guess":"crwdns160102:0crwdne160102:0","Use_a_longer_keyboard_pattern_with_more_turns":"crwdns160120:0crwdne160120:0","Repeats_like_\"aaa\"_are_easy_to_guess":"crwdns160094:0crwdne160094:0","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"crwdns160096:0crwdne160096:0","Avoid_repeated_words_and_characters":"crwdns160074:0crwdne160074:0","Sequences_like_abc_or_6543_are_easy_to_guess":"crwdns160100:0crwdne160100:0","Avoid_sequences":"crwdns160076:0crwdne160076:0","Recent_years_are_easy_to_guess":"crwdns160092:0crwdne160092:0","Avoid_recent_years":"crwdns160072:0crwdne160072:0","Avoid_years_that_are_associated_with_you":"crwdns160078:0crwdne160078:0","Dates_are_often_easy_to_guess":"crwdns160084:0crwdne160084:0","Avoid_dates_and_years_that_are_associated_with_you":"crwdns160070:0crwdne160070:0","This_is_a_top-10_common_password":"crwdns160108:0crwdne160108:0","This_is_a_top-100_common_password":"crwdns160110:0crwdne160110:0","This_is_a_very_common_password":"crwdns160112:0crwdne160112:0","This_is_similar_to_a_commonly_used_password":"crwdns160114:0crwdne160114:0","A_word_by_itself_is_easy_to_guess":"crwdns160064:0crwdne160064:0","Names_and_surnames_by_themselves_are_easy_to_guess":"crwdns160086:0crwdne160086:0","Common_names_and_surnames_are_easy_to_guess":"crwdns160082:0crwdne160082:0","Capitalization_doesn't_help_very_much":"crwdns160080:0crwdne160080:0","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"crwdns160068:0crwdne160068:0","Reversed_words_aren't_much_harder_to_guess":"crwdns160098:0crwdne160098:0","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"crwdns160090:0crwdne160090:0","This_password_is_on_the_blacklist":"crwdns160116:0crwdne160116:0","Unknown_OS":"crwdns50522:0crwdne50522:0","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"crwdns44476:0crwdne44476:0","Click_OK_to_proceed_":"crwdns44473:0crwdne44473:0","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"crwdns51280:0crwdne51280:0","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"crwdns37518:0[_1]crwdne37518:0","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"crwdns46272:0[_1]locrwdnd46272:0[_2]crwdnd46272:0[_3]scrwdnd46272:0[_4]crwdne46272:0","This_feature_is_available_to_demo_accounts_only_":"crwdns163926:0crwdne163926:0","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"crwdns167883:0crwdne167883:0","This_page_is_only_available_to_logged_out_clients_":"crwdns52504:0crwdne52504:0","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"crwdns167599:0crwdne167599:0","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"crwdns167539:0crwdne167539:0","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"crwdns168077:0crwdne168077:0","Binary_options_trading_is_not_available_in_your_country_":"crwdns163210:0crwdne163210:0","This_page_is_not_available_in_your_country_of_residence_":"crwdns163216:0crwdne163216:0","Page_not_available,_you_did_not_deactivate_your_account_":"crwdns163394:0crwdne163394:0","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"crwdns167581:0crwdne167581:0","Go_to_DTrader":"crwdns167661:0crwdne167661:0","Sign_out":"crwdns39787:0crwdne39787:0","[_1]_Account":"crwdns37435:0[_1]crwdne37435:0","Click_here_to_open_a_Real_Account":"crwdns44566:0crwdne44566:0","Open_a_Real_Account":"crwdns44591:0crwdne44591:0","Click_here_to_open_a_Multipliers_Account":"crwdns167543:0crwdne167543:0","Click_here_to_open_an_Options_account":"crwdns167545:0crwdne167545:0","Open_a_Multipliers_Account":"crwdns167561:0crwdne167561:0","Create_Account":"crwdns38166:0crwdne38166:0","Accounts_List":"crwdns37683:0crwdne37683:0","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"crwdns167859:0crwdne167859:0","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"crwdns167881:0crwdne167881:0","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167865:0crwdne167865:0","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167863:0crwdne167863:0","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"crwdns167903:0crwdne167903:0","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"crwdns167869:0[_1]acrwdnd167869:0[_2]crwdne167869:0","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"crwdns167899:0[_1]pcrwdnd167899:0[_2]crwdne167899:0","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"crwdns167897:0[_1]pcrwdnd167897:0[_2]crwdne167897:0","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"crwdns167875:0crwdne167875:0","Your_[_1]proof_of_identity[_2]_has_expired_":"crwdns68464:0[_1]pcrwdnd68464:0[_2]crwdne68464:0","Your_[_1]proof_of_address[_2]_has_expired_":"crwdns68460:0[_1]pcrwdnd68460:0[_2]crwdne68460:0","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"crwdns123182:0[_1]pcrwdnd123182:0[_3]crwdnd123182:0[_2]pcrwdnd123182:0[_3]crwdne123182:0","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"crwdns120920:0[_1]pcrwdnd120920:0[_2]crwdne120920:0","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"crwdns123180:0[_1]pcrwdnd123180:0[_2]crwdne123180:0","Please_submit_your_[_1]proof_of_identity[_2]_":"crwdns68446:0[_1]pcrwdnd68446:0[_2]crwdne68446:0","Please_submit_your_[_1]proof_of_address[_2]_":"crwdns68442:0[_1]pcrwdnd68442:0[_2]crwdne68442:0","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"crwdns167885:0[_1]crwdne167885:0","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"crwdns167895:0[_1]Scrwdnd167895:0[_2]crwdne167895:0","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"crwdns46376:0crwdne46376:0","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"crwdns167877:0crwdne167877:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"crwdns167889:0[_1]pcrwdnd167889:0[_2]crwdne167889:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"crwdns167893:0[_1]pcrwdnd167893:0[_2]crwdne167893:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"crwdns167891:0[_1]pcrwdnd167891:0[_2]crwdne167891:0","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"crwdns167909:0[_1]ccrwdnd167909:0[_2]crwdne167909:0","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"crwdns167905:0[_1]fcrwdnd167905:0[_2]crwdne167905:0","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"crwdns167887:0[_1]crwdnd167887:0[_2]crwdne167887:0","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"crwdns168157:0crwdne168157:0","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"crwdns121212:0crwdne121212:0","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"crwdns50423:0[_1]acrwdnd50423:0[_2]crwdne50423:0","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"crwdns50421:0[_1]acrwdnd50421:0[_2]crwdne50421:0","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"crwdns167901:0crwdne167901:0","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"crwdns167867:0crwdne167867:0","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"crwdns167907:0[_1]hocrwdnd167907:0[_2]crwdne167907:0","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"crwdns170546:0[_1]pcrwdnd170546:0[_2]crwdne170546:0","Account_Authenticated":"crwdns45996:0crwdne45996:0","Connection_error:_Please_check_your_internet_connection_":"crwdns38111:0crwdne38111:0","Network_status":"crwdns43606:0crwdne43606:0","This_is_a_staging_server_-_For_testing_purposes_only":"crwdns40162:0crwdne40162:0","The_server_endpoint_is:_[_2]":"crwdns40095:0[_1]crwdnd40095:0[_2]crwdne40095:0","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"crwdns40766:0[_1]crwdnd40766:0[_2]crwdnd40766:0[_3]crwdne40766:0","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"crwdns40644:0crwdne40644:0","There_was_some_invalid_character_in_an_input_field_":"crwdns40121:0crwdne40121:0","regulated_by_the_UK_Gaming_Commission_(UKGC),":"crwdns164422:0crwdne164422:0","regulated_by_the_Malta_Gaming_Authority,":"crwdns164420:0crwdne164420:0","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"crwdns164418:0crwdne164418:0","Please_select":"crwdns39495:0crwdne39495:0","Please_accept_the_terms_and_conditions_":"crwdns39467:0crwdne39467:0","Please_confirm_that_you_are_not_a_politically_exposed_person_":"crwdns39474:0crwdne39474:0","Today":"crwdns40210:0crwdne40210:0","Select_date":"crwdns51380:0crwdne51380:0","Barrier":"crwdns37865:0crwdne37865:0","Entry_Spot":"crwdns38362:0crwdne38362:0","Exit_Spot":"crwdns38402:0crwdne38402:0","Charting_for_this_underlying_is_delayed":"crwdns38001:0crwdne38001:0","Payout_Range":"crwdns45997:0crwdne45997:0","Purchase_Time":"crwdns39586:0crwdne39586:0","Reset_Barrier":"crwdns45907:0crwdne45907:0","Reset_Time":"crwdns45910:0crwdne45910:0","Selected_Tick":"crwdns45868:0crwdne45868:0","Exit_Time":"crwdns89746:0crwdne89746:0","Start_Time":"crwdns39826:0crwdne39826:0","Fiat":"crwdns44589:0crwdne44589:0","Crypto":"crwdns42089:0crwdne42089:0","Step_[_1]:_[_2]_([_1]_of_[_3])":"crwdns165727:0[_1]crwdnd165727:0[_2]crwdnd165727:0[_1]crwdnd165727:0[_3]crwdne165727:0","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"crwdns40357:0crwdne40357:0","Indicates_required_field":"crwdns38781:0crwdne38781:0","Please_select_the_checkbox_":"crwdns39501:0crwdne39501:0","This_field_is_required_":"crwdns40161:0crwdne40161:0","Should_be_a_valid_number_":"crwdns43143:0crwdne43143:0","Up_to_[_1]_decimal_places_are_allowed_":"crwdns42480:0[_1]crwdne42480:0","Should_be_[_1]":"crwdns46276:0[_1]crwdne46276:0","Should_be_between_[_1]_and_[_2]":"crwdns39781:0[_1]crwdnd39781:0[_2]crwdne39781:0","Should_be_more_than_[_1]":"crwdns39783:0[_1]crwdne39783:0","Should_be_less_than_[_1]":"crwdns39782:0[_1]crwdne39782:0","Insufficient_balance_":"crwdns38801:0crwdne38801:0","Invalid_email_address_":"crwdns43135:0crwdne43135:0","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"crwdns125036:0crwdne125036:0","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"crwdns39327:0crwdne39327:0","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"crwdns50916:0[_1]crwdne50916:0","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"crwdns39328:0crwdne39328:0","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"crwdns50914:0crwdne50914:0","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"crwdns159688:0crwdne159688:0","The_two_passwords_that_you_entered_do_not_match_":"crwdns40106:0crwdne40106:0","[_1]_and_[_2]_cannot_be_the_same_":"crwdns37449:0[_1]crwdnd37449:0[_2]crwdne37449:0","Minimum_of_[_1]_characters_required_":"crwdns39197:0[_1]crwdne39197:0","You_should_enter_[_1]_characters_":"crwdns40697:0[_1]crwdne40697:0","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"crwdns41545:0crwdne41545:0","Invalid_verification_code_":"crwdns46460:0crwdne46460:0","Your_password_cannot_be_the_same_as_your_email_address_":"crwdns125038:0crwdne125038:0","Transaction_performed_by_[_1]_(App_ID:_[_2])":"crwdns40270:0[_1]crwdnd40270:0[_2]crwdne40270:0","Guide":"crwdns41543:0crwdne41543:0","Next":"crwdns39254:0crwdne39254:0","Finish":"crwdns38462:0crwdne38462:0","Step":"crwdns39843:0crwdne39843:0","Select_your_market_and_underlying_asset":"crwdns44918:0crwdne44918:0","Select_your_trade_type":"crwdns39736:0crwdne39736:0","Adjust_trade_parameters":"crwdns37697:0crwdne37697:0","Predict_the_directionand_purchase":"crwdns39527:0crwdne39527:0","Your_session_duration_limit_will_end_in_[_1]_seconds_":"crwdns40755:0[_1]crwdne40755:0","January":"crwdns38851:0crwdne38851:0","February":"crwdns38445:0crwdne38445:0","March":"crwdns39133:0crwdne39133:0","April":"crwdns37789:0crwdne37789:0","May":"crwdns39178:0crwdne39178:0","June":"crwdns39013:0crwdne39013:0","July":"crwdns39011:0crwdne39011:0","August":"crwdns37831:0crwdne37831:0","September":"crwdns39754:0crwdne39754:0","October":"crwdns39305:0crwdne39305:0","November":"crwdns39289:0crwdne39289:0","December":"crwdns38208:0crwdne38208:0","Jan":"crwdns38850:0crwdne38850:0","Feb":"crwdns38444:0crwdne38444:0","Mar":"crwdns39132:0crwdne39132:0","Apr":"crwdns37788:0crwdne37788:0","Jun":"crwdns39012:0crwdne39012:0","Jul":"crwdns39010:0crwdne39010:0","Aug":"crwdns37830:0crwdne37830:0","Sep":"crwdns39753:0crwdne39753:0","Oct":"crwdns39304:0crwdne39304:0","Nov":"crwdns39288:0crwdne39288:0","Dec":"crwdns38207:0crwdne38207:0","Sunday":"crwdns39882:0crwdne39882:0","Monday":"crwdns39203:0crwdne39203:0","Tuesday":"crwdns40298:0crwdne40298:0","Wednesday":"crwdns40476:0crwdne40476:0","Thursday":"crwdns40179:0crwdne40179:0","Friday":"crwdns38511:0crwdne38511:0","Saturday":"crwdns39707:0crwdne39707:0","Su":"crwdns39869:0crwdne39869:0","Mo":"crwdns39202:0crwdne39202:0","Tu":"crwdns40297:0crwdne40297:0","We":"crwdns40403:0crwdne40403:0","Th":"crwdns39916:0crwdne39916:0","Fr":"crwdns38500:0crwdne38500:0","Sa":"crwdns39702:0crwdne39702:0","Previous":"crwdns39538:0crwdne39538:0","Hour":"crwdns38594:0crwdne38594:0","Minute":"crwdns39200:0crwdne39200:0","AM":"crwdns37635:0crwdne37635:0","PM":"crwdns39413:0crwdne39413:0","Verification_required":"crwdns121680:0crwdne121680:0","Verify_identity":"crwdns121682:0crwdne121682:0","From_account:_":"crwdns53120:0crwdne53120:0","To_account:_":"crwdns53124:0crwdne53124:0","Not_announced_for_this_currency_":"crwdns53122:0crwdne53122:0","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"crwdns163922:0[_1]crwdne163922:0","[_1]Manage_your_accounts[_2]":"crwdns53230:0[_1]crwdnd53230:0[_2]crwdne53230:0","time":"crwdns163594:0crwdne163594:0","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"crwdns170564:0crwdne170564:0","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"crwdns170562:0crwdne170562:0","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"crwdns53264:0crwdne53264:0","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"crwdns53276:0[_1]crwdne53276:0","Your_fiat_account's_currency_is_set_to_[_1]_":"crwdns53278:0[_1]crwdne53278:0","This_is_your_[_1]_account_":"crwdns53252:0[_1]crwdne53252:0","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"crwdns163504:0[_1]scrwdnd163504:0[_2]crwdnd163504:0[_3]crwdne163504:0","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"crwdns53246:0[_1]crwdne53246:0","Switch_account":"crwdns167767:0crwdne167767:0","Switch_account?":"crwdns167769:0crwdne167769:0","To_deposit_money,_please_switch_to_your_[_1]_account_":"crwdns167775:0[_1]crwdne167775:0","To_withdraw_money,_please_switch_to_your_[_1]_account_":"crwdns167779:0[_1]crwdne167779:0","Switch_to_crypto_account?":"crwdns167771:0crwdne167771:0","To_deposit_cryptocurrency,_switch_your_account_":"crwdns167773:0crwdne167773:0","To_withdraw_cryptocurrency,_switch_your_account_":"crwdns167777:0crwdne167777:0","Cancel":"crwdns37980:0crwdne37980:0","Withdraw":"crwdns40561:0crwdne40561:0","Deposit":"crwdns38220:0crwdne38220:0","Town/City":"crwdns40232:0crwdne40232:0","First_line_of_home_address":"crwdns38463:0crwdne38463:0","Postal_Code/ZIP":"crwdns53224:0crwdne53224:0","State/Province":"crwdns39832:0crwdne39832:0","Email_address":"crwdns38333:0crwdne38333:0","Telephone":"crwdns39901:0crwdne39901:0","Country_of_Residence":"crwdns38161:0crwdne38161:0","details":"crwdns40791:0crwdne40791:0","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167861:0crwdne167861:0","Your_cashier_is_locked_":"crwdns43161:0crwdne43161:0","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"crwdns90024:0crwdne90024:0","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"crwdns161632:0crwdne161632:0","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"crwdns44645:0crwdne44645:0","Select_payment_agent":"crwdns53720:0crwdne53720:0","Amount_in":"crwdns53706:0crwdne53706:0","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"crwdns85271:0crwdne85271:0","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"crwdns40754:0[_1]crwdnd40754:0[_2]crwdnd40754:0[_3]crwdnd40754:0[_4]crwdne40754:0","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"crwdns40757:0[_1]hecrwdnd40757:0[_2]crwdne40757:0","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"crwdns90078:0crwdne90078:0","Please_[_1]deposit[_2]_to_your_account_":"crwdns39462:0[_1]dcrwdnd39462:0[_2]crwdne39462:0","Sorry,_account_signup_is_not_available_in_your_country_":"crwdns39805:0crwdne39805:0","Asset":"crwdns37818:0crwdne37818:0","Opens":"crwdns39349:0crwdne39349:0","Closes":"crwdns38070:0crwdne38070:0","Settles":"crwdns39768:0crwdne39768:0","Upcoming_Events":"crwdns40336:0crwdne40336:0","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"crwdns45174:0crwdne45174:0","Digit":"crwdns38247:0crwdne38247:0","Percentage":"crwdns39438:0crwdne39438:0","Waiting_for_entry_tick_":"crwdns40393:0crwdne40393:0","High_Barrier":"crwdns38580:0crwdne38580:0","Low_Barrier":"crwdns39104:0crwdne39104:0","Waiting_for_exit_tick_":"crwdns40394:0crwdne40394:0","Ticks_history_returned_an_empty_array_":"crwdns46278:0crwdne46278:0","Chart_is_not_available_for_this_underlying_":"crwdns46267:0crwdne46267:0","Purchase":"crwdns39584:0crwdne39584:0","Net_profit":"crwdns39243:0crwdne39243:0","Return":"crwdns39675:0crwdne39675:0","Time_is_in_the_wrong_format_":"crwdns40184:0crwdne40184:0","Rise/Fall":"crwdns39685:0crwdne39685:0","Higher/Lower":"crwdns38587:0crwdne38587:0","Matches/Differs":"crwdns39158:0crwdne39158:0","Even/Odd":"crwdns38375:0crwdne38375:0","Over/Under":"crwdns39404:0crwdne39404:0","High-Close":"crwdns43510:0crwdne43510:0","Close-Low":"crwdns43506:0crwdne43506:0","High-Low":"crwdns43511:0crwdne43511:0","Reset_Call":"crwdns45908:0crwdne45908:0","Reset_Put":"crwdns45909:0crwdne45909:0","Up/Down":"crwdns40335:0crwdne40335:0","Only_Ups/Only_Downs":"crwdns53030:0crwdne53030:0","In/Out":"crwdns38770:0crwdne38770:0","Select_Trade_Type":"crwdns50934:0crwdne50934:0","Tick":"crwdns40180:0crwdne40180:0","Spot":"crwdns39822:0crwdne39822:0","Spot_Time_(GMT)":"crwdns43551:0crwdne43551:0","seconds":"crwdns40817:0crwdne40817:0","minutes":"crwdns40808:0crwdne40808:0","hours":"crwdns40798:0crwdne40798:0","days":"crwdns40790:0crwdne40790:0","ticks":"crwdns40831:0crwdne40831:0","tick":"crwdns40830:0crwdne40830:0","second":"crwdns40816:0crwdne40816:0","minute":"crwdns40807:0crwdne40807:0","hour":"crwdns40797:0crwdne40797:0","day":"crwdns40789:0crwdne40789:0","Duration":"crwdns38285:0crwdne38285:0","End_Time":"crwdns38340:0crwdne38340:0","Purchase_request_sent":"crwdns44917:0crwdne44917:0","High":"crwdns43508:0crwdne43508:0","Close":"crwdns43505:0crwdne43505:0","Low":"crwdns43513:0crwdne43513:0","Select_Asset":"crwdns44592:0crwdne44592:0","Search___":"crwdns44646:0crwdne44646:0","Maximum_multiplier_of_1000_":"crwdns46431:0crwdne46431:0","Stake":"crwdns39825:0crwdne39825:0","Payout":"crwdns39434:0crwdne39434:0","Multiplier":"crwdns43514:0crwdne43514:0","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"crwdns164112:0crwdne164112:0","Trading_is_unavailable_at_this_time_":"crwdns46326:0crwdne46326:0","Please_reload_the_page":"crwdns46273:0crwdne46273:0","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"crwdns45898:0crwdne45898:0","Your_professional_client_request_is_[_1]not_approved[_2]_":"crwdns52962:0[_1]ncrwdnd52962:0[_2]crwdne52962:0","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"crwdns52958:0crwdne52958:0","More_information_can_be_found_in_an_email_sent_to_you_":"crwdns52956:0crwdne52956:0","I_want_to_reapply":"crwdns52954:0crwdne52954:0","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"crwdns46388:0crwdne46388:0","Apply_now_as_a_professional_investor":"crwdns52952:0crwdne52952:0","Try_our_[_1]Synthetic_Indices[_2]_":"crwdns70400:0[_1]Scrwdnd70400:0[_2]crwdne70400:0","Try_our_other_markets_":"crwdns40295:0crwdne40295:0","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"crwdns53752:0[_1]crwdnd53752:0[_2]crwdnd53752:0[_3]crwdnd53752:0[_4]crwdne53752:0","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"crwdns68138:0crwdne68138:0","Contract_Confirmation":"crwdns38121:0crwdne38121:0","Your_transaction_reference_is":"crwdns40760:0crwdne40760:0","Total_Cost":"crwdns40220:0crwdne40220:0","Potential_Payout":"crwdns39521:0crwdne39521:0","Potential_Profit":"crwdns39522:0crwdne39522:0","View":"crwdns40363:0crwdne40363:0","This_contract_won":"crwdns40156:0crwdne40156:0","This_contract_lost":"crwdns40155:0crwdne40155:0","The_reset_time_is_[_1]":"crwdns45916:0[_1]crwdne45916:0","Now":"crwdns39291:0crwdne39291:0","Average":"crwdns45845:0crwdne45845:0","Buy_price":"crwdns37957:0crwdne37957:0","Final_price":"crwdns38453:0crwdne38453:0","Loss":"crwdns39101:0crwdne39101:0","Profit":"crwdns39567:0crwdne39567:0","Account_balance:":"crwdns37675:0crwdne37675:0","Reverse_Side":"crwdns41764:0crwdne41764:0","Front_Side":"crwdns41748:0crwdne41748:0","Pending":"crwdns45992:0crwdne45992:0","Submitting":"crwdns45995:0crwdne45995:0","Submitted":"crwdns45994:0crwdne45994:0","Failed":"crwdns38437:0crwdne38437:0","Compressing_Image":"crwdns51278:0crwdne51278:0","Checking":"crwdns45986:0crwdne45986:0","Checked":"crwdns45985:0crwdne45985:0","Unable_to_read_file_[_1]":"crwdns50938:0[_1]crwdne50938:0","Passport":"crwdns41761:0crwdne41761:0","Identity_card":"crwdns41752:0crwdne41752:0","Driving_licence":"crwdns41743:0crwdne41743:0","Invalid_document_format_":"crwdns46331:0crwdne46331:0","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"crwdns45969:0[_1]crwdnd45969:0[_2]crwdne45969:0","ID_number_is_required_for_[_1]_":"crwdns41751:0[_1]crwdne41751:0","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"crwdns46271:0[_1]crwdne46271:0","Expiry_date_is_required_for_[_1]_":"crwdns41745:0[_1]crwdne41745:0","Place_of_birth":"crwdns39454:0crwdne39454:0","Please_select_the_country_of_document_issuance":"crwdns167387:0crwdne167387:0","Choose_the_document_type":"crwdns167369:0crwdne167369:0","Please_enter_the_correct_format__Example:":"crwdns167385:0crwdne167385:0","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"crwdns162146:0crwdne162146:0","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"crwdns162144:0crwdne162144:0","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"crwdns162142:0crwdne162142:0","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"crwdns165325:0crwdne165325:0","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"crwdns165327:0crwdne165327:0","We’ve_sent_you_an_email":"crwdns162226:0crwdne162226:0","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"crwdns165345:0[_1]crwdnd165345:0[_2]crwdnd165345:0[_3]crwdne165345:0","Linked_with_[_1]":"crwdns162170:0[_1]crwdne162170:0","You_will_need_to_set_a_password_to_complete_the_process_":"crwdns162234:0crwdne162234:0","Are_you_sure_you_want_to_unlink_from_[_1]?":"crwdns162130:0[_1]crwdne162130:0","Unlink":"crwdns162216:0crwdne162216:0","Country_not_found":"crwdns158320:0crwdne158320:0","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"crwdns158330:0crwdne158330:0","Submit_document":"crwdns158522:0crwdne158522:0","Select_country":"crwdns158498:0crwdne158498:0","e_g__United_States":"crwdns158638:0crwdne158638:0","Search_for_country":"crwdns158494:0crwdne158494:0","Select_issuing_country":"crwdns158500:0crwdne158500:0","Submit_verification":"crwdns158538:0crwdne158538:0","Tips":"crwdns42425:0crwdne42425:0","Documents_uploaded":"crwdns158332:0crwdne158332:0","Document_uploaded":"crwdns158328:0crwdne158328:0","Selfie_uploaded":"crwdns158504:0crwdne158504:0","We're_now_ready_to_verify_your_identity":"crwdns158616:0crwdne158616:0","Great,_that's_everything_we_need":"crwdns158378:0crwdne158378:0","The_link_only_works_on_mobile_devices":"crwdns158564:0crwdne158564:0","Something's_gone_wrong":"crwdns158516:0crwdne158516:0","You'll_need_to_restart_your_verification_on_your_computer":"crwdns158624:0crwdne158624:0","Get_secure_link":"crwdns158370:0crwdne158370:0","Steps_required_to_continue_verification_on_your_mobile":"crwdns158520:0crwdne158520:0","Check_back_here_to_finish_the_submission":"crwdns158282:0crwdne158282:0","Open_the_link_and_complete_the_tasks":"crwdns158446:0crwdne158446:0","Send_a_secure_link_to_your_phone":"crwdns158506:0crwdne158506:0","Here's_how_to_do_it:":"crwdns158380:0crwdne158380:0","Continue_on_your_phone":"crwdns158306:0crwdne158306:0","Your_computer_may_take_a_few_seconds_to_update":"crwdns158626:0crwdne158626:0","You_can_now_return_to_your_computer_to_continue":"crwdns158622:0crwdne158622:0","Uploads_successful":"crwdns158604:0crwdne158604:0","Make_sure_everything_is_clear":"crwdns158410:0crwdne158410:0","Blurry_photo_detected":"crwdns158272:0crwdne158272:0","Make_sure_full_document_is_visible":"crwdns158412:0crwdne158412:0","Cut-off_image_detected":"crwdns158322:0crwdne158322:0","Move_away_from_direct_light":"crwdns158430:0crwdne158430:0","Glare_detected":"crwdns158374:0crwdne158374:0","Make_sure_all_of_the_document_is_in_the_photo":"crwdns158406:0crwdne158406:0","No_document_detected":"crwdns158438:0crwdne158438:0","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158414:0crwdne158414:0","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"crwdns158394:0crwdne158394:0","To_smoothly_verify_you,_we_need_a_better_photo":"crwdns158574:0crwdne158574:0","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158420:0crwdne158420:0","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158422:0crwdne158422:0","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158424:0crwdne158424:0","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158408:0crwdne158408:0","Redo":"crwdns158468:0crwdne158468:0","Confirm":"crwdns38104:0crwdne38104:0","Upload_anyway":"crwdns158588:0crwdne158588:0","Enlarge_image":"crwdns158342:0crwdne158342:0","Photo_of_your_document":"crwdns158454:0crwdne158454:0","Check_your_image":"crwdns158290:0crwdne158290:0","Front_and_back":"crwdns158366:0crwdne158366:0","Driver's_license":"crwdns158338:0crwdne158338:0","Face_photo_page":"crwdns158356:0crwdne158356:0","Residence_permit":"crwdns158480:0crwdne158480:0","Sorry,_no_mobile_phone_bills":"crwdns158518:0crwdne158518:0","Documents_you_can_use_to_verify_your_identity":"crwdns158334:0crwdne158334:0","It_must_be_an_official_photo_ID":"crwdns158390:0crwdne158390:0","These_are_the_documents_most_likely_to_show_your_current_home_address":"crwdns158568:0crwdne158568:0","Choose_document":"crwdns158294:0crwdne158294:0","Select_a_%{country}_document":"crwdns158496:0%{country}crwdne158496:0","or_upload_photo_–_no_scans_or_photocopies":"crwdns158640:0crwdne158640:0","Continue_on_phone":"crwdns158304:0crwdne158304:0","Take_a_photo_with_your_phone":"crwdns158554:0crwdne158554:0","Submit_identity_card_(back)":"crwdns158524:0crwdne158524:0","Submit_identity_card_(front)":"crwdns158526:0crwdne158526:0","Submit_license_(back)":"crwdns158528:0crwdne158528:0","Submit_license_(front)":"crwdns158530:0crwdne158530:0","Submit_passport_photo_page":"crwdns158532:0crwdne158532:0","Submit_residence_permit_(back)":"crwdns158534:0crwdne158534:0","Submit_residence_permit_(front)":"crwdns158536:0crwdne158536:0","Restart_the_process_on_the_latest_version_of_Google_Chrome":"crwdns158484:0crwdne158484:0","Restart_the_process_on_the_latest_version_of_Safari":"crwdns158486:0crwdne158486:0","Unsupported_browser":"crwdns158582:0crwdne158582:0","Close_identity_verification_screen":"crwdns158296:0crwdne158296:0","Dismiss_alert":"crwdns158324:0crwdne158324:0","back":"crwdns158634:0crwdne158634:0","close":"crwdns158636:0crwdne158636:0","Restart_process_on_a_different_device":"crwdns158482:0crwdne158482:0","Camera_not_detected":"crwdns158276:0crwdne158276:0","Must_be_under_10MB_":"crwdns158436:0crwdne158436:0","File_size_exceeded_":"crwdns158360:0crwdne158360:0","Try_using_another_file_type_":"crwdns158580:0crwdne158580:0","File_not_uploaded_":"crwdns158358:0crwdne158358:0","An_error_occurred_while_loading_the_component":"crwdns158270:0crwdne158270:0","Only_your_face_can_be_in_the_selfie":"crwdns158444:0crwdne158444:0","Multiple_faces_found":"crwdns158434:0crwdne158434:0","Your_face_is_needed_in_the_selfie":"crwdns158628:0crwdne158628:0","No_face_found":"crwdns158440:0crwdne158440:0","Please_try_again":"crwdns158458:0crwdne158458:0","Connection_lost":"crwdns158300:0crwdne158300:0","Copy_the_link_to_your_phone":"crwdns158318:0crwdne158318:0","Too_many_failed_attempts":"crwdns158576:0crwdne158576:0","Try_using_a_JPG_or_PNG_file":"crwdns158578:0crwdne158578:0","File_type_not_supported":"crwdns158362:0crwdne158362:0","Loading___":"crwdns158402:0crwdne158402:0","Loading":"crwdns158400:0crwdne158400:0","Check_that_your_number_is_correct":"crwdns158288:0crwdne158288:0","Copied":"crwdns158310:0crwdne158310:0","Copy":"crwdns158312:0crwdne158312:0","Send_link":"crwdns158508:0crwdne158508:0","How_to_scan_a_QR_code":"crwdns158382:0crwdne158382:0","Point_your_phone’s_camera_at_the_QR_code":"crwdns158460:0crwdne158460:0","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"crwdns158384:0crwdne158384:0","or":"crwdns43480:0crwdne43480:0","Scan_QR_code":"crwdns158488:0crwdne158488:0","Get_link_via_SMS":"crwdns158368:0crwdne158368:0","Copy_link":"crwdns158314:0crwdne158314:0","Sending":"crwdns158512:0crwdne158512:0","Enter_mobile_number":"crwdns158344:0crwdne158344:0","Enter_your_mobile_number:":"crwdns158346:0crwdne158346:0","Scan_the_QR_code_with_your_phone":"crwdns158490:0crwdne158490:0","Send_this_one-time_link_to_your_phone":"crwdns158510:0crwdne158510:0","Open_the_link_on_your_mobile":"crwdns158448:0crwdne158448:0","Get_your_secure_link":"crwdns158372:0crwdne158372:0","Copy_the_link_to_your_mobile_browser":"crwdns158316:0crwdne158316:0","Continue":"crwdns158302:0crwdne158302:0","Make_sure§":"crwdns158428:0crwdne158428:0","2__Your_desktop_window_stays_open":"crwdns158264:0crwdne158264:0","1__This_link_was_sent_by_you":"crwdns158262:0crwdne158262:0","Continue_with_the_verification":"crwdns158308:0crwdne158308:0","Linked_to_your_computer":"crwdns158398:0crwdne158398:0","Take_a_photo_of_the_back_of_your_card":"crwdns158542:0crwdne158542:0","Take_a_photo_of_the_front_of_your_card":"crwdns158546:0crwdne158546:0","Take_a_photo_of_the_back_of_your_license":"crwdns158544:0crwdne158544:0","Take_a_photo_of_the_front_of_your_license":"crwdns158548:0crwdne158548:0","Take_a_photo_of_your_passport_photo_page":"crwdns158550:0crwdne158550:0","Take_a_selfie_showing_your_face":"crwdns158558:0crwdne158558:0","Take_a_photo_using_the_basic_camera_mode_instead":"crwdns158552:0crwdne158552:0","Take_a_photo":"crwdns158540:0crwdne158540:0","Passport_photo_page":"crwdns158452:0crwdne158452:0","Thank_you":"crwdns158562:0crwdne158562:0","Verification_complete":"crwdns158606:0crwdne158606:0","Refresh":"crwdns158470:0crwdne158470:0","Recovery":"crwdns158466:0crwdne158466:0","Follow_these_steps_to_recover_camera_access:":"crwdns158364:0crwdne158364:0","Refresh_this_page_to_restart_the_identity_verification_process":"crwdns158472:0crwdne158472:0","Grant_access_to_your_camera_from_your_browser_settings":"crwdns158376:0crwdne158376:0","Recover_camera_access_to_continue_face_verification":"crwdns158464:0crwdne158464:0","Camera_access_is_denied":"crwdns158274:0crwdne158274:0","We_cannot_verify_you_without_using_your_camera":"crwdns158612:0crwdne158612:0","Enable_camera":"crwdns158340:0crwdne158340:0","When_prompted,_you_must_enable_camera_access_to_continue":"crwdns158620:0crwdne158620:0","Allow_camera_access":"crwdns158268:0crwdne158268:0","Provide_the_whole_document_page_for_best_results":"crwdns158462:0crwdne158462:0","Upload_back_of_card_from_your_computer":"crwdns158590:0crwdne158590:0","Upload_front_of_card_from_your_computer":"crwdns158594:0crwdne158594:0","Upload_back_of_license_from_your_computer":"crwdns158592:0crwdne158592:0","Upload_front_of_license_from_your_computer":"crwdns158596:0crwdne158596:0","Upload_passport_photo_page_from_your_computer":"crwdns158600:0crwdne158600:0","Upload_a_selfie_from_your_computer":"crwdns158586:0crwdne158586:0","Take_photo":"crwdns158560:0crwdne158560:0","Upload":"crwdns158584:0crwdne158584:0","Selfie":"crwdns158502:0crwdne158502:0","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"crwdns158286:0crwdne158286:0","Make_sure_your_device_has_a_working_camera":"crwdns158416:0crwdne158416:0","Camera_not_working?":"crwdns158280:0crwdne158280:0","It_may_be_disconnected__Try_using_your_phone_instead_":"crwdns158386:0crwdne158386:0","Make_sure_your_device's_camera_works":"crwdns158418:0crwdne158418:0","Camera_not_working":"crwdns158278:0crwdne158278:0","Remember_to_press_stop_when_you're_done__Redo_video_actions":"crwdns158474:0crwdne158474:0","Looks_like_you_took_too_long":"crwdns158404:0crwdne158404:0","View_from_camera":"crwdns158610:0crwdne158610:0","Take_a_selfie":"crwdns158556:0crwdne158556:0","Photo_of_your_face":"crwdns158456:0crwdne158456:0","Make_sure_your_selfie_clearly_shows_your_face":"crwdns158426:0crwdne158426:0","Check_selfie":"crwdns158284:0crwdne158284:0","Tips_to_take_a_good_selfie":"crwdns158570:0crwdne158570:0","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"crwdns158354:0crwdne158354:0","Remove_your_glasses,_if_necessary":"crwdns158476:0crwdne158476:0","We'll_compare_it_with_your_document":"crwdns158614:0crwdne158614:0","Your_link_will_expire_in_one_hour":"crwdns158630:0crwdne158630:0","Keep_this_window_open_while_using_your_mobile":"crwdns158396:0crwdne158396:0","Resend_link":"crwdns158478:0crwdne158478:0","We've_sent_a_secure_link_to_%{number}":"crwdns158618:0%{number}crwdne158618:0","It_may_take_a_few_minutes_to_arrive":"crwdns158388:0crwdne158388:0","Check_your_mobile":"crwdns158292:0crwdne158292:0","Your_mobile_link_will_expire_in_one_hour":"crwdns158632:0crwdne158632:0","Don't_refresh_this_page":"crwdns158336:0crwdne158336:0","Once_you've_finished_we'll_take_you_to_the_next_step":"crwdns158442:0crwdne158442:0","Connected_to_your_mobile":"crwdns158298:0crwdne158298:0","Upload_photo":"crwdns158602:0crwdne158602:0","Example_of_a_blurry_document":"crwdns158348:0crwdne158348:0","All_details_must_be_clear_—_nothing_blurry":"crwdns158266:0crwdne158266:0","Example_of_a_cut-off_document":"crwdns158350:0crwdne158350:0","Show_all_details_—_including_the_bottom_2_lines":"crwdns158514:0crwdne158514:0","Example_of_a_document_with_glare":"crwdns158352:0crwdne158352:0","Move_away_from_direct_light_—_no_glare":"crwdns158432:0crwdne158432:0","Document_example":"crwdns158326:0crwdne158326:0","The_photo_should_clearly_show_your_document":"crwdns158566:0crwdne158566:0","Scans_and_photocopies_are_not_accepted":"crwdns158492:0crwdne158492:0","Upload_passport_photo_page":"crwdns158598:0crwdne158598:0","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"crwdns158572:0crwdne158572:0","It_will_only_take_a_couple_of_minutes_":"crwdns158392:0crwdne158392:0","Verify_Identity":"crwdns158608:0crwdne158608:0","Open_your_new_bank_account":"crwdns158450:0crwdne158450:0","Please_enter_a_valid_Login_ID_":"crwdns50918:0crwdne50918:0","Amount":"crwdns37744:0crwdne37744:0","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"crwdns40753:0[_1]crwdnd40753:0[_2]crwdnd40753:0[_3]crwdnd40753:0[_4]crwdne40753:0","Resale_not_offered":"crwdns39659:0crwdne39659:0","You've_made_no_transactions_of_this_type_up_to_this_date_":"crwdns159254:0crwdne159254:0","Date":"crwdns38201:0crwdne38201:0","Ref_":"crwdns160156:0crwdne160156:0","Contract":"crwdns160154:0crwdne160154:0","Purchase_Price":"crwdns39585:0crwdne39585:0","Sale_Date":"crwdns160158:0crwdne160158:0","Sale_Price":"crwdns160160:0crwdne160160:0","Profit/Loss":"crwdns39570:0crwdne39570:0","Details":"crwdns38237:0crwdne38237:0","Total_Profit/Loss":"crwdns40223:0crwdne40223:0","Action_required!":"crwdns171242:0crwdne171242:0","Sorry,_an_error_occurred_while_processing_your_request_":"crwdns39807:0crwdne39807:0","position(s)":"crwdns164354:0crwdne164354:0","withdrawal(s)":"crwdns164356:0crwdne164356:0","We_couldn’t_read_that!":"crwdns171248:0crwdne171248:0","Remaining_characters:_[_1]_":"crwdns162556:0[_1]crwdne162556:0","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"crwdns162550:0[_1]crwdne162550:0","Only_[_1]_are_allowed_":"crwdns39323:0[_1]crwdne39323:0","letters":"crwdns40803:0crwdne40803:0","numbers":"crwdns40814:0crwdne40814:0","space":"crwdns40818:0crwdne40818:0","Please_select_at_least_one_scope":"crwdns39500:0crwdne39500:0","New_token_created_":"crwdns39253:0crwdne39253:0","The_maximum_number_of_tokens_([_1])_has_been_reached_":"crwdns40074:0[_1]crwdne40074:0","Name":"crwdns39232:0crwdne39232:0","Token":"crwdns40212:0crwdne40212:0","Scopes":"crwdns39711:0crwdne39711:0","Last_Used":"crwdns39035:0crwdne39035:0","Action":"crwdns37689:0crwdne37689:0","Are_you_sure_that_you_want_to_permanently_delete_the_token":"crwdns43581:0crwdne43581:0","Delete":"crwdns38214:0crwdne38214:0","Never_Used":"crwdns39247:0crwdne39247:0","You_have_not_granted_access_to_any_applications_":"crwdns40642:0crwdne40642:0","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"crwdns43582:0crwdne43582:0","Revoke_access":"crwdns39682:0crwdne39682:0","Admin":"crwdns37698:0crwdne37698:0","Payments":"crwdns39433:0crwdne39433:0","Read":"crwdns39603:0crwdne39603:0","Trade":"crwdns40233:0crwdne40233:0","Trading_Information":"crwdns121124:0crwdne121124:0","Never":"crwdns39246:0crwdne39246:0","Permissions":"crwdns39441:0crwdne39441:0","Last_Login":"crwdns50576:0crwdne50576:0","You_did_not_change_anything_":"crwdns40631:0crwdne40631:0","Your_changes_have_been_updated_successfully_":"crwdns40740:0crwdne40740:0","Successful":"crwdns39877:0crwdne39877:0","Date_and_Time":"crwdns38202:0crwdne38202:0","Browser":"crwdns37950:0crwdne37950:0","IP_Address":"crwdns38645:0crwdne38645:0","Status":"crwdns39836:0crwdne39836:0","Your_account_has_no_Login/Logout_activity_":"crwdns40729:0crwdne40729:0","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"crwdns40731:0crwdne40731:0","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"crwdns90246:0[_1]crwdnd90246:0[_2]crwdnd90246:0[_3]crwdne90246:0","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"crwdns90242:0[_1]crwdnd90242:0[_2]crwdnd90242:0[_3]crwdne90242:0","Your_withdrawal_limit_is_[_1][_2]_":"crwdns90248:0[_1]crwdnd90248:0[_2]crwdne90248:0","You_have_already_withdrawn_[_1][_2]_":"crwdns90244:0[_1]crwdnd90244:0[_2]crwdne90244:0","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"crwdns90238:0[_1]crwdnd90238:0[_2]crwdne90238:0","Please_confirm_that_all_the_information_above_is_true_and_complete_":"crwdns43562:0crwdne43562:0","Your_settings_have_been_updated_successfully_":"crwdns40756:0crwdne40756:0","Sorry,_an_error_occurred_while_processing_your_account_":"crwdns39806:0crwdne39806:0","Please_select_a_country":"crwdns41906:0crwdne41906:0","Timed_out_until":"crwdns44621:0crwdne44621:0","Excluded_from_the_website_until":"crwdns44618:0crwdne44618:0","Session_duration_limit_cannot_be_more_than_6_weeks_":"crwdns39758:0crwdne39758:0","Time_out_must_be_after_today_":"crwdns40187:0crwdne40187:0","Time_out_cannot_be_more_than_6_weeks_":"crwdns40186:0crwdne40186:0","Time_out_cannot_be_in_the_past_":"crwdns40185:0crwdne40185:0","Please_select_a_valid_time_":"crwdns39498:0crwdne39498:0","Exclude_time_cannot_be_less_than_6_months_":"crwdns38394:0crwdne38394:0","Exclude_time_cannot_be_for_more_than_5_years_":"crwdns38393:0crwdne38393:0","Confirm_changes":"crwdns156200:0crwdne156200:0","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"crwdns156216:0[_1]crwdnd156216:0[_2]crwdne156216:0","Agree_and_accept":"crwdns156198:0crwdne156198:0","Go_back":"crwdns156204:0crwdne156204:0","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"crwdns40505:0crwdne40505:0","Your_changes_have_been_updated_":"crwdns40741:0crwdne40741:0","Disable":"crwdns45847:0crwdne45847:0","Enable":"crwdns45848:0crwdne45848:0","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"crwdns45884:0crwdne45884:0","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"crwdns45883:0crwdne45883:0","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"crwdns85193:0[_1]crwdne85193:0","No_authentication_required":"crwdns85191:0crwdne85191:0","Back_to_trading":"crwdns85189:0crwdne85189:0","You_are_categorised_as_a_professional_client_":"crwdns45896:0crwdne45896:0","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"crwdns45897:0crwdne45897:0","Bid":"crwdns37887:0crwdne37887:0","Closed_Bid":"crwdns38069:0crwdne38069:0","Reference_ID":"crwdns50928:0crwdne50928:0","Description":"crwdns38233:0crwdne38233:0","Credit/Debit":"crwdns38175:0crwdne38175:0","Balance":"crwdns37857:0crwdne37857:0","Top_up_error":"crwdns52716:0crwdne52716:0","Understood":"crwdns52720:0crwdne52720:0","Top-up_successful":"crwdns52718:0crwdne52718:0","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"crwdns163878:0[_1]crwdnd163878:0[_2]crwdne163878:0","Go_to_statement":"crwdns52708:0crwdne52708:0","Continue_trading":"crwdns52518:0crwdne52518:0","Your_Demo_balance_has_been_reset_":"crwdns163950:0crwdne163950:0","Account":"crwdns37665:0crwdne37665:0","Available_Markets":"crwdns37842:0crwdne37842:0","Type":"crwdns40302:0crwdne40302:0","Currency":"crwdns38181:0crwdne38181:0","Multipliers_Account":"crwdns167559:0crwdne167559:0","Gaming_Account":"crwdns166275:0crwdne166275:0","Options_Account":"crwdns167563:0crwdne167563:0","Real_Account":"crwdns39613:0crwdne39613:0","Counterparty":"crwdns38160:0crwdne38160:0","Jurisdiction":"crwdns50536:0crwdne50536:0","Create_account":"crwdns52520:0crwdne52520:0","Change_currency":"crwdns117106:0crwdne117106:0","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"crwdns170560:0crwdne170560:0","This_account_is_disabled":"crwdns41965:0crwdne41965:0","This_account_is_excluded_until_[_1]":"crwdns41966:0[_1]crwdne41966:0","Set_currency":"crwdns117110:0crwdne117110:0","Commodities":"crwdns38083:0crwdne38083:0","Forex":"crwdns38491:0crwdne38491:0","Stock_Indices":"crwdns90080:0crwdne90080:0","Stocks":"crwdns39848:0crwdne39848:0","Synthetic_Indices":"crwdns56092:0crwdne56092:0","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"crwdns163496:0crwdne163496:0","Sign_up":"crwdns43900:0crwdne43900:0","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"crwdns90132:0crwdne90132:0","Do_you_wish_to_continue?":"crwdns44474:0crwdne44474:0","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"crwdns90194:0{SPAIN ONLY}crwdne90194:0","{SPAIN_ONLY}This_is_a_product_with_leverage__You_should_be_aware_that_losses_may_be_higher_than_the_amount_initially_paid_to_purchase_the_product_":"crwdns46311:0{SPAIN ONLY}crwdne46311:0","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"crwdns46310:0{SPAIN ONLY}crwdne46310:0","Acknowledge":"crwdns50898:0crwdne50898:0","Change_Password":"crwdns37992:0crwdne37992:0","The_investor_password_of_account_number_[_1]_has_been_changed_":"crwdns162202:0[_1]crwdne162202:0","Reset_Password":"crwdns39661:0crwdne39661:0","Verify_Reset_Password":"crwdns44586:0crwdne44586:0","Please_check_your_email_for_further_instructions_":"crwdns44581:0crwdne44581:0","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"crwdns37456:0[_1]crwdnd37456:0[_2]crwdnd37456:0[_3]crwdnd37456:0[_4]crwdne37456:0","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"crwdns37529:0[_1]crwdnd37529:0[_2]crwdnd37529:0[_3]crwdnd37529:0[_4]crwdne37529:0","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"crwdns167669:0[_1]crwdnd167669:0[_2]crwdnd167669:0[_3]crwdne167669:0","Current_password":"crwdns38186:0crwdne38186:0","New_password":"crwdns39251:0crwdne39251:0","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"crwdns168597:0[_1]crwdne168597:0","You_have_insufficient_funds_in_your_MT5_account_":"crwdns156224:0crwdne156224:0","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"crwdns39809:0crwdne39809:0","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"crwdns158976:0[_1]crwdne158976:0","Unavailable":"crwdns158980:0crwdne158980:0","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"crwdns52992:0[_1]crwdnd52992:0[_2]crwdne52992:0","_(Region_added)":"crwdns160148:0crwdne160148:0","_(Temporarily_unavailable)":"crwdns160150:0crwdne160150:0","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"crwdns165677:0crwdne165677:0","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"crwdns167671:0[_1]crwdne167671:0","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"crwdns167667:0[_1]crwdne167667:0","Demo_Accounts":"crwdns43429:0crwdne43429:0","Real-Money_Accounts":"crwdns43438:0crwdne43438:0","Demo_Account":"crwdns45919:0crwdne45919:0","Real-Money_Account":"crwdns45921:0crwdne45921:0","for_account_[_1]":"crwdns44587:0[_1]crwdne44587:0","[_1]_Account_[_2]":"crwdns43489:0[_1]crwdnd43489:0[_2]crwdne43489:0","MT5_Financial":"crwdns42246:0crwdne42246:0","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"crwdns167649:0[_1]crwdnd167649:0[_2]crwdne167649:0","demo":"crwdns165347:0crwdne165347:0","real":"crwdns165349:0crwdne165349:0","MT5_Synthetic":"crwdns118006:0crwdne118006:0","Get_[_1]":"crwdns52998:0[_1]crwdne52998:0","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"crwdns53010:0[_1]crwdnd53010:0[_2]crwdne53010:0","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"crwdns53004:0[_1]crwdnd53004:0[_2]crwdne53004:0","Yes,_I'm_sure":"crwdns53256:0crwdne53256:0","Are_you_sure?":"crwdns52724:0crwdne52724:0","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"crwdns167651:0[_1]crwdne167651:0","OK":"crwdns39299:0crwdne39299:0","Go_to_Deriv_to_add_an_MT5_account":"crwdns838758:0crwdne838758:0","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"crwdns838760:0crwdne838760:0","Back":"crwdns37855:0crwdne37855:0","Go_to_Deriv":"crwdns838756:0crwdne838756:0","Address":"crwdns37696:0crwdne37696:0","Account_currency":"crwdns41991:0crwdne41991:0","Financial_assessment":"crwdns53636:0crwdne53636:0","Personal_details":"crwdns53654:0crwdne53654:0","Terms_of_use":"crwdns165729:0crwdne165729:0","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"crwdns125058:0crwdne125058:0","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"crwdns125054:0crwdne125054:0","Title_and_name":"crwdns165733:0crwdne165733:0","Real_money_account_opening":"crwdns165719:0crwdne165719:0","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"crwdns40758:0[_1]crwdne40758:0","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"crwdns40043:0[_1]crwdne40043:0","Password_is_not_strong_enough_":"crwdns39420:0crwdne39420:0","Upgrade_now":"crwdns44598:0crwdne44598:0","[_1]_days_[_2]_hours_[_3]_minutes":"crwdns37455:0[_1]crwdnd37455:0[_2]crwdnd37455:0[_3]crwdne37455:0","Your_trading_statistics_since_[_1]_":"crwdns40759:0[_1]crwdne40759:0","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"crwdns167657:0[_1]crwdne167657:0","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"crwdns37443:0[_1]crwdne37443:0","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"crwdns165341:0crwdne165341:0","Success":"crwdns165329:0crwdne165329:0","Done":"crwdns162154:0crwdne162154:0","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"crwdns162236:0[_1]crwdnd162236:0[_2]crwdne162236:0","Success!":"crwdns162198:0crwdne162198:0","Got_it":"crwdns162164:0crwdne162164:0","Binary_Password_Reset":"crwdns162134:0crwdne162134:0","Binary_password":"crwdns162136:0crwdne162136:0","You_have_added_a_[_1]_account_":"crwdns165737:0[_1]crwdne165737:0","Add_account":"crwdns162126:0crwdne162126:0","Add_new_crypto_account":"crwdns167743:0crwdne167743:0","Add_new_account":"crwdns167741:0crwdne167741:0","Create_a_cryptocurrency_account":"crwdns167755:0crwdne167755:0","Choose_your_preferred_cryptocurrency":"crwdns167753:0crwdne167753:0","You_can_open_an_account_for_each_cryptocurrency_":"crwdns167783:0crwdne167783:0","Choose_a_cryptocurrency_account":"crwdns167745:0crwdne167745:0","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"crwdns167751:0crwdne167751:0","Choose_an_account":"crwdns42065:0crwdne42065:0","Choose_one_of_your_accounts_or_add_a_new_account":"crwdns167749:0crwdne167749:0","Choose_one_of_your_accounts":"crwdns167747:0crwdne167747:0","Please_select_the_currency_for_this_account:":"crwdns53250:0crwdne53250:0","deposit":"crwdns163590:0crwdne163590:0","deposit_or_create_a_CFDs_account":"crwdns167595:0crwdne167595:0","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"crwdns53236:0[_1]crwdne53236:0","Note:":"crwdns44759:0crwdne44759:0","You_may_open_one_account_for_each_supported_cryptocurrency_":"crwdns53270:0crwdne53270:0","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"crwdns53234:0[_1]crwdne53234:0","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"crwdns163588:0[_1]crwdne163588:0","Yes":"crwdns52826:0crwdne52826:0","Create_[_1]_account":"crwdns53240:0[_1]crwdne53240:0","You_have_successfully_set_your_account_currency_to_[_1]_":"crwdns117114:0[_1]crwdne117114:0","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"crwdns53266:0[_1]crwdnd53266:0[_2]crwdne53266:0","Please_choose_a_currency":"crwdns39471:0crwdne39471:0","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"crwdns167673:0[_1]crwdne167673:0","Asian_Up":"crwdns43531:0crwdne43531:0","Asian_Down":"crwdns43530:0crwdne43530:0","Higher":"crwdns38586:0crwdne38586:0","Higher_or_equal":"crwdns43554:0crwdne43554:0","Lower":"crwdns39110:0crwdne39110:0","Lower_or_equal":"crwdns45168:0crwdne45168:0","Digit_Matches":"crwdns43544:0crwdne43544:0","Digit_Differs":"crwdns43542:0crwdne43542:0","Digit_Odd":"crwdns43545:0crwdne43545:0","Digit_Even":"crwdns43543:0crwdne43543:0","Digit_Over":"crwdns43546:0crwdne43546:0","Digit_Under":"crwdns43547:0crwdne43547:0","Ends_Outside":"crwdns38349:0crwdne38349:0","Ends_Between":"crwdns38344:0crwdne38344:0","Stays_Between":"crwdns39838:0crwdne39838:0","Goes_Outside":"crwdns38563:0crwdne38563:0","Touches":"crwdns40229:0crwdne40229:0","Does_Not_Touch":"crwdns38273:0crwdne38273:0","Call_Spread":"crwdns45846:0crwdne45846:0","Put_Spread":"crwdns45866:0crwdne45866:0","High_Tick":"crwdns46210:0crwdne46210:0","Low_Tick":"crwdns46211:0crwdne46211:0","Only_Ups":"crwdns53028:0crwdne53028:0","Only_Downs":"crwdns53026:0crwdne53026:0","Multiplier_Up":"crwdns85661:0crwdne85661:0","Multiplier_Down":"crwdns85659:0crwdne85659:0","Equals":"crwdns38366:0crwdne38366:0","Not":"crwdns39273:0crwdne39273:0","Buy":"crwdns37954:0crwdne37954:0","Sell":"crwdns39742:0crwdne39742:0","Waiting_for_contract_settlement_":"crwdns51356:0crwdne51356:0","including_Deal_Cancel__Fee":"crwdns86007:0crwdne86007:0","Contract_has_not_started_yet":"crwdns38132:0crwdne38132:0","This_contract_is_only_available_on_[_1]DTrader[_2]_":"crwdns121122:0[_1]crwdnd121122:0[_2]crwdne121122:0","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"crwdns86041:0[_1]crwdnd86041:0[_2]Gcrwdnd86041:0[_3]crwdne86041:0","Contract_Result":"crwdns45952:0crwdne45952:0","Close_Time":"crwdns46268:0crwdne46268:0","Exit_Spot_Time":"crwdns38403:0crwdne38403:0","Audit":"crwdns41436:0crwdne41436:0","View_chart":"crwdns52546:0crwdne52546:0","Audit_Page":"crwdns41437:0crwdne41437:0","Contract_Starts":"crwdns41448:0crwdne41448:0","Contract_Ends":"crwdns41447:0crwdne41447:0","Contract_Details":"crwdns38122:0crwdne38122:0","Target":"crwdns39890:0crwdne39890:0","Contract_Information":"crwdns38125:0crwdne38125:0","Contract_Type":"crwdns43541:0crwdne43541:0","Transaction_ID":"crwdns43552:0crwdne43552:0","Remaining_Time":"crwdns39653:0crwdne39653:0","Maximum_payout":"crwdns50906:0crwdne50906:0","Barrier_Change":"crwdns37867:0crwdne37867:0","Current":"crwdns38183:0crwdne38183:0","Spot_Time":"crwdns43621:0crwdne43621:0","Current_Time":"crwdns38184:0crwdne38184:0","Indicative":"crwdns38782:0crwdne38782:0","Potential_Profit/Loss":"crwdns51354:0crwdne51354:0","Deal_Cancel__Fee":"crwdns85657:0crwdne85657:0","You_can_close_this_window_without_interrupting_your_trade_":"crwdns44763:0crwdne44763:0","There_was_an_error":"crwdns40120:0crwdne40120:0","Sell_at_market":"crwdns39744:0crwdne39744:0","Note":"crwdns39275:0crwdne39275:0","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"crwdns38135:0crwdne38135:0","You_have_sold_this_contract_at_[_1]_[_2]":"crwdns40648:0[_1]crwdnd40648:0[_2]crwdne40648:0","Your_transaction_reference_number_is_[_1]":"crwdns40761:0[_1]crwdne40761:0","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"crwdns39918:0crwdne39918:0","All_markets_are_closed_now__Please_try_again_later_":"crwdns37731:0crwdne37731:0","Withdrawal":"crwdns41824:0crwdne41824:0","demo_credit_to_account":"crwdns163954:0crwdne163954:0","login":"crwdns50940:0crwdne50940:0","logout":"crwdns40804:0crwdne40804:0","Asians":"crwdns37815:0crwdne37815:0","Call_Spread/Put_Spread":"crwdns45983:0crwdne45983:0","Digits":"crwdns38249:0crwdne38249:0","Ends_Between/Ends_Outside":"crwdns43094:0crwdne43094:0","High/Low_Ticks":"crwdns45964:0crwdne45964:0","Lookbacks":"crwdns43512:0crwdne43512:0","Reset_Call/Reset_Put":"crwdns45984:0crwdne45984:0","Stays_Between/Goes_Outside":"crwdns43059:0crwdne43059:0","Touch/No_Touch":"crwdns40226:0crwdne40226:0","Christmas_Day":"crwdns38024:0crwdne38024:0","Closes_early_(at_18:00)":"crwdns38071:0crwdne38071:0","Closes_early_(at_21:00)":"crwdns38072:0crwdne38072:0","Fridays":"crwdns38512:0crwdne38512:0","New_Year's_Day":"crwdns39250:0crwdne39250:0","today":"crwdns40832:0crwdne40832:0","today,_Fridays":"crwdns40833:0crwdne40833:0","There_was_a_problem_accessing_the_server_":"crwdns40118:0crwdne40118:0","There_was_a_problem_accessing_the_server_during_purchase_":"crwdns40117:0crwdne40117:0"}; \ No newline at end of file +texts_json['ACH'] = {"Real":"crwdns39612:0crwdne39612:0","Multipliers":"crwdns157624:0crwdne157624:0","Gaming":"crwdns167659:0crwdne167659:0","Options":"crwdns166301:0crwdne166301:0","Demo":"crwdns38215:0crwdne38215:0","Real_CFDs":"crwdns167571:0crwdne167571:0","Real_Financial":"crwdns167655:0crwdne167655:0","Demo_CFDs":"crwdns167553:0crwdne167553:0","Demo_Financial":"crwdns167653:0crwdne167653:0","Derived":"crwdns1060468:0crwdne1060468:0","Demo_Derived":"crwdns1060464:0crwdne1060464:0","Real_Derived":"crwdns1060478:0crwdne1060478:0","CFDs":"crwdns42056:0crwdne42056:0","Financial":"crwdns117996:0crwdne117996:0","Financial_STP":"crwdns117998:0crwdne117998:0","Demo_Financial_STP":"crwdns117992:0crwdne117992:0","Real_Financial_STP":"crwdns118016:0crwdne118016:0","MT5":"crwdns124284:0crwdne124284:0","Bitcoin":"crwdns37943:0crwdne37943:0","Ethereum":"crwdns125042:0crwdne125042:0","Ether_Classic":"crwdns38370:0crwdne38370:0","Litecoin":"crwdns39084:0crwdne39084:0","IDK":"crwdns125044:0crwdne125044:0","Binance_USD":"crwdns125040:0crwdne125040:0","Multi-Collateral":"crwdns125046:0crwdne125046:0","STASIS_Euro":"crwdns125050:0crwdne125050:0","Paxos_Standard":"crwdns125048:0crwdne125048:0","True_USD":"crwdns125060:0crwdne125060:0","USD_Coin":"crwdns125062:0crwdne125062:0","USDK":"crwdns125064:0crwdne125064:0","Tether_Omni":"crwdns125056:0crwdne125056:0","Tether_ERC20":"crwdns125052:0crwdne125052:0","Binary_Coin":"crwdns52940:0crwdne52940:0","Tether_TRC20":"crwdns921156:0crwdne921156:0","Online":"crwdns43608:0crwdne43608:0","Offline":"crwdns43607:0crwdne43607:0","Connecting_to_server":"crwdns43605:0crwdne43605:0","Use_a_few_words,_avoid_common_phrases":"crwdns160118:0crwdne160118:0","No_need_for_symbols,_digits,_or_uppercase_letters":"crwdns160088:0crwdne160088:0","Add_another_word_or_two__Uncommon_words_are_better_":"crwdns160066:0crwdne160066:0","Straight_rows_of_keys_are_easy_to_guess":"crwdns160104:0crwdne160104:0","Short_keyboard_patterns_are_easy_to_guess":"crwdns160102:0crwdne160102:0","Use_a_longer_keyboard_pattern_with_more_turns":"crwdns160120:0crwdne160120:0","Repeats_like_\"aaa\"_are_easy_to_guess":"crwdns160094:0crwdne160094:0","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"crwdns160096:0crwdne160096:0","Avoid_repeated_words_and_characters":"crwdns160074:0crwdne160074:0","Sequences_like_abc_or_6543_are_easy_to_guess":"crwdns160100:0crwdne160100:0","Avoid_sequences":"crwdns160076:0crwdne160076:0","Recent_years_are_easy_to_guess":"crwdns160092:0crwdne160092:0","Avoid_recent_years":"crwdns160072:0crwdne160072:0","Avoid_years_that_are_associated_with_you":"crwdns160078:0crwdne160078:0","Dates_are_often_easy_to_guess":"crwdns160084:0crwdne160084:0","Avoid_dates_and_years_that_are_associated_with_you":"crwdns160070:0crwdne160070:0","This_is_a_top-10_common_password":"crwdns160108:0crwdne160108:0","This_is_a_top-100_common_password":"crwdns160110:0crwdne160110:0","This_is_a_very_common_password":"crwdns160112:0crwdne160112:0","This_is_similar_to_a_commonly_used_password":"crwdns160114:0crwdne160114:0","A_word_by_itself_is_easy_to_guess":"crwdns160064:0crwdne160064:0","Names_and_surnames_by_themselves_are_easy_to_guess":"crwdns160086:0crwdne160086:0","Common_names_and_surnames_are_easy_to_guess":"crwdns160082:0crwdne160082:0","Capitalization_doesn't_help_very_much":"crwdns160080:0crwdne160080:0","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"crwdns160068:0crwdne160068:0","Reversed_words_aren't_much_harder_to_guess":"crwdns160098:0crwdne160098:0","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"crwdns160090:0crwdne160090:0","This_password_is_on_the_blacklist":"crwdns160116:0crwdne160116:0","Unknown_OS":"crwdns50522:0crwdne50522:0","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"crwdns44476:0crwdne44476:0","Click_OK_to_proceed_":"crwdns44473:0crwdne44473:0","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"crwdns51280:0crwdne51280:0","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"crwdns37518:0[_1]crwdne37518:0","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"crwdns46272:0[_1]locrwdnd46272:0[_2]crwdnd46272:0[_3]scrwdnd46272:0[_4]crwdne46272:0","This_feature_is_available_to_demo_accounts_only_":"crwdns163926:0crwdne163926:0","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"crwdns167883:0crwdne167883:0","This_page_is_only_available_to_logged_out_clients_":"crwdns52504:0crwdne52504:0","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"crwdns167599:0crwdne167599:0","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"crwdns167539:0crwdne167539:0","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"crwdns168077:0crwdne168077:0","Binary_options_trading_is_not_available_in_your_country_":"crwdns163210:0crwdne163210:0","This_page_is_not_available_in_your_country_of_residence_":"crwdns163216:0crwdne163216:0","Page_not_available,_you_did_not_deactivate_your_account_":"crwdns163394:0crwdne163394:0","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"crwdns167581:0crwdne167581:0","Go_to_DTrader":"crwdns167661:0crwdne167661:0","Sign_out":"crwdns39787:0crwdne39787:0","[_1]_Account":"crwdns37435:0[_1]crwdne37435:0","Click_here_to_open_a_Real_Account":"crwdns44566:0crwdne44566:0","Open_a_Real_Account":"crwdns44591:0crwdne44591:0","Click_here_to_open_a_Multipliers_Account":"crwdns167543:0crwdne167543:0","Click_here_to_open_an_Options_account":"crwdns167545:0crwdne167545:0","Open_a_Multipliers_Account":"crwdns167561:0crwdne167561:0","Go_to_Deriv_to_add_an_account":"crwdns1613147:0crwdne1613147:0","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"crwdns838760:0crwdne838760:0","Cancel":"crwdns37980:0crwdne37980:0","Go_to_Deriv":"crwdns838756:0crwdne838756:0","Create_Account":"crwdns38166:0crwdne38166:0","Accounts_List":"crwdns37683:0crwdne37683:0","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"crwdns167859:0crwdne167859:0","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"crwdns167881:0crwdne167881:0","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167865:0crwdne167865:0","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167863:0crwdne167863:0","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"crwdns167903:0crwdne167903:0","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"crwdns167869:0[_1]acrwdnd167869:0[_2]crwdne167869:0","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"crwdns914556:0[_1]crwdnd914556:0[_2]crwdne914556:0","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"crwdns914552:0[_1]crwdnd914552:0[_2]crwdne914552:0","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"crwdns914554:0[_1]crwdnd914554:0[_2]crwdne914554:0","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"crwdns167899:0[_1]pcrwdnd167899:0[_2]crwdne167899:0","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"crwdns167897:0[_1]pcrwdnd167897:0[_2]crwdne167897:0","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"crwdns167875:0crwdne167875:0","Your_[_1]proof_of_identity[_2]_has_expired_":"crwdns68464:0[_1]pcrwdnd68464:0[_2]crwdne68464:0","Your_[_1]proof_of_address[_2]_has_expired_":"crwdns68460:0[_1]pcrwdnd68460:0[_2]crwdne68460:0","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"crwdns123182:0[_1]pcrwdnd123182:0[_3]crwdnd123182:0[_2]pcrwdnd123182:0[_3]crwdne123182:0","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"crwdns120920:0[_1]pcrwdnd120920:0[_2]crwdne120920:0","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"crwdns123180:0[_1]pcrwdnd123180:0[_2]crwdne123180:0","Please_submit_your_[_1]proof_of_identity[_2]_":"crwdns68446:0[_1]pcrwdnd68446:0[_2]crwdne68446:0","Please_submit_your_[_1]proof_of_address[_2]_":"crwdns68442:0[_1]pcrwdnd68442:0[_2]crwdne68442:0","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"crwdns167885:0[_1]crwdne167885:0","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"crwdns167895:0[_1]Scrwdnd167895:0[_2]crwdne167895:0","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"crwdns46376:0crwdne46376:0","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"crwdns167877:0crwdne167877:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"crwdns167889:0[_1]pcrwdnd167889:0[_2]crwdne167889:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"crwdns167893:0[_1]pcrwdnd167893:0[_2]crwdne167893:0","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"crwdns167891:0[_1]pcrwdnd167891:0[_2]crwdne167891:0","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"crwdns167909:0[_1]ccrwdnd167909:0[_2]crwdne167909:0","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"crwdns167905:0[_1]fcrwdnd167905:0[_2]crwdne167905:0","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"crwdns167887:0[_1]crwdnd167887:0[_2]crwdne167887:0","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"crwdns168157:0crwdne168157:0","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"crwdns121212:0crwdne121212:0","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"crwdns50423:0[_1]acrwdnd50423:0[_2]crwdne50423:0","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"crwdns50421:0[_1]acrwdnd50421:0[_2]crwdne50421:0","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"crwdns167901:0crwdne167901:0","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"crwdns167867:0crwdne167867:0","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"crwdns167907:0[_1]hocrwdnd167907:0[_2]crwdne167907:0","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"crwdns170546:0[_1]pcrwdnd170546:0[_2]crwdne170546:0","Account_Authenticated":"crwdns45996:0crwdne45996:0","Connection_error:_Please_check_your_internet_connection_":"crwdns38111:0crwdne38111:0","Network_status":"crwdns43606:0crwdne43606:0","This_is_a_staging_server_-_For_testing_purposes_only":"crwdns40162:0crwdne40162:0","The_server_endpoint_is:_[_2]":"crwdns40095:0[_1]crwdnd40095:0[_2]crwdne40095:0","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"crwdns40766:0[_1]crwdnd40766:0[_2]crwdnd40766:0[_3]crwdne40766:0","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"crwdns40644:0crwdne40644:0","There_was_some_invalid_character_in_an_input_field_":"crwdns40121:0crwdne40121:0","regulated_by_the_UK_Gaming_Commission_(UKGC),":"crwdns164422:0crwdne164422:0","regulated_by_the_Malta_Gaming_Authority,":"crwdns164420:0crwdne164420:0","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"crwdns164418:0crwdne164418:0","Please_select":"crwdns39495:0crwdne39495:0","Please_accept_the_terms_and_conditions_":"crwdns39467:0crwdne39467:0","Please_confirm_that_you_are_not_a_politically_exposed_person_":"crwdns39474:0crwdne39474:0","Today":"crwdns40210:0crwdne40210:0","Select_date":"crwdns51380:0crwdne51380:0","Barrier":"crwdns37865:0crwdne37865:0","Entry_Spot":"crwdns38362:0crwdne38362:0","Exit_Spot":"crwdns38402:0crwdne38402:0","Charting_for_this_underlying_is_delayed":"crwdns38001:0crwdne38001:0","Payout_Range":"crwdns45997:0crwdne45997:0","Purchase_Time":"crwdns39586:0crwdne39586:0","Reset_Barrier":"crwdns45907:0crwdne45907:0","Reset_Time":"crwdns45910:0crwdne45910:0","Selected_Tick":"crwdns45868:0crwdne45868:0","Exit_Time":"crwdns89746:0crwdne89746:0","Start_Time":"crwdns39826:0crwdne39826:0","Fiat":"crwdns44589:0crwdne44589:0","Crypto":"crwdns42089:0crwdne42089:0","Step_[_1]:_[_2]_([_1]_of_[_3])":"crwdns165727:0[_1]crwdnd165727:0[_2]crwdnd165727:0[_1]crwdnd165727:0[_3]crwdne165727:0","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"crwdns40357:0crwdne40357:0","Indicates_required_field":"crwdns38781:0crwdne38781:0","Please_select_the_checkbox_":"crwdns39501:0crwdne39501:0","This_field_is_required_":"crwdns40161:0crwdne40161:0","Should_be_a_valid_number_":"crwdns43143:0crwdne43143:0","Up_to_[_1]_decimal_places_are_allowed_":"crwdns42480:0[_1]crwdne42480:0","Should_be_[_1]":"crwdns46276:0[_1]crwdne46276:0","Should_be_between_[_1]_and_[_2]":"crwdns39781:0[_1]crwdnd39781:0[_2]crwdne39781:0","Should_be_more_than_[_1]":"crwdns39783:0[_1]crwdne39783:0","Should_be_less_than_[_1]":"crwdns39782:0[_1]crwdne39782:0","Insufficient_balance_":"crwdns38801:0crwdne38801:0","Invalid_email_address_":"crwdns43135:0crwdne43135:0","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"crwdns125036:0crwdne125036:0","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"crwdns39327:0crwdne39327:0","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"crwdns50916:0[_1]crwdne50916:0","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"crwdns39328:0crwdne39328:0","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"crwdns50914:0crwdne50914:0","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"crwdns159688:0crwdne159688:0","The_two_passwords_that_you_entered_do_not_match_":"crwdns40106:0crwdne40106:0","[_1]_and_[_2]_cannot_be_the_same_":"crwdns37449:0[_1]crwdnd37449:0[_2]crwdne37449:0","Minimum_of_[_1]_characters_required_":"crwdns39197:0[_1]crwdne39197:0","You_should_enter_[_1]_characters_":"crwdns40697:0[_1]crwdne40697:0","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"crwdns41545:0crwdne41545:0","Invalid_verification_code_":"crwdns46460:0crwdne46460:0","Your_password_cannot_be_the_same_as_your_email_address_":"crwdns125038:0crwdne125038:0","Transaction_performed_by_[_1]_(App_ID:_[_2])":"crwdns40270:0[_1]crwdnd40270:0[_2]crwdne40270:0","Guide":"crwdns41543:0crwdne41543:0","Next":"crwdns39254:0crwdne39254:0","Finish":"crwdns38462:0crwdne38462:0","Step":"crwdns39843:0crwdne39843:0","Select_your_market_and_underlying_asset":"crwdns44918:0crwdne44918:0","Select_your_trade_type":"crwdns39736:0crwdne39736:0","Adjust_trade_parameters":"crwdns37697:0crwdne37697:0","Predict_the_directionand_purchase":"crwdns39527:0crwdne39527:0","Your_session_duration_limit_will_end_in_[_1]_seconds_":"crwdns40755:0[_1]crwdne40755:0","January":"crwdns38851:0crwdne38851:0","February":"crwdns38445:0crwdne38445:0","March":"crwdns39133:0crwdne39133:0","April":"crwdns37789:0crwdne37789:0","May":"crwdns39178:0crwdne39178:0","June":"crwdns39013:0crwdne39013:0","July":"crwdns39011:0crwdne39011:0","August":"crwdns37831:0crwdne37831:0","September":"crwdns39754:0crwdne39754:0","October":"crwdns39305:0crwdne39305:0","November":"crwdns39289:0crwdne39289:0","December":"crwdns38208:0crwdne38208:0","Jan":"crwdns38850:0crwdne38850:0","Feb":"crwdns38444:0crwdne38444:0","Mar":"crwdns39132:0crwdne39132:0","Apr":"crwdns37788:0crwdne37788:0","Jun":"crwdns39012:0crwdne39012:0","Jul":"crwdns39010:0crwdne39010:0","Aug":"crwdns37830:0crwdne37830:0","Sep":"crwdns39753:0crwdne39753:0","Oct":"crwdns39304:0crwdne39304:0","Nov":"crwdns39288:0crwdne39288:0","Dec":"crwdns38207:0crwdne38207:0","Sunday":"crwdns39882:0crwdne39882:0","Monday":"crwdns39203:0crwdne39203:0","Tuesday":"crwdns40298:0crwdne40298:0","Wednesday":"crwdns40476:0crwdne40476:0","Thursday":"crwdns40179:0crwdne40179:0","Friday":"crwdns38511:0crwdne38511:0","Saturday":"crwdns39707:0crwdne39707:0","Su":"crwdns39869:0crwdne39869:0","Mo":"crwdns39202:0crwdne39202:0","Tu":"crwdns40297:0crwdne40297:0","We":"crwdns40403:0crwdne40403:0","Th":"crwdns39916:0crwdne39916:0","Fr":"crwdns38500:0crwdne38500:0","Sa":"crwdns39702:0crwdne39702:0","Previous":"crwdns39538:0crwdne39538:0","Hour":"crwdns38594:0crwdne38594:0","Minute":"crwdns39200:0crwdne39200:0","AM":"crwdns37635:0crwdne37635:0","PM":"crwdns39413:0crwdne39413:0","Verification_required":"crwdns121680:0crwdne121680:0","Verify_identity":"crwdns121682:0crwdne121682:0","From_account:_":"crwdns53120:0crwdne53120:0","To_account:_":"crwdns53124:0crwdne53124:0","Not_announced_for_this_currency_":"crwdns53122:0crwdne53122:0","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"crwdns163922:0[_1]crwdne163922:0","[_1]Manage_your_accounts[_2]":"crwdns53230:0[_1]crwdnd53230:0[_2]crwdne53230:0","time":"crwdns163594:0crwdne163594:0","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"crwdns170564:0crwdne170564:0","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"crwdns170562:0crwdne170562:0","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"crwdns53264:0crwdne53264:0","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"crwdns53276:0[_1]crwdne53276:0","Your_fiat_account's_currency_is_set_to_[_1]_":"crwdns53278:0[_1]crwdne53278:0","This_is_your_[_1]_account_":"crwdns53252:0[_1]crwdne53252:0","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"crwdns163504:0[_1]scrwdnd163504:0[_2]crwdnd163504:0[_3]crwdne163504:0","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"crwdns53246:0[_1]crwdne53246:0","Switch_account":"crwdns167767:0crwdne167767:0","Switch_account?":"crwdns167769:0crwdne167769:0","To_deposit_money,_please_switch_to_your_[_1]_account_":"crwdns167775:0[_1]crwdne167775:0","To_withdraw_money,_please_switch_to_your_[_1]_account_":"crwdns167779:0[_1]crwdne167779:0","Switch_to_crypto_account?":"crwdns167771:0crwdne167771:0","To_deposit_cryptocurrency,_switch_your_account_":"crwdns167773:0crwdne167773:0","To_withdraw_cryptocurrency,_switch_your_account_":"crwdns167777:0crwdne167777:0","Withdraw":"crwdns40561:0crwdne40561:0","Deposit":"crwdns38220:0crwdne38220:0","Town/City":"crwdns40232:0crwdne40232:0","First_line_of_home_address":"crwdns38463:0crwdne38463:0","Postal_Code/ZIP":"crwdns53224:0crwdne53224:0","State/Province":"crwdns39832:0crwdne39832:0","Email_address":"crwdns38333:0crwdne38333:0","Telephone":"crwdns39901:0crwdne39901:0","Country_of_Residence":"crwdns38161:0crwdne38161:0","details":"crwdns40791:0crwdne40791:0","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"crwdns167861:0crwdne167861:0","Your_cashier_is_locked_":"crwdns43161:0crwdne43161:0","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"crwdns90024:0crwdne90024:0","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"crwdns161632:0crwdne161632:0","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"crwdns44645:0crwdne44645:0","Select_payment_agent":"crwdns53720:0crwdne53720:0","Amount_in":"crwdns53706:0crwdne53706:0","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"crwdns85271:0crwdne85271:0","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"crwdns40754:0[_1]crwdnd40754:0[_2]crwdnd40754:0[_3]crwdnd40754:0[_4]crwdne40754:0","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"crwdns40757:0[_1]hecrwdnd40757:0[_2]crwdne40757:0","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"crwdns90078:0crwdne90078:0","Please_[_1]deposit[_2]_to_your_account_":"crwdns39462:0[_1]dcrwdnd39462:0[_2]crwdne39462:0","Sorry,_account_signup_is_not_available_in_your_country_":"crwdns39805:0crwdne39805:0","Asset":"crwdns37818:0crwdne37818:0","Opens":"crwdns39349:0crwdne39349:0","Closes":"crwdns38070:0crwdne38070:0","Settles":"crwdns39768:0crwdne39768:0","Upcoming_Events":"crwdns40336:0crwdne40336:0","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"crwdns45174:0crwdne45174:0","Digit":"crwdns38247:0crwdne38247:0","Percentage":"crwdns39438:0crwdne39438:0","Waiting_for_entry_tick_":"crwdns40393:0crwdne40393:0","High_Barrier":"crwdns38580:0crwdne38580:0","Low_Barrier":"crwdns39104:0crwdne39104:0","Waiting_for_exit_tick_":"crwdns40394:0crwdne40394:0","Ticks_history_returned_an_empty_array_":"crwdns46278:0crwdne46278:0","Chart_is_not_available_for_this_underlying_":"crwdns46267:0crwdne46267:0","Purchase":"crwdns39584:0crwdne39584:0","Net_profit":"crwdns39243:0crwdne39243:0","Return":"crwdns39675:0crwdne39675:0","Time_is_in_the_wrong_format_":"crwdns40184:0crwdne40184:0","Rise/Fall":"crwdns39685:0crwdne39685:0","Higher/Lower":"crwdns38587:0crwdne38587:0","Matches/Differs":"crwdns39158:0crwdne39158:0","Even/Odd":"crwdns38375:0crwdne38375:0","Over/Under":"crwdns39404:0crwdne39404:0","High-Close":"crwdns43510:0crwdne43510:0","Close-Low":"crwdns43506:0crwdne43506:0","High-Low":"crwdns43511:0crwdne43511:0","Reset_Call":"crwdns45908:0crwdne45908:0","Reset_Put":"crwdns45909:0crwdne45909:0","Up/Down":"crwdns40335:0crwdne40335:0","Only_Ups/Only_Downs":"crwdns53030:0crwdne53030:0","In/Out":"crwdns38770:0crwdne38770:0","Select_Trade_Type":"crwdns50934:0crwdne50934:0","Tick":"crwdns40180:0crwdne40180:0","Spot":"crwdns39822:0crwdne39822:0","Spot_Time_(GMT)":"crwdns43551:0crwdne43551:0","seconds":"crwdns40817:0crwdne40817:0","minutes":"crwdns40808:0crwdne40808:0","hours":"crwdns40798:0crwdne40798:0","days":"crwdns40790:0crwdne40790:0","ticks":"crwdns40831:0crwdne40831:0","tick":"crwdns40830:0crwdne40830:0","second":"crwdns40816:0crwdne40816:0","minute":"crwdns40807:0crwdne40807:0","hour":"crwdns40797:0crwdne40797:0","day":"crwdns40789:0crwdne40789:0","Duration":"crwdns38285:0crwdne38285:0","End_Time":"crwdns38340:0crwdne38340:0","Purchase_request_sent":"crwdns44917:0crwdne44917:0","High":"crwdns43508:0crwdne43508:0","Close":"crwdns43505:0crwdne43505:0","Low":"crwdns43513:0crwdne43513:0","Select_Asset":"crwdns44592:0crwdne44592:0","Search___":"crwdns44646:0crwdne44646:0","Maximum_multiplier_of_1000_":"crwdns46431:0crwdne46431:0","Stake":"crwdns39825:0crwdne39825:0","Payout":"crwdns39434:0crwdne39434:0","Multiplier":"crwdns43514:0crwdne43514:0","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"crwdns164112:0crwdne164112:0","Trading_is_unavailable_at_this_time_":"crwdns46326:0crwdne46326:0","Please_reload_the_page":"crwdns46273:0crwdne46273:0","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"crwdns921150:0[_1]tecrwdnd921150:0[_2]crwdne921150:0","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"crwdns45898:0crwdne45898:0","Your_professional_client_request_is_[_1]not_approved[_2]_":"crwdns52962:0[_1]ncrwdnd52962:0[_2]crwdne52962:0","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"crwdns52958:0crwdne52958:0","More_information_can_be_found_in_an_email_sent_to_you_":"crwdns52956:0crwdne52956:0","I_want_to_reapply":"crwdns52954:0crwdne52954:0","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"crwdns46388:0crwdne46388:0","Apply_now_as_a_professional_investor":"crwdns52952:0crwdne52952:0","Try_our_[_1]Synthetic_Indices[_2]_":"crwdns70400:0[_1]Scrwdnd70400:0[_2]crwdne70400:0","Try_our_other_markets_":"crwdns40295:0crwdne40295:0","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"crwdns53752:0[_1]crwdnd53752:0[_2]crwdnd53752:0[_3]crwdnd53752:0[_4]crwdne53752:0","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"crwdns68138:0crwdne68138:0","Contract_Confirmation":"crwdns38121:0crwdne38121:0","Your_transaction_reference_is":"crwdns40760:0crwdne40760:0","Total_Cost":"crwdns40220:0crwdne40220:0","Potential_Payout":"crwdns39521:0crwdne39521:0","Potential_Profit":"crwdns39522:0crwdne39522:0","View":"crwdns40363:0crwdne40363:0","This_contract_won":"crwdns40156:0crwdne40156:0","This_contract_lost":"crwdns40155:0crwdne40155:0","The_reset_time_is_[_1]":"crwdns45916:0[_1]crwdne45916:0","Now":"crwdns39291:0crwdne39291:0","Average":"crwdns45845:0crwdne45845:0","Buy_price":"crwdns37957:0crwdne37957:0","Final_price":"crwdns38453:0crwdne38453:0","Loss":"crwdns39101:0crwdne39101:0","Profit":"crwdns39567:0crwdne39567:0","Account_balance:":"crwdns37675:0crwdne37675:0","Reverse_Side":"crwdns41764:0crwdne41764:0","Front_Side":"crwdns41748:0crwdne41748:0","Pending":"crwdns45992:0crwdne45992:0","Submitting":"crwdns45995:0crwdne45995:0","Submitted":"crwdns45994:0crwdne45994:0","Failed":"crwdns38437:0crwdne38437:0","Compressing_Image":"crwdns51278:0crwdne51278:0","Checking":"crwdns45986:0crwdne45986:0","Checked":"crwdns45985:0crwdne45985:0","Unable_to_read_file_[_1]":"crwdns50938:0[_1]crwdne50938:0","Passport":"crwdns41761:0crwdne41761:0","Identity_card":"crwdns41752:0crwdne41752:0","Driving_licence":"crwdns41743:0crwdne41743:0","Invalid_document_format_":"crwdns46331:0crwdne46331:0","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"crwdns45969:0[_1]crwdnd45969:0[_2]crwdne45969:0","ID_number_is_required_for_[_1]_":"crwdns41751:0[_1]crwdne41751:0","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"crwdns46271:0[_1]crwdne46271:0","Expiry_date_is_required_for_[_1]_":"crwdns41745:0[_1]crwdne41745:0","Place_of_birth":"crwdns39454:0crwdne39454:0","Please_select_the_country_of_document_issuance":"crwdns167387:0crwdne167387:0","Choose_the_document_type":"crwdns167369:0crwdne167369:0","Please_enter_the_correct_format__Example:":"crwdns167385:0crwdne167385:0","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"crwdns162146:0crwdne162146:0","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"crwdns162144:0crwdne162144:0","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"crwdns162142:0crwdne162142:0","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"crwdns165325:0crwdne165325:0","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"crwdns165327:0crwdne165327:0","We’ve_sent_you_an_email":"crwdns162226:0crwdne162226:0","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"crwdns165345:0[_1]crwdnd165345:0[_2]crwdnd165345:0[_3]crwdne165345:0","Linked_with_[_1]":"crwdns162170:0[_1]crwdne162170:0","You_will_need_to_set_a_password_to_complete_the_process_":"crwdns162234:0crwdne162234:0","Are_you_sure_you_want_to_unlink_from_[_1]?":"crwdns162130:0[_1]crwdne162130:0","Unlink":"crwdns162216:0crwdne162216:0","Country_not_found":"crwdns158320:0crwdne158320:0","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"crwdns158330:0crwdne158330:0","Submit_document":"crwdns158522:0crwdne158522:0","Select_country":"crwdns158498:0crwdne158498:0","e_g__United_States":"crwdns158638:0crwdne158638:0","Search_for_country":"crwdns158494:0crwdne158494:0","Select_issuing_country":"crwdns158500:0crwdne158500:0","Submit_verification":"crwdns158538:0crwdne158538:0","Tips":"crwdns42425:0crwdne42425:0","Documents_uploaded":"crwdns158332:0crwdne158332:0","Document_uploaded":"crwdns158328:0crwdne158328:0","Selfie_uploaded":"crwdns158504:0crwdne158504:0","We're_now_ready_to_verify_your_identity":"crwdns158616:0crwdne158616:0","Great,_that's_everything_we_need":"crwdns158378:0crwdne158378:0","The_link_only_works_on_mobile_devices":"crwdns158564:0crwdne158564:0","Something's_gone_wrong":"crwdns158516:0crwdne158516:0","You'll_need_to_restart_your_verification_on_your_computer":"crwdns158624:0crwdne158624:0","Get_secure_link":"crwdns158370:0crwdne158370:0","Steps_required_to_continue_verification_on_your_mobile":"crwdns158520:0crwdne158520:0","Check_back_here_to_finish_the_submission":"crwdns158282:0crwdne158282:0","Open_the_link_and_complete_the_tasks":"crwdns158446:0crwdne158446:0","Send_a_secure_link_to_your_phone":"crwdns158506:0crwdne158506:0","Here's_how_to_do_it:":"crwdns158380:0crwdne158380:0","Continue_on_your_phone":"crwdns158306:0crwdne158306:0","Your_computer_may_take_a_few_seconds_to_update":"crwdns158626:0crwdne158626:0","You_can_now_return_to_your_computer_to_continue":"crwdns158622:0crwdne158622:0","Uploads_successful":"crwdns158604:0crwdne158604:0","Make_sure_everything_is_clear":"crwdns158410:0crwdne158410:0","Blurry_photo_detected":"crwdns158272:0crwdne158272:0","Make_sure_full_document_is_visible":"crwdns158412:0crwdne158412:0","Cut-off_image_detected":"crwdns158322:0crwdne158322:0","Move_away_from_direct_light":"crwdns158430:0crwdne158430:0","Glare_detected":"crwdns158374:0crwdne158374:0","Make_sure_all_of_the_document_is_in_the_photo":"crwdns158406:0crwdne158406:0","No_document_detected":"crwdns158438:0crwdne158438:0","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158414:0crwdne158414:0","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"crwdns158394:0crwdne158394:0","To_smoothly_verify_you,_we_need_a_better_photo":"crwdns158574:0crwdne158574:0","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158420:0crwdne158420:0","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158422:0crwdne158422:0","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158424:0crwdne158424:0","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"crwdns158408:0crwdne158408:0","Redo":"crwdns158468:0crwdne158468:0","Confirm":"crwdns38104:0crwdne38104:0","Upload_anyway":"crwdns158588:0crwdne158588:0","Enlarge_image":"crwdns158342:0crwdne158342:0","Photo_of_your_document":"crwdns158454:0crwdne158454:0","Check_your_image":"crwdns158290:0crwdne158290:0","Front_and_back":"crwdns158366:0crwdne158366:0","Driver's_license":"crwdns158338:0crwdne158338:0","Face_photo_page":"crwdns158356:0crwdne158356:0","Residence_permit":"crwdns158480:0crwdne158480:0","Sorry,_no_mobile_phone_bills":"crwdns158518:0crwdne158518:0","Documents_you_can_use_to_verify_your_identity":"crwdns158334:0crwdne158334:0","It_must_be_an_official_photo_ID":"crwdns158390:0crwdne158390:0","These_are_the_documents_most_likely_to_show_your_current_home_address":"crwdns158568:0crwdne158568:0","Choose_document":"crwdns158294:0crwdne158294:0","Select_a_%{country}_document":"crwdns158496:0%{country}crwdne158496:0","or_upload_photo_–_no_scans_or_photocopies":"crwdns158640:0crwdne158640:0","Continue_on_phone":"crwdns158304:0crwdne158304:0","Take_a_photo_with_your_phone":"crwdns158554:0crwdne158554:0","Submit_identity_card_(back)":"crwdns158524:0crwdne158524:0","Submit_identity_card_(front)":"crwdns158526:0crwdne158526:0","Submit_license_(back)":"crwdns158528:0crwdne158528:0","Submit_license_(front)":"crwdns158530:0crwdne158530:0","Submit_passport_photo_page":"crwdns158532:0crwdne158532:0","Submit_residence_permit_(back)":"crwdns158534:0crwdne158534:0","Submit_residence_permit_(front)":"crwdns158536:0crwdne158536:0","Restart_the_process_on_the_latest_version_of_Google_Chrome":"crwdns158484:0crwdne158484:0","Restart_the_process_on_the_latest_version_of_Safari":"crwdns158486:0crwdne158486:0","Unsupported_browser":"crwdns158582:0crwdne158582:0","Close_identity_verification_screen":"crwdns158296:0crwdne158296:0","Dismiss_alert":"crwdns158324:0crwdne158324:0","back":"crwdns158634:0crwdne158634:0","close":"crwdns158636:0crwdne158636:0","Restart_process_on_a_different_device":"crwdns158482:0crwdne158482:0","Camera_not_detected":"crwdns158276:0crwdne158276:0","Must_be_under_10MB_":"crwdns158436:0crwdne158436:0","File_size_exceeded_":"crwdns158360:0crwdne158360:0","Try_using_another_file_type_":"crwdns158580:0crwdne158580:0","File_not_uploaded_":"crwdns158358:0crwdne158358:0","An_error_occurred_while_loading_the_component":"crwdns158270:0crwdne158270:0","Only_your_face_can_be_in_the_selfie":"crwdns158444:0crwdne158444:0","Multiple_faces_found":"crwdns158434:0crwdne158434:0","Your_face_is_needed_in_the_selfie":"crwdns158628:0crwdne158628:0","No_face_found":"crwdns158440:0crwdne158440:0","Please_try_again":"crwdns158458:0crwdne158458:0","Connection_lost":"crwdns158300:0crwdne158300:0","Copy_the_link_to_your_phone":"crwdns158318:0crwdne158318:0","Too_many_failed_attempts":"crwdns158576:0crwdne158576:0","Try_using_a_JPG_or_PNG_file":"crwdns158578:0crwdne158578:0","File_type_not_supported":"crwdns158362:0crwdne158362:0","Loading___":"crwdns158402:0crwdne158402:0","Loading":"crwdns158400:0crwdne158400:0","Check_that_your_number_is_correct":"crwdns158288:0crwdne158288:0","Copied":"crwdns158310:0crwdne158310:0","Copy":"crwdns158312:0crwdne158312:0","Send_link":"crwdns158508:0crwdne158508:0","How_to_scan_a_QR_code":"crwdns158382:0crwdne158382:0","Point_your_phone’s_camera_at_the_QR_code":"crwdns158460:0crwdne158460:0","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"crwdns158384:0crwdne158384:0","or":"crwdns43480:0crwdne43480:0","Scan_QR_code":"crwdns158488:0crwdne158488:0","Get_link_via_SMS":"crwdns158368:0crwdne158368:0","Copy_link":"crwdns158314:0crwdne158314:0","Sending":"crwdns158512:0crwdne158512:0","Enter_mobile_number":"crwdns158344:0crwdne158344:0","Enter_your_mobile_number:":"crwdns158346:0crwdne158346:0","Scan_the_QR_code_with_your_phone":"crwdns158490:0crwdne158490:0","Send_this_one-time_link_to_your_phone":"crwdns158510:0crwdne158510:0","Open_the_link_on_your_mobile":"crwdns158448:0crwdne158448:0","Get_your_secure_link":"crwdns158372:0crwdne158372:0","Copy_the_link_to_your_mobile_browser":"crwdns158316:0crwdne158316:0","Continue":"crwdns158302:0crwdne158302:0","Make_sure§":"crwdns158428:0crwdne158428:0","2__Your_desktop_window_stays_open":"crwdns158264:0crwdne158264:0","1__This_link_was_sent_by_you":"crwdns158262:0crwdne158262:0","Continue_with_the_verification":"crwdns158308:0crwdne158308:0","Linked_to_your_computer":"crwdns158398:0crwdne158398:0","Take_a_photo_of_the_back_of_your_card":"crwdns158542:0crwdne158542:0","Take_a_photo_of_the_front_of_your_card":"crwdns158546:0crwdne158546:0","Take_a_photo_of_the_back_of_your_license":"crwdns158544:0crwdne158544:0","Take_a_photo_of_the_front_of_your_license":"crwdns158548:0crwdne158548:0","Take_a_photo_of_your_passport_photo_page":"crwdns158550:0crwdne158550:0","Take_a_selfie_showing_your_face":"crwdns158558:0crwdne158558:0","Take_a_photo_using_the_basic_camera_mode_instead":"crwdns158552:0crwdne158552:0","Take_a_photo":"crwdns158540:0crwdne158540:0","Passport_photo_page":"crwdns158452:0crwdne158452:0","Thank_you":"crwdns158562:0crwdne158562:0","Verification_complete":"crwdns158606:0crwdne158606:0","Refresh":"crwdns158470:0crwdne158470:0","Recovery":"crwdns158466:0crwdne158466:0","Follow_these_steps_to_recover_camera_access:":"crwdns158364:0crwdne158364:0","Refresh_this_page_to_restart_the_identity_verification_process":"crwdns158472:0crwdne158472:0","Grant_access_to_your_camera_from_your_browser_settings":"crwdns158376:0crwdne158376:0","Recover_camera_access_to_continue_face_verification":"crwdns158464:0crwdne158464:0","Camera_access_is_denied":"crwdns158274:0crwdne158274:0","We_cannot_verify_you_without_using_your_camera":"crwdns158612:0crwdne158612:0","Enable_camera":"crwdns158340:0crwdne158340:0","When_prompted,_you_must_enable_camera_access_to_continue":"crwdns158620:0crwdne158620:0","Allow_camera_access":"crwdns158268:0crwdne158268:0","Provide_the_whole_document_page_for_best_results":"crwdns158462:0crwdne158462:0","Upload_back_of_card_from_your_computer":"crwdns158590:0crwdne158590:0","Upload_front_of_card_from_your_computer":"crwdns158594:0crwdne158594:0","Upload_back_of_license_from_your_computer":"crwdns158592:0crwdne158592:0","Upload_front_of_license_from_your_computer":"crwdns158596:0crwdne158596:0","Upload_passport_photo_page_from_your_computer":"crwdns158600:0crwdne158600:0","Upload_a_selfie_from_your_computer":"crwdns158586:0crwdne158586:0","Take_photo":"crwdns158560:0crwdne158560:0","Upload":"crwdns158584:0crwdne158584:0","Selfie":"crwdns158502:0crwdne158502:0","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"crwdns158286:0crwdne158286:0","Make_sure_your_device_has_a_working_camera":"crwdns158416:0crwdne158416:0","Camera_not_working?":"crwdns158280:0crwdne158280:0","It_may_be_disconnected__Try_using_your_phone_instead_":"crwdns158386:0crwdne158386:0","Make_sure_your_device's_camera_works":"crwdns158418:0crwdne158418:0","Camera_not_working":"crwdns158278:0crwdne158278:0","Remember_to_press_stop_when_you're_done__Redo_video_actions":"crwdns158474:0crwdne158474:0","Looks_like_you_took_too_long":"crwdns158404:0crwdne158404:0","View_from_camera":"crwdns158610:0crwdne158610:0","Take_a_selfie":"crwdns158556:0crwdne158556:0","Photo_of_your_face":"crwdns158456:0crwdne158456:0","Make_sure_your_selfie_clearly_shows_your_face":"crwdns158426:0crwdne158426:0","Check_selfie":"crwdns158284:0crwdne158284:0","Tips_to_take_a_good_selfie":"crwdns158570:0crwdne158570:0","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"crwdns158354:0crwdne158354:0","Remove_your_glasses,_if_necessary":"crwdns158476:0crwdne158476:0","We'll_compare_it_with_your_document":"crwdns158614:0crwdne158614:0","Your_link_will_expire_in_one_hour":"crwdns158630:0crwdne158630:0","Keep_this_window_open_while_using_your_mobile":"crwdns158396:0crwdne158396:0","Resend_link":"crwdns158478:0crwdne158478:0","We've_sent_a_secure_link_to_%{number}":"crwdns158618:0%{number}crwdne158618:0","It_may_take_a_few_minutes_to_arrive":"crwdns158388:0crwdne158388:0","Check_your_mobile":"crwdns158292:0crwdne158292:0","Your_mobile_link_will_expire_in_one_hour":"crwdns158632:0crwdne158632:0","Don't_refresh_this_page":"crwdns158336:0crwdne158336:0","Once_you've_finished_we'll_take_you_to_the_next_step":"crwdns158442:0crwdne158442:0","Connected_to_your_mobile":"crwdns158298:0crwdne158298:0","Upload_photo":"crwdns158602:0crwdne158602:0","Example_of_a_blurry_document":"crwdns158348:0crwdne158348:0","All_details_must_be_clear_—_nothing_blurry":"crwdns158266:0crwdne158266:0","Example_of_a_cut-off_document":"crwdns158350:0crwdne158350:0","Show_all_details_—_including_the_bottom_2_lines":"crwdns158514:0crwdne158514:0","Example_of_a_document_with_glare":"crwdns158352:0crwdne158352:0","Move_away_from_direct_light_—_no_glare":"crwdns158432:0crwdne158432:0","Document_example":"crwdns158326:0crwdne158326:0","The_photo_should_clearly_show_your_document":"crwdns158566:0crwdne158566:0","Scans_and_photocopies_are_not_accepted":"crwdns158492:0crwdne158492:0","Upload_passport_photo_page":"crwdns158598:0crwdne158598:0","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"crwdns158572:0crwdne158572:0","It_will_only_take_a_couple_of_minutes_":"crwdns158392:0crwdne158392:0","Verify_Identity":"crwdns158608:0crwdne158608:0","Open_your_new_bank_account":"crwdns158450:0crwdne158450:0","Please_enter_a_valid_Login_ID_":"crwdns50918:0crwdne50918:0","Amount":"crwdns37744:0crwdne37744:0","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"crwdns40753:0[_1]crwdnd40753:0[_2]crwdnd40753:0[_3]crwdnd40753:0[_4]crwdne40753:0","Resale_not_offered":"crwdns39659:0crwdne39659:0","You've_made_no_transactions_of_this_type_up_to_this_date_":"crwdns159254:0crwdne159254:0","Date":"crwdns38201:0crwdne38201:0","Ref_":"crwdns160156:0crwdne160156:0","Contract":"crwdns160154:0crwdne160154:0","Purchase_Price":"crwdns39585:0crwdne39585:0","Sale_Date":"crwdns160158:0crwdne160158:0","Sale_Price":"crwdns160160:0crwdne160160:0","Profit/Loss":"crwdns39570:0crwdne39570:0","Details":"crwdns38237:0crwdne38237:0","Total_Profit/Loss":"crwdns40223:0crwdne40223:0","Action_required!":"crwdns171242:0crwdne171242:0","Sorry,_an_error_occurred_while_processing_your_request_":"crwdns39807:0crwdne39807:0","position(s)":"crwdns164354:0crwdne164354:0","withdrawal(s)":"crwdns164356:0crwdne164356:0","We_couldn’t_read_that!":"crwdns171248:0crwdne171248:0","Remaining_characters:_[_1]_":"crwdns162556:0[_1]crwdne162556:0","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"crwdns162550:0[_1]crwdne162550:0","Only_[_1]_are_allowed_":"crwdns39323:0[_1]crwdne39323:0","letters":"crwdns40803:0crwdne40803:0","numbers":"crwdns40814:0crwdne40814:0","space":"crwdns40818:0crwdne40818:0","Please_select_at_least_one_scope":"crwdns39500:0crwdne39500:0","New_token_created_":"crwdns39253:0crwdne39253:0","The_maximum_number_of_tokens_([_1])_has_been_reached_":"crwdns40074:0[_1]crwdne40074:0","Name":"crwdns39232:0crwdne39232:0","Token":"crwdns40212:0crwdne40212:0","Scopes":"crwdns39711:0crwdne39711:0","Last_Used":"crwdns39035:0crwdne39035:0","Action":"crwdns37689:0crwdne37689:0","Are_you_sure_that_you_want_to_permanently_delete_the_token":"crwdns43581:0crwdne43581:0","Delete":"crwdns38214:0crwdne38214:0","Never_Used":"crwdns39247:0crwdne39247:0","You_have_not_granted_access_to_any_applications_":"crwdns40642:0crwdne40642:0","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"crwdns43582:0crwdne43582:0","Revoke_access":"crwdns39682:0crwdne39682:0","Admin":"crwdns37698:0crwdne37698:0","Payments":"crwdns39433:0crwdne39433:0","Read":"crwdns39603:0crwdne39603:0","Trade":"crwdns40233:0crwdne40233:0","Trading_Information":"crwdns121124:0crwdne121124:0","Never":"crwdns39246:0crwdne39246:0","Permissions":"crwdns39441:0crwdne39441:0","Last_Login":"crwdns50576:0crwdne50576:0","You_did_not_change_anything_":"crwdns40631:0crwdne40631:0","Your_changes_have_been_updated_successfully_":"crwdns40740:0crwdne40740:0","Successful":"crwdns39877:0crwdne39877:0","Date_and_Time":"crwdns38202:0crwdne38202:0","Browser":"crwdns37950:0crwdne37950:0","IP_Address":"crwdns38645:0crwdne38645:0","Status":"crwdns39836:0crwdne39836:0","Your_account_has_no_Login/Logout_activity_":"crwdns40729:0crwdne40729:0","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"crwdns40731:0crwdne40731:0","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"crwdns90246:0[_1]crwdnd90246:0[_2]crwdnd90246:0[_3]crwdne90246:0","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"crwdns90242:0[_1]crwdnd90242:0[_2]crwdnd90242:0[_3]crwdne90242:0","Your_withdrawal_limit_is_[_1][_2]_":"crwdns90248:0[_1]crwdnd90248:0[_2]crwdne90248:0","You_have_already_withdrawn_[_1][_2]_":"crwdns90244:0[_1]crwdnd90244:0[_2]crwdne90244:0","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"crwdns90238:0[_1]crwdnd90238:0[_2]crwdne90238:0","Please_confirm_that_all_the_information_above_is_true_and_complete_":"crwdns43562:0crwdne43562:0","Your_settings_have_been_updated_successfully_":"crwdns40756:0crwdne40756:0","Sorry,_an_error_occurred_while_processing_your_account_":"crwdns39806:0crwdne39806:0","Please_select_a_country":"crwdns41906:0crwdne41906:0","Timed_out_until":"crwdns44621:0crwdne44621:0","Excluded_from_the_website_until":"crwdns44618:0crwdne44618:0","Session_duration_limit_cannot_be_more_than_6_weeks_":"crwdns39758:0crwdne39758:0","Time_out_must_be_after_today_":"crwdns40187:0crwdne40187:0","Time_out_cannot_be_more_than_6_weeks_":"crwdns40186:0crwdne40186:0","Time_out_cannot_be_in_the_past_":"crwdns40185:0crwdne40185:0","Please_select_a_valid_time_":"crwdns39498:0crwdne39498:0","Exclude_time_cannot_be_less_than_6_months_":"crwdns38394:0crwdne38394:0","Exclude_time_cannot_be_for_more_than_5_years_":"crwdns38393:0crwdne38393:0","Confirm_changes":"crwdns156200:0crwdne156200:0","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"crwdns156216:0[_1]crwdnd156216:0[_2]crwdne156216:0","Agree_and_accept":"crwdns156198:0crwdne156198:0","Go_back":"crwdns156204:0crwdne156204:0","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"crwdns40505:0crwdne40505:0","Your_changes_have_been_updated_":"crwdns40741:0crwdne40741:0","Disable":"crwdns45847:0crwdne45847:0","Enable":"crwdns45848:0crwdne45848:0","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"crwdns45884:0crwdne45884:0","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"crwdns45883:0crwdne45883:0","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"crwdns85193:0[_1]crwdne85193:0","No_authentication_required":"crwdns85191:0crwdne85191:0","Back_to_trading":"crwdns85189:0crwdne85189:0","You_are_categorised_as_a_professional_client_":"crwdns45896:0crwdne45896:0","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"crwdns45897:0crwdne45897:0","Bid":"crwdns37887:0crwdne37887:0","Closed_Bid":"crwdns38069:0crwdne38069:0","Reference_ID":"crwdns50928:0crwdne50928:0","Description":"crwdns38233:0crwdne38233:0","Credit/Debit":"crwdns38175:0crwdne38175:0","Balance":"crwdns37857:0crwdne37857:0","Top_up_error":"crwdns52716:0crwdne52716:0","Understood":"crwdns52720:0crwdne52720:0","Top-up_successful":"crwdns52718:0crwdne52718:0","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"crwdns163878:0[_1]crwdnd163878:0[_2]crwdne163878:0","Go_to_statement":"crwdns52708:0crwdne52708:0","Continue_trading":"crwdns52518:0crwdne52518:0","Your_Demo_balance_has_been_reset_":"crwdns163950:0crwdne163950:0","Account":"crwdns37665:0crwdne37665:0","Available_Markets":"crwdns37842:0crwdne37842:0","Type":"crwdns40302:0crwdne40302:0","Currency":"crwdns38181:0crwdne38181:0","Multipliers_Account":"crwdns167559:0crwdne167559:0","Gaming_Account":"crwdns166275:0crwdne166275:0","Options_Account":"crwdns167563:0crwdne167563:0","Real_Account":"crwdns39613:0crwdne39613:0","Counterparty":"crwdns38160:0crwdne38160:0","Jurisdiction":"crwdns50536:0crwdne50536:0","Create_account":"crwdns52520:0crwdne52520:0","Change_currency":"crwdns117106:0crwdne117106:0","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"crwdns170560:0crwdne170560:0","This_account_is_disabled":"crwdns41965:0crwdne41965:0","This_account_is_excluded_until_[_1]":"crwdns41966:0[_1]crwdne41966:0","Set_currency":"crwdns117110:0crwdne117110:0","Commodities":"crwdns38083:0crwdne38083:0","Forex":"crwdns38491:0crwdne38491:0","Stock_Indices":"crwdns90080:0crwdne90080:0","Stocks":"crwdns39848:0crwdne39848:0","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"crwdns163496:0crwdne163496:0","Sign_up":"crwdns43900:0crwdne43900:0","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"crwdns90132:0crwdne90132:0","Do_you_wish_to_continue?":"crwdns44474:0crwdne44474:0","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"crwdns90194:0{SPAIN ONLY}crwdne90194:0","{SPAIN_ONLY}This_is_a_product_with_leverage__You_should_be_aware_that_losses_may_be_higher_than_the_amount_initially_paid_to_purchase_the_product_":"crwdns46311:0{SPAIN ONLY}crwdne46311:0","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"crwdns46310:0{SPAIN ONLY}crwdne46310:0","Acknowledge":"crwdns50898:0crwdne50898:0","Change_Password":"crwdns37992:0crwdne37992:0","The_investor_password_of_account_number_[_1]_has_been_changed_":"crwdns162202:0[_1]crwdne162202:0","Reset_Password":"crwdns39661:0crwdne39661:0","Verify_Reset_Password":"crwdns44586:0crwdne44586:0","Please_check_your_email_for_further_instructions_":"crwdns44581:0crwdne44581:0","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"crwdns37456:0[_1]crwdnd37456:0[_2]crwdnd37456:0[_3]crwdnd37456:0[_4]crwdne37456:0","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"crwdns37529:0[_1]crwdnd37529:0[_2]crwdnd37529:0[_3]crwdnd37529:0[_4]crwdne37529:0","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"crwdns167669:0[_1]crwdnd167669:0[_2]crwdnd167669:0[_3]crwdne167669:0","Current_password":"crwdns38186:0crwdne38186:0","New_password":"crwdns39251:0crwdne39251:0","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"crwdns168597:0[_1]crwdne168597:0","You_have_insufficient_funds_in_your_MT5_account_":"crwdns156224:0crwdne156224:0","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"crwdns39809:0crwdne39809:0","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"crwdns158976:0[_1]crwdne158976:0","Unavailable":"crwdns158980:0crwdne158980:0","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"crwdns52992:0[_1]crwdnd52992:0[_2]crwdne52992:0","_(Region_added)":"crwdns160148:0crwdne160148:0","_(Temporarily_unavailable)":"crwdns160150:0crwdne160150:0","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"crwdns165677:0crwdne165677:0","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"crwdns167671:0[_1]crwdne167671:0","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"crwdns167667:0[_1]crwdne167667:0","Demo_Accounts":"crwdns43429:0crwdne43429:0","Real-Money_Accounts":"crwdns43438:0crwdne43438:0","Demo_Account":"crwdns45919:0crwdne45919:0","Real-Money_Account":"crwdns45921:0crwdne45921:0","for_account_[_1]":"crwdns44587:0[_1]crwdne44587:0","[_1]_Account_[_2]":"crwdns43489:0[_1]crwdnd43489:0[_2]crwdne43489:0","MT5_Financial":"crwdns42246:0crwdne42246:0","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"crwdns167649:0[_1]crwdnd167649:0[_2]crwdne167649:0","demo":"crwdns165347:0crwdne165347:0","real":"crwdns165349:0crwdne165349:0","MT5_Synthetic":"crwdns118006:0crwdne118006:0","Get_[_1]":"crwdns52998:0[_1]crwdne52998:0","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"crwdns53010:0[_1]crwdnd53010:0[_2]crwdne53010:0","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"crwdns53004:0[_1]crwdnd53004:0[_2]crwdne53004:0","Yes,_I'm_sure":"crwdns53256:0crwdne53256:0","Are_you_sure?":"crwdns52724:0crwdne52724:0","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"crwdns167651:0[_1]crwdne167651:0","OK":"crwdns39299:0crwdne39299:0","Go_to_Deriv_to_add_an_MT5_account":"crwdns838758:0crwdne838758:0","Back":"crwdns37855:0crwdne37855:0","Address":"crwdns37696:0crwdne37696:0","Account_currency":"crwdns41991:0crwdne41991:0","Financial_assessment":"crwdns53636:0crwdne53636:0","Personal_details":"crwdns53654:0crwdne53654:0","Terms_of_use":"crwdns165729:0crwdne165729:0","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"crwdns125058:0crwdne125058:0","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"crwdns125054:0crwdne125054:0","Title_and_name":"crwdns165733:0crwdne165733:0","Real_money_account_opening":"crwdns165719:0crwdne165719:0","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"crwdns40758:0[_1]crwdne40758:0","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"crwdns40043:0[_1]crwdne40043:0","Password_is_not_strong_enough_":"crwdns39420:0crwdne39420:0","Upgrade_now":"crwdns44598:0crwdne44598:0","[_1]_days_[_2]_hours_[_3]_minutes":"crwdns37455:0[_1]crwdnd37455:0[_2]crwdnd37455:0[_3]crwdne37455:0","Your_trading_statistics_since_[_1]_":"crwdns40759:0[_1]crwdne40759:0","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"crwdns167657:0[_1]crwdne167657:0","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"crwdns37443:0[_1]crwdne37443:0","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"crwdns165341:0crwdne165341:0","Success":"crwdns165329:0crwdne165329:0","Done":"crwdns162154:0crwdne162154:0","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"crwdns162236:0[_1]crwdnd162236:0[_2]crwdne162236:0","Success!":"crwdns162198:0crwdne162198:0","Got_it":"crwdns162164:0crwdne162164:0","Binary_Password_Reset":"crwdns162134:0crwdne162134:0","Binary_password":"crwdns162136:0crwdne162136:0","You_have_added_a_[_1]_account_":"crwdns165737:0[_1]crwdne165737:0","Add_account":"crwdns162126:0crwdne162126:0","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"crwdns921162:0crwdne921162:0","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"crwdns921160:0crwdne921160:0","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"crwdns921158:0crwdne921158:0","Add_new_crypto_account":"crwdns167743:0crwdne167743:0","Add_new_account":"crwdns167741:0crwdne167741:0","Create_a_cryptocurrency_account":"crwdns167755:0crwdne167755:0","Choose_your_preferred_cryptocurrency":"crwdns167753:0crwdne167753:0","You_can_open_an_account_for_each_cryptocurrency_":"crwdns167783:0crwdne167783:0","Choose_a_cryptocurrency_account":"crwdns167745:0crwdne167745:0","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"crwdns167751:0crwdne167751:0","Choose_an_account":"crwdns42065:0crwdne42065:0","Choose_one_of_your_accounts_or_add_a_new_account":"crwdns167749:0crwdne167749:0","Choose_one_of_your_accounts":"crwdns167747:0crwdne167747:0","Please_select_the_currency_for_this_account:":"crwdns53250:0crwdne53250:0","deposit":"crwdns163590:0crwdne163590:0","deposit_or_create_a_CFDs_account":"crwdns167595:0crwdne167595:0","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"crwdns53236:0[_1]crwdne53236:0","Note:":"crwdns44759:0crwdne44759:0","You_may_open_one_account_for_each_supported_cryptocurrency_":"crwdns53270:0crwdne53270:0","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"crwdns53234:0[_1]crwdne53234:0","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"crwdns163588:0[_1]crwdne163588:0","Yes":"crwdns52826:0crwdne52826:0","Create_[_1]_account":"crwdns53240:0[_1]crwdne53240:0","You_have_successfully_set_your_account_currency_to_[_1]_":"crwdns117114:0[_1]crwdne117114:0","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"crwdns53266:0[_1]crwdnd53266:0[_2]crwdne53266:0","Please_choose_a_currency":"crwdns39471:0crwdne39471:0","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"crwdns167673:0[_1]crwdne167673:0","Accumulator":"crwdns1600293:0crwdne1600293:0","Asian_Down":"crwdns43530:0crwdne43530:0","Asian_Up":"crwdns43531:0crwdne43531:0","Higher":"crwdns38586:0crwdne38586:0","Higher_or_equal":"crwdns43554:0crwdne43554:0","Call_Spread":"crwdns45846:0crwdne45846:0","Digit_Differs":"crwdns43542:0crwdne43542:0","Digit_Even":"crwdns43543:0crwdne43543:0","Digit_Matches":"crwdns43544:0crwdne43544:0","Digit_Odd":"crwdns43545:0crwdne43545:0","Digit_Over":"crwdns43546:0crwdne43546:0","Digit_Under":"crwdns43547:0crwdne43547:0","Ends_Outside":"crwdns38349:0crwdne38349:0","Ends_Between":"crwdns38344:0crwdne38344:0","Multiplier_Down":"crwdns85659:0crwdne85659:0","Multiplier_Up":"crwdns85661:0crwdne85661:0","Does_Not_Touch":"crwdns38273:0crwdne38273:0","Touches":"crwdns40229:0crwdne40229:0","Lower":"crwdns39110:0crwdne39110:0","Lower_or_equal":"crwdns45168:0crwdne45168:0","Put_Spread":"crwdns45866:0crwdne45866:0","Stays_Between":"crwdns39838:0crwdne39838:0","Only_Ups":"crwdns53028:0crwdne53028:0","Only_Downs":"crwdns53026:0crwdne53026:0","High_Tick":"crwdns46210:0crwdne46210:0","Low_Tick":"crwdns46211:0crwdne46211:0","Goes_Outside":"crwdns38563:0crwdne38563:0","Call":"crwdns1781135:0crwdne1781135:0","Put":"crwdns1781137:0crwdne1781137:0","Equals":"crwdns38366:0crwdne38366:0","Not":"crwdns39273:0crwdne39273:0","Buy":"crwdns37954:0crwdne37954:0","Sell":"crwdns39742:0crwdne39742:0","Waiting_for_contract_settlement_":"crwdns51356:0crwdne51356:0","including_Deal_Cancel__Fee":"crwdns86007:0crwdne86007:0","Contract_has_not_started_yet":"crwdns38132:0crwdne38132:0","This_contract_is_only_available_on_[_1]DTrader[_2]_":"crwdns121122:0[_1]crwdnd121122:0[_2]crwdne121122:0","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"crwdns86041:0[_1]crwdnd86041:0[_2]Gcrwdnd86041:0[_3]crwdne86041:0","Contract_Result":"crwdns45952:0crwdne45952:0","Close_Time":"crwdns46268:0crwdne46268:0","Exit_Spot_Time":"crwdns38403:0crwdne38403:0","Audit":"crwdns41436:0crwdne41436:0","View_chart":"crwdns52546:0crwdne52546:0","Audit_Page":"crwdns41437:0crwdne41437:0","Contract_Starts":"crwdns41448:0crwdne41448:0","Contract_Ends":"crwdns41447:0crwdne41447:0","Contract_Details":"crwdns38122:0crwdne38122:0","Target":"crwdns39890:0crwdne39890:0","Contract_Information":"crwdns38125:0crwdne38125:0","Contract_Type":"crwdns43541:0crwdne43541:0","Transaction_ID":"crwdns43552:0crwdne43552:0","Remaining_Time":"crwdns39653:0crwdne39653:0","Maximum_payout":"crwdns50906:0crwdne50906:0","Barrier_Change":"crwdns37867:0crwdne37867:0","Current":"crwdns38183:0crwdne38183:0","Spot_Time":"crwdns43621:0crwdne43621:0","Current_Time":"crwdns38184:0crwdne38184:0","Indicative":"crwdns38782:0crwdne38782:0","Potential_Profit/Loss":"crwdns51354:0crwdne51354:0","Deal_Cancel__Fee":"crwdns85657:0crwdne85657:0","You_can_close_this_window_without_interrupting_your_trade_":"crwdns44763:0crwdne44763:0","There_was_an_error":"crwdns40120:0crwdne40120:0","Sell_at_market":"crwdns39744:0crwdne39744:0","Note":"crwdns39275:0crwdne39275:0","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"crwdns38135:0crwdne38135:0","You_have_sold_this_contract_at_[_1]_[_2]":"crwdns40648:0[_1]crwdnd40648:0[_2]crwdne40648:0","Your_transaction_reference_number_is_[_1]":"crwdns40761:0[_1]crwdne40761:0","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"crwdns39918:0crwdne39918:0","All_markets_are_closed_now__Please_try_again_later_":"crwdns37731:0crwdne37731:0","Withdrawal":"crwdns41824:0crwdne41824:0","demo_credit_to_account":"crwdns163954:0crwdne163954:0","login":"crwdns50940:0crwdne50940:0","logout":"crwdns40804:0crwdne40804:0","Asians":"crwdns37815:0crwdne37815:0","Call_Spread/Put_Spread":"crwdns45983:0crwdne45983:0","Digits":"crwdns38249:0crwdne38249:0","Ends_Between/Ends_Outside":"crwdns43094:0crwdne43094:0","High/Low_Ticks":"crwdns45964:0crwdne45964:0","Lookbacks":"crwdns43512:0crwdne43512:0","Reset_Call/Reset_Put":"crwdns45984:0crwdne45984:0","Stays_Between/Goes_Outside":"crwdns43059:0crwdne43059:0","Touch/No_Touch":"crwdns40226:0crwdne40226:0","Christmas_Day":"crwdns38024:0crwdne38024:0","Closes_early_(at_18:00)":"crwdns38071:0crwdne38071:0","Closes_early_(at_21:00)":"crwdns38072:0crwdne38072:0","Fridays":"crwdns38512:0crwdne38512:0","New_Year's_Day":"crwdns39250:0crwdne39250:0","today":"crwdns40832:0crwdne40832:0","today,_Fridays":"crwdns40833:0crwdne40833:0","There_was_a_problem_accessing_the_server_":"crwdns40118:0crwdne40118:0","There_was_a_problem_accessing_the_server_during_purchase_":"crwdns40117:0crwdne40117:0"}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/es.js b/src/javascript/_autogenerated/es.js index c1e6dc7404d8b..a0c2c45667472 100644 --- a/src/javascript/_autogenerated/es.js +++ b/src/javascript/_autogenerated/es.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['ES'] = {"Multipliers":"Multiplicadores","Gaming":"Juego","Options":"Opciones","Real_CFDs":"Real de CFD","Real_Financial":"Financiera Real","Demo_CFDs":"Demo de CFD","Demo_Financial":"Financiera demo","Synthetic":"Sintética","Demo_Synthetic":"Sintética demo","Real_Synthetic":"Sintética real","CFDs":"CFD","Financial":"Financiera","Financial_STP":"Financiera STP","Demo_Financial_STP":"Financiera STP demo","Real_Financial_STP":"Financiera STP real","Ether_Classic":"Ethereum Classic","Thank_you,_we'll_get_back_to_you_within_24_hours":"Gracias, le responderemos en 24 horas","Online":"En línea","Offline":"Fuera de línea","Connecting_to_server":"Conectando al servidor","Use_a_few_words,_avoid_common_phrases":"Use algunas palabras, evite frases comunes","No_need_for_symbols,_digits,_or_uppercase_letters":"No se necesitan símbolos, dígitos o letras mayúsculas","Add_another_word_or_two__Uncommon_words_are_better_":"Añada unas palabras más. Las palabras poco comunes son mejores.","Straight_rows_of_keys_are_easy_to_guess":"Una hilera de teclas seguidas es fácil de adivinar","Short_keyboard_patterns_are_easy_to_guess":"Los patrones de teclado cortos son fáciles de adivinar","Use_a_longer_keyboard_pattern_with_more_turns":"Utilice un patrón de teclado más largo con más cambios","Repeats_like_\"aaa\"_are_easy_to_guess":"Las repeticiones así como \"aaa\" son fáciles de adivinar","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Las repeticiones como \"abcabcabc\" son solo un poco más difíciles de adivinar que \"abc\"","Avoid_repeated_words_and_characters":"Evite palabras y caracteres repetidos","Sequences_like_abc_or_6543_are_easy_to_guess":"Secuencias como abc o 6543 son fáciles de adivinar","Avoid_sequences":"Evite las secuencias","Recent_years_are_easy_to_guess":"Los años recientes son fáciles de adivinar","Avoid_recent_years":"Evita los últimos años","Avoid_years_that_are_associated_with_you":"Evite los años que están asociados con usted","Dates_are_often_easy_to_guess":"Las fechas suelen ser fáciles de adivinar","Avoid_dates_and_years_that_are_associated_with_you":"Evite fechas y años asociados con usted","This_is_a_top-10_common_password":"Esta es una de las 10 contraseñas más comunes","This_is_a_top-100_common_password":"Esta es una de las 100 contraseñas más comunes","This_is_a_very_common_password":"Esta es una contraseña muy común","This_is_similar_to_a_commonly_used_password":"Se parece a una contraseña de uso común","A_word_by_itself_is_easy_to_guess":"Una palabra por sí sola es fácil de adivinar","Names_and_surnames_by_themselves_are_easy_to_guess":"Los nombres y apellidos por sí mismos son fáciles de adivinar","Common_names_and_surnames_are_easy_to_guess":"Los nombres y apellidos comunes son fáciles de adivinar","Capitalization_doesn't_help_very_much":"Las mayúsculas no ayudan mucho","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Todo en mayúsculas es casi tan fácil de adivinar como todo en minúsculas","Reversed_words_aren't_much_harder_to_guess":"Las palabras invertidas no son mucho más difíciles de adivinar","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Las sustituciones predecibles como '@' en lugar de 'a' no ayudan mucho","This_password_is_on_the_blacklist":"Esta contraseña está en la lista negra","Unknown_OS":"Sistema Operativo Desconocido","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Será redirigido a un sitio web de terceros que no es propiedad de Binary.com.","Click_OK_to_proceed_":"Haga clic en Aceptar para continuar.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Asegúrese de tener la aplicación Telegram instalada en su dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] requiere que el almacenamiento web de su navegador esté activo para funcionar correctamente. Por favor, habilítelo o salga del modo de navegación privada.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"[_1]Inicie sesión[_2] o [_3]regístrese[_4] para ver esta página.","This_feature_is_available_to_demo_accounts_only_":"Esta característica está disponible solo para cuentas virtuales.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Está usando una cuenta demo. Cambie a la real o cree una cuenta real para acceder al Cajero.","This_page_is_only_available_to_logged_out_clients_":"Esta página sólo está disponible para clientes desconectados.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"El comercio de opciones binarias no está disponible en su cuenta de multiplicadores.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"El comercio de opciones binarias no está disponible a través de su cuenta de multiplicadores.
Vuelva a su cuenta de opciones.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Lo sentimos, el trading con opciones no está disponible en el Reino Unido y la Isla de Man","Binary_options_trading_is_not_available_in_your_country_":"El trading con opciones binarias no está disponible en su país.","This_page_is_not_available_in_your_country_of_residence_":"Esta página no está disponible en su país de residencia.","Page_not_available,_you_did_not_deactivate_your_account_":"Página no disponible, no desactivó su cuenta.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Lamentablemente, este servicio no está disponible en su país. Si desea operar con multiplicadores, pruebe DTrader en Deriv.","Go_to_DTrader":"Ir a DTrader","Sign_out":"Cerrar sesión","[_1]_Account":"Cuenta [_1]","Click_here_to_open_a_Real_Account":"Haga clic aquí para abrir una cuenta real","Open_a_Real_Account":"Abrir una cuenta real","Click_here_to_open_a_Multipliers_Account":"Haga clic aquí para abrir una Cuenta de Multiplicadores","Click_here_to_open_an_Options_account":"Haga clic aquí para abrir una cuenta de Opciones","Open_a_Multipliers_Account":"Abrir una Cuenta de Multiplicadores","Create_Account":"Crear cuenta","Accounts_List":"Lista de cuentas","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Los depósitos no están disponibles temporalmente debido al mantenimiento del sistema. Puede realizar sus depósitos cuando se complete el mantenimiento.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Los retiros no están disponibles temporalmente debido al mantenimiento del sistema. Puede hacer retiros cuando se complete el mantenimiento.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero de criptomonedas está temporalmente fuera de servicio debido al mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero está temporalmente fuera de servicio debido a mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Su cajero está bloqueado actualmente. Comuníquese con nosotros a través del chat en vivo para averiguar cómo desbloquearlo.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Por favor, establezca su [_1]moneda de la cuenta[_2] para permitir los depósitos y retiros.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Su cuenta no ha sido autenticada. Envíe su [_1]prueba de identidad y prueba de dirección[_2] para autenticar su cuenta y solicitar retiros.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Su cuenta no ha sido autenticada. Envíe su [_1]prueba de identidad y prueba de dirección[_2] para autenticar su cuenta y acceder a su cajero.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Los documentos de identificación que envió han caducado. Envíe documentos de identidad válidos para desbloquear el cajero.","Your_[_1]proof_of_identity[_2]_has_expired_":"Su [_1]prueba de identidad[_2] ha caducado.","Your_[_1]proof_of_address[_2]_has_expired_":"Su [_1]prueba de dirección[_2] ha caducado.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Su [_1]prueba de identidad[_3] y [_2]prueba de dirección[_3] no se han verificado.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Su [_1]prueba de identidad[_2] no ha sido verificada.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Su [_1]prueba de dirección[_2] no ha sido verificada.","Please_submit_your_[_1]proof_of_identity[_2]_":"Envíe su [_1]comprobante de identidad[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Envíe su [_1]comprobante de dirección[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Ha elegido excluirse del comercio en nuestro sitio web hasta el [_1]. Si no puede realizar una transacción o depósito después de su período de autoexclusión, comuníquese con nosotros a través del chat en vivo.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Su acceso al Cajero se ha desactivado temporalmente porque no ha establecido su límite de facturación de 30 días. Vaya a[_1]SAutoexclusión[_2] y establezca su límite de facturación de 30 días.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Se han deshabilitado los retiros de MT5 en su cuenta. Por favor, revise su correo electrónico para obtener más detalles.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Desafortunadamente, solo puede realizar depósitos. Comuníquese con nosotros a través del chat en vivo para habilitar los retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir depósitos y retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir depositos.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"No ha ajustado el país de su residencia. Para acceder al Cajero, actualice el [_1]país de residencia[_2] en la sección Datos personales en la configuración de su cuenta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Su cajero está bloqueado. Complete la [_1]evaluación financiera[_2] para desbloquearlo.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"No ha proporcionado el número de su identificación fiscal. Esta información es necesaria para los requisitos legales y reglamentarios. Vaya a [_1]Detalles personales[_2] en la configuración de su cuenta e ingrese el último número de su identificación fiscal.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Lamentablemente, sólo puede hacer retiros. Póngase en contacto con nosotros a través del chat en vivo.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Los retiros han sido deshabilitados en su cuenta. Espere hasta que se verifiquen los documentos que ha subido.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Por favor, [_1]acepte los Términos y Condiciones actualizados[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Por favor, [_1]acepte los Términos y Condiciones actualizados[_2] para remover el límite de depósito y operación.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Su cuenta está temporalmente deshabilitada. Comuníquese con nosotros a través del chat en vivo para habilitar los depósitos y retiros nuevamente.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Por favor complete la Prueba de Idoneidad para acceder a su cajero.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Su cajero está bloqueado. Vea [_1]cómo protegemos sus fondos[_2] antes de continuar.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Su cuenta necesita autenticación. Por favor, envíe su [_1]prueba de identidad[_2] para acceder al Cajero.","Account_Authenticated":"Cuenta autenticada","Connection_error:_Please_check_your_internet_connection_":"Error de conexión: por favor, compruebe su conexión a internet.","Network_status":"Estado de la red","This_is_a_staging_server_-_For_testing_purposes_only":"Este es un servidor de prueba - sólo para motivos de prueba","The_server_endpoint_is:_[_2]":"El terminal del servidor es: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Su buscador web ([_1]) está desactualizado y puede afectar su experiencia comercial. Continúe bajo su propio riesgo. [_2]Actualizar buscador[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Ha alcanzado el límite de solicitudes por segundo. Vuelva a intentarlo más tarde.","There_was_some_invalid_character_in_an_input_field_":"Había un carácter no válido en el campo de entrada.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulada por la Comisión de Juego del Reino Unido (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulado por la Autoridad de Juego de Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulada por la Autoridad de Servicios Financieros de Malta (MFSA),","Please_select":"Por favor, seleccione","Please_accept_the_terms_and_conditions_":"Por favor acepte los términos y condiciones.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Por favor, confirme que no es una persona políticamente expuesta.","Today":"Hoy","Select_date":"Seleccionar fecha","Barrier":"Límite","Entry_Spot":"Punto de entrada","Exit_Spot":"Punto de salida","Charting_for_this_underlying_is_delayed":"Los gráficos para este instrumento se muestran con retraso","Payout_Range":"Rango de pago","Purchase_Time":"Hora de compra","Reset_Barrier":"Barrera de reset","Reset_Time":"Tiempo de Reset","Selected_Tick":"Tick Seleccionado","Exit_Time":"Tiempo de salida","Start_Time":"Hora de inicio","Fiat":"Dinero fíat","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Paso [_1]: [_2] ([_1] de [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"El código de verificación es incorrecto. Por favor, haga clic en el enlace enviado a su correo electrónico.","Indicates_required_field":"Indica campo obligatorio","Please_select_the_checkbox_":"Seleccione la casilla de verificación.","This_field_is_required_":"Este campo es obligatorio.","Should_be_a_valid_number_":"Debe ser un número válido.","Up_to_[_1]_decimal_places_are_allowed_":"Se permiten hasta [_1] decimales.","Should_be_[_1]":"Debería ser [_1]","Should_be_between_[_1]_and_[_2]":"Debe estar entre [_1] y [_2]","Should_be_more_than_[_1]":"Debe ser mayor a [_1]","Should_be_less_than_[_1]":"Debe ser menor a [_1]","Insufficient_balance_":"Saldo insuficiente.","Invalid_email_address_":"Correo electrónico no válido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"La contraseña debe tener letras minúsculas y mayúsculas del alfabeto inglés, con números.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Se permite sólo el uso de letras, números, espacios, guiones, puntos y apóstrofes.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Utilice solo letras, números, espacios y los siguientes caracteres especiales: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Se permite sólo el uso de letras, espacios, guiones, puntos y apóstrofes.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Utilice solo letras, números, espacios, y guiones.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Ingrese un número de teléfono válido (por ejemplo, +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Las dos contraseñas introducidas no coinciden.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] y [_2] no pueden ser iguales.","Minimum_of_[_1]_characters_required_":"Mínimo de [_1] caracteres requeridos.","You_should_enter_[_1]_characters_":"Debe ingresar [_1] caracteres.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Debe empezar con letra o número y puede contener guión y guión bajo.","Invalid_verification_code_":"Código de verificación inválido.","Your_password_cannot_be_the_same_as_your_email_address_":"Su contraseña no puede ser igual a su dirección de correo electrónico.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transacción realizada por [_1] (ID de aplicación: [_2])","Guide":"Guía","Next":"Siguiente","Finish":"Terminar","Step":"Paso","Select_your_market_and_underlying_asset":"Seleccione el mercado y activo subyacente","Select_your_trade_type":"Seleccione el tipo de contrato","Adjust_trade_parameters":"Ajustar parámetros de contrato","Predict_the_directionand_purchase":"Prediga la dirección
y compre","Your_session_duration_limit_will_end_in_[_1]_seconds_":"El límite de duración de su sesión terminará en [_1] segundos.","January":"Enero","February":"Febrero","March":"Marzo","April":"Abril","May":"Mayo","June":"Junio","July":"Julio","August":"Agosto","September":"Septiembre","October":"Octubre","November":"Noviembre","December":"Diciembre","Jan":"Ene","Apr":"Abr","Aug":"Ago","Dec":"Dic","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Miércoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"Sábado","Su":"DO","Mo":"Lu","Tu":"MA","We":"Mié","Th":"Ju","Fr":"Vie","Sa":"Sáb","Previous":"Anterior","Hour":"Hora","Minute":"Minuto","Verification_required":"Verificación requerida","Verify_identity":"Verificar identidad","From_account:_":"De la cuenta: ","To_account:_":"A la cuenta: ","Not_announced_for_this_currency_":"No anunciado para esta moneda.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Restablecer el saldo de su cuenta virtual a [_1] en cualquier momento.","[_1]Manage_your_accounts[_2]":"[_1]Gestione sus cuentas[_2]","time":"vez","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"vez o cree una cuenta real de MT5 (o una cuenta real de Deriv X en deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Ya no puede cambiar la moneda porque ha creado una cuenta real de MT5 (o una cuenta real de Deriv X en deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Ya no puede cambiar la moneda porque realizó un depósito por primera vez.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La moneda de su cuenta fiat actualmente está configurada en [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La moneda de su cuenta fiat está configurada en [_1].","This_is_your_[_1]_account_":"Esta es su cuenta [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Puede [_1]establecer una nueva moneda[_2] antes de depositar por primera [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"¿No quiere comerciar en [_1]? Puede abrir otra cuenta en criptomoneda.","Switch_account":"Cambiar de cuenta","Switch_account?":"¿Cambiar de cuenta?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Para depositar dinero, por favor cambie a su [_1] cuenta.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Para retirar dinero, por favor cambie a su [_1] cuenta.","Switch_to_crypto_account?":"¿Cambiar a la cuenta cripto?","To_deposit_cryptocurrency,_switch_your_account_":"Para depositar criptomonedas, cambie su cuenta.","To_withdraw_cryptocurrency,_switch_your_account_":"Para retiros de criptomonedas, cambie su cuenta.","Cancel":"Cancelar","Withdraw":"Retirar","Deposit":"Depositar","Town/City":"Pueblo/Ciudad","First_line_of_home_address":"Primera línea de dirección","Postal_Code/ZIP":"Código postal / C.P.","State/Province":"Estado/Provincia","Email_address":"Dirección de correo electrónico","Telephone":"Teléfono","Country_of_Residence":"País de residencia","details":"detalles","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero está temporalmente fuera de servicio debido al mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Your_cashier_is_locked_":"Su cajero está bloqueado.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Tenga en cuenta que la moneda seleccionada está permitida solo para cuentas limitadas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Ha alcanzado el límite de retiro. Suba su prueba de identidad y de dirección para levantar su límite y continuar con su retiro.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Los servicios de Agente de Pago no están disponibles en su país o en su moneda preferida.","Select_payment_agent":"Seleccionar agente de pago","Amount_in":"Valor en","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Se permite solo el uso de letras, números, espacios, guiones, puntos, comas y apóstrofes.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Su solicitud de retiro [_1] [_2] de su cuenta [_3] al agente de pagos [_4] se ha procesado correctamente.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Su token ha expirado o es inválido. Haga clic [_1]aquí[_2] para reiniciar el proceso de verificación.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Lo sentimos, los retiros para esta moneda están actualmente deshabilitados.","Please_[_1]deposit[_2]_to_your_account_":"Por favor, [_1]deposite saldo[_2] en su cuenta.","Sorry,_account_signup_is_not_available_in_your_country_":"Lo sentimos, pero no es posible abrir una cuenta en su país.","Asset":"Activo","Opens":"Abre","Closes":"Cierra","Settles":"Liquida","Upcoming_Events":"Próximos eventos","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Agregue un +/- para definir el intervalo de tolerancia de la barrera. Por ejemplo, +0,005 significa una barrera superior al punto de entrada en 0,005.","Digit":"Dígito","Percentage":"Porcentaje","Waiting_for_entry_tick_":"Esperando el tick de entrada.","High_Barrier":"Barrera Superior","Low_Barrier":"Barrera inferior","Waiting_for_exit_tick_":"Esperando el tick de salida.","Ticks_history_returned_an_empty_array_":"El historial de ticks devolvió una matriz vacía.","Chart_is_not_available_for_this_underlying_":"El gráfico no se encuentra disponible para este subyacente.","Purchase":"Comprar","Net_profit":"Beneficio Neto","Return":"Ganancias","Time_is_in_the_wrong_format_":"La hora está en el formato equivocado.","Rise/Fall":"Alza/Baja","Higher/Lower":"Superior/Inferior","Matches/Differs":"Iguales/Diferentes","Even/Odd":"Par/Impar","Over/Under":"Encima/Debajo","High-Close":"Cierre-Alto","Close-Low":"Cierre-Bajo","High-Low":"Alto-Bajo","Up/Down":"Arriba/Abajo","Only_Ups/Only_Downs":"Solo Arriba/Solo Abajo","In/Out":"Dentro/Fuera","Select_Trade_Type":"Seleccionar tipo de operación","Spot":"Precio actual del mercado","Spot_Time_(GMT)":"Hora de precio spot (GTM)","seconds":"segundos","minutes":"minutos","hours":"horas","days":"días","ticks":"intervalos","second":"segundo","minute":"minuto","hour":"hora","day":"día","Duration":"Duración","End_Time":"Hora de término","Purchase_request_sent":"Solicitud de compra enviada","High":"Máximo","Close":"Cerrar","Low":"Bajo","Select_Asset":"Seleccionar activo","Search___":"Buscar...","Maximum_multiplier_of_1000_":"Máximo multiplicador de 1000.","Stake":"Inversión","Payout":"Pago","Multiplier":"Multiplicador","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Lo sentimos, su cuenta no está autorizada para continuar con la compra de contratos.","Trading_is_unavailable_at_this_time_":"No se puede operar en este momento.","Please_reload_the_page":"Por favor, vuelva a cargar la página","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Su solicitud para ser tratado como un cliente profesional está siendo procesada.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Su solicitud de cliente profesional fue [_1]no aprobada[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Por favor, vuelva a solicitar una vez que se hayan cumplido los criterios requeridos.","More_information_can_be_found_in_an_email_sent_to_you_":"Puede encontrar más información en un correo electrónico enviado a usted.","I_want_to_reapply":"Quiero solicitar de nuevo","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"En la UE, las opciones binarias financieras solo se encuentran disponibles para inversores profesionales.","Apply_now_as_a_professional_investor":"Aplicar como un inversor profesional","Try_our_[_1]Synthetic_Indices[_2]_":"Pruebe nuestros [_1]Índices sintéticos[_2].","Try_our_other_markets_":"Pruebe nuestros otros mercados.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Por favor, complete el [_1]formulario de la Cuenta Real[_2] para verificar su edad según lo requerido por la [_3]Comisión de juegos de azar de Reino Unido[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"El acceso a la cuenta está temporalmente limitado. Por favor revise su bandeja de entrada para más detalles.","Contract_Confirmation":"Confirmación del contrato","Your_transaction_reference_is":"La referencia de su transacción es","Total_Cost":"Costo total","Potential_Payout":"Pago potencial","Potential_Profit":"Ganancia potencial","View":"Ver","This_contract_won":"Este contrato ganó","This_contract_lost":"Este contrato perdió","The_reset_time_is_[_1]":"El tiempo de reset es [_1]","Now":"Ahora","Average":"Promedio","Buy_price":"Precio de compra","Final_price":"Precio final","Loss":"Pérdida","Profit":"Beneficios","Account_balance:":"Saldo de la cuenta:","Reverse_Side":"Reverso","Front_Side":"Parte delantera","Pending":"Pendiente","Submitting":"Enviando","Submitted":"Enviado","Failed":"Fallado","Compressing_Image":"Comprimiendo imagen","Checking":"Verificando","Checked":"Verificado","Unable_to_read_file_[_1]":"No fue posible leer el archivo [_1]","Passport":"Pasaporte","Identity_card":"Cédula de identidad","Driving_licence":"Licencia de conducir","Invalid_document_format_":"Formato de documento inválido.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"El archivo ([_1]) excede el tamaño permitido. Máximo tamaño permitido: [_2]","ID_number_is_required_for_[_1]_":"La cédula de identidad es requerida para [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"La cédula de identidad ([_1]) solo puede contener letras, números, espacios, guiones bajos y guiones.","Expiry_date_is_required_for_[_1]_":"Fecha de vencimiento es requerida por [_1].","Place_of_birth":"Lugar de nacimiento","Please_select_the_country_of_document_issuance":"Por favor, seleccione el país de emisión del documento","Choose_the_document_type":"Elija el tipo de documento","Please_enter_the_correct_format__Example:":"Por favor, ingrese el formato correcto. Ejemplo:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Revise el correo electrónico de su cuenta de Google y haga clic en el enlace del correo electrónico para continuar.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Revise el correo electrónico de su cuenta de Facebook y haga clic en el enlace del correo electrónico para continuar.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Revise la cuenta de correo electrónico asociada con su ID de Apple y haga clic en el enlace del correo electrónico para continuar.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Haga clic en el enlace del correo electrónico para cambiar su contraseña MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Haga clic en el enlace del correo electrónico para cambiar su contraseña binary.","We’ve_sent_you_an_email":"Le hemos enviado un correo electrónico","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Está utilizando su cuenta [_1] para acceder a su cuenta de Binary.com. Para cambiar su método de inicio de sesión y utilizar un nombre de usuario y una contraseña, haga clic en el botón [_2]Desconectar[_3].","Linked_with_[_1]":"Vinculado con [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Deberá establecer una contraseña para completar el proceso.","Are_you_sure_you_want_to_unlink_from_[_1]?":"¿Está seguro de que desea desvincularse de [_1]?","Unlink":"Desvincular","Country_not_found":"País no encontrado","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Actualmente no se admiten documentos de ese país: pruebe con otro tipo de documento","Submit_document":"Enviar documento","Select_country":"Seleccione país","e_g__United_States":"p.ej. Estados Unidos","Search_for_country":"Buscar país","Select_issuing_country":"Seleccione país de expedición","Submit_verification":"Enviar verificación","Tips":"Consejos","Documents_uploaded":"Documentos subidos","Document_uploaded":"Documento subido","Selfie_uploaded":"Selfie subido","We're_now_ready_to_verify_your_identity":"Ahora estamos listos para verificar su identidad","Great,_that's_everything_we_need":"Genial, eso es todo lo que necesitamos","The_link_only_works_on_mobile_devices":"El enlace solo funciona en dispositivos móviles","Something's_gone_wrong":"Algo salió mal","You'll_need_to_restart_your_verification_on_your_computer":"Deberá reiniciar la verificación en su computadora","Get_secure_link":"Obtenga un enlace seguro","Steps_required_to_continue_verification_on_your_mobile":"Pasos necesarios para continuar con la verificación en su móvil","Check_back_here_to_finish_the_submission":"Vuelve a consultar aquí para finalizar el envío","Open_the_link_and_complete_the_tasks":"Abra el enlace y complete las tareas","Send_a_secure_link_to_your_phone":"Envíe un enlace seguro a su teléfono","Here's_how_to_do_it:":"He aquí cómo hacerlo:","Continue_on_your_phone":"Continuar en su teléfono","Your_computer_may_take_a_few_seconds_to_update":"Su computadora puede tardar unos segundos en actualizarse","You_can_now_return_to_your_computer_to_continue":"Ahora puede regresar a su computadora para continuar","Uploads_successful":"Subido con éxito","Make_sure_everything_is_clear":"Asegúrese de que todo esté claro","Blurry_photo_detected":"Se detectó una foto borrosa","Make_sure_full_document_is_visible":"Asegúrese de que el documento completo esté visible","Cut-off_image_detected":"Foto cortada detectada","Move_away_from_direct_light":"Aléjese de la luz directa","Glare_detected":"Reflejos detectados","Make_sure_all_of_the_document_is_in_the_photo":"Asegúrese de que todo el documento esté en la foto","No_document_detected":"No se detectó ningún documento","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su tarjeta se lean claramente, sin borrosidad ni reflejos","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Nos llevará más tiempo verificarlo si no podemos leerlo","To_smoothly_verify_you,_we_need_a_better_photo":"Para verificarlo sin problemas, necesitamos una mejor foto","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su licencia se lean claramente, sin borrosidad ni reflejos","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su pasaporte se lean claramente, sin borrosidad ni reflejos","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su permiso se lean claramente, sin borrosidad ni reflejos","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles sean claros para leer, sin borrosidad ni reflejos","Redo":"Rehacer","Confirm":"Confirmar","Upload_anyway":"Subir de todos modos","Enlarge_image":"Ampliar foto","Photo_of_your_document":"Foto de su documento","Check_your_image":"Revise su foto","Front_and_back":"Anverso y reverso","Driver's_license":"Licencia de conducir","Face_photo_page":"Página de foto de cara","Residence_permit":"Permiso de residencia","Sorry,_no_mobile_phone_bills":"Lo sentimos, no se aceptan facturas de teléfono móvil","Documents_you_can_use_to_verify_your_identity":"Documentos que puede utilizar para verificar su identidad","It_must_be_an_official_photo_ID":"Debe ser una identificación oficial con foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Estos documentos con más probabilidades muestran su domicilio actual","Choose_document":"Elija el documento","Select_a_%{country}_document":"Seleccione un documento de %{country}","or_upload_photo_–_no_scans_or_photocopies":"o suba una foto, no se aceptan escaneos ni fotocopias","Continue_on_phone":"Continuar en el teléfono","Take_a_photo_with_your_phone":"Tome una foto con su teléfono","Submit_identity_card_(back)":"Enviar la tarjeta de identidad (reverso)","Submit_identity_card_(front)":"Enviar la tarjeta de identidad (anverso)","Submit_license_(back)":"Enviar licencia (reverso)","Submit_license_(front)":"Enviar licencia (anverso)","Submit_passport_photo_page":"Enviar la página con la foto del pasaporte","Submit_residence_permit_(back)":"Presentar permiso de residencia (reverso)","Submit_residence_permit_(front)":"Presentar permiso de residencia (anverso)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Reiniciar el proceso en la última versión de Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Reiniciar el proceso en la última versión de Safari","Unsupported_browser":"Navegador no soportado","Close_identity_verification_screen":"Cerrar la pantalla de verificación de identidad","Dismiss_alert":"Descartar alerta","back":"atrás","close":"cerrar","Restart_process_on_a_different_device":"Reiniciar el proceso en un dispositivo diferente","Camera_not_detected":"Cámara no detectada","Must_be_under_10MB_":"Debe tener menos de 10MB.","File_size_exceeded_":"Se ha excedido el tamaño del archivo.","Try_using_another_file_type_":"Intente utilizar otro tipo de archivo.","File_not_uploaded_":"Archivo no cargado.","An_error_occurred_while_loading_the_component":"Se produjo un error al cargar el componente","Only_your_face_can_be_in_the_selfie":"Solo su cara puede estar en la selfie","Multiple_faces_found":"Varias caras encontradas","Your_face_is_needed_in_the_selfie":"Se necesita su cara en el selfie","No_face_found":"No se encontró rostro","Please_try_again":"Por favor, inténtelo de nuevo","Connection_lost":"Conexión perdida","Copy_the_link_to_your_phone":"Copie el enlace a su teléfono","Too_many_failed_attempts":"Demasiados intentos fallidos","Try_using_a_JPG_or_PNG_file":"Intente usar un archivo JPG o PNG","File_type_not_supported":"Tipo de archivo no compatible","Loading___":"Cargando...","Loading":"Cargando","Check_that_your_number_is_correct":"Compruebe que su número sea correcto","Copied":"Copiado","Copy":"Copiar","Send_link":"Enviar enlace","How_to_scan_a_QR_code":"Cómo escanear un código QR","Point_your_phone’s_camera_at_the_QR_code":"Apunte la cámara de su teléfono al código QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Si no funciona, descargue un escáner de códigos QR de Google Play o App Store","or":"O","Scan_QR_code":"Escanear código QR","Get_link_via_SMS":"Obtenga enlace por SMS","Copy_link":"Copiar enlace","Sending":"Enviando","Enter_mobile_number":"Ingrese el número de móvil","Enter_your_mobile_number:":"Ingrese el numero de su móvil:","Scan_the_QR_code_with_your_phone":"Escanee el código QR con su teléfono","Send_this_one-time_link_to_your_phone":"Envíe este enlace único a su teléfono","Open_the_link_on_your_mobile":"Abra el enlace en su móvil","Get_your_secure_link":"Obtenga su enlace seguro","Copy_the_link_to_your_mobile_browser":"Copie el enlace a su navegador móvil","Continue":"Continuar","Make_sure§":"Asegúrese§","2__Your_desktop_window_stays_open":"2. La ventana de su escritorio permanece abierta","1__This_link_was_sent_by_you":"1. Este enlace fue enviado por usted","Continue_with_the_verification":"Continuar con la verificación","Linked_to_your_computer":"Vinculado a su computadora","Take_a_photo_of_the_back_of_your_card":"Tome una foto del reverso de su tarjeta","Take_a_photo_of_the_front_of_your_card":"Tome una foto del anverso de su tarjeta","Take_a_photo_of_the_back_of_your_license":"Tome una foto del reverso de su licencia","Take_a_photo_of_the_front_of_your_license":"Tome una foto del anverso de su licencia","Take_a_photo_of_your_passport_photo_page":"Tome una foto de la página con foto de su pasaporte","Take_a_selfie_showing_your_face":"Tómese un selfie mostrando su cara","Take_a_photo_using_the_basic_camera_mode_instead":"Tome una foto usando el modo de cámara básico en su lugar","Take_a_photo":"Tome una foto","Passport_photo_page":"Página con foto de pasaporte","Thank_you":"Gracias","Verification_complete":"Verificación completada","Refresh":"Recargar","Recovery":"Recuperación","Follow_these_steps_to_recover_camera_access:":"Siga estos pasos para recuperar el acceso a la cámara:","Refresh_this_page_to_restart_the_identity_verification_process":"Actualice esta página para reiniciar el proceso de verificación de identidad","Grant_access_to_your_camera_from_your_browser_settings":"Otorgue acceso a su cámara desde la configuración de su navegador","Recover_camera_access_to_continue_face_verification":"Recupere el acceso a la cámara para continuar con la verificación de cara","Camera_access_is_denied":"El acceso a la cámara ha sido denegado","We_cannot_verify_you_without_using_your_camera":"No podemos verificarle sin usar su cámara","Enable_camera":"Habilitar cámara","When_prompted,_you_must_enable_camera_access_to_continue":"Cuando se le solicite, debe habilitar el acceso a la cámara para continuar","Allow_camera_access":"Permita el acceso a la cámara","Provide_the_whole_document_page_for_best_results":"Proporcione toda la página del documento para obtener mejores resultados","Upload_back_of_card_from_your_computer":"Suba la parte trasera de la tarjeta de identificación desde su computadora","Upload_front_of_card_from_your_computer":"Suba la parte delantera de la tarjeta de identificación desde su computadora","Upload_back_of_license_from_your_computer":"Suba la parte trasera de la licencia de conducir desde su computadora","Upload_front_of_license_from_your_computer":"Suba la parte delantera de la licencia de conducir desde su computadora","Upload_passport_photo_page_from_your_computer":"Suba la página con la foto de pasaporte desde su computadora","Upload_a_selfie_from_your_computer":"Suba un selfie desde su computadora","Take_photo":"Tome una foto","Upload":"Subir","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Compruebe que esté conectado y en funcionamiento. También puede continuar la verificación en su teléfono","Make_sure_your_device_has_a_working_camera":"Asegúrese de que su dispositivo tenga una cámara que funcione","Camera_not_working?":"¿La cámara no funciona?","It_may_be_disconnected__Try_using_your_phone_instead_":"Puede estar desconectada. Intente usar la de su teléfono.","Make_sure_your_device's_camera_works":"Asegúrese de que la cámara de su dispositivo funcione","Camera_not_working":"La cámara no funciona","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Recuerde pulsar Stop cuando haya terminado. Rehacer acciones de video","Looks_like_you_took_too_long":"Parece que tardó demasiado","View_from_camera":"Vista desde la cámara","Take_a_selfie":"Tómese un selfie","Photo_of_your_face":"Foto de su cara","Make_sure_your_selfie_clearly_shows_your_face":"Asegúrese de que su selfie muestre claramente su rostro","Check_selfie":"Revisar selfie","Tips_to_take_a_good_selfie":"Consejos para sacarse un buen selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Mire hacia adelante y asegúrese de que sus ojos se vean claramente","Remove_your_glasses,_if_necessary":"Quítese las gafas, si es necesario","We'll_compare_it_with_your_document":"Lo compararemos con su documento","Your_link_will_expire_in_one_hour":"Su enlace caducará en una hora","Keep_this_window_open_while_using_your_mobile":"Mantenga esta ventana abierta mientras usa su móvil","Resend_link":"Reenviar enlace","We've_sent_a_secure_link_to_%{number}":"Hemos enviado un enlace seguro a %{number}","It_may_take_a_few_minutes_to_arrive":"Puede que tarde unos minutos en llegar","Check_your_mobile":"Revise su móvil","Your_mobile_link_will_expire_in_one_hour":"Su enlace móvil caducará en una hora","Don't_refresh_this_page":"No actualice esta página","Once_you've_finished_we'll_take_you_to_the_next_step":"Una vez que haya terminado, le llevaremos al siguiente paso","Connected_to_your_mobile":"Conectado a su móvil","Upload_photo":"Subir foto","Example_of_a_blurry_document":"Ejemplo de un documento borroso","All_details_must_be_clear_—_nothing_blurry":"Todos los detalles deben ser claros, nada borroso","Example_of_a_cut-off_document":"Ejemplo de un documento cortado","Show_all_details_—_including_the_bottom_2_lines":"Mostrar todos los detalles, incluidas las 2 últimas líneas","Example_of_a_document_with_glare":"Ejemplo de un documento con reflejo","Move_away_from_direct_light_—_no_glare":"Aléjese de la luz directa, sin reflejos","Document_example":"Ejemplo de documento","The_photo_should_clearly_show_your_document":"La foto debe mostrar claramente su documento","Scans_and_photocopies_are_not_accepted":"No se aceptan escaneos ni fotocopias","Upload_passport_photo_page":"Suba la página de la foto del pasaporte","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Para abrir una cuenta bancaria, necesitaremos verificar su identidad.","It_will_only_take_a_couple_of_minutes_":"Solo le tomará un par de minutos.","Verify_Identity":"Verificar identidad","Open_your_new_bank_account":"Abra su nueva cuenta bancaria","Please_enter_a_valid_Login_ID_":"Ingrese un ID de usuario válido.","Amount":"Monto","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Su solicitud de transferencia [_1] [_2] de [_3] a [_4] ha sido procesada exitosamente.","Resale_not_offered":"No se ofrece reventa","You've_made_no_transactions_of_this_type_up_to_this_date_":"No ha realizado transacciones de este tipo hasta la fecha.","Date":"Fecha","Contract":"Contrato","Purchase_Price":"Precio de compra","Sale_Date":"Fecha de Venta","Sale_Price":"Precio de Venta","Profit/Loss":"Ganancia/Pérdida","Details":"Detalles","Total_Profit/Loss":"Ganancias/pérdidas totales","Action_required!":"¡Acción requerida!","Sorry,_an_error_occurred_while_processing_your_request_":"Lo sentimos, ha ocurrido un error mientras se procesaba su solicitud.","position(s)":"posición(es)","withdrawal(s)":"retiro(s)","We_couldn’t_read_that!":"¡No hemos podido leer eso!","Remaining_characters:_[_1]_":"Caracteres restantes: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"No ingrese más de [_1] caracteres para ambos campos.","Only_[_1]_are_allowed_":"Se permite solo [_1].","letters":"letras","numbers":"números","space":"espacio","Please_select_at_least_one_scope":"Por favor, seleccione al menos un objetivo","New_token_created_":"Un token nuevo ha sido creado.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"El máximo número de tokens ([_1]) ha sido alcanzado.","Name":"Nombre","Scopes":"Alcances","Last_Used":"Última vez usado","Action":"Acción","Are_you_sure_that_you_want_to_permanently_delete_the_token":"¿Está seguro de querer eliminar definitivamente el token?","Delete":"Eliminar","Never_Used":"Nunca usado","You_have_not_granted_access_to_any_applications_":"No ha concedido acceso a ninguna aplicación.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"¿Está seguro de que desea revocar permanentemente el acceso a la aplicación?","Revoke_access":"Revocar el acceso","Admin":"Administrador","Payments":"Pagos","Read":"Leer","Trade":"Operar","Trading_Information":"Información sobre trading","Never":"Nunca","Permissions":"Permisos","Last_Login":"Último ingreso","You_did_not_change_anything_":"No ha cambiado nada.","Your_changes_have_been_updated_successfully_":"Sus cambios se han actualizado con éxito.","Successful":"Exitoso","Date_and_Time":"Fecha y hora","Browser":"Navegador","IP_Address":"Dirección IP","Status":"Estado","Your_account_has_no_Login/Logout_activity_":"Su cuenta no tiene actividad de accesos/cierres de sesión.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Su cuenta está totalmente autenticada y su límite de retirada ha sido aumentado.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Su límite de retiro diario [_1] es actualmente [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Ya ha retirado un total de [_1][_2] en los últimos [_3] días.","Your_withdrawal_limit_is_[_1][_2]_":"Su límite de retiro es [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Ya ha retirado [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Por lo tanto, su saldo extraíble es solo hasta [_1][_2], sujeto a los fondos disponibles de su cuenta.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Por favor, confirme que toda la información anterior es verdadera y está completa.","Your_settings_have_been_updated_successfully_":"Se han actualizado sus preferencias.","Sorry,_an_error_occurred_while_processing_your_account_":"Lo sentimos, ha ocurrido un error mientras se procesaba su cuenta.","Please_select_a_country":"Seleccione un país","Timed_out_until":"Bloqueado hasta","Excluded_from_the_website_until":"Excluido del sitio web hasta","Session_duration_limit_cannot_be_more_than_6_weeks_":"El límite de duración de la sesión no puede ser superior a 6 semanas.","Time_out_must_be_after_today_":"El tiempo de inactividad debe ser después de hoy.","Time_out_cannot_be_more_than_6_weeks_":"El tiempo de bloqueo no puede ser mayor a seis semanas.","Time_out_cannot_be_in_the_past_":"El tiempo de inactividad no puede ser en el pasado.","Please_select_a_valid_time_":"Seleccione una hora válida.","Exclude_time_cannot_be_less_than_6_months_":"El tiempo de exclusión no puede ser menor a 6 meses.","Exclude_time_cannot_be_for_more_than_5_years_":"El tiempo de exclusión no puede ser mayor a 5 años.","Confirm_changes":"Confirmar cambios","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Actualizaremos sus límites. Haga clic en [_1]Acordar y aceptar[_2] para reconocer que usted es totalmente responsable de sus acciones y que no somos responsables de ninguna adicción o pérdida.","Agree_and_accept":"Acordar y aceptar","Go_back":"Volver","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Si hace clic en \"OK\", no se le permitirá operar en el sitio hasta la fecha seleccionada.","Your_changes_have_been_updated_":"Sus cambios se han guardado.","Disable":"Desactivar","Enable":"Activar","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Usted ha activado con éxito la autenticación de dos factores para su cuenta.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Usted ha desactivado con éxito la autenticación de dos factores para su cuenta.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"No es necesario que autentique su cuenta en este momento. [_1]Le informaremos cuándo debe autenticar su cuenta.","No_authentication_required":"No se requiere autenticación","Back_to_trading":"Volver al trading","You_are_categorised_as_a_professional_client_":"Está categorizado como un cliente profesional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Usted está categorizado como cliente minorista. Mande solicitud para ser tratado como un trader profesional.","Bid":"Oferta","Closed_Bid":"Cerrar oferta","Reference_ID":"ID de referencia","Description":"Descripción","Credit/Debit":"Crédito/débito","Balance":"Saldo","Top_up_error":"Error de recarga","Understood":"Entendido","Top-up_successful":"Recarga exitosa","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] ha sido acreditado en su Cuenta Virtual: [_2].","Go_to_statement":"Ir al extracto","Continue_trading":"Seguir operando","Your_Demo_balance_has_been_reset_":"Su saldo virtual se ha restablecido.","Account":"Cuenta","Available_Markets":"Mercados disponibles","Type":"Tipo","Currency":"Divisa","Multipliers_Account":"Cuenta de Multiplicadores","Gaming_Account":"Cuenta de juego","Options_Account":"Cuenta de opciones","Real_Account":"Cuenta real","Counterparty":"Contraparte","Jurisdiction":"Jurisdicción","Create_account":"Crear cuenta","Change_currency":"Cambiar moneda","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Está limitado a una cuenta en moneda fiat. La moneda de su cuenta fiat puede ser cambiada antes de depositar en su cuenta fiat por primera vez o crear una cuenta real MT5 (o una cuenta real Deriv X en deriv.com). También puede abrir una cuenta para cada criptomoneda admitida.","This_account_is_disabled":"Esta cuenta está deshabilitada","This_account_is_excluded_until_[_1]":"Esta cuenta se encuentra excluida hasta [_1]","Set_currency":"Definir moneda","Commodities":"Materias primas","Stock_Indices":"Indices bursátiles","Stocks":"Acciones","Synthetic_Indices":"Índices sintéticos","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Si tiene una cuenta con nosotros, le enviaremos un enlace a su correo electrónico en unos minutos para restablecer su contraseña.","Sign_up":"Crear cuenta","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Los contratos por diferencia (CFD) en índices sintéticos pueden no ser adecuados para todos. Asegúrese de que comprende completamente los riesgos involucrados, incluyendo la posibilidad de perder todos los fondos en su cuenta MT5. El juego puede ser adictivo, por favor juegue con responsabilidad.","Do_you_wish_to_continue?":"¿Desea continuar?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Está a punto de comprar un producto que no es sencillo y puede ser difícil de entender: los contratos por diferencia y el forex. Como regla general, la CNMV considera que dichos productos no son apropiados para clientes minoristas, debido a su complejidad.","{SPAIN_ONLY}This_is_a_product_with_leverage__You_should_be_aware_that_losses_may_be_higher_than_the_amount_initially_paid_to_purchase_the_product_":"Este es un producto con apalancamiento. Debe tener en cuenta que las pérdidas pueden ser más altas que el monto pagado inicialmente para comprar el producto.","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"Sin embargo, Binary Investments (Europe) Ltd ha evaluado su conocimiento y experiencia y considera el producto apropiado para usted.","Acknowledge":"Confirmar","Change_Password":"Cambiar contraseña","The_investor_password_of_account_number_[_1]_has_been_changed_":"Se ha cambiado la contraseña del inversor de la cuenta número [_1].","Reset_Password":"Restablecer contraseña","Verify_Reset_Password":"Verificar nueva contraseña","Please_check_your_email_for_further_instructions_":"Por favor, revise su correo para más instrucciones.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"[_1] depósito desde [_2] a la cuenta número [_3] se ha realizado con éxito. ID de transacción: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Retiro de [_1] desde la cuenta número [_2] a [_3] se ha realizado con éxito. ID de transacción: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Para realizar retiros de MetaTrader 5 [_1] por favor [_2]Autentique[_2] su cuenta Binary.","Current_password":"Contraseña actual","New_password":"Nueva contraseña","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Para transferir fondos a su cuenta de MT5, introduzca una cantidad de [_1] o más","You_have_insufficient_funds_in_your_MT5_account_":"No tiene fondos suficientes en su cuenta MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Lo sentimos, esta función no está disponible en su jurisdicción.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Debido a un problema en nuestro servidor, algunas de sus cuentas MT5 no están disponibles en este momento. [_1]Por favor, tenga paciencia con nosotros y gracias por su cooperación.","Unavailable":"No disponible","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] ha sido acreditado en su cuenta demo de MT5: [_2].","_(Region_added)":" (Región agregada)","_(Temporarily_unavailable)":" (Temporalmente no disponible)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nuestros servidores MT5 no están disponibles temporalmente. Estamos trabajando para restaurarlos. Vuelva a intentarlo en unos minutos.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Utilice la contraseña de MT5 para iniciar sesión en cualquiera de sus cuentas MT5 cuando utilice aplicaciones MT5 en su móvil u otros dispositivos.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Esta acción cambiará las contraseñas de todas sus cuentas de [_1].","Demo_Accounts":"Cuentas de prueba","Real-Money_Accounts":"Cuentas de dinero real","Demo_Account":"Cuenta de prueba","Real-Money_Account":"Cuenta de dinero real","for_account_[_1]":"para la cuenta [_1]","[_1]_Account_[_2]":"Cuenta [_1] [_2]","MT5_Financial":"MT5 Financiero","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Introduzca su contraseña MT5 para añadir una cuenta [_1] [_2].","MT5_Synthetic":"Sintética MT5","Get_[_1]":"Obtenga [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"El saldo de su cuenta demo es de [_1] o menos. Puede recargar su cuenta con unos [_2] adicionales.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Puede recargar su cuenta de prueba con unos [_1] adicionales si su saldo es [_2] o menos.","Yes,_I'm_sure":"Sí, estoy seguro","Are_you_sure?":"¿Está seguro?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"No podrá cambiar la moneda de su cuenta fiat después de crear esta cuenta [_1]. ¿Está seguro que desea continuar?","OK":"Aceptar","Go_to_Deriv_to_add_an_MT5_account":"Ir a Deriv para añadir una cuenta MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Podrá iniciar sesión en Deriv utilizando sus credenciales de Binary.com","Back":"Atrás","Go_to_Deriv":"Ir a Deriv","Address":"Domicilio","Account_currency":"Moneda de la cuenta","Financial_assessment":"Evaluación financiera","Personal_details":"Datos personales","Terms_of_use":"Términos de uso","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) es una versión de Tether vinculada al USD y desarrollada en el blockchain de Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) es una versión de Tether vinculada al USD y alojada en la plataforma de Ethereum.","Title_and_name":"Título y nombre","Real_money_account_opening":"Apertura de cuenta de dinero real","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Su token ha caducado o no es válido. Haga clic aquí para reiniciar el proceso de verificación.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"La dirección de correo electrónico proporcionada ya está en uso. Si olvidó su contraseña, pruebe nuestra herramienta de recuperación de contraseña o póngase en contacto con nuestro servicio de atención al cliente.","Password_is_not_strong_enough_":"La contraseña no es lo suficientemente fuerte.","Upgrade_now":"Actualice ahora","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] días [_2] horas [_3] minutos","Your_trading_statistics_since_[_1]_":"Las estadísticas de sus transacciones desde [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Las operaciones de [_1] pueden convertirse en una verdadera adicción, al igual que cualquier otra actividad llevada al límite. Para evitar el peligro de tal adicción, proporcionamos un control de realidad que le brinda un resumen de sus operaciones y cuentas de manera regular.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Haga clic en el siguiente enlace para reiniciar el proceso de recuperación de contraseña.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Tiene una nueva contraseña de Binary para entrar en Binary.com.","Success":"Éxito","Done":"Finalizado","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Su cuenta de Binary está desvinculada de [_1]. Utilice [_2]su correo electrónico y contraseña para iniciar sesión en el futuro.","Success!":"¡Éxito!","Got_it":"Entendido","Binary_Password_Reset":"Restablecer la contraseña Binary","Binary_password":"Contraseña Binary","You_have_added_a_[_1]_account_":"Ha agregado una cuenta [_1].","Add_account":"Añadir cuenta","Add_new_crypto_account":"Añadir nueva cuenta cripto","Add_new_account":"Añadir cuenta nueva","Create_a_cryptocurrency_account":"Cree una cuenta de criptomonedas","Choose_your_preferred_cryptocurrency":"Elija su criptomoneda preferida","You_can_open_an_account_for_each_cryptocurrency_":"Puede abrir una cuenta para cada criptomoneda.","Choose_a_cryptocurrency_account":"Elija una cuenta de criptomonedas","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Elija una de sus cuentas o agregue una nueva cuenta de criptomonedas","Choose_an_account":"Elija una cuenta","Choose_one_of_your_accounts_or_add_a_new_account":"Elija una de sus cuentas o agregue una nueva cuenta ","Choose_one_of_your_accounts":"Elija una de sus cuentas","Please_select_the_currency_for_this_account:":"Por favor seleccione la moneda para esta cuenta:","deposit":"depositar","deposit_or_create_a_CFDs_account":"deposite o cree una cuenta de CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"¿Está seguro que desea crear su cuenta [_1] ahora?","Note:":"Nota:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Puede abrir una cuenta para cada criptomonedas disponible.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"¿Está seguro que desea crear una cuenta fiat en [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Está limitado a una cuenta fiat. Puede cambiar la moneda de su cuenta fiat en cualquier momento antes de [_1] por primera vez.","Yes":"Sí","Create_[_1]_account":"Crear una cuenta [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Ha cambiado con éxito la moneda de su cuenta a [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Ha cambiado con éxito la moneda de su cuenta de [_1] a [_2].","Please_choose_a_currency":"Por favor elija una moneda","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Tiene una nueva contraseña de MT5 para acceder a sus cuentas [_1] en la aplicación web y móvil.","Asian_Up":"Asiáticas arriba","Asian_Down":"Asiáticas abajo","Higher":"Superior","Higher_or_equal":"Mayor o igual","Lower":"Inferior","Lower_or_equal":"Inferior o igual","Digit_Matches":"Dígito coincide","Digit_Differs":"Dígito difiere","Digit_Odd":"Dígito impar","Digit_Even":"Dígito par","Digit_Over":"Dígito sobre","Digit_Under":"Dígito por debajo","Ends_Outside":"Finaliza fuera","Ends_Between":"Finaliza entre","Stays_Between":"Permanece dentro","Goes_Outside":"Sale fuera","Touches":"Toca","Does_Not_Touch":"No Toca","High_Tick":"Tick alto","Low_Tick":"Tick bajo","Only_Ups":"Solo Arriba","Only_Downs":"Solo Abajo","Multiplier_Up":"Multiplicador arriba","Multiplier_Down":"Multiplicador abajo","Equals":"Iguales","Not":"No","Buy":"Comprar","Sell":"Venta","Waiting_for_contract_settlement_":"En espera de la liquidación del contrato.","including_Deal_Cancel__Fee":"incluyendo la cuota de cancelación del contrato","Contract_has_not_started_yet":"El contrato no ha comenzado todavía","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Este contrato solo está disponible en [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Este contrato solo está disponible en DTrader.[_1][_2]Diríjase a Dtrader[_3] para cerrar o cancelar este contrato.","Contract_Result":"Resultado del contrato","Close_Time":"Hora de cierrre","Exit_Spot_Time":"Hora del punto de salida","Audit":"Auditoría","View_chart":"Ver gráfico","Audit_Page":"Página de auditoría","Contract_Starts":"Contrato empieza","Contract_Ends":"El contrato termina","Contract_Details":"Detalles del contrato","Target":"Objetivo","Contract_Information":"Información del contrato","Contract_Type":"Tipo de contrato","Transaction_ID":"ID de la transacción","Remaining_Time":"Tiempo restante","Maximum_payout":"Pago máximo","Barrier_Change":"Cambio de Límite","Current":"Actual","Spot_Time":"Hora del precio al contado (spot)","Current_Time":"Hora actual","Indicative":"Indicativo","Potential_Profit/Loss":"Ganancia/Pérdida Potencial","Deal_Cancel__Fee":"Cuota de cancelación de contrato","You_can_close_this_window_without_interrupting_your_trade_":"Puede cerrar esta ventana sin interrumpir su operación.","There_was_an_error":"Hubo un error","Sell_at_market":"Vender al precio actual","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"El contrato se venderá al precio vigente en el mercado en el momento de la recepción de la solicitud de venta por nuestros servidores. Este precio puede ser diferente del precio indicado.","You_have_sold_this_contract_at_[_1]_[_2]":"Usted ha vendido este contrato en [_1] [_2]","Your_transaction_reference_number_is_[_1]":"El número de referencia de su transacción es [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"¡Gracias por registrarse! Compruebe su correo electrónico completar el proceso de registro.","All_markets_are_closed_now__Please_try_again_later_":"Todos los mercados están cerrados ahora. Inténtelo más tarde.","Withdrawal":"Retiro","demo_credit_to_account":"fondos virtuales en cuenta","login":"iniciar sesión","logout":"cerrar sesión","Asians":"Asiáticas","Digits":"Dígitos","Ends_Between/Ends_Outside":"Finaliza dentro/Finaliza fuera","High/Low_Ticks":"Ticks Altos/Bajos","Lookbacks":"Retroactivos","Stays_Between/Goes_Outside":"Permanece dentro/Sale","Touch/No_Touch":"Toca/No Toca","Christmas_Day":"Día de Navidad","Closes_early_(at_18:00)":"Cierra temprano (a las 18:00)","Closes_early_(at_21:00)":"Cierra temprano (a las 21:00)","Fridays":"Viernes","New_Year's_Day":"Día de año nuevo","today":"hoy","today,_Fridays":"hoy, los viernes","There_was_a_problem_accessing_the_server_":"Hubo un problema al acceder al servidor.","There_was_a_problem_accessing_the_server_during_purchase_":"Hubo un problema al acceder al servidor durante la compra."}; \ No newline at end of file +texts_json['ES'] = {"Multipliers":"Multiplicadores","Gaming":"Juego","Options":"Opciones","Real_CFDs":"Real de CFD","Real_Financial":"Financiera Real","Demo_CFDs":"Demo de CFD","Demo_Financial":"Financiera demo","Derived":"Derivado","Demo_Derived":"Demo derivada","Real_Derived":"Real derivada","CFDs":"CFD","Financial":"Financiera","Financial_STP":"Financiera STP","Demo_Financial_STP":"Financiera STP demo","Real_Financial_STP":"Financiera STP real","Ether_Classic":"Ethereum Classic","Online":"En línea","Offline":"Fuera de línea","Connecting_to_server":"Conectando al servidor","Use_a_few_words,_avoid_common_phrases":"Use algunas palabras, evite frases comunes","No_need_for_symbols,_digits,_or_uppercase_letters":"No se necesitan símbolos, dígitos o letras mayúsculas","Add_another_word_or_two__Uncommon_words_are_better_":"Añada unas palabras más. Las palabras poco comunes son mejores.","Straight_rows_of_keys_are_easy_to_guess":"Una hilera de teclas seguidas es fácil de adivinar","Short_keyboard_patterns_are_easy_to_guess":"Los patrones de teclado cortos son fáciles de adivinar","Use_a_longer_keyboard_pattern_with_more_turns":"Utilice un patrón de teclado más largo con más cambios","Repeats_like_\"aaa\"_are_easy_to_guess":"Las repeticiones así como \"aaa\" son fáciles de adivinar","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Las repeticiones como \"abcabcabc\" son solo un poco más difíciles de adivinar que \"abc\"","Avoid_repeated_words_and_characters":"Evite palabras y caracteres repetidos","Sequences_like_abc_or_6543_are_easy_to_guess":"Secuencias como abc o 6543 son fáciles de adivinar","Avoid_sequences":"Evite las secuencias","Recent_years_are_easy_to_guess":"Los años recientes son fáciles de adivinar","Avoid_recent_years":"Evita los últimos años","Avoid_years_that_are_associated_with_you":"Evite los años que están asociados con usted","Dates_are_often_easy_to_guess":"Las fechas suelen ser fáciles de adivinar","Avoid_dates_and_years_that_are_associated_with_you":"Evite fechas y años asociados con usted","This_is_a_top-10_common_password":"Esta es una de las 10 contraseñas más comunes","This_is_a_top-100_common_password":"Esta es una de las 100 contraseñas más comunes","This_is_a_very_common_password":"Esta es una contraseña muy común","This_is_similar_to_a_commonly_used_password":"Se parece a una contraseña de uso común","A_word_by_itself_is_easy_to_guess":"Una palabra por sí sola es fácil de adivinar","Names_and_surnames_by_themselves_are_easy_to_guess":"Los nombres y apellidos por sí mismos son fáciles de adivinar","Common_names_and_surnames_are_easy_to_guess":"Los nombres y apellidos comunes son fáciles de adivinar","Capitalization_doesn't_help_very_much":"Las mayúsculas no ayudan mucho","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Todo en mayúsculas es casi tan fácil de adivinar como todo en minúsculas","Reversed_words_aren't_much_harder_to_guess":"Las palabras invertidas no son mucho más difíciles de adivinar","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Las sustituciones predecibles como '@' en lugar de 'a' no ayudan mucho","This_password_is_on_the_blacklist":"Esta contraseña está en la lista negra","Unknown_OS":"Sistema Operativo Desconocido","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Será redirigido a un sitio web de terceros que no es propiedad de Binary.com.","Click_OK_to_proceed_":"Haga clic en Aceptar para continuar.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Asegúrese de tener la aplicación Telegram instalada en su dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] requiere que el almacenamiento web de su navegador esté activo para funcionar correctamente. Por favor, habilítelo o salga del modo de navegación privada.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"[_1]Inicie sesión[_2] o [_3]regístrese[_4] para ver esta página.","This_feature_is_available_to_demo_accounts_only_":"Esta característica está disponible solo para cuentas virtuales.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Está usando una cuenta demo. Cambie a la real o cree una cuenta real para acceder al Cajero.","This_page_is_only_available_to_logged_out_clients_":"Esta página sólo está disponible para clientes desconectados.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"El comercio de opciones binarias no está disponible en su cuenta de multiplicadores.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"El comercio de opciones binarias no está disponible a través de su cuenta de multiplicadores.
Vuelva a su cuenta de opciones.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Lo sentimos, el trading con opciones no está disponible en el Reino Unido y la Isla de Man","Binary_options_trading_is_not_available_in_your_country_":"El trading con opciones binarias no está disponible en su país.","This_page_is_not_available_in_your_country_of_residence_":"Esta página no está disponible en su país de residencia.","Page_not_available,_you_did_not_deactivate_your_account_":"Página no disponible, no desactivó su cuenta.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Lamentablemente, este servicio no está disponible en su país. Si desea operar con multiplicadores, pruebe DTrader en Deriv.","Go_to_DTrader":"Ir a DTrader","Sign_out":"Cerrar sesión","[_1]_Account":"Cuenta [_1]","Click_here_to_open_a_Real_Account":"Haga clic aquí para abrir una cuenta real","Open_a_Real_Account":"Abrir una cuenta real","Click_here_to_open_a_Multipliers_Account":"Haga clic aquí para abrir una Cuenta de Multiplicadores","Click_here_to_open_an_Options_account":"Haga clic aquí para abrir una cuenta de Opciones","Open_a_Multipliers_Account":"Abrir una Cuenta de Multiplicadores","Go_to_Deriv_to_add_an_account":"Ir a Deriv para añadir una cuenta","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Podrá iniciar sesión en Deriv utilizando sus credenciales de Binary.com","Cancel":"Cancelar","Go_to_Deriv":"Ir a Deriv","Create_Account":"Crear cuenta","Accounts_List":"Lista de cuentas","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Los depósitos no están disponibles temporalmente debido al mantenimiento del sistema. Puede realizar sus depósitos cuando se complete el mantenimiento.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Los retiros no están disponibles temporalmente debido al mantenimiento del sistema. Puede hacer retiros cuando se complete el mantenimiento.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero de criptomonedas está temporalmente fuera de servicio debido al mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero está temporalmente fuera de servicio debido a mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Su cajero está bloqueado actualmente. Comuníquese con nosotros a través del chat en vivo para averiguar cómo desbloquearlo.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Por favor, establezca su [_1]moneda de la cuenta[_2] para permitir los depósitos y retiros.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"El nombre y la fecha de nacimiento que aparecen en su documento no coinciden con el nombre de su perfil en Binary. Por favor, actualice su nombre en la página [_1]Datos personales[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"La fecha de nacimiento que aparece en el documento no coincide con el nombre de su perfil en Binary. Por favor, actualice su nombre en la página [_1]Datos personales[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"El nombre en su documento no coincide con el nombre de su perfil en Binary. Por favor, actualice su nombre en la página [_1]Datos personales[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Su cuenta no ha sido autenticada. Envíe su [_1]prueba de identidad y prueba de domicilio[_2] para autenticar su cuenta y solicitar retiros.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Su cuenta no ha sido autenticada. Envíe su [_1]prueba de identidad y prueba de domicilio[_2] para autenticar su cuenta y acceder a su cajero.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Los documentos de identificación que envió han caducado. Envíe documentos de identidad válidos para desbloquear el cajero.","Your_[_1]proof_of_identity[_2]_has_expired_":"Su [_1]prueba de identidad[_2] ha caducado.","Your_[_1]proof_of_address[_2]_has_expired_":"Su [_1]prueba de domicilio[_2] ha caducado.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Su [_1]prueba de identidad[_3] y [_2]prueba de domicilio[_3] no se han verificado.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Su [_1]prueba de identidad[_2] no ha sido verificada.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Su [_1]prueba de domicilio[_2] no ha sido verificada.","Please_submit_your_[_1]proof_of_identity[_2]_":"Envíe su %prueba de identidad[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Envíe su %prueba de domicilio[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Ha elegido excluirse del comercio en nuestro sitio web hasta el [_1]. Si no puede realizar una transacción o depósito después de su período de autoexclusión, comuníquese con nosotros a través del chat en vivo.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Su acceso al Cajero se ha desactivado temporalmente porque no ha establecido su límite de facturación de 30 días. Vaya a[_1]SAutoexclusión[_2] y establezca su límite de facturación de 30 días.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Se han deshabilitado los retiros de MT5 en su cuenta. Por favor, revise su correo electrónico para obtener más detalles.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Desafortunadamente, solo puede realizar depósitos. Comuníquese con nosotros a través del chat en vivo para habilitar los retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir depósitos y retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir retiros.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Sus [_1]datos personales[_2] están incompletos. Vaya a la configuración de su cuenta y complete sus datos personales para permitir depositos.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"No ha ajustado el país de su residencia. Para acceder al Cajero, actualice el [_1]país de residencia[_2] en la sección Datos personales en la configuración de su cuenta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Su cajero está bloqueado. Complete la [_1]evaluación financiera[_2] para desbloquearlo.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"No ha proporcionado el número de su identificación fiscal. Esta información es necesaria para los requisitos legales y reglamentarios. Vaya a [_1]Detalles personales[_2] en la configuración de su cuenta e ingrese el último número de su identificación fiscal.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Lamentablemente, sólo puede hacer retiros. Póngase en contacto con nosotros a través del chat en vivo.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Los retiros han sido deshabilitados en su cuenta. Espere hasta que se verifiquen los documentos que ha subido.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Por favor, [_1]acepte los Términos y Condiciones actualizados[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Por favor, [_1]acepte los Términos y Condiciones actualizados[_2] para remover el límite de depósito y operación.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Su cuenta está temporalmente deshabilitada. Comuníquese con nosotros a través del chat en vivo para habilitar los depósitos y retiros nuevamente.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Por favor complete la Prueba de Idoneidad para acceder a su cajero.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Su cajero está bloqueado. Vea [_1]cómo protegemos sus fondos[_2] antes de continuar.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Su cuenta necesita autenticación. Por favor, envíe su [_1]prueba de identidad[_2] para acceder al Cajero.","Account_Authenticated":"Cuenta autenticada","Connection_error:_Please_check_your_internet_connection_":"Error de conexión: por favor, compruebe su conexión a internet.","Network_status":"Estado de la red","This_is_a_staging_server_-_For_testing_purposes_only":"Este es un servidor de prueba - sólo para motivos de prueba","The_server_endpoint_is:_[_2]":"El terminal del servidor es: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Su buscador web ([_1]) está desactualizado y puede afectar su experiencia comercial. Continúe bajo su propio riesgo. [_2]Actualizar buscador[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Ha alcanzado el límite de solicitudes por segundo. Vuelva a intentarlo más tarde.","There_was_some_invalid_character_in_an_input_field_":"Había un carácter no válido en el campo de entrada.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulada por la Comisión de Juego del Reino Unido (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulado por la Autoridad de Juego de Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulada por la Autoridad de Servicios Financieros de Malta (MFSA),","Please_select":"Por favor, seleccione","Please_accept_the_terms_and_conditions_":"Por favor acepte los términos y condiciones.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Por favor, confirme que no es una persona políticamente expuesta.","Today":"Hoy","Select_date":"Seleccionar fecha","Barrier":"Límite","Entry_Spot":"Punto de entrada","Exit_Spot":"Punto de salida","Charting_for_this_underlying_is_delayed":"Los gráficos para este instrumento se muestran con retraso","Payout_Range":"Rango de pago","Purchase_Time":"Hora de compra","Reset_Barrier":"Barrera de reset","Reset_Time":"Tiempo de Reset","Selected_Tick":"Tick Seleccionado","Exit_Time":"Tiempo de salida","Start_Time":"Hora de inicio","Fiat":"Dinero fíat","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Paso [_1]: [_2] ([_1] de [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"El código de verificación es incorrecto. Por favor, haga clic en el enlace enviado a su correo electrónico.","Indicates_required_field":"Indica campo obligatorio","Please_select_the_checkbox_":"Seleccione la casilla de verificación.","This_field_is_required_":"Este campo es obligatorio.","Should_be_a_valid_number_":"Debe ser un número válido.","Up_to_[_1]_decimal_places_are_allowed_":"Se permiten hasta [_1] decimales.","Should_be_[_1]":"Debería ser [_1]","Should_be_between_[_1]_and_[_2]":"Debe estar entre [_1] y [_2]","Should_be_more_than_[_1]":"Debe ser mayor a [_1]","Should_be_less_than_[_1]":"Debe ser menor a [_1]","Insufficient_balance_":"Saldo insuficiente.","Invalid_email_address_":"Correo electrónico no válido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"La contraseña debe tener letras minúsculas y mayúsculas del alfabeto inglés, con números.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Se permite sólo el uso de letras, números, espacios, guiones, puntos y apóstrofes.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Utilice solo letras, números, espacios y los siguientes caracteres especiales: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Se permite sólo el uso de letras, espacios, guiones, puntos y apóstrofes.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Utilice solo letras, números, espacios, y guiones.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Ingrese un número de teléfono válido (por ejemplo, +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Las dos contraseñas introducidas no coinciden.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] y [_2] no pueden ser iguales.","Minimum_of_[_1]_characters_required_":"Mínimo de [_1] caracteres requeridos.","You_should_enter_[_1]_characters_":"Debe ingresar [_1] caracteres.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Debe empezar con letra o número y puede contener guión y guión bajo.","Invalid_verification_code_":"Código de verificación inválido.","Your_password_cannot_be_the_same_as_your_email_address_":"Su contraseña no puede ser igual a su dirección de correo electrónico.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transacción realizada por [_1] (ID de aplicación: [_2])","Guide":"Guía","Next":"Siguiente","Finish":"Terminar","Step":"Paso","Select_your_market_and_underlying_asset":"Seleccione el mercado y activo subyacente","Select_your_trade_type":"Seleccione el tipo de contrato","Adjust_trade_parameters":"Ajustar parámetros de contrato","Predict_the_directionand_purchase":"Prediga la dirección
y compre","Your_session_duration_limit_will_end_in_[_1]_seconds_":"El límite de duración de su sesión terminará en [_1] segundos.","January":"Enero","February":"Febrero","March":"Marzo","April":"Abril","May":"Mayo","June":"Junio","July":"Julio","August":"Agosto","September":"Septiembre","October":"Octubre","November":"Noviembre","December":"Diciembre","Jan":"Ene","Apr":"Abr","Aug":"Ago","Dec":"Dic","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Miércoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"Sábado","Su":"DO","Mo":"Lu","Tu":"MA","We":"Mié","Th":"Ju","Fr":"Vie","Sa":"Sáb","Previous":"Anterior","Hour":"Hora","Minute":"Minuto","Verification_required":"Verificación requerida","Verify_identity":"Verificar identidad","From_account:_":"De la cuenta: ","To_account:_":"A la cuenta: ","Not_announced_for_this_currency_":"No anunciado para esta moneda.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Restablecer el saldo de su cuenta virtual a [_1] en cualquier momento.","[_1]Manage_your_accounts[_2]":"[_1]Gestione sus cuentas[_2]","time":"vez","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"vez o cree una cuenta real de MT5 (o una cuenta real de Deriv X en deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Ya no puede cambiar la moneda porque ha creado una cuenta real de MT5 (o una cuenta real de Deriv X en deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Ya no puede cambiar la moneda porque realizó un depósito por primera vez.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La moneda de su cuenta fiat actualmente está configurada en [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La moneda de su cuenta fiat está configurada en [_1].","This_is_your_[_1]_account_":"Esta es su cuenta [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Puede [_1]establecer una nueva moneda[_2] antes de depositar por primera [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"¿No quiere comerciar en [_1]? Puede abrir otra cuenta en criptomoneda.","Switch_account":"Cambiar de cuenta","Switch_account?":"¿Cambiar de cuenta?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Para depositar dinero, por favor cambie a su [_1] cuenta.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Para retirar dinero, por favor cambie a su [_1] cuenta.","Switch_to_crypto_account?":"¿Cambiar a la cuenta cripto?","To_deposit_cryptocurrency,_switch_your_account_":"Para depositar criptomonedas, cambie su cuenta.","To_withdraw_cryptocurrency,_switch_your_account_":"Para retiros de criptomonedas, cambie su cuenta.","Withdraw":"Retirar","Deposit":"Depositar","Town/City":"Pueblo/Ciudad","First_line_of_home_address":"Primera línea de dirección","Postal_Code/ZIP":"Código postal / C.P.","State/Province":"Estado/Provincia","Email_address":"Dirección de correo electrónico","Telephone":"Teléfono","Country_of_Residence":"País de residencia","details":"detalles","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nuestro cajero está temporalmente fuera de servicio debido al mantenimiento del sistema. Puede acceder al Cajero en unos minutos cuando se complete el mantenimiento.","Your_cashier_is_locked_":"Su cajero está bloqueado.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Tenga en cuenta que la moneda seleccionada está permitida solo para cuentas limitadas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Ha alcanzado el límite de retiro. Suba su prueba de identidad y de domicilio para levantar su límite y continuar con su retiro.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Los servicios de Agente de Pago no están disponibles en su país o en su moneda preferida.","Select_payment_agent":"Seleccionar agente de pago","Amount_in":"Valor en","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Se permite solo el uso de letras, números, espacios, guiones, puntos, comas y apóstrofes.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Su solicitud de retiro [_1] [_2] de su cuenta [_3] al agente de pagos [_4] se ha procesado correctamente.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Su token ha expirado o es inválido. Haga clic [_1]aquí[_2] para reiniciar el proceso de verificación.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Lo sentimos, los retiros para esta moneda están actualmente deshabilitados.","Please_[_1]deposit[_2]_to_your_account_":"Por favor, [_1]deposite saldo[_2] en su cuenta.","Sorry,_account_signup_is_not_available_in_your_country_":"Lo sentimos, pero no es posible abrir una cuenta en su país.","Asset":"Activo","Opens":"Abre","Closes":"Cierra","Settles":"Liquida","Upcoming_Events":"Próximos eventos","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Agregue un +/- para definir el intervalo de tolerancia de la barrera. Por ejemplo, +0,005 significa una barrera superior al punto de entrada en 0,005.","Digit":"Dígito","Percentage":"Porcentaje","Waiting_for_entry_tick_":"Esperando el tick de entrada.","High_Barrier":"Barrera Superior","Low_Barrier":"Barrera inferior","Waiting_for_exit_tick_":"Esperando el tick de salida.","Ticks_history_returned_an_empty_array_":"El historial de ticks devolvió una matriz vacía.","Chart_is_not_available_for_this_underlying_":"El gráfico no se encuentra disponible para este subyacente.","Purchase":"Comprar","Net_profit":"Beneficio Neto","Return":"Ganancias","Time_is_in_the_wrong_format_":"La hora está en el formato equivocado.","Rise/Fall":"Alza/Baja","Higher/Lower":"Superior/Inferior","Matches/Differs":"Iguales/Diferentes","Even/Odd":"Par/Impar","Over/Under":"Encima/Debajo","High-Close":"Cierre-Alto","Close-Low":"Cierre-Bajo","High-Low":"Alto-Bajo","Up/Down":"Arriba/Abajo","Only_Ups/Only_Downs":"Solo Arriba/Solo Abajo","In/Out":"Dentro/Fuera","Select_Trade_Type":"Seleccionar tipo de operación","Spot_Time_(GMT)":"Hora Spot (GTM)","seconds":"segundos","minutes":"minutos","hours":"horas","days":"días","ticks":"intervalos","second":"segundo","minute":"minuto","hour":"hora","day":"día","Duration":"Duración","End_Time":"Hora de término","Purchase_request_sent":"Solicitud de compra enviada","High":"Máximo","Close":"Cerrar","Low":"Bajo","Select_Asset":"Seleccionar activo","Search___":"Buscar...","Maximum_multiplier_of_1000_":"Máximo multiplicador de 1000.","Stake":"Inversión","Payout":"Pago","Multiplier":"Multiplicador","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Lo sentimos, su cuenta no está autorizada para continuar con la compra de contratos.","Trading_is_unavailable_at_this_time_":"No se puede operar en este momento.","Please_reload_the_page":"Por favor, vuelva a cargar la página","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"No se permiten más operaciones en este tipo de contrato durante la actual sesión de operaciones. Para más información, diríjase a nuestros [_1]términos y condiciones[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Su solicitud para ser tratado como un cliente profesional está siendo procesada.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Su solicitud de cliente profesional fue [_1]no aprobada[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Por favor, vuelva a solicitar una vez que se hayan cumplido los criterios requeridos.","More_information_can_be_found_in_an_email_sent_to_you_":"Puede encontrar más información en un correo electrónico enviado a usted.","I_want_to_reapply":"Quiero solicitar de nuevo","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"En la UE, las opciones binarias financieras solo se encuentran disponibles para inversores profesionales.","Apply_now_as_a_professional_investor":"Aplicar como un inversor profesional","Try_our_[_1]Synthetic_Indices[_2]_":"Pruebe nuestros [_1]Índices sintéticos[_2].","Try_our_other_markets_":"Pruebe nuestros otros mercados.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Por favor, complete el [_1]formulario de la Cuenta Real[_2] para verificar su edad según lo requerido por la [_3]Comisión de juegos de azar de Reino Unido[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"El acceso a la cuenta está temporalmente limitado. Por favor revise su bandeja de entrada para más detalles.","Contract_Confirmation":"Confirmación del contrato","Your_transaction_reference_is":"La referencia de su transacción es","Total_Cost":"Costo total","Potential_Payout":"Pago potencial","Potential_Profit":"Ganancia potencial","View":"Ver","This_contract_won":"Este contrato ganó","This_contract_lost":"Este contrato perdió","The_reset_time_is_[_1]":"El tiempo de reset es [_1]","Now":"Ahora","Average":"Promedio","Buy_price":"Precio de compra","Final_price":"Precio final","Loss":"Pérdida","Profit":"Beneficios","Account_balance:":"Saldo de la cuenta:","Reverse_Side":"Reverso","Front_Side":"Parte delantera","Pending":"Pendiente","Submitting":"Enviando","Submitted":"Enviado","Failed":"Fallado","Compressing_Image":"Comprimiendo imagen","Checking":"Verificando","Checked":"Verificado","Unable_to_read_file_[_1]":"No fue posible leer el archivo [_1]","Passport":"Pasaporte","Identity_card":"Cédula de identidad","Driving_licence":"Licencia de conducir","Invalid_document_format_":"Formato de documento inválido.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"El archivo ([_1]) excede el tamaño permitido. Máximo tamaño permitido: [_2]","ID_number_is_required_for_[_1]_":"La cédula de identidad es requerida para [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"La cédula de identidad ([_1]) solo puede contener letras, números, espacios, guiones bajos y guiones.","Expiry_date_is_required_for_[_1]_":"Fecha de vencimiento es requerida por [_1].","Place_of_birth":"Lugar de nacimiento","Please_select_the_country_of_document_issuance":"Por favor, seleccione el país de emisión del documento","Choose_the_document_type":"Elija el tipo de documento","Please_enter_the_correct_format__Example:":"Por favor, ingrese el formato correcto. Ejemplo:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Revise el correo electrónico de su cuenta de Google y haga clic en el enlace del correo electrónico para continuar.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Revise el correo electrónico de su cuenta de Facebook y haga clic en el enlace del correo electrónico para continuar.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Revise la cuenta de correo electrónico asociada con su ID de Apple y haga clic en el enlace del correo electrónico para continuar.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Haga clic en el enlace del correo electrónico para cambiar su contraseña MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Haga clic en el enlace del correo electrónico para cambiar su contraseña binary.","We’ve_sent_you_an_email":"Le hemos enviado un correo electrónico","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Está utilizando su cuenta [_1] para acceder a su cuenta de Binary.com. Para cambiar su método de inicio de sesión y utilizar un nombre de usuario y una contraseña, haga clic en el botón [_2]Desconectar[_3].","Linked_with_[_1]":"Vinculado con [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Deberá establecer una contraseña para completar el proceso.","Are_you_sure_you_want_to_unlink_from_[_1]?":"¿Está seguro de que desea desvincularse de [_1]?","Unlink":"Desvincular","Country_not_found":"País no encontrado","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Actualmente no se admiten documentos de ese país: pruebe con otro tipo de documento","Submit_document":"Enviar documento","Select_country":"Seleccione país","e_g__United_States":"p.ej. Estados Unidos","Search_for_country":"Buscar país","Select_issuing_country":"Seleccione país de expedición","Submit_verification":"Enviar verificación","Tips":"Consejos","Documents_uploaded":"Documentos subidos","Document_uploaded":"Documento subido","Selfie_uploaded":"Selfie subido","We're_now_ready_to_verify_your_identity":"Ahora estamos listos para verificar su identidad","Great,_that's_everything_we_need":"Genial, eso es todo lo que necesitamos","The_link_only_works_on_mobile_devices":"El enlace solo funciona en dispositivos móviles","Something's_gone_wrong":"Algo salió mal","You'll_need_to_restart_your_verification_on_your_computer":"Deberá reiniciar la verificación en su computadora","Get_secure_link":"Obtenga un enlace seguro","Steps_required_to_continue_verification_on_your_mobile":"Pasos necesarios para continuar con la verificación en su móvil","Check_back_here_to_finish_the_submission":"Vuelve a consultar aquí para finalizar el envío","Open_the_link_and_complete_the_tasks":"Abra el enlace y complete las tareas","Send_a_secure_link_to_your_phone":"Envíe un enlace seguro a su teléfono","Here's_how_to_do_it:":"He aquí cómo hacerlo:","Continue_on_your_phone":"Continuar en su teléfono","Your_computer_may_take_a_few_seconds_to_update":"Su computadora puede tardar unos segundos en actualizarse","You_can_now_return_to_your_computer_to_continue":"Ahora puede regresar a su computadora para continuar","Uploads_successful":"Subido con éxito","Make_sure_everything_is_clear":"Asegúrese de que todo esté claro","Blurry_photo_detected":"Se detectó una foto borrosa","Make_sure_full_document_is_visible":"Asegúrese de que el documento completo esté visible","Cut-off_image_detected":"Foto cortada detectada","Move_away_from_direct_light":"Aléjese de la luz directa","Glare_detected":"Reflejos detectados","Make_sure_all_of_the_document_is_in_the_photo":"Asegúrese de que todo el documento esté en la foto","No_document_detected":"No se detectó ningún documento","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su tarjeta se lean claramente, sin borrosidad ni reflejos","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Nos llevará más tiempo verificarlo si no podemos leerlo","To_smoothly_verify_you,_we_need_a_better_photo":"Para verificarlo sin problemas, necesitamos una mejor foto","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su licencia se lean claramente, sin borrosidad ni reflejos","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su pasaporte se lean claramente, sin borrosidad ni reflejos","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles de su permiso se lean claramente, sin borrosidad ni reflejos","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Asegúrese de que los detalles sean claros para leer, sin borrosidad ni reflejos","Redo":"Rehacer","Confirm":"Confirmar","Upload_anyway":"Subir de todos modos","Enlarge_image":"Ampliar foto","Photo_of_your_document":"Foto de su documento","Check_your_image":"Revise su foto","Front_and_back":"Anverso y reverso","Driver's_license":"Licencia de conducir","Face_photo_page":"Página de foto de cara","Residence_permit":"Permiso de residencia","Sorry,_no_mobile_phone_bills":"Lo sentimos, no se aceptan facturas de teléfono móvil","Documents_you_can_use_to_verify_your_identity":"Documentos que puede utilizar para verificar su identidad","It_must_be_an_official_photo_ID":"Debe ser una identificación oficial con foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Estos documentos con más probabilidades muestran su domicilio actual","Choose_document":"Elija el documento","Select_a_%{country}_document":"Seleccione un documento de %{country}","or_upload_photo_–_no_scans_or_photocopies":"o suba una foto, no se aceptan escaneos ni fotocopias","Continue_on_phone":"Continuar en el teléfono","Take_a_photo_with_your_phone":"Tome una foto con su teléfono","Submit_identity_card_(back)":"Enviar la tarjeta de identidad (reverso)","Submit_identity_card_(front)":"Enviar la tarjeta de identidad (anverso)","Submit_license_(back)":"Enviar licencia (reverso)","Submit_license_(front)":"Enviar licencia (anverso)","Submit_passport_photo_page":"Enviar la página con la foto del pasaporte","Submit_residence_permit_(back)":"Presentar permiso de residencia (reverso)","Submit_residence_permit_(front)":"Presentar permiso de residencia (anverso)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Reiniciar el proceso en la última versión de Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Reiniciar el proceso en la última versión de Safari","Unsupported_browser":"Navegador no soportado","Close_identity_verification_screen":"Cerrar la pantalla de verificación de identidad","Dismiss_alert":"Descartar alerta","back":"atrás","close":"cerrar","Restart_process_on_a_different_device":"Reiniciar el proceso en un dispositivo diferente","Camera_not_detected":"Cámara no detectada","Must_be_under_10MB_":"Debe tener menos de 10MB.","File_size_exceeded_":"Se ha excedido el tamaño del archivo.","Try_using_another_file_type_":"Intente utilizar otro tipo de archivo.","File_not_uploaded_":"Archivo no cargado.","An_error_occurred_while_loading_the_component":"Se produjo un error al cargar el componente","Only_your_face_can_be_in_the_selfie":"Solo su cara puede estar en la selfie","Multiple_faces_found":"Varias caras encontradas","Your_face_is_needed_in_the_selfie":"Se necesita su cara en el selfie","No_face_found":"No se encontró rostro","Please_try_again":"Por favor, inténtelo de nuevo","Connection_lost":"Conexión perdida","Copy_the_link_to_your_phone":"Copie el enlace a su teléfono","Too_many_failed_attempts":"Demasiados intentos fallidos","Try_using_a_JPG_or_PNG_file":"Intente usar un archivo JPG o PNG","File_type_not_supported":"Tipo de archivo no compatible","Loading___":"Cargando...","Loading":"Cargando","Check_that_your_number_is_correct":"Compruebe que su número sea correcto","Copied":"Copiado","Copy":"Copiar","Send_link":"Enviar enlace","How_to_scan_a_QR_code":"Cómo escanear un código QR","Point_your_phone’s_camera_at_the_QR_code":"Apunte la cámara de su teléfono al código QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Si no funciona, descargue un escáner de códigos QR de Google Play o App Store","or":"O","Scan_QR_code":"Escanear código QR","Get_link_via_SMS":"Obtenga enlace por SMS","Copy_link":"Copiar enlace","Sending":"Enviando","Enter_mobile_number":"Ingrese el número de móvil","Enter_your_mobile_number:":"Ingrese el numero de su móvil:","Scan_the_QR_code_with_your_phone":"Escanee el código QR con su teléfono","Send_this_one-time_link_to_your_phone":"Envíe este enlace único a su teléfono","Open_the_link_on_your_mobile":"Abra el enlace en su móvil","Get_your_secure_link":"Obtenga su enlace seguro","Copy_the_link_to_your_mobile_browser":"Copie el enlace a su navegador móvil","Continue":"Continuar","Make_sure§":"Asegúrese§","2__Your_desktop_window_stays_open":"2. La ventana de su escritorio permanece abierta","1__This_link_was_sent_by_you":"1. Este enlace fue enviado por usted","Continue_with_the_verification":"Continuar con la verificación","Linked_to_your_computer":"Vinculado a su computadora","Take_a_photo_of_the_back_of_your_card":"Tome una foto del reverso de su tarjeta","Take_a_photo_of_the_front_of_your_card":"Tome una foto del anverso de su tarjeta","Take_a_photo_of_the_back_of_your_license":"Tome una foto del reverso de su licencia","Take_a_photo_of_the_front_of_your_license":"Tome una foto del anverso de su licencia","Take_a_photo_of_your_passport_photo_page":"Tome una foto de la página con foto de su pasaporte","Take_a_selfie_showing_your_face":"Tómese un selfie mostrando su cara","Take_a_photo_using_the_basic_camera_mode_instead":"Tome una foto usando el modo de cámara básico en su lugar","Take_a_photo":"Tome una foto","Passport_photo_page":"Página con foto de pasaporte","Thank_you":"Gracias","Verification_complete":"Verificación completada","Refresh":"Recargar","Recovery":"Recuperación","Follow_these_steps_to_recover_camera_access:":"Siga estos pasos para recuperar el acceso a la cámara:","Refresh_this_page_to_restart_the_identity_verification_process":"Actualice esta página para reiniciar el proceso de verificación de identidad","Grant_access_to_your_camera_from_your_browser_settings":"Otorgue acceso a su cámara desde la configuración de su navegador","Recover_camera_access_to_continue_face_verification":"Recupere el acceso a la cámara para continuar con la verificación de cara","Camera_access_is_denied":"El acceso a la cámara ha sido denegado","We_cannot_verify_you_without_using_your_camera":"No podemos verificarle sin usar su cámara","Enable_camera":"Habilitar cámara","When_prompted,_you_must_enable_camera_access_to_continue":"Cuando se le solicite, debe habilitar el acceso a la cámara para continuar","Allow_camera_access":"Permita el acceso a la cámara","Provide_the_whole_document_page_for_best_results":"Proporcione toda la página del documento para obtener mejores resultados","Upload_back_of_card_from_your_computer":"Suba la parte trasera de la tarjeta de identificación desde su computadora","Upload_front_of_card_from_your_computer":"Suba la parte delantera de la tarjeta de identificación desde su computadora","Upload_back_of_license_from_your_computer":"Suba la parte trasera de la licencia de conducir desde su computadora","Upload_front_of_license_from_your_computer":"Suba la parte delantera de la licencia de conducir desde su computadora","Upload_passport_photo_page_from_your_computer":"Suba la página con la foto de pasaporte desde su computadora","Upload_a_selfie_from_your_computer":"Suba un selfie desde su computadora","Take_photo":"Tome una foto","Upload":"Subir","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Compruebe que esté conectado y en funcionamiento. También puede continuar la verificación en su teléfono","Make_sure_your_device_has_a_working_camera":"Asegúrese de que su dispositivo tenga una cámara que funcione","Camera_not_working?":"¿La cámara no funciona?","It_may_be_disconnected__Try_using_your_phone_instead_":"Puede estar desconectada. Intente usar la de su teléfono.","Make_sure_your_device's_camera_works":"Asegúrese de que la cámara de su dispositivo funcione","Camera_not_working":"La cámara no funciona","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Recuerde pulsar Stop cuando haya terminado. Rehacer acciones de video","Looks_like_you_took_too_long":"Parece que tardó demasiado","View_from_camera":"Vista desde la cámara","Take_a_selfie":"Tómese un selfie","Photo_of_your_face":"Foto de su cara","Make_sure_your_selfie_clearly_shows_your_face":"Asegúrese de que su selfie muestre claramente su rostro","Check_selfie":"Revisar selfie","Tips_to_take_a_good_selfie":"Consejos para sacarse un buen selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Mire hacia adelante y asegúrese de que sus ojos se vean claramente","Remove_your_glasses,_if_necessary":"Quítese las gafas, si es necesario","We'll_compare_it_with_your_document":"Lo compararemos con su documento","Your_link_will_expire_in_one_hour":"Su enlace caducará en una hora","Keep_this_window_open_while_using_your_mobile":"Mantenga esta ventana abierta mientras usa su móvil","Resend_link":"Reenviar enlace","We've_sent_a_secure_link_to_%{number}":"Hemos enviado un enlace seguro a %{number}","It_may_take_a_few_minutes_to_arrive":"Puede que tarde unos minutos en llegar","Check_your_mobile":"Revise su móvil","Your_mobile_link_will_expire_in_one_hour":"Su enlace móvil caducará en una hora","Don't_refresh_this_page":"No actualice esta página","Once_you've_finished_we'll_take_you_to_the_next_step":"Una vez que haya terminado, le llevaremos al siguiente paso","Connected_to_your_mobile":"Conectado a su móvil","Upload_photo":"Subir foto","Example_of_a_blurry_document":"Ejemplo de un documento borroso","All_details_must_be_clear_—_nothing_blurry":"Todos los detalles deben ser claros, nada borroso","Example_of_a_cut-off_document":"Ejemplo de un documento cortado","Show_all_details_—_including_the_bottom_2_lines":"Mostrar todos los detalles, incluidas las 2 últimas líneas","Example_of_a_document_with_glare":"Ejemplo de un documento con reflejo","Move_away_from_direct_light_—_no_glare":"Aléjese de la luz directa, sin reflejos","Document_example":"Ejemplo de documento","The_photo_should_clearly_show_your_document":"La foto debe mostrar claramente su documento","Scans_and_photocopies_are_not_accepted":"No se aceptan escaneos ni fotocopias","Upload_passport_photo_page":"Suba la página de la foto del pasaporte","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Para abrir una cuenta bancaria, necesitaremos verificar su identidad.","It_will_only_take_a_couple_of_minutes_":"Solo le tomará un par de minutos.","Verify_Identity":"Verificar identidad","Open_your_new_bank_account":"Abra su nueva cuenta bancaria","Please_enter_a_valid_Login_ID_":"Ingrese un ID de usuario válido.","Amount":"Monto","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Su solicitud de transferencia [_1] [_2] de [_3] a [_4] ha sido procesada exitosamente.","Resale_not_offered":"No se ofrece reventa","You've_made_no_transactions_of_this_type_up_to_this_date_":"No ha realizado transacciones de este tipo hasta la fecha.","Date":"Fecha","Contract":"Contrato","Purchase_Price":"Precio de compra","Sale_Date":"Fecha de Venta","Sale_Price":"Precio de Venta","Profit/Loss":"Ganancia/Pérdida","Details":"Detalles","Total_Profit/Loss":"Ganancias/pérdidas totales","Action_required!":"¡Acción requerida!","Sorry,_an_error_occurred_while_processing_your_request_":"Lo sentimos, ha ocurrido un error mientras se procesaba su solicitud.","position(s)":"posición(es)","withdrawal(s)":"retiro(s)","We_couldn’t_read_that!":"¡No hemos podido leer eso!","Remaining_characters:_[_1]_":"Caracteres restantes: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"No ingrese más de [_1] caracteres para ambos campos.","Only_[_1]_are_allowed_":"Se permite solo [_1].","letters":"letras","numbers":"números","space":"espacio","Please_select_at_least_one_scope":"Por favor, seleccione al menos un objetivo","New_token_created_":"Un token nuevo ha sido creado.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"El máximo número de tokens ([_1]) ha sido alcanzado.","Name":"Nombre","Scopes":"Alcances","Last_Used":"Última vez usado","Action":"Acción","Are_you_sure_that_you_want_to_permanently_delete_the_token":"¿Está seguro de querer eliminar definitivamente el token?","Delete":"Eliminar","Never_Used":"Nunca usado","You_have_not_granted_access_to_any_applications_":"No ha concedido acceso a ninguna aplicación.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"¿Está seguro de que desea revocar permanentemente el acceso a la aplicación?","Revoke_access":"Revocar el acceso","Admin":"Administrador","Payments":"Pagos","Read":"Leer","Trade":"Operar","Trading_Information":"Información sobre trading","Never":"Nunca","Permissions":"Permisos","Last_Login":"Último ingreso","You_did_not_change_anything_":"No ha cambiado nada.","Your_changes_have_been_updated_successfully_":"Sus cambios se han actualizado con éxito.","Successful":"Exitoso","Date_and_Time":"Fecha y hora","Browser":"Navegador","IP_Address":"Dirección IP","Status":"Estado","Your_account_has_no_Login/Logout_activity_":"Su cuenta no tiene actividad de accesos/cierres de sesión.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Su cuenta está totalmente autenticada y su límite de retirada ha sido aumentado.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Su límite de retiro diario [_1] es actualmente [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Ya ha retirado un total de [_1][_2] en los últimos [_3] días.","Your_withdrawal_limit_is_[_1][_2]_":"Su límite de retiro es [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Ya ha retirado [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Por lo tanto, su saldo extraíble es solo hasta [_1][_2], sujeto a los fondos disponibles de su cuenta.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Por favor, confirme que toda la información anterior es verdadera y está completa.","Your_settings_have_been_updated_successfully_":"Se han actualizado sus preferencias.","Sorry,_an_error_occurred_while_processing_your_account_":"Lo sentimos, ha ocurrido un error mientras se procesaba su cuenta.","Please_select_a_country":"Seleccione un país","Timed_out_until":"Bloqueado hasta","Excluded_from_the_website_until":"Excluido del sitio web hasta","Session_duration_limit_cannot_be_more_than_6_weeks_":"El límite de duración de la sesión no puede ser superior a 6 semanas.","Time_out_must_be_after_today_":"El tiempo de inactividad debe ser después de hoy.","Time_out_cannot_be_more_than_6_weeks_":"El tiempo de bloqueo no puede ser mayor a seis semanas.","Time_out_cannot_be_in_the_past_":"El tiempo de inactividad no puede ser en el pasado.","Please_select_a_valid_time_":"Seleccione una hora válida.","Exclude_time_cannot_be_less_than_6_months_":"El tiempo de exclusión no puede ser menor a 6 meses.","Exclude_time_cannot_be_for_more_than_5_years_":"El tiempo de exclusión no puede ser mayor a 5 años.","Confirm_changes":"Confirmar cambios","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Actualizaremos sus límites. Haga clic en [_1]Acordar y aceptar[_2] para reconocer que usted es totalmente responsable de sus acciones y que no somos responsables de ninguna adicción o pérdida.","Agree_and_accept":"Acordar y aceptar","Go_back":"Volver","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Si hace clic en \"OK\", no se le permitirá operar en el sitio hasta la fecha seleccionada.","Your_changes_have_been_updated_":"Sus cambios se han guardado.","Disable":"Desactivar","Enable":"Activar","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Usted ha activado con éxito la autenticación de dos factores para su cuenta.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Usted ha desactivado con éxito la autenticación de dos factores para su cuenta.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"No es necesario que autentique su cuenta en este momento. [_1]Le informaremos cuándo debe autenticar su cuenta.","No_authentication_required":"No se requiere autenticación","Back_to_trading":"Volver al trading","You_are_categorised_as_a_professional_client_":"Está categorizado como un cliente profesional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Usted está categorizado como cliente minorista. Mande solicitud para ser tratado como un trader profesional.","Bid":"Oferta","Closed_Bid":"Cerrar oferta","Reference_ID":"ID de referencia","Description":"Descripción","Credit/Debit":"Crédito/débito","Balance":"Saldo","Top_up_error":"Error de recarga","Understood":"Entendido","Top-up_successful":"Recarga exitosa","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] ha sido acreditado en su Cuenta Virtual: [_2].","Go_to_statement":"Ir al extracto","Continue_trading":"Seguir operando","Your_Demo_balance_has_been_reset_":"Su saldo virtual se ha restablecido.","Account":"Cuenta","Available_Markets":"Mercados disponibles","Type":"Tipo","Currency":"Divisa","Multipliers_Account":"Cuenta de Multiplicadores","Gaming_Account":"Cuenta de juego","Options_Account":"Cuenta de opciones","Real_Account":"Cuenta real","Counterparty":"Contraparte","Jurisdiction":"Jurisdicción","Create_account":"Crear cuenta","Change_currency":"Cambiar moneda","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Está limitado a una cuenta en moneda fiat. La moneda de su cuenta fiat puede ser cambiada antes de depositar en su cuenta fiat por primera vez o crear una cuenta real MT5 (o una cuenta real Deriv X en deriv.com). También puede abrir una cuenta para cada criptomoneda admitida.","This_account_is_disabled":"Esta cuenta está deshabilitada","This_account_is_excluded_until_[_1]":"Esta cuenta se encuentra excluida hasta [_1]","Set_currency":"Definir moneda","Commodities":"Materias primas","Stock_Indices":"Indices bursátiles","Stocks":"Acciones","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Si tiene una cuenta con nosotros, le enviaremos un enlace a su correo electrónico en unos minutos para restablecer su contraseña.","Sign_up":"Crear cuenta","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Los contratos por diferencia (CFD) en índices sintéticos pueden no ser adecuados para todos. Asegúrese de que comprende completamente los riesgos involucrados, incluyendo la posibilidad de perder todos los fondos en su cuenta MT5. El juego puede ser adictivo, por favor juegue con responsabilidad.","Do_you_wish_to_continue?":"¿Desea continuar?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Está a punto de comprar un producto que no es sencillo y puede ser difícil de entender: los contratos por diferencia y el forex. Como regla general, la CNMV considera que dichos productos no son apropiados para clientes minoristas, debido a su complejidad.","{SPAIN_ONLY}This_is_a_product_with_leverage__You_should_be_aware_that_losses_may_be_higher_than_the_amount_initially_paid_to_purchase_the_product_":"Este es un producto con apalancamiento. Debe tener en cuenta que las pérdidas pueden ser más altas que el monto pagado inicialmente para comprar el producto.","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"Sin embargo, Binary Investments (Europe) Ltd ha evaluado su conocimiento y experiencia y considera el producto apropiado para usted.","Acknowledge":"Confirmar","Change_Password":"Cambiar contraseña","The_investor_password_of_account_number_[_1]_has_been_changed_":"Se ha cambiado la contraseña del inversor de la cuenta número [_1].","Reset_Password":"Restablecer contraseña","Verify_Reset_Password":"Verificar nueva contraseña","Please_check_your_email_for_further_instructions_":"Por favor, revise su correo para más instrucciones.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"[_1] depósito desde [_2] a la cuenta número [_3] se ha realizado con éxito. ID de transacción: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Retiro de [_1] desde la cuenta número [_2] a [_3] se ha realizado con éxito. ID de transacción: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Para realizar retiros de MetaTrader 5 [_1] por favor [_2]Autentique[_2] su cuenta Binary.","Current_password":"Contraseña actual","New_password":"Nueva contraseña","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Para transferir fondos a su cuenta de MT5, introduzca una cantidad de [_1] o más","You_have_insufficient_funds_in_your_MT5_account_":"No tiene fondos suficientes en su cuenta MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Lo sentimos, esta función no está disponible en su jurisdicción.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Debido a un problema en nuestro servidor, algunas de sus cuentas MT5 no están disponibles en este momento. [_1]Por favor, tenga paciencia con nosotros y gracias por su cooperación.","Unavailable":"No disponible","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] ha sido acreditado en su cuenta demo de MT5: [_2].","_(Region_added)":" (Región agregada)","_(Temporarily_unavailable)":" (Temporalmente no disponible)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nuestros servidores MT5 no están disponibles temporalmente. Estamos trabajando para restaurarlos. Vuelva a intentarlo en unos minutos.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Utilice la contraseña de MT5 para iniciar sesión en cualquiera de sus cuentas MT5 cuando utilice aplicaciones MT5 en su móvil u otros dispositivos.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Esta acción cambiará las contraseñas de todas sus cuentas de [_1].","Demo_Accounts":"Cuentas de prueba","Real-Money_Accounts":"Cuentas de dinero real","Demo_Account":"Cuenta de prueba","Real-Money_Account":"Cuenta de dinero real","for_account_[_1]":"para la cuenta [_1]","[_1]_Account_[_2]":"Cuenta [_1] [_2]","MT5_Financial":"MT5 Financiero","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Introduzca su contraseña MT5 para añadir una cuenta [_1] [_2].","MT5_Synthetic":"Sintética MT5","Get_[_1]":"Obtenga [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"El saldo de su cuenta demo es de [_1] o menos. Puede recargar su cuenta con unos [_2] adicionales.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Puede recargar su cuenta de prueba con unos [_1] adicionales si su saldo es [_2] o menos.","Yes,_I'm_sure":"Sí, estoy seguro","Are_you_sure?":"¿Está seguro?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"No podrá cambiar la moneda de su cuenta fiat después de crear esta cuenta [_1]. ¿Está seguro que desea continuar?","OK":"Aceptar","Go_to_Deriv_to_add_an_MT5_account":"Ir a Deriv para añadir una cuenta MT5","Back":"Atrás","Address":"Domicilio","Account_currency":"Moneda de la cuenta","Financial_assessment":"Evaluación financiera","Personal_details":"Datos personales","Terms_of_use":"Términos de uso","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) es una versión de Tether vinculada al USD y desarrollada en el blockchain de Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) es una versión de Tether vinculada al USD y alojada en la plataforma de Ethereum.","Title_and_name":"Título y nombre","Real_money_account_opening":"Apertura de cuenta de dinero real","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Su token ha caducado o no es válido. Haga clic aquí para reiniciar el proceso de verificación.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"La dirección de correo electrónico proporcionada ya está en uso. Si olvidó su contraseña, pruebe nuestra herramienta de recuperación de contraseña o póngase en contacto con nuestro servicio de atención al cliente.","Password_is_not_strong_enough_":"La contraseña no es lo suficientemente fuerte.","Upgrade_now":"Actualice ahora","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] días [_2] horas [_3] minutos","Your_trading_statistics_since_[_1]_":"Las estadísticas de sus transacciones desde [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Las operaciones de [_1] pueden convertirse en una verdadera adicción, al igual que cualquier otra actividad llevada al límite. Para evitar el peligro de tal adicción, proporcionamos un control de realidad que le brinda un resumen de sus operaciones y cuentas de manera regular.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Haga clic en el siguiente enlace para reiniciar el proceso de recuperación de contraseña.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Tiene una nueva contraseña de Binary para entrar en Binary.com.","Success":"Éxito","Done":"Finalizado","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Su cuenta de Binary está desvinculada de [_1]. Utilice [_2]su correo electrónico y contraseña para iniciar sesión en el futuro.","Success!":"¡Éxito!","Got_it":"Entendido","Binary_Password_Reset":"Restablecer la contraseña Binary","Binary_password":"Contraseña Binary","You_have_added_a_[_1]_account_":"Ha agregado una cuenta [_1].","Add_account":"Añadir cuenta","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether como token Omni (USDT) es una versión de Tether que está alojada en la capa Omni de la cadena de bloques de Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether como token ERC20 (eUSDT) es una versión de Tether que está alojada en Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether como token TRC20 (tUSDT) es una versión de Tether que está alojada en Tron.","Add_new_crypto_account":"Añadir nueva cuenta cripto","Add_new_account":"Añadir cuenta nueva","Create_a_cryptocurrency_account":"Cree una cuenta de criptomonedas","Choose_your_preferred_cryptocurrency":"Elija su criptomoneda preferida","You_can_open_an_account_for_each_cryptocurrency_":"Puede abrir una cuenta para cada criptomoneda.","Choose_a_cryptocurrency_account":"Elija una cuenta de criptomonedas","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Elija una de sus cuentas o agregue una nueva cuenta de criptomonedas","Choose_an_account":"Elija una cuenta","Choose_one_of_your_accounts_or_add_a_new_account":"Elija una de sus cuentas o agregue una nueva cuenta ","Choose_one_of_your_accounts":"Elija una de sus cuentas","Please_select_the_currency_for_this_account:":"Por favor seleccione la moneda para esta cuenta:","deposit":"depositar","deposit_or_create_a_CFDs_account":"deposite o cree una cuenta de CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"¿Está seguro que desea crear su cuenta [_1] ahora?","Note:":"Nota:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Puede abrir una cuenta para cada criptomonedas disponible.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"¿Está seguro que desea crear una cuenta fiat en [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Está limitado a una cuenta fiat. Puede cambiar la moneda de su cuenta fiat en cualquier momento antes de [_1] por primera vez.","Yes":"Sí","Create_[_1]_account":"Crear una cuenta [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Ha cambiado con éxito la moneda de su cuenta a [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Ha cambiado con éxito la moneda de su cuenta de [_1] a [_2].","Please_choose_a_currency":"Por favor elija una moneda","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Tiene una nueva contraseña de MT5 para acceder a sus cuentas [_1] en la aplicación web y móvil.","Accumulator":"Acumulador","Asian_Down":"Asiáticas abajo","Asian_Up":"Asiáticas arriba","Higher":"Superior","Higher_or_equal":"Mayor o igual","Digit_Differs":"Dígito difiere","Digit_Even":"Dígito par","Digit_Matches":"Dígito coincide","Digit_Odd":"Dígito impar","Digit_Over":"Dígito sobre","Digit_Under":"Dígito por debajo","Ends_Outside":"Finaliza fuera","Ends_Between":"Finaliza entre","Multiplier_Down":"Multiplicador abajo","Multiplier_Up":"Multiplicador arriba","Does_Not_Touch":"No Toca","Touches":"Toca","Lower":"Inferior","Lower_or_equal":"Inferior o igual","Stays_Between":"Permanece dentro","Only_Ups":"Solo Arriba","Only_Downs":"Solo Abajo","High_Tick":"Tick alto","Low_Tick":"Tick bajo","Goes_Outside":"Sale fuera","Equals":"Iguales","Not":"No","Buy":"Comprar","Sell":"Venta","Waiting_for_contract_settlement_":"En espera de la liquidación del contrato.","including_Deal_Cancel__Fee":"incluyendo la cuota de cancelación del contrato","Contract_has_not_started_yet":"El contrato no ha comenzado todavía","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Este contrato solo está disponible en [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Este contrato solo está disponible en DTrader.[_1][_2]Diríjase a Dtrader[_3] para cerrar o cancelar este contrato.","Contract_Result":"Resultado del contrato","Close_Time":"Hora de cierrre","Exit_Spot_Time":"Hora del punto de salida","Audit":"Auditoría","View_chart":"Ver gráfico","Audit_Page":"Página de auditoría","Contract_Starts":"Contrato empieza","Contract_Ends":"El contrato termina","Contract_Details":"Detalles del contrato","Target":"Objetivo","Contract_Information":"Información del contrato","Contract_Type":"Tipo de contrato","Transaction_ID":"ID de la transacción","Remaining_Time":"Tiempo restante","Maximum_payout":"Pago máximo","Barrier_Change":"Cambio de Límite","Current":"Actual","Spot_Time":"Hora Spot","Current_Time":"Hora actual","Indicative":"Indicativo","Potential_Profit/Loss":"Ganancia/Pérdida Potencial","Deal_Cancel__Fee":"Cuota de cancelación de contrato","You_can_close_this_window_without_interrupting_your_trade_":"Puede cerrar esta ventana sin interrumpir su operación.","There_was_an_error":"Hubo un error","Sell_at_market":"Vender al precio actual","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"El contrato se venderá al precio vigente en el mercado en el momento de la recepción de la solicitud de venta por nuestros servidores. Este precio puede ser diferente del precio indicado.","You_have_sold_this_contract_at_[_1]_[_2]":"Usted ha vendido este contrato en [_1] [_2]","Your_transaction_reference_number_is_[_1]":"El número de referencia de su transacción es [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"¡Gracias por registrarse! Compruebe su correo electrónico completar el proceso de registro.","All_markets_are_closed_now__Please_try_again_later_":"Todos los mercados están cerrados ahora. Inténtelo más tarde.","Withdrawal":"Retiro","demo_credit_to_account":"fondos virtuales en cuenta","login":"iniciar sesión","logout":"cerrar sesión","Asians":"Asiáticas","Digits":"Dígitos","Ends_Between/Ends_Outside":"Finaliza dentro/Finaliza fuera","High/Low_Ticks":"Ticks Altos/Bajos","Lookbacks":"Retroactivos","Stays_Between/Goes_Outside":"Permanece dentro/Sale","Touch/No_Touch":"Toca/No Toca","Christmas_Day":"Día de Navidad","Closes_early_(at_18:00)":"Cierra temprano (a las 18:00)","Closes_early_(at_21:00)":"Cierra temprano (a las 21:00)","Fridays":"Viernes","New_Year's_Day":"Día de año nuevo","today":"hoy","today,_Fridays":"hoy, los viernes","There_was_a_problem_accessing_the_server_":"Hubo un problema al acceder al servidor.","There_was_a_problem_accessing_the_server_during_purchase_":"Hubo un problema al acceder al servidor durante la compra."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/fr.js b/src/javascript/_autogenerated/fr.js index 47342489eec11..9bcb0c1ecd213 100644 --- a/src/javascript/_autogenerated/fr.js +++ b/src/javascript/_autogenerated/fr.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['FR'] = {"Real":"Réel","Multipliers":"Multiplicateurs","Gaming":"Jeu","Demo":"Démo","Real_CFDs":"CFD réels","Real_Financial":"Réel Financier","Demo_CFDs":"CFD démo","Demo_Financial":"Demo Financier","Synthetic":"Synthétique","Demo_Synthetic":"Demo Synthétique","Real_Synthetic":"Réel Synthétique","Financial":"Financier","Financial_STP":"Financier STP","Demo_Financial_STP":"Demo Financier STP","Real_Financial_STP":"Réel Financier STP","Thank_you,_we'll_get_back_to_you_within_24_hours":"Merci, nous vous répondrons dans les 24 heures","Online":"En ligne","Offline":"Hors connexion","Connecting_to_server":"Connexion au serveur","Use_a_few_words,_avoid_common_phrases":"Utilisez quelques mots, évitez les phrases courantes","No_need_for_symbols,_digits,_or_uppercase_letters":"Pas besoin de symboles, de chiffres ou de lettres majuscules","Add_another_word_or_two__Uncommon_words_are_better_":"Ajoutez un ou deux mots supplémentaires. Les mots peu courants sont meilleurs.","Straight_rows_of_keys_are_easy_to_guess":"Les rangées droites de clés sont faciles à deviner","Short_keyboard_patterns_are_easy_to_guess":"Les motifs de clavier courts sont faciles à deviner","Use_a_longer_keyboard_pattern_with_more_turns":"Utilisez un motif de clavier plus long avec plus de tours","Repeats_like_\"aaa\"_are_easy_to_guess":"Les répétitions telles que \"aaa\" sont faciles à deviner","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Les répétitions comme \"abcabcabc\" ne sont que légèrement plus difficiles à deviner que \"abc\"","Avoid_repeated_words_and_characters":"Évitez les mots et les caractères répétés","Sequences_like_abc_or_6543_are_easy_to_guess":"Les séquences comme abc ou 6543 sont faciles à deviner","Avoid_sequences":"Évitez les séquences","Recent_years_are_easy_to_guess":"Les dernières années sont faciles à deviner","Avoid_recent_years":"Évitez les dernières années","Avoid_years_that_are_associated_with_you":"Évitez les années qui vous sont associées","Dates_are_often_easy_to_guess":"Les dates sont souvent faciles à deviner","Avoid_dates_and_years_that_are_associated_with_you":"Évitez les dates et les années qui vous sont associées","This_is_a_top-10_common_password":"Ceci est un mot de passe commun parmi les 10 premiers","This_is_a_top-100_common_password":"Ceci est un mot de passe commun parmi les 100 premiers","This_is_a_very_common_password":"C'est un mot de passe très courant","This_is_similar_to_a_commonly_used_password":"Ceci est similaire à un mot de passe couramment utilisé","A_word_by_itself_is_easy_to_guess":"Un mot en lui-même est facile à deviner","Names_and_surnames_by_themselves_are_easy_to_guess":"Les noms et prénoms sont faciles à deviner","Common_names_and_surnames_are_easy_to_guess":"Les noms et prénoms communs sont faciles à deviner","Capitalization_doesn't_help_very_much":"La capitalisation n'aide pas beaucoup","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Tout en majuscules est presque aussi facile à deviner que tout en minuscules","Reversed_words_aren't_much_harder_to_guess":"Les mots inversés ne sont pas beaucoup plus difficiles à deviner","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Les substitutions prévisibles comme '@' au lieu de 'a' n'aident pas beaucoup","This_password_is_on_the_blacklist":"Ce mot de passe est sur la liste noire","Unknown_OS":"Système d’exploitation inconnu","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Vous serez redirigé vers un site tiers qui n’est pas détenu par Binary.com.","Click_OK_to_proceed_":"Cliquez sur OK pour continuer.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Veuillez vous assurer que vous avez l'app Telegram installée sur votre appareil.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] requiert que la fonction stockage web de votre navigateur soit activée pour fonctionner correctement. S’il vous plaît activer la ou quitter le mode de navigation privée.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"S’il vous plaît [_1]connectez vous[_2] ou [_3]inscrivez vous[_4] pour afficher cette page.","This_feature_is_available_to_demo_accounts_only_":"Cette fonctionnalité est disponible uniquement pour les comptes démo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Vous utilisez un compte démo. Veuillez passer à votre compte réel ou en créer un pour accéder à la caisse.","This_page_is_only_available_to_logged_out_clients_":"Cette page est uniquement disponible pour les clients connectés.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Le trading d'options binaires n'est pas disponible sur votre compte Multiplicateurs.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Le trading d'options binaires n'est pas disponible via votre compte Multiplicateurs.
Veuillez repasser sur votre compte Options.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Désolé, le trading d'options n'est pas disponible au Royaume-Uni et sur l'île de Man.","Binary_options_trading_is_not_available_in_your_country_":"Le trading d'options binaires n'est pas disponible dans votre pays.","This_page_is_not_available_in_your_country_of_residence_":"Cette page n'est pas disponible dans votre pays de résidence.","Page_not_available,_you_did_not_deactivate_your_account_":"La page n'est pas disponible, vous n'avez pas désactivé votre compte.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Malheureusement, ce service n'est pas disponible dans votre pays. Si vous souhaitez négocier des multiplicateurs, essayez DTrader sur Deriv.","Go_to_DTrader":"Allez à DTrader","Sign_out":"Désinscription","[_1]_Account":"Compte [_1]","Click_here_to_open_a_Real_Account":"Cliquez ici pour ouvrir un Compte Réel","Open_a_Real_Account":"Ouvrez un Compte Réel","Click_here_to_open_a_Multipliers_Account":"Cliquez ici pour ouvrir un Compte Multiplicateurs","Click_here_to_open_an_Options_account":"Cliquez ici pour ouvrir un compte Options","Open_a_Multipliers_Account":"Ouvrir un Compte Multiplicateurs","Create_Account":"Créer un compte","Accounts_List":"Liste des comptes","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Les dépôts sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer vos dépôts lorsque la maintenance sera terminée.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Les retraits sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer vos retraits lorsque la maintenance sera terminée.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse de cryptomonnaie est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Votre caisse est actuellement verrouillée. Veuillez nous contacter via le chat en direct pour savoir comment la déverrouiller.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Veuillez définir [_1]la devise de votre compte[_2] pour permettre les dépôts et les retraits.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Votre compte n'a pas été authentifié. Veuillez soumettre votre [_1]pièce d'identité et votre justificatif de domicile[_2] pour authentifier votre compte et demander des retraits.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Votre compte n'a pas été authentifié. Veuillez soumettre votre %pièce d'identité et votre justificatif de domicile[_2] pour authentifier votre compte et accéder à votre caisse.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Les documents d'identité que vous avez soumis ont expiré. Veuillez soumettre des documents d'identité valides pour débloquer la caisse.","Your_[_1]proof_of_identity[_2]_has_expired_":"Votre [_1]pièce d'identité[_2] a expiré.","Your_[_1]proof_of_address[_2]_has_expired_":"Votre [_1]justificatif de domicile[_2] a expiré.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Votre [_1]pièce d'identité[_3] et votre [_2]justificatif de domicile[_3] ont n'a pas été vérifiée.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Votre [_1]preuve d'identité[_2] n'a pas été vérifiée.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Votre [_1]preuve de domicile[_2] n'a pas été vérifiée.","Please_submit_your_[_1]proof_of_identity[_2]_":"Veuillez soumettre votre [_1]pièce d'identité[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Veuillez soumettre votre [_1]justificatif de domicile[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Vous avez choisi de vous exclure du trading sur notre site jusqu'à [_1]. Si vous ne parvenez pas à effectuer une transaction ou un dépôt après votre période d'auto-exclusion, veuillez nous contacter via le chat en direct.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Votre accès à la Caisse a été temporairement désactivé car vous n'avez pas défini votre limite de rotation de 30 jours. Veuillez vous rendre sur [_1]Self-exclusion[_2] et définir votre limite de rotation de 30 jours.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Les retraits MT5 ont été désactivés sur votre compte. Veuillez vérifier votre email pour plus de détails.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Malheureusement, vous ne pouvez effectuer que des dépôts. Veuillez nous contacter via le chat en direct pour permettre les retraits.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre dépôts et retraits.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les retraits. ","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les dépôts ","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Vous n'avez pas défini votre pays de résidence. Pour accéder à votre caisse, veuillez mettre à jour votre [_1]pays de résidence[_2] dans la section Données personnelles des paramètres de votre compte.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Votre caisse est verrouillée. Veuillez compléter l'évaluation [_1]financière[_2] pour la déverrouiller.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Vous n'avez pas fourni votre numéro d'identification fiscale. Cette information est nécessaire pour les exigences légales et réglementaires. Veuillez vous rendre dans [_1]Détails personnels[_2] dans les paramètres de votre compte et renseigner votre dernier numéro d'identification fiscale.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Malheureusement, vous ne pouvez effectuer que des retraits. Veuillez nous contacter via le chat en direct.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Les retraits ont été désactivés sur votre compte. Veuillez attendre que vos documents téléchargés soient vérifiés.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Veuillez [_1]accepter la dernière version des Conditions Générales [_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Veuillez [_1]accepter les Conditions Générales mises à jour[_2] pour supprimer vos limites de dépôt et de trading.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Votre compte est temporairement désactivé. Veuillez nous contacter via le chat en direct pour réactiver les dépôts et les retraits.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Veuillez remplir le test d'adéquation pour accéder à votre caisse.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Votre caisse est verrouillée. Consultez [_1]comment nous protégeons vos fonds[_2] avant de poursuivre.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Votre compte doit être authentifié. Veuillez soumettre votre [_1]document d'identité[_2] pour accéder à votre caisse.","Account_Authenticated":"Compte Authentifié","Connection_error:_Please_check_your_internet_connection_":"Erreur de connexion : veuillez vérifier votre connexion à Internet.","Network_status":"Statut réseau","This_is_a_staging_server_-_For_testing_purposes_only":"Il s'agit d'un serveur intermédiaire, utilisé uniquement à des fins de test","The_server_endpoint_is:_[_2]":"Le 1terminal 2 du serveur est : [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Votre navigateur internet ([_1]) est obsolète et cela peut affecter votre expérience de trading. Procédez à vos risques et périls. [_2]Mise à jour de navigateur internet[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Vous avez atteint la limite de tentatives par seconde. Veuillez réessayer ultérieurement.","There_was_some_invalid_character_in_an_input_field_":"Un caractère non valide a été saisi dans un champ.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"réglementée par la Commission des Jeux du Royaume-Uni (UKGC).","regulated_by_the_Malta_Gaming_Authority,":"réglementée par la Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"réglementée par la Malta Financial Services Authority (MFSA),","Please_select":"Sélection","Please_accept_the_terms_and_conditions_":"Veuillez accepter les conditions générales.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Veuillez confirmer que vous n’êtes pas une personne politiquement exposée.","Today":"Aujourd'hui","Select_date":"Sélectionnez la date","Barrier":"Barrière","Entry_Spot":"Point d'entrée","Exit_Spot":"Point de sortie","Charting_for_this_underlying_is_delayed":"Les graphiques sont retardés pour ce sous-jacent","Payout_Range":"Gamme de Paiement","Purchase_Time":"Heure d'achat","Reset_Barrier":"Barrière de Réinitialisation","Reset_Time":"Temps de réinitialisation","Selected_Tick":"Tick Sélectionné","Exit_Time":"Temps de sortie","Start_Time":"Heure de début","Step_[_1]:_[_2]_([_1]_of_[_3])":"Etape [_1]: [_2] ([_1] sur [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Le code de vérification est incorrect. Veuillez utiliser le lien envoyé à votre adresse email.","Indicates_required_field":"Indique un champ obligatoire","Please_select_the_checkbox_":"Veuillez cocher la case.","This_field_is_required_":"Ce champ est requis.","Should_be_a_valid_number_":"La saisie doit être un nombre valide.","Up_to_[_1]_decimal_places_are_allowed_":"Jusqu'à [_1] décimales seulement sont autorisées.","Should_be_[_1]":"Devrait être [_1]","Should_be_between_[_1]_and_[_2]":"La saisie doit se situer entre [_1] et [_2]","Should_be_more_than_[_1]":"Devrait être plus de [_1]","Should_be_less_than_[_1]":"La saisie doit être inférieure à [_1]","Insufficient_balance_":"Solde insuffisant.","Invalid_email_address_":"Adresse email non valide.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Le mot de passe doit être composé de majuscules, de minuscules et de chiffres.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Seuls les lettres, chiffres, espace, trait d'union et apostrophe sont permis.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Seulement des lettres, chiffres, espace et ces caractères spéciaux sont autorisés : [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Les lettres, les espaces, les traits d'union, la virgule et le point sont les seuls caractères autorisés.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Seuls les lettres, les chiffres, trait d'union et tiret sont autorisés.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Veuillez saisir un numéro de téléphone valide (par exemple +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Les deux mots de passe que vous avez entrés ne correspondent pas.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] et [_2] ne peuvent être identiques.","Minimum_of_[_1]_characters_required_":"Un minimum de [_1] caractères est requis.","You_should_enter_[_1]_characters_":"Vous devez saisir [_1] caractères.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Devrait commencer par une lettre ou un chiffre et peut contenir un trait d’union et un tiret bas.","Invalid_verification_code_":"Code de vérification invalide.","Your_password_cannot_be_the_same_as_your_email_address_":"Votre mot de passe ne peut pas être identique à votre adresse e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transaction effectuée par [_1] (identifiant d'application : [_2])","Next":"Suivant","Finish":"Finnois","Step":"Étape","Select_your_market_and_underlying_asset":"Sélectionnez votre marché et actif sous-jacent","Select_your_trade_type":"Sélectionnez votre type de transaction","Adjust_trade_parameters":"Définir les paramètres de la transaction","Predict_the_directionand_purchase":"Prédire la direction
et acheter","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Votre limite de durée de session sera atteinte dans [_1] secondes.","January":"janvier","February":"février","March":"mars","April":"avril","May":"mai","June":"juin","July":"juillet","August":"août","September":"septembre","October":"octobre","November":"novembre","December":"décembre","Jan":"jan.","Feb":"fév.","Mar":"mars","Apr":"avr.","Jun":"juin","Jul":"juill.","Aug":"août","Sep":"sep.","Oct":"oct.","Nov":"nov.","Dec":"déc.","Sunday":"dimanche","Monday":"lundi","Tuesday":"mardi","Wednesday":"mercredi","Thursday":"jeudi","Friday":"vendredi","Saturday":"samedi","Su":"Di","Mo":"Lu","Tu":"mar.","We":"Me","Th":"Je","Fr":"ven.","Previous":"Précédent","Hour":"Heure","AM":" ","PM":"Après midi","Verification_required":"Vérification requise","Verify_identity":"Vérifier l'indentité","From_account:_":"Du compte : ","To_account:_":"Au compte : ","Not_announced_for_this_currency_":"Pas d'annonce pour cette devise.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Réinitialisez le solde de votre compte démo à [_1] à tout moment.","[_1]Manage_your_accounts[_2]":"[_1]Gérer vos comptes[_2]","time":"dépôt","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"fois ou créer un vrai compte MT5 (ou un vrai compte Deriv X à deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Vous ne pouvez plus changer la devise parce que vous avez créé un vrai compte MT5 (ou un vrai compte Deriv X sur deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Vous ne pouvez plus changer la devise parce que vous avez effectué un tout premier dépôt.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La devise de votre compte fiat est actuellement en [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La devise de votre compte fiat est en [_1].","This_is_your_[_1]_account_":"Ceci est votre compte [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Vous pouvez [_1]choisir une nouvelle devise[_2] avant de faire un premier [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Vous ne voulez pas trader en [_1] ? Vous pouvez ouvrir un autre compte en cryptodevise.","Switch_account":"Changer de compte","Switch_account?":"Changer de compte ?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Pour déposer de l'argent, veuillez passer à votre compte [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Pour retirer de l'argent, veuillez passer à votre compte [_1].","Switch_to_crypto_account?":"Passer à un compte crypto ?","To_deposit_cryptocurrency,_switch_your_account_":"Pour déposer des cryptomonnaies, changez votre compte.","To_withdraw_cryptocurrency,_switch_your_account_":"Pour retirer des cryptomonnaies, changez votre compte.","Cancel":"Annuler","Withdraw":"Retrait","Deposit":"Dépôt","Town/City":"Ville","First_line_of_home_address":"Première ligne de l'adresse résidentielle","Postal_Code/ZIP":"Code postal","State/Province":"Etat/Province","Email_address":"Adresse e-mail","Telephone":"Téléphone","Country_of_Residence":"Pays de résidence","details":"informations","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Your_cashier_is_locked_":"Votre caisse est verrouillée.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Veuillez noter que la devise sélectionnée n'est autorisée que pour les comptes limités.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Vous avez atteint la limite de retrait. Veuillez télécharger votre preuve d'identité et d'adresse pour lever votre limite de retrait et procéder à votre retrait.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Les services d’Agent de Paiement ne sont pas disponibles dans votre pays ou dans votre devise préférée.","Select_payment_agent":"Sélectionnez l’agent de paiement","Amount_in":"Montant en","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Seuls les lettres, les chiffres, espace, trait d'union, point, virgule et apostrophe sont autorisés.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Votre demande de retirer [_1] [_2] de votre compte [_3] pour le compte de l'Agent de Paiement [_4] a été traitée avec succès.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Votre jeton a expiré ou est invalide. Veuillez cliquer [_1]ici[_2] pour relancer le processus de vérification.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Désolé, les dépôts pour cette devise sont actuellement désactivés.","Please_[_1]deposit[_2]_to_your_account_":"Veuillez [_1]faire un dépôt[_2] sur votre compte.","Sorry,_account_signup_is_not_available_in_your_country_":"Désolé, l'ouverture de compte n’est pas disponible dans votre pays.","Asset":"Actif","Opens":"Ouverture","Closes":"Clôture","Settles":"Règlements","Upcoming_Events":"Évènements à venir","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Ajouter + / – pour définir une compensation de barrière. Par exemple, +0.005 signifie une barrière qui est plus élevée que le point d’entrée de 0,005.","Digit":"Chiffre","Percentage":"Pourcentage","Waiting_for_entry_tick_":"En attente du tick d'entrée.","High_Barrier":"Barrière supérieure","Low_Barrier":"Barrière inférieure","Waiting_for_exit_tick_":"En attente du tick de sortie.","Ticks_history_returned_an_empty_array_":"L'historique des ticks retourne une gamme vide.","Chart_is_not_available_for_this_underlying_":"Le graphique n’est pas disponible pour ce sous-jacent.","Purchase":"Achat","Net_profit":"Bénéfice net","Return":"Retour sur investissement","Time_is_in_the_wrong_format_":"Le format de l'heure est incorrect.","Rise/Fall":"Hausse/Baisse","Higher/Lower":"Supérieur/Inférieur","Matches/Differs":"Égal/Différent","Even/Odd":"Pair/Impair","Over/Under":"Au dessus/En dessous","High-Close":"Haut-Clôture","Close-Low":"Clôture-Bas","High-Low":"Haut-Bas","Up/Down":"Hausse/Baisse","Only_Ups/Only_Downs":"Que des Montées/Que des Descentes","In/Out":"Zone In/Out","Select_Trade_Type":"Sélectionnez le Type de Trade","Spot_Time_(GMT)":"Temps Spot (GMT)","seconds":"secondes","hours":"heures","days":"jours","second":"seconde","hour":"heure","day":"jour","Duration":"Durée","End_Time":"Heure de fin","Purchase_request_sent":"Demande d’achat envoyé","High":"Haut","Close":"Clôture","Low":"Bas","Select_Asset":"Sélectionnez l'Actif","Search___":"Rechercher...","Maximum_multiplier_of_1000_":"Multiplicateur maximal de 1000.","Stake":"Investissement","Payout":"Paiement","Multiplier":"Multiplicateur","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Désolé, votre compte n'est autorisé pour aucun achat supplémentaire de contrat.","Trading_is_unavailable_at_this_time_":"Le Trading n’est pas disponible en ce moment.","Please_reload_the_page":"Veuillez recharger la page","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Votre application doit être traitée comme un client professionnel est en cours de traitement.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Votre demande de client professionnel [_1]n'est pas approuvée[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Veuillez réappliquer une fois que les critères requis ont été remplis.","More_information_can_be_found_in_an_email_sent_to_you_":"Plus d'informations peuvent être trouvées dans un email qui vous a été envoyé.","I_want_to_reapply":"Je veux postuler à nouveau","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Dans l’UE, les options binaires financières sont seulement disponibles aux investisseurs professionnels.","Apply_now_as_a_professional_investor":"Appliquer maintenant en tant qu'investisseur professionnel","Try_our_[_1]Synthetic_Indices[_2]_":"Essayez nos [_1]Indices Synthétiques[_2].","Try_our_other_markets_":"Essayez nos autres marchés.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Veuillez remplir le formulaire de [_1]Compte Réel[_2] pour vérifier votre âge comme l'exige la Commission des [_3]Jeux du Royaume-Uni[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"L'accès au compte est temporairement restreint. Veuillez vérifier votre boîte de réception pour plus de détails.","Contract_Confirmation":"Confirmation de contrat","Your_transaction_reference_is":"Votre référence de transaction est","Total_Cost":"Coût total","Potential_Payout":"Paiement potentiel","Potential_Profit":"Profits potentiels","View":"Affichage","This_contract_won":"Ce contrat a été gagné","This_contract_lost":"Ce contrat a été perdu","The_reset_time_is_[_1]":"Le temps de réinitialisation est [_1]","Now":"Maintenant","Average":"Moyenne","Buy_price":"Prix d'achat","Final_price":"Prix final","Loss":"Pertes","Profit":"Profits","Account_balance:":"Solde du compte :","Reverse_Side":"Verso","Front_Side":"Face Avant","Pending":"En attente","Submitting":"En cours de soumission","Submitted":"Soumis","Failed":"Échec","Compressing_Image":"Image en cours de compression","Checking":"Vérification en cours","Checked":"Vérifié","Unable_to_read_file_[_1]":"Incapable de lire les fichiers [_1]","Passport":"Passeport","Identity_card":"Carte d’identité","Driving_licence":"Permis de conduire","Invalid_document_format_":"Format de document invalide.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Taille du fichier ([_1]) dépasse la limite autorisée. La taille maximum du fichier est de : [_2]","ID_number_is_required_for_[_1]_":"Un numéro d’identification est nécessaire pour [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Seulement les lettres, chiffres, espace, tiret bas et trait d’union sont autorisés pour le numéro d’identification) ([_1]).","Expiry_date_is_required_for_[_1]_":"La date d’expiration est requise pour [_1].","Place_of_birth":"Lieu de naissance","Please_select_the_country_of_document_issuance":"Veuillez sélectionner le pays de délivrance du document","Choose_the_document_type":"Choisissez le type de document","Please_enter_the_correct_format__Example:":"Veuillez saisir le format correct. Exemple :","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Vérifiez les emails de votre compte Google et cliquez sur le lien dans l'email afin de continuer.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Vérifiez les emails de votre compte Facebook et cliquez sur le lien dans l'email afin de continuer.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Vérifiez l'adresse email associée avec votre Identifiant Apple et cliquez sur le lien dans l'email afin de continuer.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Veuillez cliquer sur le lien reçu par email afin de modifier votre mot de passe MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Veuillez cliquer sur le lien dans l'e-mail pour modifier votre mot de passe Binary.","We’ve_sent_you_an_email":"Nous vous avons envoyé un email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Vous utilisez votre compte [_1] pour vous connecter à votre compte Deriv. Pour modifier votre méthode de connexion en utilisant un identifiant et un mot de passe, cliquez sur [_2]Unlink[_3].","Linked_with_[_1]":"Connecté avec [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Vous allez devoir créer un mot de passe afin de compléter le processus.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Etes-vous sûr de vouloir vous déconnecter de [_1]?","Unlink":"Déconnecter","Country_not_found":"Pays introuvable","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Les documents de ce pays ne sont actuellement pas pris en charge - essayez un autre type de document","Submit_document":"Soumettre le document","Select_country":"Sélectionner un pays","e_g__United_States":"exemple Etats Unis","Search_for_country":"Rechercher un pays","Select_issuing_country":"Sélectionnez le pays émetteur","Submit_verification":"Soumettre la demande de vérification","Tips":"Conseils","Documents_uploaded":"Documents téléchargés","Document_uploaded":"Document téléchargé","Selfie_uploaded":"Selfie téléchargé","We're_now_ready_to_verify_your_identity":"Nous sommes maintenant prêts à vérifier votre identité","Great,_that's_everything_we_need":"Parfait, c'est tout ce dont nous avons besoin","The_link_only_works_on_mobile_devices":"Le lien ne fonctionne que sur les appareils mobiles","Something's_gone_wrong":"Un problème est survenu","You'll_need_to_restart_your_verification_on_your_computer":"Vous devrez redémarrer votre vérification sur votre ordinateur","Get_secure_link":"Obtenez un lien sécurisé","Steps_required_to_continue_verification_on_your_mobile":"Étapes requises pour continuer la vérification sur votre mobile","Check_back_here_to_finish_the_submission":"Revenez ici pour terminer la procédure","Open_the_link_and_complete_the_tasks":"Ouvrez le lien et terminez les tâches","Send_a_secure_link_to_your_phone":"Envoyez un lien sécurisé sur votre téléphone","Here's_how_to_do_it:":"Voici comment procéder:","Continue_on_your_phone":"Continuez sur votre téléphone","Your_computer_may_take_a_few_seconds_to_update":"La mise à jour de votre ordinateur peut prendre quelques secondes","You_can_now_return_to_your_computer_to_continue":"Vous pouvez maintenant revenir à votre ordinateur pour continuer","Uploads_successful":"Téléchargements réussis","Make_sure_everything_is_clear":"Assurez-vous que tout est clair","Blurry_photo_detected":"Photo floue détectée","Make_sure_full_document_is_visible":"Assurez-vous que le document complet est visible","Cut-off_image_detected":"Image coupée détectée","Move_away_from_direct_light":"Éloignez-vous de la lumière directe","Glare_detected":"Éblouissement détecté","Make_sure_all_of_the_document_is_in_the_photo":"Assurez-vous que tout le document est sur la photo","No_document_detected":"Aucun document détecté","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre carte sont lisibles, sans flou ni éblouissement","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Il faudra plus de temps pour vous vérifier si nous ne pouvons pas le lire","To_smoothly_verify_you,_we_need_a_better_photo":"Pour vérifier votre compte, nous avons besoin d'une meilleure photo","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre licence sont lisibles, sans flou ni éblouissement","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre passeport sont clairs à lire, sans flou ni éblouissement","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre permis sont clairs à lire, sans flou ni éblouissement","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails sont clairs à lire, sans flou ni éblouissement","Redo":"Refaire","Confirm":"Confirmer","Upload_anyway":"Télécharger quand même","Enlarge_image":"Agrandir l'image","Photo_of_your_document":"Photo de votre document","Check_your_image":"Vérifiez votre image","Front_and_back":"Recto-Verso","Driver's_license":"Permis de conduire","Face_photo_page":"Page de photo de visage","Residence_permit":"Permis de résidence","Sorry,_no_mobile_phone_bills":"Désolé, aucune facture de téléphone mobile","Documents_you_can_use_to_verify_your_identity":"Documents que vous pouvez utiliser pour vérifier votre identité","It_must_be_an_official_photo_ID":"Il doit s'agir d'une pièce d'identité officielle avec photo","These_are_the_documents_most_likely_to_show_your_current_home_address":"Ce sont les documents les plus susceptibles d'indiquer votre adresse personnelle actuelle","Choose_document":"Choisissez un document","Select_a_%{country}_document":"Sélectionnez un document %{country}","or_upload_photo_–_no_scans_or_photocopies":"ou télécharger une photo - pas de numérisation ni de photocopie","Continue_on_phone":"Continuer sur téléphone","Take_a_photo_with_your_phone":"Prenez une photo avec votre téléphone","Submit_identity_card_(back)":"Soumettre la carte d'identité (verso)","Submit_identity_card_(front)":"Soumettre la carte d'identité (recto)","Submit_license_(back)":"Soumettre le permis (verso)","Submit_license_(front)":"Soumettre le permis (recto)","Submit_passport_photo_page":"Soumettre la photo de votre passeport","Submit_residence_permit_(back)":"Soumettre le permis de résidence (verso)","Submit_residence_permit_(front)":"Soumettre le permis de résidence (recto)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Redémarrez le processus sur la dernière version de Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Redémarrez le processus sur la dernière version de Safari","Unsupported_browser":"Navigateur web non supporté","Close_identity_verification_screen":"Fermer l'écran de vérification d'identité","Dismiss_alert":"Ignorer l'alerte","back":"retour","close":"clôture","Restart_process_on_a_different_device":"Redémarrez le processus sur un autre appareil","Camera_not_detected":"Caméra non détectée","Must_be_under_10MB_":"Doit être inférieur à 10 Mo.","File_size_exceeded_":"Taille du fichier dépassée.","Try_using_another_file_type_":"Essayez d'utiliser un autre type de fichier.","File_not_uploaded_":"Fichier non téléchargé.","An_error_occurred_while_loading_the_component":"Une erreur s'est produite lors du chargement du composant","Only_your_face_can_be_in_the_selfie":"Seul votre visage peut être dans le selfie","Multiple_faces_found":"Plusieurs visages trouvés","Your_face_is_needed_in_the_selfie":"Votre visage est nécessaire dans le selfie","No_face_found":"Aucun visage trouvé","Please_try_again":"Veuillez réessayer s'il vous plait","Connection_lost":"Connexion perdue","Copy_the_link_to_your_phone":"Copiez le lien sur votre téléphone","Too_many_failed_attempts":"Trop de tentatives échouées","Try_using_a_JPG_or_PNG_file":"Essayez d'utiliser un fichier JPG ou PNG","File_type_not_supported":"Type de fichier non pris en charge","Loading___":"Chargement...","Loading":"Chargement","Check_that_your_number_is_correct":"Vérifiez que votre numéro est correct","Copied":"Copié","Copy":"Copier","Send_link":"Envoyer un lien","How_to_scan_a_QR_code":"Comment scanner un code QR","Point_your_phone’s_camera_at_the_QR_code":"Dirigez la caméra de votre téléphone vers le code QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Si cela ne fonctionne pas, téléchargez un scanner de code QR depuis Google Play ou l'App Store","or":"ou","Scan_QR_code":"Scanner le code QR","Get_link_via_SMS":"Obtenir le lien par SMS","Copy_link":"Copier le lien","Sending":"Envoi en cours","Enter_mobile_number":"Entrez votre numéro de mobile","Enter_your_mobile_number:":"Entrez votre numéro de mobile:","Scan_the_QR_code_with_your_phone":"Scannez le code QR avec votre téléphone","Send_this_one-time_link_to_your_phone":"Envoyez ce lien unique sur votre téléphone","Open_the_link_on_your_mobile":"Ouvrez le lien sur votre mobile","Get_your_secure_link":"Obtenez votre lien sécurisé","Copy_the_link_to_your_mobile_browser":"Copiez le lien dans votre navigateur mobile","Continue":"Continuer","Make_sure§":"Soyez sur§","2__Your_desktop_window_stays_open":"2. La fenêtre de votre bureau reste ouverte","1__This_link_was_sent_by_you":"1. Ce lien a été envoyé par vous","Continue_with_the_verification":"Continuer la vérification","Linked_to_your_computer":"Lié à votre ordinateur","Take_a_photo_of_the_back_of_your_card":"Prenez une photo du dos de votre carte","Take_a_photo_of_the_front_of_your_card":"Prenez une photo de votre carte","Take_a_photo_of_the_back_of_your_license":"Prenez une photo du dos de votre permis","Take_a_photo_of_the_front_of_your_license":"Prenez une photo de votre permis de conduire","Take_a_photo_of_your_passport_photo_page":"Prenez une photo de votre page de photo de passeport","Take_a_selfie_showing_your_face":"Prenez un selfie montrant votre visage","Take_a_photo_using_the_basic_camera_mode_instead":"Prenez plutôt une photo en utilisant le mode appareil photo de base","Take_a_photo":"Prendre une photo","Passport_photo_page":"Page de photo de passeport","Thank_you":"Merci","Verification_complete":"Vérification terminée","Refresh":"Rafraîchir","Recovery":"Récupération","Follow_these_steps_to_recover_camera_access:":"Suivez ces étapes pour récupérer l'accès à la caméra:","Refresh_this_page_to_restart_the_identity_verification_process":"Actualisez cette page pour redémarrer le processus de vérification d'identité","Grant_access_to_your_camera_from_your_browser_settings":"Accordez l'accès à votre caméra à partir des paramètres de votre navigateur","Recover_camera_access_to_continue_face_verification":"Récupérer l'accès à la caméra pour continuer la vérification du visage","Camera_access_is_denied":"L'accès à la caméra est refusé","We_cannot_verify_you_without_using_your_camera":"Nous ne pouvons pas vous vérifier sans utiliser votre caméra","Enable_camera":"Activer la caméra","When_prompted,_you_must_enable_camera_access_to_continue":"Lorsque vous y êtes invité, vous devez activer l'accès à la caméra pour continuer","Allow_camera_access":"Autoriser l'accès à la caméra","Provide_the_whole_document_page_for_best_results":"Fournissez la page entière du document pour de meilleurs résultats","Upload_back_of_card_from_your_computer":"Télécharger le verso de la carte depuis votre ordinateur","Upload_front_of_card_from_your_computer":"Téléchargez le recto de la carte depuis votre ordinateur","Upload_back_of_license_from_your_computer":"Télécharger le dos du permis de conduire depuis votre ordinateur","Upload_front_of_license_from_your_computer":"Téléchargez le permis depuis votre ordinateur","Upload_passport_photo_page_from_your_computer":"Téléchargez la photo de votre passeport depuis votre ordinateur","Upload_a_selfie_from_your_computer":"Télécharger un selfie depuis votre ordinateur","Take_photo":"Prendre une photo","Upload":"Télécharger","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Vérifiez qu'il est connecté et fonctionnel. Vous pouvez également poursuivre la vérification sur votre téléphone","Make_sure_your_device_has_a_working_camera":"Assurez-vous que votre appareil dispose d'une caméra fonctionnelle","Camera_not_working?":"La caméra ne fonctionne pas?","It_may_be_disconnected__Try_using_your_phone_instead_":"Il peut être déconnecté. Essayez d'utiliser votre téléphone à la place.","Make_sure_your_device's_camera_works":"Assurez-vous que la caméra de votre appareil fonctionne","Camera_not_working":"La caméra ne fonctionne pas","Remember_to_press_stop_when_you're_done__Redo_video_actions":"N'oubliez pas d'appuyer sur stop lorsque vous avez terminé. Refaire les actions vidéo","Looks_like_you_took_too_long":"On dirait que vous avez pris trop de temps","View_from_camera":"Vue depuis la caméra","Take_a_selfie":"Prendre un selfie","Photo_of_your_face":"Photo de votre visage","Make_sure_your_selfie_clearly_shows_your_face":"Assurez-vous que votre selfie montre clairement votre visage","Check_selfie":"Vérifier le selfie","Tips_to_take_a_good_selfie":"Conseils pour prendre un bon selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Faites face vers l'avant et assurez-vous que vos yeux sont clairement visibles","Remove_your_glasses,_if_necessary":"Retirez vos lunettes, si nécessaire","We'll_compare_it_with_your_document":"Nous le comparerons avec votre document","Your_link_will_expire_in_one_hour":"Votre lien expirera dans une heure","Keep_this_window_open_while_using_your_mobile":"Gardez cette fenêtre ouverte lorsque vous utilisez votre mobile","Resend_link":"Renvoyer le lien","We've_sent_a_secure_link_to_%{number}":"Nous avons envoyé un lien sécurisé vers %{number}","It_may_take_a_few_minutes_to_arrive":"Cela peut prendre quelques minutes pour arriver","Check_your_mobile":"Vérifiez votre mobile","Your_mobile_link_will_expire_in_one_hour":"Votre lien mobile expirera dans une heure","Don't_refresh_this_page":"N'actualisez pas cette page","Once_you've_finished_we'll_take_you_to_the_next_step":"Une fois que vous avez terminé, nous vous emmènerons à l'étape suivante","Connected_to_your_mobile":"Connecté à votre mobile","Upload_photo":"Envoyer la photo","Example_of_a_blurry_document":"Exemple de document flou","All_details_must_be_clear_—_nothing_blurry":"Tous les détails doivent être clairs - rien de flou","Example_of_a_cut-off_document":"Exemple de document tronqué","Show_all_details_—_including_the_bottom_2_lines":"Afficher tous les détails - y compris les 2 lignes du bas","Example_of_a_document_with_glare":"Exemple de document avec reflets","Move_away_from_direct_light_—_no_glare":"Éloignez-vous de la lumière directe - sans'éblouissement","Document_example":"Exemple de document","The_photo_should_clearly_show_your_document":"La photo doit clairement montrer votre document","Scans_and_photocopies_are_not_accepted":"Les scans et photocopies ne sont pas acceptés","Upload_passport_photo_page":"Télécharger la photo de votre passeport","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Pour ouvrir un compte bancaire, nous devrons vérifier votre identité.","It_will_only_take_a_couple_of_minutes_":"Cela ne prendra que quelques minutes.","Verify_Identity":"Vérifier l'identité","Open_your_new_bank_account":"Ouvrez votre nouveau compte bancaire","Please_enter_a_valid_Login_ID_":"Veuillez saisir un jeton d'authentification valide.","Amount":"Montant","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Votre demande de transférer [_1] [_2] de [_3] à [_4] a été traitée avec succès.","Resale_not_offered":"La revente n'est pas proposée","You've_made_no_transactions_of_this_type_up_to_this_date_":"Vous n'avez effectué aucune transaction de ce type jusqu'à cette date.","Ref_":"Réf.","Contract":"Contrat","Purchase_Price":"Prix d'achat","Sale_Date":"Date de vente","Sale_Price":"Prix de vente","Profit/Loss":"Profits/pertes","Details":"Informations","Total_Profit/Loss":"Total des profits/pertes","Action_required!":"Action requise!","Sorry,_an_error_occurred_while_processing_your_request_":"Désolé, une erreur s'est produite pendant le traitement de votre demande.","withdrawal(s)":"retrait(s)","We_couldn’t_read_that!":"Nous ne pouvions pas lire ça !","Remaining_characters:_[_1]_":"Caractères restants: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Merci de ne pas écrire plus de [_1] caractères pour les deux champs.","Only_[_1]_are_allowed_":"Seulement [_1] autorisées.","letters":"lettres","numbers":"chiffres","space":"espace","Please_select_at_least_one_scope":"Veuillez sélectionner au moins un champ d'application","New_token_created_":"Nouveau jeton d'authentification créé.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Le nombre maximum de jetons d'authentification ([_1]) est atteint.","Name":"Nom","Token":"Jeton","Scopes":"Périmètre","Last_Used":"Dernière utilisation","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Voulez-vous vraiment supprimer ce jeton de façon permanente","Delete":"Supprimer","Never_Used":"Jamais utilisé","You_have_not_granted_access_to_any_applications_":"Vous n'avez acheté aucun contrat.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Voulez-vous vraiment révoquer l'accès à cette application de façon permanente","Revoke_access":"Révoquer l'accès","Admin":"Administration","Payments":"Paiements","Read":"Lire","Trade":"Trading","Trading_Information":"Information de trading","Never":"Jamais","Last_Login":"Dernière Connexion","You_did_not_change_anything_":"Vous n'avez effectué aucune modification.","Your_changes_have_been_updated_successfully_":"Vos modifications ont bien été prises en compte.","Successful":"Réussite","Date_and_Time":"Date et heure","Browser":"Navigateur","IP_Address":"Adresse IP","Status":"Statut","Your_account_has_no_Login/Logout_activity_":"Votre compte n'indique aucune activité de connexion/déconnexion.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Votre compte est entièrement authentifié et vos limites de retrait ont été levées.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Votre limite de retrait de [_1] jour est actuellement [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Vous avez déjà retiré l'équivalent de [_1][_2] au total au cours des [_3] derniers jours.","Your_withdrawal_limit_is_[_1][_2]_":"Votre limite de retrait est de [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Vous avez déjà retiré [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Par conséquent, votre montant de retrait disponible est au plus de [_1][_2], concernant vos fonds disponibles sur votre compte. ","Please_confirm_that_all_the_information_above_is_true_and_complete_":"S’il vous plaît veuillez confirmer que tous les renseignements ci-dessus sont véridiques et complets.","Your_settings_have_been_updated_successfully_":"Vos paramètres ont été actualisés avec succès.","Sorry,_an_error_occurred_while_processing_your_account_":"Désolé, une erreur est survenu pendant le traitement de votre compte.","Please_select_a_country":"Veuillez sélectionner un pays","Timed_out_until":"Expiration jusqu'à","Excluded_from_the_website_until":"Exclu du site Web jusqu’au","Session_duration_limit_cannot_be_more_than_6_weeks_":"La limite de durée de session ne peut excéder 6 semaines.","Time_out_must_be_after_today_":"La période d'expiration doit être ultérieure.","Time_out_cannot_be_more_than_6_weeks_":"La période d'expiration ne peut excéder 6 semaines.","Time_out_cannot_be_in_the_past_":"La période d'expiration ne peut être antérieure.","Please_select_a_valid_time_":"Veuillez sélectionner un horaire valide.","Exclude_time_cannot_be_less_than_6_months_":"Le temps d'exclusion ne peut pas être inférieur à 6 mois.","Exclude_time_cannot_be_for_more_than_5_years_":"Le temps d'exclusion ne peut pas être supérieur à 5 ans.","Confirm_changes":"Confirmer les modifications","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Nous mettrons à jour vos limites. Cliquez sur [_1]Accepter et acceptez[_2] pour reconnaître que vous êtes entièrement responsable de vos actions et que nous ne sommes pas responsables de toute dépendance ou perte.","Agree_and_accept":"Accepter","Go_back":"Retour","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Lorsque vous cliquerez sur « Ok », vous serez exclu des opérations de trading du site jusqu'à la date sélectionnée.","Your_changes_have_been_updated_":"Vos modifications ont été prises en compte.","Disable":"Désactivé","Enable":"Activé","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Vous avez activé avec succès l’authentification deux facteurs pour votre compte.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Vous avez désactivé l’authentification deux facteurs avec succès pour votre compte.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Vous n'avez pas besoin d'authentifier votre compte pour le moment.[_1]Nous vous informerons lorsque votre compte devra être authentifié.","No_authentication_required":"Aucune authentification requise","Back_to_trading":"Retour au trade","You_are_categorised_as_a_professional_client_":"Vous êtes considéré comme un client professionnel.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Vous êtes considéré comme un client de détail. Demandez à être traité comme un trader professionnel.","Bid":"Faire une mise","Closed_Bid":"Enchère fermée","Reference_ID":"Identifiant de parrainage","Credit/Debit":"Crédit/débit","Balance":"Solde","Top_up_error":"Erreur de rechargement","Understood":"Compris","Top-up_successful":"Succès du rechargement","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] ont été crédités sur votre Compte Démo: [_2].","Go_to_statement":"Aller sur le relevé","Continue_trading":"Poursuivre le trading","Your_Demo_balance_has_been_reset_":"Votre solde démo a été réinitialisé.","Account":"Compte","Available_Markets":"Marchés disponibles","Currency":"Devise","Multipliers_Account":"Compte Multiplicateurs","Gaming_Account":"Compte de jeu","Options_Account":"Compte Options","Real_Account":"Compte réel","Counterparty":"Contrepartie","Create_account":"Créer un compte","Change_currency":"Changer de devise","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Remarque : Vous êtes limité à un seul compte en devise fiduciaire. La devise de votre compte fiat peut être changée avant votre premier dépôt sur votre compte fiat ou la création d'un vrai compte MT5 (ou un vrai compte Deriv X à deriv.com). Vous pouvez également ouvrir un compte pour chaque cryptodevise supportée.","This_account_is_disabled":"Ce compte est désactivé","This_account_is_excluded_until_[_1]":"Ce compte est exclu jusqu'à [_1]","Set_currency":"Choisir la devise","Commodities":"Matières premières","Stock_Indices":"Indices boursiers","Stocks":"Actions","Synthetic_Indices":"Indices Synthétiques","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Si vous avez un compte chez nous, nous vous enverrons, dans quelques minutes, un lien à votre email pour réinitialiser votre mot de passe.","Sign_up":"Inscrivez vous","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Les Contrats de Trading pour Différence (CFDs) sur Indices Synthétiques peuvent ne pas convenir à tous. Veuillez vous assurer de bien comprendre les risques encourus, y compris la possibilité de perdre tous les fonds de votre compte MT5. Le jeu peut créer une dépendance - s'il vous plaît, jouez de façon responsable.","Do_you_wish_to_continue?":"Voulez-vous continuer ?","Acknowledge":"Reconnaître","Change_Password":"Modifier le mot de passe","The_investor_password_of_account_number_[_1]_has_been_changed_":"Le mot de passe investisseur du compte numéro [_1] a été modifié.","Reset_Password":"Réinitialiser le mot de passe","Verify_Reset_Password":"Vérifier le nouveau mot de passe","Please_check_your_email_for_further_instructions_":"Veuillez vérifier votre email pour obtenir des instructions supplémentaires.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Le dépôt [_1] à partir de [_2] vers le numéro de compte [_3] est effectué. Identifiant de transaction : [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Le retrait [_1] à partir du numéo de compte [_2] vers [_3] a été effectué. Identifiant de transaction : [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Pour effectuer un retrait depuis votre [_1] MetaTrader 5, veuillez [_2]Authentifier[_3] votre Compte Binary.","Current_password":"Mot de passe actuel","New_password":"Nouveau mot de passe","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Pour transférer des fonds vers votre compte MT5, saisissez un montant égal ou supérieur à [_1].","You_have_insufficient_funds_in_your_MT5_account_":"Vous n'avez pas assez de fonds dans votre compte MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Désolé, cette fonctionnalité n’est pas disponible dans votre juridiction","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"En raison d'un problème sur notre serveur, certains de vos comptes MT5 ne sont pas disponibles pour le moment. [_1]Toutes nos excuses, merci de votre patience.","Unavailable":"Indisponible","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] ont été crédités sur votre Compte Virtuel MT5: [_2].","_(Region_added)":" (Région ajoutée)","_(Temporarily_unavailable)":" (Temporairement indisponible)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"\nNos serveurs MT5 sont temporairement indisponibles. Nous travaillons à leur restauration. Veuillez réessayer dans quelques minutes.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Merci d'utiliser votre mot de passe MT5 pour vous connecter à n'importe quel compte [_1] lorsque vous utilisez une application MT5 sur votre téléphone ou tout autre appareil.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Cela changera le mot de passe de tous vos comptes [_1].","Demo_Accounts":"Compte Démo","Real-Money_Accounts":"Comptes d’argent réel","Demo_Account":"Compte Démo","Real-Money_Account":"Compte d’Argent Réel","for_account_[_1]":"pour compte [_1]","[_1]_Account_[_2]":"[_1] Compte [_2]","MT5_Financial":"MT5 Financière","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Entrez votre mot de passe MT5 pour ajouter un compte [_1] [_2].","demo":"démo","real":"réel","MT5_Synthetic":"MT5 Synthétique","Get_[_1]":"Obtenez [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Le solde de votre compte démo est actuellement inférieur ou égal à [_1]. Vous pouvez recharger votre compte avec [_2] de plus.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Vous pouvez recharger votre compte démo avec [_1] de plus si votre solde est inférieur ou égal à [_2].","Yes,_I'm_sure":"Oui, j'en suis sûr","Are_you_sure?":"Êtes vous sûr?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Vous ne pourrez pas changer la devise de votre compte fiat après avoir créé ce compte [_1]. Êtes-vous sûr de vouloir continuer ?","Go_to_Deriv_to_add_an_MT5_account":"Allez sur Deriv pour ajouter un compte MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Vous pourrez vous connecter à Deriv en utilisant vos identifiants Binary.com.","Back":"Retour","Go_to_Deriv":"Allez sur Deriv","Address":"Adresse","Account_currency":"Devise du compte","Financial_assessment":"Évaluation financière","Personal_details":"Informations personnelles","Terms_of_use":"Conditions d'utilisation","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) est une version de Tether qui est rattachée à l'USD et est construite sur la blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) est une version de Tether qui est indexée sur USD et est hébergée sur la plate-forme Ethereum.","Title_and_name":"Titre et nom","Real_money_account_opening":"Ouverture d'un compte en argent réel","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Votre jeton a expiré ou n’est pas valide. S’il vous plaît cliquez ici pour relancer le processus de vérification.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"L'adresse e-mail que vous avez saisie est déjà utilisée. Si vous avez oublié votre mot de passe, veuillez essayer notre outil de récupération de mot de passe ou contacter le service clientèle.","Password_is_not_strong_enough_":"Le mot de passe n'est pas assez fiable.","Upgrade_now":"Mettre à jour maintenant","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] jours [_2] heures [_3] minutes","Your_trading_statistics_since_[_1]_":"Vos statistiques de trading depuis [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Le trading [_1] peut devenir une véritable addiction, au même titre que toute autre activité pratiquée de façon trop intensive. Pour éviter le danger d'une telle addiction, nous mettons en œuvre suivi réaliste de votre situation en vous fournissant régulièrement un relevé de vos opérations et de vos comptes.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] veuillez cliquer sur le lien ci-dessous pour relancer le processus de récupération de mot de passe.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Vous avez un nouveau compte Binary pour vous connecter à Binary.com","Success":"Succès","Done":"Terminé","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Votre compte Deriv est déconnecté de [_1]. Merci d'utiliser [_2]votre email et mot de passe pour vos futures connexions.","Success!":"Succès!","Got_it":"C'est compris","Binary_Password_Reset":"Réinitialisation de mot de passe Binary","Binary_password":"Mot de passe Binary","You_have_added_a_[_1]_account_":"Vous avez ajouté un compte [_1].","Add_account":"Ajouter un compte","Add_new_crypto_account":"Ajouter un nouveau compte de cryptomonnaie","Add_new_account":"Ajouter un nouveau compte","Create_a_cryptocurrency_account":"Créer un compte de cryptomonnaie","Choose_your_preferred_cryptocurrency":"Choisissez votre crypto-monnaie préférée","You_can_open_an_account_for_each_cryptocurrency_":"Vous pouvez ouvrir un compte pour chaque crypto-monnaie.","Choose_a_cryptocurrency_account":"Choisir un compte de cryptomonnaie","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Choisissez l'un de vos comptes ou ajoutez un nouveau compte de cryptomonnaie","Choose_an_account":"Choisissez un compte","Choose_one_of_your_accounts_or_add_a_new_account":"Choisissez l'un de vos comptes ou ajoutez un nouveau compte","Choose_one_of_your_accounts":"Choisissez un de vos comptes","Please_select_the_currency_for_this_account:":"Veuillez sélectionner la devise de ce compte :","deposit":"dépôt","deposit_or_create_a_CFDs_account":"déposer ou créer un compte CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Êtes-vous sûr de vouloir créer votre compte [_1] maintenant ?","Note:":"Remarque:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Vous pouvez ouvrir un compte pour chaque cryptodevise supportée.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Êtes-vous sûr de vouloir créer un compte fiat en [_1] ?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Vous êtes limité à un seul compte fiat. Vous pouvez changer la devise de votre compte fiat à tout moment avant d'effectuer un premier [_1].","Yes":"Oui","Create_[_1]_account":"Créer un compte [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Vous avez changé avec succès la devise de votre compte en [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Vous avez changé avec succès la devise de votre compte de [_1] à [_2].","Please_choose_a_currency":"Veuillez choisir une monnaie","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Vous avez un nouveau mot de passe MT5 pour vous connecter à vos comptes [_1] sur le web et l'application mobile.","Asian_Up":"Asiatiques à la hausse","Asian_Down":"Asiatiques à la baisse","Higher":"Supérieur","Higher_or_equal":"Plus haut ou égal","Lower":"Inférieur","Lower_or_equal":"Plus bas ou égal","Digit_Matches":"Chiffre Correspondant","Digit_Differs":"Chiffre Différent","Digit_Odd":"Chiffre Impair","Digit_Even":"Chiffre Pair","Digit_Over":"Chiffre Supérieur","Digit_Under":"Chiffre Inférieur","Ends_Outside":"Termine hors de la zone","Ends_Between":"Termine dans la zone","Stays_Between":"Reste dans la zone","Goes_Outside":"Sort de la zone","Touches":"Touche","Does_Not_Touch":"Ne touche pas","High_Tick":"Tick Haut","Low_Tick":"Tick Bas","Only_Ups":"Que des Montées","Only_Downs":"Que des Descentes","Multiplier_Up":"Multiplicateur Montée","Multiplier_Down":"Multiplicateur Descente","Equals":"Égaux","Not":"Pas","Buy":"Acheter","Sell":"Vente","Waiting_for_contract_settlement_":"En attente de règlement du contrat.","including_Deal_Cancel__Fee":"Offre Annulation inclue. Coût","Contract_has_not_started_yet":"Le contrat n’a pas encore commencé","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Ce contrat est uniquement disponible sur [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Ce contrat est uniquement disponible sur DTrader.[_1][_2]Allez sur Dtrader[_3] pour fermer ou annuler ce contrat.","Contract_Result":"Résultat du contrat","Close_Time":"Heure de la Clôture","Exit_Spot_Time":"Prix de sortie actuel","Audit":"Vérification","View_chart":"Afficher le graphique","Audit_Page":"Page de vérification","Contract_Starts":"Le contrat débute","Contract_Ends":"Le contrat se termine","Contract_Details":"Détails relatifs au contrat","Target":"Cible","Contract_Information":"Informations du contrat","Contract_Type":"Type de Contrat","Transaction_ID":"ID de Transaction","Remaining_Time":"Temps restant","Maximum_payout":"Paiement Maximum","Barrier_Change":"Modification de barrière","Current":"Valeur actuelle","Spot_Time":"Heure spot","Current_Time":"Heure actuelle","Indicative":"Indicatif","Potential_Profit/Loss":"Bénéfice/Perte Potentielle","Deal_Cancel__Fee":"Offre Annulation. Coût","You_can_close_this_window_without_interrupting_your_trade_":"Vous pouvez aussi fermer cette fenêtre sans interrompre votre trade.","There_was_an_error":"Une erreur s'est produite","Sell_at_market":"Vendre au prix du marché","Note":"Remarque","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Le contrat sera vendu au prix de marché en vigueur à réception de la demande par nos serveurs. Ce prix peut différer du prix indiqué.","You_have_sold_this_contract_at_[_1]_[_2]":"Vous avez vendu ce contrat [_2] [_1]","Your_transaction_reference_number_is_[_1]":"Le numéro de référence de votre transaction est [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Nous vous remercions pour votre inscription ! Veuillez vérifier votre email pour compléter le processus d’inscription.","All_markets_are_closed_now__Please_try_again_later_":"Tous les marchés sont actuellement fermés. Veuillez réessayer ultérieurement.","Withdrawal":"Retrait","demo_credit_to_account":"Solde démo sur le compte","login":"connexion","logout":"déconnexion","Asians":"Asiatiques","Digits":"Chiffres","Ends_Between/Ends_Outside":"Termine dans/hors de la zone","High/Low_Ticks":"Ticks Haut/Bas","Stays_Between/Goes_Outside":"Reste dans/Sort de la zone","Touch/No_Touch":"Touche/Ne touche pas","Christmas_Day":"Jour de Noël","Closes_early_(at_18:00)":"Ferme tôt (à 18h)","Closes_early_(at_21:00)":"Ferme tôt (à 21h)","Fridays":"Vendredis","New_Year's_Day":"Jour de l'An","today":"aujourd'hui","today,_Fridays":"aujourd'hui, vendredis","There_was_a_problem_accessing_the_server_":"Il y a eu un problème d'accès au serveur.","There_was_a_problem_accessing_the_server_during_purchase_":"Il y a eu un problème d'accès au serveur durant l'achat."}; \ No newline at end of file +texts_json['FR'] = {"Real":"Réel","Multipliers":"Multiplicateurs","Gaming":"Jeu","Demo":"Démo","Real_CFDs":"CFD réels","Real_Financial":"Réel Financier","Demo_CFDs":"CFD démo","Demo_Financial":"Demo Financier","Derived":"Dérivés","Demo_Derived":"Dérivés démo","Real_Derived":"Dérivés réel","Financial":"Financier","Financial_STP":"Financier STP","Demo_Financial_STP":"Demo Financier STP","Real_Financial_STP":"Réel Financier STP","Online":"En ligne","Offline":"Hors connexion","Connecting_to_server":"Connexion au serveur","Use_a_few_words,_avoid_common_phrases":"Utilisez quelques mots, évitez les phrases courantes","No_need_for_symbols,_digits,_or_uppercase_letters":"Pas besoin de symboles, de chiffres ou de lettres majuscules","Add_another_word_or_two__Uncommon_words_are_better_":"Ajoutez un ou deux mots supplémentaires. Les mots peu courants sont meilleurs.","Straight_rows_of_keys_are_easy_to_guess":"Les rangées droites de clés sont faciles à deviner","Short_keyboard_patterns_are_easy_to_guess":"Les motifs de clavier courts sont faciles à deviner","Use_a_longer_keyboard_pattern_with_more_turns":"Utilisez un motif de clavier plus long avec plus de tours","Repeats_like_\"aaa\"_are_easy_to_guess":"Les répétitions telles que \"aaa\" sont faciles à deviner","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Les répétitions comme \"abcabcabc\" ne sont que légèrement plus difficiles à deviner que \"abc\"","Avoid_repeated_words_and_characters":"Évitez les mots et les caractères répétés","Sequences_like_abc_or_6543_are_easy_to_guess":"Les séquences comme abc ou 6543 sont faciles à deviner","Avoid_sequences":"Évitez les séquences","Recent_years_are_easy_to_guess":"Les dernières années sont faciles à deviner","Avoid_recent_years":"Évitez les dernières années","Avoid_years_that_are_associated_with_you":"Évitez les années qui vous sont associées","Dates_are_often_easy_to_guess":"Les dates sont souvent faciles à deviner","Avoid_dates_and_years_that_are_associated_with_you":"Évitez les dates et les années qui vous sont associées","This_is_a_top-10_common_password":"Ceci est un mot de passe commun parmi les 10 premiers","This_is_a_top-100_common_password":"Ceci est un mot de passe commun parmi les 100 premiers","This_is_a_very_common_password":"C'est un mot de passe très courant","This_is_similar_to_a_commonly_used_password":"Ceci est similaire à un mot de passe couramment utilisé","A_word_by_itself_is_easy_to_guess":"Un mot en lui-même est facile à deviner","Names_and_surnames_by_themselves_are_easy_to_guess":"Les noms et prénoms sont faciles à deviner","Common_names_and_surnames_are_easy_to_guess":"Les noms et prénoms communs sont faciles à deviner","Capitalization_doesn't_help_very_much":"La capitalisation n'aide pas beaucoup","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Tout en majuscules est presque aussi facile à deviner que tout en minuscules","Reversed_words_aren't_much_harder_to_guess":"Les mots inversés ne sont pas beaucoup plus difficiles à deviner","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Les substitutions prévisibles comme '@' au lieu de 'a' n'aident pas beaucoup","This_password_is_on_the_blacklist":"Ce mot de passe est sur la liste noire","Unknown_OS":"Système d’exploitation inconnu","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Vous serez redirigé vers un site tiers qui n’est pas détenu par Binary.com.","Click_OK_to_proceed_":"Cliquez sur OK pour continuer.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Veuillez vous assurer que vous avez l'app Telegram installée sur votre appareil.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] requiert que la fonction stockage web de votre navigateur soit activée pour fonctionner correctement. S’il vous plaît activer la ou quitter le mode de navigation privée.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"S’il vous plaît [_1]connectez vous[_2] ou [_3]inscrivez vous[_4] pour afficher cette page.","This_feature_is_available_to_demo_accounts_only_":"Cette fonctionnalité est disponible uniquement pour les comptes démo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Vous utilisez un compte démo. Veuillez passer à votre compte réel ou en créer un pour accéder à la caisse.","This_page_is_only_available_to_logged_out_clients_":"Cette page est uniquement disponible pour les clients connectés.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Le trading d'options binaires n'est pas disponible sur votre compte Multiplicateurs.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Le trading d'options binaires n'est pas disponible via votre compte Multiplicateurs.
Veuillez repasser sur votre compte Options.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Désolé, le trading d'options n'est pas disponible au Royaume-Uni et sur l'île de Man.","Binary_options_trading_is_not_available_in_your_country_":"Le trading d'options binaires n'est pas disponible dans votre pays.","This_page_is_not_available_in_your_country_of_residence_":"Cette page n'est pas disponible dans votre pays de résidence.","Page_not_available,_you_did_not_deactivate_your_account_":"La page n'est pas disponible, vous n'avez pas désactivé votre compte.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Malheureusement, ce service n'est pas disponible dans votre pays. Si vous souhaitez négocier des multiplicateurs, essayez DTrader sur Deriv.","Go_to_DTrader":"Allez à DTrader","Sign_out":"Désinscription","[_1]_Account":"Compte [_1]","Click_here_to_open_a_Real_Account":"Cliquez ici pour ouvrir un Compte Réel","Open_a_Real_Account":"Ouvrez un Compte Réel","Click_here_to_open_a_Multipliers_Account":"Cliquez ici pour ouvrir un Compte Multiplicateurs","Click_here_to_open_an_Options_account":"Cliquez ici pour ouvrir un compte Options","Open_a_Multipliers_Account":"Ouvrir un Compte Multiplicateurs","Go_to_Deriv_to_add_an_account":"Allez sur Deriv pour ajouter un compte","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Vous pourrez vous connecter à Deriv en utilisant vos identifiants Binary.com.","Cancel":"Annuler","Go_to_Deriv":"Allez sur Deriv","Create_Account":"Créer un compte","Accounts_List":"Liste des comptes","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Les dépôts sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer vos dépôts lorsque la maintenance sera terminée.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Les retraits sont temporairement indisponibles en raison d'une maintenance du système. Vous pourrez effectuer vos retraits lorsque la maintenance sera terminée.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse de cryptomonnaie est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Votre caisse est actuellement verrouillée. Veuillez nous contacter via le chat en direct pour savoir comment la déverrouiller.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Veuillez définir [_1]la devise de votre compte[_2] pour permettre les dépôts et les retraits.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Votre nom et votre date de naissance dans le document ne correspondent pas au nom de votre profil Binary. Veuillez mettre à jour votre nom sur la [_1]page Informations personnelles[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Votre date de naissance dans le document ne correspond pas au nom de votre profil Binary. Veuillez mettre à jour votre nom sur la [_1]page Informations personnelles[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Le nom de votre document ne correspond pas au nom de votre profil Binary. Veuillez mettre à jour votre nom sur la [_1]page Informations personnelles[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Votre compte n'a pas été authentifié. Veuillez soumettre votre [_1]pièce d'identité et votre justificatif de domicile[_2] pour authentifier votre compte et demander des retraits.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Votre compte n'a pas été authentifié. Veuillez soumettre votre %pièce d'identité et votre justificatif de domicile[_2] pour authentifier votre compte et accéder à votre caisse.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Les documents d'identité que vous avez soumis ont expiré. Veuillez soumettre des documents d'identité valides pour débloquer la caisse.","Your_[_1]proof_of_identity[_2]_has_expired_":"Votre [_1]pièce d'identité[_2] a expiré.","Your_[_1]proof_of_address[_2]_has_expired_":"Votre [_1]justificatif de domicile[_2] a expiré.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Votre [_1]pièce d'identité[_3] et votre [_2]justificatif de domicile[_3] ont n'a pas été vérifiée.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Votre [_1]preuve d'identité[_2] n'a pas été vérifiée.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Votre [_1]preuve de domicile[_2] n'a pas été vérifiée.","Please_submit_your_[_1]proof_of_identity[_2]_":"Veuillez soumettre votre [_1]pièce d'identité[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Veuillez soumettre votre [_1]justificatif de domicile[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Vous avez choisi de vous exclure du trading sur notre site jusqu'à [_1]. Si vous ne parvenez pas à effectuer une transaction ou un dépôt après votre période d'auto-exclusion, veuillez nous contacter via le chat en direct.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Votre accès à la Caisse a été temporairement désactivé car vous n'avez pas défini votre limite de rotation de 30 jours. Veuillez vous rendre sur [_1]Self-exclusion[_2] et définir votre limite de rotation de 30 jours.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Les retraits MT5 ont été désactivés sur votre compte. Veuillez vérifier votre email pour plus de détails.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Malheureusement, vous ne pouvez effectuer que des dépôts. Veuillez nous contacter via le chat en direct pour permettre les retraits.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre dépôts et retraits.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les retraits. ","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Vos [_1]données personnelles[_2] sont incomplètes. Veuillez vous rendre dans les paramètres de votre compte et compléter vos données personnelles pour permettre les dépôts ","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Vous n'avez pas défini votre pays de résidence. Pour accéder à votre caisse, veuillez mettre à jour votre [_1]pays de résidence[_2] dans la section Données personnelles des paramètres de votre compte.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Votre caisse est verrouillée. Veuillez compléter l'évaluation [_1]financière[_2] pour la déverrouiller.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Vous n'avez pas fourni votre numéro d'identification fiscale. Cette information est nécessaire pour les exigences légales et réglementaires. Veuillez vous rendre dans [_1]Détails personnels[_2] dans les paramètres de votre compte et renseigner votre dernier numéro d'identification fiscale.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Malheureusement, vous ne pouvez effectuer que des retraits. Veuillez nous contacter via le chat en direct.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Les retraits ont été désactivés sur votre compte. Veuillez attendre que vos documents téléchargés soient vérifiés.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Veuillez [_1]accepter la dernière version des Conditions Générales [_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Veuillez [_1]accepter les Conditions Générales mises à jour[_2] pour supprimer vos limites de dépôt et de trading.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Votre compte est temporairement désactivé. Veuillez nous contacter via le chat en direct pour réactiver les dépôts et les retraits.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Veuillez remplir le test d'adéquation pour accéder à votre caisse.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Votre caisse est verrouillée. Consultez [_1]comment nous protégeons vos fonds[_2] avant de poursuivre.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Votre compte doit être authentifié. Veuillez soumettre votre [_1]document d'identité[_2] pour accéder à votre caisse.","Account_Authenticated":"Compte Authentifié","Connection_error:_Please_check_your_internet_connection_":"Erreur de connexion : veuillez vérifier votre connexion à Internet.","Network_status":"Statut réseau","This_is_a_staging_server_-_For_testing_purposes_only":"Il s'agit d'un serveur intermédiaire, utilisé uniquement à des fins de test","The_server_endpoint_is:_[_2]":"Le 1terminal 2 du serveur est : [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Votre navigateur internet ([_1]) est obsolète et cela peut affecter votre expérience de trading. Procédez à vos risques et périls. [_2]Mise à jour de navigateur internet[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Vous avez atteint la limite de tentatives par seconde. Veuillez réessayer ultérieurement.","There_was_some_invalid_character_in_an_input_field_":"Un caractère non valide a été saisi dans un champ.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"réglementée par la Commission des Jeux du Royaume-Uni (UKGC).","regulated_by_the_Malta_Gaming_Authority,":"réglementée par la Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"réglementée par la Malta Financial Services Authority (MFSA),","Please_select":"Sélection","Please_accept_the_terms_and_conditions_":"Veuillez accepter les conditions générales.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Veuillez confirmer que vous n’êtes pas une personne politiquement exposée.","Today":"Aujourd'hui","Select_date":"Sélectionnez la date","Barrier":"Barrière","Entry_Spot":"Point d'entrée","Exit_Spot":"Point de sortie","Charting_for_this_underlying_is_delayed":"Les graphiques sont retardés pour ce sous-jacent","Payout_Range":"Gamme de Paiement","Purchase_Time":"Heure d'achat","Reset_Barrier":"Barrière de Réinitialisation","Reset_Time":"Temps de réinitialisation","Selected_Tick":"Tick Sélectionné","Exit_Time":"Temps de sortie","Start_Time":"Heure de début","Step_[_1]:_[_2]_([_1]_of_[_3])":"Etape [_1]: [_2] ([_1] sur [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Le code de vérification est incorrect. Veuillez utiliser le lien envoyé à votre adresse email.","Indicates_required_field":"Indique un champ obligatoire","Please_select_the_checkbox_":"Veuillez cocher la case.","This_field_is_required_":"Ce champ est requis.","Should_be_a_valid_number_":"La saisie doit être un nombre valide.","Up_to_[_1]_decimal_places_are_allowed_":"Jusqu'à [_1] décimales seulement sont autorisées.","Should_be_[_1]":"Devrait être [_1]","Should_be_between_[_1]_and_[_2]":"La saisie doit se situer entre [_1] et [_2]","Should_be_more_than_[_1]":"Devrait être plus de [_1]","Should_be_less_than_[_1]":"La saisie doit être inférieure à [_1]","Insufficient_balance_":"Solde insuffisant.","Invalid_email_address_":"Adresse email non valide.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Le mot de passe doit être composé de majuscules, de minuscules et de chiffres.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Seuls les lettres, chiffres, espace, trait d'union et apostrophe sont permis.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Seulement des lettres, chiffres, espace et ces caractères spéciaux sont autorisés : [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Les lettres, les espaces, les traits d'union, la virgule et le point sont les seuls caractères autorisés.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Seuls les lettres, les chiffres, trait d'union et tiret sont autorisés.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Veuillez saisir un numéro de téléphone valide (par exemple +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Les deux mots de passe que vous avez entrés ne correspondent pas.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] et [_2] ne peuvent être identiques.","Minimum_of_[_1]_characters_required_":"Un minimum de [_1] caractères est requis.","You_should_enter_[_1]_characters_":"Vous devez saisir [_1] caractères.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Devrait commencer par une lettre ou un chiffre et peut contenir un trait d’union et un tiret bas.","Invalid_verification_code_":"Code de vérification invalide.","Your_password_cannot_be_the_same_as_your_email_address_":"Votre mot de passe ne peut pas être identique à votre adresse e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transaction effectuée par [_1] (identifiant d'application : [_2])","Next":"Suivant","Finish":"Finnois","Step":"Étape","Select_your_market_and_underlying_asset":"Sélectionnez votre marché et actif sous-jacent","Select_your_trade_type":"Sélectionnez votre type de transaction","Adjust_trade_parameters":"Définir les paramètres de la transaction","Predict_the_directionand_purchase":"Prédire la direction
et acheter","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Votre limite de durée de session sera atteinte dans [_1] secondes.","January":"janvier","February":"février","March":"mars","April":"avril","May":"mai","June":"juin","July":"juillet","August":"août","September":"septembre","October":"octobre","November":"novembre","December":"décembre","Jan":"jan.","Feb":"fév.","Mar":"mars","Apr":"avr.","Jun":"juin","Jul":"juill.","Aug":"août","Sep":"sep.","Oct":"oct.","Nov":"nov.","Dec":"déc.","Sunday":"dimanche","Monday":"lundi","Tuesday":"mardi","Wednesday":"mercredi","Thursday":"jeudi","Friday":"vendredi","Saturday":"samedi","Su":"Di","Mo":"Lu","Tu":"mar.","We":"Me","Th":"Je","Fr":"ven.","Previous":"Précédent","Hour":"Heure","AM":" ","PM":"Après midi","Verification_required":"Vérification requise","Verify_identity":"Vérifier l'indentité","From_account:_":"Du compte : ","To_account:_":"Au compte : ","Not_announced_for_this_currency_":"Pas d'annonce pour cette devise.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Réinitialisez le solde de votre compte démo à [_1] à tout moment.","[_1]Manage_your_accounts[_2]":"[_1]Gérer vos comptes[_2]","time":"dépôt","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"fois ou créer un vrai compte MT5 (ou un vrai compte Deriv X à deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Vous ne pouvez plus changer la devise parce que vous avez créé un vrai compte MT5 (ou un vrai compte Deriv X sur deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Vous ne pouvez plus changer la devise parce que vous avez effectué un tout premier dépôt.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La devise de votre compte fiat est actuellement en [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La devise de votre compte fiat est en [_1].","This_is_your_[_1]_account_":"Ceci est votre compte [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Vous pouvez [_1]choisir une nouvelle devise[_2] avant de faire un premier [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Vous ne voulez pas trader en [_1] ? Vous pouvez ouvrir un autre compte en cryptodevise.","Switch_account":"Changer de compte","Switch_account?":"Changer de compte ?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Pour déposer de l'argent, veuillez passer à votre compte [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Pour retirer de l'argent, veuillez passer à votre compte [_1].","Switch_to_crypto_account?":"Passer à un compte crypto ?","To_deposit_cryptocurrency,_switch_your_account_":"Pour déposer des cryptomonnaies, changez votre compte.","To_withdraw_cryptocurrency,_switch_your_account_":"Pour retirer des cryptomonnaies, changez votre compte.","Withdraw":"Retrait","Deposit":"Dépôt","Town/City":"Ville","First_line_of_home_address":"Première ligne de l'adresse résidentielle","Postal_Code/ZIP":"Code postal","State/Province":"Etat/Province","Email_address":"Adresse e-mail","Telephone":"Téléphone","Country_of_Residence":"Pays de résidence","details":"informations","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Notre caisse est temporairement hors service en raison d'une maintenance du système. Vous pourrez accéder à la caisse dans quelques minutes lorsque la maintenance sera terminée.","Your_cashier_is_locked_":"Votre caisse est verrouillée.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Veuillez noter que la devise sélectionnée n'est autorisée que pour les comptes limités.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Vous avez atteint la limite de retrait. Veuillez télécharger votre preuve d'identité et d'adresse pour lever votre limite de retrait et procéder à votre retrait.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Les services d’Agent de Paiement ne sont pas disponibles dans votre pays ou dans votre devise préférée.","Select_payment_agent":"Sélectionnez l’agent de paiement","Amount_in":"Montant en","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Seuls les lettres, les chiffres, espace, trait d'union, point, virgule et apostrophe sont autorisés.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Votre demande de retirer [_1] [_2] de votre compte [_3] pour le compte de l'Agent de Paiement [_4] a été traitée avec succès.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Votre jeton a expiré ou est invalide. Veuillez cliquer [_1]ici[_2] pour relancer le processus de vérification.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Désolé, les dépôts pour cette devise sont actuellement désactivés.","Please_[_1]deposit[_2]_to_your_account_":"Veuillez [_1]faire un dépôt[_2] sur votre compte.","Sorry,_account_signup_is_not_available_in_your_country_":"Désolé, l'ouverture de compte n’est pas disponible dans votre pays.","Asset":"Actif","Opens":"Ouverture","Closes":"Clôture","Settles":"Règlements","Upcoming_Events":"Évènements à venir","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Ajouter + / – pour définir une compensation de barrière. Par exemple, +0.005 signifie une barrière qui est plus élevée que le point d’entrée de 0,005.","Digit":"Chiffre","Percentage":"Pourcentage","Waiting_for_entry_tick_":"En attente du tick d'entrée.","High_Barrier":"Barrière supérieure","Low_Barrier":"Barrière inférieure","Waiting_for_exit_tick_":"En attente du tick de sortie.","Ticks_history_returned_an_empty_array_":"L'historique des ticks retourne une gamme vide.","Chart_is_not_available_for_this_underlying_":"Le graphique n’est pas disponible pour ce sous-jacent.","Purchase":"Achat","Net_profit":"Bénéfice net","Return":"Retour sur investissement","Time_is_in_the_wrong_format_":"Le format de l'heure est incorrect.","Rise/Fall":"Hausse/Baisse","Higher/Lower":"Supérieur/Inférieur","Matches/Differs":"Égal/Différent","Even/Odd":"Pair/Impair","Over/Under":"Au dessus/En dessous","High-Close":"Haut-Clôture","Close-Low":"Clôture-Bas","High-Low":"Haut-Bas","Up/Down":"Hausse/Baisse","Only_Ups/Only_Downs":"Que des Montées/Que des Descentes","In/Out":"Zone In/Out","Select_Trade_Type":"Sélectionnez le Type de Trade","Spot_Time_(GMT)":"Temps Spot (GMT)","seconds":"secondes","hours":"heures","days":"jours","second":"seconde","hour":"heure","day":"jour","Duration":"Durée","End_Time":"Heure de fin","Purchase_request_sent":"Demande d’achat envoyé","High":"Haut","Close":"Clôture","Low":"Bas","Select_Asset":"Sélectionnez l'Actif","Search___":"Rechercher...","Maximum_multiplier_of_1000_":"Multiplicateur maximal de 1000.","Stake":"Investissement","Payout":"Paiement","Multiplier":"Multiplicateur","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Désolé, votre compte n'est autorisé pour aucun achat supplémentaire de contrat.","Trading_is_unavailable_at_this_time_":"Le Trading n’est pas disponible en ce moment.","Please_reload_the_page":"Veuillez recharger la page","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Aucun autre trade n'est autorisé sur ce type de contrat pour la session de trading en cours. Pour plus d'informations, consultez nos [_1]conditions générales[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Votre application doit être traitée comme un client professionnel est en cours de traitement.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Votre demande de client professionnel [_1]n'est pas approuvée[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Veuillez réappliquer une fois que les critères requis ont été remplis.","More_information_can_be_found_in_an_email_sent_to_you_":"Plus d'informations peuvent être trouvées dans un email qui vous a été envoyé.","I_want_to_reapply":"Je veux postuler à nouveau","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Dans l’UE, les options binaires financières sont seulement disponibles aux investisseurs professionnels.","Apply_now_as_a_professional_investor":"Appliquer maintenant en tant qu'investisseur professionnel","Try_our_[_1]Synthetic_Indices[_2]_":"Essayez nos [_1]Indices Synthétiques[_2].","Try_our_other_markets_":"Essayez nos autres marchés.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Veuillez remplir le formulaire de [_1]Compte Réel[_2] pour vérifier votre âge comme l'exige la Commission des [_3]Jeux du Royaume-Uni[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"L'accès au compte est temporairement restreint. Veuillez vérifier votre boîte de réception pour plus de détails.","Contract_Confirmation":"Confirmation de contrat","Your_transaction_reference_is":"Votre référence de transaction est","Total_Cost":"Coût total","Potential_Payout":"Paiement potentiel","Potential_Profit":"Profits potentiels","View":"Affichage","This_contract_won":"Ce contrat a été gagné","This_contract_lost":"Ce contrat a été perdu","The_reset_time_is_[_1]":"Le temps de réinitialisation est [_1]","Now":"Maintenant","Average":"Moyenne","Buy_price":"Prix d'achat","Final_price":"Prix final","Loss":"Pertes","Profit":"Profits","Account_balance:":"Solde du compte :","Reverse_Side":"Verso","Front_Side":"Face Avant","Pending":"En attente","Submitting":"En cours de soumission","Submitted":"Soumis","Failed":"Échec","Compressing_Image":"Image en cours de compression","Checking":"Vérification en cours","Checked":"Vérifié","Unable_to_read_file_[_1]":"Incapable de lire les fichiers [_1]","Passport":"Passeport","Identity_card":"Carte d’identité","Driving_licence":"Permis de conduire","Invalid_document_format_":"Format de document invalide.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Taille du fichier ([_1]) dépasse la limite autorisée. La taille maximum du fichier est de : [_2]","ID_number_is_required_for_[_1]_":"Un numéro d’identification est nécessaire pour [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Seulement les lettres, chiffres, espace, tiret bas et trait d’union sont autorisés pour le numéro d’identification) ([_1]).","Expiry_date_is_required_for_[_1]_":"La date d’expiration est requise pour [_1].","Place_of_birth":"Lieu de naissance","Please_select_the_country_of_document_issuance":"Veuillez sélectionner le pays de délivrance du document","Choose_the_document_type":"Choisissez le type de document","Please_enter_the_correct_format__Example:":"Veuillez saisir le format correct. Exemple :","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Vérifiez les emails de votre compte Google et cliquez sur le lien dans l'email afin de continuer.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Vérifiez les emails de votre compte Facebook et cliquez sur le lien dans l'email afin de continuer.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Vérifiez l'adresse email associée avec votre Identifiant Apple et cliquez sur le lien dans l'email afin de continuer.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Veuillez cliquer sur le lien reçu par email afin de modifier votre mot de passe MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Veuillez cliquer sur le lien dans l'e-mail pour modifier votre mot de passe Binary.","We’ve_sent_you_an_email":"Nous vous avons envoyé un email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Vous utilisez votre compte [_1] pour vous connecter à votre compte Deriv. Pour modifier votre méthode de connexion en utilisant un identifiant et un mot de passe, cliquez sur [_2]Unlink[_3].","Linked_with_[_1]":"Connecté avec [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Vous allez devoir créer un mot de passe afin de compléter le processus.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Etes-vous sûr de vouloir vous déconnecter de [_1]?","Unlink":"Déconnecter","Country_not_found":"Pays introuvable","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Les documents de ce pays ne sont actuellement pas pris en charge - essayez un autre type de document","Submit_document":"Soumettre le document","Select_country":"Sélectionner un pays","e_g__United_States":"exemple Etats Unis","Search_for_country":"Rechercher un pays","Select_issuing_country":"Sélectionnez le pays émetteur","Submit_verification":"Soumettre la demande de vérification","Tips":"Conseils","Documents_uploaded":"Documents téléchargés","Document_uploaded":"Document téléchargé","Selfie_uploaded":"Selfie téléchargé","We're_now_ready_to_verify_your_identity":"Nous sommes maintenant prêts à vérifier votre identité","Great,_that's_everything_we_need":"Parfait, c'est tout ce dont nous avons besoin","The_link_only_works_on_mobile_devices":"Le lien ne fonctionne que sur les appareils mobiles","Something's_gone_wrong":"Un problème est survenu","You'll_need_to_restart_your_verification_on_your_computer":"Vous devrez redémarrer votre vérification sur votre ordinateur","Get_secure_link":"Obtenez un lien sécurisé","Steps_required_to_continue_verification_on_your_mobile":"Étapes requises pour continuer la vérification sur votre mobile","Check_back_here_to_finish_the_submission":"Revenez ici pour terminer la procédure","Open_the_link_and_complete_the_tasks":"Ouvrez le lien et terminez les tâches","Send_a_secure_link_to_your_phone":"Envoyez un lien sécurisé sur votre téléphone","Here's_how_to_do_it:":"Voici comment procéder:","Continue_on_your_phone":"Continuez sur votre téléphone","Your_computer_may_take_a_few_seconds_to_update":"La mise à jour de votre ordinateur peut prendre quelques secondes","You_can_now_return_to_your_computer_to_continue":"Vous pouvez maintenant revenir à votre ordinateur pour continuer","Uploads_successful":"Téléchargements réussis","Make_sure_everything_is_clear":"Assurez-vous que tout est clair","Blurry_photo_detected":"Photo floue détectée","Make_sure_full_document_is_visible":"Assurez-vous que le document complet est visible","Cut-off_image_detected":"Image coupée détectée","Move_away_from_direct_light":"Éloignez-vous de la lumière directe","Glare_detected":"Éblouissement détecté","Make_sure_all_of_the_document_is_in_the_photo":"Assurez-vous que tout le document est sur la photo","No_document_detected":"Aucun document détecté","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre carte sont lisibles, sans flou ni éblouissement","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Il faudra plus de temps pour vous vérifier si nous ne pouvons pas le lire","To_smoothly_verify_you,_we_need_a_better_photo":"Pour vérifier votre compte, nous avons besoin d'une meilleure photo","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre licence sont lisibles, sans flou ni éblouissement","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre passeport sont clairs à lire, sans flou ni éblouissement","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails de votre permis sont clairs à lire, sans flou ni éblouissement","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Assurez-vous que les détails sont clairs à lire, sans flou ni éblouissement","Redo":"Refaire","Confirm":"Confirmer","Upload_anyway":"Télécharger quand même","Enlarge_image":"Agrandir l'image","Photo_of_your_document":"Photo de votre document","Check_your_image":"Vérifiez votre image","Front_and_back":"Recto-Verso","Driver's_license":"Permis de conduire","Face_photo_page":"Page de photo de visage","Residence_permit":"Permis de résidence","Sorry,_no_mobile_phone_bills":"Désolé, aucune facture de téléphone mobile","Documents_you_can_use_to_verify_your_identity":"Documents que vous pouvez utiliser pour vérifier votre identité","It_must_be_an_official_photo_ID":"Il doit s'agir d'une pièce d'identité officielle avec photo","These_are_the_documents_most_likely_to_show_your_current_home_address":"Ce sont les documents les plus susceptibles d'indiquer votre adresse personnelle actuelle","Choose_document":"Choisissez un document","Select_a_%{country}_document":"Sélectionnez un document %{country}","or_upload_photo_–_no_scans_or_photocopies":"ou télécharger une photo - pas de numérisation ni de photocopie","Continue_on_phone":"Continuer sur téléphone","Take_a_photo_with_your_phone":"Prenez une photo avec votre téléphone","Submit_identity_card_(back)":"Soumettre la carte d'identité (verso)","Submit_identity_card_(front)":"Soumettre la carte d'identité (recto)","Submit_license_(back)":"Soumettre le permis (verso)","Submit_license_(front)":"Soumettre le permis (recto)","Submit_passport_photo_page":"Soumettre la photo de votre passeport","Submit_residence_permit_(back)":"Soumettre le permis de résidence (verso)","Submit_residence_permit_(front)":"Soumettre le permis de résidence (recto)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Redémarrez le processus sur la dernière version de Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Redémarrez le processus sur la dernière version de Safari","Unsupported_browser":"Navigateur web non supporté","Close_identity_verification_screen":"Fermer l'écran de vérification d'identité","Dismiss_alert":"Ignorer l'alerte","back":"retour","close":"clôture","Restart_process_on_a_different_device":"Redémarrez le processus sur un autre appareil","Camera_not_detected":"Caméra non détectée","Must_be_under_10MB_":"Doit être inférieur à 10 Mo.","File_size_exceeded_":"Taille du fichier dépassée.","Try_using_another_file_type_":"Essayez d'utiliser un autre type de fichier.","File_not_uploaded_":"Fichier non téléchargé.","An_error_occurred_while_loading_the_component":"Une erreur s'est produite lors du chargement du composant","Only_your_face_can_be_in_the_selfie":"Seul votre visage peut être dans le selfie","Multiple_faces_found":"Plusieurs visages trouvés","Your_face_is_needed_in_the_selfie":"Votre visage est nécessaire dans le selfie","No_face_found":"Aucun visage trouvé","Please_try_again":"Veuillez réessayer s'il vous plait","Connection_lost":"Connexion perdue","Copy_the_link_to_your_phone":"Copiez le lien sur votre téléphone","Too_many_failed_attempts":"Trop de tentatives échouées","Try_using_a_JPG_or_PNG_file":"Essayez d'utiliser un fichier JPG ou PNG","File_type_not_supported":"Type de fichier non pris en charge","Loading___":"Chargement...","Loading":"Chargement","Check_that_your_number_is_correct":"Vérifiez que votre numéro est correct","Copied":"Copié","Copy":"Copier","Send_link":"Envoyer un lien","How_to_scan_a_QR_code":"Comment scanner un code QR","Point_your_phone’s_camera_at_the_QR_code":"Dirigez la caméra de votre téléphone vers le code QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Si cela ne fonctionne pas, téléchargez un scanner de code QR depuis Google Play ou l'App Store","or":"ou","Scan_QR_code":"Scanner le code QR","Get_link_via_SMS":"Obtenir le lien par SMS","Copy_link":"Copier le lien","Sending":"Envoi en cours","Enter_mobile_number":"Entrez votre numéro de mobile","Enter_your_mobile_number:":"Entrez votre numéro de mobile:","Scan_the_QR_code_with_your_phone":"Scannez le code QR avec votre téléphone","Send_this_one-time_link_to_your_phone":"Envoyez ce lien unique sur votre téléphone","Open_the_link_on_your_mobile":"Ouvrez le lien sur votre mobile","Get_your_secure_link":"Obtenez votre lien sécurisé","Copy_the_link_to_your_mobile_browser":"Copiez le lien dans votre navigateur mobile","Continue":"Continuer","Make_sure§":"Soyez sur§","2__Your_desktop_window_stays_open":"2. La fenêtre de votre bureau reste ouverte","1__This_link_was_sent_by_you":"1. Ce lien a été envoyé par vous","Continue_with_the_verification":"Continuer la vérification","Linked_to_your_computer":"Lié à votre ordinateur","Take_a_photo_of_the_back_of_your_card":"Prenez une photo du dos de votre carte","Take_a_photo_of_the_front_of_your_card":"Prenez une photo de votre carte","Take_a_photo_of_the_back_of_your_license":"Prenez une photo du dos de votre permis","Take_a_photo_of_the_front_of_your_license":"Prenez une photo de votre permis de conduire","Take_a_photo_of_your_passport_photo_page":"Prenez une photo de votre page de photo de passeport","Take_a_selfie_showing_your_face":"Prenez un selfie montrant votre visage","Take_a_photo_using_the_basic_camera_mode_instead":"Prenez plutôt une photo en utilisant le mode appareil photo de base","Take_a_photo":"Prendre une photo","Passport_photo_page":"Page de photo de passeport","Thank_you":"Merci","Verification_complete":"Vérification terminée","Refresh":"Rafraîchir","Recovery":"Récupération","Follow_these_steps_to_recover_camera_access:":"Suivez ces étapes pour récupérer l'accès à la caméra:","Refresh_this_page_to_restart_the_identity_verification_process":"Actualisez cette page pour redémarrer le processus de vérification d'identité","Grant_access_to_your_camera_from_your_browser_settings":"Accordez l'accès à votre caméra à partir des paramètres de votre navigateur","Recover_camera_access_to_continue_face_verification":"Récupérer l'accès à la caméra pour continuer la vérification du visage","Camera_access_is_denied":"L'accès à la caméra est refusé","We_cannot_verify_you_without_using_your_camera":"Nous ne pouvons pas vous vérifier sans utiliser votre caméra","Enable_camera":"Activer la caméra","When_prompted,_you_must_enable_camera_access_to_continue":"Lorsque vous y êtes invité, vous devez activer l'accès à la caméra pour continuer","Allow_camera_access":"Autoriser l'accès à la caméra","Provide_the_whole_document_page_for_best_results":"Fournissez la page entière du document pour de meilleurs résultats","Upload_back_of_card_from_your_computer":"Télécharger le verso de la carte depuis votre ordinateur","Upload_front_of_card_from_your_computer":"Téléchargez le recto de la carte depuis votre ordinateur","Upload_back_of_license_from_your_computer":"Télécharger le dos du permis de conduire depuis votre ordinateur","Upload_front_of_license_from_your_computer":"Téléchargez le permis depuis votre ordinateur","Upload_passport_photo_page_from_your_computer":"Téléchargez la photo de votre passeport depuis votre ordinateur","Upload_a_selfie_from_your_computer":"Télécharger un selfie depuis votre ordinateur","Take_photo":"Prendre une photo","Upload":"Télécharger","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Vérifiez qu'il est connecté et fonctionnel. Vous pouvez également poursuivre la vérification sur votre téléphone","Make_sure_your_device_has_a_working_camera":"Assurez-vous que votre appareil dispose d'une caméra fonctionnelle","Camera_not_working?":"La caméra ne fonctionne pas?","It_may_be_disconnected__Try_using_your_phone_instead_":"Il peut être déconnecté. Essayez d'utiliser votre téléphone à la place.","Make_sure_your_device's_camera_works":"Assurez-vous que la caméra de votre appareil fonctionne","Camera_not_working":"La caméra ne fonctionne pas","Remember_to_press_stop_when_you're_done__Redo_video_actions":"N'oubliez pas d'appuyer sur stop lorsque vous avez terminé. Refaire les actions vidéo","Looks_like_you_took_too_long":"On dirait que vous avez pris trop de temps","View_from_camera":"Vue depuis la caméra","Take_a_selfie":"Prendre un selfie","Photo_of_your_face":"Photo de votre visage","Make_sure_your_selfie_clearly_shows_your_face":"Assurez-vous que votre selfie montre clairement votre visage","Check_selfie":"Vérifier le selfie","Tips_to_take_a_good_selfie":"Conseils pour prendre un bon selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Faites face vers l'avant et assurez-vous que vos yeux sont clairement visibles","Remove_your_glasses,_if_necessary":"Retirez vos lunettes, si nécessaire","We'll_compare_it_with_your_document":"Nous le comparerons avec votre document","Your_link_will_expire_in_one_hour":"Votre lien expirera dans une heure","Keep_this_window_open_while_using_your_mobile":"Gardez cette fenêtre ouverte lorsque vous utilisez votre mobile","Resend_link":"Renvoyer le lien","We've_sent_a_secure_link_to_%{number}":"Nous avons envoyé un lien sécurisé vers %{number}","It_may_take_a_few_minutes_to_arrive":"Cela peut prendre quelques minutes pour arriver","Check_your_mobile":"Vérifiez votre mobile","Your_mobile_link_will_expire_in_one_hour":"Votre lien mobile expirera dans une heure","Don't_refresh_this_page":"N'actualisez pas cette page","Once_you've_finished_we'll_take_you_to_the_next_step":"Une fois que vous avez terminé, nous vous emmènerons à l'étape suivante","Connected_to_your_mobile":"Connecté à votre mobile","Upload_photo":"Envoyer la photo","Example_of_a_blurry_document":"Exemple de document flou","All_details_must_be_clear_—_nothing_blurry":"Tous les détails doivent être clairs - rien de flou","Example_of_a_cut-off_document":"Exemple de document tronqué","Show_all_details_—_including_the_bottom_2_lines":"Afficher tous les détails - y compris les 2 lignes du bas","Example_of_a_document_with_glare":"Exemple de document avec reflets","Move_away_from_direct_light_—_no_glare":"Éloignez-vous de la lumière directe - sans'éblouissement","Document_example":"Exemple de document","The_photo_should_clearly_show_your_document":"La photo doit clairement montrer votre document","Scans_and_photocopies_are_not_accepted":"Les scans et photocopies ne sont pas acceptés","Upload_passport_photo_page":"Télécharger la photo de votre passeport","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Pour ouvrir un compte bancaire, nous devrons vérifier votre identité.","It_will_only_take_a_couple_of_minutes_":"Cela ne prendra que quelques minutes.","Verify_Identity":"Vérifier l'identité","Open_your_new_bank_account":"Ouvrez votre nouveau compte bancaire","Please_enter_a_valid_Login_ID_":"Veuillez saisir un jeton d'authentification valide.","Amount":"Montant","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Votre demande de transférer [_1] [_2] de [_3] à [_4] a été traitée avec succès.","Resale_not_offered":"La revente n'est pas proposée","You've_made_no_transactions_of_this_type_up_to_this_date_":"Vous n'avez effectué aucune transaction de ce type jusqu'à cette date.","Ref_":"Réf.","Contract":"Contrat","Purchase_Price":"Prix d'achat","Sale_Date":"Date de vente","Sale_Price":"Prix de vente","Profit/Loss":"Profits/pertes","Details":"Informations","Total_Profit/Loss":"Total des profits/pertes","Action_required!":"Action requise!","Sorry,_an_error_occurred_while_processing_your_request_":"Désolé, une erreur s'est produite pendant le traitement de votre demande.","withdrawal(s)":"retrait(s)","We_couldn’t_read_that!":"Nous ne pouvions pas lire ça !","Remaining_characters:_[_1]_":"Caractères restants: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Merci de ne pas écrire plus de [_1] caractères pour les deux champs.","Only_[_1]_are_allowed_":"Seulement [_1] autorisées.","letters":"lettres","numbers":"chiffres","space":"espace","Please_select_at_least_one_scope":"Veuillez sélectionner au moins un champ d'application","New_token_created_":"Nouveau jeton d'authentification créé.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Le nombre maximum de jetons d'authentification ([_1]) est atteint.","Name":"Nom","Token":"Jeton","Scopes":"Périmètre","Last_Used":"Dernière utilisation","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Voulez-vous vraiment supprimer ce jeton de façon permanente","Delete":"Supprimer","Never_Used":"Jamais utilisé","You_have_not_granted_access_to_any_applications_":"Vous n'avez acheté aucun contrat.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Voulez-vous vraiment révoquer l'accès à cette application de façon permanente","Revoke_access":"Révoquer l'accès","Admin":"Administration","Payments":"Paiements","Read":"Lire","Trade":"Trading","Trading_Information":"Information de trading","Never":"Jamais","Last_Login":"Dernière Connexion","You_did_not_change_anything_":"Vous n'avez effectué aucune modification.","Your_changes_have_been_updated_successfully_":"Vos modifications ont bien été prises en compte.","Successful":"Réussite","Date_and_Time":"Date et heure","Browser":"Navigateur","IP_Address":"Adresse IP","Status":"Statut","Your_account_has_no_Login/Logout_activity_":"Votre compte n'indique aucune activité de connexion/déconnexion.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Votre compte est entièrement authentifié et vos limites de retrait ont été levées.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Votre limite de retrait de [_1] jour est actuellement [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Vous avez déjà retiré l'équivalent de [_1][_2] au total au cours des [_3] derniers jours.","Your_withdrawal_limit_is_[_1][_2]_":"Votre limite de retrait est de [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Vous avez déjà retiré [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Par conséquent, votre montant de retrait disponible est au plus de [_1][_2], concernant vos fonds disponibles sur votre compte. ","Please_confirm_that_all_the_information_above_is_true_and_complete_":"S’il vous plaît veuillez confirmer que tous les renseignements ci-dessus sont véridiques et complets.","Your_settings_have_been_updated_successfully_":"Vos paramètres ont été actualisés avec succès.","Sorry,_an_error_occurred_while_processing_your_account_":"Désolé, une erreur est survenu pendant le traitement de votre compte.","Please_select_a_country":"Veuillez sélectionner un pays","Timed_out_until":"Expiration jusqu'à","Excluded_from_the_website_until":"Exclu du site Web jusqu’au","Session_duration_limit_cannot_be_more_than_6_weeks_":"La limite de durée de session ne peut excéder 6 semaines.","Time_out_must_be_after_today_":"La période d'expiration doit être ultérieure.","Time_out_cannot_be_more_than_6_weeks_":"La période d'expiration ne peut excéder 6 semaines.","Time_out_cannot_be_in_the_past_":"La période d'expiration ne peut être antérieure.","Please_select_a_valid_time_":"Veuillez sélectionner un horaire valide.","Exclude_time_cannot_be_less_than_6_months_":"Le temps d'exclusion ne peut pas être inférieur à 6 mois.","Exclude_time_cannot_be_for_more_than_5_years_":"Le temps d'exclusion ne peut pas être supérieur à 5 ans.","Confirm_changes":"Confirmer les modifications","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Nous mettrons à jour vos limites. Cliquez sur [_1]Accepter et acceptez[_2] pour reconnaître que vous êtes entièrement responsable de vos actions et que nous ne sommes pas responsables de toute dépendance ou perte.","Agree_and_accept":"Accepter","Go_back":"Retour","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Lorsque vous cliquerez sur « Ok », vous serez exclu des opérations de trading du site jusqu'à la date sélectionnée.","Your_changes_have_been_updated_":"Vos modifications ont été prises en compte.","Disable":"Désactivé","Enable":"Activé","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Vous avez activé avec succès l’authentification deux facteurs pour votre compte.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Vous avez désactivé l’authentification deux facteurs avec succès pour votre compte.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Vous n'avez pas besoin d'authentifier votre compte pour le moment.[_1]Nous vous informerons lorsque votre compte devra être authentifié.","No_authentication_required":"Aucune authentification requise","Back_to_trading":"Retour au trade","You_are_categorised_as_a_professional_client_":"Vous êtes considéré comme un client professionnel.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Vous êtes considéré comme un client de détail. Demandez à être traité comme un trader professionnel.","Bid":"Faire une mise","Closed_Bid":"Enchère fermée","Reference_ID":"Identifiant de parrainage","Credit/Debit":"Crédit/débit","Balance":"Solde","Top_up_error":"Erreur de rechargement","Understood":"Compris","Top-up_successful":"Succès du rechargement","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] ont été crédités sur votre Compte Démo: [_2].","Go_to_statement":"Aller sur le relevé","Continue_trading":"Poursuivre le trading","Your_Demo_balance_has_been_reset_":"Votre solde démo a été réinitialisé.","Account":"Compte","Available_Markets":"Marchés disponibles","Currency":"Devise","Multipliers_Account":"Compte Multiplicateurs","Gaming_Account":"Compte de jeu","Options_Account":"Compte Options","Real_Account":"Compte réel","Counterparty":"Contrepartie","Create_account":"Créer un compte","Change_currency":"Changer de devise","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Remarque : Vous êtes limité à un seul compte en devise fiduciaire. La devise de votre compte fiat peut être changée avant votre premier dépôt sur votre compte fiat ou la création d'un vrai compte MT5 (ou un vrai compte Deriv X à deriv.com). Vous pouvez également ouvrir un compte pour chaque cryptodevise supportée.","This_account_is_disabled":"Ce compte est désactivé","This_account_is_excluded_until_[_1]":"Ce compte est exclu jusqu'à [_1]","Set_currency":"Choisir la devise","Commodities":"Matières premières","Stock_Indices":"Indices boursiers","Stocks":"Actions","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Si vous avez un compte chez nous, nous vous enverrons, dans quelques minutes, un lien à votre email pour réinitialiser votre mot de passe.","Sign_up":"Inscrivez vous","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Les Contrats de Trading pour Différence (CFDs) sur Indices Synthétiques peuvent ne pas convenir à tous. Veuillez vous assurer de bien comprendre les risques encourus, y compris la possibilité de perdre tous les fonds de votre compte MT5. Le jeu peut créer une dépendance - s'il vous plaît, jouez de façon responsable.","Do_you_wish_to_continue?":"Voulez-vous continuer ?","Acknowledge":"Reconnaître","Change_Password":"Modifier le mot de passe","The_investor_password_of_account_number_[_1]_has_been_changed_":"Le mot de passe investisseur du compte numéro [_1] a été modifié.","Reset_Password":"Réinitialiser le mot de passe","Verify_Reset_Password":"Vérifier le nouveau mot de passe","Please_check_your_email_for_further_instructions_":"Veuillez vérifier votre email pour obtenir des instructions supplémentaires.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Le dépôt [_1] à partir de [_2] vers le numéro de compte [_3] est effectué. Identifiant de transaction : [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Le retrait [_1] à partir du numéo de compte [_2] vers [_3] a été effectué. Identifiant de transaction : [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Pour effectuer un retrait depuis votre [_1] MetaTrader 5, veuillez [_2]Authentifier[_3] votre Compte Binary.","Current_password":"Mot de passe actuel","New_password":"Nouveau mot de passe","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Pour transférer des fonds vers votre compte MT5, saisissez un montant égal ou supérieur à [_1].","You_have_insufficient_funds_in_your_MT5_account_":"Vous n'avez pas assez de fonds dans votre compte MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Désolé, cette fonctionnalité n’est pas disponible dans votre juridiction","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"En raison d'un problème sur notre serveur, certains de vos comptes MT5 ne sont pas disponibles pour le moment. [_1]Toutes nos excuses, merci de votre patience.","Unavailable":"Indisponible","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] ont été crédités sur votre Compte Virtuel MT5: [_2].","_(Region_added)":" (Région ajoutée)","_(Temporarily_unavailable)":" (Temporairement indisponible)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"\nNos serveurs MT5 sont temporairement indisponibles. Nous travaillons à leur restauration. Veuillez réessayer dans quelques minutes.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Merci d'utiliser votre mot de passe MT5 pour vous connecter à n'importe quel compte [_1] lorsque vous utilisez une application MT5 sur votre téléphone ou tout autre appareil.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Cela changera le mot de passe de tous vos comptes [_1].","Demo_Accounts":"Compte Démo","Real-Money_Accounts":"Comptes d’argent réel","Demo_Account":"Compte Démo","Real-Money_Account":"Compte d’Argent Réel","for_account_[_1]":"pour compte [_1]","[_1]_Account_[_2]":"[_1] Compte [_2]","MT5_Financial":"MT5 Financière","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Entrez votre mot de passe MT5 pour ajouter un compte [_1] [_2].","demo":"démo","real":"réel","MT5_Synthetic":"MT5 Synthétique","Get_[_1]":"Obtenez [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Le solde de votre compte démo est actuellement inférieur ou égal à [_1]. Vous pouvez recharger votre compte avec [_2] de plus.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Vous pouvez recharger votre compte démo avec [_1] de plus si votre solde est inférieur ou égal à [_2].","Yes,_I'm_sure":"Oui, j'en suis sûr","Are_you_sure?":"Êtes vous sûr?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Vous ne pourrez pas changer la devise de votre compte fiat après avoir créé ce compte [_1]. Êtes-vous sûr de vouloir continuer ?","Go_to_Deriv_to_add_an_MT5_account":"Allez sur Deriv pour ajouter un compte MT5","Back":"Retour","Address":"Adresse","Account_currency":"Devise du compte","Financial_assessment":"Évaluation financière","Personal_details":"Informations personnelles","Terms_of_use":"Conditions d'utilisation","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) est une version de Tether qui est rattachée à l'USD et est construite sur la blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) est une version de Tether qui est indexée sur USD et est hébergée sur la plate-forme Ethereum.","Title_and_name":"Titre et nom","Real_money_account_opening":"Ouverture d'un compte en argent réel","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Votre jeton a expiré ou n’est pas valide. S’il vous plaît cliquez ici pour relancer le processus de vérification.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"L'adresse e-mail que vous avez saisie est déjà utilisée. Si vous avez oublié votre mot de passe, veuillez essayer notre outil de récupération de mot de passe ou contacter le service clientèle.","Password_is_not_strong_enough_":"Le mot de passe n'est pas assez fiable.","Upgrade_now":"Mettre à jour maintenant","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] jours [_2] heures [_3] minutes","Your_trading_statistics_since_[_1]_":"Vos statistiques de trading depuis [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Le trading [_1] peut devenir une véritable addiction, au même titre que toute autre activité pratiquée de façon trop intensive. Pour éviter le danger d'une telle addiction, nous mettons en œuvre suivi réaliste de votre situation en vous fournissant régulièrement un relevé de vos opérations et de vos comptes.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] veuillez cliquer sur le lien ci-dessous pour relancer le processus de récupération de mot de passe.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Vous avez un nouveau compte Binary pour vous connecter à Binary.com","Success":"Succès","Done":"Terminé","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Votre compte Deriv est déconnecté de [_1]. Merci d'utiliser [_2]votre email et mot de passe pour vos futures connexions.","Success!":"Succès!","Got_it":"C'est compris","Binary_Password_Reset":"Réinitialisation de mot de passe Binary","Binary_password":"Mot de passe Binary","You_have_added_a_[_1]_account_":"Vous avez ajouté un compte [_1].","Add_account":"Ajouter un compte","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether en tant que jeton Omni (USDT) est une version de Tether qui est hébergée sur la couche Omni de la blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether en tant que jeton ERC20 (eUSDT) est une version de Tether hébergée sur Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether en tant que jeton TRC20 (TuSDT) est une version de Tether hébergée sur Tron.","Add_new_crypto_account":"Ajouter un nouveau compte de cryptomonnaie","Add_new_account":"Ajouter un nouveau compte","Create_a_cryptocurrency_account":"Créer un compte de cryptomonnaie","Choose_your_preferred_cryptocurrency":"Choisissez votre crypto-monnaie préférée","You_can_open_an_account_for_each_cryptocurrency_":"Vous pouvez ouvrir un compte pour chaque crypto-monnaie.","Choose_a_cryptocurrency_account":"Choisir un compte de cryptomonnaie","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Choisissez l'un de vos comptes ou ajoutez un nouveau compte de cryptomonnaie","Choose_an_account":"Choisissez un compte","Choose_one_of_your_accounts_or_add_a_new_account":"Choisissez l'un de vos comptes ou ajoutez un nouveau compte","Choose_one_of_your_accounts":"Choisissez un de vos comptes","Please_select_the_currency_for_this_account:":"Veuillez sélectionner la devise de ce compte :","deposit":"dépôt","deposit_or_create_a_CFDs_account":"déposer ou créer un compte CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Êtes-vous sûr de vouloir créer votre compte [_1] maintenant ?","Note:":"Remarque:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Vous pouvez ouvrir un compte pour chaque cryptodevise supportée.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Êtes-vous sûr de vouloir créer un compte fiat en [_1] ?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Vous êtes limité à un seul compte fiat. Vous pouvez changer la devise de votre compte fiat à tout moment avant d'effectuer un premier [_1].","Yes":"Oui","Create_[_1]_account":"Créer un compte [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Vous avez changé avec succès la devise de votre compte en [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Vous avez changé avec succès la devise de votre compte de [_1] à [_2].","Please_choose_a_currency":"Veuillez choisir une monnaie","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Vous avez un nouveau mot de passe MT5 pour vous connecter à vos comptes [_1] sur le web et l'application mobile.","Accumulator":"Accumulateur","Asian_Down":"Asiatiques à la baisse","Asian_Up":"Asiatiques à la hausse","Higher":"Supérieur","Higher_or_equal":"Plus haut ou égal","Digit_Differs":"Chiffre Différent","Digit_Even":"Chiffre Pair","Digit_Matches":"Chiffre Correspondant","Digit_Odd":"Chiffre Impair","Digit_Over":"Chiffre Supérieur","Digit_Under":"Chiffre Inférieur","Ends_Outside":"Termine hors de la zone","Ends_Between":"Termine dans la zone","Multiplier_Down":"Multiplicateur Descente","Multiplier_Up":"Multiplicateur Montée","Does_Not_Touch":"Ne touche pas","Touches":"Touche","Lower":"Inférieur","Lower_or_equal":"Plus bas ou égal","Stays_Between":"Reste dans la zone","Only_Ups":"Que des Montées","Only_Downs":"Que des Descentes","High_Tick":"Tick Haut","Low_Tick":"Tick Bas","Goes_Outside":"Sort de la zone","Call":"Téléphoner","Put":"Mettre","Equals":"Égaux","Not":"Pas","Buy":"Acheter","Sell":"Vente","Waiting_for_contract_settlement_":"En attente de règlement du contrat.","including_Deal_Cancel__Fee":"Offre Annulation inclue. Coût","Contract_has_not_started_yet":"Le contrat n’a pas encore commencé","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Ce contrat est uniquement disponible sur [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Ce contrat est uniquement disponible sur DTrader.[_1][_2]Allez sur Dtrader[_3] pour fermer ou annuler ce contrat.","Contract_Result":"Résultat du contrat","Close_Time":"Heure de la Clôture","Exit_Spot_Time":"Prix de sortie actuel","Audit":"Vérification","View_chart":"Afficher le graphique","Audit_Page":"Page de vérification","Contract_Starts":"Le contrat débute","Contract_Ends":"Le contrat se termine","Contract_Details":"Détails relatifs au contrat","Target":"Cible","Contract_Information":"Informations du contrat","Contract_Type":"Type de Contrat","Transaction_ID":"ID de Transaction","Remaining_Time":"Temps restant","Maximum_payout":"Paiement Maximum","Barrier_Change":"Modification de barrière","Current":"Valeur actuelle","Spot_Time":"Heure spot","Current_Time":"Heure actuelle","Indicative":"Indicatif","Potential_Profit/Loss":"Bénéfice/Perte Potentielle","Deal_Cancel__Fee":"Offre Annulation. Coût","You_can_close_this_window_without_interrupting_your_trade_":"Vous pouvez aussi fermer cette fenêtre sans interrompre votre trade.","There_was_an_error":"Une erreur s'est produite","Sell_at_market":"Vendre au prix du marché","Note":"Remarque","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Le contrat sera vendu au prix de marché en vigueur à réception de la demande par nos serveurs. Ce prix peut différer du prix indiqué.","You_have_sold_this_contract_at_[_1]_[_2]":"Vous avez vendu ce contrat [_2] [_1]","Your_transaction_reference_number_is_[_1]":"Le numéro de référence de votre transaction est [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Nous vous remercions pour votre inscription ! Veuillez vérifier votre email pour compléter le processus d’inscription.","All_markets_are_closed_now__Please_try_again_later_":"Tous les marchés sont actuellement fermés. Veuillez réessayer ultérieurement.","Withdrawal":"Retrait","demo_credit_to_account":"Solde démo sur le compte","login":"connexion","logout":"déconnexion","Asians":"Asiatiques","Digits":"Chiffres","Ends_Between/Ends_Outside":"Termine dans/hors de la zone","High/Low_Ticks":"Ticks Haut/Bas","Stays_Between/Goes_Outside":"Reste dans/Sort de la zone","Touch/No_Touch":"Touche/Ne touche pas","Christmas_Day":"Jour de Noël","Closes_early_(at_18:00)":"Ferme tôt (à 18h)","Closes_early_(at_21:00)":"Ferme tôt (à 21h)","Fridays":"Vendredis","New_Year's_Day":"Jour de l'An","today":"aujourd'hui","today,_Fridays":"aujourd'hui, vendredis","There_was_a_problem_accessing_the_server_":"Il y a eu un problème d'accès au serveur.","There_was_a_problem_accessing_the_server_during_purchase_":"Il y a eu un problème d'accès au serveur durant l'achat."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/id.js b/src/javascript/_autogenerated/id.js index 77c0795db7b58..ef02c493925fb 100644 --- a/src/javascript/_autogenerated/id.js +++ b/src/javascript/_autogenerated/id.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['ID'] = {"Real":"Riil","Multipliers":"Multiplier","Options":"Opsi","Real_CFDs":"CFD Riil","Real_Financial":"Riil Finansial","Demo_CFDs":"CFD Demo","Demo_Financial":"Demo Finansial","Synthetic":"Sintetis","Demo_Synthetic":"Demo Sintetis","Real_Synthetic":"Riil Sintetis","CFDs":"CFD","Financial":"Finansial","Financial_STP":"Finansial STP","Demo_Financial_STP":"Demo Finansial STP","Real_Financial_STP":"Riil Finansial STP","Binary_Coin":"Koin Binary","Thank_you,_we'll_get_back_to_you_within_24_hours":"Terima kasih, kami akan menghubungi Anda dalam tempo 24 jam","Connecting_to_server":"Menghubungkan ke server","Use_a_few_words,_avoid_common_phrases":"Gunakan beberapa kata, hindari frasa umum","No_need_for_symbols,_digits,_or_uppercase_letters":"Tidak perlu simbol, digit, atau huruf besar","Add_another_word_or_two__Uncommon_words_are_better_":"Tambahkan satu atau dua kata lagi. Kata-kata yang tidak umum lebih baik.","Straight_rows_of_keys_are_easy_to_guess":"Baris tombol lurus mudah ditebak","Short_keyboard_patterns_are_easy_to_guess":"Pola keyboard pendek mudah ditebak","Use_a_longer_keyboard_pattern_with_more_turns":"Gunakan pola keyboard yang lebih panjang dengan lebih banyak putaran","Repeats_like_\"aaa\"_are_easy_to_guess":"Pengulangan seperti \"aaa\" mudah ditebak","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Pengulangan seperti \"abcabcabc\" sedikit lebih sulit ditebak daripada \"abc\"","Avoid_repeated_words_and_characters":"Hindari penggunaan kata dan karakter yang berulang","Sequences_like_abc_or_6543_are_easy_to_guess":"Urutan seperti abc atau 6543 adalah mudah ditebak","Avoid_sequences":"Hindari urutan","Recent_years_are_easy_to_guess":"Beberapa tahun terakhir ini mudah ditebak","Avoid_recent_years":"Hindari beberapa tahun terakhir","Avoid_years_that_are_associated_with_you":"Hindari tahun-tahun yang berhubungan dengan Anda","Dates_are_often_easy_to_guess":"Tanggal biasanya mudah ditebak","Avoid_dates_and_years_that_are_associated_with_you":"Hindari tanggal dan tahun yang berhubungan dengan Anda","This_is_a_top-10_common_password":"Ini adalah 10 kata sandi umum teratas","This_is_a_top-100_common_password":"Ini adalah 100 kata sandi umum teratas","This_is_a_very_common_password":"Ini adalah kata sandi yang sangat umum","This_is_similar_to_a_commonly_used_password":"Ini mirip dengan kata sandi yang biasa digunakan","A_word_by_itself_is_easy_to_guess":"Sebuah kata dengan sendirinya mudah ditebak","Names_and_surnames_by_themselves_are_easy_to_guess":"Nama dan nama keluarga itu sendiri sangat mudah ditebak","Common_names_and_surnames_are_easy_to_guess":"Nama umum dan nama keluarga mudah ditebak","Capitalization_doesn't_help_very_much":"Kapitalisasi tidak banyak membantu","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Semua huruf besar hampir mudah ditebak sama seperti huruf kecil","Reversed_words_aren't_much_harder_to_guess":"Kata-kata yang dieja terbalik juga tidak sulit untuk ditebak","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Substitusi yang dapat diprediksi seperti '@' dan bukan 'a' yang tidak begitu membantu","This_password_is_on_the_blacklist":"Kata sandi ini terdapat di daftar hitam","Unknown_OS":"OS tidak diketahui","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Anda akan diarahkan ke situs pihak ketiga yang tidak dimiliki oleh Binary.com.","Click_OK_to_proceed_":"Klik OK untuk melanjutkan.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Pastikan bahwa Anda memiliki aplikasi Telegram yang diinstal pada perangkat Anda.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] mengharuskan penyimpanan web browser Anda diaktifkan agar berfungsi dengan benar. Aktifkan atau keluar dari mode browsing pribadi.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Silahkan [_1]masuk[_2] atau [_3]daftar[_4] untuk melihat halaman ini.","This_feature_is_available_to_demo_accounts_only_":"Fasilitas ini hanya tersedia untuk akun demo saja.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Anda menggunakan akun demo. Pindah ke akun riil atau daftar akun untuk mengakses Kasir.","This_page_is_only_available_to_logged_out_clients_":"Anda perlu keluar dari akun Anda terlebih dahulu untuk mengakses halaman ini.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Trading opsi binary tidak tersedia pada akun Multiplier Anda.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Opsi Binary tidak tersedia pada akun Multiplier.
Pindah ke akun Opsi Anda.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Mohon maaf, trading opsi tidak tersedia di Inggris dan Isle of Man","Binary_options_trading_is_not_available_in_your_country_":"Trading opsi binary tidak tersedia di negara Anda.","This_page_is_not_available_in_your_country_of_residence_":"Halaman ini tidak tersedia pada negara domisili Anda.","Page_not_available,_you_did_not_deactivate_your_account_":"Halaman tidak tersedia, Anda tidak menonaktifkan akun Anda.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Sayangnya, layanan ini tidak tersedia di negara Anda. Jika Anda ingin bertrading Multiplier, cobalah DTrader pada Deriv.","Go_to_DTrader":"Kunjungi DTrader","Sign_out":"Keluar","[_1]_Account":"Akun [_1]","Click_here_to_open_a_Real_Account":"Klik disini untuk mendaftar Akun Riil","Open_a_Real_Account":"Daftar Akun Riil","Click_here_to_open_a_Multipliers_Account":"Klik disini untuk mendaftar Akun Multiplier","Click_here_to_open_an_Options_account":"Klik disini untuk mendaftar akun Opsi","Open_a_Multipliers_Account":"Daftar Akun Multiplier","Create_Account":"Daftar Akun","Accounts_List":"Daftar Akun","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Deposit tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan deposit kembali setelah perbaikan selesai.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Penarikan tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan penarikan kembali setelah perbaikan selesai.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir mata uang kripto tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses kembali bagian Kasir beberapa menit lagi setelah perbaikan selesai.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses kembali bagian Kasir beberapa menit lagi setelah perbaikan selesai.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Bagian kasir Anda terkunci. Hubungi kami melalui obrolan langsung untuk mengaktifkan kembali.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Pilih [_1]mata uang akun[_2] Anda untuk mengaktifkan deposit dan penarikan.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Akun Anda belum diautentikasi. Kirim [_1]bukti identitas dan bukti alamat[_2] untuk mengautentikasi akun dan mengajukan penarikan.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Akun Anda belum diautentikasi. Kirim [_1]bukti identitas dan bukti alamat[_2] untuk mengautentikasi akun dan mengakses bagian kasir Anda.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Dokumen identitas yang Anda kirimkan sebelumnya sudah tidak berlaku. Mohon kirim dokumen identitas yang berlaku.","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]Bukti identitas[_2] Anda telah berakhir.","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]Bukti alamat[_2] Anda telah berakhir.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]Bukti identitas[_3] dan [_2]bukti alamat[_3] Anda belum diverifikasi.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]Bukti identitas[_2] Anda belum diverifikasi. ","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]Bukti alamat[_2] Anda belum diverifikasi.","Please_submit_your_[_1]proof_of_identity[_2]_":"Silakan kirim [_1]bukti identitas[_2] Anda.","Please_submit_your_[_1]proof_of_address[_2]_":"Silakan kirim [_1]bukti alamat[_2] Anda.","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Anda telah memilih untuk berhenti bertrading sementara waktu hingga [_1]. Jika Anda masih tidak dapat bertrading atau mendeposit setelah periode pengecualian diri berakhir, hubungi kami melalui obrolan langsung.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Bagian Kasir akun Anda untuk sementara dibatakan berhubung Anda belum memilih batasan total pembelian 30 hari. Kunjungi [_1]Pengecualian diri[_2] dan pilih batas pembelian 30 hari Anda.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Penarikan MT5 tidak tersedia pada akun Anda. Silakan periksa kotak masuk email Anda untuk rincian lebih lanjut.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Anda hanya dapat melakukan deposit. Hubungi kami melalui obrolan langsung untuk mengaktifkan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit dan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Anda belum memilih negara domisili. Untuk mengakses bagian Kasir, mohon perbarui [_1]negara domisili[_2] pada bagian data pribadi pengaturan akun Anda.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Bagian kasir Anda terkunci. Lengkapi [_1]penilaian keuangan[_2] untuk mengaktifkan kembali.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Anda belum menginformasikan nomer NPWP Anda. Informasi ini diperlukan untuk memenuhi persyaratan hukum dan peraturan yang berlaku. Akses [_1]Data pribadi[_2] pada bagian pengaturan akun Anda, dan isi nomor NPWP terbaru.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Anda hanya dapat melakukan penarikan. Hubungi kami melalui obrolan langsung.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Penarikan telah dinonaktifkan pada akun Anda. Mohon tunggu hingga dokumen yang Anda unggah terverifikasi.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Anda perlu menyetujui [_1]Syarat dan Ketentuan[_2] terbaru.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Anda perlu menyetujui [_1]Syarat dan Ketentuan[_2] terbaru untuk meningkatkan batasan deposit dan trading.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Akun Anda untuk sementara dibatalkan. Hubungi kami melalui obrolan langsung untuk mengaktifkan deposit dan penarikan kembali.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Mohon lengkapi Tes Kelayakan untuk mengakses bagian kasir Anda.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Bagian kasir Anda terkunci. Lihat [_1]bagaimana kami melindungi dana Anda[_2] sebelum melanjutkan.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Akun Anda memerlukan otentikasi. Kirim [_1]bukti identitas[_2] Anda untuk mengakses Kasir.","Account_Authenticated":"Akun Telah Dikonfirmasi","Connection_error:_Please_check_your_internet_connection_":"Koneksi error: Silakan periksa koneksi internet Anda.","Network_status":"Status jaringan","This_is_a_staging_server_-_For_testing_purposes_only":"Ini adalah staging server - Untuk tujuan pengujian saja","The_server_endpoint_is:_[_2]":"Titik akhir server adalah: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Browser web Anda ([_1]) sudah ketinggalan zaman yang dapat mempengaruhi pengalaman trading Anda. Lanjutkan dengan risiko sendiri. [_2]Perbarui browser[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Anda telah mencapai batas tingkat permintaan per detik. Silakan coba lagi nanti.","There_was_some_invalid_character_in_an_input_field_":"Terdapat beberapa karakter yang tidak berlaku pada kolom input.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"diatur oleh Komisi Gaming UK (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"diatur oleh Otoritas Gaming Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"diatur oleh Otoritas Jasa Keuangan Malta (MFSA),","Please_select":"Tolong pilih","Please_accept_the_terms_and_conditions_":"Silahkan terima syarat dan ketentuan.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Mohon konfirmasikan bahwa Anda bukanlah orang yang terlibat dalam politik.","Today":"Hari ini","Select_date":"Pilih tanggal","Barrier":"Batasan","Entry_Spot":"Spot Masuk","Exit_Spot":"Spot akhir","Charting_for_this_underlying_is_delayed":"Charting untuk underlying ini tertunda","Payout_Range":"Rentang Hasil","Purchase_Time":"Waktu Beli","Reset_Barrier":"Batasan Reset","Reset_Time":"Waktu Reset","Selected_Tick":"Tik Terpilih","Exit_Time":"Waktu Akhir","Start_Time":"Waktu Mulai","Crypto":"Kripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Langkah [_1]: [_2] ([_1] dari [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Kode verifikasi salah. Silahkan gunakan link yang dikirim ke email Anda.","Indicates_required_field":"Menunjukkan bagian yang diperlukan","Please_select_the_checkbox_":"Silakan pilih kotak centang.","This_field_is_required_":"Bagian ini diperlukan.","Should_be_a_valid_number_":"Harus angka yang berlaku.","Up_to_[_1]_decimal_places_are_allowed_":"Hingga [_1] desimal diperbolehkan.","Should_be_[_1]":"Seharusnya [_1]","Should_be_between_[_1]_and_[_2]":"Harus antara [_1] dan [_2]","Should_be_more_than_[_1]":"Harus lebih dari [_1]","Should_be_less_than_[_1]":"Harus kurang dari [_1]","Insufficient_balance_":"Saldo tidak mencukupi.","Invalid_email_address_":"Alamat email salah.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Kata sandi harus terdiri dari huruf kecil dan besar alfabet beserta angka.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Hanya huruf, angka, ruang, tanda hubung, periode, dan apostrof diperbolehkan.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Hanya huruf, angka, spasi, dan karakter khusus yang diperbolehkan: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Hanya huruf, spasi, tanda hubung, periode, dan apostrof diperbolehkan.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Hanya huruf, angka, spasi, dan tanda hubung yang diperbolehkan.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Masukkan nomor telepon yang berlaku (contoh +62812391234).","The_two_passwords_that_you_entered_do_not_match_":"Kedua-dua kata sandi yang Anda masukkan tidak cocok.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] dan [_2] tidak bisa sama.","Minimum_of_[_1]_characters_required_":"Minimal [_1] karakter diperlukan.","You_should_enter_[_1]_characters_":"Anda harus memasukkan [_1] karakter.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Harus dimulai dengan huruf atau angka, dan mungkin mengandung tanda hubung dan garis bawah.","Invalid_verification_code_":"Kode verifikasi salah.","Your_password_cannot_be_the_same_as_your_email_address_":"Jangan menggunakan alamat email sebagai kata sandi.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transaksi dilakukan oleh [_1] (App ID: [_2])","Guide":"Panduan","Next":"Lanjutkan","Finish":"Selesai","Step":"Langkah","Select_your_market_and_underlying_asset":"Pilih pasar dan aset dasar Anda","Select_your_trade_type":"Pilih jenis kontrak Anda","Adjust_trade_parameters":"Menyesuaikan parameter trading","Predict_the_directionand_purchase":"Analisa arah
dan beli","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Batas durasi sesi Anda akan berakhir dalam [_1] detik.","January":"Januari","February":"Pebruari","March":"Maret","May":"Mei","June":"Juni","July":"Juli","August":"Agustus","October":"Oktober","November":"Nopember","December":"Desember","Feb":"Peb","Jun":"Juni","Aug":"Agu","Oct":"Oktober","Nov":"Nop","Dec":"Des","Sunday":"Minggu","Monday":"Senin","Tuesday":"Selasa","Wednesday":"Rabu","Thursday":"Kamis","Friday":"Jum'at","Saturday":"Sabtu","Su":"Mgg","Mo":"Sen","Tu":"Kam","We":"Kami","Th":"Kam","Fr":"Jum","Sa":"Sab","Previous":"Sebelumnya","Hour":"Jam","Minute":"Menit","Verification_required":"Verifikasi diperlukan","Verify_identity":"Verifikasi identitas","From_account:_":"Dari akun: ","To_account:_":"Ke akun: ","Not_announced_for_this_currency_":"Tidak diumumkan untuk mata uang ini.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Reset saldo akun demo Anda ke [_1] kapan saja.","[_1]Manage_your_accounts[_2]":"[_1]Kelola akun Anda[_2]","time":"kali","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"mendeposit atau mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com). Anda juga dapat mendaftar akun pada setiap mata uang kripto.","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Anda tidak dapat merubah mata uang berhubung Anda sudah mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Anda tidak dapat merubah mata uang berhubung sudah melakukan deposit.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Mata uang akun fiat Anda saat ini adalah [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Mata uang akun fiat Anda diatur sebagai [_1].","This_is_your_[_1]_account_":"Berikut adalah akun [_1] Anda.","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Anda dapat memilih [_1]mata uang baru[_2] sebelum mendeposit pertama [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Apakah Anda ingin bertrading dalam [_1]. Anda dapat mendaftar akun kripto lainnya.","Switch_account":"Pindah akun","Switch_account?":"Pindah akun?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Untuk mendeposit dana, pindah ke akun [_1] Anda.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Untuk menarik dana, pindah ke akun [_1] Anda.","Switch_to_crypto_account?":"Pindah ke akun kripto?","To_deposit_cryptocurrency,_switch_your_account_":"Untuk mendeposit mata uang kripto, pindahkan akun Anda.","To_withdraw_cryptocurrency,_switch_your_account_":"Untuk menarik dana dalam mata uang kripto, pindahkan akun Anda.","Cancel":"Kembali","Withdraw":"Penarikan","Town/City":"Kota","First_line_of_home_address":"Alamat Rumah","Postal_Code/ZIP":"Kode Pos","State/Province":"Provinsi","Email_address":"Alamat email","Telephone":"Telepon","Country_of_Residence":"Negara Domisili","details":"perincian","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses bagian Kasir kembali setelah perbaikan selesai.","Your_cashier_is_locked_":"Kasir Anda terkunci.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Harap dicatat bahwa mata uang yang Anda pilih hanya diperbolehkan untuk akun terbatas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Anda telah mencapai batas maksimal penarikan. Mohon kirimkan bukti identitas dan alamat untuk menghapus batasan dan melanjutkan penarikan.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Layanan Agen Pembayaran tidak tersedia di negara Anda atau dalam mata uang yang Anda pilih.","Select_payment_agent":"Pilih agen pembayaran","Amount_in":"Jumlah dalam","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Hanya huruf, angka, spasi, tanda hubung, titik, koma, dan apostrof yang diizinkan.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Permohonan penarikan Anda [_1] [_2] dari account [_3] ke Agen Pembayaran [_4] telah diproses.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Token Anda telah berakhir atau tidak berlaku. Silahkan klik [_1]disini[_2] untuk memulai proses verifikasi.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Maaf, penarikan untuk mata uang ini sedang dinonaktifkan.","Please_[_1]deposit[_2]_to_your_account_":"Silahkan [_1]deposit[_2] kedalam akun Anda.","Sorry,_account_signup_is_not_available_in_your_country_":"Maaf, pendaftaran akun tidak tersedia di negara Anda.","Asset":"Aset","Opens":"Dibuka","Closes":"Ditutup","Settles":"Diselesaikan","Upcoming_Events":"Acara Mendatang","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Tambahkan +/– untuk menentukan barrier offset. Contoh, +0,005 berarti batasan lebih tinggi 0,005 dari spot masuk.","Percentage":"Persentase","Waiting_for_entry_tick_":"Menunggu tik masuk...","High_Barrier":"Batasan Tinggi","Low_Barrier":"Batasan Rendah","Waiting_for_exit_tick_":"Menunggu tik akhir.","Ticks_history_returned_an_empty_array_":"Historical tik menghasilkan tampilan kosong.","Chart_is_not_available_for_this_underlying_":"Chart tidak tersedia untuk pasar dasar ini.","Purchase":"Beli","Net_profit":"Laba bersih","Return":"Laba","Time_is_in_the_wrong_format_":"Waktu dalam format salah.","Only_Ups/Only_Downs":"Only Up/Only Down","Select_Trade_Type":"Pilih Jenis Kontrak","Tick":"Tik","Spot":"Posisi","Spot_Time_(GMT)":"Waktu Spot (GMT)","seconds":"detik","minutes":"menit","hours":"jam","days":"hari","ticks":"tik","tick":"tik","second":"detik","minute":"menit","hour":"jam","day":"hari","Duration":"Durasi","End_Time":"Waktu berakhir","Purchase_request_sent":"Permintaan pembelian dikirim","Select_Asset":"Pilih Aset","Search___":"Cari...","Maximum_multiplier_of_1000_":"Maksimum kelipatan 1000.","Stake":"Modal","Payout":"Hasil","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Maaf, akun Anda tidak dapat membeli kontrak selanjutnya.","Trading_is_unavailable_at_this_time_":"Trading tidak tersedia untuk saat ini.","Please_reload_the_page":"Silakan reload halaman","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Aplikasi Anda sebagai klien profesional sedang diproses.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Permohonan klien profesional Anda [_1]tidak disetujui[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Silahkan ajukan kembali setelah semua kriteria telah terpenuhi.","More_information_can_be_found_in_an_email_sent_to_you_":"Informasi lebih lanjut dapat ditemukan pada email yang dikirim pada Anda.","I_want_to_reapply":"Saya ingin mendaftar kembali","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Di Uni Eropa, opsi finansial binary hanya tersedia bagi investor profesional.","Apply_now_as_a_professional_investor":"Ajukan permohonan sebagai investor profesional sekarang","Try_our_[_1]Synthetic_Indices[_2]_":"Coba [_1]Indeks Sintetis[_2] kami.","Try_our_other_markets_":"Coba pasar kami lainnya.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Silakan lengkapi formulir [_1]Akun Riil[_2] untuk memverifikasi umur Anda seperti yang telah dipersyaratkan oleh [_3]UKGC[_4].","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Akses akun sementara dibatasi. Silakan periksa kotak masuk email Anda untuk rincian lebih lanjut.","Contract_Confirmation":"Konfirmasi Kontrak","Your_transaction_reference_is":"Referensi transaksi Anda adalah","Total_Cost":"Total Biaya","Potential_Payout":"Potensi Hasil","Potential_Profit":"Potensi Hasil","View":"Lihat","This_contract_won":"Kontrak ini untung","This_contract_lost":"Kontrak ini rugi","The_reset_time_is_[_1]":"Waktu reset adalah [_1]","Now":"Sekarang","Average":"Rata-rata","Buy_price":"Harga beli","Final_price":"Harga akhir","Loss":"Rugi","Profit":"Keuntungan","Account_balance:":"Saldo akun:","Reverse_Side":"Bagian Belakang","Front_Side":"Bagian Depan","Pending":"Tertunda","Submitting":"Mengirimkan","Submitted":"Terkirim","Failed":"Gagal","Compressing_Image":"Mengompresi Gambar","Checking":"Memeriksa","Checked":"Diperiksa","Unable_to_read_file_[_1]":"Tidak dapat membaca file [_1]","Passport":"Paspor","Identity_card":"KTP","Driving_licence":"SIM","Invalid_document_format_":"Format dokumen tidak valid.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Ukuran file ([_1]) melebihi batas yang diijinkan. Ukuran file maksimum yang diizinkan: [_2]","ID_number_is_required_for_[_1]_":"Nomor identitas diperlukan untuk [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Hanya huruf, angka, spasi, garis bawah, dan tanda hubung yang diizinkan untuk nomor Identitas ([_1]).","Expiry_date_is_required_for_[_1]_":"Masa berlaku diperlukan untuk [_1].","Place_of_birth":"Negara kelahiran","Please_select_the_country_of_document_issuance":"Mohon pilih negara pengeluar dokumen","Choose_the_document_type":"Pilih jenis dokumen","Please_enter_the_correct_format__Example:":"Masukkan format yang benar. Contoh:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email akun Google Anda dan klik tautan pada email untuk melanjutkan.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email akun Facebook Anda dan klik tautan pada email untuk melanjutkan.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email yang terhubung dengan ID Apple Anda dan klik tautan pada email untuk melanjutkan.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Klik pada tautan pada email Anda untuk merubah kata sandi MT5 Anda.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Silahkan klik pada link di email untuk merubah kata sandi binary Anda.","We’ve_sent_you_an_email":"Kami telah mengirimikan email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Anda menggunakan akun [_1] untuk mengakses akun Binary.com Anda. Untuk mengakses menggunakan nama pengguna dan kata sandi, klik tombol [_2]Batalkan tautan[_3].","Linked_with_[_1]":"Ditautkan dengan [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Anda perlu mengatur kata sandi untuk menyelesaikan proses.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Apa Anda yakin ingin membatalkan tautan dari [_1]?","Unlink":"Batalkan tautan","Country_not_found":"Negara tidak ditemukan","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Dokumen dari negara tersebut saat ini tidak dapat diterima — silakan coba jenis dokumen lain","Submit_document":"Kirimkan dokumen","Select_country":"Pilih negara","e_g__United_States":"contoh Amerika Serikat","Search_for_country":"Cari negara","Select_issuing_country":"Pilih negara pengeluar","Submit_verification":"Kirim verifikasi","Documents_uploaded":"Dokumen telah diunggah","Document_uploaded":"Dokumen yang diunggah","Selfie_uploaded":"Selfie diunggah","We're_now_ready_to_verify_your_identity":"Kami sekarang sudah bersedia untuk memverifikasi identitas Anda","Great,_that's_everything_we_need":"Luar biasa, itu saja yang kami butuhkan","The_link_only_works_on_mobile_devices":"Tautan hanya berfungs pada perangkat seluler","Something's_gone_wrong":"Ada yang tidak beres","You'll_need_to_restart_your_verification_on_your_computer":"Anda harus memulai ulang verifikasi menggunakan komputer","Get_secure_link":"Dapatkan tautan aman","Steps_required_to_continue_verification_on_your_mobile":"Langkah-langkah yang diperlukan untuk melanjutkan verifikasi pada ponsel Anda","Check_back_here_to_finish_the_submission":"Periksa kembali di sini untuk menyelesaikan pengiriman","Open_the_link_and_complete_the_tasks":"Buka tautan dan selesaikan tugas","Send_a_secure_link_to_your_phone":"Mengirim tautan aman ke telepon Anda","Here's_how_to_do_it:":"Berikut cara melakukannya:","Continue_on_your_phone":"Lanjutkan pada telepon Anda","Your_computer_may_take_a_few_seconds_to_update":"Komputer Anda mungkin perlu beberapa detik untuk memperbarui","You_can_now_return_to_your_computer_to_continue":"Anda sekarang dapat kembali ke komputer untuk melanjutkan","Uploads_successful":"Unggahan berhasil","Make_sure_everything_is_clear":"Pastikan semuanya jelas","Blurry_photo_detected":"Foto buram terdeteksi","Make_sure_full_document_is_visible":"Pastikan semua dokumen terlihat","Cut-off_image_detected":"Gambar potongan terdeteksi","Move_away_from_direct_light":"Menjauh dari cahaya langsung","Glare_detected":"Pantulan cahaya terdeteksi","Make_sure_all_of_the_document_is_in_the_photo":"Pastikan semua dokumen terdapat pada foto","No_document_detected":"Dokumen tidak terdeteksi","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data kartu Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Akan memerlukan waktu lebih lama untuk memverifikasi Anda jika kami tidak dapat membacanya","To_smoothly_verify_you,_we_need_a_better_photo":"Untuk memverifikasi Anda dengan lancar, kami membutuhkan foto yang lebih baik","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data Sim Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data paspor Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan detail izin tinggal Anda jelas untuk dibaca, tidak kabur atau memantulkan cahaya","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Redo":"Mengulang","Confirm":"Lanjutkan","Upload_anyway":"Unggah saja","Enlarge_image":"Memperbesar gambar","Photo_of_your_document":"Foto dokumen Anda","Check_your_image":"Periksa gambar Anda","Front_and_back":"Depan dan belakang","Driver's_license":"SIM","Face_photo_page":"Halaman foto wajah","Residence_permit":"Izin tinggal","Sorry,_no_mobile_phone_bills":"Maaf, tagihan ponsel tidak dapat diterima","Documents_you_can_use_to_verify_your_identity":"Dokumen yang dapat Anda gunakan untuk memverifikasi identitas Anda","It_must_be_an_official_photo_ID":"Harus berupa foto ID resmi","These_are_the_documents_most_likely_to_show_your_current_home_address":"Berikut adalah beberapa dokumen yang dapat digunakan untuk memperlihatkan alamat rumah Anda saat ini","Choose_document":"Pilih dokumen","Select_a_%{country}_document":"Pilih %{country} dokumen ","or_upload_photo_–_no_scans_or_photocopies":"atau meng-upload foto - bukan scan atau fotokopi","Continue_on_phone":"Lanjutkan pada telepon","Take_a_photo_with_your_phone":"Foto menggunakan ponsel Anda","Submit_identity_card_(back)":"Kirim kartu identitas (belakang)","Submit_identity_card_(front)":"Kirim kartu identitas (depan)","Submit_license_(back)":"Kirim SIM (bagian belakang)","Submit_license_(front)":"Kirim SIM (bagian depan)","Submit_passport_photo_page":"Kirim halaman foto paspor","Submit_residence_permit_(back)":"Kirimkan izin tinggal (belakang)","Submit_residence_permit_(front)":"Kirimkan izin tinggal (depan)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Memulai ulang proses menggunakan Google Chrome versi terbaru","Restart_the_process_on_the_latest_version_of_Safari":"Ulang proses menggunakan Safari versi terbaru","Unsupported_browser":"Browser yang tidak tersedia","Close_identity_verification_screen":"Menutup layar verifikasi identitas","Dismiss_alert":"Tutup peringatan","back":"kembali","close":"tutup","Restart_process_on_a_different_device":"Ulang proses menggunakan perangkat lain","Camera_not_detected":"Kamera tidak terdeteksi","Must_be_under_10MB_":"Harus di bawah 10MB.","File_size_exceeded_":"Ukuran file terlalu besar.","Try_using_another_file_type_":"Coba gunakan jenis file lain.","File_not_uploaded_":"File tidak diunggah.","An_error_occurred_while_loading_the_component":"Terjadi error pada saat memuat komponen","Only_your_face_can_be_in_the_selfie":"Hanya wajah Anda yang bisa berada pada kolom selfie","Multiple_faces_found":"Ditemukan beberapa wajah","Your_face_is_needed_in_the_selfie":"Wajah Anda diperlukan dalam selfie","No_face_found":"Wajah tidak ditemukan","Please_try_again":"Silakan coba lagi","Connection_lost":"Koneksi hilang","Copy_the_link_to_your_phone":"Salin tautan ke telepon Anda","Too_many_failed_attempts":"Terlalu banyak percobaan yang gagal","Try_using_a_JPG_or_PNG_file":"Coba gunakan file JPG atau PNG","File_type_not_supported":"Jenis file yang tidak tersedia","Loading___":"Pemuatan...","Loading":"Pemuatan","Check_that_your_number_is_correct":"Periksa apakah nomor Anda sudah benar","Copied":"Disalin","Copy":"Salin","Send_link":"Kirim tautan","How_to_scan_a_QR_code":"Cara menscan kode QR","Point_your_phone’s_camera_at_the_QR_code":"Arahkan kamera ponsel ke kode QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Jika tidak berhasil, unduh scanner kode QR dari Google Play atau App Store","or":"atau","Scan_QR_code":"Scan kode QR","Get_link_via_SMS":"Dapatkan tautan melalui SMS","Copy_link":"Salin tautan","Sending":"Mengirim","Enter_mobile_number":"Masukkan nomor ponsel","Enter_your_mobile_number:":"Masukkan nomor ponsel Anda:","Scan_the_QR_code_with_your_phone":"Scan kode QR menggunakan telepon Anda","Send_this_one-time_link_to_your_phone":"Kirim tautan ke telepon Anda","Open_the_link_on_your_mobile":"Buka tautan pada ponsel Anda","Get_your_secure_link":"Dapatkan tautan aman Anda","Copy_the_link_to_your_mobile_browser":"Salin tautan ke browser seluler Anda","Continue":"Lanjutkan","Make_sure§":"Pastikan§","2__Your_desktop_window_stays_open":"2. Jendela desktop Anda tetap terbuka","1__This_link_was_sent_by_you":"1. Anda yang mengirim tautan","Continue_with_the_verification":"Lanjutkan verifikasi","Linked_to_your_computer":"Hubungkan ke komputer Anda","Take_a_photo_of_the_back_of_your_card":"Foto bagian belakang kartu Anda","Take_a_photo_of_the_front_of_your_card":"Foto bagian depan kartu Anda","Take_a_photo_of_the_back_of_your_license":"Foto bagian belakang Sim Anda","Take_a_photo_of_the_front_of_your_license":"Foto bagian depan Sim Anda","Take_a_photo_of_your_passport_photo_page":"Foto halaman yang berisikan foto pada paspor Anda","Take_a_selfie_showing_your_face":"Mengambil selfie yang menunjukkan wajah Anda","Take_a_photo_using_the_basic_camera_mode_instead":"Foto menggunakan mode kamera dasar sebagai gantinya","Take_a_photo":"Foto","Passport_photo_page":"Halaman foto paspor","Thank_you":"Terima kasih","Verification_complete":"Verifikasi selesai","Recovery":"Pemulihan","Follow_these_steps_to_recover_camera_access:":"Ikuti langkah-langkah berikut untuk memulihkan akses kamera:","Refresh_this_page_to_restart_the_identity_verification_process":"Refresh halaman ini untuk memulai ulang proses verifikasi identitas","Grant_access_to_your_camera_from_your_browser_settings":"Beri akses pada kamera Anda melalui pengaturan browser","Recover_camera_access_to_continue_face_verification":"Memulihkan akses kamera untuk melanjutkan verifikasi wajah","Camera_access_is_denied":"Akses kamera ditolak","We_cannot_verify_you_without_using_your_camera":"Kami tidak dapat memverifikasi Anda tanpa menggunakan kamera","Enable_camera":"Aktifkan kamera","When_prompted,_you_must_enable_camera_access_to_continue":"Bila diminta, Anda harus mengaktifkan akses kamera untuk melanjutkan","Allow_camera_access":"Mengizinkan akses kamera","Provide_the_whole_document_page_for_best_results":"Sediakan seluruh halaman dokumen untuk hasil terbaik","Upload_back_of_card_from_your_computer":"Unggah bagian belakang kartu dari komputer Anda","Upload_front_of_card_from_your_computer":"Unggah bagian depan kartu dari komputer Anda","Upload_back_of_license_from_your_computer":"Unggah kembali Sim dari komputer Anda","Upload_front_of_license_from_your_computer":"Unggah bagian depan SIM dari komputer Anda","Upload_passport_photo_page_from_your_computer":"Unggah halaman foto paspor dari komputer Anda","Upload_a_selfie_from_your_computer":"Mengunggah selfie dari komputer Anda","Take_photo":"Foto","Upload":"Unggah","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Periksa apakah terhubung dan berfungsi. Anda juga dapat melanjutkan verifikasi pada telepon Anda","Make_sure_your_device_has_a_working_camera":"Pastikan perangkat Anda memiliki kamera yang berfungsi","Camera_not_working?":"Kamera tidak berfungsi?","It_may_be_disconnected__Try_using_your_phone_instead_":"Mungkin akan terputus. Coba gunakan telepon Anda sebagai gantinya.","Make_sure_your_device's_camera_works":"Pastikan kamera pada perangkat Anda berfungsi","Camera_not_working":"Kamera tidak berfungsi","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Pastikan untuk menekan tombol berhenti setelah Anda selesai. Ulangi tindakan video","Looks_like_you_took_too_long":"Sepertinya Anda mengambil waktu cukup lama","View_from_camera":"Lihat dari kamera","Take_a_selfie":"Mengambil selfie","Photo_of_your_face":"Foto wajah Anda","Make_sure_your_selfie_clearly_shows_your_face":"Pastikan selfie menunjukkan wajah Anda dengan jelas","Check_selfie":"Periksa selfie","Tips_to_take_a_good_selfie":"Tips untuk mengambil selfie yang bagus","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Menghadap ke depan dan pastikan mata Anda terlihat jelas","Remove_your_glasses,_if_necessary":"Lepaskan kacamata Anda, jika perlu","We'll_compare_it_with_your_document":"Kami akan membandingkannya dengan dokumen Anda","Your_link_will_expire_in_one_hour":"Tautan Anda akan berakhir dalam tempo satu jam","Keep_this_window_open_while_using_your_mobile":"Tetap buka jendela ini saat menggunakan ponsel Anda","Resend_link":"Kirim ulang tautan","We've_sent_a_secure_link_to_%{number}":"Kami telah mengirim tautan aman ke %{number}","It_may_take_a_few_minutes_to_arrive":"Mungkin diperlukan beberapa menit untuk sampai","Check_your_mobile":"Periksa ponsel Anda","Your_mobile_link_will_expire_in_one_hour":"Link seluler Anda akan berakhir dalam tempo satu jam","Don't_refresh_this_page":"Jangan refresh halaman ini","Once_you've_finished_we'll_take_you_to_the_next_step":"Setelah Anda selesai, kami akan membawa Anda ke langkah berikutnya","Connected_to_your_mobile":"Terhubung ke ponsel Anda","Upload_photo":"Unggah foto","Example_of_a_blurry_document":"Contoh dokumen buram","All_details_must_be_clear_—_nothing_blurry":"Semua detail harus jelas - tidak ada yang buram","Example_of_a_cut-off_document":"Contoh dokumen yang dipotong","Show_all_details_—_including_the_bottom_2_lines":"Tampilkan semua detail — termasuk 2 baris terakhir","Example_of_a_document_with_glare":"Contoh dokumen dengan pantulan cahaya","Move_away_from_direct_light_—_no_glare":"Menjauh dari cahaya - tanpa pantulan","Document_example":"Contoh dokumen","The_photo_should_clearly_show_your_document":"Foto harus menunjukkan dokumen Anda dengan jelas","Scans_and_photocopies_are_not_accepted":"Scan dan fotokopi tidak diterima","Upload_passport_photo_page":"Unggah halaman foto paspor","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Untuk membuka rekening bank, kami perlu memverifikasi identitas Anda.","It_will_only_take_a_couple_of_minutes_":"Ini hanya akan memakan waktu beberapa menit.","Verify_Identity":"Verifikasi Identitas","Open_your_new_bank_account":"Buka rekening bank baru Anda","Please_enter_a_valid_Login_ID_":"Masukkan Login ID yang berlaku.","Amount":"Jumlah","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Permintaan Anda untuk mentransfer [_1] [_2] dari [_3] ke [_4] berhasil diproses.","Resale_not_offered":"Penjualan ulang tidak ditawarkan","You've_made_no_transactions_of_this_type_up_to_this_date_":"Anda tidak memiliki transaksi untuk jenis ini hingga detik ini.","Date":"Tanggal","Contract":"Kontrak","Purchase_Price":"Harga Beli","Sale_Date":"Tanggal Jual","Sale_Price":"Harga Jual","Profit/Loss":"Laba/Rugi","Details":"Rincian","Total_Profit/Loss":"Total Laba/Rugi","Action_required!":"Tindakan diperlukan!","Sorry,_an_error_occurred_while_processing_your_request_":"Maaf, error terjadi ketika memproses permohonan Anda.","position(s)":"posisi","withdrawal(s)":"penarikan","We_couldn’t_read_that!":"Kami tidak dapat membacanya!","Remaining_characters:_[_1]_":"Karakter yang tersisa: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Mohon masukkan tidak lebih dari [_1] karakter pada kedua kolom.","Only_[_1]_are_allowed_":"Hanya [_1] dibenarkan.","letters":"huruf","numbers":"nomor","space":"ruang","Please_select_at_least_one_scope":"Silakan pilih minimal satu scope","New_token_created_":"Token baru dibuat.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Jumlah maksimum token ([_1]) telah tercapai.","Name":"Nama","Scopes":"Cakupan","Last_Used":"Terakhir digunakan","Action":"Aksi","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Apakah Anda yakin ingin menghapus token secara permanen","Delete":"Hapus","Never_Used":"Tidak pernah dipakai","You_have_not_granted_access_to_any_applications_":"Anda belum diberikan akses ke dalam aplikasi apapun.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Apakah Anda yakin bahwa Anda ingin secara permanen mencabut akses aplikasi","Revoke_access":"Mencabut akses","Payments":"Pembayaran","Read":"Baca","Trade":"Trading","Trading_Information":"Informasi Trading","Never":"Tidak pernah","Permissions":"Izin","Last_Login":"Akses Terakhir","You_did_not_change_anything_":"Anda tidak melakukan perubahan.","Your_changes_have_been_updated_successfully_":"Perubahan Anda telah berhasil diperbarui.","Successful":"Berhasil","Date_and_Time":"Tanggal dan Waktu","IP_Address":"Alamat IP","Your_account_has_no_Login/Logout_activity_":"Akun Anda tidak memiliki aktivitas Login/Logout.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Akun Anda telah terbukti dan batasan penarikan Anda telah dihapuskan.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Batasan penarikan [_1] hari Anda saat ini adalah [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Anda telah menarik [_1][_2] secara total selama [_3] terakhir.","Your_withdrawal_limit_is_[_1][_2]_":"Batas penarikan Anda adalah [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Anda telah menarik dana sebesar [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Oleh karena itu, saldo yang dapat ditarik hanya hingga [_1][_2], tergantung pada saldo yang tersedia pada akun Anda.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Mohon konfirmasikan bahwa semua informasi di atas adalah benar dan lengkap.","Your_settings_have_been_updated_successfully_":"Bagian pengaturan Anda telah berhasil diperbarui.","Sorry,_an_error_occurred_while_processing_your_account_":"Maaf, error terjadi ketika memproses rekening Anda.","Please_select_a_country":"Silakan pilih negara","Timed_out_until":"Waktu habis hingga","Excluded_from_the_website_until":"Dikecualikan dari situs web hingga","Session_duration_limit_cannot_be_more_than_6_weeks_":"Batas durasi sesi tidak dapat lebih dari 6 minggu.","Time_out_must_be_after_today_":"Time out harus setelah hari ini.","Time_out_cannot_be_more_than_6_weeks_":"Time out tidak bisa lebih dari 6 minggu.","Time_out_cannot_be_in_the_past_":"Time out tidak bisa di masa lalu.","Please_select_a_valid_time_":"Silahkan pilih waktu yang berlaku.","Exclude_time_cannot_be_less_than_6_months_":"Waktu pengecualian tidak boleh kurang dari 6 bulan.","Exclude_time_cannot_be_for_more_than_5_years_":"Waktu pengecualian tidak dapat melebihi 5 tahun.","Confirm_changes":"Konfirmasikan perubahan","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Kami akan memperbarui batasan Anda. Klik [_1]Setuju dan terima[_2] untuk mengakui bahwa Anda bertanggung jawab sepenuhnya atas tindakan Anda, dan kami tidak bertanggung jawab atas kecanduan atau kerugian apa pun.","Agree_and_accept":"Setuju dan terima","Go_back":"Kembali","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Setelah mengklik \"OK\" Anda akan dikecualikan dari trading hingga tanggal yang dipilih.","Your_changes_have_been_updated_":"Perubahan Anda telah diperbarui.","Disable":"Nonaktifkan","Enable":"Aktifkan","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Anda telah berhasil mengaktifkan autentikasi dua faktor pada akun Anda.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Anda telah berhasil menonaktifkan autentikasi dua faktor pada akun Anda.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Anda tidak perlu mengautentikasi akun Anda saat ini .[_1]Kami akan memberitahu Anda jika akun Anda perlu melengkapi proses autentikasi.","No_authentication_required":"Tidak memerlukan otentikasi","Back_to_trading":"Kembali ke trading","You_are_categorised_as_a_professional_client_":"Anda dikategorikan sebagai klien profesional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Anda dikategorikan sebagai klien ritel. Ajukan permohonan sebagai trader profesional.","Closed_Bid":"Tutup Bid","Reference_ID":"ID referensi","Description":"Deskripsi","Credit/Debit":"Kredit/Debit","Balance":"Saldo","Top_up_error":"Isi ulang error","Understood":"Dimengerti","Top-up_successful":"Isi ulang sukses","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] telah dikreditkan kedalam Akun Demo Anda: [_2].","Go_to_statement":"Kunjungi pernyataan","Continue_trading":"Lanjutkan trading","Your_Demo_balance_has_been_reset_":"Saldo Demo Anda telah direset.","Account":"Akun","Available_Markets":"Pasar Yang Tersedia","Type":"Jenis","Currency":"Mata uang","Multipliers_Account":"Akun Multiplier","Gaming_Account":"Akun Gaming","Options_Account":"Akun Opsi","Real_Account":"Akun Riil","Counterparty":"Rekanan","Jurisdiction":"Yurisdiksi","Create_account":"Daftar akun","Change_currency":"Rubah mata uang","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Anda hanya dapat memiliki satu akun uang fiat. Mata uang akun uang fiat Anda hanya dapat dirubah jika Anda belum mendeposit atau mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com). Anda juga dapat mendaftar akun pada setiap mata uang kripto.","This_account_is_disabled":"Akun ini dinonaktifkan","This_account_is_excluded_until_[_1]":"Akun ini di kecualikan hingga [_1]","Set_currency":"Pilih mata uang","Commodities":"Komoditas","Stock_Indices":"Indeks Saham","Stocks":"Saham","Synthetic_Indices":"Indeks Sintetis","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Jika Anda sudah pernah mendaftar sebelumnya, kami akan mengirimkan email untuk mereset kata sandi Anda sebentar lagi.","Sign_up":"Daftar","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Trading contract for difference (CFDs) pada Indeks Sintetis mungkin tidak akan cocok untuk semua orang. Pastikan bahwa Anda mengerti resiko yang terdapat, termasuk kemungkinan kehilangan seluruh dana di akun MT5.","Do_you_wish_to_continue?":"Apakah Anda ingin melanjutkan?","Acknowledge":"Mengetahui","Change_Password":"Perubahan Kata Sandi","The_investor_password_of_account_number_[_1]_has_been_changed_":"Kata sandi investor untuk nomor akun [_1] telah diubah.","Reset_Password":"Reset Kata Sandi","Verify_Reset_Password":"Verifikasi Reset Kata Sandi","Please_check_your_email_for_further_instructions_":"Silakan lihat email Anda untuk instruksi lebih lanjut.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"[_1] deposit dari [_2] ke akun nomer [_3] telah berhasil. ID Transaksi: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"[_1] penarikan dari akun [_2] ke [_3] telah berhasil. ID Transaksi: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Untuk menarik dana dari [_1] MetaTrader 5 silahkan [_2]Otentikasi[_3] akun Binary Anda.","Current_password":"Kata sandi saat ini","New_password":"Kata sandi baru","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Untuk mentransfer dana ke akun MT5 Anda, masukkan jumlah [_1] atau lebih","You_have_insufficient_funds_in_your_MT5_account_":"Dana tidak mencukupi pada akun MT5 Anda.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Maaf, fitur ini tidak tersedia di yurisdiksi Anda.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Berhubung sedang terjadi masalah pada server kami, maka beberapa akun MT5 Anda tidak tersedia untuk saat ini. [_1]Mohon maaf dan terima kasih atas kesabaran Anda.","Unavailable":"Tidak tersedia","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] telah dikreditkan kedalam Akun Demo MT5 Anda: [_2].","_(Region_added)":" (Wilayah ditambahkan)","_(Temporarily_unavailable)":" (Tidak tersedia untuk sementara)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Server MT5 kami untuk sementara tidak tersedia. Kami sedang melakukan perbaikan. Coba kembali beberapa saat lagi.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Gunakan kata sandi MT5 untuk masuk ke salah satu akun [_1] Anda saat menggunakan aplikasi MT5 menggunakan ponsel atau perangkat lainnya.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Ini akan mengubah kata sandi untuk semua akun [_1] Anda.","Demo_Accounts":"Akun Demo","Real-Money_Accounts":"Akun Uang Riil","Demo_Account":"Akun Demo","Real-Money_Account":"Akun Uang Riil","for_account_[_1]":"pada akun [_1]","[_1]_Account_[_2]":"[_1] Akun [_2]","MT5_Financial":"MT5 Finansial","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Masukkan kata sandi MT5 untuk menambahkan akun [_1] [_2]. ","real":"riil","MT5_Synthetic":"MT5 Sintetis","Get_[_1]":"Dapatkan [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Saldo akun demo Anda saat ini adalah [_1] atau kurang. Anda dapat mengisi ulang akun Anda dengan tambahan [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Anda dapat mengisi ulang akun demo Anda dengan tambahan [_1] jika saldo Anda [_2] atau kurang.","Yes,_I'm_sure":"Ya, saya yakin","Are_you_sure?":"Apa Anda yakin?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Anda tidak akan dapat merubah mata uang akun fiat Anda setelah mendaftar akun [_1] ini. Apa Anda yakin ingin melanjutkan?","Go_to_Deriv_to_add_an_MT5_account":"Kunjungi Deriv untuk menambahkan akun MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Anda dapat mengakses Deriv menggunakan kredensial Binary.com.","Back":"Kembali","Go_to_Deriv":"Kunjungi Deriv","Address":"Alamat","Account_currency":"Mata uang akun","Financial_assessment":"Penilaian keuangan","Personal_details":"Data pribadi","Terms_of_use":"Persyaratan pengguna","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) adalah versi Tether yang dipatok ke USD dan dibangun di blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) adalah versi Tether yang dipatok ke USD dan di-host di platform Ethereum.","Title_and_name":"Gelar dan nama","Real_money_account_opening":"Pendaftaran akun uang riil","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Token Anda telah berakhir atau tidak berlaku. Silahkan klik disini untuk memulai kembali proses verifikasi.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Alamat email yang Anda sediakan sudah pernah di daftarkan. Jika Anda lupa kata sandi, silahkan coba alat pemulihan kata sandi atau hubungi customer service kami.","Password_is_not_strong_enough_":"Kata sandi tidak cukup kuat.","Upgrade_now":"Upgrade sekarang","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] hari [_2] jam [_3] menit","Your_trading_statistics_since_[_1]_":"Statistik trading Anda sejak [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Trading [_1] dapat menyebabkan ketagihan, sebagaimana kegiatan lain yang dilakukan di luar batas. Untuk menghidari bahaya ketagihan tersebut, kami menyediakan pengecekan yang memberikan ringkasan trading Anda secara teratur.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Silahkan klik link dibawah untuk mengulang proses pembuatan kata sandi.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Anda memiliki kata sandi baru untuk mengakses Binary.com.","Success":"Sukses","Done":"Selesai","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Akun Binary Anda tidak terhubung dengan [_1]. Gunakan [_2]alamat email dan kata sandi untuk mengakses.","Success!":"Sukses!","Got_it":"Mengerti","Binary_Password_Reset":"Reset Kata Sandi Binary","Binary_password":"Kata sandi Binary","You_have_added_a_[_1]_account_":"Anda telah mendaftar akun [_1].","Add_account":"Daftar akun","Add_new_crypto_account":"Daftar akun kripto baru","Add_new_account":"Daftar akun baru","Create_a_cryptocurrency_account":"Daftar akun mata uang kripto","Choose_your_preferred_cryptocurrency":"Pilih mata uang kripto pilihan Anda","You_can_open_an_account_for_each_cryptocurrency_":"Anda dapat mendaftar akun pada setiap jenis mata uang kripto.","Choose_a_cryptocurrency_account":"Pilih akun mata uang kripto","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Pilih salah satu akun Anda atau tambahkan akun mata uang kripto baru","Choose_an_account":"Pilih akun","Choose_one_of_your_accounts_or_add_a_new_account":"Pilih salah satu akun Anda atau daftar akun baru","Choose_one_of_your_accounts":"Pilih salah satu akun Anda","Please_select_the_currency_for_this_account:":"Pilih mata uang untuk akun ini:","deposit_or_create_a_CFDs_account":"deposit atau mendaftar akun CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Apa Anda yakin ingin mendaftar akun [_1] Anda sekarang?","Note:":"Catatan:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Anda dapat mendaftar satu akun pada masing masing mata uang kripto.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Apa Anda yakin ingin mendaftar akun fiat dalam [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Anda hanya dapat memiliki satu akun dalam mata uang fiat. Anda dapat merubah mata uang akun fiat sebelum melakukan [_1].","Yes":"Ya","Create_[_1]_account":"Daftar akun [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Anda telah berhasil memilih mata uang pada akun Anda dalam [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Anda telah berhasil mengubah mata uang akun Anda dari [_1] ke [_2].","Please_choose_a_currency":"Silahkan pilih mata uang","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Anda memiliki kata sandi MT5 baru untuk mengakses akun [_1] Anda melalui web dan aplikasi seluler.","Higher_or_equal":"Lebih tinggi atau sama","Lower_or_equal":"Lower atau equal","Only_Ups":"Only Up","Only_Downs":"Only Down","Equals":"Sama","Not":"Bukan","Buy":"Beli","Sell":"Jual","Waiting_for_contract_settlement_":"Menunggu penyelesaian kontrak.","including_Deal_Cancel__Fee":"termasuk Pembatalan Kontrak. Biaya","Contract_has_not_started_yet":"Kontrak belum dimulai lagi","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Kontrak ini hanya tersedia pada [_1]DTrader[_2]. ","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Kontrak ini hanya tersedia pada DTrader. [_1][_2]Kunjungi Dtrader[_3] untuk menutup atau membatalkan kontrak ini.","Contract_Result":"Hasil Kontrak","Close_Time":"Waktu Tutup","Exit_Spot_Time":"Waktu Exit Spot","View_chart":"Lihat chart","Audit_Page":"Halaman Audit","Contract_Starts":"Kontrak Mulai","Contract_Ends":"Kontrak Berakhir","Contract_Details":"Keterangan Kontrak","Target":"Sasaran","Contract_Information":"Informasi Kontrak","Contract_Type":"Jenis Kontrak","Transaction_ID":"ID Transaksi","Remaining_Time":"Waktu Yang Tersisa","Maximum_payout":"Hasil Maksimum","Barrier_Change":"Perubahan Batasan","Current":"Saat ini","Spot_Time":"Waktu Spot","Current_Time":"Waktu Terkini","Indicative":"Indikatif","Potential_Profit/Loss":"Potensi Laba/Rugi","Deal_Cancel__Fee":"Batalkan transaksi. Biaya","You_can_close_this_window_without_interrupting_your_trade_":"Anda dapat menutup window ini tanpa mengganggu trading Anda.","There_was_an_error":"Terdapat error","Sell_at_market":"Jual pada pasar","Note":"Catatan","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Kontrak akan dijual pada harga pasar terkini ketika permintaan diterima oleh server kami. Harga ini mungkin berbeda dari harga yang diindikasikan.","You_have_sold_this_contract_at_[_1]_[_2]":"Anda telah menjual kontrak pada [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Nomor referensi transaksi Anda adalah [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Terima kasih karena telah mendaftar! Silahkan cek email Anda untuk melengkapi proses pendaftaran.","All_markets_are_closed_now__Please_try_again_later_":"Semua pasar ditutup saat ini. Coba kembali nanti.","Withdrawal":"Penarikan","demo_credit_to_account":"saldo demo kedalam akun","login":"masuk","logout":"keluar","Asians":"Asian","High/Low_Ticks":"High/Low Tick","Lookbacks":"Lookback","Christmas_Day":"Hari Natal","Closes_early_(at_18:00)":"Ditutup awal (pada 18:00)","Closes_early_(at_21:00)":"Ditutup awal (pada 21:00)","Fridays":"Jum'at","New_Year's_Day":"Tahun Baru","today":"hari ini","today,_Fridays":"hari ini, Jumat","There_was_a_problem_accessing_the_server_":"Terjadi masalah pada saat mengakses server.","There_was_a_problem_accessing_the_server_during_purchase_":"Terjadi masalah mengakses server saat pembelian berlangsung."}; \ No newline at end of file +texts_json['ID'] = {"Real":"Riil","Multipliers":"Multiplier","Options":"Opsi","Real_CFDs":"CFD Riil","Real_Financial":"Riil Finansial","Demo_CFDs":"CFD Demo","Demo_Financial":"Demo Finansial","Derived":"Turunan","Demo_Derived":"Demo Turunan","Real_Derived":"Turunan Riil","CFDs":"CFD","Financial":"Finansial","Financial_STP":"Finansial STP","Demo_Financial_STP":"Demo Finansial STP","Real_Financial_STP":"Riil Finansial STP","Binary_Coin":"Koin Binary","Connecting_to_server":"Menghubungkan ke server","Use_a_few_words,_avoid_common_phrases":"Gunakan beberapa kata, hindari frasa umum","No_need_for_symbols,_digits,_or_uppercase_letters":"Tidak perlu simbol, digit, atau huruf besar","Add_another_word_or_two__Uncommon_words_are_better_":"Tambahkan satu atau dua kata lagi. Kata-kata yang tidak umum lebih baik.","Straight_rows_of_keys_are_easy_to_guess":"Baris tombol lurus mudah ditebak","Short_keyboard_patterns_are_easy_to_guess":"Pola keyboard pendek mudah ditebak","Use_a_longer_keyboard_pattern_with_more_turns":"Gunakan pola keyboard yang lebih panjang dengan lebih banyak putaran","Repeats_like_\"aaa\"_are_easy_to_guess":"Pengulangan seperti \"aaa\" mudah ditebak","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Pengulangan seperti \"abcabcabc\" sedikit lebih sulit ditebak daripada \"abc\"","Avoid_repeated_words_and_characters":"Hindari penggunaan kata dan karakter yang berulang","Sequences_like_abc_or_6543_are_easy_to_guess":"Urutan seperti abc atau 6543 adalah mudah ditebak","Avoid_sequences":"Hindari urutan","Recent_years_are_easy_to_guess":"Beberapa tahun terakhir ini mudah ditebak","Avoid_recent_years":"Hindari beberapa tahun terakhir","Avoid_years_that_are_associated_with_you":"Hindari tahun-tahun yang berhubungan dengan Anda","Dates_are_often_easy_to_guess":"Tanggal biasanya mudah ditebak","Avoid_dates_and_years_that_are_associated_with_you":"Hindari tanggal dan tahun yang berhubungan dengan Anda","This_is_a_top-10_common_password":"Ini adalah 10 kata sandi umum teratas","This_is_a_top-100_common_password":"Ini adalah 100 kata sandi umum teratas","This_is_a_very_common_password":"Ini adalah kata sandi yang sangat umum","This_is_similar_to_a_commonly_used_password":"Ini mirip dengan kata sandi yang biasa digunakan","A_word_by_itself_is_easy_to_guess":"Sebuah kata dengan sendirinya mudah ditebak","Names_and_surnames_by_themselves_are_easy_to_guess":"Nama dan nama keluarga itu sendiri sangat mudah ditebak","Common_names_and_surnames_are_easy_to_guess":"Nama umum dan nama keluarga mudah ditebak","Capitalization_doesn't_help_very_much":"Kapitalisasi tidak banyak membantu","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Semua huruf besar hampir mudah ditebak sama seperti huruf kecil","Reversed_words_aren't_much_harder_to_guess":"Kata-kata yang dieja terbalik juga tidak sulit untuk ditebak","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Substitusi yang dapat diprediksi seperti '@' dan bukan 'a' yang tidak begitu membantu","This_password_is_on_the_blacklist":"Kata sandi ini terdapat di daftar hitam","Unknown_OS":"OS tidak diketahui","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Anda akan diarahkan ke situs pihak ketiga yang tidak dimiliki oleh Binary.com.","Click_OK_to_proceed_":"Klik OK untuk melanjutkan.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Pastikan bahwa Anda memiliki aplikasi Telegram yang diinstal pada perangkat Anda.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] mengharuskan penyimpanan web browser Anda diaktifkan agar berfungsi dengan benar. Aktifkan atau keluar dari mode browsing pribadi.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Silahkan [_1]masuk[_2] atau [_3]daftar[_4] untuk melihat halaman ini.","This_feature_is_available_to_demo_accounts_only_":"Fasilitas ini hanya tersedia untuk akun demo saja.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Anda menggunakan akun demo. Pindah ke akun riil atau daftar akun untuk mengakses Kasir.","This_page_is_only_available_to_logged_out_clients_":"Anda perlu keluar dari akun Anda terlebih dahulu untuk mengakses halaman ini.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Trading opsi binary tidak tersedia pada akun Multiplier Anda.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Opsi Binary tidak tersedia pada akun Multiplier.
Pindah ke akun Opsi Anda.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Mohon maaf, trading opsi tidak tersedia di Inggris dan Isle of Man","Binary_options_trading_is_not_available_in_your_country_":"Trading opsi binary tidak tersedia di negara Anda.","This_page_is_not_available_in_your_country_of_residence_":"Halaman ini tidak tersedia pada negara domisili Anda.","Page_not_available,_you_did_not_deactivate_your_account_":"Halaman tidak tersedia, Anda tidak menonaktifkan akun Anda.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Sayangnya, layanan ini tidak tersedia di negara Anda. Jika Anda ingin bertrading Multiplier, cobalah DTrader pada Deriv.","Go_to_DTrader":"Kunjungi DTrader","Sign_out":"Keluar","[_1]_Account":"Akun [_1]","Click_here_to_open_a_Real_Account":"Klik disini untuk mendaftar Akun Riil","Open_a_Real_Account":"Daftar Akun Riil","Click_here_to_open_a_Multipliers_Account":"Klik disini untuk mendaftar Akun Multiplier","Click_here_to_open_an_Options_account":"Klik disini untuk mendaftar akun Opsi","Open_a_Multipliers_Account":"Daftar Akun Multiplier","Go_to_Deriv_to_add_an_account":"Kunjungi Deriv untuk menambahkan akun","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Anda dapat mengakses Deriv menggunakan kredensial Binary.com.","Cancel":"Kembali","Go_to_Deriv":"Kunjungi Deriv","Create_Account":"Daftar Akun","Accounts_List":"Daftar Akun","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Deposit tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan deposit kembali setelah perbaikan selesai.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Penarikan tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat melakukan penarikan kembali setelah perbaikan selesai.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir mata uang kripto tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses kembali bagian Kasir beberapa menit lagi setelah perbaikan selesai.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses kembali bagian Kasir beberapa menit lagi setelah perbaikan selesai.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Bagian kasir Anda terkunci. Hubungi kami melalui obrolan langsung untuk mengaktifkan kembali.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Pilih [_1]mata uang akun[_2] Anda untuk mengaktifkan deposit dan penarikan.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Nama dan tanggal lahir Anda pada dokumen tidak sesuai dengan nama dan tanggal lahir pada profil Binary Anda. Mohon perbarui nama Anda pada halaman [_1]Data pribadi[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Tanggal lahir Anda pada dokumen tidak sesuai dengan nama profil Binary Anda. Mohon perbarui nama Anda pada halaman [_1]Data pribadi[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Nama pada dokumen tidak sesuai dengan nama profil Binary Anda. Mohon perbarui nama Anda pada halaman [_1]Data pribadi[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Akun Anda belum diautentikasi. Kirim [_1]bukti identitas dan bukti alamat[_2] untuk mengautentikasi akun dan mengajukan penarikan.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Akun Anda belum diautentikasi. Kirim [_1]bukti identitas dan bukti alamat[_2] untuk mengautentikasi akun dan mengakses bagian kasir Anda.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Dokumen identitas yang Anda kirimkan sebelumnya sudah tidak berlaku. Mohon kirim dokumen identitas yang berlaku.","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]Bukti identitas[_2] Anda telah berakhir.","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]Bukti alamat[_2] Anda telah berakhir.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]Bukti identitas[_3] dan [_2]bukti alamat[_3] Anda belum diverifikasi.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]Bukti identitas[_2] Anda belum diverifikasi. ","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]Bukti alamat[_2] Anda belum diverifikasi.","Please_submit_your_[_1]proof_of_identity[_2]_":"Silakan kirim [_1]bukti identitas[_2] Anda.","Please_submit_your_[_1]proof_of_address[_2]_":"Silakan kirim [_1]bukti alamat[_2] Anda.","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Anda telah memilih untuk berhenti bertrading sementara waktu hingga [_1]. Jika Anda masih tidak dapat bertrading atau mendeposit setelah periode pengecualian diri berakhir, hubungi kami melalui obrolan langsung.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Bagian Kasir akun Anda untuk sementara dibatakan berhubung Anda belum memilih batasan total pembelian 30 hari. Kunjungi [_1]Pengecualian diri[_2] dan pilih batas pembelian 30 hari Anda.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Penarikan MT5 tidak tersedia pada akun Anda. Silakan periksa kotak masuk email Anda untuk rincian lebih lanjut.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Anda hanya dapat melakukan deposit. Hubungi kami melalui obrolan langsung untuk mengaktifkan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit dan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan penarikan.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]Data pribadi[_2] Anda tidak lengkap. Kunjungi bagian pengaturan akun dan lengkapi data pribadi Anda untuk mengaktifkan deposit.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Anda belum memilih negara domisili. Untuk mengakses bagian Kasir, mohon perbarui [_1]negara domisili[_2] pada bagian data pribadi pengaturan akun Anda.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Bagian kasir Anda terkunci. Lengkapi [_1]penilaian keuangan[_2] untuk mengaktifkan kembali.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Anda belum menginformasikan nomer NPWP Anda. Informasi ini diperlukan untuk memenuhi persyaratan hukum dan peraturan yang berlaku. Akses [_1]Data pribadi[_2] pada bagian pengaturan akun Anda, dan isi nomor NPWP terbaru.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Anda hanya dapat melakukan penarikan. Hubungi kami melalui obrolan langsung.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Penarikan telah dinonaktifkan pada akun Anda. Mohon tunggu hingga dokumen yang Anda unggah terverifikasi.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Anda perlu menyetujui [_1]Syarat dan Ketentuan[_2] terbaru.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Anda perlu menyetujui [_1]Syarat dan Ketentuan[_2] terbaru untuk meningkatkan batasan deposit dan trading.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Akun Anda untuk sementara dibatalkan. Hubungi kami melalui obrolan langsung untuk mengaktifkan deposit dan penarikan kembali.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Mohon lengkapi Tes Kelayakan untuk mengakses bagian kasir Anda.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Bagian kasir Anda terkunci. Lihat [_1]bagaimana kami melindungi dana Anda[_2] sebelum melanjutkan.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Akun Anda memerlukan otentikasi. Kirim [_1]bukti identitas[_2] Anda untuk mengakses Kasir.","Account_Authenticated":"Akun Telah Dikonfirmasi","Connection_error:_Please_check_your_internet_connection_":"Koneksi error: Silakan periksa koneksi internet Anda.","Network_status":"Status jaringan","This_is_a_staging_server_-_For_testing_purposes_only":"Ini adalah staging server - Untuk tujuan pengujian saja","The_server_endpoint_is:_[_2]":"Titik akhir server adalah: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Browser web Anda ([_1]) sudah ketinggalan zaman yang dapat mempengaruhi pengalaman trading Anda. Lanjutkan dengan risiko sendiri. [_2]Perbarui browser[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Anda telah mencapai batas tingkat permintaan per detik. Silakan coba lagi nanti.","There_was_some_invalid_character_in_an_input_field_":"Terdapat beberapa karakter yang tidak berlaku pada kolom input.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"diatur oleh Komisi Gaming UK (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"diatur oleh Otoritas Gaming Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"diatur oleh Otoritas Jasa Keuangan Malta (MFSA),","Please_select":"Tolong pilih","Please_accept_the_terms_and_conditions_":"Silahkan terima syarat dan ketentuan.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Mohon konfirmasikan bahwa Anda bukanlah orang yang terlibat dalam politik.","Today":"Hari ini","Select_date":"Pilih tanggal","Barrier":"Batasan","Entry_Spot":"Spot Masuk","Exit_Spot":"Spot akhir","Charting_for_this_underlying_is_delayed":"Charting untuk underlying ini tertunda","Payout_Range":"Rentang Hasil","Purchase_Time":"Waktu Beli","Reset_Barrier":"Batasan Reset","Reset_Time":"Waktu Reset","Selected_Tick":"Tik Terpilih","Exit_Time":"Waktu Akhir","Start_Time":"Waktu Mulai","Crypto":"Kripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Langkah [_1]: [_2] ([_1] dari [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Kode verifikasi salah. Silahkan gunakan link yang dikirim ke email Anda.","Indicates_required_field":"Menunjukkan bagian yang diperlukan","Please_select_the_checkbox_":"Silakan pilih kotak centang.","This_field_is_required_":"Bagian ini diperlukan.","Should_be_a_valid_number_":"Harus angka yang berlaku.","Up_to_[_1]_decimal_places_are_allowed_":"Hingga [_1] desimal diperbolehkan.","Should_be_[_1]":"Seharusnya [_1]","Should_be_between_[_1]_and_[_2]":"Harus antara [_1] dan [_2]","Should_be_more_than_[_1]":"Harus lebih dari [_1]","Should_be_less_than_[_1]":"Harus kurang dari [_1]","Insufficient_balance_":"Saldo tidak mencukupi.","Invalid_email_address_":"Alamat email salah.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Kata sandi harus terdiri dari huruf kecil dan besar alfabet beserta angka.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Hanya huruf, angka, ruang, tanda hubung, periode, dan apostrof diperbolehkan.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Hanya huruf, angka, spasi, dan karakter khusus yang diperbolehkan: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Hanya huruf, spasi, tanda hubung, periode, dan apostrof diperbolehkan.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Hanya huruf, angka, spasi, dan tanda hubung yang diperbolehkan.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Masukkan nomor telepon yang berlaku (contoh +62812391234).","The_two_passwords_that_you_entered_do_not_match_":"Kedua-dua kata sandi yang Anda masukkan tidak cocok.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] dan [_2] tidak bisa sama.","Minimum_of_[_1]_characters_required_":"Minimal [_1] karakter diperlukan.","You_should_enter_[_1]_characters_":"Anda harus memasukkan [_1] karakter.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Harus dimulai dengan huruf atau angka, dan mungkin mengandung tanda hubung dan garis bawah.","Invalid_verification_code_":"Kode verifikasi salah.","Your_password_cannot_be_the_same_as_your_email_address_":"Jangan menggunakan alamat email sebagai kata sandi.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transaksi dilakukan oleh [_1] (App ID: [_2])","Guide":"Panduan","Next":"Lanjutkan","Finish":"Selesai","Step":"Langkah","Select_your_market_and_underlying_asset":"Pilih pasar dan aset dasar Anda","Select_your_trade_type":"Pilih jenis kontrak Anda","Adjust_trade_parameters":"Menyesuaikan parameter trading","Predict_the_directionand_purchase":"Analisa arah
dan beli","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Batas durasi sesi Anda akan berakhir dalam [_1] detik.","January":"Januari","February":"Pebruari","March":"Maret","May":"Mei","June":"Juni","July":"Juli","August":"Agustus","October":"Oktober","November":"Nopember","December":"Desember","Feb":"Peb","Jun":"Juni","Aug":"Agu","Oct":"Oktober","Nov":"Nop","Dec":"Des","Sunday":"Minggu","Monday":"Senin","Tuesday":"Selasa","Wednesday":"Rabu","Thursday":"Kamis","Friday":"Jum'at","Saturday":"Sabtu","Su":"Mgg","Mo":"Sen","Tu":"Kam","We":"Kami","Th":"Kam","Fr":"Jum","Sa":"Sab","Previous":"Sebelumnya","Hour":"Jam","Minute":"Menit","Verification_required":"Verifikasi diperlukan","Verify_identity":"Verifikasi identitas","From_account:_":"Dari akun: ","To_account:_":"Ke akun: ","Not_announced_for_this_currency_":"Tidak diumumkan untuk mata uang ini.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Reset saldo akun demo Anda ke [_1] kapan saja.","[_1]Manage_your_accounts[_2]":"[_1]Kelola akun Anda[_2]","time":"kali","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"mendeposit atau mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com). Anda juga dapat mendaftar akun pada setiap mata uang kripto.","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Anda tidak dapat merubah mata uang berhubung Anda sudah mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Anda tidak dapat merubah mata uang berhubung sudah melakukan deposit.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Mata uang akun fiat Anda saat ini adalah [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Mata uang akun fiat Anda diatur sebagai [_1].","This_is_your_[_1]_account_":"Berikut adalah akun [_1] Anda.","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Anda dapat memilih [_1]mata uang baru[_2] sebelum mendeposit pertama [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Apakah Anda ingin bertrading dalam [_1]. Anda dapat mendaftar akun kripto lainnya.","Switch_account":"Pindah akun","Switch_account?":"Pindah akun?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Untuk mendeposit dana, pindah ke akun [_1] Anda.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Untuk menarik dana, pindah ke akun [_1] Anda.","Switch_to_crypto_account?":"Pindah ke akun kripto?","To_deposit_cryptocurrency,_switch_your_account_":"Untuk mendeposit mata uang kripto, pindahkan akun Anda.","To_withdraw_cryptocurrency,_switch_your_account_":"Untuk menarik dana dalam mata uang kripto, pindahkan akun Anda.","Withdraw":"Penarikan","Town/City":"Kota","First_line_of_home_address":"Alamat Rumah","Postal_Code/ZIP":"Kode Pos","State/Province":"Provinsi","Email_address":"Alamat email","Telephone":"Telepon","Country_of_Residence":"Negara Domisili","details":"perincian","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasir tidak tersedia untuk sementara waktu berhubung perbaikan sistem. Anda dapat mengakses bagian Kasir kembali setelah perbaikan selesai.","Your_cashier_is_locked_":"Kasir Anda terkunci.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Harap dicatat bahwa mata uang yang Anda pilih hanya diperbolehkan untuk akun terbatas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Anda telah mencapai batas maksimal penarikan. Mohon kirimkan bukti identitas dan alamat untuk menghapus batasan dan melanjutkan penarikan.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Layanan Agen Pembayaran tidak tersedia di negara Anda atau dalam mata uang yang Anda pilih.","Select_payment_agent":"Pilih agen pembayaran","Amount_in":"Jumlah dalam","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Hanya huruf, angka, spasi, tanda hubung, titik, koma, dan apostrof yang diizinkan.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Permohonan penarikan Anda [_1] [_2] dari account [_3] ke Agen Pembayaran [_4] telah diproses.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Token Anda telah berakhir atau tidak berlaku. Silahkan klik [_1]disini[_2] untuk memulai proses verifikasi.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Maaf, penarikan untuk mata uang ini sedang dinonaktifkan.","Please_[_1]deposit[_2]_to_your_account_":"Silahkan [_1]deposit[_2] kedalam akun Anda.","Sorry,_account_signup_is_not_available_in_your_country_":"Maaf, pendaftaran akun tidak tersedia di negara Anda.","Asset":"Aset","Opens":"Dibuka","Closes":"Ditutup","Settles":"Diselesaikan","Upcoming_Events":"Acara Mendatang","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Tambahkan +/– untuk menentukan barrier offset. Contoh, +0,005 berarti batasan lebih tinggi 0,005 dari spot masuk.","Percentage":"Persentase","Waiting_for_entry_tick_":"Menunggu tik masuk...","High_Barrier":"Batasan Tinggi","Low_Barrier":"Batasan Rendah","Waiting_for_exit_tick_":"Menunggu tik akhir.","Ticks_history_returned_an_empty_array_":"Historical tik menghasilkan tampilan kosong.","Chart_is_not_available_for_this_underlying_":"Chart tidak tersedia untuk pasar dasar ini.","Purchase":"Beli","Net_profit":"Laba bersih","Return":"Laba","Time_is_in_the_wrong_format_":"Waktu dalam format salah.","Only_Ups/Only_Downs":"Only Up/Only Down","Select_Trade_Type":"Pilih Jenis Kontrak","Tick":"Tik","Spot":"Posisi","Spot_Time_(GMT)":"Waktu Spot (GMT)","seconds":"detik","minutes":"menit","hours":"jam","days":"hari","ticks":"tik","tick":"tik","second":"detik","minute":"menit","hour":"jam","day":"hari","Duration":"Durasi","End_Time":"Waktu berakhir","Purchase_request_sent":"Permintaan pembelian dikirim","Select_Asset":"Pilih Aset","Search___":"Cari...","Maximum_multiplier_of_1000_":"Maksimum kelipatan 1000.","Stake":"Modal","Payout":"Hasil","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Maaf, akun Anda tidak dapat membeli kontrak selanjutnya.","Trading_is_unavailable_at_this_time_":"Trading tidak tersedia untuk saat ini.","Please_reload_the_page":"Silakan reload halaman","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Jenis kontrak ini tidak tersedia untuk sesi trading selanjutnya. Untuk informasi lebih lanjut, lihat [_1]syarat dan ketentuan[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Aplikasi Anda sebagai klien profesional sedang diproses.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Permohonan klien profesional Anda [_1]tidak disetujui[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Silahkan ajukan kembali setelah semua kriteria telah terpenuhi.","More_information_can_be_found_in_an_email_sent_to_you_":"Informasi lebih lanjut dapat ditemukan pada email yang dikirim pada Anda.","I_want_to_reapply":"Saya ingin mendaftar kembali","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Di Uni Eropa, opsi finansial binary hanya tersedia bagi investor profesional.","Apply_now_as_a_professional_investor":"Ajukan permohonan sebagai investor profesional sekarang","Try_our_[_1]Synthetic_Indices[_2]_":"Coba [_1]Indeks Sintetis[_2] kami.","Try_our_other_markets_":"Coba pasar kami lainnya.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Silakan lengkapi formulir [_1]Akun Riil[_2] untuk memverifikasi umur Anda seperti yang telah dipersyaratkan oleh [_3]UKGC[_4].","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Akses akun sementara dibatasi. Silakan periksa kotak masuk email Anda untuk rincian lebih lanjut.","Contract_Confirmation":"Konfirmasi Kontrak","Your_transaction_reference_is":"Referensi transaksi Anda adalah","Total_Cost":"Total Biaya","Potential_Payout":"Potensi Hasil","Potential_Profit":"Potensi Hasil","View":"Lihat","This_contract_won":"Kontrak ini untung","This_contract_lost":"Kontrak ini rugi","The_reset_time_is_[_1]":"Waktu reset adalah [_1]","Now":"Sekarang","Average":"Rata-rata","Buy_price":"Harga beli","Final_price":"Harga akhir","Loss":"Rugi","Profit":"Keuntungan","Account_balance:":"Saldo akun:","Reverse_Side":"Bagian Belakang","Front_Side":"Bagian Depan","Pending":"Tertunda","Submitting":"Mengirimkan","Submitted":"Terkirim","Failed":"Gagal","Compressing_Image":"Mengompresi Gambar","Checking":"Memeriksa","Checked":"Diperiksa","Unable_to_read_file_[_1]":"Tidak dapat membaca file [_1]","Passport":"Paspor","Identity_card":"KTP","Driving_licence":"SIM","Invalid_document_format_":"Format dokumen tidak valid.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Ukuran file ([_1]) melebihi batas yang diijinkan. Ukuran file maksimum yang diizinkan: [_2]","ID_number_is_required_for_[_1]_":"Nomor identitas diperlukan untuk [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Hanya huruf, angka, spasi, garis bawah, dan tanda hubung yang diizinkan untuk nomor Identitas ([_1]).","Expiry_date_is_required_for_[_1]_":"Masa berlaku diperlukan untuk [_1].","Place_of_birth":"Negara kelahiran","Please_select_the_country_of_document_issuance":"Mohon pilih negara pengeluar dokumen","Choose_the_document_type":"Pilih jenis dokumen","Please_enter_the_correct_format__Example:":"Masukkan format yang benar. Contoh:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email akun Google Anda dan klik tautan pada email untuk melanjutkan.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email akun Facebook Anda dan klik tautan pada email untuk melanjutkan.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Cek alamat email yang terhubung dengan ID Apple Anda dan klik tautan pada email untuk melanjutkan.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Klik pada tautan pada email Anda untuk merubah kata sandi MT5 Anda.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Silahkan klik pada link di email untuk merubah kata sandi binary Anda.","We’ve_sent_you_an_email":"Kami telah mengirimikan email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Anda menggunakan akun [_1] untuk mengakses akun Binary.com Anda. Untuk mengakses menggunakan nama pengguna dan kata sandi, klik tombol [_2]Batalkan tautan[_3].","Linked_with_[_1]":"Ditautkan dengan [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Anda perlu mengatur kata sandi untuk menyelesaikan proses.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Apa Anda yakin ingin membatalkan tautan dari [_1]?","Unlink":"Batalkan tautan","Country_not_found":"Negara tidak ditemukan","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Dokumen dari negara tersebut saat ini tidak dapat diterima — silakan coba jenis dokumen lain","Submit_document":"Kirimkan dokumen","Select_country":"Pilih negara","e_g__United_States":"contoh Amerika Serikat","Search_for_country":"Cari negara","Select_issuing_country":"Pilih negara pengeluar","Submit_verification":"Kirim verifikasi","Documents_uploaded":"Dokumen telah diunggah","Document_uploaded":"Dokumen yang diunggah","Selfie_uploaded":"Selfie diunggah","We're_now_ready_to_verify_your_identity":"Kami sekarang sudah bersedia untuk memverifikasi identitas Anda","Great,_that's_everything_we_need":"Luar biasa, itu saja yang kami butuhkan","The_link_only_works_on_mobile_devices":"Tautan hanya berfungs pada perangkat seluler","Something's_gone_wrong":"Ada yang tidak beres","You'll_need_to_restart_your_verification_on_your_computer":"Anda harus memulai ulang verifikasi menggunakan komputer","Get_secure_link":"Dapatkan tautan aman","Steps_required_to_continue_verification_on_your_mobile":"Langkah-langkah yang diperlukan untuk melanjutkan verifikasi pada ponsel Anda","Check_back_here_to_finish_the_submission":"Periksa kembali di sini untuk menyelesaikan pengiriman","Open_the_link_and_complete_the_tasks":"Buka tautan dan selesaikan tugas","Send_a_secure_link_to_your_phone":"Mengirim tautan aman ke telepon Anda","Here's_how_to_do_it:":"Berikut cara melakukannya:","Continue_on_your_phone":"Lanjutkan pada telepon Anda","Your_computer_may_take_a_few_seconds_to_update":"Komputer Anda mungkin perlu beberapa detik untuk memperbarui","You_can_now_return_to_your_computer_to_continue":"Anda sekarang dapat kembali ke komputer untuk melanjutkan","Uploads_successful":"Unggahan berhasil","Make_sure_everything_is_clear":"Pastikan semuanya jelas","Blurry_photo_detected":"Foto buram terdeteksi","Make_sure_full_document_is_visible":"Pastikan semua dokumen terlihat","Cut-off_image_detected":"Gambar potongan terdeteksi","Move_away_from_direct_light":"Menjauh dari cahaya langsung","Glare_detected":"Pantulan cahaya terdeteksi","Make_sure_all_of_the_document_is_in_the_photo":"Pastikan semua dokumen terdapat pada foto","No_document_detected":"Dokumen tidak terdeteksi","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data kartu Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Akan memerlukan waktu lebih lama untuk memverifikasi Anda jika kami tidak dapat membacanya","To_smoothly_verify_you,_we_need_a_better_photo":"Untuk memverifikasi Anda dengan lancar, kami membutuhkan foto yang lebih baik","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data Sim Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data paspor Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan detail izin tinggal Anda jelas untuk dibaca, tidak kabur atau memantulkan cahaya","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Pastikan data Anda dapat dibaca dengan jelas, tidak buram atau memantulkan cahaya","Redo":"Mengulang","Confirm":"Lanjutkan","Upload_anyway":"Unggah saja","Enlarge_image":"Memperbesar gambar","Photo_of_your_document":"Foto dokumen Anda","Check_your_image":"Periksa gambar Anda","Front_and_back":"Depan dan belakang","Driver's_license":"SIM","Face_photo_page":"Halaman foto wajah","Residence_permit":"Izin tinggal","Sorry,_no_mobile_phone_bills":"Maaf, tagihan ponsel tidak dapat diterima","Documents_you_can_use_to_verify_your_identity":"Dokumen yang dapat Anda gunakan untuk memverifikasi identitas Anda","It_must_be_an_official_photo_ID":"Harus berupa foto ID resmi","These_are_the_documents_most_likely_to_show_your_current_home_address":"Berikut adalah beberapa dokumen yang dapat digunakan untuk memperlihatkan alamat rumah Anda saat ini","Choose_document":"Pilih dokumen","Select_a_%{country}_document":"Pilih %{country} dokumen ","or_upload_photo_–_no_scans_or_photocopies":"atau meng-upload foto - bukan scan atau fotokopi","Continue_on_phone":"Lanjutkan pada telepon","Take_a_photo_with_your_phone":"Foto menggunakan ponsel Anda","Submit_identity_card_(back)":"Kirim kartu identitas (belakang)","Submit_identity_card_(front)":"Kirim kartu identitas (depan)","Submit_license_(back)":"Kirim SIM (bagian belakang)","Submit_license_(front)":"Kirim SIM (bagian depan)","Submit_passport_photo_page":"Kirim halaman foto paspor","Submit_residence_permit_(back)":"Kirimkan izin tinggal (belakang)","Submit_residence_permit_(front)":"Kirimkan izin tinggal (depan)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Memulai ulang proses menggunakan Google Chrome versi terbaru","Restart_the_process_on_the_latest_version_of_Safari":"Ulang proses menggunakan Safari versi terbaru","Unsupported_browser":"Browser yang tidak tersedia","Close_identity_verification_screen":"Menutup layar verifikasi identitas","Dismiss_alert":"Tutup peringatan","back":"kembali","close":"tutup","Restart_process_on_a_different_device":"Ulang proses menggunakan perangkat lain","Camera_not_detected":"Kamera tidak terdeteksi","Must_be_under_10MB_":"Harus di bawah 10MB.","File_size_exceeded_":"Ukuran file terlalu besar.","Try_using_another_file_type_":"Coba gunakan jenis file lain.","File_not_uploaded_":"File tidak diunggah.","An_error_occurred_while_loading_the_component":"Terjadi error pada saat memuat komponen","Only_your_face_can_be_in_the_selfie":"Hanya wajah Anda yang bisa berada pada kolom selfie","Multiple_faces_found":"Ditemukan beberapa wajah","Your_face_is_needed_in_the_selfie":"Wajah Anda diperlukan dalam selfie","No_face_found":"Wajah tidak ditemukan","Please_try_again":"Silakan coba lagi","Connection_lost":"Koneksi hilang","Copy_the_link_to_your_phone":"Salin tautan ke telepon Anda","Too_many_failed_attempts":"Terlalu banyak percobaan yang gagal","Try_using_a_JPG_or_PNG_file":"Coba gunakan file JPG atau PNG","File_type_not_supported":"Jenis file yang tidak tersedia","Loading___":"Pemuatan...","Loading":"Pemuatan","Check_that_your_number_is_correct":"Periksa apakah nomor Anda sudah benar","Copied":"Disalin","Copy":"Salin","Send_link":"Kirim tautan","How_to_scan_a_QR_code":"Cara menscan kode QR","Point_your_phone’s_camera_at_the_QR_code":"Arahkan kamera ponsel ke kode QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Jika tidak berhasil, unduh scanner kode QR dari Google Play atau App Store","or":"atau","Scan_QR_code":"Scan kode QR","Get_link_via_SMS":"Dapatkan tautan melalui SMS","Copy_link":"Salin tautan","Sending":"Mengirim","Enter_mobile_number":"Masukkan nomor ponsel","Enter_your_mobile_number:":"Masukkan nomor ponsel Anda:","Scan_the_QR_code_with_your_phone":"Scan kode QR menggunakan telepon Anda","Send_this_one-time_link_to_your_phone":"Kirim tautan ke telepon Anda","Open_the_link_on_your_mobile":"Buka tautan pada ponsel Anda","Get_your_secure_link":"Dapatkan tautan aman Anda","Copy_the_link_to_your_mobile_browser":"Salin tautan ke browser seluler Anda","Continue":"Lanjutkan","Make_sure§":"Pastikan§","2__Your_desktop_window_stays_open":"2. Jendela desktop Anda tetap terbuka","1__This_link_was_sent_by_you":"1. Anda yang mengirim tautan","Continue_with_the_verification":"Lanjutkan verifikasi","Linked_to_your_computer":"Hubungkan ke komputer Anda","Take_a_photo_of_the_back_of_your_card":"Foto bagian belakang kartu Anda","Take_a_photo_of_the_front_of_your_card":"Foto bagian depan kartu Anda","Take_a_photo_of_the_back_of_your_license":"Foto bagian belakang Sim Anda","Take_a_photo_of_the_front_of_your_license":"Foto bagian depan Sim Anda","Take_a_photo_of_your_passport_photo_page":"Foto halaman yang berisikan foto pada paspor Anda","Take_a_selfie_showing_your_face":"Mengambil selfie yang menunjukkan wajah Anda","Take_a_photo_using_the_basic_camera_mode_instead":"Foto menggunakan mode kamera dasar sebagai gantinya","Take_a_photo":"Foto","Passport_photo_page":"Halaman foto paspor","Thank_you":"Terima kasih","Verification_complete":"Verifikasi selesai","Recovery":"Pemulihan","Follow_these_steps_to_recover_camera_access:":"Ikuti langkah-langkah berikut untuk memulihkan akses kamera:","Refresh_this_page_to_restart_the_identity_verification_process":"Refresh halaman ini untuk memulai ulang proses verifikasi identitas","Grant_access_to_your_camera_from_your_browser_settings":"Beri akses pada kamera Anda melalui pengaturan browser","Recover_camera_access_to_continue_face_verification":"Memulihkan akses kamera untuk melanjutkan verifikasi wajah","Camera_access_is_denied":"Akses kamera ditolak","We_cannot_verify_you_without_using_your_camera":"Kami tidak dapat memverifikasi Anda tanpa menggunakan kamera","Enable_camera":"Aktifkan kamera","When_prompted,_you_must_enable_camera_access_to_continue":"Bila diminta, Anda harus mengaktifkan akses kamera untuk melanjutkan","Allow_camera_access":"Mengizinkan akses kamera","Provide_the_whole_document_page_for_best_results":"Sediakan seluruh halaman dokumen untuk hasil terbaik","Upload_back_of_card_from_your_computer":"Unggah bagian belakang kartu dari komputer Anda","Upload_front_of_card_from_your_computer":"Unggah bagian depan kartu dari komputer Anda","Upload_back_of_license_from_your_computer":"Unggah kembali Sim dari komputer Anda","Upload_front_of_license_from_your_computer":"Unggah bagian depan SIM dari komputer Anda","Upload_passport_photo_page_from_your_computer":"Unggah halaman foto paspor dari komputer Anda","Upload_a_selfie_from_your_computer":"Mengunggah selfie dari komputer Anda","Take_photo":"Foto","Upload":"Unggah","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Periksa apakah terhubung dan berfungsi. Anda juga dapat melanjutkan verifikasi pada telepon Anda","Make_sure_your_device_has_a_working_camera":"Pastikan perangkat Anda memiliki kamera yang berfungsi","Camera_not_working?":"Kamera tidak berfungsi?","It_may_be_disconnected__Try_using_your_phone_instead_":"Mungkin akan terputus. Coba gunakan telepon Anda sebagai gantinya.","Make_sure_your_device's_camera_works":"Pastikan kamera pada perangkat Anda berfungsi","Camera_not_working":"Kamera tidak berfungsi","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Pastikan untuk menekan tombol berhenti setelah Anda selesai. Ulangi tindakan video","Looks_like_you_took_too_long":"Sepertinya Anda mengambil waktu cukup lama","View_from_camera":"Lihat dari kamera","Take_a_selfie":"Mengambil selfie","Photo_of_your_face":"Foto wajah Anda","Make_sure_your_selfie_clearly_shows_your_face":"Pastikan selfie menunjukkan wajah Anda dengan jelas","Check_selfie":"Periksa selfie","Tips_to_take_a_good_selfie":"Tips untuk mengambil selfie yang bagus","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Menghadap ke depan dan pastikan mata Anda terlihat jelas","Remove_your_glasses,_if_necessary":"Lepaskan kacamata Anda, jika perlu","We'll_compare_it_with_your_document":"Kami akan membandingkannya dengan dokumen Anda","Your_link_will_expire_in_one_hour":"Tautan Anda akan berakhir dalam tempo satu jam","Keep_this_window_open_while_using_your_mobile":"Tetap buka jendela ini saat menggunakan ponsel Anda","Resend_link":"Kirim ulang tautan","We've_sent_a_secure_link_to_%{number}":"Kami telah mengirim tautan aman ke %{number}","It_may_take_a_few_minutes_to_arrive":"Mungkin diperlukan beberapa menit untuk sampai","Check_your_mobile":"Periksa ponsel Anda","Your_mobile_link_will_expire_in_one_hour":"Link seluler Anda akan berakhir dalam tempo satu jam","Don't_refresh_this_page":"Jangan refresh halaman ini","Once_you've_finished_we'll_take_you_to_the_next_step":"Setelah Anda selesai, kami akan membawa Anda ke langkah berikutnya","Connected_to_your_mobile":"Terhubung ke ponsel Anda","Upload_photo":"Unggah foto","Example_of_a_blurry_document":"Contoh dokumen buram","All_details_must_be_clear_—_nothing_blurry":"Semua detail harus jelas - tidak ada yang buram","Example_of_a_cut-off_document":"Contoh dokumen yang dipotong","Show_all_details_—_including_the_bottom_2_lines":"Tampilkan semua detail — termasuk 2 baris terakhir","Example_of_a_document_with_glare":"Contoh dokumen dengan pantulan cahaya","Move_away_from_direct_light_—_no_glare":"Menjauh dari cahaya - tanpa pantulan","Document_example":"Contoh dokumen","The_photo_should_clearly_show_your_document":"Foto harus menunjukkan dokumen Anda dengan jelas","Scans_and_photocopies_are_not_accepted":"Scan dan fotokopi tidak diterima","Upload_passport_photo_page":"Unggah halaman foto paspor","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Untuk membuka rekening bank, kami perlu memverifikasi identitas Anda.","It_will_only_take_a_couple_of_minutes_":"Ini hanya akan memakan waktu beberapa menit.","Verify_Identity":"Verifikasi Identitas","Open_your_new_bank_account":"Buka rekening bank baru Anda","Please_enter_a_valid_Login_ID_":"Masukkan Login ID yang berlaku.","Amount":"Jumlah","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Permintaan Anda untuk mentransfer [_1] [_2] dari [_3] ke [_4] berhasil diproses.","Resale_not_offered":"Penjualan ulang tidak ditawarkan","You've_made_no_transactions_of_this_type_up_to_this_date_":"Anda tidak memiliki transaksi untuk jenis ini hingga detik ini.","Date":"Tanggal","Contract":"Kontrak","Purchase_Price":"Harga Beli","Sale_Date":"Tanggal Jual","Sale_Price":"Harga Jual","Profit/Loss":"Laba/Rugi","Details":"Rincian","Total_Profit/Loss":"Total Laba/Rugi","Action_required!":"Tindakan diperlukan!","Sorry,_an_error_occurred_while_processing_your_request_":"Maaf, error terjadi ketika memproses permohonan Anda.","position(s)":"posisi","withdrawal(s)":"penarikan","We_couldn’t_read_that!":"Kami tidak dapat membacanya!","Remaining_characters:_[_1]_":"Karakter yang tersisa: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Mohon masukkan tidak lebih dari [_1] karakter pada kedua kolom.","Only_[_1]_are_allowed_":"Hanya [_1] dibenarkan.","letters":"huruf","numbers":"nomor","space":"ruang","Please_select_at_least_one_scope":"Silakan pilih minimal satu scope","New_token_created_":"Token baru dibuat.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Jumlah maksimum token ([_1]) telah tercapai.","Name":"Nama","Scopes":"Cakupan","Last_Used":"Terakhir digunakan","Action":"Aksi","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Apakah Anda yakin ingin menghapus token secara permanen","Delete":"Hapus","Never_Used":"Tidak pernah dipakai","You_have_not_granted_access_to_any_applications_":"Anda belum diberikan akses ke dalam aplikasi apapun.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Apakah Anda yakin bahwa Anda ingin secara permanen mencabut akses aplikasi","Revoke_access":"Mencabut akses","Payments":"Pembayaran","Read":"Baca","Trade":"Trading","Trading_Information":"Informasi Trading","Never":"Tidak pernah","Permissions":"Izin","Last_Login":"Akses Terakhir","You_did_not_change_anything_":"Anda tidak melakukan perubahan.","Your_changes_have_been_updated_successfully_":"Perubahan Anda telah berhasil diperbarui.","Successful":"Berhasil","Date_and_Time":"Tanggal dan Waktu","IP_Address":"Alamat IP","Your_account_has_no_Login/Logout_activity_":"Akun Anda tidak memiliki aktivitas Login/Logout.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Akun Anda telah terbukti dan batasan penarikan Anda telah dihapuskan.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Batasan penarikan [_1] hari Anda saat ini adalah [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Anda telah menarik [_1][_2] secara total selama [_3] terakhir.","Your_withdrawal_limit_is_[_1][_2]_":"Batas penarikan Anda adalah [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Anda telah menarik dana sebesar [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Oleh karena itu, saldo yang dapat ditarik hanya hingga [_1][_2], tergantung pada saldo yang tersedia pada akun Anda.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Mohon konfirmasikan bahwa semua informasi di atas adalah benar dan lengkap.","Your_settings_have_been_updated_successfully_":"Bagian pengaturan Anda telah berhasil diperbarui.","Sorry,_an_error_occurred_while_processing_your_account_":"Maaf, error terjadi ketika memproses rekening Anda.","Please_select_a_country":"Silakan pilih negara","Timed_out_until":"Waktu habis hingga","Excluded_from_the_website_until":"Dikecualikan dari situs web hingga","Session_duration_limit_cannot_be_more_than_6_weeks_":"Batas durasi sesi tidak dapat lebih dari 6 minggu.","Time_out_must_be_after_today_":"Time out harus setelah hari ini.","Time_out_cannot_be_more_than_6_weeks_":"Time out tidak bisa lebih dari 6 minggu.","Time_out_cannot_be_in_the_past_":"Time out tidak bisa di masa lalu.","Please_select_a_valid_time_":"Silahkan pilih waktu yang berlaku.","Exclude_time_cannot_be_less_than_6_months_":"Waktu pengecualian tidak boleh kurang dari 6 bulan.","Exclude_time_cannot_be_for_more_than_5_years_":"Waktu pengecualian tidak dapat melebihi 5 tahun.","Confirm_changes":"Konfirmasikan perubahan","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Kami akan memperbarui batasan Anda. Klik [_1]Setuju dan terima[_2] untuk mengakui bahwa Anda bertanggung jawab sepenuhnya atas tindakan Anda, dan kami tidak bertanggung jawab atas kecanduan atau kerugian apa pun.","Agree_and_accept":"Setuju dan terima","Go_back":"Kembali","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Setelah mengklik \"OK\" Anda akan dikecualikan dari trading hingga tanggal yang dipilih.","Your_changes_have_been_updated_":"Perubahan Anda telah diperbarui.","Disable":"Nonaktifkan","Enable":"Aktifkan","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Anda telah berhasil mengaktifkan autentikasi dua faktor pada akun Anda.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Anda telah berhasil menonaktifkan autentikasi dua faktor pada akun Anda.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Anda tidak perlu mengautentikasi akun Anda saat ini .[_1]Kami akan memberitahu Anda jika akun Anda perlu melengkapi proses autentikasi.","No_authentication_required":"Tidak memerlukan otentikasi","Back_to_trading":"Kembali ke trading","You_are_categorised_as_a_professional_client_":"Anda dikategorikan sebagai klien profesional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Anda dikategorikan sebagai klien ritel. Ajukan permohonan sebagai trader profesional.","Closed_Bid":"Tutup Bid","Reference_ID":"ID referensi","Description":"Deskripsi","Credit/Debit":"Kredit/Debit","Balance":"Saldo","Top_up_error":"Isi ulang error","Understood":"Dimengerti","Top-up_successful":"Isi ulang sukses","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] telah dikreditkan kedalam Akun Demo Anda: [_2].","Go_to_statement":"Kunjungi pernyataan","Continue_trading":"Lanjutkan trading","Your_Demo_balance_has_been_reset_":"Saldo Demo Anda telah direset.","Account":"Akun","Available_Markets":"Pasar Yang Tersedia","Type":"Jenis","Currency":"Mata uang","Multipliers_Account":"Akun Multiplier","Gaming_Account":"Akun Gaming","Options_Account":"Akun Opsi","Real_Account":"Akun Riil","Counterparty":"Rekanan","Jurisdiction":"Yurisdiksi","Create_account":"Daftar akun","Change_currency":"Rubah mata uang","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Anda hanya dapat memiliki satu akun uang fiat. Mata uang akun uang fiat Anda hanya dapat dirubah jika Anda belum mendeposit atau mendaftar akun riil MT5 (atau akun riil Deriv X di deriv.com). Anda juga dapat mendaftar akun pada setiap mata uang kripto.","This_account_is_disabled":"Akun ini dinonaktifkan","This_account_is_excluded_until_[_1]":"Akun ini di kecualikan hingga [_1]","Set_currency":"Pilih mata uang","Commodities":"Komoditas","Stock_Indices":"Indeks Saham","Stocks":"Saham","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Jika Anda sudah pernah mendaftar sebelumnya, kami akan mengirimkan email untuk mereset kata sandi Anda sebentar lagi.","Sign_up":"Daftar","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Trading contract for difference (CFDs) pada Indeks Sintetis mungkin tidak akan cocok untuk semua orang. Pastikan bahwa Anda mengerti resiko yang terdapat, termasuk kemungkinan kehilangan seluruh dana di akun MT5.","Do_you_wish_to_continue?":"Apakah Anda ingin melanjutkan?","Acknowledge":"Mengetahui","Change_Password":"Perubahan Kata Sandi","The_investor_password_of_account_number_[_1]_has_been_changed_":"Kata sandi investor untuk nomor akun [_1] telah diubah.","Reset_Password":"Reset Kata Sandi","Verify_Reset_Password":"Verifikasi Reset Kata Sandi","Please_check_your_email_for_further_instructions_":"Silakan lihat email Anda untuk instruksi lebih lanjut.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"[_1] deposit dari [_2] ke akun nomer [_3] telah berhasil. ID Transaksi: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"[_1] penarikan dari akun [_2] ke [_3] telah berhasil. ID Transaksi: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Untuk menarik dana dari [_1] MetaTrader 5 silahkan [_2]Otentikasi[_3] akun Binary Anda.","Current_password":"Kata sandi saat ini","New_password":"Kata sandi baru","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Untuk mentransfer dana ke akun MT5 Anda, masukkan jumlah [_1] atau lebih","You_have_insufficient_funds_in_your_MT5_account_":"Dana tidak mencukupi pada akun MT5 Anda.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Maaf, fitur ini tidak tersedia di yurisdiksi Anda.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Berhubung sedang terjadi masalah pada server kami, maka beberapa akun MT5 Anda tidak tersedia untuk saat ini. [_1]Mohon maaf dan terima kasih atas kesabaran Anda.","Unavailable":"Tidak tersedia","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] telah dikreditkan kedalam Akun Demo MT5 Anda: [_2].","_(Region_added)":" (Wilayah ditambahkan)","_(Temporarily_unavailable)":" (Tidak tersedia untuk sementara)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Server MT5 kami untuk sementara tidak tersedia. Kami sedang melakukan perbaikan. Coba kembali beberapa saat lagi.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Gunakan kata sandi MT5 untuk masuk ke salah satu akun [_1] Anda saat menggunakan aplikasi MT5 menggunakan ponsel atau perangkat lainnya.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Ini akan mengubah kata sandi untuk semua akun [_1] Anda.","Demo_Accounts":"Akun Demo","Real-Money_Accounts":"Akun Uang Riil","Demo_Account":"Akun Demo","Real-Money_Account":"Akun Uang Riil","for_account_[_1]":"pada akun [_1]","[_1]_Account_[_2]":"[_1] Akun [_2]","MT5_Financial":"MT5 Finansial","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Masukkan kata sandi MT5 untuk menambahkan akun [_1] [_2]. ","real":"riil","MT5_Synthetic":"MT5 Sintetis","Get_[_1]":"Dapatkan [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Saldo akun demo Anda saat ini adalah [_1] atau kurang. Anda dapat mengisi ulang akun Anda dengan tambahan [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Anda dapat mengisi ulang akun demo Anda dengan tambahan [_1] jika saldo Anda [_2] atau kurang.","Yes,_I'm_sure":"Ya, saya yakin","Are_you_sure?":"Apa Anda yakin?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Anda tidak akan dapat merubah mata uang akun fiat Anda setelah mendaftar akun [_1] ini. Apa Anda yakin ingin melanjutkan?","Go_to_Deriv_to_add_an_MT5_account":"Kunjungi Deriv untuk menambahkan akun MT5","Back":"Kembali","Address":"Alamat","Account_currency":"Mata uang akun","Financial_assessment":"Penilaian keuangan","Personal_details":"Data pribadi","Terms_of_use":"Persyaratan pengguna","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) adalah versi Tether yang dipatok ke USD dan dibangun di blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) adalah versi Tether yang dipatok ke USD dan di-host di platform Ethereum.","Title_and_name":"Gelar dan nama","Real_money_account_opening":"Pendaftaran akun uang riil","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Token Anda telah berakhir atau tidak berlaku. Silahkan klik disini untuk memulai kembali proses verifikasi.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Alamat email yang Anda sediakan sudah pernah di daftarkan. Jika Anda lupa kata sandi, silahkan coba alat pemulihan kata sandi atau hubungi customer service kami.","Password_is_not_strong_enough_":"Kata sandi tidak cukup kuat.","Upgrade_now":"Upgrade sekarang","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] hari [_2] jam [_3] menit","Your_trading_statistics_since_[_1]_":"Statistik trading Anda sejak [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Trading [_1] dapat menyebabkan ketagihan, sebagaimana kegiatan lain yang dilakukan di luar batas. Untuk menghidari bahaya ketagihan tersebut, kami menyediakan pengecekan yang memberikan ringkasan trading Anda secara teratur.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Silahkan klik link dibawah untuk mengulang proses pembuatan kata sandi.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Anda memiliki kata sandi baru untuk mengakses Binary.com.","Success":"Sukses","Done":"Selesai","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Akun Binary Anda tidak terhubung dengan [_1]. Gunakan [_2]alamat email dan kata sandi untuk mengakses.","Success!":"Sukses!","Got_it":"Mengerti","Binary_Password_Reset":"Reset Kata Sandi Binary","Binary_password":"Kata sandi Binary","You_have_added_a_[_1]_account_":"Anda telah mendaftar akun [_1].","Add_account":"Daftar akun","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether sebagai token Omni (USDT) adalah versi Tether yang dihostingkan di lapisan Omni pada blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether sebagai token ERC20 (eUSDT) adalah versi Tether yang dihostingkan di Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether sebagai token TRC20 (tUSDT) adalah versi Tether yang dihostingkan di Tron.","Add_new_crypto_account":"Daftar akun kripto baru","Add_new_account":"Daftar akun baru","Create_a_cryptocurrency_account":"Daftar akun mata uang kripto","Choose_your_preferred_cryptocurrency":"Pilih mata uang kripto pilihan Anda","You_can_open_an_account_for_each_cryptocurrency_":"Anda dapat mendaftar akun pada setiap jenis mata uang kripto.","Choose_a_cryptocurrency_account":"Pilih akun mata uang kripto","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Pilih salah satu akun Anda atau tambahkan akun mata uang kripto baru","Choose_an_account":"Pilih akun","Choose_one_of_your_accounts_or_add_a_new_account":"Pilih salah satu akun Anda atau daftar akun baru","Choose_one_of_your_accounts":"Pilih salah satu akun Anda","Please_select_the_currency_for_this_account:":"Pilih mata uang untuk akun ini:","deposit_or_create_a_CFDs_account":"deposit atau mendaftar akun CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Apa Anda yakin ingin mendaftar akun [_1] Anda sekarang?","Note:":"Catatan:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Anda dapat mendaftar satu akun pada masing masing mata uang kripto.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Apa Anda yakin ingin mendaftar akun fiat dalam [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Anda hanya dapat memiliki satu akun dalam mata uang fiat. Anda dapat merubah mata uang akun fiat sebelum melakukan [_1].","Yes":"Ya","Create_[_1]_account":"Daftar akun [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Anda telah berhasil memilih mata uang pada akun Anda dalam [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Anda telah berhasil mengubah mata uang akun Anda dari [_1] ke [_2].","Please_choose_a_currency":"Silahkan pilih mata uang","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Anda memiliki kata sandi MT5 baru untuk mengakses akun [_1] Anda melalui web dan aplikasi seluler.","Accumulator":"Akumulator","Higher_or_equal":"Lebih tinggi atau sama","Lower_or_equal":"Lower atau equal","Only_Ups":"Only Up","Only_Downs":"Only Down","Equals":"Sama","Not":"Bukan","Buy":"Beli","Sell":"Jual","Waiting_for_contract_settlement_":"Menunggu penyelesaian kontrak.","including_Deal_Cancel__Fee":"termasuk Pembatalan Kontrak. Biaya","Contract_has_not_started_yet":"Kontrak belum dimulai lagi","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Kontrak ini hanya tersedia pada [_1]DTrader[_2]. ","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Kontrak ini hanya tersedia pada DTrader. [_1][_2]Kunjungi Dtrader[_3] untuk menutup atau membatalkan kontrak ini.","Contract_Result":"Hasil Kontrak","Close_Time":"Waktu Tutup","Exit_Spot_Time":"Waktu Exit Spot","View_chart":"Lihat chart","Audit_Page":"Halaman Audit","Contract_Starts":"Kontrak Mulai","Contract_Ends":"Kontrak Berakhir","Contract_Details":"Keterangan Kontrak","Target":"Sasaran","Contract_Information":"Informasi Kontrak","Contract_Type":"Jenis Kontrak","Transaction_ID":"ID Transaksi","Remaining_Time":"Waktu Yang Tersisa","Maximum_payout":"Hasil Maksimum","Barrier_Change":"Perubahan Batasan","Current":"Saat ini","Spot_Time":"Waktu Spot","Current_Time":"Waktu Terkini","Indicative":"Indikatif","Potential_Profit/Loss":"Potensi Laba/Rugi","Deal_Cancel__Fee":"Batalkan transaksi. Biaya","You_can_close_this_window_without_interrupting_your_trade_":"Anda dapat menutup window ini tanpa mengganggu trading Anda.","There_was_an_error":"Terdapat error","Sell_at_market":"Jual pada pasar","Note":"Catatan","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Kontrak akan dijual pada harga pasar terkini ketika permintaan diterima oleh server kami. Harga ini mungkin berbeda dari harga yang diindikasikan.","You_have_sold_this_contract_at_[_1]_[_2]":"Anda telah menjual kontrak pada [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Nomor referensi transaksi Anda adalah [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Terima kasih karena telah mendaftar! Silahkan cek email Anda untuk melengkapi proses pendaftaran.","All_markets_are_closed_now__Please_try_again_later_":"Semua pasar ditutup saat ini. Coba kembali nanti.","Withdrawal":"Penarikan","demo_credit_to_account":"saldo demo kedalam akun","login":"masuk","logout":"keluar","Asians":"Asian","High/Low_Ticks":"High/Low Tick","Lookbacks":"Lookback","Christmas_Day":"Hari Natal","Closes_early_(at_18:00)":"Ditutup awal (pada 18:00)","Closes_early_(at_21:00)":"Ditutup awal (pada 21:00)","Fridays":"Jum'at","New_Year's_Day":"Tahun Baru","today":"hari ini","today,_Fridays":"hari ini, Jumat","There_was_a_problem_accessing_the_server_":"Terjadi masalah pada saat mengakses server.","There_was_a_problem_accessing_the_server_during_purchase_":"Terjadi masalah mengakses server saat pembelian berlangsung."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/it.js b/src/javascript/_autogenerated/it.js index 2784d286452e5..76246aefcedf6 100644 --- a/src/javascript/_autogenerated/it.js +++ b/src/javascript/_autogenerated/it.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['IT'] = {"Real":"Reale","Multipliers":"Moltiplicatori","Gaming":"Gioco","Options":"Opzioni","Real_CFDs":"CFD reali","Real_Financial":"Finanziario reale","Demo_CFDs":"CFD di prova","Demo_Financial":"Finanziario di prova","Synthetic":"Sintetici","Demo_Synthetic":"Conto di prova per indici sintetici","Real_Synthetic":"Conto reale per indici sintetici","CFDs":"CFD","Financial":"Finanziario","Financial_STP":"Finanziario STP","Demo_Financial_STP":"Conto finanziario STP di prova","Real_Financial_STP":" Finanziario reale STP","Thank_you,_we'll_get_back_to_you_within_24_hours":"Grazie, ti invieremo una risposta entro 24 ore","Connecting_to_server":"Connessione al server in corso","Use_a_few_words,_avoid_common_phrases":"Usa poche parole evitando frasi comuni","No_need_for_symbols,_digits,_or_uppercase_letters":"Cifre, maiuscole o caratteri speciali non sono necessari","Add_another_word_or_two__Uncommon_words_are_better_":"Aggiungi una o due parole. Sono preferibili parole non comuni.","Straight_rows_of_keys_are_easy_to_guess":"Una sequenza di lettere vicine è facile da indovinare","Short_keyboard_patterns_are_easy_to_guess":"Brevi segmenti vicini sulla tastiera sono facili da indovinare","Use_a_longer_keyboard_pattern_with_more_turns":"Usa un tipo di tastiera più lunga con maggiori opzioni di rotazione","Repeats_like_\"aaa\"_are_easy_to_guess":"Ripetizioni com \"aaa\" sono facili da indovinare","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Ripetizioni come \"abcabcabc\" risultano solo leggermente più difficili da indovinare di \"abc\"","Avoid_repeated_words_and_characters":"Evita di ripetere parole e caratteri","Sequences_like_abc_or_6543_are_easy_to_guess":"Sequenze come \"abc\" o \"6543\" sono facili da indovinare","Avoid_sequences":"Evita le sequenze","Recent_years_are_easy_to_guess":"I numeri riferiti agli ultimi anni sono facili da indovinare","Avoid_recent_years":"Escludi ultimi anni","Avoid_years_that_are_associated_with_you":"Evita anni associabili a te","Dates_are_often_easy_to_guess":"Le date sono spesso facili da indovinare","Avoid_dates_and_years_that_are_associated_with_you":"Evita date e anni associabili a te","This_is_a_top-10_common_password":"Questa è una delle 10 password più usate","This_is_a_top-100_common_password":"Questa è una delle 100 password più usate","This_is_a_very_common_password":"Questa è una password usata di frequente","This_is_similar_to_a_commonly_used_password":"Assomiglia a una password usata spesso","A_word_by_itself_is_easy_to_guess":"Una parola da sola è facile da indovinare","Names_and_surnames_by_themselves_are_easy_to_guess":"Nomi e cognomi senza modifiche sono semplici da indovinare","Common_names_and_surnames_are_easy_to_guess":"Nomi e cognomi abituali sono semplici da indovinare","Capitalization_doesn't_help_very_much":"Le lettere maiuscole non sono di grande aiuto","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"L'utilizzo del maiuscolo per ogni lettera, così come del minuscolo, genera una combinazione facile da indovinare","Reversed_words_aren't_much_harder_to_guess":"Le parole scritte al contrario restano facili da indovinare","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Sostituzioni come \"@\" al posto di \"a\" sono prevedibili","This_password_is_on_the_blacklist":"Questa password è sulla lista nera","Unknown_OS":"Sistema operativo sconosciuto","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Verrai reindirizzato a un sito esterno che non appartiene a Binary.com.","Click_OK_to_proceed_":"Clicca OK per procedere.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Assicurati di aver installato l'app Telegram sul tuo dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] richiede che la funzione di archiviazione web del tuo browser venga attivato in modo da funzionare adeguatamente. Si prega di attivarlo o uscire dalla modalità di navigazione privata.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Ti preghiamo di effettuare il [_1]log in[_2] o [_3]registrarti[_4] per visualizzare questa pagina.","This_feature_is_available_to_demo_accounts_only_":"Questa funzione è disponibile solo per conti di prova.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Stai usando un conto di prova. Passa al conto reale oppure crea un conto reale per accedere alla cassa.","This_page_is_only_available_to_logged_out_clients_":"La pagina è disponibile solo per i clienti che non hanno effettuato log-in.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Le opzioni binarie non sono disponibili per il conto per moltiplicatori.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Non è possibile fare trading su opzioni binarie con il conto per moltiplicatori.
Torna al conto per opzioni.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Il trading su opzioni non è disponibile nel Regno Unito e sull'Isola di Man","Binary_options_trading_is_not_available_in_your_country_":"Le opzioni binarie non sono disponibili nel tuo Paese.","This_page_is_not_available_in_your_country_of_residence_":"La pagina non è disponibile nel tuo Paese di residenza.","Page_not_available,_you_did_not_deactivate_your_account_":"Pagina non disponibile: non hai disattivato il conto.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Questo servizio non è disponibile per il tuo Paese. Se vuoi fare trading con moltiplicatori, usa DTrader o Deriv.","Go_to_DTrader":"Vai a DTrader","Sign_out":"Esci","[_1]_Account":"Conto [_1]","Click_here_to_open_a_Real_Account":"Clicca qui per aprire un conto reale","Open_a_Real_Account":"Apri un conto reale","Click_here_to_open_a_Multipliers_Account":"Clicca qui per aprire un conto per moltiplicatori","Click_here_to_open_an_Options_account":"Clicca qui per aprire un conto per opzioni","Open_a_Multipliers_Account":"Apri un conto per moltiplicatori","Create_Account":"Crea un account","Accounts_List":"Elenco degli account","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"I depositi non sono momentaneamente disponibili a causa di lavori di manutenzione al sistema. Sarà possibile realizzare questa operazione non appena la manutenzione si sarà conclusa.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Al momento non è possibile prelevare fondi a causa della manutenzione del sistema. Potrei effettuare prelievi a manutenzione finita.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Il nostro cassiere di criptovalute è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, a manutenzione finita.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"La cassa è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, quando la manutenzione sarà completata.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"La cassa è momentaneamente bloccata. Contattaci tramite chat live per scoprire come sbloccarla.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Imposta la [_1]valuta del conto[_2] per abilitare depositi e prelievi.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Il conto non è stato autenticato. Invia un [_1]documento di prova dell'identità e un documento di prova dell'indirizzo[_2] per autenticare il conto e richiedere la possibilità di prelevare.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Il conto non è stato autenticato. Invia un [_1]documento di prova dell'identità e un documento di prova dell'indirizzo[_2] per autenticare il conto e accedere alla cassa.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"I documenti d'identità inviati non sono più validi. Invia documenti d'identità validi per sbloccare la cassa.","Your_[_1]proof_of_identity[_2]_has_expired_":"La sessione di [_1]verifica dell'identità[_2] è scaduta.","Your_[_1]proof_of_address[_2]_has_expired_":"La sessione di [_1]verifica dell'indirizzo[_2] è scaduta.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"La prova di [_1]verifica dell'identità[_3] e di [_2]verifica dell'indirizzo[_3] non sono state controllate.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Il [_1]documento di verifica dell'identità[_2] non è stato controllato.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Il [_1]documento di verifica dell'indirizzo[_2] non è stato controllato.","Please_submit_your_[_1]proof_of_identity[_2]_":"Invia un documento di [_1]verifica dell'identità[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Invia un documento di [_1]verifica dell'indirizzo[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Hai scelto di autoescluderti dal trading sul nostro sito fino al [_1]. Se non riesci a effettuare un trade o un deposito dopo il periodo di autoesclusione, contattaci tramite la chat live.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"L'accesso alla cassa è stato temporaneamente disabilitato perché non hai impostato il limite di 30 giorni per il turnover: per impostarlo, vai alla sezione [_1]Autoesclusione[_2].","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"La funzione di prelievo è stata disabilitata per il tuo conto MT5. Ti invitiamo a controllare il tuo indirizzo e-mail per ulteriori indicazioni.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Sfortunatamente puoi solamente effettuare depositi. Contattaci via mail per abilitare i prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"I [_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare depositi e prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"I [_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare i prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"I[_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare i depositi.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Non hai inserito il [_1]Paese di residenza[_2]. Per accedere alla cassa, aggiorna questo dato nella sezione Informazioni personali delle impostazioni del conto.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"La cassa è bloccata. Completa la [_1]valutazione finanziaria[_2] per sbloccarla.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Non hai verificato il numero di identificazione fiscale: questo dato è fondamentale per questioni legali e normative. Vai su [_1]informazioni personali[_2] nelle impostazioni del conto e inserisci il numero di identificazione fiscale aggiornato.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Puoi solamente prelevare fondi. Contattaci tramite la chat live.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"I prelievi dal tuo conto sono stati disattivati. Attendi fino alla verifica dei documenti caricati.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Ti invitiamo ad [_1]accettare i Termini e le condizioni aggiornati[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Per aumentare il limite dei depositi e del trading, [_1]accetta i Termini e le condizioni aggiornati[_2].","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Il conto è momentaneamente disabilitato. Contattaci tramite chat live per abilitare di nuovo depositi e prelievi.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Esegui il test d'idoneità per accedere alla cassa.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"La cassa è bloccata. Scopri [_1]come proteggiamo i tuoi fondi[_2] prima di continuare.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Il tuo conto deve essere verificato. Presenta la tua [_1]prova d'identità[_2] per accedere alla Cassa.","Account_Authenticated":"Autenticazione del conto","Connection_error:_Please_check_your_internet_connection_":"Errore di connessione: verifica la tua connessione internet.","Network_status":"Stato della rete","This_is_a_staging_server_-_For_testing_purposes_only":"Questo è un server tecnico - solo a scopo di test","The_server_endpoint_is:_[_2]":"Il server finale è: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Il tuo web browser ([_1]) non è aggiornato e potrebbe influire sulla tua esperienza di trading. Prosegui a tuo rischio. [_2]Aggiorna il browser[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Hai raggiunto il limite delle richieste per secondo. Riprova più tardi.","There_was_some_invalid_character_in_an_input_field_":"Un campo di immissione testo conteneva uno o più caratteri non validi.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regolamentata dalla UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regolamentata dalla Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regolamentata dalla Malta Financial Services Authority (MFSA),","Please_select":"Seleziona","Please_accept_the_terms_and_conditions_":"Accetta i termini e le condizioni.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Confermare di non essere una persona politicamente esposta.","Today":"Oggi","Select_date":"Selezionare una data","Barrier":"Barriera","Entry_Spot":"Punto d'ingresso","Exit_Spot":"Prezzo di uscita","Charting_for_this_underlying_is_delayed":"I grafici per questo strumento sono differiti","Payout_Range":"Intervallo di payout","Purchase_Time":"Orario d'acquisto","Reset_Barrier":"Reimpostare la barriera","Reset_Time":"Data di reset","Selected_Tick":"Tick selezionato","Exit_Time":"Orario di uscita","Start_Time":"Orario di inizio","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Passaggio [_1]: [_2] ([_1] di [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Il codice di verifica è errato. Utilizza il link inviato alla tua e-mail.","Indicates_required_field":"Indica un campo obbligatorio","Please_select_the_checkbox_":"Selezionare la casella corrispondente.","This_field_is_required_":"Questo campo è obbligatorio.","Should_be_a_valid_number_":"Deve essere un numero valido.","Up_to_[_1]_decimal_places_are_allowed_":"Sono ammessi fino a [_1] decimali.","Should_be_[_1]":"Dovrebbe essere [_1]","Should_be_between_[_1]_and_[_2]":"Deve essere compreso tra [_1] e [_2]","Should_be_more_than_[_1]":"Deve essere maggiore di [_1]","Should_be_less_than_[_1]":"Deve essere inferiore a [_1]","Insufficient_balance_":"Saldo non sufficiente.","Invalid_email_address_":"Indirizzo email non valido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"La password deve contenere lettere minuscole e maiuscole in inglese con numeri.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Sono consentiti solo lettere, numeri, spazi, trattini, punti e apostrofi.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Sono consentiti solo numeri, lettere, spazi e questi caratteri speciali: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Sono consentite solo lettere, spazi, trattini, punti e apostrofi.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Sono consentiti solo numeri, lettere, spazi e trattini.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Inserisci un numero di telefono valido (es. +39417541234).","The_two_passwords_that_you_entered_do_not_match_":"Le due password inserite non combaciano.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] e 2% non possono essere uguali.","Minimum_of_[_1]_characters_required_":"Sono richiesti minimo [_1] caratteri.","You_should_enter_[_1]_characters_":"È necessario inserire [_1] caratteri.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Deve iniziare con una lettera o un numero e può contenere la lineetta e il trattino basso.","Invalid_verification_code_":"Codice di verifica non valido.","Your_password_cannot_be_the_same_as_your_email_address_":"La password non può corrispondere al tuo indirizzo e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transazione eseguita da [_1] (ID dell'app: [_2])","Guide":"Guida","Next":"Successivo","Finish":"Termina","Select_your_market_and_underlying_asset":"Seleziona il tuo mercato e l'asset sottostante","Select_your_trade_type":"Seleziona la tua tipologia di trade","Adjust_trade_parameters":"Regola i parametri di trading","Predict_the_directionand_purchase":"Prevedi la direzione
e acquista","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Il limite di durata della tua sessione terminerà tra [_1] secondi.","January":"Gennaio","February":"Febbraio","March":"Marzo","April":"Aprile","May":"Mag","June":"Giugno","July":"Luglio","August":"Agosto","September":"Settembre","October":"Ottobre","November":"Novembre","December":"Dicembre","Jan":"Gen","Jun":"Giu","Jul":"Lug","Aug":"Ago","Sep":"Sett","Oct":"Ott","Dec":"Dic","Sunday":"Domenica","Monday":"Lunedì","Tuesday":"Martedì","Wednesday":"Mercoledì","Thursday":"Giovedì","Friday":"Venerdì","Saturday":"Sabato","Su":"Dom","Mo":"Lun","Tu":"Mar","We":"Noi","Th":"Gio","Fr":"Ven","Sa":"Sab","Previous":"Precedente","Hour":"Ora","Minute":"Minuto","Verification_required":"È richiesta l'autenticazione","Verify_identity":"Verifica identità","From_account:_":"Dal conto: ","To_account:_":"Al conto: ","Not_announced_for_this_currency_":"Non annunciato per questa valuta.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Reimposta il saldo del conto demo come [_1] in qualsiasi momento.","[_1]Manage_your_accounts[_2]":"[_1]Gestisci i tuoi conti[_2]","time":"volta","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"tempo o creare un vero conto MT5 (o un vero conto Deriv X su deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Non puoi più cambiare la valuta perché hai creato un vero conto MT5 (o un vero conto Deriv X su deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Non è più possibile modificare la valuta perché hai già effettuato il primo deposito.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La valuta del tuo conto fiat è attualmente impostata su [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La valuta del tuo conto fiat è impostata su [_1].","This_is_your_[_1]_account_":"Questo è il tuo conto in [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Puoi [_1]impostare una valuta nuova[_2] prima di prelevare per la prima [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Non vuoi effettuare trading in [_1]? Puoi aprire un altro conto di criptovalute.","Switch_account":"Cambia conto","Switch_account?":"Cambiare conto?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Per depositare denaro, passa al conto [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Per prelevare fondi, passa al conto [_1].","Switch_to_crypto_account?":"Passare al conto per criptovalute?","To_deposit_cryptocurrency,_switch_your_account_":"Per depositare criptovalute, cambia conto.","To_withdraw_cryptocurrency,_switch_your_account_":"Per prelevare criptovalute, cambia conto.","Cancel":"Annulla","Withdraw":"Preleva","Deposit":"Deposita","Town/City":"Città","First_line_of_home_address":"Prima linea dell'indirizzo di residenza","Postal_Code/ZIP":"Codice postale/CAP","State/Province":"Stato/Provincia","Email_address":"Indirizzo email","Telephone":"Telefono","Country_of_Residence":"Paese di residenza","details":"dettagli","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Il nostro cassiere è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, quando la manutenzione sarà completata.","Your_cashier_is_locked_":"La tua cassa é bloccata.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"La valuta selezionata è disponibile sono per alcuni tipi di conto.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Hai raggiunto il limite per il prelievo. Carica il documento di verifica di identità e indirizzo per aumentare tale limite e procedere con il prelievo.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"I servizi relativi agli agenti di pagamento non sono disponibili nel tuo paese o nella valuta selezionata.","Select_payment_agent":"Seleziona un agente di pagamento","Amount_in":"Importo in","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Sono consentite solo lettere, numeri, spazi, trattini, punti, virgole e apostrofi.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"La richiesta di prelevare [_1] [_2] dal tuo conto [_3] al conto [_4] dell'Agente di pagamento è stata elaborata con successo.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Il tuo token è scaduto o invalido. Fai clic [_1]qui[_2] per riavviare la procedura di verifica.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Siamo spiacenti, al momento non è possibile effettuare prelievi con questa valuta.","Please_[_1]deposit[_2]_to_your_account_":"Si prega di [_1]depositare[_2] sul conto.","Sorry,_account_signup_is_not_available_in_your_country_":"Siamo spiacenti, la registrazione di un account non è disponibile nel tuo paese.","Opens":"Apre","Closes":"Chiude","Settles":"Liquida","Upcoming_Events":"Prossimi eventi","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Aggiungi +/– per definire una compensazione della barriera. Per esempio, +0,005 indica che una barriera è superiore di 0,005 rispetto al punto di entrata.","Digit":"Cifra","Percentage":"Percentuale","Waiting_for_entry_tick_":"In attesa del tick d'ingresso.","High_Barrier":"Barriera superiore","Low_Barrier":"Barriera inferiore","Waiting_for_exit_tick_":"In attesa del tick d'uscita.","Ticks_history_returned_an_empty_array_":"La cronologia dei tick ha riportato una serie vuota.","Chart_is_not_available_for_this_underlying_":"Il grafico non è disponibile per questo sottostante.","Purchase":"Acquisto","Net_profit":"Profitto netto","Return":"Rendimento","Time_is_in_the_wrong_format_":"L'orario è in un formato errato.","Rise/Fall":"Rialzo/Ribasso","Higher/Lower":"Superiore/Inferiore","Matches/Differs":"Combacia/Differisce","Even/Odd":"Pari/Dispari","Over/Under":"Sopra/Sotto","Reset_Call":"Reimposta l'opzione Call","Reset_Put":"Reimposta l'opzione Put","Up/Down":"Alto/Basso","Only_Ups/Only_Downs":"Solo ascendenti/Solo discendenti","In/Out":"Dentro/Fuori","Select_Trade_Type":"Seleziona il tipo di trade","Spot_Time_(GMT)":"Orario di spot (GMT)","seconds":"secondi","minutes":"minuti","hours":"ore","days":"giorni","ticks":"tick","second":"secondo","minute":"minuto","hour":"ora","day":"giorno","Duration":"Durata","End_Time":"Orario di fine","Purchase_request_sent":"Richiesta di acquisto inviata","Close":"Chiudi","Select_Asset":"Seleziona asset","Search___":"Cerca...","Maximum_multiplier_of_1000_":"Massimo moltiplicatore di 1000.","Stake":"Puntata","Multiplier":"Moltiplicatore","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Siamo spiacenti, il tuo account non è autorizzato per qualsiasi altro acquisto di contratti.","Trading_is_unavailable_at_this_time_":"Al momento non è possibile effettuare trading.","Please_reload_the_page":"Ricaricare la pagina","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"La tua richiesta di essere categorizzato come cliente professionale è in fase di elaborazione.","Your_professional_client_request_is_[_1]not_approved[_2]_":"La richiesta di passaggio a cliente professionista [_1]non è stata approvata[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Invia nuovamente la richiesta una volta in possesso dei requisiti necessari.","More_information_can_be_found_in_an_email_sent_to_you_":"Troverai ulteriori informazioni nell'e-mail che ti è stata inviata.","I_want_to_reapply":"Desidero ricandidarmi","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Nell'UE, le opzioni binarie finanziarie sono disponibili esclusivamente per gli investitori professionisti.","Apply_now_as_a_professional_investor":"Candidati ora per la posizione di investitore professionista","Try_our_[_1]Synthetic_Indices[_2]_":"Prova i nostri [_1]indici sintetici[_2].","Try_our_other_markets_":"Prova i nostri altri mercati.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Ti invitiamo a completare [_1]il modulo relativo al conto reale[_2] per verificare la tua età come richiesto dalla [_3]UK Gambling[_4] Commission (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"L'accesso al conto è temporaneamente limitato: controlla la posta in arrivo per ulteriori informazioni.","Contract_Confirmation":"Conferma del contratto","Your_transaction_reference_is":"Il riferimento per le transazioni è","Total_Cost":"Costo totale","Potential_Payout":"Payout potenziale","Potential_Profit":"Profitto potenziale","View":"Visualizza","This_contract_won":"Questo contratto ha vinto","This_contract_lost":"Questo contratto ha perso","The_reset_time_is_[_1]":"La data di reset è [_1]","Now":"Adesso","Average":"Media","Buy_price":"Prezzo d'acquisto","Final_price":"Prezzo finale","Loss":"Perdita","Profit":"Profitto","Account_balance:":"Saldo dell'account:","Reverse_Side":"Retro","Front_Side":"Fronte","Pending":"In sospeso","Submitting":"Invio in corso","Submitted":"Inviato","Failed":"Non riuscito","Compressing_Image":"Compressione immagine","Checking":"Verifica in corso","Checked":"Verifica effettuata","Unable_to_read_file_[_1]":"Impossibile leggere il file [_1]","Passport":"Passaporto","Identity_card":"Carta d'identità","Driving_licence":"Patente di guida","Invalid_document_format_":"Formato del documento non valido.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"La dimensione del file ([_1]) supera il limite consentito. Dimensione massima consentita: [_2]","ID_number_is_required_for_[_1]_":"È necessario un numero identificativo per [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Per il numero ID ([_1]) sono consentiti solo lettere, numeri, spazio, trattino e trattino basso.","Expiry_date_is_required_for_[_1]_":"La data di scadenza è necessaria per [_1].","Place_of_birth":"Luogo di nascita","Please_select_the_country_of_document_issuance":"Seleziona il Paese in cui è stato emesso il documento","Choose_the_document_type":"Scegli il tipo di documento","Please_enter_the_correct_format__Example:":"Inserisci il formato corretto. Esempio:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Apri la posta elettronica Google e clicca sul link ricevuto per continuare.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Apri la posta elettronica Facebook e clicca sul link ricevuto per continuare.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Controlla l'indirizzo di posta associato al tuo ID Apple e fai click sul link ricevuto via e-mail per continuare.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Per modificare la password di MT5, fai clic sul link presente nell'e-mail.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Per modificare la password Binary, fai clic sul link presente nell'e-mail.","We’ve_sent_you_an_email":"Ti abbiamo inviato una e-mail","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Stai usando il conto [_1] per accedere al conto Deriv. Per accedere usando nome utente e password, fai clic sul pulsante [_2]Scollega[_3].","Linked_with_[_1]":"Collegamento con [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Per completare la procedura, dovrai impostare una password.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Vuoi davvero scollegarti da [_1]?","Unlink":"Scollegare","Country_not_found":"Paese non trovato","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Al momento non si accettano documenti da questo Paese — prova con un altro tipo di documento","Submit_document":"Invia documento","Select_country":"Seleziona Paese","e_g__United_States":"per es. Stati Uniti","Search_for_country":"Ricerca per Paese","Select_issuing_country":"Seleziona Paese di emissione","Submit_verification":"Invia verifica","Tips":"Suggerimenti","Documents_uploaded":"Documenti caricati","Document_uploaded":"Documento caricato","Selfie_uploaded":"Selfie caricato","We're_now_ready_to_verify_your_identity":"Siamo pronti a verificare la tua identità","Great,_that's_everything_we_need":"Ottimo, abbiamo tutto ciò che ci serve","The_link_only_works_on_mobile_devices":"Il link funziona solo su dispositivi mobili","Something's_gone_wrong":"Qualcosa non ha funzionato","You'll_need_to_restart_your_verification_on_your_computer":"Dovrai riavviare la verifica sul tuo computer","Get_secure_link":"Ottieni un link sicuro","Steps_required_to_continue_verification_on_your_mobile":"Passaggi necessari per continuare la verifica su smartphone","Check_back_here_to_finish_the_submission":"Verifica qui per finalizzare l'invio","Open_the_link_and_complete_the_tasks":"Apri il link e completa le attività","Send_a_secure_link_to_your_phone":"Invia un codice di sicurezza al tuo telefono","Here's_how_to_do_it:":"Ecco come fare:","Continue_on_your_phone":"Continua su telefono","Your_computer_may_take_a_few_seconds_to_update":"L'aggiornamento del computer potrebbe richiedere alcuni secondi","You_can_now_return_to_your_computer_to_continue":"Puoi ritornare al computer per continuare","Uploads_successful":"Caricamenti completati","Make_sure_everything_is_clear":"Assicurati che tutto sia chiaro","Blurry_photo_detected":"Fotografia sfocata","Make_sure_full_document_is_visible":"Assicurati che ogni parte del documento sia visibile","Cut-off_image_detected":"Immagine tagliata","Move_away_from_direct_light":"Allontanati dalla luce diretta","Glare_detected":"Sono presenti riflessi","Make_sure_all_of_the_document_is_in_the_photo":"Assicurati che l'immagine comprenda il documento per intero","No_document_detected":"Nessun documento trovato","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli della carta siano leggibili, senza sfocature o riflessi","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Servirà più tempo a verificare la tua identità se i documenti non sono leggibili","To_smoothly_verify_you,_we_need_a_better_photo":"Per verificare facilmente la tua identità occorre una foto più nitida","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli della patente siano leggibili, senza sfocature o riflessi","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli del passaporto siano leggibili, senza sfocature o riflessi","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli del permesso siano leggibili, senza sfocature o riflessi","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli siano leggibili, senza sfocature o riflessi","Redo":"Ripeti","Confirm":"Conferma","Upload_anyway":"Carica comunque","Enlarge_image":"Ingrandisci l'immagine","Photo_of_your_document":"Fotografia del documento","Check_your_image":"Controlla la tua fotografia","Front_and_back":"Fronte e retro","Driver's_license":"Patente di guida","Face_photo_page":"Pagina per fotografia del volto","Residence_permit":"Permesso di soggiorno","Sorry,_no_mobile_phone_bills":"Non si accettano bollette del cellulare","Documents_you_can_use_to_verify_your_identity":"Documenti validi per la verifica dell'identità","It_must_be_an_official_photo_ID":"Deve essere un documento di identificazione ufficiale con foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Trovi facilmente l'indirizzo del tuo domicilio in questi documenti","Choose_document":"Scegli un documento","Select_a_%{country}_document":"Seleziona un documento %{country}","or_upload_photo_–_no_scans_or_photocopies":"oppure carica una foto – no scansioni o fotocopie","Continue_on_phone":"Continua su telefono","Take_a_photo_with_your_phone":"Scatta una foto con il tuo smartphone","Submit_identity_card_(back)":"Invia la carta di identità (retro)","Submit_identity_card_(front)":"Invia la carta di identità (fronte)","Submit_license_(back)":"Invia patente (retro)","Submit_license_(front)":"Invia patente (fronte)","Submit_passport_photo_page":"Invia la pagina con foto del passaporto","Submit_residence_permit_(back)":"Invia il permesso di soggiorno (retro)","Submit_residence_permit_(front)":"Invia il permesso di soggiorno (fronte)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Riavvia il procedimento sull'ultima versione di Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Riavvia il procedimento sull'ultima versione di Safari","Unsupported_browser":"Browser non supportato","Close_identity_verification_screen":"Chiudi schermata di verifica dell'identità","Dismiss_alert":"Ignora avviso","back":"indietro","close":"chiudi","Restart_process_on_a_different_device":"Riavvia il procedimento su un dispositivo diverso","Camera_not_detected":"Nessuna fotocamera trovata","Must_be_under_10MB_":"Non può superare i 10MB.","File_size_exceeded_":"Volume del file superato.","Try_using_another_file_type_":"Usa un altro tipo di file.","File_not_uploaded_":"File non caricato.","An_error_occurred_while_loading_the_component":"Si è verificato un errore durante il caricamento del componente","Only_your_face_can_be_in_the_selfie":"Inquadra solo il tuo viso","Multiple_faces_found":"Individuati più volti","Your_face_is_needed_in_the_selfie":"Il tuo viso deve apparire nella foto","No_face_found":"Nessun volto rilevato","Please_try_again":"Prova di nuovo","Connection_lost":"Connessione persa","Copy_the_link_to_your_phone":"Copia il link sul tuo telefono","Too_many_failed_attempts":"Troppi tentativi falliti","Try_using_a_JPG_or_PNG_file":"Usa un fie JPG o PNG","File_type_not_supported":"Tipo di file non supportato","Loading___":"Caricamento in corso...","Loading":"Caricamento","Check_that_your_number_is_correct":"Verifica che il numero sia corretto","Copied":"Copia eseguita","Copy":"Copia","Send_link":"Invia link","How_to_scan_a_QR_code":"Come fare lo scan di un codice QR","Point_your_phone’s_camera_at_the_QR_code":"Inquadra il codice QR con la fotocamera del telefono","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Se non funziona, scarica un lettore del codice QR da Goole Play o dall'App Store","or":"o","Scan_QR_code":"Scansiona il codice QR","Get_link_via_SMS":"Ricevi il link tramite SMS","Copy_link":"Copia link","Sending":"Invio in corso","Enter_mobile_number":"Inserisci il numero di cellulare","Enter_your_mobile_number:":"Inserisci il numero di cellulare:","Scan_the_QR_code_with_your_phone":"Scansiona il codice QR con il telefono","Send_this_one-time_link_to_your_phone":"Invia questo link monouso al tuo smartphone","Open_the_link_on_your_mobile":"Apri il link sul tuo smartphone","Get_your_secure_link":"Ottieni il link sicuro","Copy_the_link_to_your_mobile_browser":"Copia il link sul browser del tuo dispositivo mobile","Continue":"Continua","Make_sure§":"Assicurati di§","2__Your_desktop_window_stays_open":"2. La finestra del desktop resti aperta","1__This_link_was_sent_by_you":"1. Il link sia stato inviato da te","Continue_with_the_verification":"Continua con la verifica","Linked_to_your_computer":"Collegato al tuo computer","Take_a_photo_of_the_back_of_your_card":"Scatta una foto del retro della carta","Take_a_photo_of_the_front_of_your_card":"Scatta una foto del lato frontale della carta","Take_a_photo_of_the_back_of_your_license":"Scatta una foto del retro della patente","Take_a_photo_of_the_front_of_your_license":"Scatta una foto del lato frontale della patente","Take_a_photo_of_your_passport_photo_page":"Fotografa la pagina del passaporto con la tua foto","Take_a_selfie_showing_your_face":"Scatta un selfie mostrando il tuo viso","Take_a_photo_using_the_basic_camera_mode_instead":"Scatta una foto usando la modalità fotocamera base","Take_a_photo":"Scatta una foto","Passport_photo_page":"Pagina con foto passaporto","Thank_you":"Grazie","Verification_complete":"Verifica completata","Refresh":"Aggiorna","Recovery":"Recupero","Follow_these_steps_to_recover_camera_access:":"Segui questi passaggi per ripristinare l'accesso alla fotocamera:","Refresh_this_page_to_restart_the_identity_verification_process":"Ricarica la pagina per riavviare il procedimento di verifica dell'identità","Grant_access_to_your_camera_from_your_browser_settings":"Consenti l'accesso alla fotocamera dalle impostazioni del browser","Recover_camera_access_to_continue_face_verification":"Riprendi l'accesso alla fotocamera per continuare la verifica del viso","Camera_access_is_denied":"Accesso alla fotocamera negato","We_cannot_verify_you_without_using_your_camera":"Non possiamo verificare la tua identità senza fotocamera","Enable_camera":"Attiva fotocamera","When_prompted,_you_must_enable_camera_access_to_continue":"Quando richiesto, dovrai attivare la fotocamera per continuare","Allow_camera_access":"Consenti accesso alla fotocamera","Provide_the_whole_document_page_for_best_results":"Per una verifica migliore, includi l'intera pagina del documento","Upload_back_of_card_from_your_computer":"Carica il retro della carta dal tuo computer","Upload_front_of_card_from_your_computer":"Carica il lato frontale della carta dal tuo computer","Upload_back_of_license_from_your_computer":"Carica il retro della patente dal tuo computer","Upload_front_of_license_from_your_computer":"Carica il lato frontale della patente dal tuo computer","Upload_passport_photo_page_from_your_computer":"Carica la pagina del passaporto con la foto dal tuo computer","Upload_a_selfie_from_your_computer":"Carica un selfie dal computer","Take_photo":"Scatta una foto","Upload":"Carica","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Verifica che sia collegata e in funzione. Puoi continuare la verifica sul tuo smartphone","Make_sure_your_device_has_a_working_camera":"Assicurati che il tuo dispositivo sia dotato di una fotocamera funzionante","Camera_not_working?":"La fotocamera non funziona?","It_may_be_disconnected__Try_using_your_phone_instead_":"Potrebbe essere sconnessa. Prova a usare il tuo smartphone.","Make_sure_your_device's_camera_works":"Assicurati che la fotocamera funzioni correttamente","Camera_not_working":"La fotocamera non funziona","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Premi Stop quando hai finito. Ripeti le azioni del video","Looks_like_you_took_too_long":"L'operazione ha richiesto troppo tempo","View_from_camera":"Visualizza da fotocamera","Take_a_selfie":"Scatta un selfie","Photo_of_your_face":"Foto del tuo viso","Make_sure_your_selfie_clearly_shows_your_face":"Assicurati che la foto permetta di vedere chiaramente il tuo viso","Check_selfie":"Verifica foto","Tips_to_take_a_good_selfie":"Consigli per scattare un selfie adeguato","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Volto verso la fotocamera e occhi ben visibili","Remove_your_glasses,_if_necessary":"Togli gli occhiali, se necessario","We'll_compare_it_with_your_document":"Verrà confrontata con il documento","Your_link_will_expire_in_one_hour":"Il link scadrà tra un'ora","Keep_this_window_open_while_using_your_mobile":"Mantieni aperta la finestra mentre usi lo smartphone","Resend_link":"Invia di nuovo il link","We've_sent_a_secure_link_to_%{number}":"Abbiamo inviato un link di sicurezza a %{number}","It_may_take_a_few_minutes_to_arrive":"Potrebbe richiedere alcuni minuti","Check_your_mobile":"Controlla il tuo dispositivo mobile","Your_mobile_link_will_expire_in_one_hour":"Il link per per dispositivi mobili scadrà tra un'ora","Don't_refresh_this_page":"Non ricaricare la pagina","Once_you've_finished_we'll_take_you_to_the_next_step":"Quando avrai finito, potrai passare al passaggio successivo","Connected_to_your_mobile":"Connesso al tuo smartphone","Upload_photo":"Carica foto","Example_of_a_blurry_document":"Esempio di un documento sfocato","All_details_must_be_clear_—_nothing_blurry":"I dettagli devono essere chiari e non sfocati","Example_of_a_cut-off_document":"Esempio di un documento tagliato","Show_all_details_—_including_the_bottom_2_lines":"Mostra tutti i dettagli incluse le ultime 2 righe","Example_of_a_document_with_glare":"Esempio di un documento con riflessi","Move_away_from_direct_light_—_no_glare":"Allontanati dalla luce diretta per evitare riflessi","Document_example":"Esempio di documento","The_photo_should_clearly_show_your_document":"La foto deve mostrare in modo chiaro il documento","Scans_and_photocopies_are_not_accepted":"Non si accettano scansioni o fotocopie","Upload_passport_photo_page":"Carica la pagina del passaporto con foto","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Per aprire un conto corrente, dovrai verificare la tua identità.","It_will_only_take_a_couple_of_minutes_":"Ci vorranno solo un paio di minuti.","Verify_Identity":"Verifica identità","Open_your_new_bank_account":"Apri un nuovo conto corrente","Please_enter_a_valid_Login_ID_":"Inserire credenziali di accesso valide.","Amount":"Importo","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"La tua richiesta di trasferire [_1] [_2] da [_3] a [_4] è andata a buon fine.","Resale_not_offered":"La rivendita non è offerta","You've_made_no_transactions_of_this_type_up_to_this_date_":"Non hai mai effettuato operazioni di questo tipo.","Date":"Data","Ref_":"Rif.","Contract":"Contratto","Purchase_Price":"Prezzo d'acquisto","Sale_Date":"Data di vendita","Sale_Price":"Prezzo di vendita","Profit/Loss":"Profitto/Perdita","Details":"Dettagli","Total_Profit/Loss":"Profitto/Perdita totale","Action_required!":"Azione necessaria!","Sorry,_an_error_occurred_while_processing_your_request_":"Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.","position(s)":"posizioni","withdrawal(s)":"prelievi","We_couldn’t_read_that!":"Non siamo riusciti a leggerlo!","Remaining_characters:_[_1]_":"Caratteri rimanenti: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Non inserire più di [_1] caratteri per entrambi i campi.","Only_[_1]_are_allowed_":"Sono consentiti solo [_1].","letters":"lettere","numbers":"numeri","space":"spazio","Please_select_at_least_one_scope":"Seleziona almeno uno scopo","New_token_created_":"Nuovo token creato.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Il numero massimo di token ([_1]) è stato raggiunto.","Name":"Nome","Scopes":"Ambiti","Last_Used":"Ultimo utilizzato","Action":"Azione","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Sei sicuro di voler eliminare definitivamente il token","Delete":"Elimina","Never_Used":"Mai utilizzato","You_have_not_granted_access_to_any_applications_":"Non è possibile accedere ad alcuna applicazione.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Sei sicuro di voler revocare definitivamente l'accesso all'applicazione","Revoke_access":"Revocare l'accesso","Admin":"Amministratore","Payments":"Pagamenti","Read":"Leggi","Trading_Information":"Informazioni sul trading","Never":"Mai","Permissions":"Autorizzazioni","Last_Login":"Ultimo accesso","You_did_not_change_anything_":"Non è stata apportata alcuna modifica.","Your_changes_have_been_updated_successfully_":"Le modifiche sono state aggiornate con successo.","Successful":"Riuscito","Date_and_Time":"Data e orario","IP_Address":"Indirizzo IP","Status":"Stato","Your_account_has_no_Login/Logout_activity_":"Sul conto non è presente alcuna attività di Login/Logout.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Il conto è stato completamente autenticato e sono stati rimossi i limiti di prelievo.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Al momento il limite giornaliero sui prelievi [_1] corrisponde a [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Hai già prelevato un totale di [_1] [_2] negli ultimi [_3] giorni.","Your_withdrawal_limit_is_[_1][_2]_":"Il limite sui prelievi corrisponde a [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Hai già prelevato [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Pertanto, il saldo prelevabile corrisponde a un massimo di [_1][_2], in base ai fondi disponibili sul conto.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Ti chiediamo di confermare che tutte le informazioni sopra riportate sono veritiere e complete.","Your_settings_have_been_updated_successfully_":"Le impostazioni sono state aggiornate.","Sorry,_an_error_occurred_while_processing_your_account_":"Siamo spiacenti, si è verificato un errore durante l'elaborazione del tuo account.","Please_select_a_country":"Seleziona un paese","Timed_out_until":"Sessione sospesa fino a","Excluded_from_the_website_until":"Esclusione dal sito fino a","Session_duration_limit_cannot_be_more_than_6_weeks_":"Il limite di durata della sessione non può essere superiore a 6 settimane.","Time_out_must_be_after_today_":"La scadenza non può essere nella giornata di oggi.","Time_out_cannot_be_more_than_6_weeks_":"La scadenza non può essere superiore alle 6 settimane.","Time_out_cannot_be_in_the_past_":"La scadenza non può essere nel passato.","Please_select_a_valid_time_":"Seleziona un orario valido.","Exclude_time_cannot_be_less_than_6_months_":"Il periodo di esclusione non può essere inferiore a 6 mesi.","Exclude_time_cannot_be_for_more_than_5_years_":"Il periodo di esclusione non può essere superiore a 5 anni.","Confirm_changes":"Conferma modifiche","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"I limiti verranno aggiornati. Clicca su [_1]Accetta[_2] per confermare di essere pienamente responsabile delle tue azioni, e che la Società non è in alcun modo responsabile di eventuali perdite o dipendenze sviluppate.","Agree_and_accept":"Conferma e accetta","Go_back":"Torna indietro","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Quando clicchi su \"OK\" verrai escluso dal trading sul sito fino alla data selezionata.","Your_changes_have_been_updated_":"Le modifiche sono state aggiornate.","Disable":"Disabilita","Enable":"Abilita","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"L'autenticazione a due fattori per i tuo conto è stata abilitata con successo.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"L'autenticazione a due fattori per il tuo conto è stata disabilitata con successo.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Non è ancora il momento di autenticare il conto. [_1]Ti avviseremo quando sarà necessario.","No_authentication_required":"Non è richiesta autenticazione","Back_to_trading":"Torna ai trade","You_are_categorised_as_a_professional_client_":"Sei categorizzato come cliente professionista.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Sei categorizzato come cliente al dettaglio. Richiedi di essere categorizzato come trader professionista.","Bid":"Offerta","Closed_Bid":"Offerta chiusa","Reference_ID":"ID di riferimento","Description":"Descrizione","Credit/Debit":"Credito/Debito","Balance":"Saldo","Top_up_error":"Errore di caricamento","Understood":"Ho capito","Top-up_successful":"Caricamento avvenuto con successo","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"L'importo di [_1] è stato accreditato sul tuo conto demo: [_2].","Go_to_statement":"Vai all'estratto conto","Continue_trading":"Continua il trading","Your_Demo_balance_has_been_reset_":"Il tuo saldo demo è stato ripristinato","Available_Markets":"Mercati disponibili","Type":"Tipologia","Currency":"Valuta","Multipliers_Account":"Conto per moltiplicatori","Gaming_Account":"Account di gioco","Options_Account":"Opzioni del conto","Real_Account":"Conto Reale","Counterparty":"Controparte","Jurisdiction":"Giurisdizione","Create_account":"Crea un conto","Change_currency":"Cambia valuta","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: sei limitato a un solo conto in valuta fiat. La valuta del tuo conto fiat può essere cambiata prima di depositare sul tuo conto fiat per la prima volta o di creare un vero conto MT5 (o un vero conto Deriv X su deriv.com). Puoi anche aprire un conto per ogni criptovaluta supportata.","This_account_is_disabled":"Questo conto è disattivato","This_account_is_excluded_until_[_1]":"Questo conto è escluso fino a [_1]","Set_currency":"Imposta la valuta","Commodities":"Materie prime","Stock_Indices":"Indici azionari","Stocks":"Azioni","Synthetic_Indices":"Indici sintetici","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Se hai un conto con noi, tra pochi minuti ti invieremo un link al tuo indirizzo di posta per reimpostare la password.","Sign_up":"Iscriviti","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Il trading di contratti per differenza (CFD) sugli indici sintetici può non essere adatto a tutti. Assicurati di aver compreso appieno i rischi connessi, inclusa la possibilità di perdere tutti i fondi sul tuo conto reale MT5. Il gioco d'azzardo può creare dipendenza, per questo ti invitiamo a giocare responsabilmente.","Do_you_wish_to_continue?":"Desideri continuare?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}You are about to purchase a product that is not simple and may be difficult to understand: Contracts for Difference and Forex. As a general rule, the CNMV considers that such products are not appropriate for retail clients, due to their complexity.","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"{SPAIN ONLY}However, Deriv Investments (Europe) Ltd has assessed your knowledge and experience and deems the product appropriate for you.","Acknowledge":"Accetto","Change_Password":"Modifica Password","The_investor_password_of_account_number_[_1]_has_been_changed_":"La password per investitori del conto numero [_1] è stata modificata.","Reset_Password":"Ripristina password","Verify_Reset_Password":"Verifica la nuova password","Please_check_your_email_for_further_instructions_":"Ti invitiamo a controllare il tuo indirizzo e-mail per ulteriori indicazioni.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Il deposito di [_1] da [_2] sul numero di account [_3] è stato effettuato. ID della transazione: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Il prelievo di [_1] dall'account numero [_2] su [_3] è stato eseguito. ID della transazione: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Per prelevare dal tuo Account MetaTrader 5 Finanziario ti chiediamo di [_1]Autenticare[_2] il tuo account Binary.","Current_password":"Password attuale","New_password":"Nuova password","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Per trasferire fondi sul conto MT5, inserisci un importo pari o superiore a [_1]","You_have_insufficient_funds_in_your_MT5_account_":"Non hai fondi sufficienti sul conto MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Siamo spiacenti, questa funzione non è disponibile nella tua giurisdizione.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"A causa di un problema sul nostro server, alcuni conti MT5 non sono disponibili al momento. [_1]Grazie per la comprensione e la pazienza.","Unavailable":"Non disponibile","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"L'importo di [_1] è stato accreditato sul tuo conto demo MT5: [_2].","_(Region_added)":" (zona aggiunta)","_(Temporarily_unavailable)":" (Temporaneamente non disponibile)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"I server MT5 non sono momentaneamente disponibili. Stiamo lavorando per risolvere il problema, ti preghiamo di riprovare tra pochi minuti.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Usa la password MT5 per accedere a qualsiasi conto [_1] mentre usi le app MT5 su smartphone o altri dispositivi.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Così cambierai la password per tutti i conti [_1].","Demo_Accounts":"Account demo","Real-Money_Accounts":"Conto monetario reale","Demo_Account":"Conto demo","Real-Money_Account":"Conto monetario reale","for_account_[_1]":"per il conto [_1]","MT5_Financial":"MT5 Finanziario","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Inserisci la password MT5 per aggiungere un conto [_1] [_2].","real":"reale","MT5_Synthetic":"Conto per indici sintetici MT5","Get_[_1]":"Ottieni [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Al momento, il saldo del tuo conto demo è inferiore o uguale a [_1]; puoi ricaricare il conto aggiungendo un importo pari a [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Puoi ricaricare il tuo conto demo con un importo aggiuntivo di [_1] se il saldo è inferiore o uguale a [_2].","Yes,_I'm_sure":"Sì, sono sicuro","Are_you_sure?":"Sei sicuro?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Dopo aver creato un conto [_1], non sarà possibile cambiare la valuta del conto fiat. Si desidera procedere?","Go_to_Deriv_to_add_an_MT5_account":"Vai su Deriv per aggiungere un conto MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Sarai in grado di accedere a Deriv utilizzando le credenziali di Binary.com","Back":"Precedente","Go_to_Deriv":"Vai su Deriv","Address":"Indirizzo","Account_currency":"Valuta dell'account","Financial_assessment":"Valutazione finanziaria","Personal_details":"Informazioni personali","Terms_of_use":"Termini di utilizzo","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) è una versione di Tether ancorata agli USD e costruita sulla blockchain di Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) è una versione di Tether ancorata agli USD e presente sulla piattaforma Ethereum.","Title_and_name":"Titolo e nome","Real_money_account_opening":"Apertura di un conto con denaro reale","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Il tuo token è scaduto o invalido. Fai clic qui per riavviare la procedura di verifica.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"L'indirizzo email fornito è già in uso. Se hai dimenticato la password, prova il nostro strumento di recupero della password o contatta il nostro servizio clienti.","Password_is_not_strong_enough_":"La password non è sufficientemente forte.","Upgrade_now":"Aggiorna adesso","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] giorni [_2] ore [_3] minuti","Your_trading_statistics_since_[_1]_":"Le tue statistiche di trading dal [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Il trading [_1] può diventare una vera e propria dipendenza, così come qualsiasi altra attività spinta al limite. Per evitare il pericolo di tale dipendenza, ti forniamo un controllo della situazione in grado di offrirti regolarmente la sintesi dei tuoi trade e dei tuoi account.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Per riavviare la procedura di ripristino della password, clicca sul link qui sotto.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Hai una nuova password Binary per accedere a BInary.com.","Success":"Operazione riuscita","Done":"Fatto","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Il conto Binary è scollegato da [_1]. Usa la [_2]tua e-mail e password per accedere in futuro.","Success!":"Operazione riuscita!","Got_it":"Ho capito","Binary_Password_Reset":"Reimposta password Binary","Binary_password":"Password Binary","You_have_added_a_[_1]_account_":"Hai aggiunto un conto [_1].","Add_account":"Aggiungi conto","Add_new_crypto_account":"Aggiungi un nuovo conto per criptovalute","Add_new_account":"Aggiungi un nuovo conto","Create_a_cryptocurrency_account":"Crea un conto per criptovalute","Choose_your_preferred_cryptocurrency":"Scegli la tua criptovaluta preferita","You_can_open_an_account_for_each_cryptocurrency_":"È possibile aprire un conto per ogni criptovaluta.","Choose_a_cryptocurrency_account":"Scegli un conto per criptovalute","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Scegli uno dei tuoi conti oppure aggiungi un conto per criptovalute","Choose_an_account":"Scegli un account","Choose_one_of_your_accounts_or_add_a_new_account":"Scegli uno dei tuoi conti oppure aggiungine uno nuovo","Choose_one_of_your_accounts":"Scegli un conto","Please_select_the_currency_for_this_account:":"Seleziona la valuta per questo conto:","deposit":"deposito","deposit_or_create_a_CFDs_account":"depositare fondi o creare un conto CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Sei sicuro di voler creare il tuo conto [_1] ora?","Note:":"Nota:","You_may_open_one_account_for_each_supported_cryptocurrency_":"È possibile aprire un conto per ogni criptovaluta supportata.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Sei sicuro di voler creare un conto fiat in [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"C'è previsto un limite di una sola valuta per conto fiat. Puoi modificare la valuta del conto fiat prima di effettuare il primo [_1].","Yes":"Sì","Create_[_1]_account":"Crea un conto[_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Hai modificato la valuta del conto: ora è in [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"La valuta del tuo conto è stata modificata da [_1] a [_2].","Please_choose_a_currency":"Scegli una valuta","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Hai una nuova password MT5 per accedere ai conti [_1] su web e app per smartphone.","Asian_Up":"Rialzo Asiatiche","Asian_Down":"Ribasso Asiatiche","Higher":"Superiore","Higher_or_equal":"Maggiore o uguale","Lower":"Inferiore","Lower_or_equal":"Inferiore o uguale","Digit_Matches":"Cifra uguale","Digit_Differs":"Cifra differente","Digit_Odd":"Cifra dispari","Digit_Even":"Cifra pari","Digit_Over":"Cifra superiore","Digit_Under":"Cifra inferiore","Ends_Outside":"Termina fuori","Ends_Between":"Finisce tra","Stays_Between":"Resta Dentro","Goes_Outside":"Esce fuori","Touches":"Tocca","Does_Not_Touch":"Non tocca","High_Tick":"Tick alto","Low_Tick":"Tick basso","Only_Ups":"Solo ascendenti","Only_Downs":"Solo discendenti","Multiplier_Up":"Moltiplicatore in rialzo","Multiplier_Down":"Moltiplicatore al ribasso","Equals":"Equivale a","Not":"No","Buy":"Acquista","Sell":"Vendi","Waiting_for_contract_settlement_":"In attesa della risoluzione del contratto.","including_Deal_Cancel__Fee":"inclusa commissione per la cancellazione","Contract_has_not_started_yet":"Il contratto non è ancora iniziato","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Questo contratto è disponibile solo su [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Il presente contratto è disponibile su DTrader. [_1][_2]Vai su DTrader[_3] per chiuderlo o annullarlo.","Contract_Result":"Esito del contratto","Close_Time":"Ora di chiusura","Exit_Spot_Time":"Orario del prezzo di uscita","Audit":"Controllo","View_chart":"Visualizza grafico","Audit_Page":"Pagina di controllo","Contract_Starts":"Il contratto inizia","Contract_Ends":"Il contratto termina","Contract_Details":"Dettagli del contratto","Target":"Obiettivo","Contract_Information":"Informazioni del contratto","Contract_Type":"Tipo di contratto","Transaction_ID":"ID della transazione","Remaining_Time":"Tempo residuo","Maximum_payout":"Payout massimo","Barrier_Change":"Modifica della barriera","Current":"Attuale","Spot_Time":"Orario di spot","Current_Time":"Orario attuale","Indicative":"Indicativo","Potential_Profit/Loss":"Profitto/perdita potenziale","Deal_Cancel__Fee":"Commissione per la cancellazione","You_can_close_this_window_without_interrupting_your_trade_":"Puoi chiudere questa finestra senza interrompere il trade.","There_was_an_error":"Si è verificato un errore","Sell_at_market":"Vendi sul mercato","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Il Contratto verrá venduto al prezzo di mercato prevalente nel momento in cui i nostri server ricevono la richiesta. Tale prezzo può differire rispetto al prezzo indicato.","You_have_sold_this_contract_at_[_1]_[_2]":"Questo contratto è stato venduto a [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Il numero di riferimento per le transazioni è [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Grazie per esserti registrato! Controlla la tua email per completare la procedura di registrazione.","All_markets_are_closed_now__Please_try_again_later_":"Al momento tutti i mercati sono chiusi. Si prega di riprovare più tardi.","Withdrawal":"Prelievo","demo_credit_to_account":"accredito di prova sul conto","Asians":"Asiatiche","Digits":"Cifre","Ends_Between/Ends_Outside":"Temina Dentro/Termina Fuori","High/Low_Ticks":"Tick alti/bassi","Lookbacks":"Opzioni retrospettive (lookbacks)","Reset_Call/Reset_Put":"Reimposta l'opzione Call/Reimposta l'opzione Put","Stays_Between/Goes_Outside":"Resta Dentro/Esce","Touch/No_Touch":"Tocca/Non Tocca","Christmas_Day":"Giorno di Natale","Closes_early_(at_18:00)":"Chiude in anticipo (alle 18:00)","Closes_early_(at_21:00)":"Chiude in anticipo (alle 21:00)","Fridays":"Venerdì","New_Year's_Day":"Capodanno","today":"oggi","today,_Fridays":"oggi, venerdì","There_was_a_problem_accessing_the_server_":"Si è verificato un problema d'accesso al server.","There_was_a_problem_accessing_the_server_during_purchase_":"Durante l'acquisto si è verificato un problema d'accesso al server."}; \ No newline at end of file +texts_json['IT'] = {"Real":"Reale","Multipliers":"Moltiplicatori","Gaming":"Gioco","Options":"Opzioni","Real_CFDs":"CFD reali","Real_Financial":"Finanziario reale","Demo_CFDs":"CFD di prova","Demo_Financial":"Finanziario di prova","Derived":"Derivato","Demo_Derived":"Account demo derivato","Real_Derived":"Conto reale derivato","CFDs":"CFD","Financial":"Finanziario","Financial_STP":"Finanziario STP","Demo_Financial_STP":"Conto finanziario STP di prova","Real_Financial_STP":" Finanziario reale STP","Connecting_to_server":"Connessione al server in corso","Use_a_few_words,_avoid_common_phrases":"Usa poche parole evitando frasi comuni","No_need_for_symbols,_digits,_or_uppercase_letters":"Cifre, maiuscole o caratteri speciali non sono necessari","Add_another_word_or_two__Uncommon_words_are_better_":"Aggiungi una o due parole. Sono preferibili parole non comuni.","Straight_rows_of_keys_are_easy_to_guess":"Una sequenza di lettere vicine è facile da indovinare","Short_keyboard_patterns_are_easy_to_guess":"Brevi segmenti vicini sulla tastiera sono facili da indovinare","Use_a_longer_keyboard_pattern_with_more_turns":"Usa un tipo di tastiera più lunga con maggiori opzioni di rotazione","Repeats_like_\"aaa\"_are_easy_to_guess":"Ripetizioni com \"aaa\" sono facili da indovinare","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Ripetizioni come \"abcabcabc\" risultano solo leggermente più difficili da indovinare di \"abc\"","Avoid_repeated_words_and_characters":"Evita di ripetere parole e caratteri","Sequences_like_abc_or_6543_are_easy_to_guess":"Sequenze come \"abc\" o \"6543\" sono facili da indovinare","Avoid_sequences":"Evita le sequenze","Recent_years_are_easy_to_guess":"I numeri riferiti agli ultimi anni sono facili da indovinare","Avoid_recent_years":"Escludi ultimi anni","Avoid_years_that_are_associated_with_you":"Evita anni associabili a te","Dates_are_often_easy_to_guess":"Le date sono spesso facili da indovinare","Avoid_dates_and_years_that_are_associated_with_you":"Evita date e anni associabili a te","This_is_a_top-10_common_password":"Questa è una delle 10 password più usate","This_is_a_top-100_common_password":"Questa è una delle 100 password più usate","This_is_a_very_common_password":"Questa è una password usata di frequente","This_is_similar_to_a_commonly_used_password":"Assomiglia a una password usata spesso","A_word_by_itself_is_easy_to_guess":"Una parola da sola è facile da indovinare","Names_and_surnames_by_themselves_are_easy_to_guess":"Nomi e cognomi senza modifiche sono semplici da indovinare","Common_names_and_surnames_are_easy_to_guess":"Nomi e cognomi abituali sono semplici da indovinare","Capitalization_doesn't_help_very_much":"Le lettere maiuscole non sono di grande aiuto","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"L'utilizzo del maiuscolo per ogni lettera, così come del minuscolo, genera una combinazione facile da indovinare","Reversed_words_aren't_much_harder_to_guess":"Le parole scritte al contrario restano facili da indovinare","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Sostituzioni come \"@\" al posto di \"a\" sono prevedibili","This_password_is_on_the_blacklist":"Questa password è sulla lista nera","Unknown_OS":"Sistema operativo sconosciuto","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Verrai reindirizzato a un sito esterno che non appartiene a Binary.com.","Click_OK_to_proceed_":"Clicca OK per procedere.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Assicurati di aver installato l'app Telegram sul tuo dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] richiede che la funzione di archiviazione web del tuo browser venga attivato in modo da funzionare adeguatamente. Si prega di attivarlo o uscire dalla modalità di navigazione privata.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Ti preghiamo di effettuare il [_1]log in[_2] o [_3]registrarti[_4] per visualizzare questa pagina.","This_feature_is_available_to_demo_accounts_only_":"Questa funzione è disponibile solo per conti di prova.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Stai usando un conto di prova. Passa al conto reale oppure crea un conto reale per accedere alla cassa.","This_page_is_only_available_to_logged_out_clients_":"La pagina è disponibile solo per i clienti che non hanno effettuato log-in.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Le opzioni binarie non sono disponibili per il conto per moltiplicatori.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Non è possibile fare trading su opzioni binarie con il conto per moltiplicatori.
Torna al conto per opzioni.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Il trading su opzioni non è disponibile nel Regno Unito e sull'Isola di Man","Binary_options_trading_is_not_available_in_your_country_":"Le opzioni binarie non sono disponibili nel tuo Paese.","This_page_is_not_available_in_your_country_of_residence_":"La pagina non è disponibile nel tuo Paese di residenza.","Page_not_available,_you_did_not_deactivate_your_account_":"Pagina non disponibile: non hai disattivato il conto.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Questo servizio non è disponibile per il tuo Paese. Se vuoi fare trading con moltiplicatori, usa DTrader o Deriv.","Go_to_DTrader":"Vai a DTrader","Sign_out":"Esci","[_1]_Account":"Conto [_1]","Click_here_to_open_a_Real_Account":"Clicca qui per aprire un conto reale","Open_a_Real_Account":"Apri un conto reale","Click_here_to_open_a_Multipliers_Account":"Clicca qui per aprire un conto per moltiplicatori","Click_here_to_open_an_Options_account":"Clicca qui per aprire un conto per opzioni","Open_a_Multipliers_Account":"Apri un conto per moltiplicatori","Go_to_Deriv_to_add_an_account":"Vai su Deriv per aggiungere un conto","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Sarai in grado di accedere a Deriv utilizzando le credenziali di Binary.com","Cancel":"Annulla","Go_to_Deriv":"Vai su Deriv","Create_Account":"Crea un account","Accounts_List":"Elenco degli account","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"I depositi non sono momentaneamente disponibili a causa di lavori di manutenzione al sistema. Sarà possibile realizzare questa operazione non appena la manutenzione si sarà conclusa.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Al momento non è possibile prelevare fondi a causa della manutenzione del sistema. Potrei effettuare prelievi a manutenzione finita.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Il nostro cassiere di criptovalute è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, a manutenzione finita.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"La cassa è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, quando la manutenzione sarà completata.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"La cassa è momentaneamente bloccata. Contattaci tramite chat live per scoprire come sbloccarla.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Imposta la [_1]valuta del conto[_2] per abilitare depositi e prelievi.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Il nome e la data di nascita nel tuo documento non corrispondono al nome del tuo profilo su Binary. Aggiorna il tuo nome nella pagina [_1]Informazioni personali[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"La data di nascita nel documento non corrisponde a quella del tuo profilo su Binary. Aggiornala nella pagina [_1]Informazioni personali[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Il nome del documento non corrisponde a quello del profilo su Binary. Aggiornalo nella pagina [_1]Informazioni personali[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Il conto non è stato autenticato. Invia un [_1]documento di prova dell'identità e un documento di prova dell'indirizzo[_2] per autenticare il conto e richiedere la possibilità di prelevare.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Il conto non è stato autenticato. Invia un [_1]documento di prova dell'identità e un documento di prova dell'indirizzo[_2] per autenticare il conto e accedere alla cassa.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"I documenti d'identità inviati non sono più validi. Invia documenti d'identità validi per sbloccare la cassa.","Your_[_1]proof_of_identity[_2]_has_expired_":"La sessione di [_1]verifica dell'identità[_2] è scaduta.","Your_[_1]proof_of_address[_2]_has_expired_":"La sessione di [_1]verifica dell'indirizzo[_2] è scaduta.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"La prova di [_1]verifica dell'identità[_3] e di [_2]verifica dell'indirizzo[_3] non sono state controllate.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Il [_1]documento di verifica dell'identità[_2] non è stato controllato.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Il [_1]documento di verifica dell'indirizzo[_2] non è stato controllato.","Please_submit_your_[_1]proof_of_identity[_2]_":"Invia un documento di [_1]verifica dell'identità[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Invia un documento di [_1]verifica dell'indirizzo[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Hai scelto di autoescluderti dal trading sul nostro sito fino al [_1]. Se non riesci a effettuare un trade o un deposito dopo il periodo di autoesclusione, contattaci tramite la chat live.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"L'accesso alla cassa è stato temporaneamente disabilitato perché non hai impostato il limite di 30 giorni per il turnover: per impostarlo, vai alla sezione [_1]Autoesclusione[_2].","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"La funzione di prelievo è stata disabilitata per il tuo conto MT5. Ti invitiamo a controllare il tuo indirizzo e-mail per ulteriori indicazioni.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Sfortunatamente puoi solamente effettuare depositi. Contattaci via mail per abilitare i prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"I [_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare depositi e prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"I [_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare i prelievi.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"I[_1]dati personali[_2] sono incompleti. Vai sulle impostazioni del conto e completa i dati personali per abilitare i depositi.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Non hai inserito il [_1]Paese di residenza[_2]. Per accedere alla cassa, aggiorna questo dato nella sezione Informazioni personali delle impostazioni del conto.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"La cassa è bloccata. Completa la [_1]valutazione finanziaria[_2] per sbloccarla.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Non hai verificato il numero di identificazione fiscale: questo dato è fondamentale per questioni legali e normative. Vai su [_1]informazioni personali[_2] nelle impostazioni del conto e inserisci il numero di identificazione fiscale aggiornato.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Puoi solamente prelevare fondi. Contattaci tramite la chat live.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"I prelievi dal tuo conto sono stati disattivati. Attendi fino alla verifica dei documenti caricati.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Ti invitiamo ad [_1]accettare i Termini e le condizioni aggiornati[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Per aumentare il limite dei depositi e del trading, [_1]accetta i Termini e le condizioni aggiornati[_2].","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Il conto è momentaneamente disabilitato. Contattaci tramite chat live per abilitare di nuovo depositi e prelievi.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Esegui il test d'idoneità per accedere alla cassa.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"La cassa è bloccata. Scopri [_1]come proteggiamo i tuoi fondi[_2] prima di continuare.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Il tuo conto deve essere verificato. Presenta la tua [_1]prova d'identità[_2] per accedere alla Cassa.","Account_Authenticated":"Autenticazione del conto","Connection_error:_Please_check_your_internet_connection_":"Errore di connessione: verifica la tua connessione internet.","Network_status":"Stato della rete","This_is_a_staging_server_-_For_testing_purposes_only":"Questo è un server tecnico - solo a scopo di test","The_server_endpoint_is:_[_2]":"Il server finale è: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Il tuo web browser ([_1]) non è aggiornato e potrebbe influire sulla tua esperienza di trading. Prosegui a tuo rischio. [_2]Aggiorna il browser[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Hai raggiunto il limite delle richieste per secondo. Riprova più tardi.","There_was_some_invalid_character_in_an_input_field_":"Un campo di immissione testo conteneva uno o più caratteri non validi.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regolamentata dalla UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regolamentata dalla Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regolamentata dalla Malta Financial Services Authority (MFSA),","Please_select":"Seleziona","Please_accept_the_terms_and_conditions_":"Accetta i termini e le condizioni.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Confermare di non essere una persona politicamente esposta.","Today":"Oggi","Select_date":"Selezionare una data","Barrier":"Barriera","Entry_Spot":"Punto d'ingresso","Exit_Spot":"Prezzo di uscita","Charting_for_this_underlying_is_delayed":"I grafici per questo strumento sono differiti","Payout_Range":"Intervallo di payout","Purchase_Time":"Orario d'acquisto","Reset_Barrier":"Reimpostare la barriera","Reset_Time":"Data di reset","Selected_Tick":"Tick selezionato","Exit_Time":"Orario di uscita","Start_Time":"Orario di inizio","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Passaggio [_1]: [_2] ([_1] di [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Il codice di verifica è errato. Utilizza il link inviato alla tua e-mail.","Indicates_required_field":"Indica un campo obbligatorio","Please_select_the_checkbox_":"Selezionare la casella corrispondente.","This_field_is_required_":"Questo campo è obbligatorio.","Should_be_a_valid_number_":"Deve essere un numero valido.","Up_to_[_1]_decimal_places_are_allowed_":"Sono ammessi fino a [_1] decimali.","Should_be_[_1]":"Dovrebbe essere [_1]","Should_be_between_[_1]_and_[_2]":"Deve essere compreso tra [_1] e [_2]","Should_be_more_than_[_1]":"Deve essere maggiore di [_1]","Should_be_less_than_[_1]":"Deve essere inferiore a [_1]","Insufficient_balance_":"Saldo non sufficiente.","Invalid_email_address_":"Indirizzo email non valido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"La password deve contenere lettere minuscole e maiuscole in inglese con numeri.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Sono consentiti solo lettere, numeri, spazi, trattini, punti e apostrofi.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Sono consentiti solo numeri, lettere, spazi e questi caratteri speciali: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Sono consentite solo lettere, spazi, trattini, punti e apostrofi.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Sono consentiti solo numeri, lettere, spazi e trattini.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Inserisci un numero di telefono valido (es. +39417541234).","The_two_passwords_that_you_entered_do_not_match_":"Le due password inserite non combaciano.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] e 2% non possono essere uguali.","Minimum_of_[_1]_characters_required_":"Sono richiesti minimo [_1] caratteri.","You_should_enter_[_1]_characters_":"È necessario inserire [_1] caratteri.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Deve iniziare con una lettera o un numero e può contenere la lineetta e il trattino basso.","Invalid_verification_code_":"Codice di verifica non valido.","Your_password_cannot_be_the_same_as_your_email_address_":"La password non può corrispondere al tuo indirizzo e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transazione eseguita da [_1] (ID dell'app: [_2])","Guide":"Guida","Next":"Successivo","Finish":"Termina","Select_your_market_and_underlying_asset":"Seleziona il tuo mercato e l'asset sottostante","Select_your_trade_type":"Seleziona la tua tipologia di trade","Adjust_trade_parameters":"Regola i parametri di trading","Predict_the_directionand_purchase":"Prevedi la direzione
e acquista","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Il limite di durata della tua sessione terminerà tra [_1] secondi.","January":"Gennaio","February":"Febbraio","March":"Marzo","April":"Aprile","May":"Mag","June":"Giugno","July":"Luglio","August":"Agosto","September":"Settembre","October":"Ottobre","November":"Novembre","December":"Dicembre","Jan":"Gen","Jun":"Giu","Jul":"Lug","Aug":"Ago","Sep":"Sett","Oct":"Ott","Dec":"Dic","Sunday":"Domenica","Monday":"Lunedì","Tuesday":"Martedì","Wednesday":"Mercoledì","Thursday":"Giovedì","Friday":"Venerdì","Saturday":"Sabato","Su":"Dom","Mo":"Lun","Tu":"Mar","We":"Noi","Th":"Gio","Fr":"Ven","Sa":"Sab","Previous":"Precedente","Hour":"Ora","Minute":"Minuto","Verification_required":"È richiesta l'autenticazione","Verify_identity":"Verifica identità","From_account:_":"Dal conto: ","To_account:_":"Al conto: ","Not_announced_for_this_currency_":"Non annunciato per questa valuta.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Reimposta il saldo del conto demo come [_1] in qualsiasi momento.","[_1]Manage_your_accounts[_2]":"[_1]Gestisci i tuoi conti[_2]","time":"volta","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"tempo o creare un vero conto MT5 (o un vero conto Deriv X su deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Non puoi più cambiare la valuta perché hai creato un vero conto MT5 (o un vero conto Deriv X su deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Non è più possibile modificare la valuta perché hai già effettuato il primo deposito.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"La valuta del tuo conto fiat è attualmente impostata su [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"La valuta del tuo conto fiat è impostata su [_1].","This_is_your_[_1]_account_":"Questo è il tuo conto in [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Puoi [_1]impostare una valuta nuova[_2] prima di prelevare per la prima [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Non vuoi effettuare trading in [_1]? Puoi aprire un altro conto di criptovalute.","Switch_account":"Cambia conto","Switch_account?":"Cambiare conto?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Per depositare denaro, passa al conto [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Per prelevare fondi, passa al conto [_1].","Switch_to_crypto_account?":"Passare al conto per criptovalute?","To_deposit_cryptocurrency,_switch_your_account_":"Per depositare criptovalute, cambia conto.","To_withdraw_cryptocurrency,_switch_your_account_":"Per prelevare criptovalute, cambia conto.","Withdraw":"Preleva","Deposit":"Deposita","Town/City":"Città","First_line_of_home_address":"Prima linea dell'indirizzo di residenza","Postal_Code/ZIP":"Codice postale/CAP","State/Province":"Stato/Provincia","Email_address":"Indirizzo email","Telephone":"Telefono","Country_of_Residence":"Paese di residenza","details":"dettagli","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Il nostro cassiere è temporaneamente fuori uso a causa della manutenzione del sistema. Potrai accedere alla cassa tra pochi minuti, quando la manutenzione sarà completata.","Your_cashier_is_locked_":"La tua cassa é bloccata.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"La valuta selezionata è disponibile sono per alcuni tipi di conto.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Hai raggiunto il limite per il prelievo. Carica il documento di verifica di identità e indirizzo per aumentare tale limite e procedere con il prelievo.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"I servizi relativi agli agenti di pagamento non sono disponibili nel tuo paese o nella valuta selezionata.","Select_payment_agent":"Seleziona un agente di pagamento","Amount_in":"Importo in","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Sono consentite solo lettere, numeri, spazi, trattini, punti, virgole e apostrofi.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"La richiesta di prelevare [_1] [_2] dal tuo conto [_3] al conto [_4] dell'Agente di pagamento è stata elaborata con successo.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Il tuo token è scaduto o invalido. Fai clic [_1]qui[_2] per riavviare la procedura di verifica.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Siamo spiacenti, al momento non è possibile effettuare prelievi con questa valuta.","Please_[_1]deposit[_2]_to_your_account_":"Si prega di [_1]depositare[_2] sul conto.","Sorry,_account_signup_is_not_available_in_your_country_":"Siamo spiacenti, la registrazione di un account non è disponibile nel tuo paese.","Opens":"Apre","Closes":"Chiude","Settles":"Liquida","Upcoming_Events":"Prossimi eventi","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Aggiungi +/– per definire una compensazione della barriera. Per esempio, +0,005 indica che una barriera è superiore di 0,005 rispetto al punto di entrata.","Digit":"Cifra","Percentage":"Percentuale","Waiting_for_entry_tick_":"In attesa del tick d'ingresso.","High_Barrier":"Barriera superiore","Low_Barrier":"Barriera inferiore","Waiting_for_exit_tick_":"In attesa del tick d'uscita.","Ticks_history_returned_an_empty_array_":"La cronologia dei tick ha riportato una serie vuota.","Chart_is_not_available_for_this_underlying_":"Il grafico non è disponibile per questo sottostante.","Purchase":"Acquisto","Net_profit":"Profitto netto","Return":"Rendimento","Time_is_in_the_wrong_format_":"L'orario è in un formato errato.","Rise/Fall":"Rialzo/Ribasso","Higher/Lower":"Superiore/Inferiore","Matches/Differs":"Combacia/Differisce","Even/Odd":"Pari/Dispari","Over/Under":"Sopra/Sotto","Reset_Call":"Reimposta l'opzione Call","Reset_Put":"Reimposta l'opzione Put","Up/Down":"Alto/Basso","Only_Ups/Only_Downs":"Solo ascendenti/Solo discendenti","In/Out":"Dentro/Fuori","Select_Trade_Type":"Seleziona il tipo di trade","Spot_Time_(GMT)":"Orario di spot (GMT)","seconds":"secondi","minutes":"minuti","hours":"ore","days":"giorni","ticks":"tick","second":"secondo","minute":"minuto","hour":"ora","day":"giorno","Duration":"Durata","End_Time":"Orario di fine","Purchase_request_sent":"Richiesta di acquisto inviata","Close":"Chiudi","Select_Asset":"Seleziona asset","Search___":"Cerca...","Maximum_multiplier_of_1000_":"Massimo moltiplicatore di 1000.","Stake":"Puntata","Multiplier":"Moltiplicatore","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Siamo spiacenti, il tuo account non è autorizzato per qualsiasi altro acquisto di contratti.","Trading_is_unavailable_at_this_time_":"Al momento non è possibile effettuare trading.","Please_reload_the_page":"Ricaricare la pagina","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Non si permettono ulteriori trade su questo tipo di contratto per la sessione di trading in corso. Per maggiori informazioni, consulta i [_1]termini e condizioni[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"La tua richiesta di essere categorizzato come cliente professionale è in fase di elaborazione.","Your_professional_client_request_is_[_1]not_approved[_2]_":"La richiesta di passaggio a cliente professionista [_1]non è stata approvata[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Invia nuovamente la richiesta una volta in possesso dei requisiti necessari.","More_information_can_be_found_in_an_email_sent_to_you_":"Troverai ulteriori informazioni nell'e-mail che ti è stata inviata.","I_want_to_reapply":"Desidero ricandidarmi","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Nell'UE, le opzioni binarie finanziarie sono disponibili esclusivamente per gli investitori professionisti.","Apply_now_as_a_professional_investor":"Candidati ora per la posizione di investitore professionista","Try_our_[_1]Synthetic_Indices[_2]_":"Prova i nostri [_1]indici sintetici[_2].","Try_our_other_markets_":"Prova i nostri altri mercati.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Ti invitiamo a completare [_1]il modulo relativo al conto reale[_2] per verificare la tua età come richiesto dalla [_3]UK Gambling[_4] Commission (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"L'accesso al conto è temporaneamente limitato: controlla la posta in arrivo per ulteriori informazioni.","Contract_Confirmation":"Conferma del contratto","Your_transaction_reference_is":"Il riferimento per le transazioni è","Total_Cost":"Costo totale","Potential_Payout":"Payout potenziale","Potential_Profit":"Profitto potenziale","View":"Visualizza","This_contract_won":"Questo contratto ha vinto","This_contract_lost":"Questo contratto ha perso","The_reset_time_is_[_1]":"La data di reset è [_1]","Now":"Adesso","Average":"Media","Buy_price":"Prezzo d'acquisto","Final_price":"Prezzo finale","Loss":"Perdita","Profit":"Profitto","Account_balance:":"Saldo dell'account:","Reverse_Side":"Retro","Front_Side":"Fronte","Pending":"In sospeso","Submitting":"Invio in corso","Submitted":"Inviato","Failed":"Non riuscito","Compressing_Image":"Compressione immagine","Checking":"Verifica in corso","Checked":"Verifica effettuata","Unable_to_read_file_[_1]":"Impossibile leggere il file [_1]","Passport":"Passaporto","Identity_card":"Carta d'identità","Driving_licence":"Patente di guida","Invalid_document_format_":"Formato del documento non valido.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"La dimensione del file ([_1]) supera il limite consentito. Dimensione massima consentita: [_2]","ID_number_is_required_for_[_1]_":"È necessario un numero identificativo per [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Per il numero ID ([_1]) sono consentiti solo lettere, numeri, spazio, trattino e trattino basso.","Expiry_date_is_required_for_[_1]_":"La data di scadenza è necessaria per [_1].","Place_of_birth":"Luogo di nascita","Please_select_the_country_of_document_issuance":"Seleziona il Paese in cui è stato emesso il documento","Choose_the_document_type":"Scegli il tipo di documento","Please_enter_the_correct_format__Example:":"Inserisci il formato corretto. Esempio:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Apri la posta elettronica Google e clicca sul link ricevuto per continuare.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Apri la posta elettronica Facebook e clicca sul link ricevuto per continuare.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Controlla l'indirizzo di posta associato al tuo ID Apple e fai click sul link ricevuto via e-mail per continuare.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Per modificare la password di MT5, fai clic sul link presente nell'e-mail.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Per modificare la password Binary, fai clic sul link presente nell'e-mail.","We’ve_sent_you_an_email":"Ti abbiamo inviato una e-mail","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Stai usando il conto [_1] per accedere al conto Deriv. Per accedere usando nome utente e password, fai clic sul pulsante [_2]Scollega[_3].","Linked_with_[_1]":"Collegamento con [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Per completare la procedura, dovrai impostare una password.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Vuoi davvero scollegarti da [_1]?","Unlink":"Scollegare","Country_not_found":"Paese non trovato","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Al momento non si accettano documenti da questo Paese — prova con un altro tipo di documento","Submit_document":"Invia documento","Select_country":"Seleziona Paese","e_g__United_States":"per es. Stati Uniti","Search_for_country":"Ricerca per Paese","Select_issuing_country":"Seleziona Paese di emissione","Submit_verification":"Invia verifica","Tips":"Suggerimenti","Documents_uploaded":"Documenti caricati","Document_uploaded":"Documento caricato","Selfie_uploaded":"Selfie caricato","We're_now_ready_to_verify_your_identity":"Siamo pronti a verificare la tua identità","Great,_that's_everything_we_need":"Ottimo, abbiamo tutto ciò che ci serve","The_link_only_works_on_mobile_devices":"Il link funziona solo su dispositivi mobili","Something's_gone_wrong":"Qualcosa non ha funzionato","You'll_need_to_restart_your_verification_on_your_computer":"Dovrai riavviare la verifica sul tuo computer","Get_secure_link":"Ottieni un link sicuro","Steps_required_to_continue_verification_on_your_mobile":"Passaggi necessari per continuare la verifica su smartphone","Check_back_here_to_finish_the_submission":"Verifica qui per finalizzare l'invio","Open_the_link_and_complete_the_tasks":"Apri il link e completa le attività","Send_a_secure_link_to_your_phone":"Invia un codice di sicurezza al tuo telefono","Here's_how_to_do_it:":"Ecco come fare:","Continue_on_your_phone":"Continua su telefono","Your_computer_may_take_a_few_seconds_to_update":"L'aggiornamento del computer potrebbe richiedere alcuni secondi","You_can_now_return_to_your_computer_to_continue":"Puoi ritornare al computer per continuare","Uploads_successful":"Caricamenti completati","Make_sure_everything_is_clear":"Assicurati che tutto sia chiaro","Blurry_photo_detected":"Fotografia sfocata","Make_sure_full_document_is_visible":"Assicurati che ogni parte del documento sia visibile","Cut-off_image_detected":"Immagine tagliata","Move_away_from_direct_light":"Allontanati dalla luce diretta","Glare_detected":"Sono presenti riflessi","Make_sure_all_of_the_document_is_in_the_photo":"Assicurati che l'immagine comprenda il documento per intero","No_document_detected":"Nessun documento trovato","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli della carta siano leggibili, senza sfocature o riflessi","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Servirà più tempo a verificare la tua identità se i documenti non sono leggibili","To_smoothly_verify_you,_we_need_a_better_photo":"Per verificare facilmente la tua identità occorre una foto più nitida","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli della patente siano leggibili, senza sfocature o riflessi","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli del passaporto siano leggibili, senza sfocature o riflessi","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli del permesso siano leggibili, senza sfocature o riflessi","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Assicurati che i dettagli siano leggibili, senza sfocature o riflessi","Redo":"Ripeti","Confirm":"Conferma","Upload_anyway":"Carica comunque","Enlarge_image":"Ingrandisci l'immagine","Photo_of_your_document":"Fotografia del documento","Check_your_image":"Controlla la tua fotografia","Front_and_back":"Fronte e retro","Driver's_license":"Patente di guida","Face_photo_page":"Pagina per fotografia del volto","Residence_permit":"Permesso di soggiorno","Sorry,_no_mobile_phone_bills":"Non si accettano bollette del cellulare","Documents_you_can_use_to_verify_your_identity":"Documenti validi per la verifica dell'identità","It_must_be_an_official_photo_ID":"Deve essere un documento di identificazione ufficiale con foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Trovi facilmente l'indirizzo del tuo domicilio in questi documenti","Choose_document":"Scegli un documento","Select_a_%{country}_document":"Seleziona un documento %{country}","or_upload_photo_–_no_scans_or_photocopies":"oppure carica una foto – no scansioni o fotocopie","Continue_on_phone":"Continua su telefono","Take_a_photo_with_your_phone":"Scatta una foto con il tuo smartphone","Submit_identity_card_(back)":"Invia la carta di identità (retro)","Submit_identity_card_(front)":"Invia la carta di identità (fronte)","Submit_license_(back)":"Invia patente (retro)","Submit_license_(front)":"Invia patente (fronte)","Submit_passport_photo_page":"Invia la pagina con foto del passaporto","Submit_residence_permit_(back)":"Invia il permesso di soggiorno (retro)","Submit_residence_permit_(front)":"Invia il permesso di soggiorno (fronte)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Riavvia il procedimento sull'ultima versione di Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Riavvia il procedimento sull'ultima versione di Safari","Unsupported_browser":"Browser non supportato","Close_identity_verification_screen":"Chiudi schermata di verifica dell'identità","Dismiss_alert":"Ignora avviso","back":"indietro","close":"chiudi","Restart_process_on_a_different_device":"Riavvia il procedimento su un dispositivo diverso","Camera_not_detected":"Nessuna fotocamera trovata","Must_be_under_10MB_":"Non può superare i 10MB.","File_size_exceeded_":"Volume del file superato.","Try_using_another_file_type_":"Usa un altro tipo di file.","File_not_uploaded_":"File non caricato.","An_error_occurred_while_loading_the_component":"Si è verificato un errore durante il caricamento del componente","Only_your_face_can_be_in_the_selfie":"Inquadra solo il tuo viso","Multiple_faces_found":"Individuati più volti","Your_face_is_needed_in_the_selfie":"Il tuo viso deve apparire nella foto","No_face_found":"Nessun volto rilevato","Please_try_again":"Prova di nuovo","Connection_lost":"Connessione persa","Copy_the_link_to_your_phone":"Copia il link sul tuo telefono","Too_many_failed_attempts":"Troppi tentativi falliti","Try_using_a_JPG_or_PNG_file":"Usa un fie JPG o PNG","File_type_not_supported":"Tipo di file non supportato","Loading___":"Caricamento in corso...","Loading":"Caricamento","Check_that_your_number_is_correct":"Verifica che il numero sia corretto","Copied":"Copia eseguita","Copy":"Copia","Send_link":"Invia link","How_to_scan_a_QR_code":"Come fare lo scan di un codice QR","Point_your_phone’s_camera_at_the_QR_code":"Inquadra il codice QR con la fotocamera del telefono","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Se non funziona, scarica un lettore del codice QR da Goole Play o dall'App Store","or":"o","Scan_QR_code":"Scansiona il codice QR","Get_link_via_SMS":"Ricevi il link tramite SMS","Copy_link":"Copia link","Sending":"Invio in corso","Enter_mobile_number":"Inserisci il numero di cellulare","Enter_your_mobile_number:":"Inserisci il numero di cellulare:","Scan_the_QR_code_with_your_phone":"Scansiona il codice QR con il telefono","Send_this_one-time_link_to_your_phone":"Invia questo link monouso al tuo smartphone","Open_the_link_on_your_mobile":"Apri il link sul tuo smartphone","Get_your_secure_link":"Ottieni il link sicuro","Copy_the_link_to_your_mobile_browser":"Copia il link sul browser del tuo dispositivo mobile","Continue":"Continua","Make_sure§":"Assicurati di§","2__Your_desktop_window_stays_open":"2. La finestra del desktop resti aperta","1__This_link_was_sent_by_you":"1. Il link sia stato inviato da te","Continue_with_the_verification":"Continua con la verifica","Linked_to_your_computer":"Collegato al tuo computer","Take_a_photo_of_the_back_of_your_card":"Scatta una foto del retro della carta","Take_a_photo_of_the_front_of_your_card":"Scatta una foto del lato frontale della carta","Take_a_photo_of_the_back_of_your_license":"Scatta una foto del retro della patente","Take_a_photo_of_the_front_of_your_license":"Scatta una foto del lato frontale della patente","Take_a_photo_of_your_passport_photo_page":"Fotografa la pagina del passaporto con la tua foto","Take_a_selfie_showing_your_face":"Scatta un selfie mostrando il tuo viso","Take_a_photo_using_the_basic_camera_mode_instead":"Scatta una foto usando la modalità fotocamera base","Take_a_photo":"Scatta una foto","Passport_photo_page":"Pagina con foto passaporto","Thank_you":"Grazie","Verification_complete":"Verifica completata","Refresh":"Aggiorna","Recovery":"Recupero","Follow_these_steps_to_recover_camera_access:":"Segui questi passaggi per ripristinare l'accesso alla fotocamera:","Refresh_this_page_to_restart_the_identity_verification_process":"Ricarica la pagina per riavviare il procedimento di verifica dell'identità","Grant_access_to_your_camera_from_your_browser_settings":"Consenti l'accesso alla fotocamera dalle impostazioni del browser","Recover_camera_access_to_continue_face_verification":"Riprendi l'accesso alla fotocamera per continuare la verifica del viso","Camera_access_is_denied":"Accesso alla fotocamera negato","We_cannot_verify_you_without_using_your_camera":"Non possiamo verificare la tua identità senza fotocamera","Enable_camera":"Attiva fotocamera","When_prompted,_you_must_enable_camera_access_to_continue":"Quando richiesto, dovrai attivare la fotocamera per continuare","Allow_camera_access":"Consenti accesso alla fotocamera","Provide_the_whole_document_page_for_best_results":"Per una verifica migliore, includi l'intera pagina del documento","Upload_back_of_card_from_your_computer":"Carica il retro della carta dal tuo computer","Upload_front_of_card_from_your_computer":"Carica il lato frontale della carta dal tuo computer","Upload_back_of_license_from_your_computer":"Carica il retro della patente dal tuo computer","Upload_front_of_license_from_your_computer":"Carica il lato frontale della patente dal tuo computer","Upload_passport_photo_page_from_your_computer":"Carica la pagina del passaporto con la foto dal tuo computer","Upload_a_selfie_from_your_computer":"Carica un selfie dal computer","Take_photo":"Scatta una foto","Upload":"Carica","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Verifica che sia collegata e in funzione. Puoi continuare la verifica sul tuo smartphone","Make_sure_your_device_has_a_working_camera":"Assicurati che il tuo dispositivo sia dotato di una fotocamera funzionante","Camera_not_working?":"La fotocamera non funziona?","It_may_be_disconnected__Try_using_your_phone_instead_":"Potrebbe essere sconnessa. Prova a usare il tuo smartphone.","Make_sure_your_device's_camera_works":"Assicurati che la fotocamera funzioni correttamente","Camera_not_working":"La fotocamera non funziona","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Premi Stop quando hai finito. Ripeti le azioni del video","Looks_like_you_took_too_long":"L'operazione ha richiesto troppo tempo","View_from_camera":"Visualizza da fotocamera","Take_a_selfie":"Scatta un selfie","Photo_of_your_face":"Foto del tuo viso","Make_sure_your_selfie_clearly_shows_your_face":"Assicurati che la foto permetta di vedere chiaramente il tuo viso","Check_selfie":"Verifica foto","Tips_to_take_a_good_selfie":"Consigli per scattare un selfie adeguato","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Volto verso la fotocamera e occhi ben visibili","Remove_your_glasses,_if_necessary":"Togli gli occhiali, se necessario","We'll_compare_it_with_your_document":"Verrà confrontata con il documento","Your_link_will_expire_in_one_hour":"Il link scadrà tra un'ora","Keep_this_window_open_while_using_your_mobile":"Mantieni aperta la finestra mentre usi lo smartphone","Resend_link":"Invia di nuovo il link","We've_sent_a_secure_link_to_%{number}":"Abbiamo inviato un link di sicurezza a %{number}","It_may_take_a_few_minutes_to_arrive":"Potrebbe richiedere alcuni minuti","Check_your_mobile":"Controlla il tuo dispositivo mobile","Your_mobile_link_will_expire_in_one_hour":"Il link per per dispositivi mobili scadrà tra un'ora","Don't_refresh_this_page":"Non ricaricare la pagina","Once_you've_finished_we'll_take_you_to_the_next_step":"Quando avrai finito, potrai passare al passaggio successivo","Connected_to_your_mobile":"Connesso al tuo smartphone","Upload_photo":"Carica foto","Example_of_a_blurry_document":"Esempio di un documento sfocato","All_details_must_be_clear_—_nothing_blurry":"I dettagli devono essere chiari e non sfocati","Example_of_a_cut-off_document":"Esempio di un documento tagliato","Show_all_details_—_including_the_bottom_2_lines":"Mostra tutti i dettagli incluse le ultime 2 righe","Example_of_a_document_with_glare":"Esempio di un documento con riflessi","Move_away_from_direct_light_—_no_glare":"Allontanati dalla luce diretta per evitare riflessi","Document_example":"Esempio di documento","The_photo_should_clearly_show_your_document":"La foto deve mostrare in modo chiaro il documento","Scans_and_photocopies_are_not_accepted":"Non si accettano scansioni o fotocopie","Upload_passport_photo_page":"Carica la pagina del passaporto con foto","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Per aprire un conto corrente, dovrai verificare la tua identità.","It_will_only_take_a_couple_of_minutes_":"Ci vorranno solo un paio di minuti.","Verify_Identity":"Verifica identità","Open_your_new_bank_account":"Apri un nuovo conto corrente","Please_enter_a_valid_Login_ID_":"Inserire credenziali di accesso valide.","Amount":"Importo","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"La tua richiesta di trasferire [_1] [_2] da [_3] a [_4] è andata a buon fine.","Resale_not_offered":"La rivendita non è offerta","You've_made_no_transactions_of_this_type_up_to_this_date_":"Non hai mai effettuato operazioni di questo tipo.","Date":"Data","Ref_":"Rif.","Contract":"Contratto","Purchase_Price":"Prezzo d'acquisto","Sale_Date":"Data di vendita","Sale_Price":"Prezzo di vendita","Profit/Loss":"Profitto/Perdita","Details":"Dettagli","Total_Profit/Loss":"Profitto/Perdita totale","Action_required!":"Azione necessaria!","Sorry,_an_error_occurred_while_processing_your_request_":"Siamo spiacenti, si è verificato un errore durante l'elaborazione della tua richiesta.","position(s)":"posizioni","withdrawal(s)":"prelievi","We_couldn’t_read_that!":"Non siamo riusciti a leggerlo!","Remaining_characters:_[_1]_":"Caratteri rimanenti: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Non inserire più di [_1] caratteri per entrambi i campi.","Only_[_1]_are_allowed_":"Sono consentiti solo [_1].","letters":"lettere","numbers":"numeri","space":"spazio","Please_select_at_least_one_scope":"Seleziona almeno uno scopo","New_token_created_":"Nuovo token creato.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Il numero massimo di token ([_1]) è stato raggiunto.","Name":"Nome","Scopes":"Ambiti","Last_Used":"Ultimo utilizzato","Action":"Azione","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Sei sicuro di voler eliminare definitivamente il token","Delete":"Elimina","Never_Used":"Mai utilizzato","You_have_not_granted_access_to_any_applications_":"Non è possibile accedere ad alcuna applicazione.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Sei sicuro di voler revocare definitivamente l'accesso all'applicazione","Revoke_access":"Revocare l'accesso","Admin":"Amministratore","Payments":"Pagamenti","Read":"Leggi","Trading_Information":"Informazioni sul trading","Never":"Mai","Permissions":"Autorizzazioni","Last_Login":"Ultimo accesso","You_did_not_change_anything_":"Non è stata apportata alcuna modifica.","Your_changes_have_been_updated_successfully_":"Le modifiche sono state aggiornate con successo.","Successful":"Riuscito","Date_and_Time":"Data e orario","IP_Address":"Indirizzo IP","Status":"Stato","Your_account_has_no_Login/Logout_activity_":"Sul conto non è presente alcuna attività di Login/Logout.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Il conto è stato completamente autenticato e sono stati rimossi i limiti di prelievo.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Al momento il limite giornaliero sui prelievi [_1] corrisponde a [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Hai già prelevato un totale di [_1] [_2] negli ultimi [_3] giorni.","Your_withdrawal_limit_is_[_1][_2]_":"Il limite sui prelievi corrisponde a [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Hai già prelevato [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Pertanto, il saldo prelevabile corrisponde a un massimo di [_1][_2], in base ai fondi disponibili sul conto.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Ti chiediamo di confermare che tutte le informazioni sopra riportate sono veritiere e complete.","Your_settings_have_been_updated_successfully_":"Le impostazioni sono state aggiornate.","Sorry,_an_error_occurred_while_processing_your_account_":"Siamo spiacenti, si è verificato un errore durante l'elaborazione del tuo account.","Please_select_a_country":"Seleziona un paese","Timed_out_until":"Sessione sospesa fino a","Excluded_from_the_website_until":"Esclusione dal sito fino a","Session_duration_limit_cannot_be_more_than_6_weeks_":"Il limite di durata della sessione non può essere superiore a 6 settimane.","Time_out_must_be_after_today_":"La scadenza non può essere nella giornata di oggi.","Time_out_cannot_be_more_than_6_weeks_":"La scadenza non può essere superiore alle 6 settimane.","Time_out_cannot_be_in_the_past_":"La scadenza non può essere nel passato.","Please_select_a_valid_time_":"Seleziona un orario valido.","Exclude_time_cannot_be_less_than_6_months_":"Il periodo di esclusione non può essere inferiore a 6 mesi.","Exclude_time_cannot_be_for_more_than_5_years_":"Il periodo di esclusione non può essere superiore a 5 anni.","Confirm_changes":"Conferma modifiche","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"I limiti verranno aggiornati. Clicca su [_1]Accetta[_2] per confermare di essere pienamente responsabile delle tue azioni, e che la Società non è in alcun modo responsabile di eventuali perdite o dipendenze sviluppate.","Agree_and_accept":"Conferma e accetta","Go_back":"Torna indietro","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Quando clicchi su \"OK\" verrai escluso dal trading sul sito fino alla data selezionata.","Your_changes_have_been_updated_":"Le modifiche sono state aggiornate.","Disable":"Disabilita","Enable":"Abilita","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"L'autenticazione a due fattori per i tuo conto è stata abilitata con successo.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"L'autenticazione a due fattori per il tuo conto è stata disabilitata con successo.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Non è ancora il momento di autenticare il conto. [_1]Ti avviseremo quando sarà necessario.","No_authentication_required":"Non è richiesta autenticazione","Back_to_trading":"Torna ai trade","You_are_categorised_as_a_professional_client_":"Sei categorizzato come cliente professionista.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Sei categorizzato come cliente al dettaglio. Richiedi di essere categorizzato come trader professionista.","Bid":"Offerta","Closed_Bid":"Offerta chiusa","Reference_ID":"ID di riferimento","Description":"Descrizione","Credit/Debit":"Credito/Debito","Balance":"Saldo","Top_up_error":"Errore di caricamento","Understood":"Ho capito","Top-up_successful":"Caricamento avvenuto con successo","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"L'importo di [_1] è stato accreditato sul tuo conto demo: [_2].","Go_to_statement":"Vai all'estratto conto","Continue_trading":"Continua il trading","Your_Demo_balance_has_been_reset_":"Il tuo saldo demo è stato ripristinato","Available_Markets":"Mercati disponibili","Type":"Tipologia","Currency":"Valuta","Multipliers_Account":"Conto per moltiplicatori","Gaming_Account":"Account di gioco","Options_Account":"Opzioni del conto","Real_Account":"Conto Reale","Counterparty":"Controparte","Jurisdiction":"Giurisdizione","Create_account":"Crea un conto","Change_currency":"Cambia valuta","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: sei limitato a un solo conto in valuta fiat. La valuta del tuo conto fiat può essere cambiata prima di depositare sul tuo conto fiat per la prima volta o di creare un vero conto MT5 (o un vero conto Deriv X su deriv.com). Puoi anche aprire un conto per ogni criptovaluta supportata.","This_account_is_disabled":"Questo conto è disattivato","This_account_is_excluded_until_[_1]":"Questo conto è escluso fino a [_1]","Set_currency":"Imposta la valuta","Commodities":"Materie prime","Stock_Indices":"Indici azionari","Stocks":"Azioni","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Se hai un conto con noi, tra pochi minuti ti invieremo un link al tuo indirizzo di posta per reimpostare la password.","Sign_up":"Iscriviti","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Il trading di contratti per differenza (CFD) sugli indici sintetici può non essere adatto a tutti. Assicurati di aver compreso appieno i rischi connessi, inclusa la possibilità di perdere tutti i fondi sul tuo conto reale MT5. Il gioco d'azzardo può creare dipendenza, per questo ti invitiamo a giocare responsabilmente.","Do_you_wish_to_continue?":"Desideri continuare?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}You are about to purchase a product that is not simple and may be difficult to understand: Contracts for Difference and Forex. As a general rule, the CNMV considers that such products are not appropriate for retail clients, due to their complexity.","{SPAIN_ONLY}However,_Binary_Investments_(Europe)_Ltd_has_assessed_your_knowledge_and_experience_and_deems_the_product_appropriate_for_you_":"{SPAIN ONLY}However, Deriv Investments (Europe) Ltd has assessed your knowledge and experience and deems the product appropriate for you.","Acknowledge":"Accetto","Change_Password":"Modifica Password","The_investor_password_of_account_number_[_1]_has_been_changed_":"La password per investitori del conto numero [_1] è stata modificata.","Reset_Password":"Ripristina password","Verify_Reset_Password":"Verifica la nuova password","Please_check_your_email_for_further_instructions_":"Ti invitiamo a controllare il tuo indirizzo e-mail per ulteriori indicazioni.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Il deposito di [_1] da [_2] sul numero di account [_3] è stato effettuato. ID della transazione: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Il prelievo di [_1] dall'account numero [_2] su [_3] è stato eseguito. ID della transazione: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Per prelevare dal tuo Account MetaTrader 5 Finanziario ti chiediamo di [_1]Autenticare[_2] il tuo account Binary.","Current_password":"Password attuale","New_password":"Nuova password","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Per trasferire fondi sul conto MT5, inserisci un importo pari o superiore a [_1]","You_have_insufficient_funds_in_your_MT5_account_":"Non hai fondi sufficienti sul conto MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Siamo spiacenti, questa funzione non è disponibile nella tua giurisdizione.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"A causa di un problema sul nostro server, alcuni conti MT5 non sono disponibili al momento. [_1]Grazie per la comprensione e la pazienza.","Unavailable":"Non disponibile","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"L'importo di [_1] è stato accreditato sul tuo conto demo MT5: [_2].","_(Region_added)":" (zona aggiunta)","_(Temporarily_unavailable)":" (Temporaneamente non disponibile)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"I server MT5 non sono momentaneamente disponibili. Stiamo lavorando per risolvere il problema, ti preghiamo di riprovare tra pochi minuti.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Usa la password MT5 per accedere a qualsiasi conto [_1] mentre usi le app MT5 su smartphone o altri dispositivi.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Così cambierai la password per tutti i conti [_1].","Demo_Accounts":"Account demo","Real-Money_Accounts":"Conto monetario reale","Demo_Account":"Conto demo","Real-Money_Account":"Conto monetario reale","for_account_[_1]":"per il conto [_1]","MT5_Financial":"MT5 Finanziario","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Inserisci la password MT5 per aggiungere un conto [_1] [_2].","real":"reale","MT5_Synthetic":"Conto per indici sintetici MT5","Get_[_1]":"Ottieni [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Al momento, il saldo del tuo conto demo è inferiore o uguale a [_1]; puoi ricaricare il conto aggiungendo un importo pari a [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Puoi ricaricare il tuo conto demo con un importo aggiuntivo di [_1] se il saldo è inferiore o uguale a [_2].","Yes,_I'm_sure":"Sì, sono sicuro","Are_you_sure?":"Sei sicuro?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Dopo aver creato un conto [_1], non sarà possibile cambiare la valuta del conto fiat. Si desidera procedere?","Go_to_Deriv_to_add_an_MT5_account":"Vai su Deriv per aggiungere un conto MT5","Back":"Precedente","Address":"Indirizzo","Account_currency":"Valuta dell'account","Financial_assessment":"Valutazione finanziaria","Personal_details":"Informazioni personali","Terms_of_use":"Termini di utilizzo","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) è una versione di Tether ancorata agli USD e costruita sulla blockchain di Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) è una versione di Tether ancorata agli USD e presente sulla piattaforma Ethereum.","Title_and_name":"Titolo e nome","Real_money_account_opening":"Apertura di un conto con denaro reale","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Il tuo token è scaduto o invalido. Fai clic qui per riavviare la procedura di verifica.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"L'indirizzo email fornito è già in uso. Se hai dimenticato la password, prova il nostro strumento di recupero della password o contatta il nostro servizio clienti.","Password_is_not_strong_enough_":"La password non è sufficientemente forte.","Upgrade_now":"Aggiorna adesso","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] giorni [_2] ore [_3] minuti","Your_trading_statistics_since_[_1]_":"Le tue statistiche di trading dal [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Il trading [_1] può diventare una vera e propria dipendenza, così come qualsiasi altra attività spinta al limite. Per evitare il pericolo di tale dipendenza, ti forniamo un controllo della situazione in grado di offrirti regolarmente la sintesi dei tuoi trade e dei tuoi account.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Per riavviare la procedura di ripristino della password, clicca sul link qui sotto.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Hai una nuova password Binary per accedere a BInary.com.","Success":"Operazione riuscita","Done":"Fatto","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Il conto Binary è scollegato da [_1]. Usa la [_2]tua e-mail e password per accedere in futuro.","Success!":"Operazione riuscita!","Got_it":"Ho capito","Binary_Password_Reset":"Reimposta password Binary","Binary_password":"Password Binary","You_have_added_a_[_1]_account_":"Hai aggiunto un conto [_1].","Add_account":"Aggiungi conto","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether come Omni token (USDT) è una versione di Tether ospitata sul livello Omni sulla blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether come token ERC20 (eUSDT) è una versione di Tether ospitata su Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether come token TRC20 (tUSDT) è una versione di Tether ospitata su Tron.","Add_new_crypto_account":"Aggiungi un nuovo conto per criptovalute","Add_new_account":"Aggiungi un nuovo conto","Create_a_cryptocurrency_account":"Crea un conto per criptovalute","Choose_your_preferred_cryptocurrency":"Scegli la tua criptovaluta preferita","You_can_open_an_account_for_each_cryptocurrency_":"È possibile aprire un conto per ogni criptovaluta.","Choose_a_cryptocurrency_account":"Scegli un conto per criptovalute","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Scegli uno dei tuoi conti oppure aggiungi un conto per criptovalute","Choose_an_account":"Scegli un account","Choose_one_of_your_accounts_or_add_a_new_account":"Scegli uno dei tuoi conti oppure aggiungine uno nuovo","Choose_one_of_your_accounts":"Scegli un conto","Please_select_the_currency_for_this_account:":"Seleziona la valuta per questo conto:","deposit":"deposito","deposit_or_create_a_CFDs_account":"depositare fondi o creare un conto CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Sei sicuro di voler creare il tuo conto [_1] ora?","Note:":"Nota:","You_may_open_one_account_for_each_supported_cryptocurrency_":"È possibile aprire un conto per ogni criptovaluta supportata.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Sei sicuro di voler creare un conto fiat in [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"C'è previsto un limite di una sola valuta per conto fiat. Puoi modificare la valuta del conto fiat prima di effettuare il primo [_1].","Yes":"Sì","Create_[_1]_account":"Crea un conto[_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Hai modificato la valuta del conto: ora è in [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"La valuta del tuo conto è stata modificata da [_1] a [_2].","Please_choose_a_currency":"Scegli una valuta","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Hai una nuova password MT5 per accedere ai conti [_1] su web e app per smartphone.","Accumulator":"Accumulatore","Asian_Down":"Ribasso Asiatiche","Asian_Up":"Rialzo Asiatiche","Higher":"Superiore","Higher_or_equal":"Maggiore o uguale","Digit_Differs":"Cifra differente","Digit_Even":"Cifra pari","Digit_Matches":"Cifra uguale","Digit_Odd":"Cifra dispari","Digit_Over":"Cifra superiore","Digit_Under":"Cifra inferiore","Ends_Outside":"Termina fuori","Ends_Between":"Finisce tra","Multiplier_Down":"Moltiplicatore al ribasso","Multiplier_Up":"Moltiplicatore in rialzo","Does_Not_Touch":"Non tocca","Touches":"Tocca","Lower":"Inferiore","Lower_or_equal":"Inferiore o uguale","Stays_Between":"Resta Dentro","Only_Ups":"Solo ascendenti","Only_Downs":"Solo discendenti","High_Tick":"Tick alto","Low_Tick":"Tick basso","Goes_Outside":"Esce fuori","Equals":"Equivale a","Not":"No","Buy":"Acquista","Sell":"Vendi","Waiting_for_contract_settlement_":"In attesa della risoluzione del contratto.","including_Deal_Cancel__Fee":"inclusa commissione per la cancellazione","Contract_has_not_started_yet":"Il contratto non è ancora iniziato","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Questo contratto è disponibile solo su [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Il presente contratto è disponibile su DTrader. [_1][_2]Vai su DTrader[_3] per chiuderlo o annullarlo.","Contract_Result":"Esito del contratto","Close_Time":"Ora di chiusura","Exit_Spot_Time":"Orario del prezzo di uscita","Audit":"Controllo","View_chart":"Visualizza grafico","Audit_Page":"Pagina di controllo","Contract_Starts":"Il contratto inizia","Contract_Ends":"Il contratto termina","Contract_Details":"Dettagli del contratto","Target":"Obiettivo","Contract_Information":"Informazioni del contratto","Contract_Type":"Tipo di contratto","Transaction_ID":"ID della transazione","Remaining_Time":"Tempo residuo","Maximum_payout":"Payout massimo","Barrier_Change":"Modifica della barriera","Current":"Attuale","Spot_Time":"Orario di spot","Current_Time":"Orario attuale","Indicative":"Indicativo","Potential_Profit/Loss":"Profitto/perdita potenziale","Deal_Cancel__Fee":"Commissione per la cancellazione","You_can_close_this_window_without_interrupting_your_trade_":"Puoi chiudere questa finestra senza interrompere il trade.","There_was_an_error":"Si è verificato un errore","Sell_at_market":"Vendi sul mercato","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Il Contratto verrá venduto al prezzo di mercato prevalente nel momento in cui i nostri server ricevono la richiesta. Tale prezzo può differire rispetto al prezzo indicato.","You_have_sold_this_contract_at_[_1]_[_2]":"Questo contratto è stato venduto a [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Il numero di riferimento per le transazioni è [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Grazie per esserti registrato! Controlla la tua email per completare la procedura di registrazione.","All_markets_are_closed_now__Please_try_again_later_":"Al momento tutti i mercati sono chiusi. Si prega di riprovare più tardi.","Withdrawal":"Prelievo","demo_credit_to_account":"accredito di prova sul conto","Asians":"Asiatiche","Digits":"Cifre","Ends_Between/Ends_Outside":"Temina Dentro/Termina Fuori","High/Low_Ticks":"Tick alti/bassi","Lookbacks":"Opzioni retrospettive (lookbacks)","Reset_Call/Reset_Put":"Reimposta l'opzione Call/Reimposta l'opzione Put","Stays_Between/Goes_Outside":"Resta Dentro/Esce","Touch/No_Touch":"Tocca/Non Tocca","Christmas_Day":"Giorno di Natale","Closes_early_(at_18:00)":"Chiude in anticipo (alle 18:00)","Closes_early_(at_21:00)":"Chiude in anticipo (alle 21:00)","Fridays":"Venerdì","New_Year's_Day":"Capodanno","today":"oggi","today,_Fridays":"oggi, venerdì","There_was_a_problem_accessing_the_server_":"Si è verificato un problema d'accesso al server.","There_was_a_problem_accessing_the_server_during_purchase_":"Durante l'acquisto si è verificato un problema d'accesso al server."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/ko.js b/src/javascript/_autogenerated/ko.js index f034395622f9d..dae62d1f4d4d9 100644 --- a/src/javascript/_autogenerated/ko.js +++ b/src/javascript/_autogenerated/ko.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['KO'] = {"CFDs":"차액결제거래","Bitcoin":"비트코인","Litecoin":"라이트코인","Connecting_to_server":"서버에 연결","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Anda akan dialihkan ke situs web pihak ketiga yang bukan dimiliki oleh Binary.com.","Click_OK_to_proceed_":"Klik OK untuk melanjutkan.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1]은 기능을 제대로 하기 위해 귀하의 브라우저 웹 저장소가 활성화되는것이 요구됩니다. 이를 활성화하시거나 개인정보 보호 브라우징 모드에서 나와주시기 바랍니다.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"본 페이지를 보기 위해 [_1]로그인[_2] 또는 [_3]가입[_4] 해 주시기 바랍니다.","[_1]_Account":"[_1]계좌","Click_here_to_open_a_Real_Account":"실제 계좌를 개설하기 위해 여기를 클릭하세요","Create_Account":"계정 만들기","Accounts_List":"계좌 목록","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"귀하의 [_1]신분 증명[_2]이 아직 검증되지 않았습니다.","Account_Authenticated":"계좌 확인","Connection_error:_Please_check_your_internet_connection_":"연결 오류: 귀하의 인터넷 연결을 점검해주세요.","Today":"오늘","Barrier":"장벽","Charting_for_this_underlying_is_delayed":"이 언더라잉을 위한 차팅은 지연되었습니다","Start_Time":"시작 시간","Crypto":"크립토","Please_select_the_checkbox_":"체크박스를 선택해주세요.","This_field_is_required_":"이 항목을 채워주십시오.","The_two_passwords_that_you_entered_do_not_match_":"입력하신 두 비밀번호가 일치하지 않습니다.","[_1]_and_[_2]_cannot_be_the_same_":"[_1]과 [_2]는 같을 수 없습니다.","Next":"다음","Adjust_trade_parameters":"거래 파라미터를 조정하세요","January":"1월","February":"2월","April":"4월","May":"5월","August":"8월","December":"12월","Jan":"1월","Feb":"2월","Mar":"3월","Apr":"4월","Jun":"6월","Jul":"7월","Aug":"8월","Sep":"9월","Oct":"10월","Nov":"11월","Dec":"12월","Tuesday":"화요일","Wednesday":"수요일","Friday":"금요일","Su":"일","Mo":"월","Tu":"화","We":"수","Th":"목","Fr":"금","Sa":"토","Previous":"이전","Hour":"시간","[_1]Manage_your_accounts[_2]":"[_1]귀하의 계좌를 관리하세요[_2]","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"[_1]로 거래하고 싶지 않으신가요? 귀하께서는 다른 암호화폐 계좌를 개설하실 수 있습니다.","Cancel":"취소","State/Province":"주/지역","Email_address":"이메일 주소","Country_of_Residence":"거주 국가","Amount_in":"표시되는 화폐","Sorry,_account_signup_is_not_available_in_your_country_":"죄송합니다. 귀하의 나라에서는 계정 가입이 불가합니다.","Asset":"자산","Opens":"개장","Closes":"마감","Settles":"정착","Upcoming_Events":"예정된 행사","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"장벽 오프셋을 정의하기 위해 +/–를 추가하세요. 예를 들어서 +0.005는 엔트리 스팟보다 0.005가 더 높은 장벽을 의미합니다.","Chart_is_not_available_for_this_underlying_":"이 언더라잉에 대해서는 차트를 이용할 수 없습니다.","Net_profit":"순이익","Return":"보상","Rise/Fall":"상승/하락","Higher/Lower":"하이어/로우어","Matches/Differs":"맞춤/다름","Even/Odd":"짝/홀","Over/Under":"오버/언더","High-Close":"고가-종가","Close-Low":"종가-저가","High-Low":"고가-저가","Reset_Call":"리셋 콜","Reset_Put":"리셋 풋","Up/Down":"업/다운","Only_Ups/Only_Downs":"오직 Ups/오직 Downs","In/Out":"인/아웃","Tick":"틱","minutes":"분","hours":"시간","days":"일","ticks":"틱","Duration":"기간","End_Time":"종료 시간","Close":"종료","Stake":"지분","Payout":"지불금","Apply_now_as_a_professional_investor":"전문 투자자로써 지금 지원하세요","Try_our_other_markets_":"다른 시장을 이용해보세요.","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"계좌 접근이 일시적으로 제한되었습니다. 더 자세한 사항을 위해 귀하의 수신함을 확인해주세요.","Contract_Confirmation":"계약확인","View":"보기","Now":"지금","Average":"평균","Buy_price":"구매 가격","Final_price":"최종 가격","Profit":"이익","Account_balance:":"계좌 잔액:","Identity_card":"신분증","Driving_licence":"운전면허증","ID_number_is_required_for_[_1]_":"[_1]에 ID 번호가 요구되어집니다.","Tips":"팁","Confirm":"확인","or":"또는","Date":"날짜","Contract":"계약","Details":"상세정보","Action":"활동","Are_you_sure_that_you_want_to_permanently_delete_the_token":"귀하께서는 토큰을 영구적으로 삭제하기를 확실히 원하십니까","Delete":"삭제","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"귀하께서는 해당 앱으로의 접근권한이 영구적으로 취소되는것을 확실히 원하십니까?","Admin":"관리","Payments":"지불","Trade":"트레이드","Date_and_Time":"날짜와 시간","Browser":"브라우저","IP_Address":"IP 주소","Please_select_a_valid_time_":"유효시간을 선택해주세요.","Back_to_trading":"트레이딩으로 돌아가기","Bid":"매수","Description":"설명","Credit/Debit":"신용/직불","Balance":"잔액","Continue_trading":"계속 거래하기","Account":"계좌","Available_Markets":"가용 시장","Type":"종류","Currency":"통화","Real_Account":"실제계정","Counterparty":"카운터파티","Create_account":"계좌 생성하기","Change_currency":"통화 변경","Commodities":"상품","Forex":"외환","Stock_Indices":"주가지수","Synthetic_Indices":"종합 지수","Sign_up":"가입","Do_you_wish_to_continue?":"Apakah Anda ingin melanjutkan?","Acknowledge":"인정합니다","Change_Password":"비밀번호 바꾸기","Reset_Password":"비밀번호 재설정","Current_password":"현재 비밀번호","New_password":"새 비밀번호","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1]이 귀하의 MT5 Demo Account에 입금되었습니다: [_2].","[_1]_Account_[_2]":"[_1] 계좌 [_2]","MT5_Financial":"MT5 금융","Are_you_sure?":"확실한가요?","OK":"확인","Back":"이전","Address":"주소","Account_currency":"계좌 통화","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"입력하신 이메일 주소는 이미 사용중입니다. 만약 비밀번호를 잊으셨다면, 비밀번호 복구 도구 또는 저희 고객 서비스부서에 연락바랍니다.","Password_is_not_strong_enough_":"비밀번호가 취약합니다.","[_1]_days_[_2]_hours_[_3]_minutes":"[_1]일 [_2]시간 [_3]분","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1]비밀번호 복구 절차를 위해 아래의 링크를 클릭하세요.","Choose_an_account":"계정을 선택하세요","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"귀하께서 [_1] 계좌를 지금 만드는것을 희망하는것이 확실합니까?","Note:":"각주:","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"귀하께서는 [_1] 피앗 계좌를 개설하기를 원하십니까?","Create_[_1]_account":"[_1] 계좌 만들기","Please_choose_a_currency":"화폐를 선택해주시기 바랍니다","Asian_Up":"아시안 업","Asian_Down":"아시안 다운","Higher":"상승","Lower":"하락","Call_Spread":"콜 스프레드","Only_Ups":"오직 Ups","Only_Downs":"오직 Downs","Buy":"매수","Sell":"매도","Contract_has_not_started_yet":"계약이 아직 시작되지 않았습니다.","Contract_Result":"계약 결과","Close_Time":"종료 시간","Audit_Page":"감사 페이지","Contract_Starts":"계약이 시작됩니다","Contract_Ends":"계약이 종료됩니다","Contract_Details":"계약에 대한 자세한 사항","Contract_Information":"계약 정보","Contract_Type":"계약 종류","Transaction_ID":"거래 ID","Remaining_Time":"남은 시간","Barrier_Change":"장벽 변동","Current":"현재","Current_Time":"현재 시간","Note":"공지","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"우리의 서버에 의해 요구가 접수되어질때에 계약은 우세한 시장가로 판매되어질 것입니다. 이 가격은 표시되어 있는 가격과는 다를 수 있습니다.","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"가입해주셔서 감사합니다! 등록절차를 완료하기 위해 회원님의 이메일을 확인 해주세요.","All_markets_are_closed_now__Please_try_again_later_":"현재 모든 시장이 마감되었습니다. 나중에 다시 시도해주십시오.","logout":"로그아웃","Asians":"아시안","Call_Spread/Put_Spread":"콜 스프레드/풋 스프레드","Digits":"숫자","Ends_Between/Ends_Outside":"사이에서 종료/외부에서 종료","High/Low_Ticks":"높은/낮은 틱","Lookbacks":"룩백","Reset_Call/Reset_Put":"리셋 콜/리셋 풋","Stays_Between/Goes_Outside":"사이에서 머무름/외부로 나감","Touch/No_Touch":"터치/노 터치","Christmas_Day":"성탄절","Closes_early_(at_21:00)":"조기 마감 (21:00시)","Fridays":"매주 금요일","today,_Fridays":"오늘, 매 금요일"}; \ No newline at end of file +texts_json['KO'] = {"CFDs":"차액결제거래","Bitcoin":"비트코인","Litecoin":"라이트코인","Connecting_to_server":"서버에 연결","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Anda akan dialihkan ke situs web pihak ketiga yang bukan dimiliki oleh Binary.com.","Click_OK_to_proceed_":"Klik OK untuk melanjutkan.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1]은 기능을 제대로 하기 위해 귀하의 브라우저 웹 저장소가 활성화되는것이 요구됩니다. 이를 활성화하시거나 개인정보 보호 브라우징 모드에서 나와주시기 바랍니다.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"본 페이지를 보기 위해 [_1]로그인[_2] 또는 [_3]가입[_4] 해 주시기 바랍니다.","[_1]_Account":"[_1]계좌","Click_here_to_open_a_Real_Account":"실제 계좌를 개설하기 위해 여기를 클릭하세요","Cancel":"취소","Create_Account":"계정 만들기","Accounts_List":"계좌 목록","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"귀하의 [_1]신분 증명[_2]이 아직 검증되지 않았습니다.","Account_Authenticated":"계좌 확인","Connection_error:_Please_check_your_internet_connection_":"연결 오류: 귀하의 인터넷 연결을 점검해주세요.","Today":"오늘","Barrier":"장벽","Charting_for_this_underlying_is_delayed":"이 언더라잉을 위한 차팅은 지연되었습니다","Start_Time":"시작 시간","Crypto":"크립토","Please_select_the_checkbox_":"체크박스를 선택해주세요.","This_field_is_required_":"이 항목을 채워주십시오.","The_two_passwords_that_you_entered_do_not_match_":"입력하신 두 비밀번호가 일치하지 않습니다.","[_1]_and_[_2]_cannot_be_the_same_":"[_1]과 [_2]는 같을 수 없습니다.","Next":"다음","Adjust_trade_parameters":"거래 파라미터를 조정하세요","January":"1월","February":"2월","April":"4월","May":"5월","August":"8월","December":"12월","Jan":"1월","Feb":"2월","Mar":"3월","Apr":"4월","Jun":"6월","Jul":"7월","Aug":"8월","Sep":"9월","Oct":"10월","Nov":"11월","Dec":"12월","Tuesday":"화요일","Wednesday":"수요일","Friday":"금요일","Su":"일","Mo":"월","Tu":"화","We":"수","Th":"목","Fr":"금","Sa":"토","Previous":"이전","Hour":"시간","[_1]Manage_your_accounts[_2]":"[_1]귀하의 계좌를 관리하세요[_2]","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"[_1]로 거래하고 싶지 않으신가요? 귀하께서는 다른 암호화폐 계좌를 개설하실 수 있습니다.","State/Province":"주/지역","Email_address":"이메일 주소","Country_of_Residence":"거주 국가","Amount_in":"표시되는 화폐","Sorry,_account_signup_is_not_available_in_your_country_":"죄송합니다. 귀하의 나라에서는 계정 가입이 불가합니다.","Asset":"자산","Opens":"개장","Closes":"마감","Settles":"정착","Upcoming_Events":"예정된 행사","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"장벽 오프셋을 정의하기 위해 +/–를 추가하세요. 예를 들어서 +0.005는 엔트리 스팟보다 0.005가 더 높은 장벽을 의미합니다.","Chart_is_not_available_for_this_underlying_":"이 언더라잉에 대해서는 차트를 이용할 수 없습니다.","Net_profit":"순이익","Return":"보상","Rise/Fall":"상승/하락","Higher/Lower":"하이어/로우어","Matches/Differs":"맞춤/다름","Even/Odd":"짝/홀","Over/Under":"오버/언더","High-Close":"고가-종가","Close-Low":"종가-저가","High-Low":"고가-저가","Reset_Call":"리셋 콜","Reset_Put":"리셋 풋","Up/Down":"업/다운","Only_Ups/Only_Downs":"오직 Ups/오직 Downs","In/Out":"인/아웃","Tick":"틱","minutes":"분","hours":"시간","days":"일","ticks":"틱","Duration":"기간","End_Time":"종료 시간","Close":"종료","Stake":"지분","Payout":"지불금","Apply_now_as_a_professional_investor":"전문 투자자로써 지금 지원하세요","Try_our_other_markets_":"다른 시장을 이용해보세요.","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"계좌 접근이 일시적으로 제한되었습니다. 더 자세한 사항을 위해 귀하의 수신함을 확인해주세요.","Contract_Confirmation":"계약확인","View":"보기","Now":"지금","Average":"평균","Buy_price":"구매 가격","Final_price":"최종 가격","Profit":"이익","Account_balance:":"계좌 잔액:","Identity_card":"신분증","Driving_licence":"운전면허증","ID_number_is_required_for_[_1]_":"[_1]에 ID 번호가 요구되어집니다.","Tips":"팁","Confirm":"확인","or":"또는","Date":"날짜","Contract":"계약","Details":"상세정보","Action":"활동","Are_you_sure_that_you_want_to_permanently_delete_the_token":"귀하께서는 토큰을 영구적으로 삭제하기를 확실히 원하십니까","Delete":"삭제","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"귀하께서는 해당 앱으로의 접근권한이 영구적으로 취소되는것을 확실히 원하십니까?","Admin":"관리","Payments":"지불","Trade":"트레이드","Date_and_Time":"날짜와 시간","Browser":"브라우저","IP_Address":"IP 주소","Please_select_a_valid_time_":"유효시간을 선택해주세요.","Back_to_trading":"트레이딩으로 돌아가기","Bid":"매수","Description":"설명","Credit/Debit":"신용/직불","Balance":"잔액","Continue_trading":"계속 거래하기","Account":"계좌","Available_Markets":"가용 시장","Type":"종류","Currency":"통화","Real_Account":"실제계정","Counterparty":"카운터파티","Create_account":"계좌 생성하기","Change_currency":"통화 변경","Commodities":"상품","Forex":"외환","Stock_Indices":"주가지수","Sign_up":"가입","Do_you_wish_to_continue?":"Apakah Anda ingin melanjutkan?","Acknowledge":"인정합니다","Change_Password":"비밀번호 바꾸기","Reset_Password":"비밀번호 재설정","Current_password":"현재 비밀번호","New_password":"새 비밀번호","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1]이 귀하의 MT5 Demo Account에 입금되었습니다: [_2].","[_1]_Account_[_2]":"[_1] 계좌 [_2]","MT5_Financial":"MT5 금융","Are_you_sure?":"확실한가요?","OK":"확인","Back":"이전","Address":"주소","Account_currency":"계좌 통화","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"입력하신 이메일 주소는 이미 사용중입니다. 만약 비밀번호를 잊으셨다면, 비밀번호 복구 도구 또는 저희 고객 서비스부서에 연락바랍니다.","Password_is_not_strong_enough_":"비밀번호가 취약합니다.","[_1]_days_[_2]_hours_[_3]_minutes":"[_1]일 [_2]시간 [_3]분","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1]비밀번호 복구 절차를 위해 아래의 링크를 클릭하세요.","Choose_an_account":"계정을 선택하세요","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"귀하께서 [_1] 계좌를 지금 만드는것을 희망하는것이 확실합니까?","Note:":"각주:","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"귀하께서는 [_1] 피앗 계좌를 개설하기를 원하십니까?","Create_[_1]_account":"[_1] 계좌 만들기","Please_choose_a_currency":"화폐를 선택해주시기 바랍니다","Asian_Down":"아시안 다운","Asian_Up":"아시안 업","Higher":"상승","Call_Spread":"콜 스프레드","Lower":"하락","Only_Ups":"오직 Ups","Only_Downs":"오직 Downs","Buy":"매수","Sell":"매도","Contract_has_not_started_yet":"계약이 아직 시작되지 않았습니다.","Contract_Result":"계약 결과","Close_Time":"종료 시간","Audit_Page":"감사 페이지","Contract_Starts":"계약이 시작됩니다","Contract_Ends":"계약이 종료됩니다","Contract_Details":"계약에 대한 자세한 사항","Contract_Information":"계약 정보","Contract_Type":"계약 종류","Transaction_ID":"거래 ID","Remaining_Time":"남은 시간","Barrier_Change":"장벽 변동","Current":"현재","Current_Time":"현재 시간","Note":"공지","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"우리의 서버에 의해 요구가 접수되어질때에 계약은 우세한 시장가로 판매되어질 것입니다. 이 가격은 표시되어 있는 가격과는 다를 수 있습니다.","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"가입해주셔서 감사합니다! 등록절차를 완료하기 위해 회원님의 이메일을 확인 해주세요.","All_markets_are_closed_now__Please_try_again_later_":"현재 모든 시장이 마감되었습니다. 나중에 다시 시도해주십시오.","logout":"로그아웃","Asians":"아시안","Call_Spread/Put_Spread":"콜 스프레드/풋 스프레드","Digits":"숫자","Ends_Between/Ends_Outside":"사이에서 종료/외부에서 종료","High/Low_Ticks":"높은/낮은 틱","Lookbacks":"룩백","Reset_Call/Reset_Put":"리셋 콜/리셋 풋","Stays_Between/Goes_Outside":"사이에서 머무름/외부로 나감","Touch/No_Touch":"터치/노 터치","Christmas_Day":"성탄절","Closes_early_(at_21:00)":"조기 마감 (21:00시)","Fridays":"매주 금요일","today,_Fridays":"오늘, 매 금요일"}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/pl.js b/src/javascript/_autogenerated/pl.js index d822bfcbc4da3..d25c8bce941b2 100644 --- a/src/javascript/_autogenerated/pl.js +++ b/src/javascript/_autogenerated/pl.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['PL'] = {"Real":"Prawdziwe","Multipliers":"Mnożniki","Gaming":"Gra hazardowa","Options":"Opcje","Real_CFDs":"Prawdziwe CFD","Real_Financial":"Prawdziwe finansowe","Demo_CFDs":"Demo CFD","Demo_Financial":"Demo finansowe","Synthetic":"Syntetyczne","Demo_Synthetic":"Demo syntetyczne","Real_Synthetic":"Prawdziwe syntetyczne","CFDs":"Kontrakty CFDs","Financial":"Finansowe","Financial_STP":"Finansowe STP","Demo_Financial_STP":"Demo finansowe STP","Real_Financial_STP":"Prawdziwe finansowe STP","Multi-Collateral":"Wielokrotne zabezpieczenie","Paxos_Standard":"Paxos standardowe","Binary_Coin":"Moneta binarna","Thank_you,_we'll_get_back_to_you_within_24_hours":"Dziękujemy, skontaktujemy się w ciągu 24 godzin","Connecting_to_server":"Łączenie z serwerem","Use_a_few_words,_avoid_common_phrases":"Użyj kilku słów, unikaj popularnych zwrotów","No_need_for_symbols,_digits,_or_uppercase_letters":"Nie ma potrzeby używania symboli, cyfr i wielkich liter","Add_another_word_or_two__Uncommon_words_are_better_":"Dodaj kolejne słowo lub dwa. Nietypowe słowa są lepsze.","Straight_rows_of_keys_are_easy_to_guess":"Proste ciągi znaków są proste do przewidzenia","Short_keyboard_patterns_are_easy_to_guess":"Krótkie sekwencje klawiatury są łatwe do przewidzenia","Use_a_longer_keyboard_pattern_with_more_turns":"Użyj dłuższego ciągu znaków z klawiatury ze zmianami","Repeats_like_\"aaa\"_are_easy_to_guess":"Powtórzenia, takie jak „aaa” są łatwe do przewidzenia","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Ciągi, takie jak „abcabcabc” są tylko trochę trudniejsze do przewidzenia niż „abc”","Avoid_repeated_words_and_characters":"Unikaj powtarzających się słów i znaków","Sequences_like_abc_or_6543_are_easy_to_guess":"Ciągi znaków, takie jak abc lub 6543 łatwo przewidzieć","Avoid_sequences":"Unikaj ciągów znaków","Recent_years_are_easy_to_guess":"Ostatnie lata są łatwe do przewidzenia","Avoid_recent_years":"Unikaj ostatnich lat","Avoid_years_that_are_associated_with_you":"Unikaj lat, które są powiązane z Tobą","Dates_are_often_easy_to_guess":"Daty są często łatwe do przewidzenia","Avoid_dates_and_years_that_are_associated_with_you":"Unikaj dat, które są powiązane z Tobą","This_is_a_top-10_common_password":"To hasło jest wśród 10 najpopularniejszych","This_is_a_top-100_common_password":"To hasło jest wśród 100 najpopularniejszych","This_is_a_very_common_password":"To bardzo popularne hasło","This_is_similar_to_a_commonly_used_password":"Podobne do często używanych haseł","A_word_by_itself_is_easy_to_guess":"Samo słowo jest łatwe do przewidzenia","Names_and_surnames_by_themselves_are_easy_to_guess":"Imiona i nazwiska użyte samodzielnie są łatwe do przewidzenia","Common_names_and_surnames_are_easy_to_guess":"Popularne imiona i nazwiska można łatwo przewidzieć","Capitalization_doesn't_help_very_much":"Zapis wielką literą zbytnio tu nie pomaga","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Wszystkie wyrazy zapisane wielką literą są tak łatwe do przewidzenia, jak wszystkie zapisane małą literą","Reversed_words_aren't_much_harder_to_guess":"Słowa zapisane w odwrotnej kolejności nie są dużo trudniejsze do przewidzenia","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Łatwe do przewidzenia substytuty, takie jak „@” zamiast „a” nie są zbyt pomocne","This_password_is_on_the_blacklist":"To hasło znajduje się na czarnej liście","Unknown_OS":"Nieznany system operacyjny","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Nastąpi przekierowanie do witryny internetowej strony trzeciej, której właścicielem nie jest Binary.com.","Click_OK_to_proceed_":"Kliknij OK, aby przejść dalej.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Upewnij się, że na Twoim urządzeniu jest zainstalowana aplikacja Telegram.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] wymaga włączenia w przeglądarce funkcji przechowywania internetowego (Web Storage), aby zapewnić poprawne działanie. Włącz tę funkcję lub wyłącz tryb przeglądania prywatnego.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Aby zobaczyć tę stronę, [_1]zaloguj się[_2] lub [_3]zarejestruj[_4].","This_feature_is_available_to_demo_accounts_only_":"Ta funkcja jest dostępna tylko dla kont demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Korzystasz z konta demo. Przejdź na swoje prawdziwe konto lub utwórz je, aby uzyskać dostęp do sekcji Kasjer.","This_page_is_only_available_to_logged_out_clients_":"Ta strona jest dostępna tylko dla wylogowanych klientów.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Handlowanie opcjami binarnymi nie jest dostępne na Twoim koncie mnożnikowym.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Inwestowanie w opcje binarne nie jest dostępne przez konto mnożnikowe.
Przejdź do swojego konta z opcjami.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Przepraszamy, inwestowanie w opcje nie jest dostępne w Wielkiej Brytanii i na Wyspie Man","Binary_options_trading_is_not_available_in_your_country_":"Handlowanie opcjami binarnymi nie jest dostępne w Twoim kraju.","This_page_is_not_available_in_your_country_of_residence_":"Ta strona nie jest dostępna w Twoim kraju zamieszkania.","Page_not_available,_you_did_not_deactivate_your_account_":"Strona jest niedostępna, konto nie zostało dezaktywowane.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Niestety ta usługa nie jest dostępna w Twoim kraju. Jeśli chcesz inwestować w mnożniki, wypróbuj DTrader na Deriv.","Go_to_DTrader":"Przejdź do DTrader","Sign_out":"Wyloguj","[_1]_Account":"Konto [_1]","Click_here_to_open_a_Real_Account":"Kliknij tutaj, aby otworzyć prawdziwe konto","Open_a_Real_Account":"Otwórz Prawdziwe konto","Click_here_to_open_a_Multipliers_Account":"Kliknij tutaj, aby otworzyć konto mnożnikowe","Click_here_to_open_an_Options_account":"Kliknij tutaj, aby otworzyć konto opcji","Open_a_Multipliers_Account":"Otwórz konto mnożnikowe","Create_Account":"Załóż konto","Accounts_List":"Lista kont","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Wpłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wpłaty po zakończeniu konserwacji.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Wypłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wypłaty po zakończeniu konserwacji.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer kryptowalut jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Sekcja Kasjer jest obecnie zablokowana. Skontaktuj się z nami przez czat na żywo, aby dowiedzieć się, jak ją odblokować.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Ustaw [_1]walutę swojego konta[_2], aby włączyć możliwość dokonywania wpłat i wypłat.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Twoje konto nie zostało zweryfikowane. Prześlij [_1]dowód tożsamości i dowód adresu[_2], aby zweryfikować swoje konto i złożyć wniosek o wypłatę.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Twoje konto nie zostało zweryfikowane. Prześlij [_1]dowód tożsamości i dowód adresu[_2], aby zweryfikować swoje konto i uzyskać dostęp do sekcji Kasjer.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Przesłane dokumenty identyfikacyjne wygasły. Prześlij ważne dokumenty tożsamości, aby odblokować sekcję Kasje.","Your_[_1]proof_of_identity[_2]_has_expired_":"Twoje [_1]potwierdzenie tożsamości[_2] jest już nieważne.","Your_[_1]proof_of_address[_2]_has_expired_":"Twoje [_1]potwierdzenie adresu[_2] jest już nieważne.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Twoje [_1]potwierdzenie tożsamości[_3] i [_2]potwierdzenie adresu[_3] nie zostało zweryfikowane.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Twoje [_1]potwierdzenie tożsamości[_2] nie zostało zweryfikowane.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Twoje [_1]potwierdzenie adresu[_2] nie zostało zweryfikowane.","Please_submit_your_[_1]proof_of_identity[_2]_":"Prześlij [_1]potwierdzenie tożsamości[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Prześlij [_1]potwierdzenie adresu[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Wybrano opcję samodzielnego wykluczenia na naszej stronie do dnia [_1]. Jeśli nie możesz zawrzeć zakładu lub wpłacić środków po okresie samodzielnego wykluczenia, skontaktuj się z nami przez czat na żywo.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Twój dostęp do sekcji Kasjer został tymczasowo wyłączony, gdyż nie ustawiono30-dniowego limitu obrotów. Przejdź do sekcji [_1]Samodzielnego wykluczenia[_2], aby ustawić swój 30-dniowy limit obrotów.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Opcja dokonywania wypłat z MT5 została wyłączona na Twoim koncie. Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej informacji.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Niestety możesz tylko dokonywać wypłat. Skontaktuj się z nami przez czat na żywo, aby umożliwić wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wpłaty i wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wpłaty.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Nie ustawiono kraju zamieszkania. Aby uzyskać dostęp do sekcji Kasjer, zaktualizuj [_1]kraj zamieszkania[_2] w sekcji danych osobowych w ustawieniach swojego konta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Sekcja Kasjer jest zablokowana. Ukończ [_1]ocenę finansową[_2], aby ją odblokować.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Nie podano numeru identyfikacji podatkowej. Jest on wymagany z powodów prawnych i regulacyjnych. Przejdź do sekcji [_1]Dane osobowe[_2] w ustawieniach swojego konta i podaj swój najnowszy numer identyfikacji podatkowej.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Niestety możesz dokonywać tylko wypłat. Skontaktuj się z nami przez czat na żywo.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Wypłaty zostały wyłączone na Twoim koncie. Poczekaj, aż przesłane przez Ciebie dokumenty zostaną zweryfikowane.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Proszę [_1]zaakceptować zaktualizowany regulamin[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Aby podnieść wysokość limitów wpłat i limitów handlowych, proszę [_1]zaakceptować zaktualizowany regulamin[_1].","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Twoje konto jest tymczasowo wyłączone. Skontaktuj się z nami przez czat na żywo, aby włączyć ponownie możliwość dokonywania wpłat i wypłat.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Ukończ ocenę zdolności, aby uzyskać dostęp do sekcji Kasjer.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Sekcja kasjer jest zablokowana. Zobacz, [_1]jak chronić swoje środki[_2], zanim przejdziesz dalej.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Twoje konto wymaga weryfikacji. Prześlij [_1]potwierdzenie tożsamości[_2], aby uzyskać dostęp do Kasjera.","Account_Authenticated":"Konto zweryfikowane","Connection_error:_Please_check_your_internet_connection_":"Błąd połączenia: sprawdż połączenie internetowe","Network_status":"Status sieci","This_is_a_staging_server_-_For_testing_purposes_only":"To jest serwer testowy służący wyłącznie testowaniu","The_server_endpoint_is:_[_2]":"Punkt końcowy serwera to: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Twoja przeglądarka internetowa ([_1]) jest nieaktualna, co może negatywnie wpływać na korzystanie z portalu handlowego. Przejdź dalej na własne ryzyko lub [_2]zaktualizuj przeglądarkę[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Osiągnięto maksymalną liczbę żądań na sekundę. Spróbuj jeszcze raz.","There_was_some_invalid_character_in_an_input_field_":"Nieprawidłowy znak w polu formularza.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulacjami instytucji UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulacjami instytucji Malta Gaming Authority","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulacjami instytucji Malta Financial Services Authority (MFSA),","Please_select":"Wybierz","Please_accept_the_terms_and_conditions_":"Proszę zaakceptować regulamin.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Potwierdź, że nie jesteś osobą zajmującą eksponowane stanowisko polityczne.","Today":"Dziś","Select_date":"Wybierz datę","Barrier":"Limit","Entry_Spot":"Punkt wejściowy","Exit_Spot":"Punkt wyjściowy","Charting_for_this_underlying_is_delayed":"Dla tego rynku podstawowego wykresy są opóźnione","Payout_Range":"Zakres wypłaty","Purchase_Time":"Godzina zakupu","Reset_Barrier":"Limit resetowania","Reset_Time":"Moment resetowania","Selected_Tick":"Wybrana najmniejsza zmiana ceny","Exit_Time":"Czas wyjściowy","Start_Time":"Godzina rozpoczęcia","Fiat":"Fiducjarna","Crypto":"Kryptowaluty","Step_[_1]:_[_2]_([_1]_of_[_3])":"Krok [_1]: [_2] ([_1] z [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Kod weryfikacyjny jest nieprawidłowy. Skorzystaj z łącza przesłanego na Twój adres e-mail.","Indicates_required_field":"Wskazuje wymagane pole","Please_select_the_checkbox_":"Proszę zaznaczyć pole wyboru.","This_field_is_required_":"To pole jest wymagane.","Should_be_a_valid_number_":"Powinien to być prawidłowy numer.","Up_to_[_1]_decimal_places_are_allowed_":"Dozwolonych jest do [_1] miejsc po przecinku.","Should_be_[_1]":"Powinno być [_1]","Should_be_between_[_1]_and_[_2]":"Wartość powinna wynosić od [_1] do [_2]","Should_be_more_than_[_1]":"Wartość powinna być większa niż [_1]","Should_be_less_than_[_1]":"Wartość powinna być mniejsza niż [_1]","Insufficient_balance_":"Niewystarczające saldo.","Invalid_email_address_":"Nieprawidłowy adres e-mail.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Hasło powinno się składać z małych i wielkich angielskich liter oraz cyfr.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka i apostrof.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Dozwolone są tylko litery, liczby, spacja i następujące znaki specjalne: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Dozwolone są tylko litery, spacja, myślniki, kropki i apostrof.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Dozwolone są tylko litery, cyfry, spacja i myślnik.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Podaj prawidłowy numer telefonu (np. +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Wprowadzone hasła nie są identyczne.","[_1]_and_[_2]_cannot_be_the_same_":"Wartości [_1] i [_2] nie mogą być takie same.","Minimum_of_[_1]_characters_required_":"Minimalna liczba znaków: [_1].","You_should_enter_[_1]_characters_":"Proszę wprowadzić następującą liczbę znaków: [_1].","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Powinno rozpoczynać się od litery lub cyfry i może zawierać myślnik i podkreślnik.","Invalid_verification_code_":"Nieprawidłowy kod weryfikacyjny.","Your_password_cannot_be_the_same_as_your_email_address_":"Twoje hasło nie może być takie samo jak adres e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transakcja dokonana przez [_1] (App ID: [_2])","Guide":"Przewodnik","Next":"Następny","Finish":"Zakończ","Step":"Krok","Select_your_market_and_underlying_asset":"Wybierz swój rynek i aktywa bazowe","Select_your_trade_type":"Wybierz rodzaj zakładu","Adjust_trade_parameters":"Dostosuj parametry handlowe","Predict_the_directionand_purchase":"Oszacuj kierunek zmian
i kup","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Limit czasu sesji zakończy się za [_1] s.","January":"Styczeń","February":"Luty","March":"Marzec","April":"Kwiecień","May":"Maj","June":"Czerwiec","July":"Lipiec","August":"Sierpień","September":"Wrzesień","October":"Październik","November":"Listopad","December":"Grudzień","Jan":"Styczeń","Feb":"Luty","Mar":"Marzec","Apr":"Kwiecień","Jun":"Czerwiec","Jul":"Lipiec","Aug":"Sierpień","Sep":"Wrzesień","Oct":"Październik","Nov":"Listopad","Dec":"Grudzień","Sunday":"Niedziela","Monday":"Poniedziałek","Tuesday":"Wtorek","Wednesday":"Środa","Thursday":"Czwartek","Friday":"piątek","Saturday":"Sobota","Su":"Nd","Mo":"Pn","Tu":"Wt","We":"Śr","Th":"Cz","Fr":"Pt","Sa":"So","Previous":"Poprzedni","Hour":"Godzina","Minute":"Minuta","Verification_required":"Uwierzytelnienie jest wymagane","Verify_identity":"Potwierdź tożsamość","From_account:_":"Z konta: ","To_account:_":"Na konto: ","Not_announced_for_this_currency_":"Nie ogłoszono dla tej waluty.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Resetuj saldo swojego demo konta do [_1] w dowolnej chwili.","[_1]Manage_your_accounts[_2]":"[_1]Zarządzaj swoimi kontami[_2]","time":"raz","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"razem lub utworzysz prawdziwe konto MT5 (lub prawdziwe konto Deriv X na deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Nie możesz już zmienić waluty, gdyż zostało już stworzone prawdziwe kont MT5 (lub prawdziwe konto Deriv X na deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Nie możesz już zmienić waluty, gdyż dokonano już pierwszej wpłaty.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Waluta Twojego konta fiducjarnego jest obecnie ustawiona na [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Waluta Twojego konta fiducjarnego jest ustawiona na [_1].","This_is_your_[_1]_account_":"To Twoje konto [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Możesz [_1]ustawić nową walutę[_2] zanim dokonasz wpłaty pierwszy [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Nie chcesz handlować w [_1]? Możesz otworzyć kolejne konto w kryptowalucie.","Switch_account":"Zmień konto","Switch_account?":"Zmień konto?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Aby wpłacić pieniądze, przejdź na swoje konto [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Aby wypłacić pieniądze, przejdź na swoje konto [_1].","Switch_to_crypto_account?":"Przejść na konto w kryptowalucie?","To_deposit_cryptocurrency,_switch_your_account_":"Aby wpłacić kryptowalutę, zmień konto.","To_withdraw_cryptocurrency,_switch_your_account_":"Aby wypłacić kryptowalutę, zmień konto.","Cancel":"Anuluj","Withdraw":"Wypłata","Deposit":"Wpłata","Town/City":"Miasto","First_line_of_home_address":"Pierwsza część adresu zamieszkania","Postal_Code/ZIP":"Kod pocztowy","State/Province":"Stan/prowincja","Email_address":"Adres e-mail","Telephone":"Telefon","Country_of_Residence":"Kraj zamieszkania","details":"szczegóły","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Your_cashier_is_locked_":"Twoja sekcja Kasjer jest zablokowana.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Wybrana waluta jest dostępna tylko dla niektórych kont.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Osiągnięto limit wypłat. Prześlij dowód tożsamości i adresu, aby podnieś swój limit i dokonać wypłaty.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Usługi pośredników płatności są niedostępne w Twoim kraju lub w Twojej preferowanej walucie.","Select_payment_agent":"Wybierz pośrednika płatności","Amount_in":"Kwota w","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka, przecinek i apostrof.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Twój wniosek o wypłatę [_2] [_1] z Twojego konta [_3] na konto pośrednika płatności [_4] został zrealizowany.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Twój token wygasł lub jest nieprawidłowy. Kliknij [_1]tutaj[_2], aby ponownie rozpocząć proces weryfikacyjny.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Przepraszamy, wypłaty w tej walucie są obecnie niedostępne.","Please_[_1]deposit[_2]_to_your_account_":"Dokonaj [_1]wpłaty[_2] na swoje konto.","Sorry,_account_signup_is_not_available_in_your_country_":"Przepraszamy, zarejestrowanie konta nie jest możliwe w Twoim kraju.","Asset":"Kapitał","Opens":"Otwarcie","Closes":"Zamknięcie","Settles":"Rozliczenie","Upcoming_Events":"Nadchodzące wydarzenia","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Aby określić wyrównanie limitu, dodaj +/–. Na przykład, +0.005 oznacza limit 0,005 wyższy od punktu początkowego.","Digit":"Cyfra","Percentage":"Procent","Waiting_for_entry_tick_":"Oczekuje na pierwszą zmianę ceny.","High_Barrier":"Górny limit","Low_Barrier":"Dolny limit","Waiting_for_exit_tick_":"Oczekuje na końcową zmianę ceny.","Ticks_history_returned_an_empty_array_":"Historia zmian ceny jest pusta.","Chart_is_not_available_for_this_underlying_":"Dla tego aktywa bazowego wykres nie jest dostępny.","Purchase":"Kup","Net_profit":"Zysk netto","Return":"Zwrot","Time_is_in_the_wrong_format_":"Czas został podany w nieprawidłowym formacie.","Rise/Fall":"Wzrost/spadek","Higher/Lower":"Wyższy/niższy","Matches/Differs":"Zgadza się/Różni się","Even/Odd":"Parzysta/nieparzysta","Over/Under":"Ponad/poniżej","High-Close":"Zamknięcia-Wysoka","Close-Low":"Zamknięcia-Niska","High-Low":"Wysoka-Niska","Up/Down":"Góra/dół","Only_Ups/Only_Downs":"Tylko wzrosty/ Tylko spadki","In/Out":"Zakłady w/poza","Select_Trade_Type":"Wybierz rodzaj zakładu","Tick":"Zmiana ceny","Spot":"Cena aktualna","Spot_Time_(GMT)":"Czas Spot (GMT)","seconds":"sekundy","minutes":"min","hours":"godziny","days":"dni","ticks":"najmniejsze zmiany ceny","tick":"najmniejsza zmiana ceny","second":"sekunda","minute":"minuta","hour":"godzina","day":"dzień","Duration":"Czas trwania","End_Time":"Godzina zakończenia","Purchase_request_sent":"Zgłoszono chęć zakupu","High":"Wysoka","Close":"Zamknięcia","Low":"Niska","Select_Asset":"Wybór aktywa","Search___":"Wyszukaj...","Maximum_multiplier_of_1000_":"Mnożnik maksymalny wynoszący 1000.","Stake":"Stawka","Payout":"Wypłata","Multiplier":"Mnożnik","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Przepraszamy, Twoje konto nie ma uprawnień do kolejnych zakupów kontraktów.","Trading_is_unavailable_at_this_time_":"Handlowanie nie jest dostępne w tym czasie.","Please_reload_the_page":"Załaduj stronę ponownie","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Twój wniosek o uznanie za klienta profesjonalnego jest przetwarzany.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Twój wniosek o uznanie za klienta profesjonalnego [_1]nie został zatwierdzony[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Aplikuj ponownie, gdy spełnione zostaną wymagane kryteria.","More_information_can_be_found_in_an_email_sent_to_you_":"Więcej informacji znajdziesz w wiadomości e-mail, którą do Ciebie wysłaliśmy.","I_want_to_reapply":"Chcę aplikować ponownie","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Ne terenie UE finansowe opcje binarne są dostępne wyłącznie dla inwestorów profesjonalnych.","Apply_now_as_a_professional_investor":"Aplikuj teraz jako inwestor profesjonalny","Try_our_[_1]Synthetic_Indices[_2]_":"Wypróbuj nasze [_1]wskaźniki syntetyczne[_2].","Try_our_other_markets_":"Wypróbuj nasze inne rynki.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Proszę wypełnić [_1]formularz dot. Prawdziwego konta[_2] w celu zweryfikowania Twojego wieku zgodnie z wymogiem [_3]UK Gambling[_4] Commission (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Dostęp do konta jest tymczasowo ograniczony. Sprawdź swoją skrzynkę odbiorczą, aby uzyskać więcej szczegółów.","Contract_Confirmation":"Potwierdzenie kontraktu","Your_transaction_reference_is":"Kod referencyjny Twojej transakcji to","Total_Cost":"Całkowity koszt","Potential_Payout":"Możliwa wypłata","Potential_Profit":"Możliwy zysk","View":"Widok","This_contract_won":"Ten kontrakt wygrał","This_contract_lost":"Ten kontrakt przegrał","The_reset_time_is_[_1]":"Czas resetowania to [_1]","Now":"Teraz","Average":"Średnia","Buy_price":"Cena kupna","Final_price":"Cena ostateczna","Loss":"Strata","Profit":"Zysk","Account_balance:":"Saldo konta:","Reverse_Side":"Tylna strona","Front_Side":"Przednia strona","Pending":"Oczekujące","Submitting":"Wysyłanie","Submitted":"Wysłano","Failed":"Zakończone niepowodzeniem","Compressing_Image":"Kompresja obrazu","Checking":"Sprawdzanie","Checked":"Sprawdzono","Unable_to_read_file_[_1]":"Nie można odczytać pliku [_1]","Passport":"Paszport","Identity_card":"Dowód osobisty","Driving_licence":"Prawo jazdy","Invalid_document_format_":"Nieprawidłowy format dokumentu.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Rozmiar pliku ([_1]) przekracza dozwolony limit. Maksymalny dozwolony rozmiar pliku: [_2]","ID_number_is_required_for_[_1]_":"Numer dowodu jest wymagany w przypadku [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"W przypadku numeru ID ([_1]) akceptowane są wyłącznie litery, cyfry, znak spacji i podkreślenia oraz łącznik.","Expiry_date_is_required_for_[_1]_":"Data wygaśnięcia jest wymagana w przypadku [_1].","Place_of_birth":"Data urodzenia","Please_select_the_country_of_document_issuance":"Wybierz kraj wydania dokumentu","Choose_the_document_type":"Wybierz rodzaj dokumentu","Please_enter_the_correct_format__Example:":"Proszę wprowadzić poprawny format. Przykład:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoją skrzynkę e-mail Google i kliknij link w wiadomości e-mail, aby kontynuować.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoje konto na Facebooku i kliknij link w wiadomości e-mail, aby kontynuować.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoją skrzynkę e-mail powiązaną z Apple ID i kliknij link w wiadomości e-mail, aby przejść dalej.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Kliknij link z wiadomości e-mail, aby zmienić swoje hasło MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Kliknij link z wiadomości e-mail, aby zmienić swoje hasło Binary.","We’ve_sent_you_an_email":"Wysłaliśmy Ci wiadomość e-mail","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Używasz swojego konta [_1] w celu logowania do konta Binary.com. Aby zmienić swoją metodę logowania i korzystać z nazwy użytkownika i hasła, kliknij przycisk [_2]Zakończ powiązanie[_3].","Linked_with_[_1]":"Powiązane z [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Będzie konieczne ustawienie hasła, aby ukończyć proces.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Czy na pewno chcesz zakończyć powiązanie z [_1]?","Unlink":"Zakończ powiązanie","Country_not_found":"Nie znaleziono kraju","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Dokumenty z tego kraju nie są obecnie obsługiwane — spróbuj użyć inny rodzaj dokumentu","Submit_document":"Prześlij dokument","Select_country":"Wybierz kraj","e_g__United_States":"np. USA","Search_for_country":"Szukaj kraju","Select_issuing_country":"Wybierz kraj wydania","Submit_verification":"Prześlij weryfikację","Tips":"Porady","Documents_uploaded":"Przesłano dokumenty","Document_uploaded":"Przesłano dokument","Selfie_uploaded":"Selfie zostało przesłane","We're_now_ready_to_verify_your_identity":"Mamy już wszystko, aby zweryfikować Twoją tożsamość","Great,_that's_everything_we_need":"Świetnie, to wszystko, czego potrzebujemy","The_link_only_works_on_mobile_devices":"Link działa tylko na urządzeniach mobilnych","Something's_gone_wrong":"Coś poszło nie tak","You'll_need_to_restart_your_verification_on_your_computer":"Konieczne będzie ponowne rozpoczęcie weryfikacji na komputerze","Get_secure_link":"Pobierz bezpieczny link","Steps_required_to_continue_verification_on_your_mobile":"Kroki wymagane do przeprowadzenia weryfikacji na Twoim urządzeniu mobilnym","Check_back_here_to_finish_the_submission":"Sprawdź tutaj, aby ukończyć przesyłanie","Open_the_link_and_complete_the_tasks":"Otwórz link i ukończ zadania","Send_a_secure_link_to_your_phone":"Wyślij bezpieczny link na swój telefon","Here's_how_to_do_it:":"Jak to zrobić:","Continue_on_your_phone":"Kontynuuj na swoim telefonie","Your_computer_may_take_a_few_seconds_to_update":"Aktualizacja może zająć komputerowi kilka sekund","You_can_now_return_to_your_computer_to_continue":"Możesz teraz wrócić do swojego komputera, aby kontynuować","Uploads_successful":"Przesłano pomyślnie","Make_sure_everything_is_clear":"Upewnij się, że wszystko jest dobrze widoczne","Blurry_photo_detected":"Wykryto zamazane zdjęcie","Make_sure_full_document_is_visible":"Upewnij się, że widoczny jest cały dokument","Cut-off_image_detected":"Wykryto przycięty obraz","Move_away_from_direct_light":"Odsuń się od bezpośredniego światła","Glare_detected":"Wykryto prześwietlenie","Make_sure_all_of_the_document_is_in_the_photo":"Upewnij się, że całość dokumentu jest na zdjęciu","No_document_detected":"Nie wykryto dokumentu","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane karty są widoczne i czytelne, nie są zamazane ani prześwietlone","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Jeśli nie będziemy mogli tego odczytać, proces weryfikacji potrwa dłużej","To_smoothly_verify_you,_we_need_a_better_photo":"Aby zweryfikować Twoją tożsamość, potrzebujemy lepszego zdjęcia","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że szczegóły prawa jazdy są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane paszportowe są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane zezwolenia na pobyt są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane są widoczne i czytelne, nie są zamazane ani prześwietlone","Redo":"Ponów","Confirm":"Potwierdź","Upload_anyway":"Prześlij mimo to","Enlarge_image":"Powiększ obraz","Photo_of_your_document":"Zdjęcie Twojego dokumentu","Check_your_image":"Sprawdź swój obraz","Front_and_back":"Przód i tył","Driver's_license":"Prawo jazdy","Face_photo_page":"Strona ze zdjęciem twarzy","Residence_permit":"Zezwolenie na pobyt","Sorry,_no_mobile_phone_bills":"Przepraszamy, nie akceptujemy rachunków za telefon komórkowy","Documents_you_can_use_to_verify_your_identity":"Dokumenty, których możesz użyć, aby zweryfikować swoją tożsamość","It_must_be_an_official_photo_ID":"To musi być oficjalne zdjęcie dowodowe","These_are_the_documents_most_likely_to_show_your_current_home_address":"Te dokumenty najprawdopodobniej zawierają informacje o Twoim obecnym adresie zamieszkania","Choose_document":"Wybierz dokument","Select_a_%{country}_document":"Wybierz dokument z kraju: %{country}","or_upload_photo_–_no_scans_or_photocopies":"lub załaduj zdjęcie - skany i fotokopie nie są akceptowane","Continue_on_phone":"Kontynuuj na telefonie","Take_a_photo_with_your_phone":"Zrób zdjęcie swoim telefonem","Submit_identity_card_(back)":"Prześlij zdjęcie dowodu tożsamości (tylna strona)","Submit_identity_card_(front)":"Prześlij zdjęcie dowodu tożsamości (przednia strona)","Submit_license_(back)":"Prześlij zdjęcie prawa jazdy (tylna strona)","Submit_license_(front)":"Prześlij zdjęcie prawa jazdy (przednia strona)","Submit_passport_photo_page":"Prześlij zdjęcie strony paszportu ze zdjęciem","Submit_residence_permit_(back)":"Prześlij zdjęcie zezwolenia na pobyt (tylna strona)","Submit_residence_permit_(front)":"Prześlij zdjęcie zezwolenia na pobyt (przednia strona)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Zacznij proces od początku w najnowszej wersji przeglądarki Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Zacznij proces od początku w najnowszej wersji przeglądarki Safari","Unsupported_browser":"Nieobsługiwana przeglądarka","Close_identity_verification_screen":"Zamknij ekran weryfikacji tożsamości","Dismiss_alert":"Odrzuć powiadomienie","back":"tył","close":"zamknij","Restart_process_on_a_different_device":"Rozpocznij proces od nowa na innym urządzeniu","Camera_not_detected":"Nie wykryto aparatu","Must_be_under_10MB_":"Musi być mniejszy niż 10 MB.","File_size_exceeded_":"Przekroczono maksymalną wielkość pliku.","Try_using_another_file_type_":"Spróbuj użyć innego rodzaju pliku.","File_not_uploaded_":"Nie przesłano pliku.","An_error_occurred_while_loading_the_component":"Podczas ładowania komponentów wystąpił błąd","Only_your_face_can_be_in_the_selfie":"Na zdjęciu selfie może być tylko Twoja twarz","Multiple_faces_found":"Wykryto kilka twarzy","Your_face_is_needed_in_the_selfie":"Twoja twarz musi znajdować się na selfie","No_face_found":"Nie rozpoznano twarzy","Please_try_again":"Spróbuj ponownie","Connection_lost":"Utracono połączenie","Copy_the_link_to_your_phone":"Skopiuj link na swój telefon","Too_many_failed_attempts":"Zbyt wiele nieudanych prób","Try_using_a_JPG_or_PNG_file":"Użyj pliku JPG lub PNG","File_type_not_supported":"Nieobsługiwany rodzaj pliku","Loading___":"Ładowanie...","Loading":"Ładowanie","Check_that_your_number_is_correct":"Sprawdź, czy numer jest poprawny","Copied":"Skopiowano","Copy":"Kopiuj","Send_link":"Wyślij link","How_to_scan_a_QR_code":"Jak zeskanować kod QR","Point_your_phone’s_camera_at_the_QR_code":"Skieruj aparat telefonu na kod QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Jeśli to nie działa, pobierz skaner kodów QR z Google Play lub App Store","or":"lub","Scan_QR_code":"Skanuj kod QR","Get_link_via_SMS":"Uzyskaj link przez SMS","Copy_link":"Kopiuj link","Sending":"Wysyłanie","Enter_mobile_number":"Wprowadź numer telefonu","Enter_your_mobile_number:":"Wprowadź swój numer telefonu:","Scan_the_QR_code_with_your_phone":"Zeskanuj kod QR swoim telefonem","Send_this_one-time_link_to_your_phone":"Wyślij link jednorazowy na swój telefon","Open_the_link_on_your_mobile":"Otwórz link na swoim urządzeniu","Get_your_secure_link":"Pobierz swój bezpieczny link","Copy_the_link_to_your_mobile_browser":"Skopiuj link do przeglądarki na swoim telefonie","Continue":"Kontynuuj","Make_sure§":"Upewnij się","2__Your_desktop_window_stays_open":"2. Okno na komputerze musi pozostać otwarte","1__This_link_was_sent_by_you":"1. Ten link został wysłany przez Ciebie","Continue_with_the_verification":"Kontynuuj weryfikację","Linked_to_your_computer":"Połączone z Twoim komputerem","Take_a_photo_of_the_back_of_your_card":"Zrób zdjęcie tylnej strony dokumentu potwierdzającego tożsamość","Take_a_photo_of_the_front_of_your_card":"Zrób zdjęcie przedniej strony dowodu tożsamości","Take_a_photo_of_the_back_of_your_license":"Zrób zdjęcie tylnej strony prawa jazdy","Take_a_photo_of_the_front_of_your_license":"Zrób zdjęcie przedniej strony prawa jazdy","Take_a_photo_of_your_passport_photo_page":"Zrób zdjęcie strony ze zdjęciem z paszportu","Take_a_selfie_showing_your_face":"Zrób selfie przedstawiające Twoją twarz","Take_a_photo_using_the_basic_camera_mode_instead":"Zrób zdjęcie przy użyciu podstawowego trybu aparatu","Take_a_photo":"Zrób zdjęcie","Passport_photo_page":"Strona paszportu ze zdjęciem","Thank_you":"Dziękujemy","Verification_complete":"Weryfikacja zakończona","Refresh":"Odśwież","Recovery":"Odzyskiwanie","Follow_these_steps_to_recover_camera_access:":"Wypełnij te kroki, aby odzyskać dostęp do aparatu:","Refresh_this_page_to_restart_the_identity_verification_process":"Odśwież tę stronę, aby rozpocząć ponownie proces weryfikacji tożsamości","Grant_access_to_your_camera_from_your_browser_settings":"Udziel dostępu do swojego aparatu w ustawieniach przeglądarki","Recover_camera_access_to_continue_face_verification":"Odzyskaj dostęp do aparatu, aby kontynuować weryfikację twarzy","Camera_access_is_denied":"Odmowa dostępu do aparatu","We_cannot_verify_you_without_using_your_camera":"Nie możemy przeprowadzić weryfikacji bez użycia aparatu","Enable_camera":"Włącz aparat","When_prompted,_you_must_enable_camera_access_to_continue":"Gdy Cię poprosimy, włącz dostęp do aparatu, aby kontynuować","Allow_camera_access":"Zezwól na dostęp do aparatu","Provide_the_whole_document_page_for_best_results":"Prześlij całą stronę dokumentu, aby ułatwić proces","Upload_back_of_card_from_your_computer":"Prześlij skan tyłu dowodu osobistego ze swojego komputera","Upload_front_of_card_from_your_computer":"Prześlij skan przodu dowodu osobistego ze swojego komputera","Upload_back_of_license_from_your_computer":"Prześlij tylną część prawa jazdy ze swojego komputera","Upload_front_of_license_from_your_computer":"Prześlij przednią część prawa jazdy ze swojego komputera","Upload_passport_photo_page_from_your_computer":"Prześlij stronę paszportu ze zdjęciem ze swojego komputera","Upload_a_selfie_from_your_computer":"Prześlij selfie ze swojego komputera","Take_photo":"Zrób zdjęcie","Upload":"Prześlij","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Sprawdź, czy urządzenie jest podłączone i działa. Możesz też kontynuować weryfikację na swoim telefonie","Make_sure_your_device_has_a_working_camera":"Upewnij się, że Twoje urządzenie ma sprawny aparat","Camera_not_working?":"Aparat nie działa?","It_may_be_disconnected__Try_using_your_phone_instead_":"Może być odłączony. Spróbuj użyć swojego telefonu.","Make_sure_your_device's_camera_works":"Upewnij się, że aparat na Twoim urządzeniu jest sprawny","Camera_not_working":"Aparat nie działa","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Kiedy skończysz, pamiętaj o wciśnięciu Stop. Powtórz nagrywanie","Looks_like_you_took_too_long":"Zajęło Ci to zbyt długo","View_from_camera":"Widok z aparatu","Take_a_selfie":"Zrób zdjęcie","Photo_of_your_face":"Zdjęcie Twojej twarzy","Make_sure_your_selfie_clearly_shows_your_face":"Upewnij się, że selfie dobrze przedstawia twarz","Check_selfie":"Sprawdź selfie","Tips_to_take_a_good_selfie":"Wskazówki, jak zrobić dobre zdjęcie selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Stań przodem i upewnij się, że oczy są dobrze widoczne","Remove_your_glasses,_if_necessary":"Zdejmij okulary, jeśli to konieczne","We'll_compare_it_with_your_document":"Porównamy z Twoim dokumentem","Your_link_will_expire_in_one_hour":"Twój link wygaśnie za godzinę","Keep_this_window_open_while_using_your_mobile":"Nie zamykaj tego okna podczas korzystania z telefonu","Resend_link":"Wyślij link ponownie","We've_sent_a_secure_link_to_%{number}":"Wysłaliśmy bezpieczny link na %{number}","It_may_take_a_few_minutes_to_arrive":"To może potrwać kilka minut","Check_your_mobile":"Sprawdź swój telefon","Your_mobile_link_will_expire_in_one_hour":"Twój link mobilny wygaśnie za godzinę","Don't_refresh_this_page":"Nie odświeżaj tej strony","Once_you've_finished_we'll_take_you_to_the_next_step":"Gdy skończysz, przekierujemy Cię do następnego kroku","Connected_to_your_mobile":"Połączono z Twoim telefonem komórkowym","Upload_photo":"Załaduj zdjęcie","Example_of_a_blurry_document":"Przykład rozmazanego dokumentu","All_details_must_be_clear_—_nothing_blurry":"Wszystkie szczegóły muszą być widoczne — nic nie może być zamazane","Example_of_a_cut-off_document":"Przykład przyciętego dokumentu","Show_all_details_—_including_the_bottom_2_lines":"Pokaż wszystkie szczegóły — w tym 2 dolne linie","Example_of_a_document_with_glare":"Przykład prześwietlonego dokumentu","Move_away_from_direct_light_—_no_glare":"Odsuń się od bezpośredniego światła — unikaj prześwietlenia","Document_example":"Przykład dokumentu","The_photo_should_clearly_show_your_document":"Zdjęcie musi wyraźnie przedstawiać Twój dokument","Scans_and_photocopies_are_not_accepted":"Skany i fotokopie nie są akceptowane","Upload_passport_photo_page":"Załaduj zdjęcie strony paszportu ze zdjęciem","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Aby otworzyć konto bankowe, musisz zweryfikować swoją tożsamość.","It_will_only_take_a_couple_of_minutes_":"To zajmie tylko kilka minut.","Verify_Identity":"Potwierdź tożsamość","Open_your_new_bank_account":"Otwórz nowe konto bankowe","Please_enter_a_valid_Login_ID_":"Proszę podać poprawny login.","Amount":"Kwota","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Twój wniosek o przelanie [_2] [_1] z [_3] na [_4] został zrealizowany.","Resale_not_offered":"Brak możliwości odsprzedaży","You've_made_no_transactions_of_this_type_up_to_this_date_":"Do dziś nie zrealizowałeś żadnej transakcji tego rodzaju.","Date":"Data","Contract":"Kontrakt","Purchase_Price":"Cena zakupu","Sale_Date":"Data sprzedaży","Sale_Price":"Cena sprzedaży","Profit/Loss":"Zysk/Strata","Details":"Szczegóły","Total_Profit/Loss":"Całkowity zysk/ całkowita strata","Action_required!":"Wymagane działanie!","Sorry,_an_error_occurred_while_processing_your_request_":"Przepraszamy, podczas przetwarzania Twojego żądania wystąpił błąd.","position(s)":"orientacja(y)","withdrawal(s)":"wypłat(y)","We_couldn’t_read_that!":"Nie mogliśmy tego odzytać!","Remaining_characters:_[_1]_":"Pozostało znaków: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Nie wprowadzaj więcej niż [_1] znaków w obu polach.","Only_[_1]_are_allowed_":"Dozwolone są tylko [_1].","letters":"litery","numbers":"liczby","space":"spacja","Please_select_at_least_one_scope":"Proszę wybrać przynajmniej jeden zakres","New_token_created_":"Utworzono nowy token.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Maksymalna liczba tokenów ([_1]) została osiągnięta.","Name":"Nazwisko","Scopes":"Zakresy","Last_Used":"Ostatnio używane","Action":"Czynności","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Czy na pewno chcesz trwale usunąć token","Delete":"Usuń","Never_Used":"Nigdy nie użyte","You_have_not_granted_access_to_any_applications_":"Nie przyznano Ci dostępu do żadnej aplikacji.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Czy na pewno chcesz na stałe wyłączyć dostęp do aplikacji","Revoke_access":"Zablokowanie dostępu","Payments":"Płatności","Read":"Odczyt","Trade":"Handluj","Trading_Information":"Informacje o handlowaniu","Never":"Nigdy","Permissions":"Pozwolenia","Last_Login":"Ostatnie logowanie","You_did_not_change_anything_":"Nic nie zostało zmienione.","Your_changes_have_been_updated_successfully_":"Zmiany zostały wprowadzone.","Successful":"Zakończono powodzeniem","Date_and_Time":"Data i godzina transakcji","Browser":"Przeglądarka","IP_Address":"Adres IP","Your_account_has_no_Login/Logout_activity_":"Na Twoim koncie nie odnotowano żadnej aktywności związanej z logowaniem/wylogowywaniem.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Twoje konto jest w pełni zweryfikowane, a Twój limit wypłat został zwiększony.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Twój [_1]-dniowy limit wypłat wynosi obecnie [_3][_2].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"W ciągu ostatnich [_3] dni wypłacono już łącznie [_2] [_1].","Your_withdrawal_limit_is_[_1][_2]_":"Twój limit wypłat wynosi [_2] [_1].","You_have_already_withdrawn_[_1][_2]_":"Wypłacono już [_2] [_1].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Dlatego Twoje saldo dostępne do wypłaty wynosi tylko do [_2][_1], w zależności od dostępności Twoich środków na koncie.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Proszę potwierdzić, że wszystkie powyższe informacje są kompletne i prawdziwe.","Your_settings_have_been_updated_successfully_":"Twoje ustawienia zostały pomyślnie zaktualizowane.","Sorry,_an_error_occurred_while_processing_your_account_":"Przepraszamy, wystąpił błąd podczas operacji na Twoim koncie.","Please_select_a_country":"Proszę wybrać kraj","Timed_out_until":"Okres wyłączenia do","Excluded_from_the_website_until":"Wyłączono z portalu do dnia","Session_duration_limit_cannot_be_more_than_6_weeks_":"Limit czasu sesji nie może przekroczyć 6 tygodni.","Time_out_must_be_after_today_":"Okres wyłączenia musi się rozpoczynać jutro lub później.","Time_out_cannot_be_more_than_6_weeks_":"Czas wyłączenia nie może przekraczać 6 tygodni.","Time_out_cannot_be_in_the_past_":"Czas wyłączenia nie może być datą przeszłą.","Please_select_a_valid_time_":"Proszę wybrać poprawny czas.","Exclude_time_cannot_be_less_than_6_months_":"Czas wyłączenia nie może być krótszy niż 6 miesięcy.","Exclude_time_cannot_be_for_more_than_5_years_":"Czas wyłączenia nie może być dłuższy niż 5 lat.","Confirm_changes":"Potwierdź zmiany","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Zaktualizujemy Twoje limity. Kliknij [_1]Zgadzam się i akceptuję[_2], aby potwierdzić, że w pełni odpowiadasz za swoje działania i że nie ponosimy odpowiedzialności za uzależnienie ani straty.","Agree_and_accept":"Zgadzam się i akceptuję","Go_back":"Wróć","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Po kliknięciu przycisku „OK” handlowanie na portalu nie będzie możliwe aż do wybranej daty.","Your_changes_have_been_updated_":"Twoje zmiany zostały wprowadzone.","Disable":"Wyłącz","Enable":"Włącz","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Uwierzytelnianie dwuskładnikowe na Twoim koncie zostało włączone.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Uwierzytelnianie dwuskładnikowe na Twoim koncie zostało wyłączone.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Nie musisz weryfikować swojego konta w obecnej chwili.[_1]Poinformujemy Cię, gdy będzie to wymagane.","No_authentication_required":"Uwierzytelnianie nie jest wymagane","Back_to_trading":"Wróć do handlowania","You_are_categorised_as_a_professional_client_":"Zaklasyfikowano Cię jako klienta profesjonalnego.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Zaklasyfikowano Cię jako klienta detalicznego. Złóż wniosek o uznanie za profesjonalnego gracza.","Bid":"Oferta kupna","Closed_Bid":"Zamknięte oferty","Reference_ID":"ID referencyjne","Description":"Opis","Credit/Debit":"Winien/Ma","Balance":"Saldo","Top_up_error":"Błąd doładowania","Understood":"Rozumiem","Top-up_successful":"Doładowanie powiodło się","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"Zaksięgowano [_1] na Twoim koncie demo: [_2].","Go_to_statement":"Przejdź do oświadczenia","Continue_trading":"Kontynuuj handlowanie","Your_Demo_balance_has_been_reset_":"Twoje demo saldo zostało zresetowane.","Account":"Konto","Available_Markets":"Dostępne rynki","Type":"Typ","Currency":"Waluta","Multipliers_Account":"Konto mnożnikowe","Gaming_Account":"Konto gracza","Options_Account":"Konto opcji","Real_Account":"Konto rzeczywiste","Counterparty":"Kontrahent","Jurisdiction":"Jurysdykcja","Create_account":"Załóż konto","Change_currency":"Zmień walutę","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Uwaga: Możesz mieć wyłącznie jedno konto fiducjarne. Możesz zmienić walutę swojego konta fiducjarnego w dowolnej chwili, zanim dokonasz pierwszej wpłaty lub utworzysz prawdziwe konto MT5 (lub prawdziwe konto Deriv X na deriv.com). Możesz też otworzyć jedno konto dla każdej obsługiwanej waluty.","This_account_is_disabled":"To konto jest wyłączone","This_account_is_excluded_until_[_1]":"To konto jest wyłączone z handlowania do [_1]","Set_currency":"Ustaw walutę","Commodities":"Towary","Stock_Indices":"Wskaźniki giełdowe","Stocks":"Akcje","Synthetic_Indices":"Wskaźniki syntetyczne","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Jeśli masz u nas konto, za kilka minut wyślemy na Twój adres e-mail link umożliwiający zresetowanie hasła.","Sign_up":"Zarejestruj się","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Handel Kontraktami na różnice kursowe (CFD) opartymi na Wskaźnikach syntetycznych może nie być odpowiedni dla każdego. Upewnij się, że w pełni rozumiesz ryzyko z nim związane, w tym możliwość utraty wszystkich środków zgromadzonych na Twoim koncie MT5. Hazard może uzależniać – prosimy o rozsądną grę.","Do_you_wish_to_continue?":"Chcesz kontynuować?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}You are about to purchase a product that is not simple and may be difficult to understand: Contracts for Difference and Forex. As a general rule, the CNMV considers that such products are not appropriate for retail clients, due to their complexity.","Acknowledge":"Rozumiem","Change_Password":"Zmień hasło","The_investor_password_of_account_number_[_1]_has_been_changed_":"Hasło inwestycyjne do konta o numerze [_1] zostało zmienione.","Reset_Password":"Zresetuj hasło","Verify_Reset_Password":"Zweryfikuj zresetowane hasło","Please_check_your_email_for_further_instructions_":"Sprawdź wiadomość e-mail z dalszymi informacjami.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Dokonano wpłaty [_1] na konto o numerze [_3]. Identyfikator transakcji: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Dokonano wypłaty [_1] z konta o numerze [_2] na konto [_3]. Identyfikator transakcji: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Aby wypłacić środki z [_1] MetaTrader 5, proszę [_2]zweryfikować[_3] swoje konto Binary.","Current_password":"Aktualne hasło","New_password":"Nowe hasło","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Aby przelać środki na swoje konto MT5, wprowadź kwotę [_1] lub wyższą","You_have_insufficient_funds_in_your_MT5_account_":"Masz niewystarczające środki na koncie MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Niestety ta funkcja jest niedostępna w Twojej jurysdykcji.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Z powodu problemów na naszym serwerze niektóre konta MT5 są w chwili obecnej niedostępne. [_1]Przepraszamy za niedogodności i dziękujemy za cierpliwość.","Unavailable":"Niedostępne","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"Zaksięgowano [_1] na Twoim koncie demo MT5: [_2].","_(Region_added)":" (Dodano region)","_(Temporarily_unavailable)":" (Tymczasowo niedostępne)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nasze serwery są częściowo niedostępne. Pracujemy nad bym, by je przywrócić. Spróbuj ponownie za kilka minut.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Użyj hasła MT5, aby zalogować się do dowolnego konta [_1], korzystając z aplikacji MT5 na swoim telefonie lub innym urządzeniu.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Spowoduje to zmianę hasła do wszystkich kont [_1].","Demo_Accounts":"Konta Demo","Real-Money_Accounts":"Konta z prawdziwymi pieniędzmi","Demo_Account":"Konto Demo","Real-Money_Account":"Konto z prawdziwymi pieniędzmi","for_account_[_1]":"dla konta [_1]","[_1]_Account_[_2]":"[_1] Konto [_2]","MT5_Financial":"MT5 Finanse","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Wprowadź swoje hasło MT5, aby dodać konto [_1] [_2].","real":"prawdziwe","MT5_Synthetic":"Syntetyczne MT5","Get_[_1]":"Uzyskaj [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Saldo Twojego konta demo wynosi obecnie [_1] lub mniej. Możesz zasilić swoje konto dodatkową kwotą [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Możesz zasilić swoje konto demo dodatkową kwotą [_1], jeśli Twoje saldo wynosi [_2] lub mniej.","Yes,_I'm_sure":"Tak, na pewno","Are_you_sure?":"Czy na pewno?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Po utworzeniu tego konta w walucie fiducjarnej nie będzie już można zmienić waluty tego konta [_1]. Na pewno chcesz kontynuować?","Go_to_Deriv_to_add_an_MT5_account":"Przejdź do Deriv, aby dodać konto MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Będziesz mógł zalogować się do Deriv za pomocą swoich danych logowania Binary.com.","Back":"Poprzedni","Go_to_Deriv":"Przejdź do Deriv","Address":"Adres","Account_currency":"Waluta konta","Financial_assessment":"Ocena finansowa","Personal_details":"Dane osobowe","Terms_of_use":"Warunki użycia","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) to wersja Tether powiązana z dolarem amerykańskim (USD) i zbudowana w oparciu o technologię blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) to wersja Tether powiązana z dolarem amerykańskim (USD) i umieszczona na platformie Ethereum.","Title_and_name":"Zwrot grzecznościowy i imię","Real_money_account_opening":"Otwieranie konta z prawdziwymi pieniędzmi","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Twój token wygasł lub jest nieprawidłowy. Kliknij tutaj, aby ponownie rozpocząć proces weryfikacyjny.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Podany adres e-mail jest już w użyciu. Jeżeli nie pamiętasz hasła, skorzystaj z opcji odzyskiwania hasła lub skontaktuj się z obsługą klienta.","Password_is_not_strong_enough_":"Hasło jest za słabe.","Upgrade_now":"Uaktualnij teraz","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] dni [_2] godz. [_3] min","Your_trading_statistics_since_[_1]_":"Twoje statystyki handlowe od [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Inwestowanie w [_1] może stać się poważnym uzależnieniem, tak jak wszystkie inne czynności, którym poświęcamy zbyt wiele czasu. Aby zapobiec niebezpieczeństwu takiego uzależnienia, umożliwiamy sprawdzanie rzeczywistej sytuacji na bieżąco, co zapewnia Ci regularne zestawienie Twoich zakładów i kont.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Aby ponownie rozpocząć proces odzyskiwania konta, kliknij poniższe łącze.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Masz nowe hasło Binary, aby zalogować się do Binary.com.","Success":"Udało się","Done":"Gotowe","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Powiązanie Twojego konta Binary z [_1] zostało zakończone. Korzystaj ze [_2]swojego adresu e-mail i hasła podczas logowania.","Success!":"Udało się!","Got_it":"Rozumiem","Binary_Password_Reset":"Reset hasła Binary","Binary_password":"Hasło Binary","You_have_added_a_[_1]_account_":"Dodano konto [_1].","Add_account":"Dodaj konto","Add_new_crypto_account":"Dodaj nowe konto w kryptowalucie","Add_new_account":"Dodaj nowe konto","Create_a_cryptocurrency_account":"Utwórz konto w kryptowalucie","Choose_your_preferred_cryptocurrency":"Wybierz preferowaną kryptowalutę","You_can_open_an_account_for_each_cryptocurrency_":"Dla każdej kryptowaluty możesz utworzyć jedno konto.","Choose_a_cryptocurrency_account":"Wybierz konto w kryptowalucie","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Wybierz jedno ze swoich kont lub dodaj nowe konto w kryptowalucie","Choose_an_account":"Wybierz konto","Choose_one_of_your_accounts_or_add_a_new_account":"Wybierz jedno ze swoich kont lub dodaj nowe konto","Choose_one_of_your_accounts":"Wybierz jedno ze swoich kont","Please_select_the_currency_for_this_account:":"Proszę wybrać walutę dla tego konta:","deposit":"wpłaty","deposit_or_create_a_CFDs_account":"wpłaty lub utworzysz konto CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Czy na pewno chcesz utworzyć teraz swoje konto [_1]?","Note:":"Uwaga:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Dla każdej obsługiwanej waluty można utworzyć jedno konto.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Czy na pewno chcesz utworzyć konto fiducjarne w [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Możesz mieć wyłącznie jedno konto fiducjarne. Możesz zmienić walutę swojego konta fiducjarnego w dowolnej chwili, zanim dokonasz pierwszej [_1].","Yes":"Tak","Create_[_1]_account":"Utwórz konto [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Waluta konta została ustawiona jako [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Waluta konta została zmieniona z [_1] na [_2].","Please_choose_a_currency":"Proszę wybrać walutę","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Masz nowe hasło MT5 do logowania na swoje konta [_1] w aplikacji internetowej i na urządzenia mobilne.","Asian_Up":"Azjatyckie – Wzrost","Asian_Down":"Azjatyckie – Spadek","Higher":"Wyższe","Higher_or_equal":"Wyższe lub równe","Lower":"Niższe","Lower_or_equal":"Niższe lub równe","Digit_Matches":"Cyfra zgadza się","Digit_Differs":"Cyfra nie zgadza się","Digit_Odd":"Cyfra nieparzysta","Digit_Even":"Cyfra parzysta","Digit_Over":"Cyfra większa","Digit_Under":"Cyfra mniejsza","Ends_Outside":"Kończy się poza","Ends_Between":"Kończy się pomiędzy","Stays_Between":"Pozostaje pomiędzy","Goes_Outside":"Przekroczy","Touches":"Osiąga","Does_Not_Touch":"Nie osiąga","Call_Spread":"Spread zakupu","Put_Spread":"Spread sprzedaży","High_Tick":"Duże zmiany ceny","Low_Tick":"Mała zmiana ceny","Only_Ups":"Tylko wzrosty","Only_Downs":"Tylko spadki","Multiplier_Up":"Mnożnik w górę","Multiplier_Down":"Mnożnik w dół","Equals":"Równa się","Not":"Nie","Buy":"Kup","Sell":"Sprzedaj","Waiting_for_contract_settlement_":"Oczekiwanie na rozliczenie kontraktu.","including_Deal_Cancel__Fee":"w tym Anulowanie transakcji. Opłata","Contract_has_not_started_yet":"Kontrakt jeszcze się nie rozpoczął","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Ten kontrakt jest dostępny tylko na [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Ten kontrakt jest dostępny tylko na DTrader.[_1][_2]Przejdź do Dtrader[_3], aby zamknąć lub anulować tę transakcję.","Contract_Result":"Wynik kontraktu","Close_Time":"Czas zamknięcia","Exit_Spot_Time":"Czas punktu wyjściowego","Audit":"Audyt","View_chart":"Zobacz wykres","Audit_Page":"Strona audytowa","Contract_Starts":"Kontrakt zaczyna się","Contract_Ends":"Kontrakt kończy się","Contract_Details":"Szczegóły kontraktu","Target":"Cel","Contract_Information":"Informacje o kontrakcie","Contract_Type":"Rodzaj kontraktu","Transaction_ID":"ID transakcji","Remaining_Time":"Pozostały czas","Maximum_payout":"Maksymalna wypłata","Barrier_Change":"Zmiana limitu","Current":"Obecne","Spot_Time":"Czas spot","Current_Time":"Obecny czas","Indicative":"Orientacyjny","Potential_Profit/Loss":"Potencjalny zysk/strata","Deal_Cancel__Fee":"Anulowanie transakcji. Opłata","You_can_close_this_window_without_interrupting_your_trade_":"Możesz zamknąć te okno; nie będzie to miało żadnego wpływu na zakład.","There_was_an_error":"Wystąpił błąd","Sell_at_market":"Sprzedawaj na rynku","Note":"Uwaga","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Kontrakty będą sprzedawane po obowiązującej cenie rynkowej po dotarciu wniosku na nasze serwery. Cena może różnić się od podanej ceny.","You_have_sold_this_contract_at_[_1]_[_2]":"Sprzedano ten kontrakt po cenie [_2] [_1]","Your_transaction_reference_number_is_[_1]":"Numer referencyjny Twojej transakcji to [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Dziękujemy za rejestrację! Sprawdź swoją skrzynkę e-mailową, aby ukończyć proces rejestracji.","All_markets_are_closed_now__Please_try_again_later_":"Wszystkie rynki są obecnie zamknięte. Prosimy spróbować później.","Withdrawal":"Wypłata","demo_credit_to_account":"demo zostały zaksięgowane na koncie","login":"logowanie","logout":"Wyloguj","Asians":"Azjatyckie","Call_Spread/Put_Spread":"Spread zakupu/Spread sprzedaży","Digits":"Cyfry","Ends_Between/Ends_Outside":"Zakończy się w/ Zakończy się poza","High/Low_Ticks":"Duże/małe zmiany ceny","Lookbacks":"Opcje wsteczne","Stays_Between/Goes_Outside":"Pozostanie pomiędzy/ Przekroczy","Touch/No_Touch":"Osiągnie/Nie osiągnie","Christmas_Day":"Boże Narodzenie","Closes_early_(at_18:00)":"Zamykane wcześnie (o 18:00)","Closes_early_(at_21:00)":"Zamykane wcześnie (o 21:00)","Fridays":"piątki","New_Year's_Day":"Nowy Rok","today":"dziś","today,_Fridays":"dziś, piątki","There_was_a_problem_accessing_the_server_":"Wystąpił błąd podczas uzyskiwania dostępu do serwera.","There_was_a_problem_accessing_the_server_during_purchase_":"Wystąpił błąd podczas uzyskiwania dostępu do serwera w trakcie zakupu."}; \ No newline at end of file +texts_json['PL'] = {"Real":"Prawdziwe","Multipliers":"Mnożniki","Gaming":"Gra hazardowa","Options":"Opcje","Real_CFDs":"Prawdziwe CFD","Real_Financial":"Prawdziwe finansowe","Demo_CFDs":"Demo CFD","Demo_Financial":"Demo finansowe","Derived":"Pochodne","Demo_Derived":"Demo Pochodne","Real_Derived":"Prawdziwe pochodne","CFDs":"Kontrakty CFDs","Financial":"Finansowe","Financial_STP":"Finansowe STP","Demo_Financial_STP":"Demo finansowe STP","Real_Financial_STP":"Prawdziwe finansowe STP","Multi-Collateral":"Wielokrotne zabezpieczenie","Paxos_Standard":"Paxos standardowe","Binary_Coin":"Moneta binarna","Connecting_to_server":"Łączenie z serwerem","Use_a_few_words,_avoid_common_phrases":"Użyj kilku słów, unikaj popularnych zwrotów","No_need_for_symbols,_digits,_or_uppercase_letters":"Nie ma potrzeby używania symboli, cyfr i wielkich liter","Add_another_word_or_two__Uncommon_words_are_better_":"Dodaj kolejne słowo lub dwa. Nietypowe słowa są lepsze.","Straight_rows_of_keys_are_easy_to_guess":"Proste ciągi znaków są proste do przewidzenia","Short_keyboard_patterns_are_easy_to_guess":"Krótkie sekwencje klawiatury są łatwe do przewidzenia","Use_a_longer_keyboard_pattern_with_more_turns":"Użyj dłuższego ciągu znaków z klawiatury ze zmianami","Repeats_like_\"aaa\"_are_easy_to_guess":"Powtórzenia, takie jak „aaa” są łatwe do przewidzenia","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Ciągi, takie jak „abcabcabc” są tylko trochę trudniejsze do przewidzenia niż „abc”","Avoid_repeated_words_and_characters":"Unikaj powtarzających się słów i znaków","Sequences_like_abc_or_6543_are_easy_to_guess":"Ciągi znaków, takie jak abc lub 6543 łatwo przewidzieć","Avoid_sequences":"Unikaj ciągów znaków","Recent_years_are_easy_to_guess":"Ostatnie lata są łatwe do przewidzenia","Avoid_recent_years":"Unikaj ostatnich lat","Avoid_years_that_are_associated_with_you":"Unikaj lat, które są powiązane z Tobą","Dates_are_often_easy_to_guess":"Daty są często łatwe do przewidzenia","Avoid_dates_and_years_that_are_associated_with_you":"Unikaj dat, które są powiązane z Tobą","This_is_a_top-10_common_password":"To hasło jest wśród 10 najpopularniejszych","This_is_a_top-100_common_password":"To hasło jest wśród 100 najpopularniejszych","This_is_a_very_common_password":"To bardzo popularne hasło","This_is_similar_to_a_commonly_used_password":"Podobne do często używanych haseł","A_word_by_itself_is_easy_to_guess":"Samo słowo jest łatwe do przewidzenia","Names_and_surnames_by_themselves_are_easy_to_guess":"Imiona i nazwiska użyte samodzielnie są łatwe do przewidzenia","Common_names_and_surnames_are_easy_to_guess":"Popularne imiona i nazwiska można łatwo przewidzieć","Capitalization_doesn't_help_very_much":"Zapis wielką literą zbytnio tu nie pomaga","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Wszystkie wyrazy zapisane wielką literą są tak łatwe do przewidzenia, jak wszystkie zapisane małą literą","Reversed_words_aren't_much_harder_to_guess":"Słowa zapisane w odwrotnej kolejności nie są dużo trudniejsze do przewidzenia","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Łatwe do przewidzenia substytuty, takie jak „@” zamiast „a” nie są zbyt pomocne","This_password_is_on_the_blacklist":"To hasło znajduje się na czarnej liście","Unknown_OS":"Nieznany system operacyjny","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Nastąpi przekierowanie do witryny internetowej strony trzeciej, której właścicielem nie jest Binary.com.","Click_OK_to_proceed_":"Kliknij OK, aby przejść dalej.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Upewnij się, że na Twoim urządzeniu jest zainstalowana aplikacja Telegram.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] wymaga włączenia w przeglądarce funkcji przechowywania internetowego (Web Storage), aby zapewnić poprawne działanie. Włącz tę funkcję lub wyłącz tryb przeglądania prywatnego.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Aby zobaczyć tę stronę, [_1]zaloguj się[_2] lub [_3]zarejestruj[_4].","This_feature_is_available_to_demo_accounts_only_":"Ta funkcja jest dostępna tylko dla kont demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Korzystasz z konta demo. Przejdź na swoje prawdziwe konto lub utwórz je, aby uzyskać dostęp do sekcji Kasjer.","This_page_is_only_available_to_logged_out_clients_":"Ta strona jest dostępna tylko dla wylogowanych klientów.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Handlowanie opcjami binarnymi nie jest dostępne na Twoim koncie mnożnikowym.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Inwestowanie w opcje binarne nie jest dostępne przez konto mnożnikowe.
Przejdź do swojego konta z opcjami.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Przepraszamy, inwestowanie w opcje nie jest dostępne w Wielkiej Brytanii i na Wyspie Man","Binary_options_trading_is_not_available_in_your_country_":"Handlowanie opcjami binarnymi nie jest dostępne w Twoim kraju.","This_page_is_not_available_in_your_country_of_residence_":"Ta strona nie jest dostępna w Twoim kraju zamieszkania.","Page_not_available,_you_did_not_deactivate_your_account_":"Strona jest niedostępna, konto nie zostało dezaktywowane.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Niestety ta usługa nie jest dostępna w Twoim kraju. Jeśli chcesz inwestować w mnożniki, wypróbuj DTrader na Deriv.","Go_to_DTrader":"Przejdź do DTrader","Sign_out":"Wyloguj","[_1]_Account":"Konto [_1]","Click_here_to_open_a_Real_Account":"Kliknij tutaj, aby otworzyć prawdziwe konto","Open_a_Real_Account":"Otwórz Prawdziwe konto","Click_here_to_open_a_Multipliers_Account":"Kliknij tutaj, aby otworzyć konto mnożnikowe","Click_here_to_open_an_Options_account":"Kliknij tutaj, aby otworzyć konto opcji","Open_a_Multipliers_Account":"Otwórz konto mnożnikowe","Go_to_Deriv_to_add_an_account":"Przejdź do Deriv, aby dodać konto","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Będziesz mógł zalogować się do Deriv za pomocą swoich danych logowania Binary.com.","Cancel":"Anuluj","Go_to_Deriv":"Przejdź do Deriv","Create_Account":"Załóż konto","Accounts_List":"Lista kont","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Wpłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wpłaty po zakończeniu konserwacji.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Wypłaty są tymczasowo niedostępne z powodu konserwacji systemu. Możesz dokonać wypłaty po zakończeniu konserwacji.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer kryptowalut jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Sekcja Kasjer jest obecnie zablokowana. Skontaktuj się z nami przez czat na żywo, aby dowiedzieć się, jak ją odblokować.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Ustaw [_1]walutę swojego konta[_2], aby włączyć możliwość dokonywania wpłat i wypłat.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Twoje imię i nazwisko oraz data urodzenia w dokumencie nie pasuje do Twojego imienia i nazwiska na profilu Binary. Zaktualizuj swoje imię i nazwisko w sekcji [_1]Dane osobowe[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Twoja data urodzenia w dokumencie nie pasuje do Twojego imienia i nazwiska na profilu Binary. Zaktualizuj swoje imię i nazwisko w sekcji [_1]Dane osobowe[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Twoje imię i nazwidko widoczne na dokumencie nie pasuje do Twojego imienia i nazwiska na profilu Binary. Zaktualizuj swoje imię i nazwisko w sekcji [_1]Dane osobowe[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Twoje konto nie zostało zweryfikowane. Prześlij [_1]dowód tożsamości i dowód adresu[_2], aby zweryfikować swoje konto i złożyć wniosek o wypłatę.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Twoje konto nie zostało zweryfikowane. Prześlij [_1]dowód tożsamości i dowód adresu[_2], aby zweryfikować swoje konto i uzyskać dostęp do sekcji Kasjer.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Przesłane dokumenty identyfikacyjne wygasły. Prześlij ważne dokumenty tożsamości, aby odblokować sekcję Kasje.","Your_[_1]proof_of_identity[_2]_has_expired_":"Twoje [_1]potwierdzenie tożsamości[_2] jest już nieważne.","Your_[_1]proof_of_address[_2]_has_expired_":"Twoje [_1]potwierdzenie adresu[_2] jest już nieważne.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Twoje [_1]potwierdzenie tożsamości[_3] i [_2]potwierdzenie adresu[_3] nie zostało zweryfikowane.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Twoje [_1]potwierdzenie tożsamości[_2] nie zostało zweryfikowane.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Twoje [_1]potwierdzenie adresu[_2] nie zostało zweryfikowane.","Please_submit_your_[_1]proof_of_identity[_2]_":"Prześlij [_1]potwierdzenie tożsamości[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Prześlij [_1]potwierdzenie adresu[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Wybrano opcję samodzielnego wykluczenia na naszej stronie do dnia [_1]. Jeśli nie możesz zawrzeć zakładu lub wpłacić środków po okresie samodzielnego wykluczenia, skontaktuj się z nami przez czat na żywo.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Twój dostęp do sekcji Kasjer został tymczasowo wyłączony, gdyż nie ustawiono30-dniowego limitu obrotów. Przejdź do sekcji [_1]Samodzielnego wykluczenia[_2], aby ustawić swój 30-dniowy limit obrotów.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Opcja dokonywania wypłat z MT5 została wyłączona na Twoim koncie. Sprawdź swoją skrzynkę e-mailową, aby uzyskać więcej informacji.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Niestety możesz tylko dokonywać wypłat. Skontaktuj się z nami przez czat na żywo, aby umożliwić wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wpłaty i wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wypłaty.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Twoje [_1]dane osobowe[_2] są niekompletne. Przejdź do ustawień swojego konta i uzupełnić swoje dane osobowe, aby umożliwić wpłaty.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Nie ustawiono kraju zamieszkania. Aby uzyskać dostęp do sekcji Kasjer, zaktualizuj [_1]kraj zamieszkania[_2] w sekcji danych osobowych w ustawieniach swojego konta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Sekcja Kasjer jest zablokowana. Ukończ [_1]ocenę finansową[_2], aby ją odblokować.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Nie podano numeru identyfikacji podatkowej. Jest on wymagany z powodów prawnych i regulacyjnych. Przejdź do sekcji [_1]Dane osobowe[_2] w ustawieniach swojego konta i podaj swój najnowszy numer identyfikacji podatkowej.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Niestety możesz dokonywać tylko wypłat. Skontaktuj się z nami przez czat na żywo.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Wypłaty zostały wyłączone na Twoim koncie. Poczekaj, aż przesłane przez Ciebie dokumenty zostaną zweryfikowane.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Proszę [_1]zaakceptować zaktualizowany regulamin[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Aby podnieść wysokość limitów wpłat i limitów handlowych, proszę [_1]zaakceptować zaktualizowany regulamin[_1].","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Twoje konto jest tymczasowo wyłączone. Skontaktuj się z nami przez czat na żywo, aby włączyć ponownie możliwość dokonywania wpłat i wypłat.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Ukończ ocenę zdolności, aby uzyskać dostęp do sekcji Kasjer.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Sekcja kasjer jest zablokowana. Zobacz, [_1]jak chronić swoje środki[_2], zanim przejdziesz dalej.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Twoje konto wymaga weryfikacji. Prześlij [_1]potwierdzenie tożsamości[_2], aby uzyskać dostęp do Kasjera.","Account_Authenticated":"Konto zweryfikowane","Connection_error:_Please_check_your_internet_connection_":"Błąd połączenia: sprawdż połączenie internetowe","Network_status":"Status sieci","This_is_a_staging_server_-_For_testing_purposes_only":"To jest serwer testowy służący wyłącznie testowaniu","The_server_endpoint_is:_[_2]":"Punkt końcowy serwera to: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Twoja przeglądarka internetowa ([_1]) jest nieaktualna, co może negatywnie wpływać na korzystanie z portalu handlowego. Przejdź dalej na własne ryzyko lub [_2]zaktualizuj przeglądarkę[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Osiągnięto maksymalną liczbę żądań na sekundę. Spróbuj jeszcze raz.","There_was_some_invalid_character_in_an_input_field_":"Nieprawidłowy znak w polu formularza.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulacjami instytucji UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulacjami instytucji Malta Gaming Authority","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulacjami instytucji Malta Financial Services Authority (MFSA),","Please_select":"Wybierz","Please_accept_the_terms_and_conditions_":"Proszę zaakceptować regulamin.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Potwierdź, że nie jesteś osobą zajmującą eksponowane stanowisko polityczne.","Today":"Dziś","Select_date":"Wybierz datę","Barrier":"Limit","Entry_Spot":"Punkt wejściowy","Exit_Spot":"Punkt wyjściowy","Charting_for_this_underlying_is_delayed":"Dla tego rynku podstawowego wykresy są opóźnione","Payout_Range":"Zakres wypłaty","Purchase_Time":"Godzina zakupu","Reset_Barrier":"Limit resetowania","Reset_Time":"Moment resetowania","Selected_Tick":"Wybrana najmniejsza zmiana ceny","Exit_Time":"Czas wyjściowy","Start_Time":"Godzina rozpoczęcia","Fiat":"Fiducjarna","Crypto":"Kryptowaluty","Step_[_1]:_[_2]_([_1]_of_[_3])":"Krok [_1]: [_2] ([_1] z [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Kod weryfikacyjny jest nieprawidłowy. Skorzystaj z łącza przesłanego na Twój adres e-mail.","Indicates_required_field":"Wskazuje wymagane pole","Please_select_the_checkbox_":"Proszę zaznaczyć pole wyboru.","This_field_is_required_":"To pole jest wymagane.","Should_be_a_valid_number_":"Powinien to być prawidłowy numer.","Up_to_[_1]_decimal_places_are_allowed_":"Dozwolonych jest do [_1] miejsc po przecinku.","Should_be_[_1]":"Powinno być [_1]","Should_be_between_[_1]_and_[_2]":"Wartość powinna wynosić od [_1] do [_2]","Should_be_more_than_[_1]":"Wartość powinna być większa niż [_1]","Should_be_less_than_[_1]":"Wartość powinna być mniejsza niż [_1]","Insufficient_balance_":"Niewystarczające saldo.","Invalid_email_address_":"Nieprawidłowy adres e-mail.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Hasło powinno się składać z małych i wielkich angielskich liter oraz cyfr.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka i apostrof.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Dozwolone są tylko litery, liczby, spacja i następujące znaki specjalne: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Dozwolone są tylko litery, spacja, myślniki, kropki i apostrof.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Dozwolone są tylko litery, cyfry, spacja i myślnik.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Podaj prawidłowy numer telefonu (np. +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Wprowadzone hasła nie są identyczne.","[_1]_and_[_2]_cannot_be_the_same_":"Wartości [_1] i [_2] nie mogą być takie same.","Minimum_of_[_1]_characters_required_":"Minimalna liczba znaków: [_1].","You_should_enter_[_1]_characters_":"Proszę wprowadzić następującą liczbę znaków: [_1].","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Powinno rozpoczynać się od litery lub cyfry i może zawierać myślnik i podkreślnik.","Invalid_verification_code_":"Nieprawidłowy kod weryfikacyjny.","Your_password_cannot_be_the_same_as_your_email_address_":"Twoje hasło nie może być takie samo jak adres e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transakcja dokonana przez [_1] (App ID: [_2])","Guide":"Przewodnik","Next":"Następny","Finish":"Zakończ","Step":"Krok","Select_your_market_and_underlying_asset":"Wybierz swój rynek i aktywa bazowe","Select_your_trade_type":"Wybierz rodzaj zakładu","Adjust_trade_parameters":"Dostosuj parametry handlowe","Predict_the_directionand_purchase":"Oszacuj kierunek zmian
i kup","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Limit czasu sesji zakończy się za [_1] s.","January":"Styczeń","February":"Luty","March":"Marzec","April":"Kwiecień","May":"Maj","June":"Czerwiec","July":"Lipiec","August":"Sierpień","September":"Wrzesień","October":"Październik","November":"Listopad","December":"Grudzień","Jan":"Styczeń","Feb":"Luty","Mar":"Marzec","Apr":"Kwiecień","Jun":"Czerwiec","Jul":"Lipiec","Aug":"Sierpień","Sep":"Wrzesień","Oct":"Październik","Nov":"Listopad","Dec":"Grudzień","Sunday":"Niedziela","Monday":"Poniedziałek","Tuesday":"Wtorek","Wednesday":"Środa","Thursday":"Czwartek","Friday":"piątek","Saturday":"Sobota","Su":"Nd","Mo":"Pn","Tu":"Wt","We":"Śr","Th":"Cz","Fr":"Pt","Sa":"So","Previous":"Poprzedni","Hour":"Godzina","Minute":"Minuta","Verification_required":"Uwierzytelnienie jest wymagane","Verify_identity":"Potwierdź tożsamość","From_account:_":"Z konta: ","To_account:_":"Na konto: ","Not_announced_for_this_currency_":"Nie ogłoszono dla tej waluty.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Resetuj saldo swojego demo konta do [_1] w dowolnej chwili.","[_1]Manage_your_accounts[_2]":"[_1]Zarządzaj swoimi kontami[_2]","time":"raz","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"razem lub utworzysz prawdziwe konto MT5 (lub prawdziwe konto Deriv X na deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Nie możesz już zmienić waluty, gdyż zostało już stworzone prawdziwe kont MT5 (lub prawdziwe konto Deriv X na deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Nie możesz już zmienić waluty, gdyż dokonano już pierwszej wpłaty.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Waluta Twojego konta fiducjarnego jest obecnie ustawiona na [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Waluta Twojego konta fiducjarnego jest ustawiona na [_1].","This_is_your_[_1]_account_":"To Twoje konto [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Możesz [_1]ustawić nową walutę[_2] zanim dokonasz wpłaty pierwszy [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Nie chcesz handlować w [_1]? Możesz otworzyć kolejne konto w kryptowalucie.","Switch_account":"Zmień konto","Switch_account?":"Zmień konto?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Aby wpłacić pieniądze, przejdź na swoje konto [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Aby wypłacić pieniądze, przejdź na swoje konto [_1].","Switch_to_crypto_account?":"Przejść na konto w kryptowalucie?","To_deposit_cryptocurrency,_switch_your_account_":"Aby wpłacić kryptowalutę, zmień konto.","To_withdraw_cryptocurrency,_switch_your_account_":"Aby wypłacić kryptowalutę, zmień konto.","Withdraw":"Wypłata","Deposit":"Wpłata","Town/City":"Miasto","First_line_of_home_address":"Pierwsza część adresu zamieszkania","Postal_Code/ZIP":"Kod pocztowy","State/Province":"Stan/prowincja","Email_address":"Adres e-mail","Telephone":"Telefon","Country_of_Residence":"Kraj zamieszkania","details":"szczegóły","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Kasjer jest tymczasowo niedostępny z powodu konserwacji systemu. Możesz skorzystać z sekcji Kasjer za kilka minut, gdy zakończymy konserwację.","Your_cashier_is_locked_":"Twoja sekcja Kasjer jest zablokowana.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Wybrana waluta jest dostępna tylko dla niektórych kont.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Osiągnięto limit wypłat. Prześlij dowód tożsamości i adresu, aby podnieś swój limit i dokonać wypłaty.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Usługi pośredników płatności są niedostępne w Twoim kraju lub w Twojej preferowanej walucie.","Select_payment_agent":"Wybierz pośrednika płatności","Amount_in":"Kwota w","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Dozwolone są wyłącznie litery, cyfry, znak spacji, myślnik, kropka, przecinek i apostrof.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Twój wniosek o wypłatę [_2] [_1] z Twojego konta [_3] na konto pośrednika płatności [_4] został zrealizowany.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Twój token wygasł lub jest nieprawidłowy. Kliknij [_1]tutaj[_2], aby ponownie rozpocząć proces weryfikacyjny.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Przepraszamy, wypłaty w tej walucie są obecnie niedostępne.","Please_[_1]deposit[_2]_to_your_account_":"Dokonaj [_1]wpłaty[_2] na swoje konto.","Sorry,_account_signup_is_not_available_in_your_country_":"Przepraszamy, zarejestrowanie konta nie jest możliwe w Twoim kraju.","Asset":"Kapitał","Opens":"Otwarcie","Closes":"Zamknięcie","Settles":"Rozliczenie","Upcoming_Events":"Nadchodzące wydarzenia","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Aby określić wyrównanie limitu, dodaj +/–. Na przykład, +0.005 oznacza limit 0,005 wyższy od punktu początkowego.","Digit":"Cyfra","Percentage":"Procent","Waiting_for_entry_tick_":"Oczekuje na pierwszą zmianę ceny.","High_Barrier":"Górny limit","Low_Barrier":"Dolny limit","Waiting_for_exit_tick_":"Oczekuje na końcową zmianę ceny.","Ticks_history_returned_an_empty_array_":"Historia zmian ceny jest pusta.","Chart_is_not_available_for_this_underlying_":"Dla tego aktywa bazowego wykres nie jest dostępny.","Purchase":"Kup","Net_profit":"Zysk netto","Return":"Zwrot","Time_is_in_the_wrong_format_":"Czas został podany w nieprawidłowym formacie.","Rise/Fall":"Wzrost/spadek","Higher/Lower":"Wyższy/niższy","Matches/Differs":"Zgadza się/Różni się","Even/Odd":"Parzysta/nieparzysta","Over/Under":"Ponad/poniżej","High-Close":"Zamknięcia-Wysoka","Close-Low":"Zamknięcia-Niska","High-Low":"Wysoka-Niska","Up/Down":"Góra/dół","Only_Ups/Only_Downs":"Tylko wzrosty/ Tylko spadki","In/Out":"Zakłady w/poza","Select_Trade_Type":"Wybierz rodzaj zakładu","Tick":"Zmiana ceny","Spot":"Cena aktualna","Spot_Time_(GMT)":"Czas Spot (GMT)","seconds":"sekundy","minutes":"min","hours":"godziny","days":"dni","ticks":"najmniejsze zmiany ceny","tick":"najmniejsza zmiana ceny","second":"sekunda","minute":"minuta","hour":"godzina","day":"dzień","Duration":"Czas trwania","End_Time":"Godzina zakończenia","Purchase_request_sent":"Zgłoszono chęć zakupu","High":"Wysoka","Close":"Zamknięcia","Low":"Niska","Select_Asset":"Wybór aktywa","Search___":"Wyszukaj...","Maximum_multiplier_of_1000_":"Mnożnik maksymalny wynoszący 1000.","Stake":"Stawka","Payout":"Wypłata","Multiplier":"Mnożnik","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Przepraszamy, Twoje konto nie ma uprawnień do kolejnych zakupów kontraktów.","Trading_is_unavailable_at_this_time_":"Handlowanie nie jest dostępne w tym czasie.","Please_reload_the_page":"Załaduj stronę ponownie","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Nie jest dozwolone dalsze inwestowanie w ten kontrakt w obecnej sesji. Aby uzyskać więcej informacji, zapoznaj się z naszym [_1]regulaminem[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Twój wniosek o uznanie za klienta profesjonalnego jest przetwarzany.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Twój wniosek o uznanie za klienta profesjonalnego [_1]nie został zatwierdzony[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Aplikuj ponownie, gdy spełnione zostaną wymagane kryteria.","More_information_can_be_found_in_an_email_sent_to_you_":"Więcej informacji znajdziesz w wiadomości e-mail, którą do Ciebie wysłaliśmy.","I_want_to_reapply":"Chcę aplikować ponownie","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Ne terenie UE finansowe opcje binarne są dostępne wyłącznie dla inwestorów profesjonalnych.","Apply_now_as_a_professional_investor":"Aplikuj teraz jako inwestor profesjonalny","Try_our_[_1]Synthetic_Indices[_2]_":"Wypróbuj nasze [_1]wskaźniki syntetyczne[_2].","Try_our_other_markets_":"Wypróbuj nasze inne rynki.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Proszę wypełnić [_1]formularz dot. Prawdziwego konta[_2] w celu zweryfikowania Twojego wieku zgodnie z wymogiem [_3]UK Gambling[_4] Commission (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Dostęp do konta jest tymczasowo ograniczony. Sprawdź swoją skrzynkę odbiorczą, aby uzyskać więcej szczegółów.","Contract_Confirmation":"Potwierdzenie kontraktu","Your_transaction_reference_is":"Kod referencyjny Twojej transakcji to","Total_Cost":"Całkowity koszt","Potential_Payout":"Możliwa wypłata","Potential_Profit":"Możliwy zysk","View":"Widok","This_contract_won":"Ten kontrakt wygrał","This_contract_lost":"Ten kontrakt przegrał","The_reset_time_is_[_1]":"Czas resetowania to [_1]","Now":"Teraz","Average":"Średnia","Buy_price":"Cena kupna","Final_price":"Cena ostateczna","Loss":"Strata","Profit":"Zysk","Account_balance:":"Saldo konta:","Reverse_Side":"Tylna strona","Front_Side":"Przednia strona","Pending":"Oczekujące","Submitting":"Wysyłanie","Submitted":"Wysłano","Failed":"Zakończone niepowodzeniem","Compressing_Image":"Kompresja obrazu","Checking":"Sprawdzanie","Checked":"Sprawdzono","Unable_to_read_file_[_1]":"Nie można odczytać pliku [_1]","Passport":"Paszport","Identity_card":"Dowód osobisty","Driving_licence":"Prawo jazdy","Invalid_document_format_":"Nieprawidłowy format dokumentu.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Rozmiar pliku ([_1]) przekracza dozwolony limit. Maksymalny dozwolony rozmiar pliku: [_2]","ID_number_is_required_for_[_1]_":"Numer dowodu jest wymagany w przypadku [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"W przypadku numeru ID ([_1]) akceptowane są wyłącznie litery, cyfry, znak spacji i podkreślenia oraz łącznik.","Expiry_date_is_required_for_[_1]_":"Data wygaśnięcia jest wymagana w przypadku [_1].","Place_of_birth":"Data urodzenia","Please_select_the_country_of_document_issuance":"Wybierz kraj wydania dokumentu","Choose_the_document_type":"Wybierz rodzaj dokumentu","Please_enter_the_correct_format__Example:":"Proszę wprowadzić poprawny format. Przykład:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoją skrzynkę e-mail Google i kliknij link w wiadomości e-mail, aby kontynuować.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoje konto na Facebooku i kliknij link w wiadomości e-mail, aby kontynuować.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Sprawdź swoją skrzynkę e-mail powiązaną z Apple ID i kliknij link w wiadomości e-mail, aby przejść dalej.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Kliknij link z wiadomości e-mail, aby zmienić swoje hasło MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Kliknij link z wiadomości e-mail, aby zmienić swoje hasło Binary.","We’ve_sent_you_an_email":"Wysłaliśmy Ci wiadomość e-mail","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Używasz swojego konta [_1] w celu logowania do konta Binary.com. Aby zmienić swoją metodę logowania i korzystać z nazwy użytkownika i hasła, kliknij przycisk [_2]Zakończ powiązanie[_3].","Linked_with_[_1]":"Powiązane z [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Będzie konieczne ustawienie hasła, aby ukończyć proces.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Czy na pewno chcesz zakończyć powiązanie z [_1]?","Unlink":"Zakończ powiązanie","Country_not_found":"Nie znaleziono kraju","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Dokumenty z tego kraju nie są obecnie obsługiwane — spróbuj użyć inny rodzaj dokumentu","Submit_document":"Prześlij dokument","Select_country":"Wybierz kraj","e_g__United_States":"np. USA","Search_for_country":"Szukaj kraju","Select_issuing_country":"Wybierz kraj wydania","Submit_verification":"Prześlij weryfikację","Tips":"Porady","Documents_uploaded":"Przesłano dokumenty","Document_uploaded":"Przesłano dokument","Selfie_uploaded":"Selfie zostało przesłane","We're_now_ready_to_verify_your_identity":"Mamy już wszystko, aby zweryfikować Twoją tożsamość","Great,_that's_everything_we_need":"Świetnie, to wszystko, czego potrzebujemy","The_link_only_works_on_mobile_devices":"Link działa tylko na urządzeniach mobilnych","Something's_gone_wrong":"Coś poszło nie tak","You'll_need_to_restart_your_verification_on_your_computer":"Konieczne będzie ponowne rozpoczęcie weryfikacji na komputerze","Get_secure_link":"Pobierz bezpieczny link","Steps_required_to_continue_verification_on_your_mobile":"Kroki wymagane do przeprowadzenia weryfikacji na Twoim urządzeniu mobilnym","Check_back_here_to_finish_the_submission":"Sprawdź tutaj, aby ukończyć przesyłanie","Open_the_link_and_complete_the_tasks":"Otwórz link i ukończ zadania","Send_a_secure_link_to_your_phone":"Wyślij bezpieczny link na swój telefon","Here's_how_to_do_it:":"Jak to zrobić:","Continue_on_your_phone":"Kontynuuj na swoim telefonie","Your_computer_may_take_a_few_seconds_to_update":"Aktualizacja może zająć komputerowi kilka sekund","You_can_now_return_to_your_computer_to_continue":"Możesz teraz wrócić do swojego komputera, aby kontynuować","Uploads_successful":"Przesłano pomyślnie","Make_sure_everything_is_clear":"Upewnij się, że wszystko jest dobrze widoczne","Blurry_photo_detected":"Wykryto zamazane zdjęcie","Make_sure_full_document_is_visible":"Upewnij się, że widoczny jest cały dokument","Cut-off_image_detected":"Wykryto przycięty obraz","Move_away_from_direct_light":"Odsuń się od bezpośredniego światła","Glare_detected":"Wykryto prześwietlenie","Make_sure_all_of_the_document_is_in_the_photo":"Upewnij się, że całość dokumentu jest na zdjęciu","No_document_detected":"Nie wykryto dokumentu","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane karty są widoczne i czytelne, nie są zamazane ani prześwietlone","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Jeśli nie będziemy mogli tego odczytać, proces weryfikacji potrwa dłużej","To_smoothly_verify_you,_we_need_a_better_photo":"Aby zweryfikować Twoją tożsamość, potrzebujemy lepszego zdjęcia","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że szczegóły prawa jazdy są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane paszportowe są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane zezwolenia na pobyt są widoczne i czytelne, nie są zamazane ani prześwietlone","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Upewnij się, że dane są widoczne i czytelne, nie są zamazane ani prześwietlone","Redo":"Ponów","Confirm":"Potwierdź","Upload_anyway":"Prześlij mimo to","Enlarge_image":"Powiększ obraz","Photo_of_your_document":"Zdjęcie Twojego dokumentu","Check_your_image":"Sprawdź swój obraz","Front_and_back":"Przód i tył","Driver's_license":"Prawo jazdy","Face_photo_page":"Strona ze zdjęciem twarzy","Residence_permit":"Zezwolenie na pobyt","Sorry,_no_mobile_phone_bills":"Przepraszamy, nie akceptujemy rachunków za telefon komórkowy","Documents_you_can_use_to_verify_your_identity":"Dokumenty, których możesz użyć, aby zweryfikować swoją tożsamość","It_must_be_an_official_photo_ID":"To musi być oficjalne zdjęcie dowodowe","These_are_the_documents_most_likely_to_show_your_current_home_address":"Te dokumenty najprawdopodobniej zawierają informacje o Twoim obecnym adresie zamieszkania","Choose_document":"Wybierz dokument","Select_a_%{country}_document":"Wybierz dokument z kraju: %{country}","or_upload_photo_–_no_scans_or_photocopies":"lub załaduj zdjęcie - skany i fotokopie nie są akceptowane","Continue_on_phone":"Kontynuuj na telefonie","Take_a_photo_with_your_phone":"Zrób zdjęcie swoim telefonem","Submit_identity_card_(back)":"Prześlij zdjęcie dowodu tożsamości (tylna strona)","Submit_identity_card_(front)":"Prześlij zdjęcie dowodu tożsamości (przednia strona)","Submit_license_(back)":"Prześlij zdjęcie prawa jazdy (tylna strona)","Submit_license_(front)":"Prześlij zdjęcie prawa jazdy (przednia strona)","Submit_passport_photo_page":"Prześlij zdjęcie strony paszportu ze zdjęciem","Submit_residence_permit_(back)":"Prześlij zdjęcie zezwolenia na pobyt (tylna strona)","Submit_residence_permit_(front)":"Prześlij zdjęcie zezwolenia na pobyt (przednia strona)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Zacznij proces od początku w najnowszej wersji przeglądarki Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Zacznij proces od początku w najnowszej wersji przeglądarki Safari","Unsupported_browser":"Nieobsługiwana przeglądarka","Close_identity_verification_screen":"Zamknij ekran weryfikacji tożsamości","Dismiss_alert":"Odrzuć powiadomienie","back":"tył","close":"zamknij","Restart_process_on_a_different_device":"Rozpocznij proces od nowa na innym urządzeniu","Camera_not_detected":"Nie wykryto aparatu","Must_be_under_10MB_":"Musi być mniejszy niż 10 MB.","File_size_exceeded_":"Przekroczono maksymalną wielkość pliku.","Try_using_another_file_type_":"Spróbuj użyć innego rodzaju pliku.","File_not_uploaded_":"Nie przesłano pliku.","An_error_occurred_while_loading_the_component":"Podczas ładowania komponentów wystąpił błąd","Only_your_face_can_be_in_the_selfie":"Na zdjęciu selfie może być tylko Twoja twarz","Multiple_faces_found":"Wykryto kilka twarzy","Your_face_is_needed_in_the_selfie":"Twoja twarz musi znajdować się na selfie","No_face_found":"Nie rozpoznano twarzy","Please_try_again":"Spróbuj ponownie","Connection_lost":"Utracono połączenie","Copy_the_link_to_your_phone":"Skopiuj link na swój telefon","Too_many_failed_attempts":"Zbyt wiele nieudanych prób","Try_using_a_JPG_or_PNG_file":"Użyj pliku JPG lub PNG","File_type_not_supported":"Nieobsługiwany rodzaj pliku","Loading___":"Ładowanie...","Loading":"Ładowanie","Check_that_your_number_is_correct":"Sprawdź, czy numer jest poprawny","Copied":"Skopiowano","Copy":"Kopiuj","Send_link":"Wyślij link","How_to_scan_a_QR_code":"Jak zeskanować kod QR","Point_your_phone’s_camera_at_the_QR_code":"Skieruj aparat telefonu na kod QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Jeśli to nie działa, pobierz skaner kodów QR z Google Play lub App Store","or":"lub","Scan_QR_code":"Skanuj kod QR","Get_link_via_SMS":"Uzyskaj link przez SMS","Copy_link":"Kopiuj link","Sending":"Wysyłanie","Enter_mobile_number":"Wprowadź numer telefonu","Enter_your_mobile_number:":"Wprowadź swój numer telefonu:","Scan_the_QR_code_with_your_phone":"Zeskanuj kod QR swoim telefonem","Send_this_one-time_link_to_your_phone":"Wyślij link jednorazowy na swój telefon","Open_the_link_on_your_mobile":"Otwórz link na swoim urządzeniu","Get_your_secure_link":"Pobierz swój bezpieczny link","Copy_the_link_to_your_mobile_browser":"Skopiuj link do przeglądarki na swoim telefonie","Continue":"Kontynuuj","Make_sure§":"Upewnij się","2__Your_desktop_window_stays_open":"2. Okno na komputerze musi pozostać otwarte","1__This_link_was_sent_by_you":"1. Ten link został wysłany przez Ciebie","Continue_with_the_verification":"Kontynuuj weryfikację","Linked_to_your_computer":"Połączone z Twoim komputerem","Take_a_photo_of_the_back_of_your_card":"Zrób zdjęcie tylnej strony dokumentu potwierdzającego tożsamość","Take_a_photo_of_the_front_of_your_card":"Zrób zdjęcie przedniej strony dowodu tożsamości","Take_a_photo_of_the_back_of_your_license":"Zrób zdjęcie tylnej strony prawa jazdy","Take_a_photo_of_the_front_of_your_license":"Zrób zdjęcie przedniej strony prawa jazdy","Take_a_photo_of_your_passport_photo_page":"Zrób zdjęcie strony ze zdjęciem z paszportu","Take_a_selfie_showing_your_face":"Zrób selfie przedstawiające Twoją twarz","Take_a_photo_using_the_basic_camera_mode_instead":"Zrób zdjęcie przy użyciu podstawowego trybu aparatu","Take_a_photo":"Zrób zdjęcie","Passport_photo_page":"Strona paszportu ze zdjęciem","Thank_you":"Dziękujemy","Verification_complete":"Weryfikacja zakończona","Refresh":"Odśwież","Recovery":"Odzyskiwanie","Follow_these_steps_to_recover_camera_access:":"Wypełnij te kroki, aby odzyskać dostęp do aparatu:","Refresh_this_page_to_restart_the_identity_verification_process":"Odśwież tę stronę, aby rozpocząć ponownie proces weryfikacji tożsamości","Grant_access_to_your_camera_from_your_browser_settings":"Udziel dostępu do swojego aparatu w ustawieniach przeglądarki","Recover_camera_access_to_continue_face_verification":"Odzyskaj dostęp do aparatu, aby kontynuować weryfikację twarzy","Camera_access_is_denied":"Odmowa dostępu do aparatu","We_cannot_verify_you_without_using_your_camera":"Nie możemy przeprowadzić weryfikacji bez użycia aparatu","Enable_camera":"Włącz aparat","When_prompted,_you_must_enable_camera_access_to_continue":"Gdy Cię poprosimy, włącz dostęp do aparatu, aby kontynuować","Allow_camera_access":"Zezwól na dostęp do aparatu","Provide_the_whole_document_page_for_best_results":"Prześlij całą stronę dokumentu, aby ułatwić proces","Upload_back_of_card_from_your_computer":"Prześlij skan tyłu dowodu osobistego ze swojego komputera","Upload_front_of_card_from_your_computer":"Prześlij skan przodu dowodu osobistego ze swojego komputera","Upload_back_of_license_from_your_computer":"Prześlij tylną część prawa jazdy ze swojego komputera","Upload_front_of_license_from_your_computer":"Prześlij przednią część prawa jazdy ze swojego komputera","Upload_passport_photo_page_from_your_computer":"Prześlij stronę paszportu ze zdjęciem ze swojego komputera","Upload_a_selfie_from_your_computer":"Prześlij selfie ze swojego komputera","Take_photo":"Zrób zdjęcie","Upload":"Prześlij","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Sprawdź, czy urządzenie jest podłączone i działa. Możesz też kontynuować weryfikację na swoim telefonie","Make_sure_your_device_has_a_working_camera":"Upewnij się, że Twoje urządzenie ma sprawny aparat","Camera_not_working?":"Aparat nie działa?","It_may_be_disconnected__Try_using_your_phone_instead_":"Może być odłączony. Spróbuj użyć swojego telefonu.","Make_sure_your_device's_camera_works":"Upewnij się, że aparat na Twoim urządzeniu jest sprawny","Camera_not_working":"Aparat nie działa","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Kiedy skończysz, pamiętaj o wciśnięciu Stop. Powtórz nagrywanie","Looks_like_you_took_too_long":"Zajęło Ci to zbyt długo","View_from_camera":"Widok z aparatu","Take_a_selfie":"Zrób zdjęcie","Photo_of_your_face":"Zdjęcie Twojej twarzy","Make_sure_your_selfie_clearly_shows_your_face":"Upewnij się, że selfie dobrze przedstawia twarz","Check_selfie":"Sprawdź selfie","Tips_to_take_a_good_selfie":"Wskazówki, jak zrobić dobre zdjęcie selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Stań przodem i upewnij się, że oczy są dobrze widoczne","Remove_your_glasses,_if_necessary":"Zdejmij okulary, jeśli to konieczne","We'll_compare_it_with_your_document":"Porównamy z Twoim dokumentem","Your_link_will_expire_in_one_hour":"Twój link wygaśnie za godzinę","Keep_this_window_open_while_using_your_mobile":"Nie zamykaj tego okna podczas korzystania z telefonu","Resend_link":"Wyślij link ponownie","We've_sent_a_secure_link_to_%{number}":"Wysłaliśmy bezpieczny link na %{number}","It_may_take_a_few_minutes_to_arrive":"To może potrwać kilka minut","Check_your_mobile":"Sprawdź swój telefon","Your_mobile_link_will_expire_in_one_hour":"Twój link mobilny wygaśnie za godzinę","Don't_refresh_this_page":"Nie odświeżaj tej strony","Once_you've_finished_we'll_take_you_to_the_next_step":"Gdy skończysz, przekierujemy Cię do następnego kroku","Connected_to_your_mobile":"Połączono z Twoim telefonem komórkowym","Upload_photo":"Załaduj zdjęcie","Example_of_a_blurry_document":"Przykład rozmazanego dokumentu","All_details_must_be_clear_—_nothing_blurry":"Wszystkie szczegóły muszą być widoczne — nic nie może być zamazane","Example_of_a_cut-off_document":"Przykład przyciętego dokumentu","Show_all_details_—_including_the_bottom_2_lines":"Pokaż wszystkie szczegóły — w tym 2 dolne linie","Example_of_a_document_with_glare":"Przykład prześwietlonego dokumentu","Move_away_from_direct_light_—_no_glare":"Odsuń się od bezpośredniego światła — unikaj prześwietlenia","Document_example":"Przykład dokumentu","The_photo_should_clearly_show_your_document":"Zdjęcie musi wyraźnie przedstawiać Twój dokument","Scans_and_photocopies_are_not_accepted":"Skany i fotokopie nie są akceptowane","Upload_passport_photo_page":"Załaduj zdjęcie strony paszportu ze zdjęciem","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Aby otworzyć konto bankowe, musisz zweryfikować swoją tożsamość.","It_will_only_take_a_couple_of_minutes_":"To zajmie tylko kilka minut.","Verify_Identity":"Potwierdź tożsamość","Open_your_new_bank_account":"Otwórz nowe konto bankowe","Please_enter_a_valid_Login_ID_":"Proszę podać poprawny login.","Amount":"Kwota","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Twój wniosek o przelanie [_2] [_1] z [_3] na [_4] został zrealizowany.","Resale_not_offered":"Brak możliwości odsprzedaży","You've_made_no_transactions_of_this_type_up_to_this_date_":"Do dziś nie zrealizowałeś żadnej transakcji tego rodzaju.","Date":"Data","Contract":"Kontrakt","Purchase_Price":"Cena zakupu","Sale_Date":"Data sprzedaży","Sale_Price":"Cena sprzedaży","Profit/Loss":"Zysk/Strata","Details":"Szczegóły","Total_Profit/Loss":"Całkowity zysk/ całkowita strata","Action_required!":"Wymagane działanie!","Sorry,_an_error_occurred_while_processing_your_request_":"Przepraszamy, podczas przetwarzania Twojego żądania wystąpił błąd.","position(s)":"orientacja(y)","withdrawal(s)":"wypłat(y)","We_couldn’t_read_that!":"Nie mogliśmy tego odzytać!","Remaining_characters:_[_1]_":"Pozostało znaków: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Nie wprowadzaj więcej niż [_1] znaków w obu polach.","Only_[_1]_are_allowed_":"Dozwolone są tylko [_1].","letters":"litery","numbers":"liczby","space":"spacja","Please_select_at_least_one_scope":"Proszę wybrać przynajmniej jeden zakres","New_token_created_":"Utworzono nowy token.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Maksymalna liczba tokenów ([_1]) została osiągnięta.","Name":"Nazwisko","Scopes":"Zakresy","Last_Used":"Ostatnio używane","Action":"Czynności","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Czy na pewno chcesz trwale usunąć token","Delete":"Usuń","Never_Used":"Nigdy nie użyte","You_have_not_granted_access_to_any_applications_":"Nie przyznano Ci dostępu do żadnej aplikacji.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Czy na pewno chcesz na stałe wyłączyć dostęp do aplikacji","Revoke_access":"Zablokowanie dostępu","Payments":"Płatności","Read":"Odczyt","Trade":"Handluj","Trading_Information":"Informacje o handlowaniu","Never":"Nigdy","Permissions":"Pozwolenia","Last_Login":"Ostatnie logowanie","You_did_not_change_anything_":"Nic nie zostało zmienione.","Your_changes_have_been_updated_successfully_":"Zmiany zostały wprowadzone.","Successful":"Zakończono powodzeniem","Date_and_Time":"Data i godzina transakcji","Browser":"Przeglądarka","IP_Address":"Adres IP","Your_account_has_no_Login/Logout_activity_":"Na Twoim koncie nie odnotowano żadnej aktywności związanej z logowaniem/wylogowywaniem.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Twoje konto jest w pełni zweryfikowane, a Twój limit wypłat został zwiększony.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Twój [_1]-dniowy limit wypłat wynosi obecnie [_3][_2].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"W ciągu ostatnich [_3] dni wypłacono już łącznie [_2] [_1].","Your_withdrawal_limit_is_[_1][_2]_":"Twój limit wypłat wynosi [_2] [_1].","You_have_already_withdrawn_[_1][_2]_":"Wypłacono już [_2] [_1].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Dlatego Twoje saldo dostępne do wypłaty wynosi tylko do [_2][_1], w zależności od dostępności Twoich środków na koncie.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Proszę potwierdzić, że wszystkie powyższe informacje są kompletne i prawdziwe.","Your_settings_have_been_updated_successfully_":"Twoje ustawienia zostały pomyślnie zaktualizowane.","Sorry,_an_error_occurred_while_processing_your_account_":"Przepraszamy, wystąpił błąd podczas operacji na Twoim koncie.","Please_select_a_country":"Proszę wybrać kraj","Timed_out_until":"Okres wyłączenia do","Excluded_from_the_website_until":"Wyłączono z portalu do dnia","Session_duration_limit_cannot_be_more_than_6_weeks_":"Limit czasu sesji nie może przekroczyć 6 tygodni.","Time_out_must_be_after_today_":"Okres wyłączenia musi się rozpoczynać jutro lub później.","Time_out_cannot_be_more_than_6_weeks_":"Czas wyłączenia nie może przekraczać 6 tygodni.","Time_out_cannot_be_in_the_past_":"Czas wyłączenia nie może być datą przeszłą.","Please_select_a_valid_time_":"Proszę wybrać poprawny czas.","Exclude_time_cannot_be_less_than_6_months_":"Czas wyłączenia nie może być krótszy niż 6 miesięcy.","Exclude_time_cannot_be_for_more_than_5_years_":"Czas wyłączenia nie może być dłuższy niż 5 lat.","Confirm_changes":"Potwierdź zmiany","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Zaktualizujemy Twoje limity. Kliknij [_1]Zgadzam się i akceptuję[_2], aby potwierdzić, że w pełni odpowiadasz za swoje działania i że nie ponosimy odpowiedzialności za uzależnienie ani straty.","Agree_and_accept":"Zgadzam się i akceptuję","Go_back":"Wróć","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Po kliknięciu przycisku „OK” handlowanie na portalu nie będzie możliwe aż do wybranej daty.","Your_changes_have_been_updated_":"Twoje zmiany zostały wprowadzone.","Disable":"Wyłącz","Enable":"Włącz","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Uwierzytelnianie dwuskładnikowe na Twoim koncie zostało włączone.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Uwierzytelnianie dwuskładnikowe na Twoim koncie zostało wyłączone.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Nie musisz weryfikować swojego konta w obecnej chwili.[_1]Poinformujemy Cię, gdy będzie to wymagane.","No_authentication_required":"Uwierzytelnianie nie jest wymagane","Back_to_trading":"Wróć do handlowania","You_are_categorised_as_a_professional_client_":"Zaklasyfikowano Cię jako klienta profesjonalnego.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Zaklasyfikowano Cię jako klienta detalicznego. Złóż wniosek o uznanie za profesjonalnego gracza.","Bid":"Oferta kupna","Closed_Bid":"Zamknięte oferty","Reference_ID":"ID referencyjne","Description":"Opis","Credit/Debit":"Winien/Ma","Balance":"Saldo","Top_up_error":"Błąd doładowania","Understood":"Rozumiem","Top-up_successful":"Doładowanie powiodło się","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"Zaksięgowano [_1] na Twoim koncie demo: [_2].","Go_to_statement":"Przejdź do oświadczenia","Continue_trading":"Kontynuuj handlowanie","Your_Demo_balance_has_been_reset_":"Twoje demo saldo zostało zresetowane.","Account":"Konto","Available_Markets":"Dostępne rynki","Type":"Typ","Currency":"Waluta","Multipliers_Account":"Konto mnożnikowe","Gaming_Account":"Konto gracza","Options_Account":"Konto opcji","Real_Account":"Konto rzeczywiste","Counterparty":"Kontrahent","Jurisdiction":"Jurysdykcja","Create_account":"Załóż konto","Change_currency":"Zmień walutę","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Uwaga: Możesz mieć wyłącznie jedno konto fiducjarne. Możesz zmienić walutę swojego konta fiducjarnego w dowolnej chwili, zanim dokonasz pierwszej wpłaty lub utworzysz prawdziwe konto MT5 (lub prawdziwe konto Deriv X na deriv.com). Możesz też otworzyć jedno konto dla każdej obsługiwanej waluty.","This_account_is_disabled":"To konto jest wyłączone","This_account_is_excluded_until_[_1]":"To konto jest wyłączone z handlowania do [_1]","Set_currency":"Ustaw walutę","Commodities":"Towary","Stock_Indices":"Wskaźniki giełdowe","Stocks":"Akcje","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Jeśli masz u nas konto, za kilka minut wyślemy na Twój adres e-mail link umożliwiający zresetowanie hasła.","Sign_up":"Zarejestruj się","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Handel Kontraktami na różnice kursowe (CFD) opartymi na Wskaźnikach syntetycznych może nie być odpowiedni dla każdego. Upewnij się, że w pełni rozumiesz ryzyko z nim związane, w tym możliwość utraty wszystkich środków zgromadzonych na Twoim koncie MT5. Hazard może uzależniać – prosimy o rozsądną grę.","Do_you_wish_to_continue?":"Chcesz kontynuować?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}You are about to purchase a product that is not simple and may be difficult to understand: Contracts for Difference and Forex. As a general rule, the CNMV considers that such products are not appropriate for retail clients, due to their complexity.","Acknowledge":"Rozumiem","Change_Password":"Zmień hasło","The_investor_password_of_account_number_[_1]_has_been_changed_":"Hasło inwestycyjne do konta o numerze [_1] zostało zmienione.","Reset_Password":"Zresetuj hasło","Verify_Reset_Password":"Zweryfikuj zresetowane hasło","Please_check_your_email_for_further_instructions_":"Sprawdź wiadomość e-mail z dalszymi informacjami.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Dokonano wpłaty [_1] na konto o numerze [_3]. Identyfikator transakcji: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Dokonano wypłaty [_1] z konta o numerze [_2] na konto [_3]. Identyfikator transakcji: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Aby wypłacić środki z [_1] MetaTrader 5, proszę [_2]zweryfikować[_3] swoje konto Binary.","Current_password":"Aktualne hasło","New_password":"Nowe hasło","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Aby przelać środki na swoje konto MT5, wprowadź kwotę [_1] lub wyższą","You_have_insufficient_funds_in_your_MT5_account_":"Masz niewystarczające środki na koncie MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Niestety ta funkcja jest niedostępna w Twojej jurysdykcji.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Z powodu problemów na naszym serwerze niektóre konta MT5 są w chwili obecnej niedostępne. [_1]Przepraszamy za niedogodności i dziękujemy za cierpliwość.","Unavailable":"Niedostępne","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"Zaksięgowano [_1] na Twoim koncie demo MT5: [_2].","_(Region_added)":" (Dodano region)","_(Temporarily_unavailable)":" (Tymczasowo niedostępne)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nasze serwery są częściowo niedostępne. Pracujemy nad bym, by je przywrócić. Spróbuj ponownie za kilka minut.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Użyj hasła MT5, aby zalogować się do dowolnego konta [_1], korzystając z aplikacji MT5 na swoim telefonie lub innym urządzeniu.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Spowoduje to zmianę hasła do wszystkich kont [_1].","Demo_Accounts":"Konta Demo","Real-Money_Accounts":"Konta z prawdziwymi pieniędzmi","Demo_Account":"Konto Demo","Real-Money_Account":"Konto z prawdziwymi pieniędzmi","for_account_[_1]":"dla konta [_1]","[_1]_Account_[_2]":"[_1] Konto [_2]","MT5_Financial":"MT5 Finanse","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Wprowadź swoje hasło MT5, aby dodać konto [_1] [_2].","real":"prawdziwe","MT5_Synthetic":"Syntetyczne MT5","Get_[_1]":"Uzyskaj [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Saldo Twojego konta demo wynosi obecnie [_1] lub mniej. Możesz zasilić swoje konto dodatkową kwotą [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Możesz zasilić swoje konto demo dodatkową kwotą [_1], jeśli Twoje saldo wynosi [_2] lub mniej.","Yes,_I'm_sure":"Tak, na pewno","Are_you_sure?":"Czy na pewno?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Po utworzeniu tego konta w walucie fiducjarnej nie będzie już można zmienić waluty tego konta [_1]. Na pewno chcesz kontynuować?","Go_to_Deriv_to_add_an_MT5_account":"Przejdź do Deriv, aby dodać konto MT5","Back":"Poprzedni","Address":"Adres","Account_currency":"Waluta konta","Financial_assessment":"Ocena finansowa","Personal_details":"Dane osobowe","Terms_of_use":"Warunki użycia","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) to wersja Tether powiązana z dolarem amerykańskim (USD) i zbudowana w oparciu o technologię blockchain Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) to wersja Tether powiązana z dolarem amerykańskim (USD) i umieszczona na platformie Ethereum.","Title_and_name":"Zwrot grzecznościowy i imię","Real_money_account_opening":"Otwieranie konta z prawdziwymi pieniędzmi","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Twój token wygasł lub jest nieprawidłowy. Kliknij tutaj, aby ponownie rozpocząć proces weryfikacyjny.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Podany adres e-mail jest już w użyciu. Jeżeli nie pamiętasz hasła, skorzystaj z opcji odzyskiwania hasła lub skontaktuj się z obsługą klienta.","Password_is_not_strong_enough_":"Hasło jest za słabe.","Upgrade_now":"Uaktualnij teraz","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] dni [_2] godz. [_3] min","Your_trading_statistics_since_[_1]_":"Twoje statystyki handlowe od [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"Inwestowanie w [_1] może stać się poważnym uzależnieniem, tak jak wszystkie inne czynności, którym poświęcamy zbyt wiele czasu. Aby zapobiec niebezpieczeństwu takiego uzależnienia, umożliwiamy sprawdzanie rzeczywistej sytuacji na bieżąco, co zapewnia Ci regularne zestawienie Twoich zakładów i kont.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Aby ponownie rozpocząć proces odzyskiwania konta, kliknij poniższe łącze.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Masz nowe hasło Binary, aby zalogować się do Binary.com.","Success":"Udało się","Done":"Gotowe","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Powiązanie Twojego konta Binary z [_1] zostało zakończone. Korzystaj ze [_2]swojego adresu e-mail i hasła podczas logowania.","Success!":"Udało się!","Got_it":"Rozumiem","Binary_Password_Reset":"Reset hasła Binary","Binary_password":"Hasło Binary","You_have_added_a_[_1]_account_":"Dodano konto [_1].","Add_account":"Dodaj konto","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether jako token Omni (USDT) to wersja Tether hostowana na poziomie Omni w oparciu o technologię blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether jako token ERC20 (EUSDT) to wersja Tether hostowana na Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether jako token TRC20 (tUSDT) to wersja Tether hostowana na Tron.","Add_new_crypto_account":"Dodaj nowe konto w kryptowalucie","Add_new_account":"Dodaj nowe konto","Create_a_cryptocurrency_account":"Utwórz konto w kryptowalucie","Choose_your_preferred_cryptocurrency":"Wybierz preferowaną kryptowalutę","You_can_open_an_account_for_each_cryptocurrency_":"Dla każdej kryptowaluty możesz utworzyć jedno konto.","Choose_a_cryptocurrency_account":"Wybierz konto w kryptowalucie","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Wybierz jedno ze swoich kont lub dodaj nowe konto w kryptowalucie","Choose_an_account":"Wybierz konto","Choose_one_of_your_accounts_or_add_a_new_account":"Wybierz jedno ze swoich kont lub dodaj nowe konto","Choose_one_of_your_accounts":"Wybierz jedno ze swoich kont","Please_select_the_currency_for_this_account:":"Proszę wybrać walutę dla tego konta:","deposit":"wpłaty","deposit_or_create_a_CFDs_account":"wpłaty lub utworzysz konto CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Czy na pewno chcesz utworzyć teraz swoje konto [_1]?","Note:":"Uwaga:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Dla każdej obsługiwanej waluty można utworzyć jedno konto.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Czy na pewno chcesz utworzyć konto fiducjarne w [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Możesz mieć wyłącznie jedno konto fiducjarne. Możesz zmienić walutę swojego konta fiducjarnego w dowolnej chwili, zanim dokonasz pierwszej [_1].","Yes":"Tak","Create_[_1]_account":"Utwórz konto [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Waluta konta została ustawiona jako [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Waluta konta została zmieniona z [_1] na [_2].","Please_choose_a_currency":"Proszę wybrać walutę","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Masz nowe hasło MT5 do logowania na swoje konta [_1] w aplikacji internetowej i na urządzenia mobilne.","Accumulator":"Akumulator","Asian_Down":"Azjatyckie – Spadek","Asian_Up":"Azjatyckie – Wzrost","Higher":"Wyższe","Higher_or_equal":"Wyższe lub równe","Call_Spread":"Spread zakupu","Digit_Differs":"Cyfra nie zgadza się","Digit_Even":"Cyfra parzysta","Digit_Matches":"Cyfra zgadza się","Digit_Odd":"Cyfra nieparzysta","Digit_Over":"Cyfra większa","Digit_Under":"Cyfra mniejsza","Ends_Outside":"Kończy się poza","Ends_Between":"Kończy się pomiędzy","Multiplier_Down":"Mnożnik w dół","Multiplier_Up":"Mnożnik w górę","Does_Not_Touch":"Nie osiąga","Touches":"Osiąga","Lower":"Niższe","Lower_or_equal":"Niższe lub równe","Put_Spread":"Spread sprzedaży","Stays_Between":"Pozostaje pomiędzy","Only_Ups":"Tylko wzrosty","Only_Downs":"Tylko spadki","High_Tick":"Duże zmiany ceny","Low_Tick":"Mała zmiana ceny","Goes_Outside":"Przekroczy","Equals":"Równa się","Not":"Nie","Buy":"Kup","Sell":"Sprzedaj","Waiting_for_contract_settlement_":"Oczekiwanie na rozliczenie kontraktu.","including_Deal_Cancel__Fee":"w tym Anulowanie transakcji. Opłata","Contract_has_not_started_yet":"Kontrakt jeszcze się nie rozpoczął","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Ten kontrakt jest dostępny tylko na [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Ten kontrakt jest dostępny tylko na DTrader.[_1][_2]Przejdź do Dtrader[_3], aby zamknąć lub anulować tę transakcję.","Contract_Result":"Wynik kontraktu","Close_Time":"Czas zamknięcia","Exit_Spot_Time":"Czas punktu wyjściowego","Audit":"Audyt","View_chart":"Zobacz wykres","Audit_Page":"Strona audytowa","Contract_Starts":"Kontrakt zaczyna się","Contract_Ends":"Kontrakt kończy się","Contract_Details":"Szczegóły kontraktu","Target":"Cel","Contract_Information":"Informacje o kontrakcie","Contract_Type":"Rodzaj kontraktu","Transaction_ID":"ID transakcji","Remaining_Time":"Pozostały czas","Maximum_payout":"Maksymalna wypłata","Barrier_Change":"Zmiana limitu","Current":"Obecne","Spot_Time":"Czas spot","Current_Time":"Obecny czas","Indicative":"Orientacyjny","Potential_Profit/Loss":"Potencjalny zysk/strata","Deal_Cancel__Fee":"Anulowanie transakcji. Opłata","You_can_close_this_window_without_interrupting_your_trade_":"Możesz zamknąć te okno; nie będzie to miało żadnego wpływu na zakład.","There_was_an_error":"Wystąpił błąd","Sell_at_market":"Sprzedawaj na rynku","Note":"Uwaga","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Kontrakty będą sprzedawane po obowiązującej cenie rynkowej po dotarciu wniosku na nasze serwery. Cena może różnić się od podanej ceny.","You_have_sold_this_contract_at_[_1]_[_2]":"Sprzedano ten kontrakt po cenie [_2] [_1]","Your_transaction_reference_number_is_[_1]":"Numer referencyjny Twojej transakcji to [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Dziękujemy za rejestrację! Sprawdź swoją skrzynkę e-mailową, aby ukończyć proces rejestracji.","All_markets_are_closed_now__Please_try_again_later_":"Wszystkie rynki są obecnie zamknięte. Prosimy spróbować później.","Withdrawal":"Wypłata","demo_credit_to_account":"demo zostały zaksięgowane na koncie","login":"logowanie","logout":"Wyloguj","Asians":"Azjatyckie","Call_Spread/Put_Spread":"Spread zakupu/Spread sprzedaży","Digits":"Cyfry","Ends_Between/Ends_Outside":"Zakończy się w/ Zakończy się poza","High/Low_Ticks":"Duże/małe zmiany ceny","Lookbacks":"Opcje wsteczne","Stays_Between/Goes_Outside":"Pozostanie pomiędzy/ Przekroczy","Touch/No_Touch":"Osiągnie/Nie osiągnie","Christmas_Day":"Boże Narodzenie","Closes_early_(at_18:00)":"Zamykane wcześnie (o 18:00)","Closes_early_(at_21:00)":"Zamykane wcześnie (o 21:00)","Fridays":"piątki","New_Year's_Day":"Nowy Rok","today":"dziś","today,_Fridays":"dziś, piątki","There_was_a_problem_accessing_the_server_":"Wystąpił błąd podczas uzyskiwania dostępu do serwera.","There_was_a_problem_accessing_the_server_during_purchase_":"Wystąpił błąd podczas uzyskiwania dostępu do serwera w trakcie zakupu."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/pt.js b/src/javascript/_autogenerated/pt.js index ab148acdbaa3a..3fb87637a8003 100644 --- a/src/javascript/_autogenerated/pt.js +++ b/src/javascript/_autogenerated/pt.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['PT'] = {"Multipliers":"Multiplicadores","Gaming":"Aposta","Options":"Opções","Real_CFDs":"CFDs Real","Real_Financial":"Real Financeira","Demo_CFDs":"CFDs Demo","Demo_Financial":"Demo Financeira","Synthetic":"Sintéticos","Demo_Synthetic":"Demo Sintéticos","Real_Synthetic":"Real Sintéticos","Financial":"Financeira","Financial_STP":"Financeira STP","Demo_Financial_STP":"Demo Financeira STP","Real_Financial_STP":"Real Financeira STP","Ether_Classic":"Ethereum Classic","Binary_Coin":"Moeda Binary","Thank_you,_we'll_get_back_to_you_within_24_hours":"Obrigado, retornaremos dentro de 24 horas","Connecting_to_server":"Conectando ao servidor","Use_a_few_words,_avoid_common_phrases":"Use poucas palavras, evite frases comuns","No_need_for_symbols,_digits,_or_uppercase_letters":"Não há necessidade de símbolos, dígitos ou letras maiúsculas","Add_another_word_or_two__Uncommon_words_are_better_":"Adicione outra palavra ou duas. Palavras incomuns são melhores.","Straight_rows_of_keys_are_easy_to_guess":"Teclas com linhas retas são mais fáceis de adivinhar","Short_keyboard_patterns_are_easy_to_guess":"Padrões curtos de teclado são fáceis de adivinhar","Use_a_longer_keyboard_pattern_with_more_turns":"Use um padrão de teclado mais longo com mais voltas","Repeats_like_\"aaa\"_are_easy_to_guess":"Repetições como \"aaa\" são fáceis de adivinhar","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Repetições como \"abcabcabc\" são um pouco mais difíceis de adivinhar do que \"abc\"","Avoid_repeated_words_and_characters":"Evite palavras e caracteres repetidos","Sequences_like_abc_or_6543_are_easy_to_guess":"Sequências como abc ou 6543 são fáceis de adivinhar","Avoid_sequences":"Evite sequências","Recent_years_are_easy_to_guess":"Os últimos anos são fáceis de adivinhar","Avoid_recent_years":"Evite os últimos anos","Avoid_years_that_are_associated_with_you":"Evite anos que estão associados a você","Dates_are_often_easy_to_guess":"Datas costumam ser fáceis de adivinhar","Avoid_dates_and_years_that_are_associated_with_you":"Evite datas e anos associados a você","This_is_a_top-10_common_password":"Esta é uma das 10 senhas mais comuns","This_is_a_top-100_common_password":"Esta é uma das 100 principais senhas comuns","This_is_a_very_common_password":"Esta é uma senha muito comum","This_is_similar_to_a_commonly_used_password":"Esta é semelhante a uma senha usada comumente","A_word_by_itself_is_easy_to_guess":"Uma palavra por si só é fácil de adivinhar","Names_and_surnames_by_themselves_are_easy_to_guess":"Nomes e sobrenomes sozinhos são fáceis de adivinhar","Common_names_and_surnames_are_easy_to_guess":"Nomes e sobrenomes comuns são fáceis de adivinhar","Capitalization_doesn't_help_very_much":"Letras maiúsculas não ajudam muito","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Todas as letras maiúsculas são tão fáceis de adivinhar quanto as letras minúsculas","Reversed_words_aren't_much_harder_to_guess":"Palavras invertidas não são muito mais difíceis de adivinhar","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Previsíveis substituições como '@' em vez de 'a' não ajudam muito","This_password_is_on_the_blacklist":"Esta senha está na lista negra","Unknown_OS":"SO desconhecido","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Você será redirecionado para um site de terceiros que não pertence à Binary.com.","Click_OK_to_proceed_":"Clique em OK para avançar.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Certifique-se de que tenha o aplicativo Telegram instalado no seu dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"A [_1] requer que o armazenamento na Web do seu navegador esteja habilitado para poder funcionar corretamente. Por favor, habilite-o ou saia do modo de navegação privada.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"[_1]Conecte-se[_2] ou [_3]inscreva-se[_4] para ver esta página.","This_feature_is_available_to_demo_accounts_only_":"Este recurso está disponível somente para contas demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Você está usando uma conta demo. Por favor, mude para uma conta real ou crie uma para acessar o Caixa.","This_page_is_only_available_to_logged_out_clients_":"Esta página está disponível apenas para clientes desconectados.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"A negociação de opções binárias não está disponível em sua conta de Multiplicadores. ","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"A negociação de opções binárias não está disponível através de sua conta Multipliers.
Por favor, volte para sua conta de Opções.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Desculpe, a negociação de opções não está disponível no Reino Unido e na Ilha de Man","Binary_options_trading_is_not_available_in_your_country_":"Desculpe, mas a negociação de opções binárias não está disponível em seu país.","This_page_is_not_available_in_your_country_of_residence_":"Esta página não está disponível em seu país de residência.","Page_not_available,_you_did_not_deactivate_your_account_":"Halaman tidak tersedia, Anda tidak menonaktifkan akun Anda.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Infelizmente, este serviço não está disponível em seu país. Se você gostaria de negociar multiplicadores, experimente DTrader na Deriv.","Go_to_DTrader":"Vá para Dtrader","Sign_out":"Sair","[_1]_Account":"Conta [_1]","Click_here_to_open_a_Real_Account":"Clique aqui para abrir uma conta real","Open_a_Real_Account":"Abrir uma conta de dinheiro real","Click_here_to_open_a_Multipliers_Account":"Clique aqui para abrir uma Conta de Multiplicadores","Click_here_to_open_an_Options_account":"Clique aqui para abrir uma conta de Opções","Open_a_Multipliers_Account":"Abra uma conta de Multiplicadores","Create_Account":"Criar conta","Accounts_List":"Lista de contas","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Os depósitos estão temporariamente indisponíveis devido à manutenção do sistema. Você pode fazer seus depósitos quando a manutenção estiver completa.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"As retiradas estão temporariamente indisponíveis devido à manutenção do sistema. Você pode fazer seus saques quando a manutenção for concluída.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa de criptomoeda está temporariamente fora do ar devido à manutenção do sistema. Você pode acessar o Caixa em alguns minutos quando a manutenção for concluída.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa está temporariamente fora do ar devido à manutenção do sistema. Você pode acessá-lo em alguns minutos quando a manutenção for concluída.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"No momento seu caixa está bloqueado. Entre em contato conosco via Live Chat para saber como desbloqueá-lo.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Defina a [_1]moeda da conta[_2] para permitir depósitos e retiradas.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Sua conta não foi autenticada. Por favor envie seu [_1]documento de identidade e comprovante de endereço[_2] para autenticar sua conta e solicitar de saques.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Sua conta não foi autenticada. Favor enviar seu [_1] documento de identidade e comprovante de endereço[_2] para autenticar sua conta e acessar seu caixa.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Os documentos de identificação que você enviou expiraram. Envie documentos de identidade válidos para desbloquear o Caixa.","Your_[_1]proof_of_identity[_2]_has_expired_":"Seu [_1]comprovante de identidade[_2] expirou.","Your_[_1]proof_of_address[_2]_has_expired_":"Seu [_1]comprovante de endereço[_2] expirou.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Seu [_1]comprovante de identidade[_3] e [_2]comprovante de endereço[_3] não foram verificados.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Seu [_1]comprovante de identidade[_2] não foi verificado.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Seu [_1]comprovante de endereço[_2] não foi verificado.","Please_submit_your_[_1]proof_of_identity[_2]_":"Por favor envie seu [_1]comprovante de identidade[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Por favor envie seu [_1]comprovante de endereço[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Você optou por se excluir da negociação em nosso site até [_1]. Se você não puder colocar uma negociação ou depósito após seu período de auto-exclusão, entre em contato conosco via Live Chat.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Seu acesso ao Caixa foi desativado temporariamente pois você não definiu seu limite de faturamento de 30 dias. Por favor, vá para [_1]Auto-Exclusão[_2] e defina seu limite de faturamento de 30 dias.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Retiradas da MT5 foram desativadas na sua conta. Confira o seu e-mail para mais detalhes.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Infelizmente, você só pode fazer depósitos. Entre em contato conosco através do chat para permitir retiradas. ","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Seus [_1]Dados Pessoais[_2] estão incompletos. Por favor, vá às configurações de sua conta e complete seus dados pessoais para permitir depósitos e saques.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Seus [_1]detalhes pessoais[_2] estão incompletos. Por favor, vá para as configurações de sua conta e complete seus dados pessoais para permitir saques.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Seus [_1]Dados Pessoais[_2] estão incompletos. Por favor, vá às configurações de sua conta e complete seus dados pessoais para habilitar os depósitos.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Você não definiu seu país de residência. Para acessar o Caixa, por favor atualize seu [_1]c país de residência[_2] na seção Dados Pessoais nas configurações de sua conta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Seu caixa está bloqueado. Por favor completar a [_1] avaliação financeira[_2] para desbloqueá-lo.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Você não forneceu seu número de identificação fiscal. Esta informação é necessária para os requisitos legais e regulamentares. Por favor, vá para [_1]Dados Pessoais [_2] nas configurações de sua conta e preencha seu último número de identificação fiscal.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Infelizmente, você só pode fazer retiradas. Entre em contato conosco através do chat ao vivo. ","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"As retiradas foram desativadas em sua conta. Aguarde até que seus documentos enviados sejam verificados.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Por favor [_1]aceite os termos e condições atualizados[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Por favor [_1]aceite os termos e condições[_2] atualizados para aumentar os seus limites de depósito e negociação.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Sua conta está temporariamente desativada. Por favor, entre em contato conosco via Live Chat para permitir depósitos e saques novamente.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Por favor completar o Teste de Adequação para acessar seu caixa.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Seu caixa está bloqueado. Veja [_1]como protegemos seus fundos[_2] antes de prosseguir.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Sua conta precisa de autenticação. Por favor, envie seu [_1] documento de identidade[_2] para acessar o caixa. ","Account_Authenticated":"Conta autenticada","Connection_error:_Please_check_your_internet_connection_":"Erro de conexão: verifique a sua conexão com a internet.","Network_status":"Status da rede","This_is_a_staging_server_-_For_testing_purposes_only":"Este é um servidor temporário - apenas para testes","The_server_endpoint_is:_[_2]":"O terminal do 1servidor 2 é: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"O seu navegador web ([_1]) está desatualizado e pode afetar a sua experiência de negociação. Prossiga por sua conta e risco. [_2]Atualize navegador[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Você já atingiu o limite de taxa de solicitações por segundo. Tenta novamente mais tarde.","There_was_some_invalid_character_in_an_input_field_":"Houve algum caractere inválido no campo de entradas.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulamentada pela UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulamentado pela Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulamentada pela Malta Financial Services Authority (MFSA),","Please_select":"Selecione","Please_accept_the_terms_and_conditions_":"Por favor aceite os termos e condições.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Confirme que você não é uma pessoa politicamente exposta.","Today":"Hoje","Select_date":"Selecionar a data","Barrier":"Barreira","Entry_Spot":"Preço de entrada","Exit_Spot":"Preço de saída","Charting_for_this_underlying_is_delayed":"Os gráficos para esta base estão com atraso","Payout_Range":"Intervalo do pagamento de prêmios","Purchase_Time":"Hora da Compra","Reset_Barrier":"Barreira de redefinição","Reset_Time":"Hora de redefinição","Selected_Tick":"Tique-taque selecionado","Exit_Time":"Hora Final","Start_Time":"Hora de Início","Fiat":"Fiduciária","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Passo [_1]: [_2] ([_1] de [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"O código de verificação está errado. Use o link enviado ao seu e-mail.","Indicates_required_field":"Indica campo obrigatórios","Please_select_the_checkbox_":"Selecione a caixa de seleção","This_field_is_required_":"Este campo é obrigatório.","Should_be_a_valid_number_":"Deve ser um número válido.","Up_to_[_1]_decimal_places_are_allowed_":"Até [_1] casas decimais são permitidas.","Should_be_[_1]":"Deve ser [_1]","Should_be_between_[_1]_and_[_2]":"Deve ser entre [_1] e [_2]","Should_be_more_than_[_1]":"Deve ser mais do que [_1]","Should_be_less_than_[_1]":"Deve ser menos do que [_1]","Insufficient_balance_":"Saldo insuficiente.","Invalid_email_address_":"Endereço de e-mail inválido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"A senha deve conter letras maiúsculas e minúsculas com números.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Apenas letras, números, espaços, hífenes, pontos e apóstrofes são permitidos.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Apenas são permitidos números, letras, espaços e estes caracteres especiais: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Apenas letras, espaços, pontos e apóstrofes são permitidos.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Apenas letras, números, espaços e o hífen são permitidos.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Digite um número de telefone válido (por exemplo, +5511991234567).","The_two_passwords_that_you_entered_do_not_match_":"As palavras-chave que introduziu não coincidem.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] e [_2] não podem ser iguais.","Minimum_of_[_1]_characters_required_":"Um mínimo de [_1] caracteres é necessário.","You_should_enter_[_1]_characters_":"Você dever inserir [_1] caracteres.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Deve começar com uma letra ou um número e pode conter um hífen e sublinhado.","Invalid_verification_code_":"Código de verificação inválido.","Your_password_cannot_be_the_same_as_your_email_address_":"Sua senha não pode ser igual ao seu endereço de e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transação executada por [_1] (App ID: [_2])","Guide":"Guia","Next":"Próximo","Finish":"Terminar","Step":"Etapa","Select_your_market_and_underlying_asset":"Selecione o mercado e o seu ativo subjacente","Select_your_trade_type":"Selecione o tipo de negociação","Adjust_trade_parameters":"Ajustar parâmetros de negociação","Predict_the_directionand_purchase":"Preveja a direção
e compre","Your_session_duration_limit_will_end_in_[_1]_seconds_":"O limite de duração da sua sessão terminará em [_1] segundos.","January":"Janeiro","February":"Fevereiro","March":"Março","April":"Abril","May":"Maio","June":"Junho","July":"Julho","August":"Agosto","September":"Setembro","October":"Outubro","November":"Novembro","December":"Dezembro","Feb":"Fev","Apr":"Abr","Aug":"Ago","Sep":"Set","Oct":"Out","Dec":"Dez","Sunday":"Domingo","Monday":"Segunda-feira","Tuesday":"Terça-feira","Wednesday":"Quarta-feira","Thursday":"Quinta-feira","Friday":"Sexta-feira","Saturday":"Sábado","Su":"Dom","Mo":"Seg","Tu":"Ter","We":"Qua","Th":"Qui","Fr":"Sex","Sa":"Sáb","Previous":"Anterior","Hour":"Hora","Minute":"Minuto","Verification_required":"Autenticação necessária","Verify_identity":"Verificar identidade","From_account:_":" ","To_account:_":" ","Not_announced_for_this_currency_":"Não anunciado para esta moeda.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"\nRedefina o saldo de sua conta demo para [_1] a qualquer momento.","[_1]Manage_your_accounts[_2]":"[_1] Gerencie suas contas [_2]","time":"vez","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"vez ou criar uma conta MT5 real (ou uma conta Deriv X real em deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Você não pode mais mudar a moeda porque criou uma conta MT5 real (ou uma conta Deriv X real em deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Você não pode mais alterar a moeda porque já fez um ou mais depósitos na sua conta.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"A moeda da sua conta fiduciária está definida como [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"A moeda da sua conta fiduciária está definida como [_1].","This_is_your_[_1]_account_":"Esta é a sua conta [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Você pode [_1]definir uma nova moeda[_2] antes de depositar pela primeira [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Não quer negociar em [_1]? Você pode abrir outra conta de criptomoeda.","Switch_account":"Alternar conta","Switch_account?":"Alternar conta?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Para depositar dinheiro, por favor mude para sua conta [_1]. ","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Para retirar dinheiro, por favor mude para sua conta [_1]. ","Switch_to_crypto_account?":"Mudar para conta cripto?","To_deposit_cryptocurrency,_switch_your_account_":"Para depositar criptomoedas, mude de conta.","To_withdraw_cryptocurrency,_switch_your_account_":"Para retirar criptomoedas, mude de conta.","Cancel":"Cancelar","Withdraw":"Retirar","Deposit":"Depositar","Town/City":"Vila/Cidade","First_line_of_home_address":"Primeira linha do endereço residencial","Postal_Code/ZIP":"Código postal/CEP","State/Province":"Estado/Província","Email_address":"Endereço de e-mail","Telephone":"Telefone","Country_of_Residence":"País de Residência","details":"detalhes","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa está temporariamente fora do ar devido à manutenção do sistema. Você pode acessar o Caixa em alguns minutos quando a manutenção for concluída.","Your_cashier_is_locked_":"O seu caixa está bloqueado.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Observe que a moeda selecionada é permitida apenas para contas limitadas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Você atingiu o limite de saque. Faça upload do seu comprovante de identidade e endereço para aumentar o limite de saque e prossiga com o saque.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Os serviços de agente de pagamentos não estão atualmente disponíveis no seu país ou na sua moeda preferida.","Select_payment_agent":"Selecione o agente de pagamento","Amount_in":"Valor em","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Apenas letras, números, espaço, hífen, ponto final, vírgula e apóstrofo são permitidos.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"O seu pedido para levantar [_1] [_2] da sua conta [_3] para a conta [_4] do Agente de Pagamentos foi processado com sucesso.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"O seu token expirou ou é inválido. Clique [_1]aqui[_2] para reiniciar o processo de verificação.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Desculpe, no momento, os saques para esta moeda estão desativados.","Please_[_1]deposit[_2]_to_your_account_":"Por favor, [_1]deposite[_2] na sua conta.","Sorry,_account_signup_is_not_available_in_your_country_":"Lamentamos, mas o registro de contas não está disponível no seu país.","Asset":"Ativos","Opens":"Abre","Closes":"Fecha","Settles":"Liquida","Upcoming_Events":"Próximos Eventos","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Acrescente +/- para definir uma deslocação de barreira. Por exemplo, +0.005 significa uma barreira que está 0.005 acima do preço de entrada.","Digit":"Dígito","Percentage":"Porcentagem","Waiting_for_entry_tick_":"Aguardando tick de entrada.","High_Barrier":"Barreira Alta","Low_Barrier":"Barreira Baixa","Waiting_for_exit_tick_":"Aguardando tique-taque de saída.","Ticks_history_returned_an_empty_array_":"O histórico de tique-taques devolveu uma série vazia.","Chart_is_not_available_for_this_underlying_":"Não há nenhum gráfico disponível para este ativo subjacente.","Purchase":"Comprar","Net_profit":"Lucro líquido","Return":"Prêmio","Time_is_in_the_wrong_format_":"A hora está no formato incorreto.","Rise/Fall":"Sobe/Desce","Higher/Lower":"Superior/Inferior","Matches/Differs":"Combina/Difere","Even/Odd":"Par/Ímpar","Over/Under":"Acima/Abaixo","High-Close":"Fechar-Alto","Close-Low":"Fechar-Baixo","High-Low":"Alto-Baixo","Reset_Call":"Redefinição - Compra","Reset_Put":"Redefinição - Venda","Up/Down":"Acima/Abaixo","Only_Ups/Only_Downs":"Sempre acima/Sempre abaixo","In/Out":"Dentro/Fora","Select_Trade_Type":"Selecionar tipo de negociação","Tick":"Tique-taque","Spot":"Preço atual","Spot_Time_(GMT)":"Hora do preço à vista (GMT)","seconds":"segundos","minutes":"minutos","hours":"horas","days":"dias","tick":"tique-taque","second":"segundo","minute":"minuto","hour":"hora","day":"dia","Duration":"Duração","End_Time":"Hora final","Purchase_request_sent":"Solicitação de compra enviada","High":"Alta","Close":"Fechar","Low":"Baixa","Select_Asset":"Selecionar ativo","Search___":"Pesquisar...","Maximum_multiplier_of_1000_":"Multiplicador máximo de 1000.","Stake":"Entrada","Payout":"Prêmio","Multiplier":"Multiplicador","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Lamentamos, a sua conta não está autorizada a mais compras de contratos.","Trading_is_unavailable_at_this_time_":"As negociações estão atualmente indisponíveis.","Please_reload_the_page":"Recarregue a página","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"O seu requerimento para ser tratado como um cliente profissional está sendo processado.","Your_professional_client_request_is_[_1]not_approved[_2]_":"O seu requerimento para ser tratado como um cliente profissional [_1]não foi aprovado[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Por favor, reaplique quando os critérios exigidos forem cumpridos.","More_information_can_be_found_in_an_email_sent_to_you_":"Mais informações podem ser encontradas em um email enviado para você.","I_want_to_reapply":"Desejo candidatar-me novamente","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Na UE, as opções binárias financeiras apenas estão disponíveis a investidores profissionais.","Apply_now_as_a_professional_investor":"Inscreva-se agora como um investidor profissional","Try_our_[_1]Synthetic_Indices[_2]_":"Descubra os nossos [_1]Índices Sintéticos[_2].","Try_our_other_markets_":"Experimente os nossos outros mercados.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Por favor, preencha o formulário de [_1]Conta Real[_2] para verificar a sua idade, conforme exigido pela Comissão [_3]UK Gambling[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"O acesso à conta está temporariamente limitado. Verifique sua caixa de email para mais detalhes.","Contract_Confirmation":"Confirmação de Contrato","Your_transaction_reference_is":"A referência da sua transação é","Total_Cost":"Custo Total","Potential_Payout":"Possível Prêmio","Potential_Profit":"Lucro Potencial","View":"Ver","This_contract_won":"Esse contrato ganhou","This_contract_lost":"Esse contrato perdeu","The_reset_time_is_[_1]":"O momento de redefinição é [_1]","Now":"Agora","Average":"Média","Buy_price":"Preço de compra","Final_price":"Preço final","Loss":"Perda","Profit":"Lucro","Account_balance:":"Saldo da conta:","Reverse_Side":"Verso","Front_Side":"Frente","Pending":"Pendente","Submitting":"Enviando","Submitted":"Enviado","Failed":"Falhou","Compressing_Image":"Comprimindo imagem","Checking":"Verificando","Checked":"Verificado","Unable_to_read_file_[_1]":"Não foi possível ler o arquivo [_1]","Passport":"Passaporte","Identity_card":"Cartão de identidade nacional","Driving_licence":"Carteira de habilitação","Invalid_document_format_":"Formato de documento inválido.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"O arquivo ([_1]) excede o limite de tamanho permitido. Tamanho de arquivo máximo permitido: [_2]","ID_number_is_required_for_[_1]_":"Número de identificação é necessário para [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Apenas letras, números, espaços, sublinhados e hífenes são permitidos no número de identificação ([_1]).","Expiry_date_is_required_for_[_1]_":"A data de vencimento é necessária para [_1].","Place_of_birth":"Local de nascimento","Please_select_the_country_of_document_issuance":"Por favor, selecione o país emissor do documento","Choose_the_document_type":"Escolha o tipo de documento","Please_enter_the_correct_format__Example:":"Por favor, insira o formato correto. Exemplo:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Verifique o e-mail associado a sua conta Google e clique no link do e-mail para continuar.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Verifique a conta de e-mail associada ao seu Facebook e clique no link do e-mail para continuar.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Verifique a conta de e-mail associada ao seu ID Apple e clique no link do e-mail para continuar.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Clique no link do e-mail para alterar sua senha MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Clique no link do e-mail para alterar sua senha Binary. ","We’ve_sent_you_an_email":"Nós enviamos a você um email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Você está usando sua conta [_1] para fazer login em sua conta Binary.com. Para alterar seu método de login e usar um nome de usuário e senha, clique no botão [_2]Desconectar[_3]. ","Linked_with_[_1]":"Vinculado com [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Você precisará definir uma senha para concluir o processo.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Tem certeza que deseja se desvincular de [_1]?","Unlink":"Desvincular","Country_not_found":"País não encontrado","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Os documentos desse país não são atualmente suportados - tente outro tipo de documento","Submit_document":"\nEnviar documento","Select_country":"Selecione o país","e_g__United_States":"por exemplo. Estados Unidos","Search_for_country":"Pesquise por país","Select_issuing_country":"Selecione o país emissor","Submit_verification":"Enviar verificação","Tips":"Dicas","Documents_uploaded":"Documentos enviados","Document_uploaded":"Documento enviado","Selfie_uploaded":"Selfie enviada","We're_now_ready_to_verify_your_identity":"Agora estamos prontos para verificar sua identidade","Great,_that's_everything_we_need":"Ótimo, é tudo o que precisamos","The_link_only_works_on_mobile_devices":"O link funciona apenas em dispositivos móveis","Something's_gone_wrong":"Algo deu errado","You'll_need_to_restart_your_verification_on_your_computer":"Você precisará reiniciar sua verificação no seu computador","Get_secure_link":"Obter link seguro","Steps_required_to_continue_verification_on_your_mobile":"Etapas necessárias para continuar a verificação no seu celular","Check_back_here_to_finish_the_submission":"Volte aqui para finalizar o envio","Open_the_link_and_complete_the_tasks":"Abra o link e conclua as tarefas","Send_a_secure_link_to_your_phone":"Envie um link seguro para o seu telefone","Here's_how_to_do_it:":"Veja como fazer:","Continue_on_your_phone":"Continue no telefone","Your_computer_may_take_a_few_seconds_to_update":"O seu computador pode demorar alguns segundos para atualizar","You_can_now_return_to_your_computer_to_continue":"Agora você pode retornar ao seu computador para continuar","Uploads_successful":"Envios bem-sucedidos","Make_sure_everything_is_clear":"Certifique-se de que tudo está claro","Blurry_photo_detected":"Foto borrada detectada","Make_sure_full_document_is_visible":"Certifique-se de que o documento completo esteja visível","Cut-off_image_detected":"Imagem de corte detectada","Move_away_from_direct_light":"Afaste-se da luz direta","Glare_detected":"Brilho detectado","Make_sure_all_of_the_document_is_in_the_photo":"Verifique se todo o documento está na foto","No_document_detected":"Nenhum documento detectado","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da sua Id nacional estejam visíveis, sem borrões ou reflexos","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Levará mais tempo para verificar se não conseguirmos ler","To_smoothly_verify_you,_we_need_a_better_photo":"Para verificar você com mais facilidade, precisamos de uma foto melhor","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da sua carteira de condução estejam visíveis, sem borrões ou reflexos","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da seu passaporte estejam visíveis, sem borrões ou reflexos","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que os detalhes da sua licença sejam claros para ler, sem borrões ou reflexos","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que os detalhes são claros para ler, sem desfoque ou brilho","Redo":"Refazer","Confirm":"Confirmar","Upload_anyway":"Faça upload mesmo assim","Enlarge_image":"Ampliar imagem","Photo_of_your_document":"Foto do seu documento","Check_your_image":"Verifique sua imagem","Front_and_back":"Frente e verso","Driver's_license":"Carteira de condução","Face_photo_page":"Página foto do rosto","Residence_permit":"Permissão de residência","Sorry,_no_mobile_phone_bills":"Desculpe, sem contas de celular","Documents_you_can_use_to_verify_your_identity":"Documentos que você pode usar para verificar sua identidade","It_must_be_an_official_photo_ID":"Deve ser uma identificação oficial com foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Estes são os documentos com maior probabilidade de mostrar seu endereço residencial atual","Choose_document":"Escolha o documento","Select_a_%{country}_document":"Selecione um %{country} documento","or_upload_photo_–_no_scans_or_photocopies":"ou fazer upload de foto - (não envie digitalizações)","Continue_on_phone":"Continue no telefone","Take_a_photo_with_your_phone":"Tire uma foto com seu telefone","Submit_identity_card_(back)":"Enviar carteira de identidade nacional (verso)","Submit_identity_card_(front)":"Enviar carteira de identidade nacional (frente)","Submit_license_(back)":"Enviar carteira de condução (verso)","Submit_license_(front)":"Enviar carteira de condução (frente)","Submit_passport_photo_page":"Enviar foto da página do passaporte","Submit_residence_permit_(back)":"Enviar autorização de residência (voltar)","Submit_residence_permit_(front)":"Apresentar autorização de residência (frente)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Reinicie o processo na versão mais recente do Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Reinicie o processo na versão mais recente do Safari","Unsupported_browser":"Navegador não suportado","Close_identity_verification_screen":"Fechar tela de verificação de identidade","Dismiss_alert":"Fechar alerta","back":"verso","close":"fechar","Restart_process_on_a_different_device":"Reinicie o processo em um dispositivo diferente","Camera_not_detected":"Câmera não detectada","Must_be_under_10MB_":"Deve ter menos de 10 MB.","File_size_exceeded_":"Tamanho do arquivo excedido.","Try_using_another_file_type_":"Tente enviar outro tipo de arquivo.","File_not_uploaded_":"Arquivo não carregado.","An_error_occurred_while_loading_the_component":"Ocorreu um erro ao carregar o componente","Only_your_face_can_be_in_the_selfie":"Somente seu rosto pode estar na selfie","Multiple_faces_found":"Mais de um rosto encontrado","Your_face_is_needed_in_the_selfie":"Seu rosto é necessário na selfie","No_face_found":"Nenhum rosto encontrado","Please_try_again":"Por favor, tente novamente","Connection_lost":"Conexão perdida","Copy_the_link_to_your_phone":"Copie o link para o seu telefone","Too_many_failed_attempts":"Muitas tentativas falhas","Try_using_a_JPG_or_PNG_file":"Tente usar um arquivo JPG ou PNG","File_type_not_supported":"Tipo de arquivo não suportado","Loading___":"Carregando...","Loading":"Carregando","Check_that_your_number_is_correct":"Verifique se o seu número está correto","Copied":"Copiado","Copy":"Copiar","Send_link":"Enviar link","How_to_scan_a_QR_code":"Como digitalizar um código QR","Point_your_phone’s_camera_at_the_QR_code":"Aponte a câmera do seu telefone para o código QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Se não funcionar, baixe um scanner de código QR no Google Play ou na App Store","or":"ou","Scan_QR_code":"Digitalizar código QR","Get_link_via_SMS":"Obter link via SMS","Copy_link":"Copiar link","Sending":"Enviando","Enter_mobile_number":"Digite seu número de celular","Enter_your_mobile_number:":"Digite seu número de celular:","Scan_the_QR_code_with_your_phone":"Digitalize o código QR com o seu telefone","Send_this_one-time_link_to_your_phone":"Envie este link único para o seu telefone","Open_the_link_on_your_mobile":"Abra o link no seu celular","Get_your_secure_link":"Obtenha seu link seguro","Copy_the_link_to_your_mobile_browser":"Copie o link para o seu navegador no celular","Continue":"Continuar","Make_sure§":"Certifique-se de que§","2__Your_desktop_window_stays_open":"2. A janela da sua área de trabalho permanece aberta","1__This_link_was_sent_by_you":"1. Este link foi enviado por você","Continue_with_the_verification":"Continue com a verificação","Linked_to_your_computer":"Ligado ao seu computador","Take_a_photo_of_the_back_of_your_card":"Tire uma foto do verso da sua carteira de identidade nacional","Take_a_photo_of_the_front_of_your_card":"Tire uma foto da frente da sua carteira de identidade nacional","Take_a_photo_of_the_back_of_your_license":"Tire uma foto do verso da sua carteira de motorista","Take_a_photo_of_the_front_of_your_license":"Tire uma foto da frente da sua carteira de motorista","Take_a_photo_of_your_passport_photo_page":"Tire uma foto da página do seu passaporte","Take_a_selfie_showing_your_face":"Tire uma selfie mostrando seu rosto","Take_a_photo_using_the_basic_camera_mode_instead":"Tire uma foto usando o modo de câmera básico","Take_a_photo":"Tire uma foto","Passport_photo_page":"Página da foto do passaporte","Thank_you":"Obrigado","Verification_complete":"Verificação completa","Refresh":"Atualizar","Recovery":"Recuperação","Follow_these_steps_to_recover_camera_access:":"Siga estas etapas para recuperar o acesso da câmera:","Refresh_this_page_to_restart_the_identity_verification_process":"Atualize esta página para reiniciar o processo de verificação de identidade","Grant_access_to_your_camera_from_your_browser_settings":"Conceda acesso à sua câmera a partir das configurações do navegador","Recover_camera_access_to_continue_face_verification":"Recupere o acesso da câmera para continuar a verificação de rosto","Camera_access_is_denied":"Acesso à câmera negado","We_cannot_verify_you_without_using_your_camera":"Não podemos verificar você sem usar sua câmera","Enable_camera":"Ativar câmera","When_prompted,_you_must_enable_camera_access_to_continue":"Quando solicitado, você deve habilitar o acesso à câmera para continuar","Allow_camera_access":"Permitir acesso à câmera","Provide_the_whole_document_page_for_best_results":"Forneça a página inteira do documento para obter melhores resultados","Upload_back_of_card_from_your_computer":"Enviar o verso da carteira nacional direto do seu computador","Upload_front_of_card_from_your_computer":"Enviar a frente da carteira nacional direto do seu computador","Upload_back_of_license_from_your_computer":"Enviar o verso da carteira de condução direto do seu computador","Upload_front_of_license_from_your_computer":"Enviar a frente da carteira de condução direto do seu computador","Upload_passport_photo_page_from_your_computer":"Enviar a página do passaporte (a que mostra sua foto) direto do seu computador","Upload_a_selfie_from_your_computer":"Enviar uma selfie direto do seu computador","Take_photo":"Tirar uma foto","Upload":"Enviar","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Verifique se ele está conectado e funcional. Você também pode continuar a verificação em seu telefone","Make_sure_your_device_has_a_working_camera":"Certifique-se de que a câmera do seu dispositivo esteja funcionando","Camera_not_working?":"A câmera não está funcionando?","It_may_be_disconnected__Try_using_your_phone_instead_":"Pode estar desconectado. Tente usar seu telefone.","Make_sure_your_device's_camera_works":"Verifique se a câmera do seu dispositivo funciona","Camera_not_working":"A câmera não está funcionando","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Lembre-se de pressionar parar quando terminar. Refazer ações de vídeo","Looks_like_you_took_too_long":"Parece que demorou muito","View_from_camera":"Vista da câmera","Take_a_selfie":"Tire uma selfie","Photo_of_your_face":"Foto do seu rosto","Make_sure_your_selfie_clearly_shows_your_face":"Verifique se a sua selfie mostra claramente o seu rosto","Check_selfie":"Verifique sua selfie","Tips_to_take_a_good_selfie":"Dicas para tirar uma boa selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Olhe para frente e verifique se seus olhos estão claramente visíveis","Remove_your_glasses,_if_necessary":"Retire os óculos, se necessário","We'll_compare_it_with_your_document":"Carregar uma selfie do seu computador","Your_link_will_expire_in_one_hour":"Seu link irá expirar em uma hora","Keep_this_window_open_while_using_your_mobile":"Mantenha essa janela aberta enquanto estiver usando seu celular","Resend_link":"Reenviar link","We've_sent_a_secure_link_to_%{number}":"Enviamos um link seguro para %{number}","It_may_take_a_few_minutes_to_arrive":"Pode demorar alguns minutos para chegar","Check_your_mobile":"Verifique seu celular","Your_mobile_link_will_expire_in_one_hour":"Seu link para celular expirará em uma hora","Don't_refresh_this_page":"Não atualize esta página","Once_you've_finished_we'll_take_you_to_the_next_step":"Assim que terminar, nós o levaremos para a próxima etapa","Connected_to_your_mobile":"Conectado ao seu celular","Upload_photo":"Carregar foto","Example_of_a_blurry_document":"Exemplo de documento borrado","All_details_must_be_clear_—_nothing_blurry":"Todos os detalhes devem ser claros - nada borrado","Example_of_a_cut-off_document":"Exemplo de um documento cortado","Show_all_details_—_including_the_bottom_2_lines":"Mostrar todos os detalhes - incluindo as 2 últimas linhas","Example_of_a_document_with_glare":"Exemplo de um documento com reflexo","Move_away_from_direct_light_—_no_glare":"Afaste-se da luz direta - sem brilho","Document_example":"Exemplo de documento","The_photo_should_clearly_show_your_document":"A foto deve mostrar claramente o seu documento","Scans_and_photocopies_are_not_accepted":"Digitalizações e fotocópias não são aceitas","Upload_passport_photo_page":"Carregar foto da página do passaporte","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Para abrir uma conta bancária, precisaremos verificar sua identidade.","It_will_only_take_a_couple_of_minutes_":"Isso levará apenas alguns minutos.","Verify_Identity":"Verificar Identidade","Open_your_new_bank_account":"Abra sua nova conta bancária","Please_enter_a_valid_Login_ID_":"Insira uma ID de login válida.","Amount":"Quantia","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"O seu pedido para transferir [_1] [_2] de [_3] para [_4] foi processado com sucesso.","Resale_not_offered":"A revenda não está disponivel","You've_made_no_transactions_of_this_type_up_to_this_date_":"Você não fez nenhuma transação deste tipo até esta data.","Date":"Data","Contract":"Contrato","Purchase_Price":"Preço de Compra","Sale_Date":"Data de Venda","Sale_Price":"Preço de venda","Profit/Loss":"Lucro/Perda","Details":"Dados","Total_Profit/Loss":"Lucro/Perda Total","Action_required!":"Ação necessária!","Sorry,_an_error_occurred_while_processing_your_request_":"Lamentamos, ocorreu um erro durante o processamento do seu pedido.","position(s)":"posição(ões)","withdrawal(s)":"retirada(s)","We_couldn’t_read_that!":"Não conseguimos ler isso!","Remaining_characters:_[_1]_":"Caracteres restantes: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Por favor, insira no máximo [_1] caracteres para ambos os campos.","Only_[_1]_are_allowed_":"Apenas [_1] são permitidos.","letters":"caracteres","numbers":"números","space":"espaço","Please_select_at_least_one_scope":"Selecione pelo menos um escopo","New_token_created_":"Novo token criado.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"O número máximo de tokens ([_1]) foi atingido.","Name":"Nome","Scopes":"Âmbitos","Last_Used":"Última utilização","Action":"Ação","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Tem certeza que deseja excluir permanentemente o token","Delete":"Excluir","Never_Used":"Nunca utilizado","You_have_not_granted_access_to_any_applications_":"Você não concedeu acesso a nenhum aplicativo.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Tem certeza que deseja revogar permanentemente acesso ao aplicativo","Revoke_access":"Revogar acesso","Admin":"Administração","Payments":"Pagamentos","Read":"Ler","Trade":"Negociar","Trading_Information":"Informações de Negociação","Never":"Nunca","Permissions":"Permissões","Last_Login":"Último login","You_did_not_change_anything_":"Você não alterou nada.","Your_changes_have_been_updated_successfully_":"As suas alterações foram atualizadas com sucesso.","Successful":"Bem-sucedido","Date_and_Time":"Data e hora","Browser":"Navegador","IP_Address":"Endereço IP","Status":"Estado","Your_account_has_no_Login/Logout_activity_":"A sua conta não tem nenhuma atividade de login/sair.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"A sua conta está totalmente autenticada e os seus limites de retirada de fundos foram aumentados.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Atualmente, o seu limite de retirada de [_1] dia é [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Você já retirou [_1][_2] em agregado nos últimos [_3] dias.","Your_withdrawal_limit_is_[_1][_2]_":"Seu limite de retirada é [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Você já retirou [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Portanto, seu saldo sacável é de apenas [_1][_2], sujeito aos fundos disponíveis da sua conta.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Certifique-se de que as informações acima são verdadeiras e estão completas.","Your_settings_have_been_updated_successfully_":"As suas configurações foram atualizadas com sucesso.","Sorry,_an_error_occurred_while_processing_your_account_":"Lamentamos, ocorreu um erro durante o processamento da sua conta.","Please_select_a_country":"Selecione um país","Timed_out_until":"Bloqueado até","Excluded_from_the_website_until":"Excluído deste site até","Session_duration_limit_cannot_be_more_than_6_weeks_":"O limite de duração de sessões não pode ser superior a 6 semanas.","Time_out_must_be_after_today_":"O limite de tempo deve ser depois de hoje.","Time_out_cannot_be_more_than_6_weeks_":"O limite de tempo não pode ser superior a 6 semanas.","Time_out_cannot_be_in_the_past_":"A hora não pode ser no passado.","Please_select_a_valid_time_":"Selecione uma hora válida.","Exclude_time_cannot_be_less_than_6_months_":"O tempo de exclusão não pode ser inferior a seis meses.","Exclude_time_cannot_be_for_more_than_5_years_":"O tempo de exclusão não pode ser superior a 5 anos.","Confirm_changes":"Confirmar mudanças","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Vamos atualizar seus limites. Clique em [_1]Concordar e aceitar[_2] para reconhecer que você é totalmente responsável por suas ações e que você reconhece que não somos responsáveis ​​por qualquer vício ou perda. ","Agree_and_accept":"Concordar e aceitar","Go_back":"Voltar","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Quando você clicar em \"OK\" será excluído de poder negociar no site até a data selecionada.","Your_changes_have_been_updated_":"As suas alterações foram atualizadas.","Disable":"Desabilitar","Enable":"Habilitar","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Você habilitou com sucesso a autenticação de dois fatores na sua conta.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Você desabilitou com sucesso a autenticação de dois fatores na sua conta.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Você não precisa autenticar sua conta agora.[_1]Nós vamos informar você quando sua conta precisar ser autenticada.","No_authentication_required":"Não é necessário autenticar agora.","Back_to_trading":"Voltar as negociações","You_are_categorised_as_a_professional_client_":"Você está categorizado como um cliente profissional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Você está categorizado como um cliente particular. Faça o requerimento para ser tratado como um cliente profissional.","Bid":"Lance","Closed_Bid":"Lance fechado.","Reference_ID":"ID de referência","Description":"Descrição","Credit/Debit":"Crédito/Débito","Balance":"Saldo","Top_up_error":"Erro de carregamento de saldo","Understood":"Ok","Top-up_successful":"Carregamento bem-sucedido","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] foram creditados na sua Conta Virtual: [_2].","Go_to_statement":"Ir para extrato","Continue_trading":"Continue a negociar","Your_Demo_balance_has_been_reset_":"Seu saldo demo foi redefinido.","Account":"Conta","Available_Markets":"Mercados disponíveis","Type":"Tipo","Currency":"Moeda","Multipliers_Account":"Conta de Multiplicadores","Gaming_Account":"Conta de Jogos","Options_Account":"Conta de Opções","Real_Account":"Conta Real","Counterparty":"Contraparte","Jurisdiction":"Jurisdição","Create_account":"Criar conta","Change_currency":"Trocar moeda","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Você está limitado a uma conta de moeda fiduciária. A moeda de sua conta fiduciária pode ser alterada antes de depositar em sua conta fiduciária pela primeira vez ou criar uma conta MT5 real (ou uma conta Deriv X real em deriv.com). Você também pode abrir uma conta para cada criptomoeda suportada.","This_account_is_disabled":"Esta conta está desativada","This_account_is_excluded_until_[_1]":"Esta conta está excluída até [_1]","Set_currency":"Definir moeda","Commodities":"Matérias-primas","Forex":"Forex (Mercado de Câmbio)","Stock_Indices":"Índices de ações","Stocks":"Ações","Synthetic_Indices":"Índices Sintéticos","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Se você tiver uma conta conosco, enviaremos um link para seu e-mail em alguns minutos para redefinir sua senha.","Sign_up":"Inscreva-se","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"A negociação de Contratos Por Diferenças (CFDs) em Índices Sintéticos pode não ser adequada para todos. Certifique-se de que compreenda totalmente os riscos envolvidos, incluindo a possibilidade de perder todos os fundos na sua conta MT5. Apostar pode se tornar viciante – jogue responsavelmente.","Do_you_wish_to_continue?":"Deseja continuar?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Você está prestes a comprar um produto que não é simples e pode ser difícil de entender: Contratos de diferença e forex. Como regra geral, a CNMV considera que esses produtos não são adequados para clientes de varejo, devido à sua complexidade.","Acknowledge":"Confirmar","Change_Password":"Alterar Senha","The_investor_password_of_account_number_[_1]_has_been_changed_":"A senha de investidor da conta número [_1] foi alterada.","Reset_Password":"Redefinir senha","Verify_Reset_Password":"Verificar senha redefinida","Please_check_your_email_for_further_instructions_":"Por favor, confira a sua conta de e-mail para mais instruções.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Depósito de [_1] da conta [_2] para a conta [_3] está concluída. ID de transação: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"retirada de [_1] da conta [_2] para a conta [_3] está concluída. ID de transação: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Para retirar do MetaTrader 5 [_1] por favor [_2]complete a autenticação[_3] de sua conta Binary.","Current_password":"Senha atual","New_password":"Nova senha","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Para transferir fundos para sua conta MT5, insira uma quantia de [_1] ou mais","You_have_insufficient_funds_in_your_MT5_account_":"Você não tem fundos suficientes em sua conta MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Lamentamos, este recurso não está disponível na sua jurisdição.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"\nDevido a um problema em nosso servidor, algumas de suas contas MT5 estão indisponíveis no momento. [_1]Por favor aguarde e obrigada pela sua paciência.","Unavailable":"\nIndisponível","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] foi creditado em sua conta demo do MT5: [_2].","_(Region_added)":" (Região acrescentada)","_(Temporarily_unavailable)":" (Temporariamente indisponível)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nossos servidores MT5 estão temporariamente indisponíveis. Estamos trabalhando para restaurá-los. Por favor, tente novamente em alguns minutos.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Use a senha MT5 para entrar em qualquer uma de suas contas [_1] ao usar aplicativos MT5 em seu celular ou outros dispositivos.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Isso mudará a senha de todas as suas contas [_1].","Demo_Accounts":"Contas demo","Real-Money_Accounts":"Contas de dinheiro real","Demo_Account":"Conta demo","Real-Money_Account":"Conta de dinheiro real","for_account_[_1]":"da conta [_1]","[_1]_Account_[_2]":"Conta [_1] [_2]","MT5_Financial":"Finanças MT5","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Digite sua senha MT5 para adicionar uma conta [_1] [_2]. ","MT5_Synthetic":"MT5 Sintéticos","Get_[_1]":"Obter [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"O saldo da sua conta demo está atualmente equivalente a [_1] ou menos. É possível carregar mais [_2] para a sua conta.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"É possível carregar mais [_1] para a sua conta demo quando você tem [_2] ou menos de saldo.","Yes,_I'm_sure":"Sim, tenho certeza","Are_you_sure?":"Tem certeza?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Você não poderá alterar a moeda da sua conta fiduciária depois de criar essa conta [_1]. Tem certeza de que deseja continuar?","Go_to_Deriv_to_add_an_MT5_account":"Siga para Deriv para adicionar uma conta MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Você poderá fazer login na Deriv usando suas credenciais Binary.com.","Back":"Voltar","Go_to_Deriv":"Vá para Deriv","Address":"Endereço","Account_currency":"Moeda da conta","Financial_assessment":"Avaliação financeira","Personal_details":"Dados pessoais","Terms_of_use":"Termos de uso","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"O Tether Omni (USDT) é uma versão do Tether atrelada ao USD e é baseada no blockchain Bitcoin. ","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"O Tether ERC20 (eUSDT) é uma versão do Tether indexada ao USD e hospedada na plataforma Ethereum.","Title_and_name":"Título e nome","Real_money_account_opening":"Abertura de uma conta de dinheiro real","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"O seu token expirou ou é inválido. Clique aqui para reiniciar o processo de verificação.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"O endereço de e-mail que forneceu já está em uso. Caso você tenha esquecido a sua senha, experimente usar a nossa ferramenta de recuperação de senha ou contate o nosso serviço de apoio ao cliente.","Password_is_not_strong_enough_":"A senha não é forte o suficiente.","Upgrade_now":"Atualize já","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] dias [_2] horas [_3] minutos","Your_trading_statistics_since_[_1]_":"As suas estatísticas de negociação desde [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"A negociação de [_1] pode tornar-se um verdadeiro vício, assim como qualquer outra atividade levada aos seus limites. Para evitar os perigos desse vício, fornecemos uma verificação da realidade que lhe dá um resumo de suas negociações e contas regularmente.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Clique no link abaixo para reiniciar o processo de recuperação de senha.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Você tem uma nova senha Binary para fazer login em Binary.com.","Success":"Sucesso","Done":"Concluído","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Sua conta Binary foi desvinculada de [_1]. Use [_2]seu endereço de email e senha em seu próximo acesso.","Success!":"Sucesso!","Got_it":"Entendi","Binary_Password_Reset":"Redefinir Senha Binary ","Binary_password":"Senha Binary","You_have_added_a_[_1]_account_":"Você adicionou uma conta [_1].","Add_account":"Adicionar conta","Add_new_crypto_account":"Adicionar nova conta em criptomoeda","Add_new_account":"Adicionar nova conta","Create_a_cryptocurrency_account":"Crie uma conta em criptomoeda","Choose_your_preferred_cryptocurrency":"Escolha sua criptomoeda preferida","You_can_open_an_account_for_each_cryptocurrency_":"Você pode abrir uma conta para cada criptomoeda.","Choose_a_cryptocurrency_account":"Escolha uma conta em criptomoeda","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Escolha uma das contas ou adicione uma nova conta em criptomoeda","Choose_an_account":"Escolha uma conta","Choose_one_of_your_accounts_or_add_a_new_account":"Escolha uma conta ou adicione uma nova conta","Choose_one_of_your_accounts":"Escolha uma de suas contas","Please_select_the_currency_for_this_account:":"Selecione a moeda desta conta:","deposit":"depósito","deposit_or_create_a_CFDs_account":"depositar ou criar uma conta CFDs","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Tem certeza de que deseja criar sua conta [_1] agora?","Note:":"Nota: ","You_may_open_one_account_for_each_supported_cryptocurrency_":"Você pode abrir uma conta para cada criptomoeda suportada.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Tem certeza de que deseja criar uma conta fiduciária em [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Você está limitado a apenas uma conta fiduciária. Você pode alterar a moeda da sua conta fiduciária a qualquer momento antes de fazer pela primeira vez um [_1].","Yes":"Sim","Create_[_1]_account":"Criar uma conta [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Você definiu com sucesso a moeda da sua conta como [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Você alterou com sucesso a moeda da sua conta de [_1] para [_2].","Please_choose_a_currency":"Escolha uma moeda","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Você tem uma nova senha MT5 para fazer login em suas contas [_1] na web e aplicativos móveis.","Asian_Up":"Asiático acima","Asian_Down":"Asiático abaixo","Higher":"Superior","Higher_or_equal":"Superior ou igual","Lower":"Inferior","Lower_or_equal":"Inferior ou igual","Digit_Matches":"Dígito Combina","Digit_Differs":"Dígito Difere","Digit_Odd":"Dígito Ímpar","Digit_Even":"Dígito Par","Digit_Over":"Dígito Acima","Digit_Under":"Dígito Abaixo","Ends_Outside":"Termina fora","Ends_Between":"Termina entre","Stays_Between":"Fica entre","Goes_Outside":"Sai fora","Touches":"Toca","Does_Not_Touch":"Não toca","Call_Spread":"Spread de compra","Put_Spread":"Spead de venda","High_Tick":"Tique-taque Alto","Low_Tick":"Tique-taque Baixo","Only_Ups":"Sempre acima","Only_Downs":"Sempre abaixo","Multiplier_Up":"Multiplicar para Cima","Multiplier_Down":"Multiplicar para Baixo","Equals":"Igual","Not":"Não","Buy":"Comprar","Sell":"Vender","Waiting_for_contract_settlement_":"Aguardando liquidação do contrato.","including_Deal_Cancel__Fee":"incluindo o Cancelamento da Negociação. Taxa","Contract_has_not_started_yet":"O contrato ainda não foi iniciado","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Este contrato está disponível apenas na [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Este contrato só está disponível em DTrader. [_1][_2]Vá para o Dtrader[_3] para fechar ou cancelar este contrato.","Contract_Result":"Resultado do contrato","Close_Time":"Hora de fechamento","Exit_Spot_Time":"Hora do preço de saída","Audit":"Auditoria","View_chart":"Ver gráfico","Audit_Page":"Página de auditoria","Contract_Starts":"Contrato começa","Contract_Ends":"Contrato termina","Contract_Details":"Detalhes do Contrato","Target":"Alvo","Contract_Information":"Informação do contrato","Contract_Type":"Tipo de contrato","Transaction_ID":"ID da transação","Remaining_Time":"Tempo restante","Maximum_payout":"Prêmio máximo","Barrier_Change":"Alteração de barreira","Current":"Atual","Spot_Time":"Hora do preço à vista","Current_Time":"Hora atual","Indicative":"Indicativo","Potential_Profit/Loss":"Lucro/Perda potencial","Deal_Cancel__Fee":"Cancelar negócio. Taxa","You_can_close_this_window_without_interrupting_your_trade_":"É possível fechar esta janela sem interromper a sua negociação.","There_was_an_error":"Houve um erro","Sell_at_market":"Venda no mercado","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"O contrato será vendido ao preço prevalecente do mercado no momento em que o pedido for recebido pelos nossos servidores. Esse preço pode ser diferente do preço indicado.","You_have_sold_this_contract_at_[_1]_[_2]":"Você vendeu este contrato por [_1] [_2]","Your_transaction_reference_number_is_[_1]":"O número de referência da sua transação é [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Obrigado por se cadastrar! Verifique a sua caixa de entrada para completar o processo de registro.","All_markets_are_closed_now__Please_try_again_later_":"Todos os mercados estão agora fechados. Tente novamente mais tarde.","Withdrawal":"Retirada","demo_credit_to_account":"dinheiro demo para conta","login":"conectar","logout":"sair","Asians":"Asiáticos","Call_Spread/Put_Spread":"Spread de compra/venda","Digits":"Dígitos","Ends_Between/Ends_Outside":"Termina entre/Termina fora","High/Low_Ticks":"Tique-taques Altos/Baixos","Lookbacks":"Retrospectivos","Reset_Call/Reset_Put":"Redefinição - Compra/Redefinição - Venda","Stays_Between/Goes_Outside":"Fica entre/Sai fora","Touch/No_Touch":"Toca/Não Toca","Christmas_Day":"Dia de Natal","Closes_early_(at_18:00)":"Fecha cedo (às 18:00)","Closes_early_(at_21:00)":"Fecha cedo (às 21:00)","Fridays":"Sexta-feira","New_Year's_Day":"Dia de Ano Novo","today":"hoje","today,_Fridays":"hoje, sextas-feiras","There_was_a_problem_accessing_the_server_":"Ocorreu um problema ao aceder ao servidor.","There_was_a_problem_accessing_the_server_during_purchase_":"Ocorreu um problema ao aceder ao servidor durante a aquisição."}; \ No newline at end of file +texts_json['PT'] = {"Multipliers":"Multiplicadores","Gaming":"Aposta","Options":"Opções","Real_CFDs":"CFDs Real","Real_Financial":"Real Financeira","Demo_CFDs":"CFDs Demo","Demo_Financial":"Demo Financeira","Derived":"Derivados","Demo_Derived":"Demo Derivados","Real_Derived":"Demo Derivados","Financial":"Financeira","Financial_STP":"Financeira STP","Demo_Financial_STP":"Demo Financeira STP","Real_Financial_STP":"Real Financeira STP","Ether_Classic":"Ethereum Classic","Binary_Coin":"Moeda Binary","Connecting_to_server":"Conectando ao servidor","Use_a_few_words,_avoid_common_phrases":"Use poucas palavras, evite frases comuns","No_need_for_symbols,_digits,_or_uppercase_letters":"Não há necessidade de símbolos, dígitos ou letras maiúsculas","Add_another_word_or_two__Uncommon_words_are_better_":"Adicione outra palavra ou duas. Palavras incomuns são melhores.","Straight_rows_of_keys_are_easy_to_guess":"Linhas retas de teclas são fáceis de adivinhar","Short_keyboard_patterns_are_easy_to_guess":"Padrões curtos de teclado são fáceis de adivinhar","Use_a_longer_keyboard_pattern_with_more_turns":"Use um padrão de teclado mais longo com mais voltas","Repeats_like_\"aaa\"_are_easy_to_guess":"Repetições como \"aaa\" são fáceis de adivinhar","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Repetições como “abcabcabc” são apenas um pouco mais difíceis de adivinhar do que “abc”","Avoid_repeated_words_and_characters":"Evite palavras e caracteres repetidos","Sequences_like_abc_or_6543_are_easy_to_guess":"Sequências como abc ou 6543 são fáceis de adivinhar","Avoid_sequences":"Evite sequências","Recent_years_are_easy_to_guess":"Os últimos anos são fáceis de adivinhar","Avoid_recent_years":"Evite os últimos anos","Avoid_years_that_are_associated_with_you":"Evite anos que estão associados a você","Dates_are_often_easy_to_guess":"Datas costumam ser fáceis de adivinhar","Avoid_dates_and_years_that_are_associated_with_you":"Evite datas e anos associados a você","This_is_a_top-10_common_password":"Esta é uma das 10 senhas mais comuns","This_is_a_top-100_common_password":"Esta é uma das 100 principais senhas comuns","This_is_a_very_common_password":"Esta é uma senha muito comum","This_is_similar_to_a_commonly_used_password":"Esta é semelhante a uma senha usada comumente","A_word_by_itself_is_easy_to_guess":"Uma palavra por si só é fácil de adivinhar","Names_and_surnames_by_themselves_are_easy_to_guess":"Nomes e sobrenomes por si só são fáceis de adivinhar","Common_names_and_surnames_are_easy_to_guess":"Nomes e sobrenomes comuns são fáceis de adivinhar","Capitalization_doesn't_help_very_much":"Letras maiúsculas não ajudam muito","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Todas as letras maiúsculas são tão fáceis de adivinhar quanto as letras minúsculas","Reversed_words_aren't_much_harder_to_guess":"Palavras invertidas não são muito mais difíceis de adivinhar","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Previsíveis substituições como '@' em vez de 'a' não ajudam muito","This_password_is_on_the_blacklist":"Esta senha está na lista negra","Unknown_OS":"SO desconhecido","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Você será redirecionado para um site de terceiros que não pertence à Binary.com.","Click_OK_to_proceed_":"Clique em OK para avançar.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Certifique-se de que tenha o aplicativo Telegram instalado no seu dispositivo.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"A [_1] requer que o armazenamento na Web do seu navegador esteja habilitado para poder funcionar corretamente. Por favor, habilite-o ou saia do modo de navegação privada.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"[_1]Conecte-se[_2] ou [_3]inscreva-se[_4] para ver esta página.","This_feature_is_available_to_demo_accounts_only_":"Este recurso está disponível somente para contas demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Você está usando uma conta demo. Por favor, mude para uma conta real ou crie uma para acessar o Caixa.","This_page_is_only_available_to_logged_out_clients_":"Esta página está disponível apenas para clientes desconectados.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"A negociação de opções binárias não está disponível em sua conta de Multiplicadores. ","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"A negociação de opções binárias não está disponível através de sua conta Multipliers.
Por favor, volte para sua conta de Opções.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Desculpe, a negociação de opções não está disponível no Reino Unido e na Ilha de Man","Binary_options_trading_is_not_available_in_your_country_":"Desculpe, mas a negociação de opções binárias não está disponível em seu país.","This_page_is_not_available_in_your_country_of_residence_":"Esta página não está disponível em seu país de residência.","Page_not_available,_you_did_not_deactivate_your_account_":"Halaman tidak tersedia, Anda tidak menonaktifkan akun Anda.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Infelizmente, este serviço não está disponível em seu país. Se você gostaria de negociar multiplicadores, experimente DTrader na Deriv.","Go_to_DTrader":"Vá para Dtrader","Sign_out":"Sair","[_1]_Account":"Conta [_1]","Click_here_to_open_a_Real_Account":"Clique aqui para abrir uma conta real","Open_a_Real_Account":"Abrir uma conta de dinheiro real","Click_here_to_open_a_Multipliers_Account":"Clique aqui para abrir uma Conta de Multiplicadores","Click_here_to_open_an_Options_account":"Clique aqui para abrir uma conta de Opções","Open_a_Multipliers_Account":"Abra uma conta de Multiplicadores","Go_to_Deriv_to_add_an_account":"Siga para Deriv para adicionar uma conta","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Você poderá fazer login na Deriv usando suas credenciais Binary.com.","Cancel":"Cancelar","Go_to_Deriv":"Vá para Deriv","Create_Account":"Criar conta","Accounts_List":"Lista de contas","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Os depósitos estão temporariamente indisponíveis devido à manutenção do sistema. Você pode fazer seus depósitos quando a manutenção estiver completa.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"As retiradas estão temporariamente indisponíveis devido à manutenção do sistema. Você pode fazer seus saques quando a manutenção for concluída.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa de criptomoeda está temporariamente fora do ar devido à manutenção do sistema. Você pode acessar o Caixa em alguns minutos quando a manutenção for concluída.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa está temporariamente fora do ar devido à manutenção do sistema. Você pode acessá-lo em alguns minutos quando a manutenção for concluída.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"No momento seu caixa está bloqueado. Entre em contato conosco via Live Chat para saber como desbloqueá-lo.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Defina a [_1]moeda da conta[_2] para permitir depósitos e retiradas.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Seu nome e data de nascimento no documento não correspondem ao nome do seu perfil na Binary. Atualize seu nome na página de [_1]Pdetalhes pessoais[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Sua data de nascimento no documento não corresponde ao nome do seu perfil na Binary. Atualize seu nome na página de [_1]Pdetalhes pessoais[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"O nome do documento não corresponde ao nome do seu perfil na Binary. Atualize seu nome na página de [_1]Pdetalhes pessoais[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Sua conta não foi autenticada. Por favor envie seu [_1]documento de identidade e comprovante de endereço[_2] para autenticar sua conta e solicitar de saques.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Sua conta não foi autenticada. Favor enviar seu [_1] documento de identidade e comprovante de endereço[_2] para autenticar sua conta e acessar seu caixa.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Os documentos de identificação que você enviou expiraram. Envie documentos de identidade válidos para desbloquear o Caixa.","Your_[_1]proof_of_identity[_2]_has_expired_":"Seu [_1]comprovante de identidade[_2] expirou.","Your_[_1]proof_of_address[_2]_has_expired_":"Seu [_1]comprovante de endereço[_2] expirou.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Seu [_1]comprovante de identidade[_3] e [_2]comprovante de endereço[_3] não foram verificados.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Seu [_1]comprovante de identidade[_2] não foi verificado.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Seu [_1]comprovante de endereço[_2] não foi verificado.","Please_submit_your_[_1]proof_of_identity[_2]_":"Por favor envie seu [_1]comprovante de identidade[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Por favor envie seu [_1]comprovante de endereço[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Você optou por se excluir da negociação em nosso site até [_1]. Se você não puder colocar uma negociação ou depósito após seu período de auto-exclusão, entre em contato conosco via Live Chat.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Seu acesso ao Caixa foi desativado temporariamente pois você não definiu seu limite de faturamento de 30 dias. Por favor, vá para [_1]Auto-Exclusão[_2] e defina seu limite de faturamento de 30 dias.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Retiradas da MT5 foram desativadas na sua conta. Confira o seu e-mail para mais detalhes.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Infelizmente, você só pode fazer depósitos. Entre em contato conosco através do chat para permitir retiradas. ","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Seus [_1]Dados Pessoais[_2] estão incompletos. Por favor, vá às configurações de sua conta e complete seus dados pessoais para permitir depósitos e saques.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Seus [_1]detalhes pessoais[_2] estão incompletos. Por favor, vá para as configurações de sua conta e complete seus dados pessoais para permitir saques.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Seus [_1]Dados Pessoais[_2] estão incompletos. Por favor, vá às configurações de sua conta e complete seus dados pessoais para habilitar os depósitos.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Você não definiu seu país de residência. Para acessar o Caixa, por favor atualize seu [_1]c país de residência[_2] na seção Dados Pessoais nas configurações de sua conta.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Seu caixa está bloqueado. Por favor completar a [_1] avaliação financeira[_2] para desbloqueá-lo.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Você não forneceu seu número de identificação fiscal. Esta informação é necessária para os requisitos legais e regulamentares. Por favor, vá para [_1]Dados Pessoais [_2] nas configurações de sua conta e preencha seu último número de identificação fiscal.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Infelizmente, você só pode fazer retiradas. Entre em contato conosco através do chat ao vivo. ","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"As retiradas foram desativadas em sua conta. Aguarde até que seus documentos enviados sejam verificados.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Por favor [_1]aceite os termos e condições atualizados[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Por favor [_1]aceite os termos e condições[_2] atualizados para aumentar os seus limites de depósito e negociação.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Sua conta está temporariamente desativada. Por favor, entre em contato conosco via Live Chat para permitir depósitos e saques novamente.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Por favor completar o Teste de Adequação para acessar seu caixa.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Seu caixa está bloqueado. Veja [_1]como protegemos seus fundos[_2] antes de prosseguir.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Sua conta precisa de autenticação. Por favor, envie seu [_1] documento de identidade[_2] para acessar o caixa. ","Account_Authenticated":"Conta autenticada","Connection_error:_Please_check_your_internet_connection_":"Erro de conexão: verifique a sua conexão com a internet.","Network_status":"Status da rede","This_is_a_staging_server_-_For_testing_purposes_only":"Este é um servidor temporário - apenas para testes","The_server_endpoint_is:_[_2]":"O terminal do 1servidor 2 é: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"O seu navegador web ([_1]) está desatualizado e pode afetar a sua experiência de negociação. Prossiga por sua conta e risco. [_2]Atualize navegador[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Você já atingiu o limite de taxa de solicitações por segundo. Tenta novamente mais tarde.","There_was_some_invalid_character_in_an_input_field_":"Houve algum caractere inválido no campo de entradas.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"regulamentada pela UK Gaming Commission (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"regulamentado pela Malta Gaming Authority,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"regulamentada pela Malta Financial Services Authority (MFSA),","Please_select":"Selecione","Please_accept_the_terms_and_conditions_":"Por favor aceite os termos e condições.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Confirme que você não é uma pessoa politicamente exposta.","Today":"Hoje","Select_date":"Selecione a data","Barrier":"Barreira","Entry_Spot":"Preço de entrada","Exit_Spot":"Preço de saída","Charting_for_this_underlying_is_delayed":"Os gráficos para esta base estão com atraso","Payout_Range":"Intervalo do pagamento de prêmios","Purchase_Time":"Hora da Compra","Reset_Barrier":"Barreira de redefinição","Reset_Time":"Hora de redefinição","Selected_Tick":"Tick selecionado","Exit_Time":"Hora Final","Start_Time":"Hora de Início","Fiat":"Fiduciária","Crypto":"Cripto","Step_[_1]:_[_2]_([_1]_of_[_3])":"Etapa [_1]: [_2] ([_1] de [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"O código de verificação está errado. Use o link enviado ao seu e-mail.","Indicates_required_field":"Indica campo obrigatórios","Please_select_the_checkbox_":"Selecione a caixa de seleção","This_field_is_required_":"Este campo é obrigatório.","Should_be_a_valid_number_":"Deve ser um número válido.","Up_to_[_1]_decimal_places_are_allowed_":"Até [_1] casas decimais são permitidas.","Should_be_[_1]":"Deve ser [_1]","Should_be_between_[_1]_and_[_2]":"Deve ser entre [_1] e [_2]","Should_be_more_than_[_1]":"Deve ser mais do que [_1]","Should_be_less_than_[_1]":"Deve ser menos do que [_1]","Insufficient_balance_":"Saldo insuficiente.","Invalid_email_address_":"Endereço de e-mail inválido.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"A senha deve conter letras maiúsculas e minúsculas com números.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Apenas letras, números, espaços, hífenes, pontos e apóstrofes são permitidos.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Apenas são permitidos números, letras, espaços e estes caracteres especiais: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Apenas letras, espaços, pontos e apóstrofes são permitidos.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Apenas letras, números, espaços e o hífen são permitidos.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Digite um número de telefone válido (por exemplo, +5511991234567).","The_two_passwords_that_you_entered_do_not_match_":"As palavras-chave que introduziu não coincidem.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] e [_2] não podem ser iguais.","Minimum_of_[_1]_characters_required_":"Um mínimo de [_1] caracteres é necessário.","You_should_enter_[_1]_characters_":"Você dever inserir [_1] caracteres.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Deve começar com uma letra ou um número e pode conter um hífen e sublinhado.","Invalid_verification_code_":"Código de verificação inválido.","Your_password_cannot_be_the_same_as_your_email_address_":"Sua senha não pode ser igual ao seu endereço de e-mail.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Transação executada por [_1] (App ID: [_2])","Guide":"Guia","Next":"Próximo","Finish":"Terminar","Step":"Etapa","Select_your_market_and_underlying_asset":"Selecione o mercado e o seu ativo subjacente","Select_your_trade_type":"Selecione o tipo de negociação","Adjust_trade_parameters":"Ajustar parâmetros de negociação","Predict_the_directionand_purchase":"Preveja a direção
e compre","Your_session_duration_limit_will_end_in_[_1]_seconds_":"O limite de duração da sua sessão terminará em [_1] segundos.","January":"Janeiro","February":"Fevereiro","March":"Março","April":"Abril","May":"Maio","June":"Junho","July":"Julho","August":"Agosto","September":"Setembro","October":"Outubro","November":"Novembro","December":"Dezembro","Feb":"Fev","Apr":"Abr","Aug":"Ago","Sep":"Set","Oct":"Out","Dec":"Dez","Sunday":"Domingo","Monday":"Segunda-feira","Tuesday":"Terça-feira","Wednesday":"Quarta-feira","Thursday":"Quinta-feira","Friday":"Sexta-feira","Saturday":"Sábado","Su":"Dom","Mo":"Seg","Tu":"Ter","We":"Qua","Th":"Qui","Fr":"Sex","Sa":"Sáb","Previous":"Anterior","Hour":"Hora","Minute":"Minuto","Verification_required":"Autenticação necessária","Verify_identity":"Verificar identidade","From_account:_":" ","To_account:_":" ","Not_announced_for_this_currency_":"Não anunciado para esta moeda.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"\nRedefina o saldo de sua conta demo para [_1] a qualquer momento.","[_1]Manage_your_accounts[_2]":"[_1] Gerencie suas contas [_2]","time":"vez","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"vez ou criar uma conta MT5 real (ou uma conta Deriv X real em deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Você não pode mais mudar a moeda porque criou uma conta MT5 real (ou uma conta Deriv X real em deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Você não pode mais alterar a moeda porque já fez um ou mais depósitos na sua conta.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"A moeda da sua conta fiduciária está definida como [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"A moeda da sua conta fiduciária está definida como [_1].","This_is_your_[_1]_account_":"Esta é a sua conta [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Você pode [_1]definir uma nova moeda[_2] antes de depositar pela primeira [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Não quer negociar em [_1]? Você pode abrir outra conta de criptomoeda.","Switch_account":"Alternar conta","Switch_account?":"Alternar conta?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Para depositar dinheiro, por favor mude para sua conta [_1]. ","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Para retirar dinheiro, por favor mude para sua conta [_1]. ","Switch_to_crypto_account?":"Mudar para conta cripto?","To_deposit_cryptocurrency,_switch_your_account_":"Para depositar criptomoedas, mude de conta.","To_withdraw_cryptocurrency,_switch_your_account_":"Para retirar criptomoedas, mude de conta.","Withdraw":"Retirar","Deposit":"Depositar","Town/City":"Vila/Cidade","First_line_of_home_address":"Primeira linha do endereço residencial","Postal_Code/ZIP":"Código postal/CEP","State/Province":"Estado/Província","Email_address":"Endereço de e-mail","Telephone":"Telefone","Country_of_Residence":"País de Residência","details":"detalhes","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Nosso caixa está temporariamente fora do ar devido à manutenção do sistema. Você pode acessar o Caixa em alguns minutos quando a manutenção for concluída.","Your_cashier_is_locked_":"O seu caixa está bloqueado.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Observe que a moeda selecionada é permitida apenas para contas limitadas.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Você atingiu o limite de saque. Faça upload do seu comprovante de identidade e endereço para aumentar o limite de saque e prossiga com o saque.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Os serviços de agente de pagamentos não estão atualmente disponíveis no seu país ou na sua moeda preferida.","Select_payment_agent":"Selecione o agente de pagamento","Amount_in":"Valor em","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Apenas letras, números, espaço, hífen, ponto final, vírgula e apóstrofo são permitidos.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"O seu pedido para levantar [_1] [_2] da sua conta [_3] para a conta [_4] do Agente de Pagamentos foi processado com sucesso.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"O seu token expirou ou é inválido. Clique [_1]aqui[_2] para reiniciar o processo de verificação.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Desculpe, no momento, os saques para esta moeda estão desativados.","Please_[_1]deposit[_2]_to_your_account_":"Por favor, [_1]deposite[_2] na sua conta.","Sorry,_account_signup_is_not_available_in_your_country_":"Lamentamos, mas o registro de contas não está disponível no seu país.","Asset":"Ativos","Opens":"Abre","Closes":"Fecha","Settles":"Liquida","Upcoming_Events":"Próximos Eventos","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Acrescente +/- para definir uma deslocação de barreira. Por exemplo, +0.005 significa uma barreira que está 0.005 acima do preço de entrada.","Digit":"Dígito","Percentage":"Porcentagem","Waiting_for_entry_tick_":"Aguardando tick de entrada.","High_Barrier":"Barreira Alta","Low_Barrier":"Barreira Baixa","Waiting_for_exit_tick_":"Aguardando tique-taque de saída.","Ticks_history_returned_an_empty_array_":"O histórico de tique-taques devolveu uma série vazia.","Chart_is_not_available_for_this_underlying_":"Não há nenhum gráfico disponível para este ativo subjacente.","Purchase":"Comprar","Net_profit":"Lucro líquido","Return":"Prêmio","Time_is_in_the_wrong_format_":"A hora está no formato incorreto.","Rise/Fall":"Sobe/Desce","Higher/Lower":"Superior/Inferior","Matches/Differs":"Combina/Difere","Even/Odd":"Par/Ímpar","Over/Under":"Acima/Abaixo","High-Close":"Fechar-Alto","Close-Low":"Fechar-Baixo","High-Low":"Alto-Baixo","Reset_Call":"Redefinição - Compra","Reset_Put":"Redefinição - Venda","Up/Down":"Acima/Abaixo","Only_Ups/Only_Downs":"Sempre acima/Sempre abaixo","In/Out":"Dentro/Fora","Select_Trade_Type":"Selecione o tipo de negociação","Tick":"Tique-taque","Spot":"Preço atual","Spot_Time_(GMT)":"Hora do preço à vista (GMT)","seconds":"segundos","minutes":"minutos","hours":"horas","days":"dias","tick":"tique-taque","second":"segundo","minute":"minuto","hour":"hora","day":"dia","Duration":"Duração","End_Time":"Hora final","Purchase_request_sent":"Solicitação de compra enviada","High":"Alta","Close":"Fechar","Low":"Baixa","Select_Asset":"Selecione o Ativo","Search___":"Pesquisar...","Maximum_multiplier_of_1000_":"Multiplicador máximo de 1000.","Stake":"Entrada","Payout":"Prêmio","Multiplier":"Multiplicador","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Desculpe, a sua conta não está autorizada a realizar outras compras de contratos.","Trading_is_unavailable_at_this_time_":"As negociações estão atualmente indisponíveis.","Please_reload_the_page":"Recarregue a página","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Nenhuma outra negociação é permitida neste tipo de contrato para o atual período de negociação. Para mais informações, consulte nossos <>terms e condiçõestry_another_document_type":"Os documentos desse país não são atualmente suportados - tente outro tipo de documento","Submit_document":"\nEnviar documento","Select_country":"Selecione o país","e_g__United_States":"por exemplo. Estados Unidos","Search_for_country":"Pesquise por país","Select_issuing_country":"Selecione o país emissor","Submit_verification":"Enviar verificação","Tips":"Dicas","Documents_uploaded":"Documentos enviados","Document_uploaded":"Documento enviado","Selfie_uploaded":"Selfie enviada","We're_now_ready_to_verify_your_identity":"Agora estamos prontos para verificar sua identidade","Great,_that's_everything_we_need":"Ótimo, é tudo o que precisamos","The_link_only_works_on_mobile_devices":"O link funciona apenas em dispositivos móveis","Something's_gone_wrong":"Algo deu errado","You'll_need_to_restart_your_verification_on_your_computer":"Você precisará reiniciar sua verificação no seu computador","Get_secure_link":"Obter link seguro","Steps_required_to_continue_verification_on_your_mobile":"Etapas necessárias para continuar a verificação em seu celular","Check_back_here_to_finish_the_submission":"Volte aqui para finalizar o envio","Open_the_link_and_complete_the_tasks":"Abra o link e conclua as tarefas","Send_a_secure_link_to_your_phone":"Enviar um link seguro para o seu telefone","Here's_how_to_do_it:":"Veja como fazer:","Continue_on_your_phone":"Continue no telefone","Your_computer_may_take_a_few_seconds_to_update":"O seu computador pode demorar alguns segundos para atualizar","You_can_now_return_to_your_computer_to_continue":"Agora você pode retornar ao seu computador para continuar","Uploads_successful":"Envios bem-sucedidos","Make_sure_everything_is_clear":"Certifique-se de que tudo está claro","Blurry_photo_detected":"Foto borrada detectada","Make_sure_full_document_is_visible":"Certifique-se de que o documento completo esteja visível","Cut-off_image_detected":"Imagem de corte detectada","Move_away_from_direct_light":"Afaste-se da luz direta","Glare_detected":"Brilho detectado","Make_sure_all_of_the_document_is_in_the_photo":"Verifique se todo o documento está na foto","No_document_detected":"Nenhum documento detectado","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da sua Id nacional estejam visíveis, sem borrões ou reflexos","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Levará mais tempo para verificar se não conseguirmos ler","To_smoothly_verify_you,_we_need_a_better_photo":"Para verificar você com mais facilidade, precisamos de uma foto melhor","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da sua carteira de condução estejam visíveis, sem borrões ou reflexos","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que todos os detalhes da seu passaporte estejam visíveis, sem borrões ou reflexos","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que os detalhes da sua licença sejam claros para ler, sem borrões ou reflexos","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Certifique-se de que os detalhes são claros para ler, sem desfoque ou brilho","Redo":"Refazer","Confirm":"Confirmar","Upload_anyway":"Faça upload mesmo assim","Enlarge_image":"Ampliar imagem","Photo_of_your_document":"Foto do seu documento","Check_your_image":"Verifique sua imagem","Front_and_back":"Frente e verso","Driver's_license":"Carteira de condução","Face_photo_page":"Página foto do rosto","Residence_permit":"Autorização de residência","Sorry,_no_mobile_phone_bills":"Desculpe, não são aceitas contas de celular","Documents_you_can_use_to_verify_your_identity":"Documentos que você pode usar para verificar sua identidade","It_must_be_an_official_photo_ID":"Deve ser uma identificação oficial com foto","These_are_the_documents_most_likely_to_show_your_current_home_address":"Estes são os documentos com maior probabilidade de mostrar seu endereço residencial atual","Choose_document":"Escolha o documento","Select_a_%{country}_document":"Selecione um %{country} documento","or_upload_photo_–_no_scans_or_photocopies":"ou fazer upload de foto - (não envie digitalizações)","Continue_on_phone":"Continue no telefone","Take_a_photo_with_your_phone":"Tire uma foto com seu telefone","Submit_identity_card_(back)":"Enviar carteira de identidade nacional (verso)","Submit_identity_card_(front)":"Enviar carteira de identidade nacional (frente)","Submit_license_(back)":"Enviar carteira nacional de habilitação (verso)","Submit_license_(front)":"Enviar carteira nacional de habilitação (frente)","Submit_passport_photo_page":"Enviar página de foto do passaporte","Submit_residence_permit_(back)":"Enviar permissão de residência (verso)","Submit_residence_permit_(front)":"Enviar permissão de residência (frente)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Reinicie o processo na versão mais recente do Google Chrome","Restart_the_process_on_the_latest_version_of_Safari":"Reinicie o processo na versão mais recente do Safari","Unsupported_browser":"Navegador não suportado","Close_identity_verification_screen":"Fechar tela de verificação de identidade","Dismiss_alert":"Fechar alerta","back":"verso","close":"fechar","Restart_process_on_a_different_device":"Reinicie o processo em um dispositivo diferente","Camera_not_detected":"Câmera não detectada","Must_be_under_10MB_":"Deve ter menos de 10 MB.","File_size_exceeded_":"Tamanho do arquivo excedido.","Try_using_another_file_type_":"Tente enviar outro tipo de arquivo.","File_not_uploaded_":"Arquivo não carregado.","An_error_occurred_while_loading_the_component":"Ocorreu um erro ao carregar o componente","Only_your_face_can_be_in_the_selfie":"Somente seu rosto pode estar na selfie","Multiple_faces_found":"Mais de um rosto encontrado","Your_face_is_needed_in_the_selfie":"Seu rosto é necessário na selfie","No_face_found":"Nenhum rosto encontrado","Please_try_again":"Por favor, tente novamente","Connection_lost":"Conexão perdida","Copy_the_link_to_your_phone":"Copie o link para o seu telefone","Too_many_failed_attempts":"Muitas tentativas falhas","Try_using_a_JPG_or_PNG_file":"Tente usar um arquivo JPG ou PNG","File_type_not_supported":"Tipo de arquivo não suportado","Loading___":"Carregando...","Loading":"Carregando","Check_that_your_number_is_correct":"Verifique se o seu número está correto","Copied":"Copiado","Copy":"Copiar","Send_link":"Enviar link","How_to_scan_a_QR_code":"Como digitalizar um código QR","Point_your_phone’s_camera_at_the_QR_code":"Aponte a câmera do seu telefone para o código QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Se não funcionar, baixe um scanner de código QR no Google Play ou na App Store","or":"ou","Scan_QR_code":"Digitalizar código QR","Get_link_via_SMS":"Obter link via SMS","Copy_link":"Copiar link","Sending":"Enviando","Enter_mobile_number":"Digite seu número de celular","Enter_your_mobile_number:":"Digite seu número de celular:","Scan_the_QR_code_with_your_phone":"Digitalize o código QR com o seu telefone","Send_this_one-time_link_to_your_phone":"Enviar este link único para o seu telefone","Open_the_link_on_your_mobile":"Abra o link no seu celular","Get_your_secure_link":"Obtenha seu link seguro","Copy_the_link_to_your_mobile_browser":"Copie o link para o seu navegador no celular","Continue":"Continuar","Make_sure§":"Certifique-se de que§","2__Your_desktop_window_stays_open":"2. A janela da sua área de trabalho permanece aberta","1__This_link_was_sent_by_you":"1. Este link foi enviado por você","Continue_with_the_verification":"Continue com a verificação","Linked_to_your_computer":"Ligado ao seu computador","Take_a_photo_of_the_back_of_your_card":"Tire uma foto do verso da sua carteira de identidade","Take_a_photo_of_the_front_of_your_card":"Tire uma foto da frente da sua carteira de identidade","Take_a_photo_of_the_back_of_your_license":"Tire uma foto do verso da sua carteira nacional de habilitação","Take_a_photo_of_the_front_of_your_license":"Tire uma foto da frente da sua carteira nacional de habilitação","Take_a_photo_of_your_passport_photo_page":"Tire uma foto da página de foto do seu passaporte","Take_a_selfie_showing_your_face":"Tire uma selfie mostrando seu rosto","Take_a_photo_using_the_basic_camera_mode_instead":"Tire uma foto usando o modo de câmera básico","Take_a_photo":"Tirar uma foto","Passport_photo_page":"Página da foto do passaporte","Thank_you":"Obrigado(a)","Verification_complete":"Verificação completa","Refresh":"Atualizar","Recovery":"Recuperação","Follow_these_steps_to_recover_camera_access:":"Siga estas etapas para recuperar o acesso da câmera:","Refresh_this_page_to_restart_the_identity_verification_process":"Atualize esta página para reiniciar o processo de verificação de identidade","Grant_access_to_your_camera_from_your_browser_settings":"Conceda acesso à sua câmera a partir das configurações do navegador","Recover_camera_access_to_continue_face_verification":"Recupere o acesso à câmera para continuar a verificação facial","Camera_access_is_denied":"Acesso à câmera negado","We_cannot_verify_you_without_using_your_camera":"Não podemos verificar você sem usar sua câmera","Enable_camera":"Ativar câmera","When_prompted,_you_must_enable_camera_access_to_continue":"Quando solicitado, você deve habilitar o acesso à câmera para continuar","Allow_camera_access":"Permitir acesso à câmera","Provide_the_whole_document_page_for_best_results":"Forneça a página inteira do documento para obter melhores resultados","Upload_back_of_card_from_your_computer":"Enviar o verso da carteira nacional direto do seu computador","Upload_front_of_card_from_your_computer":"Enviar a frente da carteira nacional direto do seu computador","Upload_back_of_license_from_your_computer":"Enviar o verso da carteira de condução direto do seu computador","Upload_front_of_license_from_your_computer":"Enviar a frente da carteira de condução direto do seu computador","Upload_passport_photo_page_from_your_computer":"Enviar a página do passaporte (a que mostra sua foto) direto do seu computador","Upload_a_selfie_from_your_computer":"Enviar uma selfie direto do seu computador","Take_photo":"Tirar uma foto","Upload":"Enviar","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Verifique se ele está conectado e funcional. Você também pode continuar a verificação em seu telefone","Make_sure_your_device_has_a_working_camera":"Certifique-se de que a câmera do seu dispositivo esteja funcionando","Camera_not_working?":"A câmera não está funcionando?","It_may_be_disconnected__Try_using_your_phone_instead_":"Pode estar desconectado. Tente usar seu telefone.","Make_sure_your_device's_camera_works":"Verifique se a câmera do seu dispositivo funciona","Camera_not_working":"A câmera não está funcionando","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Lembre-se de pressionar parar quando terminar. Refazer ações de vídeo","Looks_like_you_took_too_long":"Parece que você levou muito tempo","View_from_camera":"Vista da câmera","Take_a_selfie":"Tire uma selfie","Photo_of_your_face":"Foto do seu rosto","Make_sure_your_selfie_clearly_shows_your_face":"Verifique se a sua selfie mostra claramente o seu rosto","Check_selfie":"Verifique sua selfie","Tips_to_take_a_good_selfie":"Dicas para tirar uma boa selfie","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Olhe para frente e verifique se seus olhos estão claramente visíveis","Remove_your_glasses,_if_necessary":"Retire os óculos, se necessário","We'll_compare_it_with_your_document":"Carregar uma selfie do seu computador","Your_link_will_expire_in_one_hour":"Seu link irá expirar em uma hora","Keep_this_window_open_while_using_your_mobile":"Mantenha essa janela aberta enquanto estiver usando seu celular","Resend_link":"Reenviar link","We've_sent_a_secure_link_to_%{number}":"Enviamos um link seguro para %{number}","It_may_take_a_few_minutes_to_arrive":"Pode demorar alguns minutos para chegar","Check_your_mobile":"Verifique seu celular","Your_mobile_link_will_expire_in_one_hour":"Seu link para celular expirará em uma hora","Don't_refresh_this_page":"Não atualize esta página","Once_you've_finished_we'll_take_you_to_the_next_step":"Assim que terminar, nós o levaremos para a próxima etapa","Connected_to_your_mobile":"Conectado ao seu celular","Upload_photo":"Carregar foto","Example_of_a_blurry_document":"Exemplo de documento borrado","All_details_must_be_clear_—_nothing_blurry":"Todos os detalhes devem ser claros - nada borrado","Example_of_a_cut-off_document":"Exemplo de um documento cortado","Show_all_details_—_including_the_bottom_2_lines":"Mostrar todos os detalhes - incluindo as 2 últimas linhas","Example_of_a_document_with_glare":"Exemplo de um documento com reflexo","Move_away_from_direct_light_—_no_glare":"Afaste-se da luz direta - sem brilho","Document_example":"Exemplo de documento","The_photo_should_clearly_show_your_document":"A foto deve mostrar claramente o seu documento","Scans_and_photocopies_are_not_accepted":"Digitalizações e fotocópias não são aceitas","Upload_passport_photo_page":"Carregar foto da página do passaporte","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Para abrir uma conta bancária, precisaremos verificar sua identidade.","It_will_only_take_a_couple_of_minutes_":"Isso levará apenas alguns minutos.","Verify_Identity":"Verificar Identidade","Open_your_new_bank_account":"Abra sua nova conta bancária","Please_enter_a_valid_Login_ID_":"Insira uma ID de login válida.","Amount":"Quantia","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"O seu pedido para transferir [_1] [_2] de [_3] para [_4] foi processado com sucesso.","Resale_not_offered":"A revenda não está disponivel","You've_made_no_transactions_of_this_type_up_to_this_date_":"Você não fez nenhuma transação deste tipo até esta data.","Date":"Data","Ref_":"Referência","Contract":"Contrato","Purchase_Price":"Preço de Compra","Sale_Date":"Data de Venda","Sale_Price":"Preço de venda","Profit/Loss":"Lucro/Perda","Details":"Dados","Total_Profit/Loss":"Lucro/Perda Total","Action_required!":"Ação necessária!","Sorry,_an_error_occurred_while_processing_your_request_":"Lamentamos, ocorreu um erro durante o processamento do seu pedido.","position(s)":"posição(ões)","withdrawal(s)":"retirada(s)","We_couldn’t_read_that!":"Não conseguimos ler isso!","Remaining_characters:_[_1]_":"Caracteres restantes: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Por favor, insira no máximo [_1] caracteres para ambos os campos.","Only_[_1]_are_allowed_":"Apenas [_1] são permitidos.","letters":"caracteres","numbers":"números","space":"espaço","Please_select_at_least_one_scope":"Selecione pelo menos um escopo","New_token_created_":"Novo token criado.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"O número máximo de tokens ([_1]) foi atingido.","Name":"Nome","Scopes":"Âmbitos","Last_Used":"Última utilização","Action":"Ação","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Tem certeza que deseja excluir permanentemente o token","Delete":"Excluir","Never_Used":"Nunca utilizado","You_have_not_granted_access_to_any_applications_":"Você não concedeu acesso a nenhum aplicativo.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Tem certeza que deseja revogar permanentemente acesso ao aplicativo","Revoke_access":"Revogar acesso","Admin":"Administração","Payments":"Pagamentos","Read":"Ler","Trade":"Negociar","Trading_Information":"Informações de Negociação","Never":"Nunca","Permissions":"Permissões","Last_Login":"Último login","You_did_not_change_anything_":"Você não alterou nada.","Your_changes_have_been_updated_successfully_":"As suas alterações foram atualizadas com sucesso.","Successful":"Bem-sucedido","Date_and_Time":"Data e hora","Browser":"Navegador","IP_Address":"Endereço IP","Status":"Estado","Your_account_has_no_Login/Logout_activity_":"A sua conta não tem nenhuma atividade de login/sair.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"A sua conta está totalmente autenticada e os seus limites de retirada de fundos foram aumentados.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Atualmente, o seu limite de retirada de [_1] dia é [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Você já retirou [_1][_2] em agregado nos últimos [_3] dias.","Your_withdrawal_limit_is_[_1][_2]_":"Seu limite de retirada é [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Você já retirou [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Portanto, seu saldo sacável é de apenas [_1][_2], sujeito aos fundos disponíveis da sua conta.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Certifique-se de que as informações acima são verdadeiras e estão completas.","Your_settings_have_been_updated_successfully_":"As suas configurações foram atualizadas com sucesso.","Sorry,_an_error_occurred_while_processing_your_account_":"Lamentamos, ocorreu um erro durante o processamento da sua conta.","Please_select_a_country":"Selecione um país","Timed_out_until":"Bloqueado até","Excluded_from_the_website_until":"Excluído deste site até","Session_duration_limit_cannot_be_more_than_6_weeks_":"O limite de duração de sessões não pode ser superior a 6 semanas.","Time_out_must_be_after_today_":"O limite de tempo deve ser depois de hoje.","Time_out_cannot_be_more_than_6_weeks_":"O limite de tempo não pode ser superior a 6 semanas.","Time_out_cannot_be_in_the_past_":"A hora não pode ser no passado.","Please_select_a_valid_time_":"Selecione uma hora válida.","Exclude_time_cannot_be_less_than_6_months_":"O tempo de exclusão não pode ser inferior a seis meses.","Exclude_time_cannot_be_for_more_than_5_years_":"O tempo de exclusão não pode ser superior a 5 anos.","Confirm_changes":"Confirmar mudanças","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Vamos atualizar seus limites. Clique em [_1]Concordar e aceitar[_2] para reconhecer que você é totalmente responsável por suas ações e que você reconhece que não somos responsáveis ​​por qualquer vício ou perda. ","Agree_and_accept":"Concordar e aceitar","Go_back":"Voltar","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Quando você clicar em \"OK\" será excluído de poder negociar no site até a data selecionada.","Your_changes_have_been_updated_":"As suas alterações foram atualizadas.","Disable":"Desabilitar","Enable":"Habilitar","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Você habilitou com sucesso a autenticação de dois fatores na sua conta.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Você desabilitou com sucesso a autenticação de dois fatores na sua conta.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Você não precisa autenticar sua conta agora.[_1]Nós vamos informar você quando sua conta precisar ser autenticada.","No_authentication_required":"Não é necessário autenticar agora.","Back_to_trading":"Voltar as negociações","You_are_categorised_as_a_professional_client_":"Você está categorizado como um cliente profissional.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Você está categorizado como um cliente particular. Faça o requerimento para ser tratado como um cliente profissional.","Bid":"Lance","Closed_Bid":"Lance fechado.","Reference_ID":"ID de referência","Description":"Descrição","Credit/Debit":"Crédito/Débito","Balance":"Saldo","Top_up_error":"Erro de carregamento de saldo","Understood":"Ok","Top-up_successful":"Carregamento bem-sucedido","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] foram creditados na sua Conta Virtual: [_2].","Go_to_statement":"Ir para extrato","Continue_trading":"Continue a negociar","Your_Demo_balance_has_been_reset_":"Seu saldo demo foi redefinido.","Account":"Conta","Available_Markets":"Mercados disponíveis","Type":"Tipo","Currency":"Moeda","Multipliers_Account":"Conta de Multiplicadores","Gaming_Account":"Conta de Jogos","Options_Account":"Conta de Opções","Real_Account":"Conta Real","Counterparty":"Contraparte","Jurisdiction":"Jurisdição","Create_account":"Criar conta","Change_currency":"Trocar moeda","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Nota: Você está limitado a uma conta de moeda fiduciária. A moeda de sua conta fiduciária pode ser alterada antes de depositar em sua conta fiduciária pela primeira vez ou criar uma conta MT5 real (ou uma conta Deriv X real em deriv.com). Você também pode abrir uma conta para cada criptomoeda suportada.","This_account_is_disabled":"Esta conta está desativada","This_account_is_excluded_until_[_1]":"Esta conta está excluída até [_1]","Set_currency":"Definir moeda","Commodities":"Matérias-primas","Forex":"Forex (Mercado de Câmbio)","Stock_Indices":"Índices de ações","Stocks":"Ações","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Se você tiver uma conta conosco, enviaremos um link para seu e-mail em alguns minutos para redefinir sua senha.","Sign_up":"Inscreva-se","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"A negociação de Contratos Por Diferenças (CFDs) em Índices Sintéticos pode não ser adequada para todos. Certifique-se de que compreenda totalmente os riscos envolvidos, incluindo a possibilidade de perder todos os fundos na sua conta MT5. Apostar pode se tornar viciante – jogue responsavelmente.","Do_you_wish_to_continue?":"Deseja continuar?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Você está prestes a comprar um produto que não é simples e pode ser difícil de entender: Contratos de diferença e forex. Como regra geral, a CNMV considera que esses produtos não são adequados para clientes de varejo, devido à sua complexidade.","Acknowledge":"Confirmar","Change_Password":"Alterar Senha","The_investor_password_of_account_number_[_1]_has_been_changed_":"A senha de investidor da conta número [_1] foi alterada.","Reset_Password":"Redefinir senha","Verify_Reset_Password":"Verificar senha redefinida","Please_check_your_email_for_further_instructions_":"Por favor, confira a sua conta de e-mail para mais instruções.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Depósito de [_1] da conta [_2] para a conta [_3] está concluída. ID de transação: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"retirada de [_1] da conta [_2] para a conta [_3] está concluída. ID de transação: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Para retirar do MetaTrader 5 [_1] por favor [_2]complete a autenticação[_3] de sua conta Binary.","Current_password":"Senha atual","New_password":"Nova senha","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Para transferir fundos para sua conta MT5, insira uma quantia de [_1] ou mais","You_have_insufficient_funds_in_your_MT5_account_":"Você não tem fundos suficientes em sua conta MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Lamentamos, este recurso não está disponível na sua jurisdição.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"\nDevido a um problema em nosso servidor, algumas de suas contas MT5 estão indisponíveis no momento. [_1]Por favor aguarde e obrigada pela sua paciência.","Unavailable":"\nIndisponível","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] foi creditado em sua conta demo do MT5: [_2].","_(Region_added)":" (Região adicionada)","_(Temporarily_unavailable)":" (Temporariamente indisponível)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Nossos servidores MT5 estão temporariamente indisponíveis. Estamos trabalhando para restaurá-los. Por favor, tente novamente em alguns minutos.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Use a senha MT5 para entrar em qualquer uma de suas contas [_1] ao usar aplicativos MT5 em seu celular ou outros dispositivos.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Isso mudará a senha de todas as suas contas [_1].","Demo_Accounts":"Contas demo","Real-Money_Accounts":"Contas de dinheiro real","Demo_Account":"Conta demo","Real-Money_Account":"Conta de dinheiro real","for_account_[_1]":"da conta [_1]","[_1]_Account_[_2]":"Conta [_1] [_2]","MT5_Financial":"MT5 Financeiro","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Digite sua senha MT5 para adicionar uma conta [_1] [_2]. ","MT5_Synthetic":"MT5 Sintéticos","Get_[_1]":"Obter [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"O saldo da sua conta demo está atualmente equivalente a [_1] ou menos. É possível carregar mais [_2] para a sua conta.","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"É possível carregar mais [_1] para a sua conta demo quando você tem [_2] ou menos de saldo.","Yes,_I'm_sure":"Sim, tenho certeza","Are_you_sure?":"Tem certeza?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Você não poderá alterar a moeda da sua conta fiduciária depois de criar essa conta [_1]. Tem certeza de que deseja continuar?","Go_to_Deriv_to_add_an_MT5_account":"Siga para Deriv para adicionar uma conta MT5","Back":"Voltar","Address":"Endereço","Account_currency":"Moeda da conta","Financial_assessment":"Avaliação financeira","Personal_details":"Dados pessoais","Terms_of_use":"Termos de uso","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"O Tether Omni (USDT) é uma versão do Tether atrelada ao USD e é baseada no blockchain Bitcoin. ","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"O Tether ERC20 (eUSDT) é uma versão do Tether indexada ao USD e hospedada na plataforma Ethereum.","Title_and_name":"Cargo e nome","Real_money_account_opening":"Abertura de uma conta de dinheiro real","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"O seu token expirou ou é inválido. Clique aqui para reiniciar o processo de verificação.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"O endereço de e-mail que forneceu já está em uso. Caso você tenha esquecido a sua senha, experimente usar a nossa ferramenta de recuperação de senha ou contate o nosso serviço de apoio ao cliente.","Password_is_not_strong_enough_":"A senha não é forte o suficiente.","Upgrade_now":"Atualize já","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] dias [_2] horas [_3] minutos","Your_trading_statistics_since_[_1]_":"As suas estatísticas de negociação desde [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"A negociação de [_1] pode tornar-se um verdadeiro vício, assim como qualquer outra atividade levada aos seus limites. Para evitar os perigos desse vício, fornecemos uma verificação da realidade que lhe dá um resumo de suas negociações e contas regularmente.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Clique no link abaixo para reiniciar o processo de recuperação de senha.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Você tem uma nova senha Binary para fazer login em Binary.com.","Success":"Sucesso","Done":"Concluído","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Sua conta Binary foi desvinculada de [_1]. Use [_2]seu endereço de email e senha em seu próximo acesso.","Success!":"Sucesso!","Got_it":"Entendi","Binary_Password_Reset":"Redefinir Senha Binary ","Binary_password":"Senha Binary","You_have_added_a_[_1]_account_":"Você adicionou uma conta [_1].","Add_account":"Adicionar conta","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether como um token Omni (USDT) é uma versão do Tether hospedada na camada Omni na blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether como um token ERC20 (eUSDT) é uma versão do Tether hospedada na Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"O Tether como token TRC20 (tUSDT) é uma versão do Tether hospedada no Tron.","Add_new_crypto_account":"Adicionar nova conta em criptomoeda","Add_new_account":"Adicionar nova conta","Create_a_cryptocurrency_account":"Crie uma conta em criptomoeda","Choose_your_preferred_cryptocurrency":"Escolha sua criptomoeda preferida","You_can_open_an_account_for_each_cryptocurrency_":"Você pode abrir uma conta para cada criptomoeda.","Choose_a_cryptocurrency_account":"Escolha uma conta em criptomoeda","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Escolha uma das contas ou adicione uma nova conta em criptomoeda","Choose_an_account":"Escolha uma conta","Choose_one_of_your_accounts_or_add_a_new_account":"Escolha uma conta ou adicione uma nova conta","Choose_one_of_your_accounts":"Escolha uma de suas contas","Please_select_the_currency_for_this_account:":"Selecione a moeda desta conta:","deposit":"depósito","deposit_or_create_a_CFDs_account":"depositar ou criar uma conta CFDs","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Tem certeza de que deseja criar sua conta [_1] agora?","Note:":"Nota: ","You_may_open_one_account_for_each_supported_cryptocurrency_":"Você pode abrir uma conta para cada criptomoeda suportada.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Tem certeza de que deseja criar uma conta fiduciária em [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Você está limitado a apenas uma conta fiduciária. Você pode alterar a moeda da sua conta fiduciária a qualquer momento antes de fazer pela primeira vez um [_1].","Yes":"Sim","Create_[_1]_account":"Criar uma conta [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Você definiu com sucesso a moeda da sua conta como [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Você alterou com sucesso a moeda da sua conta de [_1] para [_2].","Please_choose_a_currency":"Escolha uma moeda","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Você tem uma nova senha MT5 para fazer login em suas contas [_1] na web e aplicativos móveis.","Accumulator":"Acumuladores","Asian_Down":"Asiático abaixo","Asian_Up":"Asiático acima","Higher":"Superior","Higher_or_equal":"Superior ou igual","Call_Spread":"Spread de compra","Digit_Differs":"Dígito Difere","Digit_Even":"Dígito Par","Digit_Matches":"Dígito Combina","Digit_Odd":"Dígito Ímpar","Digit_Over":"Dígito Acima","Digit_Under":"Dígito Abaixo","Ends_Outside":"Termina fora","Ends_Between":"Termina entre","Multiplier_Down":"Multiplicar para Baixo","Multiplier_Up":"Multiplicar para Cima","Does_Not_Touch":"Não toca","Touches":"Toca","Lower":"Inferior","Lower_or_equal":"Inferior ou igual","Put_Spread":"Spead de venda","Stays_Between":"Fica entre","Only_Ups":"Sempre acima","Only_Downs":"Sempre abaixo","High_Tick":"Tique-taque Alto","Low_Tick":"Tick baixo","Goes_Outside":"Sai fora","Equals":"Igual","Not":"Não","Buy":"Comprar","Sell":"Vender","Waiting_for_contract_settlement_":"Aguardando liquidação do contrato.","including_Deal_Cancel__Fee":"incluindo o Cancelamento da Negociação. Taxa","Contract_has_not_started_yet":"O contrato ainda não foi iniciado","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Este contrato está disponível apenas na [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Este contrato só está disponível em DTrader. [_1][_2]Vá para o Dtrader[_3] para fechar ou cancelar este contrato.","Contract_Result":"Resultado do contrato","Close_Time":"Hora de fechamento","Exit_Spot_Time":"Hora do preço de saída","Audit":"Auditoria","View_chart":"Ver gráfico","Audit_Page":"Página de auditoria","Contract_Starts":"Contrato começa","Contract_Ends":"Contrato termina","Contract_Details":"Detalhes do Contrato","Target":"Alvo","Contract_Information":"Informação do contrato","Contract_Type":"Tipo de contrato","Transaction_ID":"ID da transação","Remaining_Time":"Tempo restante","Maximum_payout":"Prêmio máximo","Barrier_Change":"Alteração de barreira","Current":"Atual","Spot_Time":"Hora do preço à vista","Current_Time":"Hora atual","Indicative":"Indicativo","Potential_Profit/Loss":"Lucro/Perda potencial","Deal_Cancel__Fee":"Cancelar negócio. Taxa","You_can_close_this_window_without_interrupting_your_trade_":"É possível fechar esta janela sem interromper a sua negociação.","There_was_an_error":"Houve um erro","Sell_at_market":"Venda no mercado","Note":"Nota","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"O contrato será vendido ao preço prevalecente do mercado no momento em que o pedido for recebido pelos nossos servidores. Esse preço pode ser diferente do preço indicado.","You_have_sold_this_contract_at_[_1]_[_2]":"Você vendeu este contrato por [_1] [_2]","Your_transaction_reference_number_is_[_1]":"O número de referência da sua transação é [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Obrigado por se cadastrar! Verifique a sua caixa de entrada para completar o processo de registro.","All_markets_are_closed_now__Please_try_again_later_":"Todos os mercados estão agora fechados. Tente novamente mais tarde.","Withdrawal":"Retirada","demo_credit_to_account":"dinheiro demo para conta","login":"conectar","logout":"sair","Asians":"Asiáticos","Call_Spread/Put_Spread":"Spread de compra/venda","Digits":"Dígitos","Ends_Between/Ends_Outside":"Termina entre/Termina fora","High/Low_Ticks":"Tique-taques Altos/Baixos","Lookbacks":"Retroativos","Reset_Call/Reset_Put":"Redefinição - Compra/Redefinição - Venda","Stays_Between/Goes_Outside":"Fica entre/Sai fora","Touch/No_Touch":"Toca/Não Toca","Christmas_Day":"Dia de Natal","Closes_early_(at_18:00)":"Fecha cedo (às 18:00)","Closes_early_(at_21:00)":"Fecha cedo (às 21:00)","Fridays":"Sexta-feira","New_Year's_Day":"Dia de Ano Novo","today":"hoje","today,_Fridays":"hoje, sextas-feiras","There_was_a_problem_accessing_the_server_":"Ocorreu um problema ao aceder ao servidor.","There_was_a_problem_accessing_the_server_during_purchase_":"Ocorreu um problema ao aceder ao servidor durante a aquisição."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/ru.js b/src/javascript/_autogenerated/ru.js index 917735807d997..80424163cafd6 100644 --- a/src/javascript/_autogenerated/ru.js +++ b/src/javascript/_autogenerated/ru.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['RU'] = {"Real":"Реальный","Multipliers":"Мультипликаторы","Gaming":"Игровой","Options":"Опционы","Demo":"Демо","Real_CFDs":"Реальный CFD","Real_Financial":"Реальный Финансовый","Demo_CFDs":"Демо CFD","Demo_Financial":"Демо Финансовый","Synthetic":"Синтетический","Demo_Synthetic":"Демо Синтетический","Real_Synthetic":"Реальный Синтетический","CFDs":"CFD","Financial":"Финансовый","Financial_STP":"Финансовый STP","Demo_Financial_STP":"Демо Финансовый STP","Real_Financial_STP":"Реальный Финансовый STP","Thank_you,_we'll_get_back_to_you_within_24_hours":"Спасибо! Мы свяжемся с вами в течение 24 часов","Online":"Онлайн","Offline":"Не в сети","Connecting_to_server":"Соединение с сервером","Use_a_few_words,_avoid_common_phrases":"Используйте несколько слов, избегайте распространенных фраз","No_need_for_symbols,_digits,_or_uppercase_letters":"Нет необходимости в символах, цифрах или заглавных буквах","Add_another_word_or_two__Uncommon_words_are_better_":"Добавьте одно или два необычных слова.","Straight_rows_of_keys_are_easy_to_guess":"Прямые ряды клавиш легко угадать","Short_keyboard_patterns_are_easy_to_guess":"Короткие комбинации клавиш легко угадать","Use_a_longer_keyboard_pattern_with_more_turns":"Используйте более длинные комбинации клавиш с большим количеством поворотов","Repeats_like_\"aaa\"_are_easy_to_guess":"Повторения типа \"aaa\" легко угадать","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Повторения типа \"abcabcabc\" угадать немногим сложнее, чем \"abc\"","Avoid_repeated_words_and_characters":"Избегайте повторения слов и символов","Sequences_like_abc_or_6543_are_easy_to_guess":"Последовательности вроде abc или 6543 легко угадать","Avoid_sequences":"Избегайте последовательностей","Recent_years_are_easy_to_guess":"Последние годы легко угадать","Avoid_recent_years":"Избегайте недавних дат","Avoid_years_that_are_associated_with_you":"Избегайте дат, которые связаны с вами","Dates_are_often_easy_to_guess":"Даты часто легко угадать","Avoid_dates_and_years_that_are_associated_with_you":"Избегайте дат и лет, которые связаны с вами","This_is_a_top-10_common_password":"Это один из 10 наиболее распространенных паролей.","This_is_a_top-100_common_password":"Это один из 100 наиболее распространенных паролей.","This_is_a_very_common_password":"Это один из наиболее распространенных паролей","This_is_similar_to_a_commonly_used_password":"Это похоже на часто используемый пароль","A_word_by_itself_is_easy_to_guess":"Отдельное слово легко угадать","Names_and_surnames_by_themselves_are_easy_to_guess":"Пароли, состоящие только из имен и фамилий, легко угадать","Common_names_and_surnames_are_easy_to_guess":"Распространенные имена и фамилии угадать несложно","Capitalization_doesn't_help_very_much":"Использование заглавных букв не очень помогает","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Пароль из только заглавных букв угадать почти так же легко, как и пароль из только строчных","Reversed_words_aren't_much_harder_to_guess":"Перевернутые слова угадать не намного сложнее","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Легко предсказуемые замены, такие как '@' вместо 'a', не очень помогают","This_password_is_on_the_blacklist":"Этот пароль находится в черном списке","Unknown_OS":"Незнакомая операционная система","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Вы будете перенаправлены на сайт третьей стороны, который не принадлежит Binary.com.","Click_OK_to_proceed_":"Нажмите OK, чтобы продолжить.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Пожалуйста, убедитесь, что вы установили приложение Telegram на ваше устройство.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"Для полноценной работы [_1] необходимо разрешение использовать веб-хранилище вашего браузера. Пожалуйста, включите эту функцию или отключите режим приватности.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Чтобы просмотреть эту страницу, пожалуйста [_1]войдите на сайт[_2] или [_3]зарегистрируйтесь[_4].","This_feature_is_available_to_demo_accounts_only_":"Эта опция доступна только для демо-счетов.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Вы используете демо-счет. Переключитесь на реальный счет или создайте его, чтобы получить доступ к кассе.","This_page_is_only_available_to_logged_out_clients_":"Эта страница доступна только для клиентов, вошедших на сайт.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Торговля бинарными опционами недоступна на вашем счете для мультипликаторов.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Торговля бинарными опционами недоступна на счете с мультипликаторами.
Вернитесь на счет для торговли бинарными опционами.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"К сожалению, торговля опционами недоступна в Великобритании и на острове Мэн.","Binary_options_trading_is_not_available_in_your_country_":"Торговля бинарными опционами недоступна в вашей стране.","This_page_is_not_available_in_your_country_of_residence_":"Эта страница недоступна в вашей стране проживания.","Page_not_available,_you_did_not_deactivate_your_account_":"Страница недоступна, вы не деактивировали счет.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"К сожалению, этот сервис недоступен в вашей стране. Если вы хотите торговать мультипликаторами, попробуйте DTrader на Deriv.","Go_to_DTrader":"Перейти на DTrader","Sign_out":"Выход","[_1]_Account":"Счёт [_1]","Click_here_to_open_a_Real_Account":"Нажмите здесь для открытия Реального счёта","Open_a_Real_Account":"Открыть Реальный счёт","Click_here_to_open_a_Multipliers_Account":"Нажмите здесь для открытия счета с мультипликаторами","Click_here_to_open_an_Options_account":"Нажмите здесь для открытия счета с опционами","Open_a_Multipliers_Account":"Открыть счет с мультипликаторами","Create_Account":"Открыть счёт","Accounts_List":"Список счетов","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Пополнение счета временно недоступно из-за технического обслуживания системы. Вы можете пополнить счет после завершения работ.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Вывод средств временно недоступен из-за технического обслуживания системы. Вы можете вывести средства после завершения работ.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Криптовалютная касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Ваша касса заблокирована. Свяжитесь с нами через чат, чтобы узнать, как получить к ней доступ.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Установите [_1]валюту счета[_2], чтобы разблокировать пополнение и вывод средств. ","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Ваш счет не был аутентифицирован. Отправьте нам [_1]подтверждение вашей личности и адреса[_2], чтобы аутентифицировать счет и активировать вывод средств.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Ваш счет не был аутентифицирован. Отправьте нам [_1]подтверждение вашей личности и адреса[_2], чтобы аутентифицировать счет и получить доступ к кассе.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Истек срок действия отправленных вами документов, удостоверяющих личность. Пожалуйста, предоставьте действительные документы, удостоверяющие личность, чтобы разблокировать кассу.","Your_[_1]proof_of_identity[_2]_has_expired_":"Срок действия документа, [_1]удостоверяющего личность[_2], истёк.","Your_[_1]proof_of_address[_2]_has_expired_":"Срок действия документа, [_1]подтверждающего адрес[_2], истёк.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Ваши документы, подтверждающие [_1]личность[_3] и [_2]адрес[_3] не прошли проверку","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Ваш документ, [_1]подтверждающий личность[_2], не прошел проверку.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Ваш документ, [_1]подтверждающий адрес[_2], не прошел проверку.","Please_submit_your_[_1]proof_of_identity[_2]_":"Пожалуйста, предоставьте [_1]удостоверение личности[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Пожалуйста, предоставьте [_1]подтверждение адреса[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Вы решили исключить себя из торговли на нашем сайте до [_1]. Если вы не можете купить контракт или пополнить счет после периода самоисключения, свяжитесь с нами через чат.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Ваш доступ к кассе был временно заблокирован, так как вы не установили 30-дневный лимит на оборот счета. Перейдите на страницу [_1]самоисключения[_2] и установите этот лимит.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"На вашем счете MT5 отключен вывод средств. Проверьте свою электронную почту для получения более подробной информации.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"К сожалению, вы можете только пополнять счет. Пожалуйста, свяжитесь с нами через чат, чтобы активировать вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение и вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение счета.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Вы не указали страну проживания. Чтобы получить доступ к кассе, выберите [_1]страну проживания[_2] в разделе Личные данные в настройках счета.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Ваша касса заблокирована. Пройдите [_1]финансовую оценку[_2], чтобы получить доступ к кассе.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Вы не указали свой идентификационный номер налогоплательщика. Эта информация необходима для соблюдения правовых и нормативных требований. Перейдите в [_1]личные данные[_2] в настройках счета и введите свой актуальный идентификационный номер налогоплательщика.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"К сожалению, вы можете только выводить средства. Пожалуйста, свяжитесь с нами через чат.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"На вашем счете временно заблокирован вывод средств. Пожалуйста, подождите, пока загруженные вами документы будут проверены.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Пожалуйста, [_1]примите обновлённые Правила и условия[_1].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Пожалуйста, [_1]примите обновленные Правила и условия[_2], чтобы снять лимиты на пополнение счета и трейдинг.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Ваш счет временно отключен. Свяжитесь с нами через чат, чтобы активировать пополнение и вывод средств.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Пройдите тест на соответствие, чтобы получить доступ к кассе.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Ваша касса заблокирована. Прежде чем продолжить, ознакомьтесь с тем, [_1]как мы защищаем ваши средства[_2].","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Ваш счет нужно аутентифицировать. Пожалуйста, отправьте свое [_1]удостоверение личности[_2] для доступа к кассе.","Account_Authenticated":"Аутентификация пройдена","Connection_error:_Please_check_your_internet_connection_":"Проблема со связью: пожалуйста, проверьте ваше подключение к интернету.","Network_status":"Статус сети","This_is_a_staging_server_-_For_testing_purposes_only":"Это вспомогательный сервер, применяемый только для тестирования","The_server_endpoint_is:_[_2]":"Конечная точка сервера: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Ваш веб браузер ([_1]) устарел, что может повлиять на результаты вашей торговли. Рекомендуем [_2]обновить браузер[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Вы достигли лимита на количество запросов в секунду. Пожалуйста, повторите попытку позже.","There_was_some_invalid_character_in_an_input_field_":"Неразрешённый символ в поле ввода.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"регулируется Комиссией по азартным играм Великобритании (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"регулируется Управлением по азартным играм Мальты,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"регулируется Управлением финансовых услуг Мальты (MFSA),","Please_select":"Выберите","Please_accept_the_terms_and_conditions_":"Пожалуйста, примите правила и условия.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Пожалуйста подтвердите, что вы не являетесь политически-значимым лицом.","Today":"Cегодня","Select_date":"Выберите дату","Barrier":"Барьер","Entry_Spot":"Входная котировка","Exit_Spot":"Выходная котировка","Charting_for_this_underlying_is_delayed":"Графики для этого инструмента рисуются с задержкой","Payout_Range":"Диапазон выплат","Purchase_Time":"Время покупки","Reset_Barrier":"Барьер Reset","Reset_Time":"Время Reset","Selected_Tick":"Выбранный тик","Exit_Time":"Время окончания","Start_Time":"Время начала","Fiat":"Фиатные","Crypto":"Крипто","Step_[_1]:_[_2]_([_1]_of_[_3])":"Шаг [_1]: [_2] ([_1] из [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Неправильный проверочный код. Пожалуйста, воспользуйтесь ссылкой, отправленной на ваш email.","Indicates_required_field":"Обозначает поле, которое является обязательным","Please_select_the_checkbox_":"Пожалуйста, выберите нужный ответ.","This_field_is_required_":"Данное поле является необходимым.","Should_be_a_valid_number_":"Введите правильное число.","Up_to_[_1]_decimal_places_are_allowed_":"Разрешенное количество десятичных: до [_1].","Should_be_[_1]":"Должно быть [_1]","Should_be_between_[_1]_and_[_2]":"Допустимые значения: от [_1] до [_2]","Should_be_more_than_[_1]":"Значение должно быть больше [_1]","Should_be_less_than_[_1]":"Значение должно быть меньше [_1]","Insufficient_balance_":"Недостаточно средств на счете.","Invalid_email_address_":"Неправильный e-mail.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Пароль должен состоять из заглавных, строчных латинских букв и цифр.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Разрешены только буквы, цифры, пробелы, дефис, точки и апостроф.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Разрешены только буквы, цифры, пробел и следующие символы: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Допускаются только буквы латинского алфавита, пробелы, дефисы, точки и апострофы.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Разрешены только буквы, цифры, пробелы и дефисы.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Пожалуйста, введите действительный номер телефона (например, +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Введенные пароли не совпадают.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] и [_2] не могут совпадать.","Minimum_of_[_1]_characters_required_":"Необходимо минимум [_1] знака(ов).","You_should_enter_[_1]_characters_":"Вы должны ввести [_1] символов.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Должно начинаться с буквы или цифры; может содержать дефис и нижнее подчёркивание.","Invalid_verification_code_":"Неправильный код подтверждения.","Your_password_cannot_be_the_same_as_your_email_address_":"Пароль и адрес электронной почты не могут совпадать.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Транзакция проведена [_1] (App ID: [_2])","Guide":"Экскурс","Next":"Далее","Finish":"Завершить","Step":"Шаг","Select_your_market_and_underlying_asset":"Выберите рынок и основной актив","Select_your_trade_type":"Выбрать тип контракта","Adjust_trade_parameters":"Изменить параметры контракта","Predict_the_directionand_purchase":"Предскажите направление движения
и купите","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Ограничение на длительность сессии закончится через [_1] сек.","January":"Январь","February":"Февраль","March":"Март","April":"Апрель","May":"Май","June":"Июнь","July":"Июль","August":"Август","September":"Сентябрь","October":"Октябрь","November":"Ноябрь","December":"Декабрь","Jan":"Янв","Feb":"Фев","Mar":"Мар","Apr":"Апр","Jun":"Июн","Jul":"Июл","Aug":"Авг","Sep":"Сен","Oct":"Окт","Nov":"Ноя","Dec":"Дек","Sunday":"Воскресенье","Monday":"Понедельник","Tuesday":"Вторник","Wednesday":"Среда","Thursday":"Четверг","Friday":"пятница","Saturday":"Суббота","Su":"Вс","Mo":"Пн","Tu":"Вт","We":"Ср","Th":"Чт","Fr":"Пт","Sa":"Сб","Previous":"Предыдущ.","Hour":"Час.","Minute":"Мин.","AM":"утра","PM":"вечера","Verification_required":"Требуется проверка","Verify_identity":"Подтвердить личность","From_account:_":"Со счёта: ","To_account:_":"На счёт: ","Not_announced_for_this_currency_":"Нет данных для этой валюты.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Сбросьте баланс вашего демо-счета до [_1] в любое время.","[_1]Manage_your_accounts[_2]":"[_1]Управление счетами[_2]","time":"раз","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"первый раз пополните этот счет или откроете реальный счет MT5/реальный счет Deriv X на deriv.com.","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Вы больше не можете изменить валюту, потому что открыли реальный счет MT5 (или реальный счет Deriv X на deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Вы не можете изменить валюту счёта, так как вы уже пополняли счёт.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Валютой вашего фиатного счета является [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Валютой вашего фиатного счета является [_1].","This_is_your_[_1]_account_":"Это ваш счёт [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Вы можете [_1]выбрать новую валюту[_2] до того, как пополните счет в первый [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Не хотите торговать в [_1]? Вы можете открыть другой криптовалютный счёт.","Switch_account":"Переключить счет","Switch_account?":"Переключить счет?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Чтобы внести средства, перейдите на свой счет [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Чтобы вывести средства, перейдите на свой счет [_1].","Switch_to_crypto_account?":"Перейти на крипто счет?","To_deposit_cryptocurrency,_switch_your_account_":"Переключите счет, чтобы внести криптовалюту.","To_withdraw_cryptocurrency,_switch_your_account_":"Переключите счет, чтобы вывести криптовалюту.","Cancel":"Отмена","Withdraw":"Вывод","Deposit":"Пополнение","Town/City":"Город","First_line_of_home_address":"Адрес (улица, дом, кв.)","Postal_Code/ZIP":"Почтовый код/индекс","State/Province":"Штат/провинция/область","Email_address":"Эл. адрес","Telephone":"Номер телефона","Country_of_Residence":"Страна проживания","details":"подробности","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Your_cashier_is_locked_":"Ваша касса заблокирована.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Обратите внимание, что выбранная валюта доступна для ограниченного числа счетов.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Вы достигли лимита на вывод. Загрузите документ, подтверждающий личность и адрес, чтобы снять лимит и продолжить вывод средств.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Услуги платежного агента недоступны в вашей стране или в выбранной вами валюте.","Select_payment_agent":"Выберите платежного агента","Amount_in":"Сумма в","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Разрешены только буквы, цифры, пробелы, дефисы, точки, запятые и апострофы.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Ваш запрос на вывод [_1] [_2] со счета [_3] на счет платежного агента [_4] был выполнен успешно.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Срок действия вашего ключа истёк. Пожалуйста, нажмите [_1]здесь,[_2] чтобы повторно запустить процесс проверки.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"К сожалению, вывод средств в этой валюте временно недоступен.","Please_[_1]deposit[_2]_to_your_account_":"Пожалуйста, [_1]пополните[_2] счёт.","Sorry,_account_signup_is_not_available_in_your_country_":"К сожалению, регистрация счета недоступна в вашей стране.","Asset":"Актив","Opens":"Открывается","Closes":"Закрывается","Settles":"Заканчивается","Upcoming_Events":"Ближайшие события","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Добавьте +/–, чтобы определить оффсет барьера. Например, +0.005 означает, что барьер будет на 0.005 выше входной спот-котировки.","Digit":"Десятичн.","Percentage":"Проценты","Waiting_for_entry_tick_":"В ожидании входного тика...","High_Barrier":"Верхний барьер","Low_Barrier":"Нижний Барьер","Waiting_for_exit_tick_":"В ожидании выходного тика.","Ticks_history_returned_an_empty_array_":"История тиков представляет пустой массив.","Chart_is_not_available_for_this_underlying_":"График этого актива недоступен.","Purchase":"Покупка","Net_profit":"Чистая прибыль","Return":"Прибыль","Time_is_in_the_wrong_format_":"Неправильный формат времени.","Rise/Fall":"Повышение/Падение","Higher/Lower":"Выше/Ниже","Matches/Differs":"Совпадение/Отличие","Even/Odd":"Чётное/Нечётное","Over/Under":"Над/Под","High-Close":"Макс.-Закрытие","Close-Low":"Закрытие-Мин.","High-Low":"Макс.-Мин.","Reset_Call":"Reset Колл","Reset_Put":"Reset Пут","Up/Down":"Вверх/Вниз","Only_Ups/Only_Downs":"Только вверх/вниз","In/Out":"Внутри/Вне","Select_Trade_Type":"Выберите вид контракта","Tick":"Тики","Spot":"Спот-котировка","Spot_Time_(GMT)":"Спот (GMT)","seconds":"сек.","minutes":"мин.","hours":"час.","days":"дн.","ticks":"тик.","tick":"тик.","second":"сек.","minute":"мин.","hour":"час.","day":"дн.","Duration":"Длительность","End_Time":"Окончание","Purchase_request_sent":"Запрос на покупку отправлен","High":"Макс.","Close":"Закрытие","Low":"Мин.","Select_Asset":"Выберите актив","Search___":"Поиск...","Maximum_multiplier_of_1000_":"Максимальный множитель 1000.","Stake":"Ставка","Payout":"Выплата","Multiplier":"Множитель","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"К сожалению, ваш счет не авторизован для дальнейшей покупки контрактов.","Trading_is_unavailable_at_this_time_":"В данное время торговля недоступна.","Please_reload_the_page":"Пожалуйста, перезагрузите страницу","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Ваша заявка на квалификацию профессионального клиента находится на рассмотрении.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Ваша заявка на статус профессионального клиента [_1]отклонена[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Пожалуйста, подайте повторную заявку, когда будут выполнены необходимые критерии.","More_information_can_be_found_in_an_email_sent_to_you_":"Дополнительная информация указана в отправленном вам письме.","I_want_to_reapply":"Я хочу подать заявку повторно","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Финансовые контракты на бинарных опционах в ЕС доступны только для профессиональных инвесторов.","Apply_now_as_a_professional_investor":"Подайте заявку на статус профессионального инвестора","Try_our_[_1]Synthetic_Indices[_2]_":"Попробуйте наши [_1]Синтетические индексы[_2].","Try_our_other_markets_":"Вы можете торговать на других активах.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Пожалуйста, заполните [_1]форму на открытие Реального счёта[_2], чтобы подтвердить ваш возраст, в соответствии с требованиями [_3]Комиссии по азартным играм[_4] Великобритании (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Доступ к счёту временно ограничен. Пожалуйста, проверьте почту для получения более подробной информации.","Contract_Confirmation":"Подтверждение контракта","Your_transaction_reference_is":"Номер вашей транзакции:","Total_Cost":"Общая стоимость","Potential_Payout":"Потенциальная выплата","Potential_Profit":"Потенциальная прибыль","View":"Просмотр","This_contract_won":"Вы выиграли","This_contract_lost":"Вы проиграли","The_reset_time_is_[_1]":"Время Reset: [_1]","Now":"Сейчас","Average":"Среднее","Buy_price":"Цена покупки","Final_price":"Итоговая цена","Loss":"Потери","Profit":"Прибыль","Account_balance:":"Баланс счета:","Reverse_Side":"Обратная сторона","Front_Side":"Лицевая сторона","Pending":"Ожидающ.","Submitting":"Отправка","Submitted":"Отправлено","Failed":"Возникла ошибка","Compressing_Image":"Уменьшение изображения","Checking":"Проверка","Checked":"Проверено","Unable_to_read_file_[_1]":"Не удалось прочитать файл [_1]","Passport":"Паспорт","Identity_card":"Удостоверение личности","Driving_licence":"Водительское удостоверение","Invalid_document_format_":"Недопустимый формат документа.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Размер файла ([_1]) превышает разрешенный лимит. Максимальный допустимый размер: [_2]","ID_number_is_required_for_[_1]_":"Номер ID необходим для [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Для номера ID разрешены только буквы, цифры, пробел, нижнее подчёркивание, и дефис ([_1]).","Expiry_date_is_required_for_[_1]_":"Срок истечения необходим для [_1].","Place_of_birth":"Место рождения","Please_select_the_country_of_document_issuance":"Выберите страну выдачи документа","Choose_the_document_type":"Выберите тип документа","Please_enter_the_correct_format__Example:":"Пожалуйста, введите правильный формат. Пример:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту вашего аккаунта Google, и нажмите на ссылку в письме, чтобы продолжить.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту вашего аккаунта Facebook, и нажмите на ссылку в письме, чтобы продолжить.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту, связанную с вашим Apple ID, и нажмите на ссылку в письме, чтобы продолжить.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Нажмите на ссылку в письме, чтобы изменить пароль MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Нажмите на ссылку в письме, чтобы изменить пароль Binary.","We’ve_sent_you_an_email":"Мы отправили вам электронное письмо","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Вы входите на Binary.com через аккаунт [_1]. Чтобы изменить способ входа в систему на имя пользователя и пароль, нажмите кнопку [_2]Отвязать[_3].","Linked_with_[_1]":"Привязан к [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Вам нужно будет установить пароль, чтобы завершить процесс.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Вы уверены, что хотите отвязать [_1]?","Unlink":"Отвязать","Country_not_found":"Страна не найдена","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Документы из этой страны в настоящее время не поддерживаются - попробуйте другой тип документа","Submit_document":"Отправить документ","Select_country":"Выберите страну","e_g__United_States":"например США","Search_for_country":"Искать страну","Select_issuing_country":"Выберите страну выдачи","Submit_verification":"Отправить подтверждение","Tips":"Советы","Documents_uploaded":"Документы загружены.","Document_uploaded":"Документ загружен.","Selfie_uploaded":"Селфи загружено.","We're_now_ready_to_verify_your_identity":"Теперь мы готовы подтвердить вашу личность","Great,_that's_everything_we_need":"Отлично, это все, что нам нужно.","The_link_only_works_on_mobile_devices":"Ссылка работает только на мобильных устройствах","Something's_gone_wrong":"Что-то пошло не так","You'll_need_to_restart_your_verification_on_your_computer":"Вам нужно будет перезапустить верификацию на вашем компьютере","Get_secure_link":"Получить безопасную ссылку","Steps_required_to_continue_verification_on_your_mobile":"Шаги, необходимые для продолжения верификации с мобильного телефона:","Check_back_here_to_finish_the_submission":"Вернитесь сюда, чтобы завершить отправку","Open_the_link_and_complete_the_tasks":"Откройте ссылку и выполните все задания","Send_a_secure_link_to_your_phone":"Отправьте защищенную ссылку на свой телефон","Here's_how_to_do_it:":"Вот как это сделать:","Continue_on_your_phone":"Продолжить на телефоне","Your_computer_may_take_a_few_seconds_to_update":"Вашему компьютеру может потребоваться несколько секунд на обновление","You_can_now_return_to_your_computer_to_continue":"Теперь вы можете вернуться и продолжить со своего компьютера","Uploads_successful":"Загрузки прошли успешно","Make_sure_everything_is_clear":"Убедитесь, что все хорошо видно","Blurry_photo_detected":"Обнаружена размытая фотография.","Make_sure_full_document_is_visible":"Убедитесь, что документ виден полностью","Cut-off_image_detected":"Обнаружено обрезанное изображение","Move_away_from_direct_light":"Отойдите от прямого света","Glare_detected":"Обнаружены блики","Make_sure_all_of_the_document_is_in_the_photo":"Убедитесь, что на фото весь документ.","No_document_detected":"Документов не обнаружено","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные карты четко видны, читаемы, без размытия или бликов.","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Если мы не сможем его прочитать, верификация займет больше времени","To_smoothly_verify_you,_we_need_a_better_photo":"Нам нужно фото более высокого качества, чтобы верифицировать вас","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные на правах четко видны, читаемы, без размытия или бликов.","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что паспортные данные четко видны, читаемы, без размытия или бликов.","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные вида на жительство четко видны, читаемы, без размытия или бликов.","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные четко видны, читаемы, без размытия или бликов.","Redo":"Вернуть","Confirm":"Подтвердить","Upload_anyway":"Все равно загрузить","Enlarge_image":"Увеличить изображение","Photo_of_your_document":"Фото вашего документа","Check_your_image":"Проверьте свое изображение","Front_and_back":"Спереди и сзади","Driver's_license":"Водительские права","Face_photo_page":"Страница с фотографией","Residence_permit":"Вид на жительство","Sorry,_no_mobile_phone_bills":"К сожалению, мы не можем принять счет за мобильный телефон","Documents_you_can_use_to_verify_your_identity":"Документы, которые можно использовать для подтверждения личности","It_must_be_an_official_photo_ID":"Это должно быть официальное удостоверение личности с фотографией.","These_are_the_documents_most_likely_to_show_your_current_home_address":"В этих документах, скорее всего, будет указан ваш текущий домашний адрес","Choose_document":"Выберите документ","Select_a_%{country}_document":"Выберите документ %{country}","or_upload_photo_–_no_scans_or_photocopies":"или загрузите фото - никаких сканов и ксерокопий","Continue_on_phone":"Продолжить на телефоне","Take_a_photo_with_your_phone":"Сделайте фото на свой телефон","Submit_identity_card_(back)":"Отправить ID-карту (оборотная сторона)","Submit_identity_card_(front)":"Отправить ID-карту (лицевая сторона)","Submit_license_(back)":"Отправить права (оборотная сторона)","Submit_license_(front)":"Отправить права (лицевая сторона)","Submit_passport_photo_page":"Отправить страницу паспорта с фотографией","Submit_residence_permit_(back)":"Отправить вид на жительство (оборотная сторона)","Submit_residence_permit_(front)":"Отправить вид на жительство (лицевая сторона)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Повторите процесс в последней версии Google Chrome.","Restart_the_process_on_the_latest_version_of_Safari":"Повторите процесс в последней версии Safari.","Unsupported_browser":"Неподдерживаемый браузер","Close_identity_verification_screen":"Закройте экран подтверждения личности","Dismiss_alert":"Закрыть оповещение","back":"назад","close":"закрыть","Restart_process_on_a_different_device":"Повторите процесс на другом устройстве.","Camera_not_detected":"Камера не обнаружена.","Must_be_under_10MB_":"Файл должен быть меньше 10 МБ.","File_size_exceeded_":"Превышен допустимый размер файла.","Try_using_another_file_type_":"Попробуйте использовать другой тип файла.","File_not_uploaded_":"Файл не загружен.","An_error_occurred_while_loading_the_component":"Произошла ошибка при загрузке компонента.","Only_your_face_can_be_in_the_selfie":"На селфи может быть только ваше лицо","Multiple_faces_found":"Найдено несколько лиц","Your_face_is_needed_in_the_selfie":"На селфи должно быть ваше лицо","No_face_found":"Лицо не найдено","Please_try_again":"Пожалуйста, попробуйте снова","Connection_lost":"Соединение прервано","Copy_the_link_to_your_phone":"Скопируйте ссылку на свой телефон","Too_many_failed_attempts":"Слишком много неудачных попыток","Try_using_a_JPG_or_PNG_file":"Попробуйте использовать файл JPG или PNG","File_type_not_supported":"Этот тип файла не поддерживается","Loading___":"Загрузка...","Loading":"Загрузка","Check_that_your_number_is_correct":"Убедитесь, что указали правильный номер","Copied":"Скопировано","Copy":"Копировать","Send_link":"Отправить ссылку","How_to_scan_a_QR_code":"Как отсканировать QR-код","Point_your_phone’s_camera_at_the_QR_code":"Наведите камеру телефона на QR-код","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Если не работает, скачайте сканер QR-кода из Google Play или App Store.","or":"или","Scan_QR_code":"Сканировать QR-код","Get_link_via_SMS":"Получите ссылку по SMS","Copy_link":"Копировать ссылку","Sending":"Отправка","Enter_mobile_number":"Введите номер мобильного телефона","Enter_your_mobile_number:":"Введите номер мобильного телефона:","Scan_the_QR_code_with_your_phone":"Отсканируйте QR-код со своего телефона.","Send_this_one-time_link_to_your_phone":"Отправьте эту одноразовую ссылку на свой телефон","Open_the_link_on_your_mobile":"Откройте ссылку на своем телефоне","Get_your_secure_link":"Получите безопасную ссылку","Copy_the_link_to_your_mobile_browser":"Скопируйте ссылку в браузер своего телефона","Continue":"Продолжить","Make_sure§":"Убедитесь, что§","2__Your_desktop_window_stays_open":"2. Окно программы остается открытым.","1__This_link_was_sent_by_you":"1. Эта ссылка была отправлена вами","Continue_with_the_verification":"Продолжить верификацию","Linked_to_your_computer":"Подключено к вашему компьютеру","Take_a_photo_of_the_back_of_your_card":"Сфотографируйте оборотную сторону карты","Take_a_photo_of_the_front_of_your_card":"Сфотографируйте лицевую сторону карты","Take_a_photo_of_the_back_of_your_license":"Сфотографируйте оборотную сторону прав","Take_a_photo_of_the_front_of_your_license":"Сфотографируйте лицевую сторону прав","Take_a_photo_of_your_passport_photo_page":"Сфотографируйте страницу паспорта с фотографией","Take_a_selfie_showing_your_face":"Сделайте селфи, показывающее ваше лицо","Take_a_photo_using_the_basic_camera_mode_instead":"Сделайте фото в базовом режиме камеры","Take_a_photo":"Сделайте фото","Passport_photo_page":"Страница паспорта с фото","Thank_you":"Спасибо","Verification_complete":"Верификация завершена","Refresh":"Обновить","Recovery":"Восстановление","Follow_these_steps_to_recover_camera_access:":"Выполните следующие действия, чтобы восстановить доступ к камере:","Refresh_this_page_to_restart_the_identity_verification_process":"Обновите эту страницу, чтобы перезапустить процесс проверки личности.","Grant_access_to_your_camera_from_your_browser_settings":"Предоставьте доступ к вашей камере в настройках браузера.","Recover_camera_access_to_continue_face_verification":"Восстановите доступ к камере, чтобы продолжить верификацию лица","Camera_access_is_denied":"Доступ к камере закрыт.","We_cannot_verify_you_without_using_your_camera":"Мы не можем верифицировать вас, не используя камеру","Enable_camera":"Включить камеру","When_prompted,_you_must_enable_camera_access_to_continue":"При появлении запроса вы должны разрешить доступ к камере, чтобы продолжить","Allow_camera_access":"Разрешить доступ к камере","Provide_the_whole_document_page_for_best_results":"Для наилучших результатов предоставьте всю страницу документа","Upload_back_of_card_from_your_computer":"Загрузите оборотную сторону карты со своего компьютера","Upload_front_of_card_from_your_computer":"Загрузите лицевую сторону карты со своего компьютера","Upload_back_of_license_from_your_computer":"Загрузите оборотную сторону прав со своего компьютера","Upload_front_of_license_from_your_computer":"Загрузите лицевую сторону прав со своего компьютера","Upload_passport_photo_page_from_your_computer":"Загрузите страницу паспорта с фото со своего компьютера","Upload_a_selfie_from_your_computer":"Загрузите селфи со своего компьютера","Take_photo":"Сделать фото","Upload":"Загрузить","Selfie":"Селфи","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Убедитесь, что все подключено и работает. Вы также можете продолжить верификацию со своего телефона.","Make_sure_your_device_has_a_working_camera":"Убедитесь, что на вашем устройстве работает камера.","Camera_not_working?":"Не работает камера?","It_may_be_disconnected__Try_using_your_phone_instead_":"Она может быть отключена. Попробуйте использовать свой телефон.","Make_sure_your_device's_camera_works":"Убедитесь, что на вашем устройстве работает камера.","Camera_not_working":"Не работает камера.","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Не забудьте нажать стоп, когда закончите. Повторить действия с видео.","Looks_like_you_took_too_long":"Похоже, все заняло у вас слишком много времени","View_from_camera":"Вид с камеры","Take_a_selfie":"Сделайте селфи","Photo_of_your_face":"Фото вашего лица","Make_sure_your_selfie_clearly_shows_your_face":"Убедитесь, что на селфи хорошо видно ваше лицо.","Check_selfie":"Проверьте селфи","Tips_to_take_a_good_selfie":"Советы, как сделать хорошее селфи","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Повернитесь лицом вперед и убедитесь, что ваши глаза хорошо видны.","Remove_your_glasses,_if_necessary":"При необходимости снимите очки.","We'll_compare_it_with_your_document":"Мы сравним его с вашим документом","Your_link_will_expire_in_one_hour":"Срок действия вашей ссылки истечет через час.","Keep_this_window_open_while_using_your_mobile":"Не закрывайте это окно при использовании мобильного телефона","Resend_link":"Отправить ссылку повторно","We've_sent_a_secure_link_to_%{number}":"Мы отправили безопасную ссылку на %{number}","It_may_take_a_few_minutes_to_arrive":"Доставка может занять несколько минут","Check_your_mobile":"Проверьте свой телефон","Your_mobile_link_will_expire_in_one_hour":"Срок действия вашей мобильной ссылки истечет через час.","Don't_refresh_this_page":"Не обновляйте эту страницу","Once_you've_finished_we'll_take_you_to_the_next_step":"Как только вы закончите, мы перейдем к следующему шагу","Connected_to_your_mobile":"Подключено к вашему мобильному телефону","Upload_photo":"Загрузить фото","Example_of_a_blurry_document":"Пример нечеткого документа","All_details_must_be_clear_—_nothing_blurry":"Все данные должны быть четко видны — ничего размытого","Example_of_a_cut-off_document":"Пример документа, который не будет принят","Show_all_details_—_including_the_bottom_2_lines":"Показаны все данные, включая 2 нижние строки","Example_of_a_document_with_glare":"Пример документа с бликами","Move_away_from_direct_light_—_no_glare":"Отойдите от источника прямого света - никаких бликов","Document_example":"Пример документа","The_photo_should_clearly_show_your_document":"На фото должен быть четко виден ваш документ","Scans_and_photocopies_are_not_accepted":"Сканы и ксерокопии не принимаются","Upload_passport_photo_page":"Загрузите страницу паспорта с фото","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Чтобы открыть банковский счет, нам необходимо будет подтвердить вашу личность.","It_will_only_take_a_couple_of_minutes_":"Это займет всего пару минут.","Verify_Identity":"Подтвердить личность","Open_your_new_bank_account":"Откройте новый банковский счет","Please_enter_a_valid_Login_ID_":"Пожалуйста, введите правильное имя пользователя.","Amount":"Количество","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Ваш запрос на перевод [_1] [_2] с [_3] на [_4] был выполнен успешно.","Resale_not_offered":"Продажа не предлагается","You've_made_no_transactions_of_this_type_up_to_this_date_":"До этого момента вы не совершали транзакций такого типа.","Date":"Дата","Ref_":"Номер","Contract":"Контракт","Purchase_Price":"Цена покупки","Sale_Date":"Дата продажи","Sale_Price":"Цена продажи","Profit/Loss":"Плюс/Минус","Details":"Подробности","Total_Profit/Loss":"Общая прибыль/убыток","Action_required!":"Требуется действие!","Sorry,_an_error_occurred_while_processing_your_request_":"Извините, при обработке вашего запроса произошла ошибка.","position(s)":"позиция(и)","withdrawal(s)":"вывод(ы)","We_couldn’t_read_that!":"Мы не смогли это прочитать!","Remaining_characters:_[_1]_":"Осталось знаков: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Пожалуйста, введите не более [_1] символов в оба поля.","Only_[_1]_are_allowed_":"Разрешены только [_1].","letters":"буквы","numbers":"цифры","space":"пробел","Please_select_at_least_one_scope":"Выберите хотя бы одну область","New_token_created_":"Создан новый ключ.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Достигнуто максимальное число ключей ([_1]).","Name":"Имя и фамилия","Token":"Ключ","Scopes":"Сфера действия","Last_Used":"Последние","Action":"Акт","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Вы уверены, что хотите навсегда удалить токен?","Delete":"Удалить","Never_Used":"Никогда не использовался","You_have_not_granted_access_to_any_applications_":"Вы не предоставили доступ ни к каким приложениям.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Вы уверены, что хотите навсегда отказаться от доступа к приложению","Revoke_access":"Отмена доступа","Admin":"Администратор","Payments":"Платежи","Read":"Читать","Trade":"Торговля","Trading_Information":"Торговая информация","Never":"Никогда","Permissions":"Разрешения","Last_Login":"Последний вход","You_did_not_change_anything_":"Вы не внесли никаких изменений.","Your_changes_have_been_updated_successfully_":"Ваши изменения успешно обновлены.","Successful":"Успешно","Date_and_Time":"Дата и время","Browser":"Браузер","IP_Address":"IP-адрес","Status":"Статус","Your_account_has_no_Login/Logout_activity_":"На вашем счете нет активности входов/выходов.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Ваш счет полностью авторизован, и лимит на вывод был снят.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Ваш [_1]-дневный лимит на вывод средств составляет [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Вы уже в сумме вывели [_1][_2] за последние [_3] суток.","Your_withdrawal_limit_is_[_1][_2]_":"Ваш лимит на вывод составляет [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Вы уже вывели со счета [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Соответственно, остаток средств, доступный для вывода, составляет всего [_1][_2], в зависимости от доступных средств на вашем счете.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Пожалуйста, подтвердите, что вся информация, указанная выше, является точной и достоверной.","Your_settings_have_been_updated_successfully_":"Ваши настройки успешно обновлены.","Sorry,_an_error_occurred_while_processing_your_account_":"Извините, произошла ошибка.","Please_select_a_country":"Выберите страну","Timed_out_until":"Ограничение до","Excluded_from_the_website_until":"Доступ к сайту закрыт до","Session_duration_limit_cannot_be_more_than_6_weeks_":"Лимит на длительность сессии не может превышать 6 недель.","Time_out_must_be_after_today_":"Перерыв должен быть позднее сегодняшней даты.","Time_out_cannot_be_more_than_6_weeks_":"Перерыв не может превышать 6 недель.","Time_out_cannot_be_in_the_past_":"Перерыв не может быть в прошлом.","Please_select_a_valid_time_":"Пожалуйста, выберите правильное время.","Exclude_time_cannot_be_less_than_6_months_":"Период ограничения не может быть менее 6 месяцев.","Exclude_time_cannot_be_for_more_than_5_years_":"Период ограничения не может быть больше 5 лет.","Confirm_changes":"Подтвердить изменения","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Мы обновим ваши лимиты. Нажмите [_1]Согласиться и принять[_2], чтобы подтвердить, что вы осознаете и полностью отвечаете за свои действия, и мы не несем ответственности за какие-либо убытки или зависимость.","Agree_and_accept":"Согласиться и принять","Go_back":"Назад","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Когда вы нажмёте \"ОК\", вы будете отстранены от работы на сайте до окончания выбранной даты.","Your_changes_have_been_updated_":"Ваши изменения внесены успешно.","Disable":"Отключить","Enable":"Активировать","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Вы успешно включили двухступенчатую аутентификацию на вашем счете.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Вы успешно отключили двухступенчатую аутентификацию на вашем счете.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"В настоящее время вам не нужно аутентифицировать свой счет.[_1]Мы сообщим вам, когда счету потребуется аутентификация.","No_authentication_required":"Аутентификация не требуется","Back_to_trading":"Вернуться к трейдингу","You_are_categorised_as_a_professional_client_":"Вы относитесь к категории профессиональных клиентов.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Вы относитесь к категории индивидуальных клиентов. Подайте заявку, чтобы получить статус профессионального трейдера.","Bid":"Бид","Closed_Bid":"Закрытая ставка","Reference_ID":"Номер","Description":"Описание","Credit/Debit":"Кредит/Дебет","Balance":"Баланс","Top_up_error":"Ошибка при пополнении","Understood":"Понятно","Top-up_successful":"Пополнение прошло успешно","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] зачислено на ваш демо-счет: [_2].","Go_to_statement":"Вернуться к выпискам","Continue_trading":"Продолжить торговлю","Your_Demo_balance_has_been_reset_":"Баланс вашего демо-счета был сброшен.","Account":"Счёт","Available_Markets":"Доступные рынки","Type":"Тип","Currency":"Валюта","Multipliers_Account":"Счет с мультипликаторами","Gaming_Account":"Игровой счет","Options_Account":"Счет с опционами","Real_Account":"Реальный счет","Counterparty":"Контрагент","Jurisdiction":"Юрисдикция","Create_account":"Открыть счёт","Change_currency":"Изменить валюту","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Примечание: вы можете открыть только один счет в фиатной валюте. Валюту фиатного счета можно изменить до того, как вы первый раз пополните этот счет или откроете реальный счет MT5/реальный счет Deriv X на deriv.com. Также вы можете открыть по одному счету в каждой доступной криптовалюте.","This_account_is_disabled":"Данный счёт неактивен","This_account_is_excluded_until_[_1]":"Данный счёт исключён до [_1]","Set_currency":"Укажите валюту","Commodities":"Сырьевые товары","Stock_Indices":"Фондовые индексы","Stocks":"Акции","Synthetic_Indices":"Синтетические индексы","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Если у вас есть счет на нашем сайте, мы отправим ссылку для сброса пароля на вашу электронную почту через несколько минут.","Sign_up":"Зарегистрируйтесь","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Торговля контрактами на разницу (CFD) на Синтетических индексах подходит далеко не для всех. Пожалуйста, убедитесь, что вы хорошо осознаёте все сопряженные риски, включая риск потерять все средства на счете MT5. Торговая деятельность может вызвать привыкание, поэтому, пожалуйста, торгуйте ответственно.","Do_you_wish_to_continue?":"Хотите продолжить?","Acknowledge":"Подтвердить","Change_Password":"Сменить пароль","The_investor_password_of_account_number_[_1]_has_been_changed_":"Инвесторский пароль счета [_1] был изменен.","Reset_Password":"Изменить пароль","Verify_Reset_Password":"Подтвердите изменение пароля","Please_check_your_email_for_further_instructions_":"Проверьте свою электронную почту. Вам должны прийти инструкции.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Вы успешно перевели средства [_1] со счёта [_2] на счёт [_3]. Номер транзакции: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Вывод средств [_1] со счёта [_2] на счёт [_3] завершен. Номер транзакции: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Чтобы вывести средства с [_1] MetaTrader 5, пройдите аутентификацию вашего счета на Binary.","Current_password":"Текущий пароль","New_password":"Новый пароль","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Чтобы перевести средства на свой счет MT5, введите сумму не менее [_1]","You_have_insufficient_funds_in_your_MT5_account_":"На вашем счете MT5 недостаточно средств.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"К сожалению, эта функция недоступна в вашей юрисдикции.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Из-за неполадок на нашем сервере некоторые из ваших счетов MT5 в настоящее время недоступны. Мы работаем над устранением проблемы. [_1]Приносим свои извинения и благодарим за понимание.","Unavailable":"Недоступно","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] зачислено на ваш демо-счёт MT5: [_2].","_(Region_added)":" (Регион добавлен)","_(Temporarily_unavailable)":" (Временно недоступно)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Наши серверы MT5 временно недоступны. Мы работаем над их восстановлением. Пожалуйста, попробуйте еще раз через несколько минут.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Используйте пароль MT5 для входа на любой из своих счетов [_1] через приложения MT5 на мобильном телефоне или других устройствах.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Пароль будет изменен для всех ваших счетов [_1].","Demo_Accounts":"Демо-счета","Real-Money_Accounts":"Реальные счета","Demo_Account":"Демо-счёт","Real-Money_Account":"Реальный счёт","for_account_[_1]":"для счёта [_1]","[_1]_Account_[_2]":"[_1] Счёт [_2]","MT5_Financial":"MT5 Финансовый","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Введите пароль MT5, чтобы добавить [_2] [_1] счет.","demo":"демо","real":"реальный","MT5_Synthetic":"MT5 Синтетический","Get_[_1]":"Получить[_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"В данный момент баланс вашего демо-счёта составляет [_1] или ниже. Вы можете пополнить счёт дополнительными [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Вы можете дополнительно внести на демо-счёт [_1], если его баланс составит [_2] или ниже.","Yes,_I'm_sure":"Да, я уверен(а)","Are_you_sure?":"Вы уверены?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Вы не сможете изменить валюту фиатного счета после открытия этого счета [_1]. Вы уверены, что хотите продолжить?","OK":"ОК","Go_to_Deriv_to_add_an_MT5_account":"Перейдите на Deriv, чтобы добавить счет MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Вы сможете войти на Deriv с учетными данными Binary.com.","Back":"Назад","Go_to_Deriv":"Перейти на Deriv","Address":"Адрес","Account_currency":"Валюта счёта","Financial_assessment":"Финансовая оценка","Personal_details":"Личные данные","Terms_of_use":"Условия пользования","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) - это версия Tether, привязанная к доллару США и построенная на блокчейне Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) - это версия Tether, привязанная к доллару США и размещенная на платформе Ethereum.","Title_and_name":"Обращение и имя","Real_money_account_opening":"Открытие реального счета","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Срок действия вашего ключа истёк. Пожалуйста, нажмите здесь, чтобы повторно запустить процесс проверки.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Указанный вами электронный адрес уже используется для другого счёта. Если вы забыли пароль своего счёта, пожалуйста, воспользуйтесь инструментом восстановления пароля или свяжитесь с нашей службой поддержки.","Password_is_not_strong_enough_":"Пароль недостаточно надёжный.","Upgrade_now":"Обновить сейчас","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] дн. [_2] ч. [_3] мин.","Your_trading_statistics_since_[_1]_":"Ваша торговая статистика с [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1] трейдинг может перерасти в зависимость, как и любая другая деятельность, доведенная до крайности. Чтобы избежать опасности возникновения подобной зависимости, мы проводим проверку реальности и предоставляем регулярный отчет о ваших сделках и счетах.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Пожалуйста, нажмите на ссылку ниже для повторного восстановления пароля.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"У вас теперь новый пароль для входа на Binary.com.","Success":"Готово","Done":"Готово","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Ваш счет Binary больше не связан с [_1]. Используйте [_2]email и пароль для входа в систему в будущем.","Success!":"Готово!","Got_it":"Понятно","Binary_Password_Reset":"Сброс пароля Binary","Binary_password":"Пароль Binary","You_have_added_a_[_1]_account_":"Вы добавили счет [_1].","Add_account":"Добавить счёт","Add_new_crypto_account":"Открыть новый крипто счет","Add_new_account":"Открыть новый счет","Create_a_cryptocurrency_account":"Откройте криптовалютный счет","Choose_your_preferred_cryptocurrency":"Выберите желаемую криптовалюту","You_can_open_an_account_for_each_cryptocurrency_":"Вы можете открыть по одному счету на каждую криптовалюту.","Choose_a_cryptocurrency_account":"Выберите криптовалютный счет","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Выберите один из ваших счетов или откройте новый криптовалютный счет","Choose_an_account":"Выберите счёт","Choose_one_of_your_accounts_or_add_a_new_account":"Выберите один из ваших счетов или откройте новый","Choose_one_of_your_accounts":"Выберите один из ваших счетов","Please_select_the_currency_for_this_account:":"Пожалуйста, выберите валюту этого счёта:","deposit":"пополнение","deposit_or_create_a_CFDs_account":"пополнение или не открывали счет CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Вы уверены, что хотите открыть счёт [_1] сейчас?","Note:":"Примечание:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Вы можете открыть по одному счёту на каждую доступную криптовалюту.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Вы уверены, что хотите открыть фиатный счёт в [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Вы можете владеть только одним фиатным счетом. Вы можете изменить валюту фиатного счета, если еще не производили [_1].","Yes":"Да","Create_[_1]_account":"Открыть счет [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Вы успешно установили валюту счёта: [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Вы успешно изменили валюту счёта с [_1] на [_2].","Please_choose_a_currency":"Пожалуйста, выберите валюту","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"У вас теперь новый пароль для входа на счета [_1] с веб-браузеров и мобильных приложений.","Asian_Up":"Азиатские вверх","Asian_Down":"Азиатские вниз","Higher":"Выше","Higher_or_equal":"Выше или равно","Lower":"Ниже","Lower_or_equal":"Ниже или равно","Digit_Matches":"Совпадение цифр","Digit_Differs":"Несовпад. цифр","Digit_Odd":"Нечётная цифра","Digit_Even":"Чётная цифра","Digit_Over":"Цифра выше","Digit_Under":"Цифра ниже","Ends_Outside":"закончится вне","Ends_Between":"закончится внутри","Stays_Between":"Останется внутри","Goes_Outside":"выйдет за пределы","Touches":"Коснётся","Does_Not_Touch":"не коснется","Call_Spread":"Колл спред","Put_Spread":"Пут спред","High_Tick":"Высокий тик","Low_Tick":"Низкий тик","Only_Ups":"Только вверх","Only_Downs":"Только вниз","Multiplier_Up":"Множитель Вверх","Multiplier_Down":"Множитель Вниз","Equals":"Равно","Not":"Не","Buy":"Покупка","Sell":"Продажа","Waiting_for_contract_settlement_":"Ожидание закрытия контракта.","including_Deal_Cancel__Fee":"включая комиссию за отмену сделки","Contract_has_not_started_yet":"Контракт ещё не начался","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Этот контракт доступен только на [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Этот контракт доступен только на DTrader. Чтобы продать или отменить данный контракт, [_1][_2]Перейдите на DTrader[_3].","Contract_Result":"Результат контракта","Close_Time":"Время закрытия","Exit_Spot_Time":"Время выходной котировки","Audit":"Аудит","View_chart":"Обзор графика","Audit_Page":"Страница аудита","Contract_Starts":"Начало контракта","Contract_Ends":"Окончание контракта","Contract_Details":"Подробности контракта","Target":"Цель","Contract_Information":"Детали контракта","Contract_Type":"Вид контракта","Transaction_ID":"Номер контракта","Remaining_Time":"Оставшееся время","Maximum_payout":"Макс. выплата","Barrier_Change":"Изменение барьера","Current":"Текущие","Spot_Time":"Спот-время","Current_Time":"Текущее время","Indicative":"Ориентировочная цена","Potential_Profit/Loss":"Потенциальная прибыль/убыток","Deal_Cancel__Fee":"Комиссия за отмену сделки","You_can_close_this_window_without_interrupting_your_trade_":"Закрытие этого окна не повлияет на ваш трейдинг.","There_was_an_error":"Произошла ошибка","Sell_at_market":"Продать по текущей цене","Note":"Примечание","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Контракт будет продан по цене, действующей на момент получения запроса нашими серверами. Эта цена может отличаться от указанной в настоящее время.","You_have_sold_this_contract_at_[_1]_[_2]":"Вы продали данный контракт по цене [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Номер вашей транзакции: [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Спасибо за регистрацию! Теперь проверьте электронную почту, чтобы завершить процесс.","All_markets_are_closed_now__Please_try_again_later_":"Сейчас все рынки закрыты. Пожалуйста, попробуйте позже.","Withdrawal":"Вывод","demo_credit_to_account":"демо-средства на счет","login":"вход","logout":"выход","Asians":"Азиатские","Call_Spread/Put_Spread":"Колл спред/Пут спред","Digits":"Цифровые","Ends_Between/Ends_Outside":"Закончится внутри/вне","High/Low_Ticks":"Наибольший/наименьший тик","Lookbacks":"Oпционы Lookback","Reset_Call/Reset_Put":"Reset колл/Reset пут","Stays_Between/Goes_Outside":"Останется внутри/вне","Touch/No_Touch":"Касание/Нет касания","Christmas_Day":"Рождество","Closes_early_(at_18:00)":"Закрывается рано (в 18:00)","Closes_early_(at_21:00)":"Закрывается рано (в 21:00)","Fridays":"пятница","New_Year's_Day":"Новый год","today":"сегодня","today,_Fridays":"сегодня, по пятницам","There_was_a_problem_accessing_the_server_":"Возникла проблема с доступом к серверу.","There_was_a_problem_accessing_the_server_during_purchase_":"Возникла проблема с доступом к серверу во время процесса покупки."}; \ No newline at end of file +texts_json['RU'] = {"Real":"Реальный","Multipliers":"Мультипликаторы","Gaming":"Игровой","Options":"Опционы","Demo":"Демо","Real_CFDs":"Реальный CFD","Real_Financial":"Реальный Финансовый","Demo_CFDs":"Демо CFD","Demo_Financial":"Демо Финансовый","Demo_Derived":"Демо Derived","Real_Derived":"Реальный Derived","CFDs":"CFD","Financial":"Финансовый","Financial_STP":"Финансовый STP","Demo_Financial_STP":"Демо Финансовый STP","Real_Financial_STP":"Реальный Финансовый STP","Online":"Онлайн","Offline":"Не в сети","Connecting_to_server":"Соединение с сервером","Use_a_few_words,_avoid_common_phrases":"Используйте несколько слов, избегайте распространенных фраз","No_need_for_symbols,_digits,_or_uppercase_letters":"Нет необходимости в символах, цифрах или заглавных буквах","Add_another_word_or_two__Uncommon_words_are_better_":"Добавьте одно или два необычных слова.","Straight_rows_of_keys_are_easy_to_guess":"Прямые ряды клавиш легко угадать","Short_keyboard_patterns_are_easy_to_guess":"Короткие комбинации клавиш легко угадать","Use_a_longer_keyboard_pattern_with_more_turns":"Используйте более длинные комбинации клавиш с большим количеством поворотов","Repeats_like_\"aaa\"_are_easy_to_guess":"Повторения типа \"aaa\" легко угадать","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Повторения типа \"abcabcabc\" угадать немногим сложнее, чем \"abc\"","Avoid_repeated_words_and_characters":"Избегайте повторения слов и символов","Sequences_like_abc_or_6543_are_easy_to_guess":"Последовательности вроде abc или 6543 легко угадать","Avoid_sequences":"Избегайте последовательностей","Recent_years_are_easy_to_guess":"Последние годы легко угадать","Avoid_recent_years":"Избегайте недавних дат","Avoid_years_that_are_associated_with_you":"Избегайте дат, которые связаны с вами","Dates_are_often_easy_to_guess":"Даты часто легко угадать","Avoid_dates_and_years_that_are_associated_with_you":"Избегайте дат и лет, которые связаны с вами","This_is_a_top-10_common_password":"Это один из 10 наиболее распространенных паролей.","This_is_a_top-100_common_password":"Это один из 100 наиболее распространенных паролей.","This_is_a_very_common_password":"Это один из наиболее распространенных паролей","This_is_similar_to_a_commonly_used_password":"Это похоже на часто используемый пароль","A_word_by_itself_is_easy_to_guess":"Отдельное слово легко угадать","Names_and_surnames_by_themselves_are_easy_to_guess":"Пароли, состоящие только из имен и фамилий, легко угадать","Common_names_and_surnames_are_easy_to_guess":"Распространенные имена и фамилии угадать несложно","Capitalization_doesn't_help_very_much":"Использование заглавных букв не очень помогает","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Пароль из только заглавных букв угадать почти так же легко, как и пароль из только строчных","Reversed_words_aren't_much_harder_to_guess":"Перевернутые слова угадать не намного сложнее","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Легко предсказуемые замены, такие как '@' вместо 'a', не очень помогают","This_password_is_on_the_blacklist":"Этот пароль находится в черном списке","Unknown_OS":"Незнакомая операционная система","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Вы будете перенаправлены на сайт третьей стороны, который не принадлежит Binary.com.","Click_OK_to_proceed_":"Нажмите OK, чтобы продолжить.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Пожалуйста, убедитесь, что вы установили приложение Telegram на ваше устройство.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"Для полноценной работы [_1] необходимо разрешение использовать веб-хранилище вашего браузера. Пожалуйста, включите эту функцию или отключите режим приватности.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Чтобы просмотреть эту страницу, пожалуйста [_1]войдите на сайт[_2] или [_3]зарегистрируйтесь[_4].","This_feature_is_available_to_demo_accounts_only_":"Эта опция доступна только для демо-счетов.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Вы используете демо-счет. Переключитесь на реальный счет или создайте его, чтобы получить доступ к кассе.","This_page_is_only_available_to_logged_out_clients_":"Эта страница доступна только для клиентов, вошедших на сайт.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Торговля бинарными опционами недоступна на вашем счете для мультипликаторов.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Торговля бинарными опционами недоступна на счете с мультипликаторами.
Вернитесь на счет для торговли бинарными опционами.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"К сожалению, торговля опционами недоступна в Великобритании и на острове Мэн.","Binary_options_trading_is_not_available_in_your_country_":"Торговля бинарными опционами недоступна в вашей стране.","This_page_is_not_available_in_your_country_of_residence_":"Эта страница недоступна в вашей стране проживания.","Page_not_available,_you_did_not_deactivate_your_account_":"Страница недоступна, вы не деактивировали счет.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"К сожалению, этот сервис недоступен в вашей стране. Если вы хотите торговать мультипликаторами, попробуйте DTrader на Deriv.","Go_to_DTrader":"Перейти на DTrader","Sign_out":"Выход","[_1]_Account":"Счёт [_1]","Click_here_to_open_a_Real_Account":"Нажмите здесь для открытия Реального счёта","Open_a_Real_Account":"Открыть Реальный счёт","Click_here_to_open_a_Multipliers_Account":"Нажмите здесь для открытия счета с мультипликаторами","Click_here_to_open_an_Options_account":"Нажмите здесь для открытия счета с опционами","Open_a_Multipliers_Account":"Открыть счет с мультипликаторами","Go_to_Deriv_to_add_an_account":"Перейдите на Deriv, чтобы добавить счет","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Вы сможете войти на Deriv с учетными данными Binary.com.","Cancel":"Отмена","Go_to_Deriv":"Перейти на Deriv","Create_Account":"Открыть счёт","Accounts_List":"Список счетов","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Пополнение счета временно недоступно из-за технического обслуживания системы. Вы можете пополнить счет после завершения работ.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Вывод средств временно недоступен из-за технического обслуживания системы. Вы можете вывести средства после завершения работ.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Криптовалютная касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Ваша касса заблокирована. Свяжитесь с нами через чат, чтобы узнать, как получить к ней доступ.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Установите [_1]валюту счета[_2], чтобы разблокировать пополнение и вывод средств. ","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Имя и дата рождения в документе не совпадают с именем и датой рождения в вашем профиле Binary. Обновите имя и дату рождения на странице [_1]личные данные[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Дата рождения в документе не совпадает с датой рождения в вашем профиле Binary. Обновите дату рождения на странице [_1]личные данные[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Имя в документе не совпадает с именем в вашем профиле Binary. Обновите имя на странице [_1]личные данные[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Ваш счет не был аутентифицирован. Отправьте нам [_1]подтверждение вашей личности и адреса[_2], чтобы аутентифицировать счет и активировать вывод средств.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Ваш счет не был аутентифицирован. Отправьте нам [_1]подтверждение вашей личности и адреса[_2], чтобы аутентифицировать счет и получить доступ к кассе.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Истек срок действия отправленных вами документов, удостоверяющих личность. Пожалуйста, предоставьте действительные документы, удостоверяющие личность, чтобы разблокировать кассу.","Your_[_1]proof_of_identity[_2]_has_expired_":"Срок действия документа, [_1]удостоверяющего личность[_2], истёк.","Your_[_1]proof_of_address[_2]_has_expired_":"Срок действия документа, [_1]подтверждающего адрес[_2], истёк.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"Ваши документы, подтверждающие [_1]личность[_3] и [_2]адрес[_3] не прошли проверку","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"Ваш документ, [_1]подтверждающий личность[_2], не прошел проверку.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"Ваш документ, [_1]подтверждающий адрес[_2], не прошел проверку.","Please_submit_your_[_1]proof_of_identity[_2]_":"Пожалуйста, предоставьте [_1]удостоверение личности[_2].","Please_submit_your_[_1]proof_of_address[_2]_":"Пожалуйста, предоставьте [_1]подтверждение адреса[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Вы решили исключить себя из торговли на нашем сайте до [_1]. Если вы не можете купить контракт или пополнить счет после периода самоисключения, свяжитесь с нами через чат.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Ваш доступ к кассе был временно заблокирован, так как вы не установили 30-дневный лимит на оборот счета. Перейдите на страницу [_1]самоисключения[_2] и установите этот лимит.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"На вашем счете MT5 отключен вывод средств. Проверьте свою электронную почту для получения более подробной информации.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"К сожалению, вы можете только пополнять счет. Пожалуйста, свяжитесь с нами через чат, чтобы активировать вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение и вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать вывод средств.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"Отсутствуют некоторые [_1]личные данные[_2]. Пожалуйста, перейдите в настройки счета и введите недостающие личные данные, чтобы активировать пополнение счета.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Вы не указали страну проживания. Чтобы получить доступ к кассе, выберите [_1]страну проживания[_2] в разделе Личные данные в настройках счета.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Ваша касса заблокирована. Пройдите [_1]финансовую оценку[_2], чтобы получить доступ к кассе.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Вы не указали свой идентификационный номер налогоплательщика. Эта информация необходима для соблюдения правовых и нормативных требований. Перейдите в [_1]личные данные[_2] в настройках счета и введите свой актуальный идентификационный номер налогоплательщика.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"К сожалению, вы можете только выводить средства. Пожалуйста, свяжитесь с нами через чат.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"На вашем счете временно заблокирован вывод средств. Пожалуйста, подождите, пока загруженные вами документы будут проверены.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Пожалуйста, [_1]примите обновлённые Правила и условия[_1].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Пожалуйста, [_1]примите обновленные Правила и условия[_2], чтобы снять лимиты на пополнение счета и трейдинг.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Ваш счет временно отключен. Свяжитесь с нами через чат, чтобы активировать пополнение и вывод средств.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Пройдите тест на соответствие, чтобы получить доступ к кассе.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Ваша касса заблокирована. Прежде чем продолжить, ознакомьтесь с тем, [_1]как мы защищаем ваши средства[_2].","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Ваш счет нужно аутентифицировать. Пожалуйста, отправьте свое [_1]удостоверение личности[_2] для доступа к кассе.","Account_Authenticated":"Аутентификация пройдена","Connection_error:_Please_check_your_internet_connection_":"Проблема со связью: пожалуйста, проверьте ваше подключение к интернету.","Network_status":"Статус сети","This_is_a_staging_server_-_For_testing_purposes_only":"Это вспомогательный сервер, применяемый только для тестирования","The_server_endpoint_is:_[_2]":"Конечная точка сервера: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Ваш веб браузер ([_1]) устарел, что может повлиять на результаты вашей торговли. Рекомендуем [_2]обновить браузер[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Вы достигли лимита на количество запросов в секунду. Пожалуйста, повторите попытку позже.","There_was_some_invalid_character_in_an_input_field_":"Неразрешённый символ в поле ввода.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"регулируется Комиссией по азартным играм Великобритании (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"регулируется Управлением по азартным играм Мальты,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"регулируется Управлением финансовых услуг Мальты (MFSA),","Please_select":"Выберите","Please_accept_the_terms_and_conditions_":"Пожалуйста, примите правила и условия.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Пожалуйста подтвердите, что вы не являетесь политически-значимым лицом.","Today":"Cегодня","Select_date":"Выберите дату","Barrier":"Барьер","Entry_Spot":"Входная котировка","Exit_Spot":"Выходная котировка","Charting_for_this_underlying_is_delayed":"Графики для этого инструмента рисуются с задержкой","Payout_Range":"Диапазон выплат","Purchase_Time":"Время покупки","Reset_Barrier":"Барьер Reset","Reset_Time":"Время Reset","Selected_Tick":"Выбранный тик","Exit_Time":"Время окончания","Start_Time":"Время начала","Fiat":"Фиатные","Crypto":"Крипто","Step_[_1]:_[_2]_([_1]_of_[_3])":"Шаг [_1]: [_2] ([_1] из [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Неправильный проверочный код. Пожалуйста, воспользуйтесь ссылкой, отправленной на ваш email.","Indicates_required_field":"Обозначает поле, которое является обязательным","Please_select_the_checkbox_":"Пожалуйста, выберите нужный ответ.","This_field_is_required_":"Данное поле является необходимым.","Should_be_a_valid_number_":"Введите правильное число.","Up_to_[_1]_decimal_places_are_allowed_":"Разрешенное количество десятичных: до [_1].","Should_be_[_1]":"Должно быть [_1]","Should_be_between_[_1]_and_[_2]":"Допустимые значения: от [_1] до [_2]","Should_be_more_than_[_1]":"Значение должно быть больше [_1]","Should_be_less_than_[_1]":"Значение должно быть меньше [_1]","Insufficient_balance_":"Недостаточно средств на счете.","Invalid_email_address_":"Неправильный e-mail.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Пароль должен состоять из заглавных, строчных латинских букв и цифр.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Разрешены только буквы, цифры, пробелы, дефис, точки и апостроф.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Разрешены только буквы, цифры, пробел и следующие символы: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Допускаются только буквы латинского алфавита, пробелы, дефисы, точки и апострофы.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Разрешены только буквы, цифры, пробелы и дефисы.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Пожалуйста, введите действительный номер телефона (например, +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Введенные пароли не совпадают.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] и [_2] не могут совпадать.","Minimum_of_[_1]_characters_required_":"Необходимо минимум [_1] знака(ов).","You_should_enter_[_1]_characters_":"Вы должны ввести [_1] символов.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Должно начинаться с буквы или цифры; может содержать дефис и нижнее подчёркивание.","Invalid_verification_code_":"Неправильный код подтверждения.","Your_password_cannot_be_the_same_as_your_email_address_":"Пароль и адрес электронной почты не могут совпадать.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Транзакция проведена [_1] (App ID: [_2])","Guide":"Обзор","Next":"Далее","Finish":"Завершить","Step":"Шаг","Select_your_market_and_underlying_asset":"Выберите рынок и основной актив","Select_your_trade_type":"Выбрать тип контракта","Adjust_trade_parameters":"Изменить параметры контракта","Predict_the_directionand_purchase":"Предскажите направление движения
и купите","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Ограничение на длительность сессии закончится через [_1] сек.","January":"Январь","February":"Февраль","March":"Март","April":"Апрель","May":"Май","June":"Июнь","July":"Июль","August":"Август","September":"Сентябрь","October":"Октябрь","November":"Ноябрь","December":"Декабрь","Jan":"Янв","Feb":"Фев","Mar":"Мар","Apr":"Апр","Jun":"Июн","Jul":"Июл","Aug":"Авг","Sep":"Сен","Oct":"Окт","Nov":"Ноя","Dec":"Дек","Sunday":"Воскресенье","Monday":"Понедельник","Tuesday":"Вторник","Wednesday":"Среда","Thursday":"Четверг","Friday":"пятница","Saturday":"Суббота","Su":"Вс","Mo":"Пн","Tu":"Вт","We":"Ср","Th":"Чт","Fr":"Пт","Sa":"Сб","Previous":"Предыдущ.","Hour":"Час.","Minute":"Мин.","AM":"утра","PM":"вечера","Verification_required":"Требуется проверка","Verify_identity":"Подтвердить личность","From_account:_":"Со счёта: ","To_account:_":"На счёт: ","Not_announced_for_this_currency_":"Нет данных для этой валюты.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Сбросьте баланс вашего демо-счета до [_1] в любое время.","[_1]Manage_your_accounts[_2]":"[_1]Управление счетами[_2]","time":"раз","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"первый раз пополните этот счет или откроете реальный счет MT5/реальный счет Deriv X на deriv.com.","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Вы больше не можете изменить валюту, потому что открыли реальный счет MT5 (или реальный счет Deriv X на deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Вы не можете изменить валюту счёта, так как вы уже пополняли счёт.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Валютой вашего фиатного счета является [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Валютой вашего фиатного счета является [_1].","This_is_your_[_1]_account_":"Это ваш счёт [_1].","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Вы можете [_1]выбрать новую валюту[_2] до того, как пополните счет в первый [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Не хотите торговать в [_1]? Вы можете открыть другой криптовалютный счёт.","Switch_account":"Переключить счет","Switch_account?":"Переключить счет?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Чтобы внести средства, перейдите на свой счет [_1].","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Чтобы вывести средства, перейдите на свой счет [_1].","Switch_to_crypto_account?":"Перейти на крипто счет?","To_deposit_cryptocurrency,_switch_your_account_":"Переключите счет, чтобы внести криптовалюту.","To_withdraw_cryptocurrency,_switch_your_account_":"Переключите счет, чтобы вывести криптовалюту.","Withdraw":"Вывод","Deposit":"Пополнение","Town/City":"Город","First_line_of_home_address":"Адрес (улица, дом, кв.)","Postal_Code/ZIP":"Почтовый код/индекс","State/Province":"Штат/провинция/область","Email_address":"Эл. адрес","Telephone":"Номер телефона","Country_of_Residence":"Страна проживания","details":"подробности","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Касса временно не работает из-за технического обслуживания системы. Вы сможете получить доступ к кассе через несколько минут после завершения обслуживания.","Your_cashier_is_locked_":"Ваша касса заблокирована.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Обратите внимание, что выбранная валюта доступна для ограниченного числа счетов.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Вы достигли лимита на вывод. Загрузите документ, подтверждающий личность и адрес, чтобы снять лимит и продолжить вывод средств.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Услуги платежного агента недоступны в вашей стране или в выбранной вами валюте.","Select_payment_agent":"Выберите платежного агента","Amount_in":"Сумма в","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Разрешены только буквы, цифры, пробелы, дефисы, точки, запятые и апострофы.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Ваш запрос на вывод [_1] [_2] со счета [_3] на счет платежного агента [_4] был выполнен успешно.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Срок действия вашего ключа истёк. Пожалуйста, нажмите [_1]здесь,[_2] чтобы повторно запустить процесс проверки.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"К сожалению, вывод средств в этой валюте временно недоступен.","Please_[_1]deposit[_2]_to_your_account_":"Пожалуйста, [_1]пополните[_2] счёт.","Sorry,_account_signup_is_not_available_in_your_country_":"К сожалению, регистрация счета недоступна в вашей стране.","Asset":"Актив","Opens":"Открывается","Closes":"Закрывается","Settles":"Заканчивается","Upcoming_Events":"Ближайшие события","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Добавьте +/–, чтобы определить оффсет барьера. Например, +0.005 означает, что барьер будет на 0.005 выше входной спот-котировки.","Digit":"Десятичн.","Percentage":"Проценты","Waiting_for_entry_tick_":"В ожидании входного тика...","High_Barrier":"Верхний барьер","Low_Barrier":"Нижний Барьер","Waiting_for_exit_tick_":"В ожидании выходного тика.","Ticks_history_returned_an_empty_array_":"История тиков представляет пустой массив.","Chart_is_not_available_for_this_underlying_":"График этого актива недоступен.","Purchase":"Покупка","Net_profit":"Чистая прибыль","Return":"Прибыль","Time_is_in_the_wrong_format_":"Неправильный формат времени.","Rise/Fall":"Повышение/Падение","Higher/Lower":"Выше/Ниже","Matches/Differs":"Совпадение/Отличие","Even/Odd":"Чётное/Нечётное","Over/Under":"Над/Под","High-Close":"Макс.-Закрытие","Close-Low":"Закрытие-Мин.","High-Low":"Макс.-Мин.","Reset_Call":"Reset Колл","Reset_Put":"Reset Пут","Up/Down":"Вверх/Вниз","Only_Ups/Only_Downs":"Только вверх/вниз","In/Out":"Внутри/Вне","Select_Trade_Type":"Выберите вид контракта","Tick":"Тики","Spot":"Спот-котировка","Spot_Time_(GMT)":"Спот (GMT)","seconds":"сек.","minutes":"мин.","hours":"час.","days":"дн.","ticks":"тик.","tick":"тик.","second":"сек.","minute":"мин.","hour":"час.","day":"дн.","Duration":"Длительность","End_Time":"Окончание","Purchase_request_sent":"Запрос на покупку отправлен","High":"Макс.","Close":"Закрытие","Low":"Мин.","Select_Asset":"Выберите актив","Search___":"Поиск...","Maximum_multiplier_of_1000_":"Максимальный множитель 1000.","Stake":"Ставка","Payout":"Выплата","Multiplier":"Множитель","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"К сожалению, ваш счет не авторизован для дальнейшей покупки контрактов.","Trading_is_unavailable_at_this_time_":"В данное время торговля недоступна.","Please_reload_the_page":"Пожалуйста, перезагрузите страницу","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Вы больше не можете торговать этим типом контракта в текущей торговой сессии. Дополнительную информацию см. в наших [_1]правилах и условиях[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Ваша заявка на квалификацию профессионального клиента находится на рассмотрении.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Ваша заявка на статус профессионального клиента [_1]отклонена[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Пожалуйста, подайте повторную заявку, когда будут выполнены необходимые критерии.","More_information_can_be_found_in_an_email_sent_to_you_":"Дополнительная информация указана в отправленном вам письме.","I_want_to_reapply":"Я хочу подать заявку повторно","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Финансовые контракты на бинарных опционах в ЕС доступны только для профессиональных инвесторов.","Apply_now_as_a_professional_investor":"Подайте заявку на статус профессионального инвестора","Try_our_[_1]Synthetic_Indices[_2]_":"Попробуйте наши [_1]Синтетические индексы[_2].","Try_our_other_markets_":"Вы можете торговать на других активах.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Пожалуйста, заполните [_1]форму на открытие Реального счёта[_2], чтобы подтвердить ваш возраст, в соответствии с требованиями [_3]Комиссии по азартным играм[_4] Великобритании (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Доступ к счёту временно ограничен. Пожалуйста, проверьте почту для получения более подробной информации.","Contract_Confirmation":"Подтверждение контракта","Your_transaction_reference_is":"Номер вашей транзакции:","Total_Cost":"Общая стоимость","Potential_Payout":"Потенциальная выплата","Potential_Profit":"Потенциальная прибыль","View":"Просмотр","This_contract_won":"Вы выиграли","This_contract_lost":"Вы проиграли","The_reset_time_is_[_1]":"Время Reset: [_1]","Now":"Сейчас","Average":"Среднее","Buy_price":"Цена покупки","Final_price":"Итоговая цена","Loss":"Потери","Profit":"Прибыль","Account_balance:":"Баланс счета:","Reverse_Side":"Обратная сторона","Front_Side":"Лицевая сторона","Pending":"Ожидающ.","Submitting":"Отправка","Submitted":"Отправлено","Failed":"Возникла ошибка","Compressing_Image":"Уменьшение изображения","Checking":"Проверка","Checked":"Проверено","Unable_to_read_file_[_1]":"Не удалось прочитать файл [_1]","Passport":"Паспорт","Identity_card":"Удостоверение личности","Driving_licence":"Водительское удостоверение","Invalid_document_format_":"Недопустимый формат документа.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Размер файла ([_1]) превышает разрешенный лимит. Максимальный допустимый размер: [_2]","ID_number_is_required_for_[_1]_":"Номер ID необходим для [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Для номера ID разрешены только буквы, цифры, пробел, нижнее подчёркивание, и дефис ([_1]).","Expiry_date_is_required_for_[_1]_":"Срок истечения необходим для [_1].","Place_of_birth":"Место рождения","Please_select_the_country_of_document_issuance":"Выберите страну выдачи документа","Choose_the_document_type":"Выберите тип документа","Please_enter_the_correct_format__Example:":"Пожалуйста, введите правильный формат. Пример:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту вашего аккаунта Google, и нажмите на ссылку в письме, чтобы продолжить.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту вашего аккаунта Facebook, и нажмите на ссылку в письме, чтобы продолжить.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Проверьте электронную почту, связанную с вашим Apple ID, и нажмите на ссылку в письме, чтобы продолжить.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Нажмите на ссылку в письме, чтобы изменить пароль MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Нажмите на ссылку в письме, чтобы изменить пароль Binary.","We’ve_sent_you_an_email":"Мы отправили вам электронное письмо","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Вы входите на Binary.com через аккаунт [_1]. Чтобы изменить способ входа в систему на имя пользователя и пароль, нажмите кнопку [_2]Отвязать[_3].","Linked_with_[_1]":"Привязан к [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Вам нужно будет установить пароль, чтобы завершить процесс.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Вы уверены, что хотите отвязать [_1]?","Unlink":"Отвязать","Country_not_found":"Страна не найдена","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Документы из этой страны в настоящее время не поддерживаются - попробуйте другой тип документа","Submit_document":"Отправить документ","Select_country":"Выберите страну","e_g__United_States":"например США","Search_for_country":"Искать страну","Select_issuing_country":"Выберите страну выдачи","Submit_verification":"Отправить подтверждение","Tips":"Советы","Documents_uploaded":"Документы загружены.","Document_uploaded":"Документ загружен.","Selfie_uploaded":"Селфи загружено.","We're_now_ready_to_verify_your_identity":"Теперь мы готовы подтвердить вашу личность","Great,_that's_everything_we_need":"Отлично, это все, что нам нужно.","The_link_only_works_on_mobile_devices":"Ссылка работает только на мобильных устройствах","Something's_gone_wrong":"Что-то пошло не так","You'll_need_to_restart_your_verification_on_your_computer":"Вам нужно будет перезапустить верификацию на вашем компьютере","Get_secure_link":"Получить безопасную ссылку","Steps_required_to_continue_verification_on_your_mobile":"Шаги, необходимые для продолжения верификации с мобильного телефона:","Check_back_here_to_finish_the_submission":"Вернитесь сюда, чтобы завершить отправку","Open_the_link_and_complete_the_tasks":"Откройте ссылку и выполните все задания","Send_a_secure_link_to_your_phone":"Отправьте защищенную ссылку на свой телефон","Here's_how_to_do_it:":"Вот как это сделать:","Continue_on_your_phone":"Продолжить на телефоне","Your_computer_may_take_a_few_seconds_to_update":"Вашему компьютеру может потребоваться несколько секунд на обновление","You_can_now_return_to_your_computer_to_continue":"Теперь вы можете вернуться и продолжить со своего компьютера","Uploads_successful":"Загрузки прошли успешно","Make_sure_everything_is_clear":"Убедитесь, что все хорошо видно","Blurry_photo_detected":"Обнаружена размытая фотография.","Make_sure_full_document_is_visible":"Убедитесь, что документ виден полностью","Cut-off_image_detected":"Обнаружено обрезанное изображение","Move_away_from_direct_light":"Отойдите от прямого света","Glare_detected":"Обнаружены блики","Make_sure_all_of_the_document_is_in_the_photo":"Убедитесь, что на фото весь документ.","No_document_detected":"Документов не обнаружено","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные карты четко видны, читаемы, без размытия или бликов.","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Если мы не сможем его прочитать, верификация займет больше времени","To_smoothly_verify_you,_we_need_a_better_photo":"Нам нужно фото более высокого качества, чтобы верифицировать вас","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные на правах четко видны, читаемы, без размытия или бликов.","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что паспортные данные четко видны, читаемы, без размытия или бликов.","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные вида на жительство четко видны, читаемы, без размытия или бликов.","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Убедитесь, что данные четко видны, читаемы, без размытия или бликов.","Redo":"Вернуть","Confirm":"Подтвердить","Upload_anyway":"Все равно загрузить","Enlarge_image":"Увеличить изображение","Photo_of_your_document":"Фото вашего документа","Check_your_image":"Проверьте свое изображение","Front_and_back":"Спереди и сзади","Driver's_license":"Водительские права","Face_photo_page":"Страница с фотографией","Residence_permit":"Вид на жительство","Sorry,_no_mobile_phone_bills":"К сожалению, мы не можем принять счет за мобильный телефон","Documents_you_can_use_to_verify_your_identity":"Документы, которые можно использовать для подтверждения личности","It_must_be_an_official_photo_ID":"Это должно быть официальное удостоверение личности с фотографией.","These_are_the_documents_most_likely_to_show_your_current_home_address":"В этих документах, скорее всего, будет указан ваш текущий домашний адрес","Choose_document":"Выберите документ","Select_a_%{country}_document":"Выберите документ %{country}","or_upload_photo_–_no_scans_or_photocopies":"или загрузите фото - никаких сканов и ксерокопий","Continue_on_phone":"Продолжить на телефоне","Take_a_photo_with_your_phone":"Сделайте фото на свой телефон","Submit_identity_card_(back)":"Отправить ID-карту (оборотная сторона)","Submit_identity_card_(front)":"Отправить ID-карту (лицевая сторона)","Submit_license_(back)":"Отправить права (оборотная сторона)","Submit_license_(front)":"Отправить права (лицевая сторона)","Submit_passport_photo_page":"Отправить страницу паспорта с фотографией","Submit_residence_permit_(back)":"Отправить вид на жительство (оборотная сторона)","Submit_residence_permit_(front)":"Отправить вид на жительство (лицевая сторона)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Повторите процесс в последней версии Google Chrome.","Restart_the_process_on_the_latest_version_of_Safari":"Повторите процесс в последней версии Safari.","Unsupported_browser":"Неподдерживаемый браузер","Close_identity_verification_screen":"Закройте экран подтверждения личности","Dismiss_alert":"Закрыть оповещение","back":"назад","close":"закрыть","Restart_process_on_a_different_device":"Повторите процесс на другом устройстве.","Camera_not_detected":"Камера не обнаружена.","Must_be_under_10MB_":"Файл должен быть меньше 10 МБ.","File_size_exceeded_":"Превышен допустимый размер файла.","Try_using_another_file_type_":"Попробуйте использовать другой тип файла.","File_not_uploaded_":"Файл не загружен.","An_error_occurred_while_loading_the_component":"Произошла ошибка при загрузке компонента.","Only_your_face_can_be_in_the_selfie":"На селфи может быть только ваше лицо","Multiple_faces_found":"Найдено несколько лиц","Your_face_is_needed_in_the_selfie":"На селфи должно быть ваше лицо","No_face_found":"Лицо не найдено","Please_try_again":"Пожалуйста, попробуйте снова","Connection_lost":"Соединение прервано","Copy_the_link_to_your_phone":"Скопируйте ссылку на свой телефон","Too_many_failed_attempts":"Слишком много неудачных попыток","Try_using_a_JPG_or_PNG_file":"Попробуйте использовать файл JPG или PNG","File_type_not_supported":"Этот тип файла не поддерживается","Loading___":"Загрузка...","Loading":"Загрузка","Check_that_your_number_is_correct":"Убедитесь, что указали правильный номер","Copied":"Скопировано","Copy":"Копировать","Send_link":"Отправить ссылку","How_to_scan_a_QR_code":"Как отсканировать QR-код","Point_your_phone’s_camera_at_the_QR_code":"Наведите камеру телефона на QR-код","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Если не работает, скачайте сканер QR-кода из Google Play или App Store.","or":"или","Scan_QR_code":"Сканировать QR-код","Get_link_via_SMS":"Получите ссылку по SMS","Copy_link":"Копировать ссылку","Sending":"Отправка","Enter_mobile_number":"Введите номер мобильного телефона","Enter_your_mobile_number:":"Введите номер мобильного телефона:","Scan_the_QR_code_with_your_phone":"Отсканируйте QR-код со своего телефона.","Send_this_one-time_link_to_your_phone":"Отправьте эту одноразовую ссылку на свой телефон","Open_the_link_on_your_mobile":"Откройте ссылку на своем телефоне","Get_your_secure_link":"Получите безопасную ссылку","Copy_the_link_to_your_mobile_browser":"Скопируйте ссылку в браузер своего телефона","Continue":"Продолжить","Make_sure§":"Убедитесь, что§","2__Your_desktop_window_stays_open":"2. Окно программы остается открытым.","1__This_link_was_sent_by_you":"1. Эта ссылка была отправлена вами","Continue_with_the_verification":"Продолжить верификацию","Linked_to_your_computer":"Подключено к вашему компьютеру","Take_a_photo_of_the_back_of_your_card":"Сфотографируйте оборотную сторону карты","Take_a_photo_of_the_front_of_your_card":"Сфотографируйте лицевую сторону карты","Take_a_photo_of_the_back_of_your_license":"Сфотографируйте оборотную сторону прав","Take_a_photo_of_the_front_of_your_license":"Сфотографируйте лицевую сторону прав","Take_a_photo_of_your_passport_photo_page":"Сфотографируйте страницу паспорта с фотографией","Take_a_selfie_showing_your_face":"Сделайте селфи, показывающее ваше лицо","Take_a_photo_using_the_basic_camera_mode_instead":"Сделайте фото в базовом режиме камеры","Take_a_photo":"Сделайте фото","Passport_photo_page":"Страница паспорта с фото","Thank_you":"Спасибо","Verification_complete":"Верификация завершена","Refresh":"Обновить","Recovery":"Восстановление","Follow_these_steps_to_recover_camera_access:":"Выполните следующие действия, чтобы восстановить доступ к камере:","Refresh_this_page_to_restart_the_identity_verification_process":"Обновите эту страницу, чтобы перезапустить процесс проверки личности.","Grant_access_to_your_camera_from_your_browser_settings":"Предоставьте доступ к вашей камере в настройках браузера.","Recover_camera_access_to_continue_face_verification":"Восстановите доступ к камере, чтобы продолжить верификацию лица","Camera_access_is_denied":"Доступ к камере закрыт.","We_cannot_verify_you_without_using_your_camera":"Мы не можем верифицировать вас, не используя камеру","Enable_camera":"Включить камеру","When_prompted,_you_must_enable_camera_access_to_continue":"При появлении запроса вы должны разрешить доступ к камере, чтобы продолжить","Allow_camera_access":"Разрешить доступ к камере","Provide_the_whole_document_page_for_best_results":"Для наилучших результатов предоставьте всю страницу документа","Upload_back_of_card_from_your_computer":"Загрузите оборотную сторону карты со своего компьютера","Upload_front_of_card_from_your_computer":"Загрузите лицевую сторону карты со своего компьютера","Upload_back_of_license_from_your_computer":"Загрузите оборотную сторону прав со своего компьютера","Upload_front_of_license_from_your_computer":"Загрузите лицевую сторону прав со своего компьютера","Upload_passport_photo_page_from_your_computer":"Загрузите страницу паспорта с фото со своего компьютера","Upload_a_selfie_from_your_computer":"Загрузите селфи со своего компьютера","Take_photo":"Сделать фото","Upload":"Загрузить","Selfie":"Селфи","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Убедитесь, что все подключено и работает. Вы также можете продолжить верификацию со своего телефона.","Make_sure_your_device_has_a_working_camera":"Убедитесь, что на вашем устройстве работает камера.","Camera_not_working?":"Не работает камера?","It_may_be_disconnected__Try_using_your_phone_instead_":"Она может быть отключена. Попробуйте использовать свой телефон.","Make_sure_your_device's_camera_works":"Убедитесь, что на вашем устройстве работает камера.","Camera_not_working":"Не работает камера.","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Не забудьте нажать стоп, когда закончите. Повторить действия с видео.","Looks_like_you_took_too_long":"Похоже, все заняло у вас слишком много времени","View_from_camera":"Вид с камеры","Take_a_selfie":"Сделайте селфи","Photo_of_your_face":"Фото вашего лица","Make_sure_your_selfie_clearly_shows_your_face":"Убедитесь, что на селфи хорошо видно ваше лицо.","Check_selfie":"Проверьте селфи","Tips_to_take_a_good_selfie":"Советы, как сделать хорошее селфи","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Повернитесь лицом вперед и убедитесь, что ваши глаза хорошо видны.","Remove_your_glasses,_if_necessary":"При необходимости снимите очки.","We'll_compare_it_with_your_document":"Мы сравним его с вашим документом","Your_link_will_expire_in_one_hour":"Срок действия вашей ссылки истечет через час.","Keep_this_window_open_while_using_your_mobile":"Не закрывайте это окно при использовании мобильного телефона","Resend_link":"Отправить ссылку повторно","We've_sent_a_secure_link_to_%{number}":"Мы отправили безопасную ссылку на %{number}","It_may_take_a_few_minutes_to_arrive":"Доставка может занять несколько минут","Check_your_mobile":"Проверьте свой телефон","Your_mobile_link_will_expire_in_one_hour":"Срок действия вашей мобильной ссылки истечет через час.","Don't_refresh_this_page":"Не обновляйте эту страницу","Once_you've_finished_we'll_take_you_to_the_next_step":"Как только вы закончите, мы перейдем к следующему шагу","Connected_to_your_mobile":"Подключено к вашему мобильному телефону","Upload_photo":"Загрузить фото","Example_of_a_blurry_document":"Пример нечеткого документа","All_details_must_be_clear_—_nothing_blurry":"Все данные должны быть четко видны — ничего размытого","Example_of_a_cut-off_document":"Пример документа, который не будет принят","Show_all_details_—_including_the_bottom_2_lines":"Показаны все данные, включая 2 нижние строки","Example_of_a_document_with_glare":"Пример документа с бликами","Move_away_from_direct_light_—_no_glare":"Отойдите от источника прямого света - никаких бликов","Document_example":"Пример документа","The_photo_should_clearly_show_your_document":"На фото должен быть четко виден ваш документ","Scans_and_photocopies_are_not_accepted":"Сканы и ксерокопии не принимаются","Upload_passport_photo_page":"Загрузите страницу паспорта с фото","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Чтобы открыть банковский счет, нам необходимо будет подтвердить вашу личность.","It_will_only_take_a_couple_of_minutes_":"Это займет всего пару минут.","Verify_Identity":"Подтвердить личность","Open_your_new_bank_account":"Откройте новый банковский счет","Please_enter_a_valid_Login_ID_":"Пожалуйста, введите правильное имя пользователя.","Amount":"Количество","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Ваш запрос на перевод [_1] [_2] с [_3] на [_4] был выполнен успешно.","Resale_not_offered":"Продажа не предлагается","You've_made_no_transactions_of_this_type_up_to_this_date_":"До этого момента вы не совершали транзакций такого типа.","Date":"Дата","Ref_":"Номер","Contract":"Контракт","Purchase_Price":"Цена покупки","Sale_Date":"Дата продажи","Sale_Price":"Цена продажи","Profit/Loss":"Плюс/Минус","Details":"Подробности","Total_Profit/Loss":"Общая прибыль/убыток","Action_required!":"Требуется действие!","Sorry,_an_error_occurred_while_processing_your_request_":"Извините, при обработке вашего запроса произошла ошибка.","position(s)":"позиция(и)","withdrawal(s)":"вывод(ы)","We_couldn’t_read_that!":"Мы не смогли это прочитать!","Remaining_characters:_[_1]_":"Осталось знаков: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Пожалуйста, введите не более [_1] символов в оба поля.","Only_[_1]_are_allowed_":"Разрешены только [_1].","letters":"буквы","numbers":"цифры","space":"пробел","Please_select_at_least_one_scope":"Выберите хотя бы одну область","New_token_created_":"Создан новый ключ.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Достигнуто максимальное число ключей ([_1]).","Name":"Имя и фамилия","Token":"Ключ","Scopes":"Сфера действия","Last_Used":"Последние","Action":"Акт","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Вы уверены, что хотите навсегда удалить токен?","Delete":"Удалить","Never_Used":"Никогда не использовался","You_have_not_granted_access_to_any_applications_":"Вы не предоставили доступ ни к каким приложениям.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Вы уверены, что хотите навсегда отказаться от доступа к приложению","Revoke_access":"Отмена доступа","Admin":"Администратор","Payments":"Платежи","Read":"Читать","Trade":"Торговля","Trading_Information":"Торговая информация","Never":"Никогда","Permissions":"Разрешения","Last_Login":"Последний вход","You_did_not_change_anything_":"Вы не внесли никаких изменений.","Your_changes_have_been_updated_successfully_":"Ваши изменения успешно обновлены.","Successful":"Успешно","Date_and_Time":"Дата и время","Browser":"Браузер","IP_Address":"IP-адрес","Status":"Статус","Your_account_has_no_Login/Logout_activity_":"На вашем счете нет активности входов/выходов.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Ваш счет полностью авторизован, и лимит на вывод был снят.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Ваш [_1]-дневный лимит на вывод средств составляет [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Вы уже в сумме вывели [_1][_2] за последние [_3] суток.","Your_withdrawal_limit_is_[_1][_2]_":"Ваш лимит на вывод составляет [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Вы уже вывели со счета [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Соответственно, остаток средств, доступный для вывода, составляет всего [_1][_2], в зависимости от доступных средств на вашем счете.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Пожалуйста, подтвердите, что вся информация, указанная выше, является точной и достоверной.","Your_settings_have_been_updated_successfully_":"Ваши настройки успешно обновлены.","Sorry,_an_error_occurred_while_processing_your_account_":"Извините, произошла ошибка.","Please_select_a_country":"Выберите страну","Timed_out_until":"Ограничение до","Excluded_from_the_website_until":"Доступ к сайту закрыт до","Session_duration_limit_cannot_be_more_than_6_weeks_":"Лимит на длительность сессии не может превышать 6 недель.","Time_out_must_be_after_today_":"Перерыв должен быть позднее сегодняшней даты.","Time_out_cannot_be_more_than_6_weeks_":"Перерыв не может превышать 6 недель.","Time_out_cannot_be_in_the_past_":"Перерыв не может быть в прошлом.","Please_select_a_valid_time_":"Пожалуйста, выберите правильное время.","Exclude_time_cannot_be_less_than_6_months_":"Период ограничения не может быть менее 6 месяцев.","Exclude_time_cannot_be_for_more_than_5_years_":"Период ограничения не может быть больше 5 лет.","Confirm_changes":"Подтвердить изменения","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Мы обновим ваши лимиты. Нажмите [_1]Согласиться и принять[_2], чтобы подтвердить, что вы осознаете и полностью отвечаете за свои действия, и мы не несем ответственности за какие-либо убытки или зависимость.","Agree_and_accept":"Согласиться и принять","Go_back":"Назад","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Когда вы нажмёте \"ОК\", вы будете отстранены от работы на сайте до окончания выбранной даты.","Your_changes_have_been_updated_":"Ваши изменения внесены успешно.","Disable":"Отключить","Enable":"Активировать","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Вы успешно включили двухступенчатую аутентификацию на вашем счете.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Вы успешно отключили двухступенчатую аутентификацию на вашем счете.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"В настоящее время вам не нужно аутентифицировать свой счет.[_1]Мы сообщим вам, когда счету потребуется аутентификация.","No_authentication_required":"Аутентификация не требуется","Back_to_trading":"Вернуться к трейдингу","You_are_categorised_as_a_professional_client_":"Вы относитесь к категории профессиональных клиентов.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Вы относитесь к категории индивидуальных клиентов. Подайте заявку, чтобы получить статус профессионального трейдера.","Bid":"Бид","Closed_Bid":"Закрытая ставка","Reference_ID":"Номер","Description":"Описание","Credit/Debit":"Кредит/Дебет","Balance":"Баланс","Top_up_error":"Ошибка при пополнении","Understood":"Понятно","Top-up_successful":"Пополнение прошло успешно","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] зачислено на ваш демо-счет: [_2].","Go_to_statement":"Вернуться к выпискам","Continue_trading":"Продолжить торговлю","Your_Demo_balance_has_been_reset_":"Баланс вашего демо-счета был сброшен.","Account":"Счёт","Available_Markets":"Доступные рынки","Type":"Тип","Currency":"Валюта","Multipliers_Account":"Счет с мультипликаторами","Gaming_Account":"Игровой счет","Options_Account":"Счет с опционами","Real_Account":"Реальный счет","Counterparty":"Контрагент","Jurisdiction":"Юрисдикция","Create_account":"Открыть счёт","Change_currency":"Изменить валюту","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Примечание: вы можете открыть только один счет в фиатной валюте. Валюту фиатного счета можно изменить до того, как вы первый раз пополните этот счет или откроете реальный счет MT5/реальный счет Deriv X на deriv.com. Также вы можете открыть по одному счету в каждой доступной криптовалюте.","This_account_is_disabled":"Данный счёт неактивен","This_account_is_excluded_until_[_1]":"Данный счёт исключён до [_1]","Set_currency":"Укажите валюту","Commodities":"Сырьевые товары","Stock_Indices":"Фондовые индексы","Stocks":"Акции","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Если у вас есть счет на нашем сайте, мы отправим ссылку для сброса пароля на вашу электронную почту через несколько минут.","Sign_up":"Зарегистрируйтесь","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Торговля контрактами на разницу (CFD) на Синтетических индексах подходит далеко не для всех. Пожалуйста, убедитесь, что вы хорошо осознаёте все сопряженные риски, включая риск потерять все средства на счете MT5. Торговая деятельность может вызвать привыкание, поэтому, пожалуйста, торгуйте ответственно.","Do_you_wish_to_continue?":"Хотите продолжить?","Acknowledge":"Подтвердить","Change_Password":"Сменить пароль","The_investor_password_of_account_number_[_1]_has_been_changed_":"Инвесторский пароль счета [_1] был изменен.","Reset_Password":"Изменить пароль","Verify_Reset_Password":"Подтвердите изменение пароля","Please_check_your_email_for_further_instructions_":"Проверьте свою электронную почту. Вам должны прийти инструкции.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"Вы успешно перевели средства [_1] со счёта [_2] на счёт [_3]. Номер транзакции: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"Вывод средств [_1] со счёта [_2] на счёт [_3] завершен. Номер транзакции: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Чтобы вывести средства с [_1] MetaTrader 5, пройдите аутентификацию вашего счета на Binary.","Current_password":"Текущий пароль","New_password":"Новый пароль","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Чтобы перевести средства на свой счет MT5, введите сумму не менее [_1]","You_have_insufficient_funds_in_your_MT5_account_":"На вашем счете MT5 недостаточно средств.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"К сожалению, эта функция недоступна в вашей юрисдикции.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Из-за неполадок на нашем сервере некоторые из ваших счетов MT5 в настоящее время недоступны. Мы работаем над устранением проблемы. [_1]Приносим свои извинения и благодарим за понимание.","Unavailable":"Недоступно","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] зачислено на ваш демо-счёт MT5: [_2].","_(Region_added)":" (Регион добавлен)","_(Temporarily_unavailable)":" (Временно недоступно)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Наши серверы MT5 временно недоступны. Мы работаем над их восстановлением. Пожалуйста, попробуйте еще раз через несколько минут.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Используйте пароль MT5 для входа на любой из своих счетов [_1] через приложения MT5 на мобильном телефоне или других устройствах.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Пароль будет изменен для всех ваших счетов [_1].","Demo_Accounts":"Демо-счета","Real-Money_Accounts":"Реальные счета","Demo_Account":"Демо-счёт","Real-Money_Account":"Реальный счёт","for_account_[_1]":"для счёта [_1]","[_1]_Account_[_2]":"[_1] Счёт [_2]","MT5_Financial":"MT5 Финансовый","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Введите пароль MT5, чтобы добавить [_2] [_1] счет.","demo":"демо","real":"реальный","MT5_Synthetic":"MT5 Синтетический","Get_[_1]":"Получить[_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"В данный момент баланс вашего демо-счёта составляет [_1] или ниже. Вы можете пополнить счёт дополнительными [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Вы можете дополнительно внести на демо-счёт [_1], если его баланс составит [_2] или ниже.","Yes,_I'm_sure":"Да, я уверен(а)","Are_you_sure?":"Вы уверены?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Вы не сможете изменить валюту фиатного счета после открытия этого счета [_1]. Вы уверены, что хотите продолжить?","OK":"ОК","Go_to_Deriv_to_add_an_MT5_account":"Перейдите на Deriv, чтобы добавить счет MT5","Back":"Назад","Address":"Адрес","Account_currency":"Валюта счёта","Financial_assessment":"Финансовая оценка","Personal_details":"Личные данные","Terms_of_use":"Условия пользования","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether Omni (USDT) - это версия Tether, привязанная к доллару США и построенная на блокчейне Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) - это версия Tether, привязанная к доллару США и размещенная на платформе Ethereum.","Title_and_name":"Обращение и имя","Real_money_account_opening":"Открытие реального счета","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Срок действия вашего ключа истёк. Пожалуйста, нажмите здесь, чтобы повторно запустить процесс проверки.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Указанный вами электронный адрес уже используется для другого счёта. Если вы забыли пароль своего счёта, пожалуйста, воспользуйтесь инструментом восстановления пароля или свяжитесь с нашей службой поддержки.","Password_is_not_strong_enough_":"Пароль недостаточно надёжный.","Upgrade_now":"Обновить сейчас","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] дн. [_2] ч. [_3] мин.","Your_trading_statistics_since_[_1]_":"Ваша торговая статистика с [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1] трейдинг может перерасти в зависимость, как и любая другая деятельность, доведенная до крайности. Чтобы избежать опасности возникновения подобной зависимости, мы проводим проверку реальности и предоставляем регулярный отчет о ваших сделках и счетах.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Пожалуйста, нажмите на ссылку ниже для повторного восстановления пароля.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"У вас теперь новый пароль для входа на Binary.com.","Success":"Готово","Done":"Готово","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Ваш счет Binary больше не связан с [_1]. Используйте [_2]email и пароль для входа в систему в будущем.","Success!":"Готово!","Got_it":"Понятно","Binary_Password_Reset":"Сброс пароля Binary","Binary_password":"Пароль Binary","You_have_added_a_[_1]_account_":"Вы добавили счет [_1].","Add_account":"Добавить счёт","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether токен Omni (USDT) — это версия Tether, которая базируется на уровне Omni в блокчейне Биткойн.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether токен ERC20 (eUSDT) — это версия Tether, которая базируется на Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether токен TRC20 (tUSDT) — это версия Tether, которая базируется на Tron.","Add_new_crypto_account":"Открыть новый крипто счет","Add_new_account":"Открыть новый счет","Create_a_cryptocurrency_account":"Откройте криптовалютный счет","Choose_your_preferred_cryptocurrency":"Выберите желаемую криптовалюту","You_can_open_an_account_for_each_cryptocurrency_":"Вы можете открыть по одному счету на каждую криптовалюту.","Choose_a_cryptocurrency_account":"Выберите криптовалютный счет","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Выберите один из ваших счетов или откройте новый криптовалютный счет","Choose_an_account":"Выберите счёт","Choose_one_of_your_accounts_or_add_a_new_account":"Выберите один из ваших счетов или откройте новый","Choose_one_of_your_accounts":"Выберите один из ваших счетов","Please_select_the_currency_for_this_account:":"Пожалуйста, выберите валюту этого счёта:","deposit":"пополнение","deposit_or_create_a_CFDs_account":"пополнение или не открывали счет CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Вы уверены, что хотите открыть счёт [_1] сейчас?","Note:":"Примечание:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Вы можете открыть по одному счёту на каждую доступную криптовалюту.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Вы уверены, что хотите открыть фиатный счёт в [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Вы можете владеть только одним фиатным счетом. Вы можете изменить валюту фиатного счета, если еще не производили [_1].","Yes":"Да","Create_[_1]_account":"Открыть счет [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Вы успешно установили валюту счёта: [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Вы успешно изменили валюту счёта с [_1] на [_2].","Please_choose_a_currency":"Пожалуйста, выберите валюту","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"У вас теперь новый пароль для входа на счета [_1] с веб-браузеров и мобильных приложений.","Accumulator":"Аккумуляторы","Asian_Down":"Азиатские вниз","Asian_Up":"Азиатские вверх","Higher":"Выше","Higher_or_equal":"Выше или равно","Call_Spread":"Колл спред","Digit_Differs":"Несовпад. цифр","Digit_Even":"Чётная цифра","Digit_Matches":"Совпадение цифр","Digit_Odd":"Нечётная цифра","Digit_Over":"Цифра выше","Digit_Under":"Цифра ниже","Ends_Outside":"закончится вне","Ends_Between":"закончится внутри","Multiplier_Down":"Множитель Вниз","Multiplier_Up":"Множитель Вверх","Does_Not_Touch":"не коснется","Touches":"Коснётся","Lower":"Ниже","Lower_or_equal":"Ниже или равно","Put_Spread":"Пут спред","Stays_Between":"Останется внутри","Only_Ups":"Только вверх","Only_Downs":"Только вниз","High_Tick":"Высокий тик","Low_Tick":"Низкий тик","Goes_Outside":"выйдет за пределы","Equals":"Равно","Not":"Не","Buy":"Покупка","Sell":"Продажа","Waiting_for_contract_settlement_":"Ожидание закрытия контракта.","including_Deal_Cancel__Fee":"включая комиссию за отмену сделки","Contract_has_not_started_yet":"Контракт ещё не начался","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Этот контракт доступен только на [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Этот контракт доступен только на DTrader. Чтобы продать или отменить данный контракт, [_1][_2]Перейдите на DTrader[_3].","Contract_Result":"Результат контракта","Close_Time":"Время закрытия","Exit_Spot_Time":"Время выходной котировки","Audit":"Аудит","View_chart":"Обзор графика","Audit_Page":"Страница аудита","Contract_Starts":"Начало контракта","Contract_Ends":"Окончание контракта","Contract_Details":"Подробности контракта","Target":"Цель","Contract_Information":"Детали контракта","Contract_Type":"Вид контракта","Transaction_ID":"Номер контракта","Remaining_Time":"Оставшееся время","Maximum_payout":"Макс. выплата","Barrier_Change":"Изменение барьера","Current":"Текущие","Spot_Time":"Спот-время","Current_Time":"Текущее время","Indicative":"Ориентировочная цена","Potential_Profit/Loss":"Потенциальная прибыль/убыток","Deal_Cancel__Fee":"Комиссия за отмену сделки","You_can_close_this_window_without_interrupting_your_trade_":"Закрытие этого окна не повлияет на ваш трейдинг.","There_was_an_error":"Произошла ошибка","Sell_at_market":"Продать по текущей цене","Note":"Примечание","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Контракт будет продан по цене, действующей на момент получения запроса нашими серверами. Эта цена может отличаться от указанной в настоящее время.","You_have_sold_this_contract_at_[_1]_[_2]":"Вы продали данный контракт по цене [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Номер вашей транзакции: [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Спасибо за регистрацию! Теперь проверьте электронную почту, чтобы завершить процесс.","All_markets_are_closed_now__Please_try_again_later_":"Сейчас все рынки закрыты. Пожалуйста, попробуйте позже.","Withdrawal":"Вывод","demo_credit_to_account":"демо-средства на счет","login":"вход","logout":"выход","Asians":"Азиатские","Call_Spread/Put_Spread":"Колл спред/Пут спред","Digits":"Цифровые","Ends_Between/Ends_Outside":"Закончится внутри/вне","High/Low_Ticks":"Наибольший/наименьший тик","Lookbacks":"Oпционы Lookback","Reset_Call/Reset_Put":"Reset колл/Reset пут","Stays_Between/Goes_Outside":"Останется внутри/вне","Touch/No_Touch":"Касание/Нет касания","Christmas_Day":"Рождество","Closes_early_(at_18:00)":"Закрывается рано (в 18:00)","Closes_early_(at_21:00)":"Закрывается рано (в 21:00)","Fridays":"пятница","New_Year's_Day":"Новый год","today":"сегодня","today,_Fridays":"сегодня, по пятницам","There_was_a_problem_accessing_the_server_":"Возникла проблема с доступом к серверу.","There_was_a_problem_accessing_the_server_during_purchase_":"Возникла проблема с доступом к серверу во время процесса покупки."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/vi.js b/src/javascript/_autogenerated/vi.js index 7c03c9d493177..cf7f16b7270b6 100644 --- a/src/javascript/_autogenerated/vi.js +++ b/src/javascript/_autogenerated/vi.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['VI'] = {"Real":"Thực","Multipliers":"Cấp số nhân","Options":"Tùy chỉnh","Demo":"Thử nghiệm","Real_CFDs":"CFD thực","Real_Financial":"Tài Chính Thực","Demo_CFDs":"Demo CFD","Demo_Financial":"Tài chính demo","Synthetic":"Tổng hợp","Demo_Synthetic":"Tổng hợp Demo","Real_Synthetic":"Tổng hợp thực","CFDs":"Các thị trường CFD","Financial":"Tài chính","Financial_STP":"Tài chính STP","Demo_Financial_STP":"Demo Tài chính STP","Real_Financial_STP":"Tài chính STP thực","Multi-Collateral":"Đa thế chấp","Paxos_Standard":"Tiêu chuẩn Paxos","Thank_you,_we'll_get_back_to_you_within_24_hours":"Cảm ơn bạn, chúng tôi sẽ liên hệ lại với bạn trong vòng 24 giờ","Online":"Trực tuyến","Offline":"Ngoại tuyến","Connecting_to_server":"Đang kết nối với máy chủ","Use_a_few_words,_avoid_common_phrases":"Sử dụng một vài từ, tránh các cụm từ phổ biến","No_need_for_symbols,_digits,_or_uppercase_letters":"Không cần ký hiệu, chữ số hoặc chữ hoa","Add_another_word_or_two__Uncommon_words_are_better_":"Thêm một hoặc hai từ khác. Những từ không phổ biến sẽ tốt hơn.","Straight_rows_of_keys_are_easy_to_guess":"Các hàng phím thẳng rất dễ đoán","Short_keyboard_patterns_are_easy_to_guess":"Các nhóm ký tự ngắn liên tiếp rất dễ đoán","Use_a_longer_keyboard_pattern_with_more_turns":"Sử dụng nhiều ký tự khác nhau trên bàn phím và kéo dài chúng","Repeats_like_\"aaa\"_are_easy_to_guess":"Các lặp lại như \"aaa\" rất dễ đoán","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Các lặp lại như \"abcabcabc\" chỉ hơi khó đoán hơn \"abc\"","Avoid_repeated_words_and_characters":"Tránh lặp lại các từ và ký tự","Sequences_like_abc_or_6543_are_easy_to_guess":"Các chuỗi như abc hoặc 6543 rất dễ đoán","Avoid_sequences":"Tránh các trình tự","Recent_years_are_easy_to_guess":"Các mốc năm gần đây rất dễ đoán","Avoid_recent_years":"Tránh những năm gần đây","Avoid_years_that_are_associated_with_you":"Tránh những mốc năm gắn liền với bạn","Dates_are_often_easy_to_guess":"Mốc ngày rất dễ đoán","Avoid_dates_and_years_that_are_associated_with_you":"Tránh những mốc ngày tháng năm gắn liền với bạn","This_is_a_top-10_common_password":"Đây là một trong 10 mật khẩu phổ biến nhất","This_is_a_top-100_common_password":"Đây là một trong 100 mật khẩu phổ biến nhất","This_is_a_very_common_password":"Đây là một mật khẩu rất phổ biến","This_is_similar_to_a_commonly_used_password":"Mật khẩu này giống một mật khẩu thường được sử dụng","A_word_by_itself_is_easy_to_guess":"Một từ đơn lẻ rất dễ đoán","Names_and_surnames_by_themselves_are_easy_to_guess":"Tên và họ thường rất dễ đoán","Common_names_and_surnames_are_easy_to_guess":"Tên thường và họ rất dễ đoán","Capitalization_doesn't_help_very_much":"Viết hoa không giúp được gì nhiều","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Tất cả chữ hoa gần như dễ đoán như chữ thường","Reversed_words_aren't_much_harder_to_guess":"Các từ đảo ngược không khó đoán","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Các thay thế có thể đoán trước như '@' thay vì 'a' không giúp ích nhiều","This_password_is_on_the_blacklist":"Mật khẩu này nằm trong danh sách đen","Unknown_OS":"Hệ điều hành không rõ","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Bạn sẽ được chuyển hướng đến một trang web bên thứ ba mà không thuộc sở hữu của Binary.com.","Click_OK_to_proceed_":"Nhấp vào OK để tiến tục.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Hãy đảm bảo rằng bạn đã cài đặt ứng dụng Telegram trên thiết bị của mình.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] yêu cầu lưu trữ web của trình duyệt của bạn để được kích hoạt để hoạt động đúng. Xin vui lòng cho phép nó hoặc thoát ra khỏi chế độ duyệt web riêng tư.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Xin vui lòng [_1]đăng nhập[_2] hoặc [_3]đăng ký[_4] để xem trang này.","This_feature_is_available_to_demo_accounts_only_":"Tính năng này chỉ khả dụng với tài khoản demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Bạn đang sử dụng tài khoản demo. Vui lòng chuyển sang tài khoản thực hoặc tạo tài khoản để truy cập Thu ngân.","This_page_is_only_available_to_logged_out_clients_":"Trang này chỉ dành cho khách hàng đã đăng xuất.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Giao dịch quyền chọn nhị phân không khả dụng cho tài khoản Multipliers của bạn.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Giao dịch quyền chọn nhị phân không khả dụng qua tài khoản Multiplier của bạn.
Vui lòng quay trở lại tài khoản Quyền chọn của bạn.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Xin lỗi, giao dịch quyền chọn không khả dụng ở Vương Quốc Anh và Đảo Man","Binary_options_trading_is_not_available_in_your_country_":"Quyền chọn giao dịch nhị phân không khả dụng tại quốc gia của bạn.","This_page_is_not_available_in_your_country_of_residence_":"Trang này không khả dụng tại quốc gia của bạn.","Page_not_available,_you_did_not_deactivate_your_account_":"Trang không khả dụng, bạn chưa hủy kích hoạt tài khoản của mình.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Rất tiếc, dịch vụ này không khả dụng ở quốc gia của bạn. Nếu bạn muốn giao dịch số nhân, hãy thử DTrader trên Deriv.","Go_to_DTrader":"Đi tới DTrader","Sign_out":"Đăng xuất","[_1]_Account":"Tài khoản [_1]","Click_here_to_open_a_Real_Account":"Nhấp vào đây để mở một Tài Khoản Thực","Open_a_Real_Account":"Mở một Tài Khoản Thực","Click_here_to_open_a_Multipliers_Account":"Click vào đây để mở một tài khoản Multipliers","Click_here_to_open_an_Options_account":"Click vào đây để mở một tài khoản Quyền chọn","Open_a_Multipliers_Account":"Mở một tài khoản Multipliers","Create_Account":"Tạo Tài Khoản","Accounts_List":"Danh sách tài khoản","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Nạp tiền tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể nạp tiền khi quá trình bảo trì hoàn tất.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Rút tiền tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể rút tiền khi quá trình bảo trì hoàn tất.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân tiền điện tử của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập tới Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Thu ngân của bạn hiện đang bị khóa. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp để tìm hiểu cách mở khóa.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Vui lòng cài đặt [_1]ađơn vị tiền tệ tài khoản[_2] của bạn để cho phép gửi và rút tiền.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Tài khoản của bạn chưa được xác thực. Vui lòng gửi[_1]pgiấy tờ định danh và bằng chứng về địa chỉ[_2] để xác thực tài khoản của bạn và thực hiện yêu cầu rút tiền.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Tài khoản của bạn chưa được xác thực. Vui lòng gửi[_1]pgiấy tờ định danh và bằng chứng về địa chỉ[_2] để xác thực tài khoản của bạn và truy cập vào Thu ngân của bạn.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Các giấy tờ tùy thân bạn gửi đã hết hạn. Vui lòng xuất trình giấy tờ tùy thân hợp lệ để mở khóa Thu ngân.","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]Xác nhận danh tính[_2] của bạn đã hết hạn.","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]Xác nhận địa chỉ[_2] của bạn đã hết hạn.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]Xác nhận danh tính[_3] và [_2]Xác nhận địa chỉ[_3] của bạn chưa được phê duyệt.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]Xác nhận danh tính[_2] của bạn chưa được phê duyệt.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]Xác nhận địa chỉ của bạn[_2] chưa được phê duyệt.","Please_submit_your_[_1]proof_of_identity[_2]_":"Vui lòng nộp [_1]xác minh danh tính[_2] của bạn.","Please_submit_your_[_1]proof_of_address[_2]_":"Vui lòng nộp [_1]xác minh địa chỉ[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Bạn đã chọn loại trừ mình khỏi giao dịch trên trang web của chúng tôi cho đến khi [_1]. Nếu bạn không thể thực hiện giao dịch hoặc ký quỹ sau thời gian tự loại trừ của mình, vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Quyền truy cập của bạn vào Thu ngân tạm thời bị vô hiệu hóa do bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình. Vui lòng chuyển đến[_1]Stự loại trừ[_2] và đặt giới hạn doanh thu trong 30 ngày của bạn.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Rút tiền MT5 đã bị vô hiệu hoá trên tài khoản của bạn. Vui lòng kiểm tra email của bạn để biết chi tiết.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Thật không may, bạn chỉ có thể gửi tiền. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tuyến để cho phép rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]pchi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng chuyển đến cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể gửi tiền và rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]pChi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng chuyển đến cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]pChi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng đi tới cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để kích hoạt tiền gửi.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Bạn chưa cài đặt quốc gia cư trú của mình. Để truy cập vào Thu ngân, vui lòng cập nhật [_1]cquốc gia cư trú[_2] của bạn ở phần Chi tiết cá nhân và trong cài đặt tài khoản của bạn.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Thu ngân của bạn bị khóa. Vui lòng hoàn thành [_1]fđánh giá tài chính[_2] để mở khóa.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Bạn chưa cung cấp mã số thuế của mình. Thông tin này là cần thiết cho các yêu cầu pháp lý và quy định. Vui lòng chuyển đến [_1]Chi tiết cá nhân[_2] trong cài đặt tài khoản của bạn và bổ sung vào mã số thuế mới nhất của bạn.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Thật không may, bạn chỉ có thể rút tiền. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tuyến.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Việc rút tiền đã bị vô hiệu hóa trên tài khoản của bạn. Vui lòng đợi đến khi các tài liệu bạn gửi được xác nhận.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Xin [_1]vui lòng chấp nhận cập nhật các Điều Khoản và Điều Kiện[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Xin [_1]vui lòng chấp nhận cập nhật các Điều Khoản và Điều Kiện[_2] để nâng mức tiền gửi và giới hạn giao dịch.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Tài khoản của bạn tạm thời bị vô hiệu hóa. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp để kích hoạt lại tiền gửi và rút tiền.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Vui lòng hoàn thành Kiểm tra tính thích hợp để truy cập vào mục thu ngân của bạn.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Thu ngân của bạn bị khóa. Xem[_1]holàm cách chúng tôi bảo vệ tiền của bạn[_2] trước khi bạn tiếp tục.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Tài khoản của bạn cần được xác thực. Vui lòng gửi [_1]bằng chứng định danh[_2] của bạn để truy cập Thu ngân.","Account_Authenticated":"Xác thực tài khoản","Connection_error:_Please_check_your_internet_connection_":"Lỗi kết nối: xin vui lòng kiểm tra kết nối internet của bạn.","Network_status":"Tình Trạng Mạng","This_is_a_staging_server_-_For_testing_purposes_only":"Đây là một máy chủ dàn dựng - chỉ cho mục đích chỉ thử nghiệm","The_server_endpoint_is:_[_2]":"Máy chủ điểm kết thúc là: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Trình duyệt web ([_1]) của bạn đã hết hạn và có thể ảnh hưởng đến trải nghiệm giao dịch của bạn. Nếu tiếp tục bạn sẽ có thể gặp một vài rắc rối. [_2]Nâng cấp trình duyệt[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Bạn đã đạt đến giới hạn số lượng lệnh có thể mỗi giây. Xin vui lòng thử lại sau.","There_was_some_invalid_character_in_an_input_field_":"Có một vài ký tự không hợp lệ trong dữ liệu nhập vào.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"được cấp phép bởi Ủy ban cá cược Vương quốc Anh (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"được cấp phép bởi Cơ quan quản lý cá cược Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"Được cấp phép bới Cơ quan Dịch vụ Tài chính Malta (MFSA),","Please_select":"Vui lòng chọn","Please_accept_the_terms_and_conditions_":"Xin vui lòng chấp nhận các điều khoản và điều kiện.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Xin vui lòng xác nhận rằng bạn không là một người tiếp xúc với chính trị.","Today":"Hôm nay","Select_date":"Chọn ngày","Barrier":"Giới hạn","Entry_Spot":"Điểm khởi đầu","Exit_Spot":"Điểm chốt","Charting_for_this_underlying_is_delayed":"Biểu đồ cho tài sản cơ sở này bị hoãn","Payout_Range":"Phạm vi thanh toán","Purchase_Time":"Thời Gian Mua","Reset_Barrier":"Đặt lại Giới Hạn","Reset_Time":"Thời gian đặt lại","Selected_Tick":"Tick đã chọn","Exit_Time":"Thời gian thoát","Start_Time":"Thời gian bắt đầu","Step_[_1]:_[_2]_([_1]_of_[_3])":"Bước [_1]: [_2] ([_1] của [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Mã xác minh sai rồi. Xin vui lòng sử dụng liên kết được gửi tới email của bạn.","Indicates_required_field":"Biểu thị trường bắt buộc","Please_select_the_checkbox_":"Vui lòng chọn hộp đánh dấu.","This_field_is_required_":"Trường này là bắt buộc.","Should_be_a_valid_number_":"Nên là một số hợp lệ.","Up_to_[_1]_decimal_places_are_allowed_":"Lên đến [_1] chữ số thập phân sau dấu phẩy được cho phép.","Should_be_[_1]":"Nên là [_1]","Should_be_between_[_1]_and_[_2]":"Nên ở giữa [_1] và [_2]","Should_be_more_than_[_1]":"Nên là nhiều hơn [_1]","Should_be_less_than_[_1]":"Nên là ít hơn [_1]","Insufficient_balance_":"Số dư tài khoản không đủ.","Invalid_email_address_":"Địa chỉ email không hợp lệ.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Mật khẩu phải có chữ cái tiếng Anh viết thường và viết hoa kèm theo số.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Chỉ chữ cái, số, khoảng trắng, dấu nối, dấu chấm, và dấu nháy đơn được cho phép.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Chỉ ký tự, số lượng, không gian, và các ký tự đặc biệt được phép: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Chỉ chữ cái, khoảng trắng, dấu nối, dấu chấm hết và dấu nháy đơn được cho phép.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Chỉ các chữ cái, số, dấu cách và dấu nối là được phép.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Vui lòng nhập số điện thoại hợp lệ (ví dụ: +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Hai mật khẩu bạn vừa nhập không khớp với nhau.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] và [_2] không thể giống nhau.","Minimum_of_[_1]_characters_required_":"Tối thiểu [_1] các kí tự cần thiết.","You_should_enter_[_1]_characters_":"Bạn nên nhập vào [_1] ký tự.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Nên bắt đầu bằng chữ hoặc số, và có thể chứa các gạch nối và gạch ngang dưới.","Invalid_verification_code_":"Mã xác minh không hợp lệ.","Your_password_cannot_be_the_same_as_your_email_address_":"Mật khẩu của bạn không thể trùng với tên địa chỉ email.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Giao dịch thực hiện bởi [_1] (ID ứng dụng: [_2])","Guide":"Hướng dẫn","Next":"Tiếp theo","Finish":"Kết thúc","Step":"Bước","Select_your_market_and_underlying_asset":"Chọn thị trường và các tài sản cơ sở của bạn","Select_your_trade_type":"Chọn loại giao dịch của bạn","Adjust_trade_parameters":"Điều giới hạn giao dịch","Predict_the_directionand_purchase":"Dự đoán khuynh hướng
và thu mua","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Thời khoảng phiên giao dịch của bạn sẽ kết thúc trong [_1] giây nữa.","January":"Tháng Một","February":"Tháng Hai","March":"Tháng Ba","April":"Tháng 4","May":"Tháng Năm","June":"Tháng Sáu","July":"Tháng Bảy","August":"Tháng 8","September":"Tháng Chín","October":"Tháng Mười","November":"Tháng Mười Một","December":"Tháng 12","Jan":"Tháng Một","Feb":"Tháng Hai","Mar":"Tháng Ba","Apr":"Tháng 4","Jun":"Tháng Sáu","Jul":"Tháng Bảy","Aug":"Tháng 8","Sep":"Tháng Chín","Oct":"Tháng Mười","Nov":"Tháng Mười Một","Dec":"Tháng 12","Sunday":"Chủ nhật","Monday":"Thứ Hai","Tuesday":"Thứ Ba","Wednesday":"Thứ Tư","Thursday":"Thứ Năm","Friday":"Thứ Sáu","Saturday":"Thứ Bảy","Su":"Chủ Nhật","Mo":"Thứ 2","Tu":"Thứ 3","We":"Thứ 4","Th":"Thứ 5","Fr":"Thứ 6","Sa":"Thứ 7","Previous":"Trước","Hour":"Giờ","Minute":"Phút","Verification_required":"Cần được xác minh ","Verify_identity":"Xác định danh tính","From_account:_":"Từ tài khoản: ","To_account:_":"Đến tài khoản: ","Not_announced_for_this_currency_":"Không công bố cho loại tiền này.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Đặt lại vốn tài khoản demo của bạn thành [_1] bất kỳ lúc nào.","[_1]Manage_your_accounts[_2]":"[_1]Quản lý tài khoản của bạn[_2]","time":"đầu tiên","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"thời gian hoặc tạo một tài khoản MT5 thực (hoặc một tài khoản Deriv X thực tại deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Bạn không thể thay đổi đơn vị tiền tệ được nữa vì bạn đã tạo tài khoản MT5 thực (hoặc tài khoản Deriv X thực tại deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Bạn không còn có thể thay đổi đơn vị tiền tệ vì lần gửi tiền đầu tiên đã được thực hiện.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Tài khoản của bạn có đơn vị tiền tệ hiện tại đặt là [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Tài khoản fiat của bạn có đơn vị tiền tệ là [_1].","This_is_your_[_1]_account_":"Đây là tài khoản [_1] của bạn.","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Bạn có thể [_1]đặt loại tiền tệ mới[_2] trước khi bạn gửi tiền cho lần [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Không muốn giao dịch trong [_1]? Bạn có thể mở một tài khoản tiền ảo khác.","Switch_account":"Chuyển đổi tài khoản","Switch_account?":"Chuyển đổi tài khoản?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Để gửi tiền, vui lòng chuyển sang tài khoản [_1] của bạn.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Để rút tiền, vui lòng chuyển sang tài khoản [_1] của bạn.","Switch_to_crypto_account?":"Chuyển đổi sang tài khoản tiền kỹ thuật số?","To_deposit_cryptocurrency,_switch_your_account_":"Để gửi tiền kỹ thuật số, hãy chuyển đổi tài khoản của bạn.","To_withdraw_cryptocurrency,_switch_your_account_":"Để rút tiền điện tử, hãy chuyển đổi tài khoản của bạn.","Cancel":"Hủy bỏ","Withdraw":"Rút tiền","Deposit":"Gửi tiền","Town/City":"Thành phố/Tỉnh thành","First_line_of_home_address":"Dòng đầu tiên của địa chỉ nhà","Postal_Code/ZIP":"Mã bưu chính/ Mã ZIP","State/Province":"Quốc gia/Tỉnh","Email_address":"Địa chỉ Email","Telephone":"Điện thoại","Country_of_Residence":"Quốc gia cư trú","details":"chi tiết","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập tới Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Your_cashier_is_locked_":"Thu ngân của bạn bị khóa.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Vui lòng chú ý rằng loại tiền tệ được chọn chỉ được sử dụng cho một số tài khoản nhất định.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Bạn đã đạt đến giới hạn rút tiền. Vui lòng gửi chứng minh danh tính và địa chỉ để gỡ giới hạn và việc rút tiền có thể tiếp tục được thực hiện.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Dịch vụ Đại Lý Thanh Toán không có sẵn trong quốc gia của bạn hoặc trong đơn vị tiền tệ ưa thích.","Select_payment_agent":"Chọn đại lý thanh toán","Amount_in":"Số tiền theo","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Chỉ được phép sử dụng các chữ cái, số, khoảng trắng, dấu gạch nối, dấu chấm, dấu phẩy, và dấu gạch ngang.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Yêu cầu rút tiền [_1] [_2] từ tài khoản [_3] của bạn và chuyển tới tài khoản Đại lý Thanh toán [_4] đã được xử lý thành công.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Chuỗi xác nhận của bạn đã hết hạn. Xin vui lòng nhấp chuột vào [_1]đây[_2] để khởi động lại quá trình xác minh.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Rất tiếc, chức năng rút cho loại tiền này hiện đang bị vô hiệu hóa.","Please_[_1]deposit[_2]_to_your_account_":"Xin vui lòng [_1]gửi tiền[_2] vào tài khoản của bạn.","Sorry,_account_signup_is_not_available_in_your_country_":"Rất tiếc, không thể thực hiện đăng ký tài khoản ở quốc gia của bạn.","Asset":"Tài sản","Opens":"Mở","Closes":"Kết thúc","Settles":"Quyết toán","Upcoming_Events":"Sự kiện sắp diễn ra","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Thêm /-để xác định một độ lệch giới hạn. Ví dụ, +0.005 có nghĩa là một giới hạn mà cao hơn 0,005 so với điểm khởi đầu.","Digit":"Chữ số","Percentage":"Tỷ lệ phần trăm","Waiting_for_entry_tick_":"Vui lòng đợi dấu tick gia nhập.","High_Barrier":"Rào cản Cao","Low_Barrier":"Giới Hạn Dưới","Waiting_for_exit_tick_":"Vui lòng đợi dấu tick thoát.","Ticks_history_returned_an_empty_array_":"Lịch sử Ticks trả về một mảng trống.","Chart_is_not_available_for_this_underlying_":"Biểu đồ không phải là có sẵn cho cơ sở này.","Purchase":"Mua","Net_profit":"Lợi nhuận ròng","Return":"Doanh thu","Time_is_in_the_wrong_format_":"Sai định dạng thời gian.","Rise/Fall":"Tăng/Giảm","Higher/Lower":"Cao Hơn/Thấp Hơn","Matches/Differs":"Khớp/Khác nhau","Even/Odd":"Hòa vốn/ Số dư","Over/Under":"Trên/Dưới","High-Close":"Cao-Đóng","Close-Low":"Đóng-Thấp","High-Low":"Cao-Thấp","Reset_Call":"Đặt lại Mua","Reset_Put":"Đặt lại Bán","Up/Down":"Lên/Xuống","Only_Ups/Only_Downs":"Chỉ Tăng/Chỉ Giảm","In/Out":"Trong/Ngoài","Select_Trade_Type":"Chọn loại hình giao dịch","Spot":"Giao ngay","Spot_Time_(GMT)":"Thời điểm làm giá (GMT)","seconds":"giây","minutes":"phút","hours":"giờ","days":"ngày","ticks":"tick","second":"giây","minute":"phút","hour":"giờ","day":"ngày","Duration":"Khoảng thời gian","End_Time":"Thời Gian Kết Thúc","Purchase_request_sent":"Yêu cầu mua hàng được gửi","High":"Cao","Close":"Đóng","Low":"Thấp","Select_Asset":"Lựa chọn tài sản","Search___":"Tìm kiếm...","Maximum_multiplier_of_1000_":"Hệ số tối đa 1000.","Stake":"Vốn đầu tư","Payout":"Khoảng được trả","Multiplier":"Số nhân","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Rất tiếc, tài khoản của bạn không có quyền mua thêm hợp đồng.","Trading_is_unavailable_at_this_time_":"Giao dịch không khả dụng tại thời điểm này.","Please_reload_the_page":"Xin vui lòng tải lại trang","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Đơn xét duyệt để được thành một khách hàng chuyên nghiệp của bạn đang được xử lý.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Yêu cầu trở thành khách hàng chuyên nghiệp của bạn [_1]nkhông được chấp thuận[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Xin vui lòng nộp đơn xin lại sau khi các tiêu chí yêu cầu đã đầy đủ.","More_information_can_be_found_in_an_email_sent_to_you_":"Thông tin thêm có thể được tìm thấy trong email gửi đến bạn.","I_want_to_reapply":"Tôi muốn nộp đơn xin lại","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Trong khối EU, các lựa chọn nhị phân chỉ có sẵn cho các nhà đầu tư chuyên nghiệp.","Apply_now_as_a_professional_investor":"Đăng ký ngay để trở thành nhà đầu tư chuyên nghiệp","Try_our_[_1]Synthetic_Indices[_2]_":"Thử [_1]Chỉ Số Tổng Hợp[_2] của chúng tôi.","Try_our_other_markets_":"Thử các thị trường khác.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Vui lòng hoàn thành [_1]Đơn tạo tài khoản thật[_2] để xác nhận độ tuổi được yêu cầu bởi [_3]Ủy ban quản lý cờ bạc vương quốc Anh[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Truy cập tài khoản tạm thời bị giới hạn. Vui lòng kiểm tra hòm thư của bạn để biết thêm chi tiết.","Contract_Confirmation":"Xác nhận Hợp đồng","Your_transaction_reference_is":"Tham chiếu giao dịch của bạn là","Total_Cost":"Tổng Chi Phí","Potential_Payout":"Khoảng Được Trả Tiềm Năng","Potential_Profit":"Lợi Nhuận Tiềm Năng","View":"Xem","This_contract_won":"Hợp đồng này đã thắng","This_contract_lost":"Hợp đồng này đã thua lỗ","The_reset_time_is_[_1]":"Thời gian thiết lập lại là [_1]","Now":"Hiện tại","Average":"Trung bình","Buy_price":"Giá mua","Final_price":"Giá cuối cùng","Loss":"Thua lỗ","Profit":"Lợi nhuận","Account_balance:":"Số Dư Tài Khoản:","Reverse_Side":"Mặt sau","Front_Side":"Mặt trước","Pending":"Đang chờ xử lý","Submitting":"Đang gửi","Submitted":"Đã gửi","Failed":"Thất bại","Compressing_Image":"Nén hình ảnh","Checking":"Đang kiểm tra","Checked":"Đã kiểm tra","Unable_to_read_file_[_1]":"Không thể đọc tập tin [_1]","Passport":"Hộ chiếu","Identity_card":"Thẻ nhận dạng","Driving_licence":"Giấy phép lái xe","Invalid_document_format_":"Định dạng tài liệu không hợp lệ.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Kích thước tập tin ([_1]) vượt quá giới hạn cho phép. Kích thước tập tin tối đa cho phép: [_2]","ID_number_is_required_for_[_1]_":"Số ID là cần thiết cho [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Chỉ chữ cái, số, space, gạch dưới và dấu nối được phép dành cho mã số ID ([_1]).","Expiry_date_is_required_for_[_1]_":"Hạn sử dụng cần thiết cho [_1].","Place_of_birth":"Nơi sinh","Please_select_the_country_of_document_issuance":"Vui lòng chọn quốc gia đã cấp giấy tờ văn bản","Choose_the_document_type":"Chọn loại giấy tờ","Please_enter_the_correct_format__Example:":"Vui lòng nhập đúng định dạng. Ví dụ:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra tài khoản email Google của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra tài khoản email Facebook của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra email tài khoản được liên kết với ID Apple của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Vui lòng nhấp vào liên kết trong email của bạn để đổi mật khẩu MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Vui lòng nhấp vào liên kết trong email của bạn để đổi mật khẩu Binary.","We’ve_sent_you_an_email":"Chúng tôi đã gửi cho bạn một email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Bạn đang sử dụng tài khoản [_1] để đăng nhập vào tài khoản Binary.com của mình. Để thay đổi phương thức đăng nhập của bạn thành sử dụng tên người dùng và mật khẩu, hãy nhấp vào nút [_2]Unlink[_3].","Linked_with_[_1]":"Liên kết với [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Bạn sẽ cần phải đặt một mật khẩu để hoàn tất quy trình.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Bạn có chắc muốn bỏ liên kết từ [_1]?","Unlink":"Bỏ liên kết","Country_not_found":"Không tìm thấy tên quốc gia","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Tài liệu từ quốc gia này hiện tại chưa được hỗ trợ — thử loại tài liệu khác","Submit_document":"Nộp tài liệu","Select_country":"Chọn quốc gia","e_g__United_States":"Ví dụ. Hợp chủng quốc Hoa kì","Search_for_country":"Tìm quốc gia của bạn","Select_issuing_country":"Chọn quốc gia phát hành","Submit_verification":"Nộp xác minh","Tips":"Mẹo","Documents_uploaded":"Tài liệu đã được tải lên","Document_uploaded":"Tài liệu đã được tải lên","Selfie_uploaded":"Ảnh tự chụp đã được tải lên","We're_now_ready_to_verify_your_identity":"Chúng tôi đã sẵn sàng xác minh danh tính cho bạn","Great,_that's_everything_we_need":"Rất tốt, đó là tất cả những gì chúng tôi cần","The_link_only_works_on_mobile_devices":"Đường dẫn chỉ hoạt động trên các thiết bị điện thoại di động","Something's_gone_wrong":"Có vấn đề xảy ra","You'll_need_to_restart_your_verification_on_your_computer":"Bạn sẽ phải làm mới quá trình xác minh trên máy tính của bạn","Get_secure_link":"Nhận đường dẫn an toàn","Steps_required_to_continue_verification_on_your_mobile":"Các bước cần thiết để tiếp tục xác minh trên điện thoại di động của bạn","Check_back_here_to_finish_the_submission":"Kiểm tra lại tại đây để hoàn tất quá trình gửi","Open_the_link_and_complete_the_tasks":"Mở liên kết và hoàn thành nhiệm vụ","Send_a_secure_link_to_your_phone":"Gửi đường dẫn an toàn tới điện thoại","Here's_how_to_do_it:":"Sau đây là cách thực hiện:","Continue_on_your_phone":"Tiếp tục trên điện thoại","Your_computer_may_take_a_few_seconds_to_update":"Máy tính của bạn có thể mất vài giây để cập nhật","You_can_now_return_to_your_computer_to_continue":"Bây giờ bạn có thể quay lại máy tính của mình để tiếp tục","Uploads_successful":"Tải lên thành công","Make_sure_everything_is_clear":"Đảm bảo mọi thứ rõ ràng","Blurry_photo_detected":"Phát hiện ảnh bị mờ","Make_sure_full_document_is_visible":"Đảm bảo hiển thị toàn bộ tài liệu","Cut-off_image_detected":"Phát hiện hình ảnh đã bị chỉnh sửa","Move_away_from_direct_light":"Tránh khỏi ánh sáng trực tiếp","Glare_detected":"Đã phát hiện lóa","Make_sure_all_of_the_document_is_in_the_photo":"Hãy đảm bảo tất cả các tài liệu đã có ở trong ảnh","No_document_detected":"Không phát hiện tài liệu nào","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên thẻ của bạn rõ ràng, không bị mờ hoặc lóa","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Sẽ mất nhiều thời gian để xác minh nếu chúng tôi không đọc được tài liệu","To_smoothly_verify_you,_we_need_a_better_photo":"Để việc xác minh dễ dàng, chúng tôi cần một bức ảnh có chất lượng tốt hơn","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên giấy phép của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên hộ chiếu của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên giấy phép của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết rõ ràng, không bị mờ hoặc lóa","Redo":"Hoàn tác","Confirm":"Xác nhận","Upload_anyway":"Vẫn tải lên","Enlarge_image":"Phóng to hình ảnh","Photo_of_your_document":"Ảnh tài liệu của bạn","Check_your_image":"Hãy kiểm tra ảnh của bạn","Front_and_back":"Trước và sau","Driver's_license":"Giấy phép lái xe","Face_photo_page":"Trang ảnh khuôn mặt","Residence_permit":"Giấy phép cư trú","Sorry,_no_mobile_phone_bills":"Rất tiếc, không có hóa đơn điện thoại di động","Documents_you_can_use_to_verify_your_identity":"Các tài liệu bạn có thể sử dụng để xác minh danh tính","It_must_be_an_official_photo_ID":"Cần phải có một ảnh ID chính thức","These_are_the_documents_most_likely_to_show_your_current_home_address":"Đây là những tài liệu có nhiều khả năng hiển thị địa chỉ hiện tại bạn đang sống","Choose_document":"Chọn tài liệu","Select_a_%{country}_document":"Chọn một tài liệu %{country}","or_upload_photo_–_no_scans_or_photocopies":"hoặc tải ảnh lên - không quét hoặc sao chụp","Continue_on_phone":"Tiếp tục trên điện thoại","Take_a_photo_with_your_phone":"Chụp ảnh bằng điện thoại của bạn","Submit_identity_card_(back)":"Nộp chứng minh thư (mặt sau)","Submit_identity_card_(front)":"Nộp chứng minh thư (mặt trước)","Submit_license_(back)":"Nộp giấy phép (mặt sau)","Submit_license_(front)":"Nộp giấy phép (mặt trước)","Submit_passport_photo_page":"Nộp ảnh hộ chiếu","Submit_residence_permit_(back)":"Nộp giấy phép cư trú (mặt sau)","Submit_residence_permit_(front)":"Nộp giấy phép cư trú (mặt trước)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Bắt đầu lại quá trình trên phiên bản trình duyệt Google Chrome mới nhất","Restart_the_process_on_the_latest_version_of_Safari":"Bắt đầu lại quá trình trên phiên bản trình duyệt Safari mới nhất","Unsupported_browser":"Trình duyệt không được hỗ trợ","Close_identity_verification_screen":"Đóng màn hình xác minh danh tính","Dismiss_alert":"Tắt cảnh bảo","back":"trở lại","close":"đóng","Restart_process_on_a_different_device":"Bắt đầu lại quá trình trên thiết bị khác","Camera_not_detected":"Không tìm thấy camera","Must_be_under_10MB_":"Phải dưới 10MB.","File_size_exceeded_":"Tệp quá giới hạn.","Try_using_another_file_type_":"Thử dùng loại file khác.","File_not_uploaded_":"Tập tin chưa được tải lên.","An_error_occurred_while_loading_the_component":"Có lỗi xảy ra khi tải thành phần","Only_your_face_can_be_in_the_selfie":"Chỉ được phép có mặt của một mình bạn trên ảnh tự chụp","Multiple_faces_found":"Phát hiện nhiều khuôn mặt","Your_face_is_needed_in_the_selfie":"Mặt của bạn phải có trên ảnh tự chụp","No_face_found":"Không nhận diện được khuôn mặt","Please_try_again":"Vui lòng thử lại","Connection_lost":"Mất kết nối","Copy_the_link_to_your_phone":"Sao chép đường dẫn vào điện thoại của bạn","Too_many_failed_attempts":"Có quá nhiều lần thử thất bại","Try_using_a_JPG_or_PNG_file":"Thử dùng tệp JPG hoặc PNG","File_type_not_supported":"Loại file không được hỗ trợ","Loading___":"Đang tải...","Loading":"Đang tải","Check_that_your_number_is_correct":"Kiểm tra xem số của bạn có đúng không","Copied":"Đã sao chép","Copy":"Sao chép","Send_link":"Gửi đường dẫn","How_to_scan_a_QR_code":"Cách quét mã QR","Point_your_phone’s_camera_at_the_QR_code":"Chĩa máy quay trên điện thoại của bạn vào mã QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Nếu không hoạt động, tải một mã quét QR từ Google Play hoặc the App Store","or":"hoặc","Scan_QR_code":"Quét mã QR","Get_link_via_SMS":"Nhận đường dẫn qua SMS","Copy_link":"Sao chép đường dẫn","Sending":"Đang gửi","Enter_mobile_number":"Nhập số điện thoại","Enter_your_mobile_number:":"Nhập số điện thoại của bạn:","Scan_the_QR_code_with_your_phone":"Quét mã QR với điện thoại của bạn","Send_this_one-time_link_to_your_phone":"Gửi đường dẫn giới hạn đến điện thoại của bạn","Open_the_link_on_your_mobile":"Mở một đường dẫn trên điện thoại của bạn","Get_your_secure_link":"Nhận đường dẫn bảo mật của bạn","Copy_the_link_to_your_mobile_browser":"Sao chép đường dẫn vào trình duyệt trên điện thoại của bạn","Continue":"Tiếp tục","Make_sure§":"Hãy đảm bảo§","2__Your_desktop_window_stays_open":"2. Desktop của bạn vẫn đang mở","1__This_link_was_sent_by_you":"1. Đường dẫn được gửi bởi bạn","Continue_with_the_verification":"Tiếp tục thực hiện xác minh","Linked_to_your_computer":"Kết nối với máy tính của bạn","Take_a_photo_of_the_back_of_your_card":"Chụp một bức ảnh mặt sau thẻ của bạn","Take_a_photo_of_the_front_of_your_card":"Chụp một bức ảnh mặt trước thẻ của bạn","Take_a_photo_of_the_back_of_your_license":"Chụp một bức ảnh mặt sau giấy phép của bạn","Take_a_photo_of_the_front_of_your_license":"Chụp một bức ảnh mặt trước giấy phép của bạn","Take_a_photo_of_your_passport_photo_page":"Chụp trang hộ chiếu của bạn","Take_a_selfie_showing_your_face":"Chụp một bức ảnh có mặt của bạn","Take_a_photo_using_the_basic_camera_mode_instead":"Hãy chụp ảnh bằng chế độ máy ảnh cơ bản ","Take_a_photo":"Chụp một bức ảnh","Passport_photo_page":"Ảnh trang hộ chiếu","Thank_you":"Xin cảm ơn","Verification_complete":"Hoàn thành xác minh","Refresh":"Làm mới","Recovery":"Phục hồi","Follow_these_steps_to_recover_camera_access:":"Làm theo các bước sau để khôi phục quyền truy cập máy ảnh:","Refresh_this_page_to_restart_the_identity_verification_process":"Làm mới trang này để bắt đầu lại quá trình xác minh danh tính","Grant_access_to_your_camera_from_your_browser_settings":"Cấp quyền truy cập vào máy ảnh của bạn từ cài đặt trình duyệt","Recover_camera_access_to_continue_face_verification":"Khôi phục quyền truy cập máy ảnh để tiếp tục xác minh khuôn mặt","Camera_access_is_denied":"Truy cập vào camera đã bị từ chối","We_cannot_verify_you_without_using_your_camera":"Chúng tôi không thể xác minh cho bạn nếu không sử dụng camera","Enable_camera":"Bật camera","When_prompted,_you_must_enable_camera_access_to_continue":"Khi được nhắc, bạn phải bật quyền truy cập máy ảnh để tiếp tục","Allow_camera_access":"Cho phép truy cập vào máy quay","Provide_the_whole_document_page_for_best_results":"Cung cấp toàn bộ trang tài liệu để có kết quả tốt nhất","Upload_back_of_card_from_your_computer":"Tải mặt sau thẻ của bạn từ máy tính","Upload_front_of_card_from_your_computer":"Tải mặt trước thẻ của bạn từ máy tính","Upload_back_of_license_from_your_computer":"Tải lên mặt sau của giấy phép từ máy tính của bạn","Upload_front_of_license_from_your_computer":"Tải lên mặt trước của giấy phép từ máy tính của bạn","Upload_passport_photo_page_from_your_computer":"Tải ảnh hộ chiếu của bạn từ máy tính","Upload_a_selfie_from_your_computer":"Tải một selfie từ máy tính của bạn","Take_photo":"Chụp ảnh","Upload":"Tải lên","Selfie":"Ảnh tự chụp","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Kiểm tra xem nó đã được kết nối và hoạt động chưa. Bạn cũng có thể tiếp tục xác minh trên điện thoại của mình","Make_sure_your_device_has_a_working_camera":"Đảm bảo thiết bị của bạn có camera đang hoạt động","Camera_not_working?":"Camera không hoạt động?","It_may_be_disconnected__Try_using_your_phone_instead_":"Máy ảnh có thể bị ngắt kết nối. Thử dùng điện thoại thay thế.","Make_sure_your_device's_camera_works":"Đảm bảo máy quay trên điện thoại của bạn vẫn hoạt động","Camera_not_working":"Camera không hoạt động","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Hãy nhớ nhấn dừng khi bạn đã xong. Làm lại đoạn phim hành động","Looks_like_you_took_too_long":"Dường như bạn đã mất quá nhiều thời gian","View_from_camera":"Xem qua camera","Take_a_selfie":"Chụp selfie","Photo_of_your_face":"Ảnh khuôn mặt của bạn","Make_sure_your_selfie_clearly_shows_your_face":"Đảm bảo ảnh tự chụp của bạn hiển thị rõ ràng khuôn mặt của bạn","Check_selfie":"Kiểm tra ảnh tự chụp","Tips_to_take_a_good_selfie":"Các mẹo để có một bức ảnh tự chụp đẹp","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Hướng về phía trước và đảm bảo rằng mắt bạn hiện rõ","Remove_your_glasses,_if_necessary":"Hãy bỏ kính, nếu cần thiết","We'll_compare_it_with_your_document":"Chúng tôi sẽ so sánh chúng với các tài liệu của bạn","Your_link_will_expire_in_one_hour":"Đường dẫn của bạn sẽ hết hạn sau một giờ","Keep_this_window_open_while_using_your_mobile":"Để mở cửa sổ trình duyệt này khi bạn đang sử dụng điện thoại","Resend_link":"Gửi lại đường dẫn","We've_sent_a_secure_link_to_%{number}":"Chúng tôi đã gửi một link an toàn tới %{number}","It_may_take_a_few_minutes_to_arrive":"Sẽ mất vài phút để chuyển dữ liệu","Check_your_mobile":"Hãy kiểm tra điện thoại của bạn","Your_mobile_link_will_expire_in_one_hour":"Đường dẫn trên điện thoại của bạn sẽ hết hạn sau một giờ","Don't_refresh_this_page":"Đừng làm mới trang này","Once_you've_finished_we'll_take_you_to_the_next_step":"Một khi bạn đã hoàn thành chúng tôi sẽ đưa bạn đến bước tiếp theo","Connected_to_your_mobile":"Kết nối tới di động của bạn","Upload_photo":"Tải lên ảnh","Example_of_a_blurry_document":"Ví dụ về giấy tờ bị mờ","All_details_must_be_clear_—_nothing_blurry":"Mọi chi tiết phải rõ ràng — không bị mờ","Example_of_a_cut-off_document":"Ví dụ về tài liệu bị khuyết","Show_all_details_—_including_the_bottom_2_lines":"Hiển thị tất cả chi tiết - bao gồm 2 dòng cuối","Example_of_a_document_with_glare":"Ví dụ của tài liệu bị lóa","Move_away_from_direct_light_—_no_glare":"Tránh khỏi ánh sáng trực tiếp — không bị lóa","Document_example":"Ví dụ về tài liệu","The_photo_should_clearly_show_your_document":"Ảnh phải hiển thị rõ ràng tài liệu của bạn","Scans_and_photocopies_are_not_accepted":"Các bản scan và sao chép không được chấp nhận","Upload_passport_photo_page":"Đăng ảnh trang hộ chiếu","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Để mở một tài khoản ngân hàng, chúng tôi sẽ cần phải xác minh danh tính của bạn.","It_will_only_take_a_couple_of_minutes_":"Việc này sẽ chỉ mất vài phút.","Verify_Identity":"Xác minh danh tính","Open_your_new_bank_account":"Mở mới tài khoản ngân hàng của bạn","Please_enter_a_valid_Login_ID_":"Vui lòng nhập một ID đăng kí hợp lệ.","Amount":"Số tiền","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Yêu cầu chuyển [_1] [_2] từ [_3] sang [_4] đã được xử lý thành công.","Resale_not_offered":"Không được bán lại","You've_made_no_transactions_of_this_type_up_to_this_date_":"Bạn đã không thực hiện giao dịch nào thuộc loại này cho đến ngày hôm nay.","Date":"Ngày","Ref_":"Tham khảo.","Contract":"Hợp đồng","Purchase_Price":"Giá Mua","Sale_Date":"Ngày Bán","Sale_Price":"Giá Bán","Profit/Loss":"Lợi Nhuận/Thua Lỗ","Details":"Chi tiết","Total_Profit/Loss":"Tổng Lợi Nhuận/Thua Lỗ","Action_required!":"Hành động cần làm!","Sorry,_an_error_occurred_while_processing_your_request_":"Rất tiếc, đã xảy ra lỗi khi đang xử lý yêu cầu của bạn.","position(s)":"Đơn hàng","withdrawal(s)":"rút tiền","We_couldn’t_read_that!":"Chúng tôi không thể đọc được thông tin trên!","Remaining_characters:_[_1]_":"Số ký tự còn lại: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Vui lòng không nhập nhiều hơn [_1] ký tự cho cả hai trường.","Only_[_1]_are_allowed_":"Chỉ có [_1] được cho phép.","letters":"ký tự","numbers":"số","space":"khoảng trắng","Please_select_at_least_one_scope":"Vui lòng chọn ít nhất một phạm vi","New_token_created_":"Token mới đã được tạo.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Đã đạt đến độ dài tối đa của mã token ([_1]).","Name":"Tên","Token":"Mã Token","Scopes":"Phạm vi","Last_Used":"Lần Sử Dụng Gần Đây","Action":"Hành động","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Bạn có chắc chắn muốn xóa vĩnh viễn token","Delete":"Xóa","Never_Used":"Chưa bao giờ sử dụng","You_have_not_granted_access_to_any_applications_":"Bạn không được phép truy cập bất kỳ một ứng dụng nào.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Bạn có chắc chắn muốn thu hồi quyền truy cập vào ứng dụng vĩnh viễn","Revoke_access":"Hủy bỏ truy cập","Admin":"Quản trị viên","Payments":"Thanh toán","Read":"Đọc","Trade":"Giao dịch","Trading_Information":"Thông tin giao dịch","Never":"Chưa bao giờ","Permissions":"Quyền hạn","Last_Login":"Lần đăng nhập cuối","You_did_not_change_anything_":"Bạn chưa thay đổi bất cứ nội dung nào.","Your_changes_have_been_updated_successfully_":"Các thay đổi của bạn đã được cập nhật thành công.","Successful":"Thành công","Date_and_Time":"Ngày và Thời gian","Browser":"Duyệt tìm","IP_Address":"Địa chỉ IP","Status":"Tình trạng","Your_account_has_no_Login/Logout_activity_":"Không có hoạt động Đăng nhập/Đăng xuất nào trên tài khoản của bạn.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Tài khoản của bạn được xác thực đầy đủ và mức giới hạn rút tiền của bạn đã được nâng lên.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Giới hạn rút tiền trong [_1] ngày của bạn hiện là [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Bạn đã rút [_1][_2] trong tổng số [_3] ngày qua.","Your_withdrawal_limit_is_[_1][_2]_":"Giới hạn rút tiền của bạn là [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Bạn đã rút [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Do đó, số dư có thể rút của bạn chỉ tối đa [_1][_2], tùy thuộc vào số tiền trong tài khoản của bạn.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Xin vui lòng xác nhận rằng tất cả các thông tin trên là đúng sự thật và đầy đủ.","Your_settings_have_been_updated_successfully_":"Thiết lập của bạn đã được cập nhật thành công.","Sorry,_an_error_occurred_while_processing_your_account_":"Rất tiêt, Lỗi xảy ra trong khi đang xử lý tài khoản của bạn.","Please_select_a_country":"Xin vui lòng chọn quốc gia","Timed_out_until":"Tạm ngưng cho đến khi","Excluded_from_the_website_until":"Loại trừ từ các trang web cho đến khi","Session_duration_limit_cannot_be_more_than_6_weeks_":"Giới hạn thời hạn phiên không thể nhiều hơn 6 tuần.","Time_out_must_be_after_today_":"Thời hạn kết thúc phải sau hôm nay.","Time_out_cannot_be_more_than_6_weeks_":"Thời hạn không thể nhiều hơn 6 tuần.","Time_out_cannot_be_in_the_past_":"Thời hạn kết thúc không thể tồn tại trong quá khứ.","Please_select_a_valid_time_":"Vui lòng chọn một thời gian hợp lệ.","Exclude_time_cannot_be_less_than_6_months_":"Thời gian loại trừ không thể ít hơn 6 tháng.","Exclude_time_cannot_be_for_more_than_5_years_":"Thời gian loại trừ không thể nhiều hơn 5 năm.","Confirm_changes":"Xác nhận thay đổi","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Chúng tôi sẽ cập nhật giới hạn của bạn. Chọn [_1]Đồng ý và chấp thuận[_2] để xác nhận rằng bạn hoàn toàn chịu trách nhiệm cho các hành động của mình, và chúng tôi sẽ không chịu trách nhiệm cho bất kỳ ảnh hưởng gây nghiện hoặc mất mát nào.","Agree_and_accept":"Đồng ý và chấp thuận","Go_back":"Quay lại","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Khi bạn nhấp vào \"OK\" bạn sẽ bị loại bỏ khỏi giao dịch trên trang web tới ngày được chọn.","Your_changes_have_been_updated_":"Những thay đổi của bạn đã được cập nhật.","Disable":"Vô hiệu hoá","Enable":"Kích hoạt","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Bạn đã kích hoạt thành công xác thực 2 yếu tố cho tài khoản của mình.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Bạn đã vô hiệu hoá thành công xác thực 2 yếu tố cho tài khoản của mình.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Bạn không cần phải xác minh tài khoản vào lúc này. [_1]Chúng tôi sẽ thông báo khi nào tài khoản của bạn cần được xác minh.","No_authentication_required":"Không cần xác minh","Back_to_trading":"Tiếp tục giao dịch","You_are_categorised_as_a_professional_client_":"Bạn được phân loại như là một khách hàng chuyên nghiệp.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Bạn được phân loại như là một khách hàng bán lẻ. Nộp đơn xét duyệt để được là một khách hàng chuyên nghiệp.","Bid":"Giá thầu","Closed_Bid":"Đóng thầu","Reference_ID":"ID tham khảo","Description":"Mô tả","Credit/Debit":"Tín dụng/Ghi nợ","Balance":"Số Dư Tài Khoản","Top_up_error":"Lỗi nạp","Understood":"Đã hiểu","Top-up_successful":"Nạp thành công","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] đã được ghi vào tài khoản ảo của bạn: [_2].","Go_to_statement":"Xem sao kê","Continue_trading":"Tiếp tục giao dịch","Your_Demo_balance_has_been_reset_":"Số dư Demo của bạn đã được đặt lại.","Account":"Tài khoản","Available_Markets":"Những thị trường đang có sẵn","Type":"Loại","Currency":"Tiền tệ","Multipliers_Account":"Tài khoản Multipliers","Gaming_Account":"Tài khoản Gaming","Options_Account":"Tài khoản Quyền chọn","Real_Account":"Tài khoản Thực","Jurisdiction":"Thẩm quyền","Create_account":"Tạo tài khoản","Change_currency":"Thay đổi loại tiền tệ","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Lưu ý: Bạn bị giới hạn ở một tài khoản tiền pháp định. Đơn vị tiền trong tài khoản pháp định của bạn có thể được thay đổi trước khi bạn gửi tiền vào tài khoản pháp định của mình lần đầu tiên hoặc tạo tài khoản MT5 thực (hoặc tài khoản Deriv X thực tại deriv.com). Bạn cũng có thể mở một tài khoản cho mỗi loại tiền mã hóa được hỗ trợ.","This_account_is_disabled":"Tài khoản này bị vô hiệu hoá","This_account_is_excluded_until_[_1]":"Tài khoản này bị loại trừ cho đến khi [_1]","Set_currency":"Thiết lập tiền tệ","Commodities":"Hàng hóa","Forex":"Thị trường ngoại hối","Stock_Indices":"Chỉ số chứng khoán","Stocks":"Chứng khoáng","Synthetic_Indices":"Các chỉ số tổng hợp","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Nếu bạn đã có một tài khoản, chúng tôi sẽ gửi một đường dẫn vào email của bạn trong vài phút để thực hiện đổi mật khẩu.","Sign_up":"Đăng kí","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Giao dịch hợp đồng chênh lệch (CFD) trên Chỉ số tổng hợp có thể không phù hợp với tất cả mọi người. Vui lòng đảm bảo rằng bạn hiểu đầy đủ các rủi ro liên quan, bao gồm khả năng mất tất cả số tiền trong tài khoản MT5 của bạn. \bCá cược có thể gây nghiện - hãy giao dịch có trách nhiệm.","Do_you_wish_to_continue?":"Bạn có muốn tiếp tục?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Bạn sắp mua một sản phẩm không đơn giản và có thể khó hiểu: Hợp đồng chênh lệch và ngoại hối. Theo nguyên tắc chung, CNMV cho rằng các sản phẩm đó không phù hợp với khách hàng bán lẻ, do tính phức tạp của chúng.","Acknowledge":"Sự thừa nhận","Change_Password":"Thay Đổi Mật Khẩu","The_investor_password_of_account_number_[_1]_has_been_changed_":"Mật khẩu nhà đầu tư của tài khoản số [_1] đã bị thay đổi.","Reset_Password":"Đổi Mật Khẩu","Verify_Reset_Password":"Xác minh thiết lập lại mật khẩu","Please_check_your_email_for_further_instructions_":"Vui lòng kiểm tra email của bạn để được hướng dẫn thêm.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"tiền gửi [_1] từ [_2] đến tài khoản số [_3] được thực hiện. Giao dịch ID: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"% 1 rút khỏi số tài khoản% 2 đến% 3 được thực hiện. ID giao dịch:% 4","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Để rút từ MetaTrader 5 [_1], vui lòng [_2]Xác thực[_3] tài khoản Binary của bạn.","Current_password":"Mật khẩu hiện tại","New_password":"Mật khẩu mới","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Để chuyển tiền vào tài khoản MT5 của bạn, hãy nhập số tiền [_1] hoặc hơn","You_have_insufficient_funds_in_your_MT5_account_":"Bạn có đủ vốn trong tài khoản MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Xin lỗi, tính năng này không có sẵn trong thẩm quyền của bạn.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Do vấn đề với máy chủ, một số tài khoản MT5 của bạn không khả dụng bây giờ. [_1]Vui lòng thông cảm cho chúng tôi và cảm ơn sự kiên nhẫn của bạn.","Unavailable":"Không khả dụng","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] đã được ghi vào tài khoản ảo MT5 của bạn: [_2].","_(Region_added)":" (Khu vực đã được cập nhật)","_(Temporarily_unavailable)":" (Tạm thời không khả dụng)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Máy chủ MT5 của chúng tôi tạm thời không khả dụng. Chúng tôi đang làm việc để khôi phục chúng. Vui lòng thử lại trong vài phút.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Sử dụng mật khẩu MT5 để đăng nhập vào bất kỳ tài khoản [_1] nào của bạn khi sử dụng ứng dụng MT5 trên điện thoại di động hoặc các thiết bị khác của bạn.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Thao tác này sẽ thay đổi mật khẩu cho tất cả các tài khoản [_1] của bạn.","Demo_Accounts":"Tài khoản demo","Real-Money_Accounts":"Tài khoản tiền thật","Demo_Account":"Tài khoản Demo","Real-Money_Account":"Tài khoản tiền thật","for_account_[_1]":"cho tài khoản [_1]","[_1]_Account_[_2]":"[_1] tài khoản [_2]","MT5_Financial":"MT5 tài chính","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Nhập mật khẩu MT5 để thêm một tài khoản [_1] [_2].","demo":"thử nghiệm","real":"thực tế","MT5_Synthetic":"MT5 tổng hợp","Get_[_1]":"Có thêm [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Số dư tài khoản demo của bạn hiện nay là [_1] hoặc ít hơn. Bạn có thể nạp thêm vào tài khoản demo [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Bạn có thể nạp [_1] vào tài khoản demo nếu số dư của bạn là từ [_2] trở xuống.","Yes,_I'm_sure":"Vâng, tôi chắc chắn","Are_you_sure?":"Bạn có chắc không?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Bạn sẽ không thể thay đổi đơn vị tiền tệ tài khoản tiền pháp định của mình sau khi tạo tài khoản [_1] này. Bạn có chắc muốn tiếp tục?","OK":"Ok","Go_to_Deriv_to_add_an_MT5_account":"Đi tới Deriv để tạo tài khoản MT5","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Bạn sẽ có thể đăng nhập vào Deriv bằng cách sử dụng thông tin đăng nhập Binary.com.","Back":"Quay lại","Go_to_Deriv":"Đi tới Deriv","Address":"Địa chỉ","Account_currency":"Loại Tiền Tệ","Financial_assessment":"Đánh giá tài chính","Personal_details":"Thông tin cá nhân","Terms_of_use":"Điều khoản sử dụng","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether ERC20 (eUSDT) là một phiên bản của Tether được gắn theo USD và được xây dựng trên chuỗi khối Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) là một phiên bản của Tether được gắn theo USD và được lưu trữ trên nền tảng Ethereum.","Title_and_name":"Tên và chức vụ","Real_money_account_opening":"Mở tài khoản tiền thực","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Chuỗi xác nhận của bạn đã hết hiệu lực hoặc hết hạn. Xin vui lòng nhấp chuột vào đây để khởi động lại quá trình xác minh.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Địa chỉ email cung cấp đang đã được sử dụng. Nếu bạn quên mật khẩu của bạn, hãy thử công cụ phục hồi mật khẩu của chúng tôi hoặc liên hệ với dịch vụ khách hàng của chúng tôi.","Password_is_not_strong_enough_":"Mật khẩu không đủ mạnh.","Upgrade_now":"Nâng cấp ngay bây giờ","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] ngày [_2] giờ [_3] phút","Your_trading_statistics_since_[_1]_":"Số liệu thống kê giao dịch của bạn kể từ [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1] giao dịch có thể trở thành một cơn nghiện thực sự, cũng như bất kỳ hoạt động nào khác có thể bị đẩy đến giới hạn của nó. Để tránh rủi ro của việc nghiện ngập như vậy, chúng tôi cung cấp một phương thức kiểm duyệt thực tế để cho bạn có được một bản tổng quát những giao dịch và tài khoản của bạn một cách thường xuyên.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Xin vui lòng nhấp vào liên kết dưới đây để khởi động lại quá trình khôi phục mật khẩu.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Bạn có mật khẩu Binary mới để đăng nhập vào Binary.com.","Success":"Thành công","Done":"Hoàn tất","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Tài khoản Binary của bạn đã bỏ liên kết với [_1]. Hãy sử dụng [_2]email và mật khẩu của bạn để đăng nhập trong tương lai.","Success!":"Thành công!","Got_it":"Đã hiểu","Binary_Password_Reset":"Đặt lại Mật khẩu Binary","Binary_password":"Mật khẩu Binary","You_have_added_a_[_1]_account_":"Bạn đã thêm vào một tài khoản [_1].","Add_account":"Thêm tài khoản","Add_new_crypto_account":"Thêm tài khoản tiền kỹ thuật số mới","Add_new_account":"Thêm tài khoản mới","Create_a_cryptocurrency_account":"Tạo một tài khoản tiền kỹ thuật số","Choose_your_preferred_cryptocurrency":"Chọn loại tiền điện tử mong muốn","You_can_open_an_account_for_each_cryptocurrency_":"Bạn có thể mở một tài khoản cho mỗi loại tiền điện tử.","Choose_a_cryptocurrency_account":"Chọn một tài khoản tiền kỹ thuật số","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Chọn một trong những tài khoản của bạn hoặc thêm một tài khoản tiền kỹ thuật số mới","Choose_an_account":"Chọn một tài khoản","Choose_one_of_your_accounts_or_add_a_new_account":"Chọn một trong những tài khoản của bạn hoặc thêm một tài khoản mới","Choose_one_of_your_accounts":"Chọn một trong những tài khoản của bạn","Please_select_the_currency_for_this_account:":"Vui lòng chọn đơn vị tiền tệ cho tài khoản:","deposit":"gửi tiền","deposit_or_create_a_CFDs_account":"Nạp tiền hoặc tạo mới một tài khoản CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Bạn có chắc chắn muốn tạo một tài khoản [_1] ngay bây giờ?","Note:":"Lưu ý:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Bạn được phép mở một tài khoản cho mỗi đồng tiền ảo được hỗ trợ.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Bạn có chắc chắn muốn tạo một tài khoản fiat tại [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Bạn chỉ được sở hữu một tài khoản fiat. Bạn có thể thay đổi loại tiền tệ của tài khoản fiat bất cứ lúc nào trước khi bạn lần đầu tiên [_1].","Yes":"Có","Create_[_1]_account":"Tạo tài khoản [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Bạn đã đặt thành công tiền tệ tài khoản của mình thành [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Bạn đã thay đổi đơn vị tiền tệ thành công từ [_1] sang [_2].","Please_choose_a_currency":"Hãy chọn một loại tiền tệ","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Bạn có mật khẩu MT5 mới để đăng nhập vào tài khoản [_1] của mình trên web và ứng dụng dành cho thiết bị di động.","Asian_Up":"Châu á tăng","Asian_Down":"Châu Á Giảm","Higher":"Cao Hơn","Higher_or_equal":"Cao Hơn hoặc Bằng","Lower":"Thấp hơn","Lower_or_equal":"Thấp hơn hoặc bằng","Digit_Matches":"Số phù hợp","Digit_Differs":"Số khác","Digit_Odd":"Số lẻ","Digit_Even":"Số chẵn","Digit_Over":"Số vượt quá","Digit_Under":"Số dưới","Ends_Outside":"Kết Thúc Ra Ngoài","Ends_Between":"Kết Thúc Giữa","Stays_Between":"Nằm Giữa","Goes_Outside":"Ra Ngoài","Touches":"Chạm","Does_Not_Touch":"Không Chạm","Call_Spread":"Gọi biên","Put_Spread":"Bán Chênh lệch","High_Tick":"Tick cao","Low_Tick":"Tick thấp","Only_Ups":"Chỉ Tăng","Only_Downs":"Chỉ Giảm","Multiplier_Up":"Số nhân Tăng","Multiplier_Down":"Số nhân Giảm","Equals":"Bằng nhau","Not":"Không","Buy":"Mua","Sell":"Bán","Waiting_for_contract_settlement_":"Đang chờ giải quyết hợp đồng.","including_Deal_Cancel__Fee":"Bao gồm Phí Huỷ bỏ Giao dịch","Contract_has_not_started_yet":"Hợp đồng chưa được bắt đầu","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Hợp đồng này chỉ khả dụng trên [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Gói thầu này chỉ có trên DTrader.[_1][_2]Đi tới Dtrader[_3] để đóng hoặc huỷ gói thầu.","Contract_Result":"Kết quả hợp đồng","Close_Time":"Thời gian đóng","Exit_Spot_Time":"Thời gian chốt","Audit":"Kiểm toán","View_chart":"Xem biểu đồ","Audit_Page":"Kiểm tra trang","Contract_Starts":"Hợp đồng bắt đầu","Contract_Ends":"Kết thúc hợp đồng","Contract_Details":"Chi tiết Hợp đồng","Target":"Mục tiêu","Contract_Information":"Thông tin của Hợp đồng","Contract_Type":"Loại hợp đồng","Transaction_ID":"ID Giao Dịch","Remaining_Time":"Thời gian còn lại","Maximum_payout":"Thanh toán tối đa","Barrier_Change":"Giới hạn Thay đổi","Current":"Hiện tại","Spot_Time":"Thời điểm làm giá","Current_Time":"Thời gian hiện tại","Indicative":"Chỉ thị","Potential_Profit/Loss":"Lợi nhuận / thua lỗ tiềm năng","Deal_Cancel__Fee":"Hủy Giao Dịch. Phí","You_can_close_this_window_without_interrupting_your_trade_":"Bạn có thể đóng cửa sổ này mà không gián đoạn giao dịch của bạn.","There_was_an_error":"Đã có lỗi xảy ra","Sell_at_market":"Bán tại thị trường","Note":"Lưu ý","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Hợp đồng sẽ được bán ở giá thị trường hiện hành khi máy chủ nhận được yêu cầu. Giá này có thể khác với giá đã được chỉ định.","You_have_sold_this_contract_at_[_1]_[_2]":"Bạn đã bán hợp đồng này với mức [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Số tham chiếu giao dịch của bạn là [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Cảm ơn bạn đã đăng ký! Vui lòng kiểm tra email của bạn để hoàn tất quá trình đăng ký.","All_markets_are_closed_now__Please_try_again_later_":"Tất cả các thị trường đều đã đóng cửa. Vui lòng thử lại sau.","Withdrawal":"Rút tiền","demo_credit_to_account":"tín dụng demo được thêm vào tài khoản","login":"đăng nhập","logout":"đăng xuất","Asians":"Châu Á","Call_Spread/Put_Spread":"Mua Chênh lệch/Bán Chênh lệch","Digits":"Chữ số","Ends_Between/Ends_Outside":"Kết Thúc Giữa / Kết Thúc Ra Ngoài","High/Low_Ticks":"Tick Cao/Thấp","Reset_Call/Reset_Put":"Đặt lại Call/ Đặt lại Put","Stays_Between/Goes_Outside":"Nằm Giữa/ Ra Ngoài","Touch/No_Touch":"Chạm/Không Chạm","Christmas_Day":"Lễ Giáng Sinh","Closes_early_(at_18:00)":"Kết thúc sớm (lúc 18:00)","Closes_early_(at_21:00)":"Kết thúc sớm (lúc 21:00)","Fridays":"Thứ Sáu","New_Year's_Day":"Ngày của năm mới","today":"hôm nay","today,_Fridays":"hôm nay, Thứ Sáu","There_was_a_problem_accessing_the_server_":"Có lỗi khi truy cập máy chủ.","There_was_a_problem_accessing_the_server_during_purchase_":"Có lỗi trung cập vào máy chủ khi mua."}; \ No newline at end of file +texts_json['VI'] = {"Real":"Thực","Multipliers":"Cấp số nhân","Options":"Tùy chỉnh","Demo":"Thử nghiệm","Real_CFDs":"CFD thực","Real_Financial":"Tài Chính Thực","Demo_CFDs":"Demo CFD","Demo_Financial":"Tài chính demo","Derived":"Có nguồn gốc","Demo_Derived":"Demo có nguồn gốc","Real_Derived":"Có nguồn gốc thực","CFDs":"Các thị trường CFD","Financial":"Tài chính","Financial_STP":"Tài chính STP","Demo_Financial_STP":"Demo Tài chính STP","Real_Financial_STP":"Tài chính STP thực","Multi-Collateral":"Đa thế chấp","Paxos_Standard":"Tiêu chuẩn Paxos","Online":"Trực tuyến","Offline":"Ngoại tuyến","Connecting_to_server":"Đang kết nối với máy chủ","Use_a_few_words,_avoid_common_phrases":"Sử dụng một vài từ, tránh các cụm từ phổ biến","No_need_for_symbols,_digits,_or_uppercase_letters":"Không cần ký hiệu, chữ số hoặc chữ hoa","Add_another_word_or_two__Uncommon_words_are_better_":"Thêm một hoặc hai từ khác. Những từ không phổ biến sẽ tốt hơn.","Straight_rows_of_keys_are_easy_to_guess":"Các hàng phím thẳng rất dễ đoán","Short_keyboard_patterns_are_easy_to_guess":"Các nhóm ký tự ngắn liên tiếp rất dễ đoán","Use_a_longer_keyboard_pattern_with_more_turns":"Sử dụng nhiều ký tự khác nhau trên bàn phím và kéo dài chúng","Repeats_like_\"aaa\"_are_easy_to_guess":"Các lặp lại như \"aaa\" rất dễ đoán","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"Các lặp lại như \"abcabcabc\" chỉ hơi khó đoán hơn \"abc\"","Avoid_repeated_words_and_characters":"Tránh lặp lại các từ và ký tự","Sequences_like_abc_or_6543_are_easy_to_guess":"Các chuỗi như abc hoặc 6543 rất dễ đoán","Avoid_sequences":"Tránh các trình tự","Recent_years_are_easy_to_guess":"Các mốc năm gần đây rất dễ đoán","Avoid_recent_years":"Tránh những năm gần đây","Avoid_years_that_are_associated_with_you":"Tránh những mốc năm gắn liền với bạn","Dates_are_often_easy_to_guess":"Mốc ngày rất dễ đoán","Avoid_dates_and_years_that_are_associated_with_you":"Tránh những mốc ngày tháng năm gắn liền với bạn","This_is_a_top-10_common_password":"Đây là một trong 10 mật khẩu phổ biến nhất","This_is_a_top-100_common_password":"Đây là một trong 100 mật khẩu phổ biến nhất","This_is_a_very_common_password":"Đây là một mật khẩu rất phổ biến","This_is_similar_to_a_commonly_used_password":"Mật khẩu này giống một mật khẩu thường được sử dụng","A_word_by_itself_is_easy_to_guess":"Một từ đơn lẻ rất dễ đoán","Names_and_surnames_by_themselves_are_easy_to_guess":"Tên và họ thường rất dễ đoán","Common_names_and_surnames_are_easy_to_guess":"Tên thường và họ rất dễ đoán","Capitalization_doesn't_help_very_much":"Viết hoa không giúp được gì nhiều","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"Tất cả chữ hoa gần như dễ đoán như chữ thường","Reversed_words_aren't_much_harder_to_guess":"Các từ đảo ngược không khó đoán","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"Các thay thế có thể đoán trước như '@' thay vì 'a' không giúp ích nhiều","This_password_is_on_the_blacklist":"Mật khẩu này nằm trong danh sách đen","Unknown_OS":"Hệ điều hành không rõ","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"Bạn sẽ được chuyển hướng đến một trang web bên thứ ba mà không thuộc sở hữu của Binary.com.","Click_OK_to_proceed_":"Nhấp vào OK để tiến tục.","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"Hãy đảm bảo rằng bạn đã cài đặt ứng dụng Telegram trên thiết bị của mình.","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"[_1] yêu cầu lưu trữ web của trình duyệt của bạn để được kích hoạt để hoạt động đúng. Xin vui lòng cho phép nó hoặc thoát ra khỏi chế độ duyệt web riêng tư.","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"Xin vui lòng [_1]đăng nhập[_2] hoặc [_3]đăng ký[_4] để xem trang này.","This_feature_is_available_to_demo_accounts_only_":"Tính năng này chỉ khả dụng với tài khoản demo.","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"Bạn đang sử dụng tài khoản demo. Vui lòng chuyển sang tài khoản thực hoặc tạo tài khoản để truy cập Thu ngân.","This_page_is_only_available_to_logged_out_clients_":"Trang này chỉ dành cho khách hàng đã đăng xuất.","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"Giao dịch quyền chọn nhị phân không khả dụng cho tài khoản Multipliers của bạn.","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"Giao dịch quyền chọn nhị phân không khả dụng qua tài khoản Multiplier của bạn.
Vui lòng quay trở lại tài khoản Quyền chọn của bạn.","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"Xin lỗi, giao dịch quyền chọn không khả dụng ở Vương Quốc Anh và Đảo Man","Binary_options_trading_is_not_available_in_your_country_":"Quyền chọn giao dịch nhị phân không khả dụng tại quốc gia của bạn.","This_page_is_not_available_in_your_country_of_residence_":"Trang này không khả dụng tại quốc gia của bạn.","Page_not_available,_you_did_not_deactivate_your_account_":"Trang không khả dụng, bạn chưa hủy kích hoạt tài khoản của mình.","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"Rất tiếc, dịch vụ này không khả dụng ở quốc gia của bạn. Nếu bạn muốn giao dịch số nhân, hãy thử DTrader trên Deriv.","Go_to_DTrader":"Đi tới DTrader","Sign_out":"Đăng xuất","[_1]_Account":"Tài khoản [_1]","Click_here_to_open_a_Real_Account":"Nhấp vào đây để mở một Tài Khoản Thực","Open_a_Real_Account":"Mở một Tài Khoản Thực","Click_here_to_open_a_Multipliers_Account":"Click vào đây để mở một tài khoản Multipliers","Click_here_to_open_an_Options_account":"Click vào đây để mở một tài khoản Quyền chọn","Open_a_Multipliers_Account":"Mở một tài khoản Multipliers","Go_to_Deriv_to_add_an_account":"Đi tới Deriv để tạo tài khoản","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"Bạn sẽ có thể đăng nhập vào Deriv bằng cách sử dụng thông tin đăng nhập Binary.com.","Cancel":"Hủy bỏ","Go_to_Deriv":"Đi tới Deriv","Create_Account":"Tạo Tài Khoản","Accounts_List":"Danh sách tài khoản","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"Nạp tiền tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể nạp tiền khi quá trình bảo trì hoàn tất.","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"Rút tiền tạm thời không khả dụng do bảo trì hệ thống. Bạn có thể rút tiền khi quá trình bảo trì hoàn tất.","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân tiền điện tử của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập tới Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"Thu ngân của bạn hiện đang bị khóa. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp để tìm hiểu cách mở khóa.","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"Vui lòng cài đặt [_1]ađơn vị tiền tệ tài khoản[_2] của bạn để cho phép gửi và rút tiền.","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Tên và ngày sinh của bạn trong tài liệu không khớp với tên hồ sơ Binary của bạn. Vui lòng cập nhật tên của bạn trong trang [_1]Thông tin cá nhân[_2].","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Ngày sinh của bạn trong tài liệu không khớp với tên hồ sơ Binary của bạn. Vui lòng cập nhật tên của bạn trong trang [_1]Thông tin cá nhân[_2].","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"Tên tài liệu của bạn không khớp với tên hồ sơ Binary của bạn. Vui lòng cập nhật tên của bạn trong trang [_1]Thông tin cá nhân[_2].","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"Tài khoản của bạn chưa được xác thực. Vui lòng gửi[_1]pgiấy tờ định danh và bằng chứng về địa chỉ[_2] để xác thực tài khoản của bạn và thực hiện yêu cầu rút tiền.","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"Tài khoản của bạn chưa được xác thực. Vui lòng gửi[_1]pgiấy tờ định danh và bằng chứng về địa chỉ[_2] để xác thực tài khoản của bạn và truy cập vào Thu ngân của bạn.","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"Các giấy tờ tùy thân bạn gửi đã hết hạn. Vui lòng xuất trình giấy tờ tùy thân hợp lệ để mở khóa Thu ngân.","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]Xác nhận danh tính[_2] của bạn đã hết hạn.","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]Xác nhận địa chỉ[_2] của bạn đã hết hạn.","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]Xác nhận danh tính[_3] và [_2]Xác nhận địa chỉ[_3] của bạn chưa được phê duyệt.","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]Xác nhận danh tính[_2] của bạn chưa được phê duyệt.","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]Xác nhận địa chỉ của bạn[_2] chưa được phê duyệt.","Please_submit_your_[_1]proof_of_identity[_2]_":"Vui lòng nộp [_1]xác minh danh tính[_2] của bạn.","Please_submit_your_[_1]proof_of_address[_2]_":"Vui lòng nộp [_1]xác minh địa chỉ[_2].","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"Bạn đã chọn loại trừ mình khỏi giao dịch trên trang web của chúng tôi cho đến khi [_1]. Nếu bạn không thể thực hiện giao dịch hoặc ký quỹ sau thời gian tự loại trừ của mình, vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp.","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"Quyền truy cập của bạn vào Thu ngân tạm thời bị vô hiệu hóa do bạn chưa đặt giới hạn doanh thu trong 30 ngày của mình. Vui lòng chuyển đến[_1]Stự loại trừ[_2] và đặt giới hạn doanh thu trong 30 ngày của bạn.","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"Rút tiền MT5 đã bị vô hiệu hoá trên tài khoản của bạn. Vui lòng kiểm tra email của bạn để biết chi tiết.","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"Thật không may, bạn chỉ có thể gửi tiền. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tuyến để cho phép rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]pchi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng chuyển đến cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể gửi tiền và rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]pChi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng chuyển đến cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để có thể rút tiền.","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]pChi tiết cá nhân[_2] của bạn chưa hoàn thành. Vui lòng đi tới cài đặt tài khoản của bạn và điền đầy đủ thông tin cá nhân của bạn để kích hoạt tiền gửi.","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"Bạn chưa cài đặt quốc gia cư trú của mình. Để truy cập vào Thu ngân, vui lòng cập nhật [_1]cquốc gia cư trú[_2] của bạn ở phần Chi tiết cá nhân và trong cài đặt tài khoản của bạn.","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"Thu ngân của bạn bị khóa. Vui lòng hoàn thành [_1]fđánh giá tài chính[_2] để mở khóa.","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"Bạn chưa cung cấp mã số thuế của mình. Thông tin này là cần thiết cho các yêu cầu pháp lý và quy định. Vui lòng chuyển đến [_1]Chi tiết cá nhân[_2] trong cài đặt tài khoản của bạn và bổ sung vào mã số thuế mới nhất của bạn.","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"Thật không may, bạn chỉ có thể rút tiền. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tuyến.","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"Việc rút tiền đã bị vô hiệu hóa trên tài khoản của bạn. Vui lòng đợi đến khi các tài liệu bạn gửi được xác nhận.","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"Xin [_1]vui lòng chấp nhận cập nhật các Điều Khoản và Điều Kiện[_2].","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"Xin [_1]vui lòng chấp nhận cập nhật các Điều Khoản và Điều Kiện[_2] để nâng mức tiền gửi và giới hạn giao dịch.","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"Tài khoản của bạn tạm thời bị vô hiệu hóa. Vui lòng liên hệ với chúng tôi qua trò chuyện trực tiếp để kích hoạt lại tiền gửi và rút tiền.","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"Vui lòng hoàn thành Kiểm tra tính thích hợp để truy cập vào mục thu ngân của bạn.","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"Thu ngân của bạn bị khóa. Xem[_1]holàm cách chúng tôi bảo vệ tiền của bạn[_2] trước khi bạn tiếp tục.","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"Tài khoản của bạn cần được xác thực. Vui lòng gửi [_1]bằng chứng định danh[_2] của bạn để truy cập Thu ngân.","Account_Authenticated":"Xác thực tài khoản","Connection_error:_Please_check_your_internet_connection_":"Lỗi kết nối: xin vui lòng kiểm tra kết nối internet của bạn.","Network_status":"Tình Trạng Mạng","This_is_a_staging_server_-_For_testing_purposes_only":"Đây là một máy chủ dàn dựng - chỉ cho mục đích chỉ thử nghiệm","The_server_endpoint_is:_[_2]":"Máy chủ điểm kết thúc là: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"Trình duyệt web ([_1]) của bạn đã hết hạn và có thể ảnh hưởng đến trải nghiệm giao dịch của bạn. Nếu tiếp tục bạn sẽ có thể gặp một vài rắc rối. [_2]Nâng cấp trình duyệt[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"Bạn đã đạt đến giới hạn số lượng lệnh có thể mỗi giây. Xin vui lòng thử lại sau.","There_was_some_invalid_character_in_an_input_field_":"Có một vài ký tự không hợp lệ trong dữ liệu nhập vào.","regulated_by_the_UK_Gaming_Commission_(UKGC),":"được cấp phép bởi Ủy ban cá cược Vương quốc Anh (UKGC),","regulated_by_the_Malta_Gaming_Authority,":"được cấp phép bởi Cơ quan quản lý cá cược Malta,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"Được cấp phép bới Cơ quan Dịch vụ Tài chính Malta (MFSA),","Please_select":"Vui lòng chọn","Please_accept_the_terms_and_conditions_":"Xin vui lòng chấp nhận các điều khoản và điều kiện.","Please_confirm_that_you_are_not_a_politically_exposed_person_":"Xin vui lòng xác nhận rằng bạn không là một người tiếp xúc với chính trị.","Today":"Hôm nay","Select_date":"Chọn ngày","Barrier":"Giới hạn","Entry_Spot":"Điểm khởi đầu","Exit_Spot":"Điểm chốt","Charting_for_this_underlying_is_delayed":"Biểu đồ cho tài sản cơ sở này bị hoãn","Payout_Range":"Phạm vi thanh toán","Purchase_Time":"Thời Gian Mua","Reset_Barrier":"Đặt lại Giới Hạn","Reset_Time":"Thời gian đặt lại","Selected_Tick":"Tick đã chọn","Exit_Time":"Thời gian thoát","Start_Time":"Thời gian bắt đầu","Step_[_1]:_[_2]_([_1]_of_[_3])":"Bước [_1]: [_2] ([_1] của [_3])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"Mã xác minh sai rồi. Xin vui lòng sử dụng liên kết được gửi tới email của bạn.","Indicates_required_field":"Biểu thị trường bắt buộc","Please_select_the_checkbox_":"Vui lòng chọn hộp đánh dấu.","This_field_is_required_":"Trường này là bắt buộc.","Should_be_a_valid_number_":"Nên là một số hợp lệ.","Up_to_[_1]_decimal_places_are_allowed_":"Lên đến [_1] chữ số thập phân sau dấu phẩy được cho phép.","Should_be_[_1]":"Nên là [_1]","Should_be_between_[_1]_and_[_2]":"Nên ở giữa [_1] và [_2]","Should_be_more_than_[_1]":"Nên là nhiều hơn [_1]","Should_be_less_than_[_1]":"Nên là ít hơn [_1]","Insufficient_balance_":"Số dư tài khoản không đủ.","Invalid_email_address_":"Địa chỉ email không hợp lệ.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"Mật khẩu phải có chữ cái tiếng Anh viết thường và viết hoa kèm theo số.","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Chỉ chữ cái, số, khoảng trắng, dấu nối, dấu chấm, và dấu nháy đơn được cho phép.","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"Chỉ ký tự, số lượng, không gian, và các ký tự đặc biệt được phép: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"Chỉ chữ cái, khoảng trắng, dấu nối, dấu chấm hết và dấu nháy đơn được cho phép.","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"Chỉ các chữ cái, số, dấu cách và dấu nối là được phép.","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"Vui lòng nhập số điện thoại hợp lệ (ví dụ: +15417541234).","The_two_passwords_that_you_entered_do_not_match_":"Hai mật khẩu bạn vừa nhập không khớp với nhau.","[_1]_and_[_2]_cannot_be_the_same_":"[_1] và [_2] không thể giống nhau.","Minimum_of_[_1]_characters_required_":"Tối thiểu [_1] các kí tự cần thiết.","You_should_enter_[_1]_characters_":"Bạn nên nhập vào [_1] ký tự.","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"Nên bắt đầu bằng chữ hoặc số, và có thể chứa các gạch nối và gạch ngang dưới.","Invalid_verification_code_":"Mã xác minh không hợp lệ.","Your_password_cannot_be_the_same_as_your_email_address_":"Mật khẩu của bạn không thể trùng với tên địa chỉ email.","Transaction_performed_by_[_1]_(App_ID:_[_2])":"Giao dịch thực hiện bởi [_1] (ID ứng dụng: [_2])","Guide":"Hướng dẫn","Next":"Tiếp theo","Finish":"Kết thúc","Step":"Bước","Select_your_market_and_underlying_asset":"Chọn thị trường và các tài sản cơ sở của bạn","Select_your_trade_type":"Chọn loại giao dịch của bạn","Adjust_trade_parameters":"Điều giới hạn giao dịch","Predict_the_directionand_purchase":"Dự đoán khuynh hướng
và thu mua","Your_session_duration_limit_will_end_in_[_1]_seconds_":"Thời khoảng phiên giao dịch của bạn sẽ kết thúc trong [_1] giây nữa.","January":"Tháng Một","February":"Tháng Hai","March":"Tháng Ba","April":"Tháng 4","May":"Tháng Năm","June":"Tháng Sáu","July":"Tháng Bảy","August":"Tháng 8","September":"Tháng Chín","October":"Tháng Mười","November":"Tháng Mười Một","December":"Tháng 12","Jan":"Tháng Một","Feb":"Tháng Hai","Mar":"Tháng Ba","Apr":"Tháng 4","Jun":"Tháng Sáu","Jul":"Tháng Bảy","Aug":"Tháng 8","Sep":"Tháng Chín","Oct":"Tháng Mười","Nov":"Tháng Mười Một","Dec":"Tháng 12","Sunday":"Chủ nhật","Monday":"Thứ Hai","Tuesday":"Thứ Ba","Wednesday":"Thứ Tư","Thursday":"Thứ Năm","Friday":"Thứ Sáu","Saturday":"Thứ Bảy","Su":"Chủ Nhật","Mo":"Thứ 2","Tu":"Thứ 3","We":"Thứ 4","Th":"Thứ 5","Fr":"Thứ 6","Sa":"Thứ 7","Previous":"Trước","Hour":"Giờ","Minute":"Phút","Verification_required":"Cần được xác minh ","Verify_identity":"Xác định danh tính","From_account:_":"Từ tài khoản: ","To_account:_":"Đến tài khoản: ","Not_announced_for_this_currency_":"Không công bố cho loại tiền này.","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"Đặt lại vốn tài khoản demo của bạn thành [_1] bất kỳ lúc nào.","[_1]Manage_your_accounts[_2]":"[_1]Quản lý tài khoản của bạn[_2]","time":"đầu tiên","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"thời gian hoặc tạo một tài khoản MT5 thực (hoặc một tài khoản Deriv X thực tại deriv.com)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"Bạn không thể thay đổi đơn vị tiền tệ được nữa vì bạn đã tạo tài khoản MT5 thực (hoặc tài khoản Deriv X thực tại deriv.com).","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"Bạn không còn có thể thay đổi đơn vị tiền tệ vì lần gửi tiền đầu tiên đã được thực hiện.","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"Tài khoản của bạn có đơn vị tiền tệ hiện tại đặt là [_1].","Your_fiat_account's_currency_is_set_to_[_1]_":"Tài khoản fiat của bạn có đơn vị tiền tệ là [_1].","This_is_your_[_1]_account_":"Đây là tài khoản [_1] của bạn.","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"Bạn có thể [_1]đặt loại tiền tệ mới[_2] trước khi bạn gửi tiền cho lần [_3].","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"Không muốn giao dịch trong [_1]? Bạn có thể mở một tài khoản tiền ảo khác.","Switch_account":"Chuyển đổi tài khoản","Switch_account?":"Chuyển đổi tài khoản?","To_deposit_money,_please_switch_to_your_[_1]_account_":"Để gửi tiền, vui lòng chuyển sang tài khoản [_1] của bạn.","To_withdraw_money,_please_switch_to_your_[_1]_account_":"Để rút tiền, vui lòng chuyển sang tài khoản [_1] của bạn.","Switch_to_crypto_account?":"Chuyển đổi sang tài khoản tiền kỹ thuật số?","To_deposit_cryptocurrency,_switch_your_account_":"Để gửi tiền kỹ thuật số, hãy chuyển đổi tài khoản của bạn.","To_withdraw_cryptocurrency,_switch_your_account_":"Để rút tiền điện tử, hãy chuyển đổi tài khoản của bạn.","Withdraw":"Rút tiền","Deposit":"Gửi tiền","Town/City":"Thành phố/Tỉnh thành","First_line_of_home_address":"Dòng đầu tiên của địa chỉ nhà","Postal_Code/ZIP":"Mã bưu chính/ Mã ZIP","State/Province":"Quốc gia/Tỉnh","Email_address":"Địa chỉ Email","Telephone":"Điện thoại","Country_of_Residence":"Quốc gia cư trú","details":"chi tiết","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"Dịch vụ thu ngân của chúng tôi tạm thời ngừng hoạt động do bảo trì hệ thống. Bạn có thể truy cập tới Thu ngân sau vài phút khi quá trình bảo trì hoàn tất.","Your_cashier_is_locked_":"Thu ngân của bạn bị khóa.","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"Vui lòng chú ý rằng loại tiền tệ được chọn chỉ được sử dụng cho một số tài khoản nhất định.","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"Bạn đã đạt đến giới hạn rút tiền. Vui lòng gửi chứng minh danh tính và địa chỉ để gỡ giới hạn và việc rút tiền có thể tiếp tục được thực hiện.","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"Dịch vụ Đại Lý Thanh Toán không có sẵn trong quốc gia của bạn hoặc trong đơn vị tiền tệ ưa thích.","Select_payment_agent":"Chọn đại lý thanh toán","Amount_in":"Số tiền theo","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"Chỉ được phép sử dụng các chữ cái, số, khoảng trắng, dấu gạch nối, dấu chấm, dấu phẩy, và dấu gạch ngang.","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"Yêu cầu rút tiền [_1] [_2] từ tài khoản [_3] của bạn và chuyển tới tài khoản Đại lý Thanh toán [_4] đã được xử lý thành công.","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"Chuỗi xác nhận của bạn đã hết hạn. Xin vui lòng nhấp chuột vào [_1]đây[_2] để khởi động lại quá trình xác minh.","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"Rất tiếc, chức năng rút cho loại tiền này hiện đang bị vô hiệu hóa.","Please_[_1]deposit[_2]_to_your_account_":"Xin vui lòng [_1]gửi tiền[_2] vào tài khoản của bạn.","Sorry,_account_signup_is_not_available_in_your_country_":"Rất tiếc, không thể thực hiện đăng ký tài khoản ở quốc gia của bạn.","Asset":"Tài sản","Opens":"Mở","Closes":"Kết thúc","Settles":"Quyết toán","Upcoming_Events":"Sự kiện sắp diễn ra","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"Thêm /-để xác định một độ lệch giới hạn. Ví dụ, +0.005 có nghĩa là một giới hạn mà cao hơn 0,005 so với điểm khởi đầu.","Digit":"Chữ số","Percentage":"Tỷ lệ phần trăm","Waiting_for_entry_tick_":"Vui lòng đợi dấu tick gia nhập.","High_Barrier":"Rào cản Cao","Low_Barrier":"Giới Hạn Dưới","Waiting_for_exit_tick_":"Vui lòng đợi dấu tick thoát.","Ticks_history_returned_an_empty_array_":"Lịch sử Ticks trả về một mảng trống.","Chart_is_not_available_for_this_underlying_":"Biểu đồ không phải là có sẵn cho cơ sở này.","Purchase":"Mua","Net_profit":"Lợi nhuận ròng","Return":"Doanh thu","Time_is_in_the_wrong_format_":"Sai định dạng thời gian.","Rise/Fall":"Tăng/Giảm","Higher/Lower":"Cao Hơn/Thấp Hơn","Matches/Differs":"Khớp/Khác nhau","Even/Odd":"Hòa vốn/ Số dư","Over/Under":"Trên/Dưới","High-Close":"Cao-Đóng","Close-Low":"Đóng-Thấp","High-Low":"Cao-Thấp","Reset_Call":"Đặt lại Mua","Reset_Put":"Đặt lại Bán","Up/Down":"Lên/Xuống","Only_Ups/Only_Downs":"Chỉ Tăng/Chỉ Giảm","In/Out":"Trong/Ngoài","Select_Trade_Type":"Chọn loại hình giao dịch","Spot":"Giao ngay","Spot_Time_(GMT)":"Thời điểm làm giá (GMT)","seconds":"giây","minutes":"phút","hours":"giờ","days":"ngày","ticks":"tick","second":"giây","minute":"phút","hour":"giờ","day":"ngày","Duration":"Khoảng thời gian","End_Time":"Thời Gian Kết Thúc","Purchase_request_sent":"Yêu cầu mua hàng được gửi","High":"Cao","Close":"Đóng","Low":"Thấp","Select_Asset":"Lựa chọn tài sản","Search___":"Tìm kiếm...","Maximum_multiplier_of_1000_":"Hệ số tối đa 1000.","Stake":"Vốn đầu tư","Payout":"Khoảng được trả","Multiplier":"Số nhân","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"Rất tiếc, tài khoản của bạn không có quyền mua thêm hợp đồng.","Trading_is_unavailable_at_this_time_":"Giao dịch không khả dụng tại thời điểm này.","Please_reload_the_page":"Xin vui lòng tải lại trang","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"Không được phép giao dịch thêm đối với loại hợp đồng này trong phiên giao dịch hiện tại. Để biết thêm thông tin, hãy tham khảo [_1]điều khoản và điều kiện[_2] của chúng tôi.","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"Đơn xét duyệt để được thành một khách hàng chuyên nghiệp của bạn đang được xử lý.","Your_professional_client_request_is_[_1]not_approved[_2]_":"Yêu cầu trở thành khách hàng chuyên nghiệp của bạn [_1]nkhông được chấp thuận[_2].","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"Xin vui lòng nộp đơn xin lại sau khi các tiêu chí yêu cầu đã đầy đủ.","More_information_can_be_found_in_an_email_sent_to_you_":"Thông tin thêm có thể được tìm thấy trong email gửi đến bạn.","I_want_to_reapply":"Tôi muốn nộp đơn xin lại","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"Trong khối EU, các lựa chọn nhị phân chỉ có sẵn cho các nhà đầu tư chuyên nghiệp.","Apply_now_as_a_professional_investor":"Đăng ký ngay để trở thành nhà đầu tư chuyên nghiệp","Try_our_[_1]Synthetic_Indices[_2]_":"Thử [_1]Chỉ Số Tổng Hợp[_2] của chúng tôi.","Try_our_other_markets_":"Thử các thị trường khác.","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"Vui lòng hoàn thành [_1]Đơn tạo tài khoản thật[_2] để xác nhận độ tuổi được yêu cầu bởi [_3]Ủy ban quản lý cờ bạc vương quốc Anh[_4] (UKGC).","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"Truy cập tài khoản tạm thời bị giới hạn. Vui lòng kiểm tra hòm thư của bạn để biết thêm chi tiết.","Contract_Confirmation":"Xác nhận Hợp đồng","Your_transaction_reference_is":"Tham chiếu giao dịch của bạn là","Total_Cost":"Tổng Chi Phí","Potential_Payout":"Khoảng Được Trả Tiềm Năng","Potential_Profit":"Lợi Nhuận Tiềm Năng","View":"Xem","This_contract_won":"Hợp đồng này đã thắng","This_contract_lost":"Hợp đồng này đã thua lỗ","The_reset_time_is_[_1]":"Thời gian thiết lập lại là [_1]","Now":"Hiện tại","Average":"Trung bình","Buy_price":"Giá mua","Final_price":"Giá cuối cùng","Loss":"Thua lỗ","Profit":"Lợi nhuận","Account_balance:":"Số Dư Tài Khoản:","Reverse_Side":"Mặt sau","Front_Side":"Mặt trước","Pending":"Đang chờ xử lý","Submitting":"Đang gửi","Submitted":"Đã gửi","Failed":"Thất bại","Compressing_Image":"Nén hình ảnh","Checking":"Đang kiểm tra","Checked":"Đã kiểm tra","Unable_to_read_file_[_1]":"Không thể đọc tập tin [_1]","Passport":"Hộ chiếu","Identity_card":"Thẻ nhận dạng","Driving_licence":"Giấy phép lái xe","Invalid_document_format_":"Định dạng tài liệu không hợp lệ.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"Kích thước tập tin ([_1]) vượt quá giới hạn cho phép. Kích thước tập tin tối đa cho phép: [_2]","ID_number_is_required_for_[_1]_":"Số ID là cần thiết cho [_1].","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"Chỉ chữ cái, số, space, gạch dưới và dấu nối được phép dành cho mã số ID ([_1]).","Expiry_date_is_required_for_[_1]_":"Hạn sử dụng cần thiết cho [_1].","Place_of_birth":"Nơi sinh","Please_select_the_country_of_document_issuance":"Vui lòng chọn quốc gia đã cấp giấy tờ văn bản","Choose_the_document_type":"Chọn loại giấy tờ","Please_enter_the_correct_format__Example:":"Vui lòng nhập đúng định dạng. Ví dụ:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra tài khoản email Google của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra tài khoản email Facebook của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"Kiểm tra email tài khoản được liên kết với ID Apple của bạn và nhấn vào đường dẫn trong email để tiếp tục.","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"Vui lòng nhấp vào liên kết trong email của bạn để đổi mật khẩu MT5.","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"Vui lòng nhấp vào liên kết trong email của bạn để đổi mật khẩu Binary.","We’ve_sent_you_an_email":"Chúng tôi đã gửi cho bạn một email","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"Bạn đang sử dụng tài khoản [_1] để đăng nhập vào tài khoản Binary.com của mình. Để thay đổi phương thức đăng nhập của bạn thành sử dụng tên người dùng và mật khẩu, hãy nhấp vào nút [_2]Unlink[_3].","Linked_with_[_1]":"Liên kết với [_1]","You_will_need_to_set_a_password_to_complete_the_process_":"Bạn sẽ cần phải đặt một mật khẩu để hoàn tất quy trình.","Are_you_sure_you_want_to_unlink_from_[_1]?":"Bạn có chắc muốn bỏ liên kết từ [_1]?","Unlink":"Bỏ liên kết","Country_not_found":"Không tìm thấy tên quốc gia","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"Tài liệu từ quốc gia này hiện tại chưa được hỗ trợ — thử loại tài liệu khác","Submit_document":"Nộp tài liệu","Select_country":"Chọn quốc gia","e_g__United_States":"Ví dụ. Hợp chủng quốc Hoa kì","Search_for_country":"Tìm quốc gia của bạn","Select_issuing_country":"Chọn quốc gia phát hành","Submit_verification":"Nộp xác minh","Tips":"Mẹo","Documents_uploaded":"Tài liệu đã được tải lên","Document_uploaded":"Tài liệu đã được tải lên","Selfie_uploaded":"Ảnh tự chụp đã được tải lên","We're_now_ready_to_verify_your_identity":"Chúng tôi đã sẵn sàng xác minh danh tính cho bạn","Great,_that's_everything_we_need":"Rất tốt, đó là tất cả những gì chúng tôi cần","The_link_only_works_on_mobile_devices":"Đường dẫn chỉ hoạt động trên các thiết bị điện thoại di động","Something's_gone_wrong":"Có vấn đề xảy ra","You'll_need_to_restart_your_verification_on_your_computer":"Bạn sẽ phải làm mới quá trình xác minh trên máy tính của bạn","Get_secure_link":"Nhận đường dẫn an toàn","Steps_required_to_continue_verification_on_your_mobile":"Các bước cần thiết để tiếp tục xác minh trên điện thoại di động của bạn","Check_back_here_to_finish_the_submission":"Kiểm tra lại tại đây để hoàn tất quá trình gửi","Open_the_link_and_complete_the_tasks":"Mở liên kết và hoàn thành nhiệm vụ","Send_a_secure_link_to_your_phone":"Gửi đường dẫn an toàn tới điện thoại","Here's_how_to_do_it:":"Sau đây là cách thực hiện:","Continue_on_your_phone":"Tiếp tục trên điện thoại","Your_computer_may_take_a_few_seconds_to_update":"Máy tính của bạn có thể mất vài giây để cập nhật","You_can_now_return_to_your_computer_to_continue":"Bây giờ bạn có thể quay lại máy tính của mình để tiếp tục","Uploads_successful":"Tải lên thành công","Make_sure_everything_is_clear":"Đảm bảo mọi thứ rõ ràng","Blurry_photo_detected":"Phát hiện ảnh bị mờ","Make_sure_full_document_is_visible":"Đảm bảo hiển thị toàn bộ tài liệu","Cut-off_image_detected":"Phát hiện hình ảnh đã bị chỉnh sửa","Move_away_from_direct_light":"Tránh khỏi ánh sáng trực tiếp","Glare_detected":"Đã phát hiện lóa","Make_sure_all_of_the_document_is_in_the_photo":"Hãy đảm bảo tất cả các tài liệu đã có ở trong ảnh","No_document_detected":"Không phát hiện tài liệu nào","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên thẻ của bạn rõ ràng, không bị mờ hoặc lóa","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"Sẽ mất nhiều thời gian để xác minh nếu chúng tôi không đọc được tài liệu","To_smoothly_verify_you,_we_need_a_better_photo":"Để việc xác minh dễ dàng, chúng tôi cần một bức ảnh có chất lượng tốt hơn","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên giấy phép của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên hộ chiếu của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết trên giấy phép của bạn rõ ràng, không bị mờ hoặc lóa","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"Đảm bảo rằng các chi tiết rõ ràng, không bị mờ hoặc lóa","Redo":"Hoàn tác","Confirm":"Xác nhận","Upload_anyway":"Vẫn tải lên","Enlarge_image":"Phóng to hình ảnh","Photo_of_your_document":"Ảnh tài liệu của bạn","Check_your_image":"Hãy kiểm tra ảnh của bạn","Front_and_back":"Trước và sau","Driver's_license":"Giấy phép lái xe","Face_photo_page":"Trang ảnh khuôn mặt","Residence_permit":"Giấy phép cư trú","Sorry,_no_mobile_phone_bills":"Rất tiếc, không có hóa đơn điện thoại di động","Documents_you_can_use_to_verify_your_identity":"Các tài liệu bạn có thể sử dụng để xác minh danh tính","It_must_be_an_official_photo_ID":"Cần phải có một ảnh ID chính thức","These_are_the_documents_most_likely_to_show_your_current_home_address":"Đây là những tài liệu có nhiều khả năng hiển thị địa chỉ hiện tại bạn đang sống","Choose_document":"Chọn tài liệu","Select_a_%{country}_document":"Chọn một tài liệu %{country}","or_upload_photo_–_no_scans_or_photocopies":"hoặc tải ảnh lên - không quét hoặc sao chụp","Continue_on_phone":"Tiếp tục trên điện thoại","Take_a_photo_with_your_phone":"Chụp ảnh bằng điện thoại của bạn","Submit_identity_card_(back)":"Nộp chứng minh thư (mặt sau)","Submit_identity_card_(front)":"Nộp chứng minh thư (mặt trước)","Submit_license_(back)":"Nộp giấy phép (mặt sau)","Submit_license_(front)":"Nộp giấy phép (mặt trước)","Submit_passport_photo_page":"Nộp ảnh hộ chiếu","Submit_residence_permit_(back)":"Nộp giấy phép cư trú (mặt sau)","Submit_residence_permit_(front)":"Nộp giấy phép cư trú (mặt trước)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"Bắt đầu lại quá trình trên phiên bản trình duyệt Google Chrome mới nhất","Restart_the_process_on_the_latest_version_of_Safari":"Bắt đầu lại quá trình trên phiên bản trình duyệt Safari mới nhất","Unsupported_browser":"Trình duyệt không được hỗ trợ","Close_identity_verification_screen":"Đóng màn hình xác minh danh tính","Dismiss_alert":"Tắt cảnh bảo","back":"trở lại","close":"đóng","Restart_process_on_a_different_device":"Bắt đầu lại quá trình trên thiết bị khác","Camera_not_detected":"Không tìm thấy camera","Must_be_under_10MB_":"Phải dưới 10MB.","File_size_exceeded_":"Tệp quá giới hạn.","Try_using_another_file_type_":"Thử dùng loại file khác.","File_not_uploaded_":"Tập tin chưa được tải lên.","An_error_occurred_while_loading_the_component":"Có lỗi xảy ra khi tải thành phần","Only_your_face_can_be_in_the_selfie":"Chỉ được phép có mặt của một mình bạn trên ảnh tự chụp","Multiple_faces_found":"Phát hiện nhiều khuôn mặt","Your_face_is_needed_in_the_selfie":"Mặt của bạn phải có trên ảnh tự chụp","No_face_found":"Không nhận diện được khuôn mặt","Please_try_again":"Vui lòng thử lại","Connection_lost":"Mất kết nối","Copy_the_link_to_your_phone":"Sao chép đường dẫn vào điện thoại của bạn","Too_many_failed_attempts":"Có quá nhiều lần thử thất bại","Try_using_a_JPG_or_PNG_file":"Thử dùng tệp JPG hoặc PNG","File_type_not_supported":"Loại file không được hỗ trợ","Loading___":"Đang tải...","Loading":"Đang tải","Check_that_your_number_is_correct":"Kiểm tra xem số của bạn có đúng không","Copied":"Đã sao chép","Copy":"Sao chép","Send_link":"Gửi đường dẫn","How_to_scan_a_QR_code":"Cách quét mã QR","Point_your_phone’s_camera_at_the_QR_code":"Chĩa máy quay trên điện thoại của bạn vào mã QR","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"Nếu không hoạt động, tải một mã quét QR từ Google Play hoặc the App Store","or":"hoặc","Scan_QR_code":"Quét mã QR","Get_link_via_SMS":"Nhận đường dẫn qua SMS","Copy_link":"Sao chép đường dẫn","Sending":"Đang gửi","Enter_mobile_number":"Nhập số điện thoại","Enter_your_mobile_number:":"Nhập số điện thoại của bạn:","Scan_the_QR_code_with_your_phone":"Quét mã QR với điện thoại của bạn","Send_this_one-time_link_to_your_phone":"Gửi đường dẫn giới hạn đến điện thoại của bạn","Open_the_link_on_your_mobile":"Mở một đường dẫn trên điện thoại của bạn","Get_your_secure_link":"Nhận đường dẫn bảo mật của bạn","Copy_the_link_to_your_mobile_browser":"Sao chép đường dẫn vào trình duyệt trên điện thoại của bạn","Continue":"Tiếp tục","Make_sure§":"Hãy đảm bảo§","2__Your_desktop_window_stays_open":"2. Desktop của bạn vẫn đang mở","1__This_link_was_sent_by_you":"1. Đường dẫn được gửi bởi bạn","Continue_with_the_verification":"Tiếp tục thực hiện xác minh","Linked_to_your_computer":"Kết nối với máy tính của bạn","Take_a_photo_of_the_back_of_your_card":"Chụp một bức ảnh mặt sau thẻ của bạn","Take_a_photo_of_the_front_of_your_card":"Chụp một bức ảnh mặt trước thẻ của bạn","Take_a_photo_of_the_back_of_your_license":"Chụp một bức ảnh mặt sau giấy phép của bạn","Take_a_photo_of_the_front_of_your_license":"Chụp một bức ảnh mặt trước giấy phép của bạn","Take_a_photo_of_your_passport_photo_page":"Chụp trang hộ chiếu của bạn","Take_a_selfie_showing_your_face":"Chụp một bức ảnh có mặt của bạn","Take_a_photo_using_the_basic_camera_mode_instead":"Hãy chụp ảnh bằng chế độ máy ảnh cơ bản ","Take_a_photo":"Chụp một bức ảnh","Passport_photo_page":"Ảnh trang hộ chiếu","Thank_you":"Xin cảm ơn","Verification_complete":"Hoàn thành xác minh","Refresh":"Làm mới","Recovery":"Phục hồi","Follow_these_steps_to_recover_camera_access:":"Làm theo các bước sau để khôi phục quyền truy cập máy ảnh:","Refresh_this_page_to_restart_the_identity_verification_process":"Làm mới trang này để bắt đầu lại quá trình xác minh danh tính","Grant_access_to_your_camera_from_your_browser_settings":"Cấp quyền truy cập vào máy ảnh của bạn từ cài đặt trình duyệt","Recover_camera_access_to_continue_face_verification":"Khôi phục quyền truy cập máy ảnh để tiếp tục xác minh khuôn mặt","Camera_access_is_denied":"Truy cập vào camera đã bị từ chối","We_cannot_verify_you_without_using_your_camera":"Chúng tôi không thể xác minh cho bạn nếu không sử dụng camera","Enable_camera":"Bật camera","When_prompted,_you_must_enable_camera_access_to_continue":"Khi được nhắc, bạn phải bật quyền truy cập máy ảnh để tiếp tục","Allow_camera_access":"Cho phép truy cập vào máy quay","Provide_the_whole_document_page_for_best_results":"Cung cấp toàn bộ trang tài liệu để có kết quả tốt nhất","Upload_back_of_card_from_your_computer":"Tải mặt sau thẻ của bạn từ máy tính","Upload_front_of_card_from_your_computer":"Tải mặt trước thẻ của bạn từ máy tính","Upload_back_of_license_from_your_computer":"Tải lên mặt sau của giấy phép từ máy tính của bạn","Upload_front_of_license_from_your_computer":"Tải lên mặt trước của giấy phép từ máy tính của bạn","Upload_passport_photo_page_from_your_computer":"Tải ảnh hộ chiếu của bạn từ máy tính","Upload_a_selfie_from_your_computer":"Tải một selfie từ máy tính của bạn","Take_photo":"Chụp ảnh","Upload":"Tải lên","Selfie":"Ảnh tự chụp","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"Kiểm tra xem nó đã được kết nối và hoạt động chưa. Bạn cũng có thể tiếp tục xác minh trên điện thoại của mình","Make_sure_your_device_has_a_working_camera":"Đảm bảo thiết bị của bạn có camera đang hoạt động","Camera_not_working?":"Camera không hoạt động?","It_may_be_disconnected__Try_using_your_phone_instead_":"Máy ảnh có thể bị ngắt kết nối. Thử dùng điện thoại thay thế.","Make_sure_your_device's_camera_works":"Đảm bảo máy quay trên điện thoại của bạn vẫn hoạt động","Camera_not_working":"Camera không hoạt động","Remember_to_press_stop_when_you're_done__Redo_video_actions":"Hãy nhớ nhấn dừng khi bạn đã xong. Làm lại đoạn phim hành động","Looks_like_you_took_too_long":"Dường như bạn đã mất quá nhiều thời gian","View_from_camera":"Xem qua camera","Take_a_selfie":"Chụp selfie","Photo_of_your_face":"Ảnh khuôn mặt của bạn","Make_sure_your_selfie_clearly_shows_your_face":"Đảm bảo ảnh tự chụp của bạn hiển thị rõ ràng khuôn mặt của bạn","Check_selfie":"Kiểm tra ảnh tự chụp","Tips_to_take_a_good_selfie":"Các mẹo để có một bức ảnh tự chụp đẹp","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"Hướng về phía trước và đảm bảo rằng mắt bạn hiện rõ","Remove_your_glasses,_if_necessary":"Hãy bỏ kính, nếu cần thiết","We'll_compare_it_with_your_document":"Chúng tôi sẽ so sánh chúng với các tài liệu của bạn","Your_link_will_expire_in_one_hour":"Đường dẫn của bạn sẽ hết hạn sau một giờ","Keep_this_window_open_while_using_your_mobile":"Để mở cửa sổ trình duyệt này khi bạn đang sử dụng điện thoại","Resend_link":"Gửi lại đường dẫn","We've_sent_a_secure_link_to_%{number}":"Chúng tôi đã gửi một link an toàn tới %{number}","It_may_take_a_few_minutes_to_arrive":"Sẽ mất vài phút để chuyển dữ liệu","Check_your_mobile":"Hãy kiểm tra điện thoại của bạn","Your_mobile_link_will_expire_in_one_hour":"Đường dẫn trên điện thoại của bạn sẽ hết hạn sau một giờ","Don't_refresh_this_page":"Đừng làm mới trang này","Once_you've_finished_we'll_take_you_to_the_next_step":"Một khi bạn đã hoàn thành chúng tôi sẽ đưa bạn đến bước tiếp theo","Connected_to_your_mobile":"Kết nối tới di động của bạn","Upload_photo":"Tải lên ảnh","Example_of_a_blurry_document":"Ví dụ về giấy tờ bị mờ","All_details_must_be_clear_—_nothing_blurry":"Mọi chi tiết phải rõ ràng — không bị mờ","Example_of_a_cut-off_document":"Ví dụ về tài liệu bị khuyết","Show_all_details_—_including_the_bottom_2_lines":"Hiển thị tất cả chi tiết - bao gồm 2 dòng cuối","Example_of_a_document_with_glare":"Ví dụ của tài liệu bị lóa","Move_away_from_direct_light_—_no_glare":"Tránh khỏi ánh sáng trực tiếp — không bị lóa","Document_example":"Ví dụ về tài liệu","The_photo_should_clearly_show_your_document":"Ảnh phải hiển thị rõ ràng tài liệu của bạn","Scans_and_photocopies_are_not_accepted":"Các bản scan và sao chép không được chấp nhận","Upload_passport_photo_page":"Đăng ảnh trang hộ chiếu","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"Để mở một tài khoản ngân hàng, chúng tôi sẽ cần phải xác minh danh tính của bạn.","It_will_only_take_a_couple_of_minutes_":"Việc này sẽ chỉ mất vài phút.","Verify_Identity":"Xác minh danh tính","Open_your_new_bank_account":"Mở mới tài khoản ngân hàng của bạn","Please_enter_a_valid_Login_ID_":"Vui lòng nhập một ID đăng kí hợp lệ.","Amount":"Số tiền","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"Yêu cầu chuyển [_1] [_2] từ [_3] sang [_4] đã được xử lý thành công.","Resale_not_offered":"Không được bán lại","You've_made_no_transactions_of_this_type_up_to_this_date_":"Bạn đã không thực hiện giao dịch nào thuộc loại này cho đến ngày hôm nay.","Date":"Ngày","Ref_":"Tham khảo.","Contract":"Hợp đồng","Purchase_Price":"Giá Mua","Sale_Date":"Ngày Bán","Sale_Price":"Giá Bán","Profit/Loss":"Lợi Nhuận/Thua Lỗ","Details":"Chi tiết","Total_Profit/Loss":"Tổng Lợi Nhuận/Thua Lỗ","Action_required!":"Hành động cần làm!","Sorry,_an_error_occurred_while_processing_your_request_":"Rất tiếc, đã xảy ra lỗi khi đang xử lý yêu cầu của bạn.","position(s)":"Đơn hàng","withdrawal(s)":"rút tiền","We_couldn’t_read_that!":"Chúng tôi không thể đọc được thông tin trên!","Remaining_characters:_[_1]_":"Số ký tự còn lại: [_1].","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"Vui lòng không nhập nhiều hơn [_1] ký tự cho cả hai trường.","Only_[_1]_are_allowed_":"Chỉ có [_1] được cho phép.","letters":"ký tự","numbers":"số","space":"khoảng trắng","Please_select_at_least_one_scope":"Vui lòng chọn ít nhất một phạm vi","New_token_created_":"Token mới đã được tạo.","The_maximum_number_of_tokens_([_1])_has_been_reached_":"Đã đạt đến độ dài tối đa của mã token ([_1]).","Name":"Tên","Token":"Mã Token","Scopes":"Phạm vi","Last_Used":"Lần Sử Dụng Gần Đây","Action":"Hành động","Are_you_sure_that_you_want_to_permanently_delete_the_token":"Bạn có chắc chắn muốn xóa vĩnh viễn token","Delete":"Xóa","Never_Used":"Chưa bao giờ sử dụng","You_have_not_granted_access_to_any_applications_":"Bạn không được phép truy cập bất kỳ một ứng dụng nào.","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"Bạn có chắc chắn muốn thu hồi quyền truy cập vào ứng dụng vĩnh viễn","Revoke_access":"Hủy bỏ truy cập","Admin":"Quản trị viên","Payments":"Thanh toán","Read":"Đọc","Trade":"Giao dịch","Trading_Information":"Thông tin giao dịch","Never":"Chưa bao giờ","Permissions":"Quyền hạn","Last_Login":"Lần đăng nhập cuối","You_did_not_change_anything_":"Bạn chưa thay đổi bất cứ nội dung nào.","Your_changes_have_been_updated_successfully_":"Các thay đổi của bạn đã được cập nhật thành công.","Successful":"Thành công","Date_and_Time":"Ngày và Thời gian","Browser":"Duyệt tìm","IP_Address":"Địa chỉ IP","Status":"Tình trạng","Your_account_has_no_Login/Logout_activity_":"Không có hoạt động Đăng nhập/Đăng xuất nào trên tài khoản của bạn.","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"Tài khoản của bạn được xác thực đầy đủ và mức giới hạn rút tiền của bạn đã được nâng lên.","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"Giới hạn rút tiền trong [_1] ngày của bạn hiện là [_2][_3].","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"Bạn đã rút [_1][_2] trong tổng số [_3] ngày qua.","Your_withdrawal_limit_is_[_1][_2]_":"Giới hạn rút tiền của bạn là [_1][_2].","You_have_already_withdrawn_[_1][_2]_":"Bạn đã rút [_1][_2].","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"Do đó, số dư có thể rút của bạn chỉ tối đa [_1][_2], tùy thuộc vào số tiền trong tài khoản của bạn.","Please_confirm_that_all_the_information_above_is_true_and_complete_":"Xin vui lòng xác nhận rằng tất cả các thông tin trên là đúng sự thật và đầy đủ.","Your_settings_have_been_updated_successfully_":"Thiết lập của bạn đã được cập nhật thành công.","Sorry,_an_error_occurred_while_processing_your_account_":"Rất tiêt, Lỗi xảy ra trong khi đang xử lý tài khoản của bạn.","Please_select_a_country":"Xin vui lòng chọn quốc gia","Timed_out_until":"Tạm ngưng cho đến khi","Excluded_from_the_website_until":"Loại trừ từ các trang web cho đến khi","Session_duration_limit_cannot_be_more_than_6_weeks_":"Giới hạn thời hạn phiên không thể nhiều hơn 6 tuần.","Time_out_must_be_after_today_":"Thời hạn kết thúc phải sau hôm nay.","Time_out_cannot_be_more_than_6_weeks_":"Thời hạn không thể nhiều hơn 6 tuần.","Time_out_cannot_be_in_the_past_":"Thời hạn kết thúc không thể tồn tại trong quá khứ.","Please_select_a_valid_time_":"Vui lòng chọn một thời gian hợp lệ.","Exclude_time_cannot_be_less_than_6_months_":"Thời gian loại trừ không thể ít hơn 6 tháng.","Exclude_time_cannot_be_for_more_than_5_years_":"Thời gian loại trừ không thể nhiều hơn 5 năm.","Confirm_changes":"Xác nhận thay đổi","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"Chúng tôi sẽ cập nhật giới hạn của bạn. Chọn [_1]Đồng ý và chấp thuận[_2] để xác nhận rằng bạn hoàn toàn chịu trách nhiệm cho các hành động của mình, và chúng tôi sẽ không chịu trách nhiệm cho bất kỳ ảnh hưởng gây nghiện hoặc mất mát nào.","Agree_and_accept":"Đồng ý và chấp thuận","Go_back":"Quay lại","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"Khi bạn nhấp vào \"OK\" bạn sẽ bị loại bỏ khỏi giao dịch trên trang web tới ngày được chọn.","Your_changes_have_been_updated_":"Những thay đổi của bạn đã được cập nhật.","Disable":"Vô hiệu hoá","Enable":"Kích hoạt","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"Bạn đã kích hoạt thành công xác thực 2 yếu tố cho tài khoản của mình.","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"Bạn đã vô hiệu hoá thành công xác thực 2 yếu tố cho tài khoản của mình.","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"Bạn không cần phải xác minh tài khoản vào lúc này. [_1]Chúng tôi sẽ thông báo khi nào tài khoản của bạn cần được xác minh.","No_authentication_required":"Không cần xác minh","Back_to_trading":"Tiếp tục giao dịch","You_are_categorised_as_a_professional_client_":"Bạn được phân loại như là một khách hàng chuyên nghiệp.","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"Bạn được phân loại như là một khách hàng bán lẻ. Nộp đơn xét duyệt để được là một khách hàng chuyên nghiệp.","Bid":"Giá thầu","Closed_Bid":"Đóng thầu","Reference_ID":"ID tham khảo","Description":"Mô tả","Credit/Debit":"Tín dụng/Ghi nợ","Balance":"Số Dư Tài Khoản","Top_up_error":"Lỗi nạp","Understood":"Đã hiểu","Top-up_successful":"Nạp thành công","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] đã được ghi vào tài khoản ảo của bạn: [_2].","Go_to_statement":"Xem sao kê","Continue_trading":"Tiếp tục giao dịch","Your_Demo_balance_has_been_reset_":"Số dư Demo của bạn đã được đặt lại.","Account":"Tài khoản","Available_Markets":"Những thị trường đang có sẵn","Type":"Loại","Currency":"Tiền tệ","Multipliers_Account":"Tài khoản Multipliers","Gaming_Account":"Tài khoản Gaming","Options_Account":"Tài khoản Quyền chọn","Real_Account":"Tài khoản Thực","Jurisdiction":"Thẩm quyền","Create_account":"Tạo tài khoản","Change_currency":"Thay đổi loại tiền tệ","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"Lưu ý: Bạn bị giới hạn ở một tài khoản tiền pháp định. Đơn vị tiền trong tài khoản pháp định của bạn có thể được thay đổi trước khi bạn gửi tiền vào tài khoản pháp định của mình lần đầu tiên hoặc tạo tài khoản MT5 thực (hoặc tài khoản Deriv X thực tại deriv.com). Bạn cũng có thể mở một tài khoản cho mỗi loại tiền mã hóa được hỗ trợ.","This_account_is_disabled":"Tài khoản này bị vô hiệu hoá","This_account_is_excluded_until_[_1]":"Tài khoản này bị loại trừ cho đến khi [_1]","Set_currency":"Thiết lập tiền tệ","Commodities":"Hàng hóa","Forex":"Thị trường ngoại hối","Stock_Indices":"Chỉ số chứng khoán","Stocks":"Chứng khoáng","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"Nếu bạn đã có một tài khoản, chúng tôi sẽ gửi một đường dẫn vào email của bạn trong vài phút để thực hiện đổi mật khẩu.","Sign_up":"Đăng kí","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"Giao dịch hợp đồng chênh lệch (CFD) trên Chỉ số tổng hợp có thể không phù hợp với tất cả mọi người. Vui lòng đảm bảo rằng bạn hiểu đầy đủ các rủi ro liên quan, bao gồm khả năng mất tất cả số tiền trong tài khoản MT5 của bạn. \bCá cược có thể gây nghiện - hãy giao dịch có trách nhiệm.","Do_you_wish_to_continue?":"Bạn có muốn tiếp tục?","{SPAIN_ONLY}You_are_about_to_purchase_a_product_that_is_not_simple_and_may_be_difficult_to_understand:_Contracts_for_difference_and_forex__As_a_general_rule,_the_CNMV_considers_that_such_products_are_not_appropriate_for_retail_clients,_due_to_their_complexity_":"{SPAIN ONLY}Bạn sắp mua một sản phẩm không đơn giản và có thể khó hiểu: Hợp đồng chênh lệch và ngoại hối. Theo nguyên tắc chung, CNMV cho rằng các sản phẩm đó không phù hợp với khách hàng bán lẻ, do tính phức tạp của chúng.","Acknowledge":"Sự thừa nhận","Change_Password":"Thay Đổi Mật Khẩu","The_investor_password_of_account_number_[_1]_has_been_changed_":"Mật khẩu nhà đầu tư của tài khoản số [_1] đã bị thay đổi.","Reset_Password":"Đổi Mật Khẩu","Verify_Reset_Password":"Xác minh thiết lập lại mật khẩu","Please_check_your_email_for_further_instructions_":"Vui lòng kiểm tra email của bạn để được hướng dẫn thêm.","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"tiền gửi [_1] từ [_2] đến tài khoản số [_3] được thực hiện. Giao dịch ID: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"% 1 rút khỏi số tài khoản% 2 đến% 3 được thực hiện. ID giao dịch:% 4","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"Để rút từ MetaTrader 5 [_1], vui lòng [_2]Xác thực[_3] tài khoản Binary của bạn.","Current_password":"Mật khẩu hiện tại","New_password":"Mật khẩu mới","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"Để chuyển tiền vào tài khoản MT5 của bạn, hãy nhập số tiền [_1] hoặc hơn","You_have_insufficient_funds_in_your_MT5_account_":"Bạn có đủ vốn trong tài khoản MT5.","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"Xin lỗi, tính năng này không có sẵn trong thẩm quyền của bạn.","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"Do vấn đề với máy chủ, một số tài khoản MT5 của bạn không khả dụng bây giờ. [_1]Vui lòng thông cảm cho chúng tôi và cảm ơn sự kiên nhẫn của bạn.","Unavailable":"Không khả dụng","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] đã được ghi vào tài khoản ảo MT5 của bạn: [_2].","_(Region_added)":" (Khu vực đã được cập nhật)","_(Temporarily_unavailable)":" (Tạm thời không khả dụng)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"Máy chủ MT5 của chúng tôi tạm thời không khả dụng. Chúng tôi đang làm việc để khôi phục chúng. Vui lòng thử lại trong vài phút.","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"Sử dụng mật khẩu MT5 để đăng nhập vào bất kỳ tài khoản [_1] nào của bạn khi sử dụng ứng dụng MT5 trên điện thoại di động hoặc các thiết bị khác của bạn.","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"Thao tác này sẽ thay đổi mật khẩu cho tất cả các tài khoản [_1] của bạn.","Demo_Accounts":"Tài khoản demo","Real-Money_Accounts":"Tài khoản tiền thật","Demo_Account":"Tài khoản Demo","Real-Money_Account":"Tài khoản tiền thật","for_account_[_1]":"cho tài khoản [_1]","[_1]_Account_[_2]":"[_1] tài khoản [_2]","MT5_Financial":"MT5 tài chính","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"Nhập mật khẩu MT5 để thêm một tài khoản [_1] [_2].","demo":"thử nghiệm","real":"thực tế","MT5_Synthetic":"MT5 tổng hợp","Get_[_1]":"Có thêm [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"Số dư tài khoản demo của bạn hiện nay là [_1] hoặc ít hơn. Bạn có thể nạp thêm vào tài khoản demo [_2].","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"Bạn có thể nạp [_1] vào tài khoản demo nếu số dư của bạn là từ [_2] trở xuống.","Yes,_I'm_sure":"Vâng, tôi chắc chắn","Are_you_sure?":"Bạn có chắc không?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"Bạn sẽ không thể thay đổi đơn vị tiền tệ tài khoản tiền pháp định của mình sau khi tạo tài khoản [_1] này. Bạn có chắc muốn tiếp tục?","OK":"Ok","Go_to_Deriv_to_add_an_MT5_account":"Đi tới Deriv để tạo tài khoản MT5","Back":"Quay lại","Address":"Địa chỉ","Account_currency":"Loại Tiền Tệ","Financial_assessment":"Đánh giá tài chính","Personal_details":"Thông tin cá nhân","Terms_of_use":"Điều khoản sử dụng","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"Tether ERC20 (eUSDT) là một phiên bản của Tether được gắn theo USD và được xây dựng trên chuỗi khối Bitcoin.","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"Tether ERC20 (eUSDT) là một phiên bản của Tether được gắn theo USD và được lưu trữ trên nền tảng Ethereum.","Title_and_name":"Tên và chức vụ","Real_money_account_opening":"Mở tài khoản tiền thực","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"Chuỗi xác nhận của bạn đã hết hiệu lực hoặc hết hạn. Xin vui lòng nhấp chuột vào đây để khởi động lại quá trình xác minh.","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"Địa chỉ email cung cấp đang đã được sử dụng. Nếu bạn quên mật khẩu của bạn, hãy thử công cụ phục hồi mật khẩu của chúng tôi hoặc liên hệ với dịch vụ khách hàng của chúng tôi.","Password_is_not_strong_enough_":"Mật khẩu không đủ mạnh.","Upgrade_now":"Nâng cấp ngay bây giờ","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] ngày [_2] giờ [_3] phút","Your_trading_statistics_since_[_1]_":"Số liệu thống kê giao dịch của bạn kể từ [_1].","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1] giao dịch có thể trở thành một cơn nghiện thực sự, cũng như bất kỳ hoạt động nào khác có thể bị đẩy đến giới hạn của nó. Để tránh rủi ro của việc nghiện ngập như vậy, chúng tôi cung cấp một phương thức kiểm duyệt thực tế để cho bạn có được một bản tổng quát những giao dịch và tài khoản của bạn một cách thường xuyên.","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] Xin vui lòng nhấp vào liên kết dưới đây để khởi động lại quá trình khôi phục mật khẩu.","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"Bạn có mật khẩu Binary mới để đăng nhập vào Binary.com.","Success":"Thành công","Done":"Hoàn tất","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Tài khoản Binary của bạn đã bỏ liên kết với [_1]. Hãy sử dụng [_2]email và mật khẩu của bạn để đăng nhập trong tương lai.","Success!":"Thành công!","Got_it":"Đã hiểu","Binary_Password_Reset":"Đặt lại Mật khẩu Binary","Binary_password":"Mật khẩu Binary","You_have_added_a_[_1]_account_":"Bạn đã thêm vào một tài khoản [_1].","Add_account":"Thêm tài khoản","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"Tether như một token Omni (USDT) là một phiên bản của Tether được lưu trữ trên lớp Omni trên blockchain Bitcoin.","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"Tether như một mã thông báo ERC20 (eUSDT) là một phiên bản của Tether được lưu trữ trên Ethereum.","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"Tether như một token TRC20 (tUSDT) là một phiên bản của Tether được lưu trữ trên Tron.","Add_new_crypto_account":"Thêm tài khoản tiền kỹ thuật số mới","Add_new_account":"Thêm tài khoản mới","Create_a_cryptocurrency_account":"Tạo một tài khoản tiền kỹ thuật số","Choose_your_preferred_cryptocurrency":"Chọn loại tiền điện tử mong muốn","You_can_open_an_account_for_each_cryptocurrency_":"Bạn có thể mở một tài khoản cho mỗi loại tiền điện tử.","Choose_a_cryptocurrency_account":"Chọn một tài khoản tiền kỹ thuật số","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"Chọn một trong những tài khoản của bạn hoặc thêm một tài khoản tiền kỹ thuật số mới","Choose_an_account":"Chọn một tài khoản","Choose_one_of_your_accounts_or_add_a_new_account":"Chọn một trong những tài khoản của bạn hoặc thêm một tài khoản mới","Choose_one_of_your_accounts":"Chọn một trong những tài khoản của bạn","Please_select_the_currency_for_this_account:":"Vui lòng chọn đơn vị tiền tệ cho tài khoản:","deposit":"gửi tiền","deposit_or_create_a_CFDs_account":"Nạp tiền hoặc tạo mới một tài khoản CFD","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"Bạn có chắc chắn muốn tạo một tài khoản [_1] ngay bây giờ?","Note:":"Lưu ý:","You_may_open_one_account_for_each_supported_cryptocurrency_":"Bạn được phép mở một tài khoản cho mỗi đồng tiền ảo được hỗ trợ.","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"Bạn có chắc chắn muốn tạo một tài khoản fiat tại [_1]?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"Bạn chỉ được sở hữu một tài khoản fiat. Bạn có thể thay đổi loại tiền tệ của tài khoản fiat bất cứ lúc nào trước khi bạn lần đầu tiên [_1].","Yes":"Có","Create_[_1]_account":"Tạo tài khoản [_1]","You_have_successfully_set_your_account_currency_to_[_1]_":"Bạn đã đặt thành công tiền tệ tài khoản của mình thành [_1].","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"Bạn đã thay đổi đơn vị tiền tệ thành công từ [_1] sang [_2].","Please_choose_a_currency":"Hãy chọn một loại tiền tệ","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"Bạn có mật khẩu MT5 mới để đăng nhập vào tài khoản [_1] của mình trên web và ứng dụng dành cho thiết bị di động.","Accumulator":"Bộ tích lũy","Asian_Down":"Châu Á Giảm","Asian_Up":"Châu á tăng","Higher":"Cao Hơn","Higher_or_equal":"Cao Hơn hoặc Bằng","Call_Spread":"Gọi biên","Digit_Differs":"Số khác","Digit_Even":"Số chẵn","Digit_Matches":"Số phù hợp","Digit_Odd":"Số lẻ","Digit_Over":"Số vượt quá","Digit_Under":"Số dưới","Ends_Outside":"Kết Thúc Ra Ngoài","Ends_Between":"Kết Thúc Giữa","Multiplier_Down":"Số nhân Giảm","Multiplier_Up":"Số nhân Tăng","Does_Not_Touch":"Không Chạm","Touches":"Chạm","Lower":"Thấp hơn","Lower_or_equal":"Thấp hơn hoặc bằng","Put_Spread":"Bán Chênh lệch","Stays_Between":"Nằm Giữa","Only_Ups":"Chỉ Tăng","Only_Downs":"Chỉ Giảm","High_Tick":"Tick cao","Low_Tick":"Tick thấp","Goes_Outside":"Ra Ngoài","Call":"Gọi","Put":"Đặt","Equals":"Bằng nhau","Not":"Không","Buy":"Mua","Sell":"Bán","Waiting_for_contract_settlement_":"Đang chờ giải quyết hợp đồng.","including_Deal_Cancel__Fee":"Bao gồm Phí Huỷ bỏ Giao dịch","Contract_has_not_started_yet":"Hợp đồng chưa được bắt đầu","This_contract_is_only_available_on_[_1]DTrader[_2]_":"Hợp đồng này chỉ khả dụng trên [_1]DTrader[_2].","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"Gói thầu này chỉ có trên DTrader.[_1][_2]Đi tới Dtrader[_3] để đóng hoặc huỷ gói thầu.","Contract_Result":"Kết quả hợp đồng","Close_Time":"Thời gian đóng","Exit_Spot_Time":"Thời gian chốt","Audit":"Kiểm toán","View_chart":"Xem biểu đồ","Audit_Page":"Kiểm tra trang","Contract_Starts":"Hợp đồng bắt đầu","Contract_Ends":"Kết thúc hợp đồng","Contract_Details":"Chi tiết Hợp đồng","Target":"Mục tiêu","Contract_Information":"Thông tin của Hợp đồng","Contract_Type":"Loại hợp đồng","Transaction_ID":"ID Giao Dịch","Remaining_Time":"Thời gian còn lại","Maximum_payout":"Thanh toán tối đa","Barrier_Change":"Giới hạn Thay đổi","Current":"Hiện tại","Spot_Time":"Thời điểm làm giá","Current_Time":"Thời gian hiện tại","Indicative":"Chỉ thị","Potential_Profit/Loss":"Lợi nhuận / thua lỗ tiềm năng","Deal_Cancel__Fee":"Hủy Giao Dịch. Phí","You_can_close_this_window_without_interrupting_your_trade_":"Bạn có thể đóng cửa sổ này mà không gián đoạn giao dịch của bạn.","There_was_an_error":"Đã có lỗi xảy ra","Sell_at_market":"Bán tại thị trường","Note":"Lưu ý","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"Hợp đồng sẽ được bán ở giá thị trường hiện hành khi máy chủ nhận được yêu cầu. Giá này có thể khác với giá đã được chỉ định.","You_have_sold_this_contract_at_[_1]_[_2]":"Bạn đã bán hợp đồng này với mức [_1] [_2]","Your_transaction_reference_number_is_[_1]":"Số tham chiếu giao dịch của bạn là [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"Cảm ơn bạn đã đăng ký! Vui lòng kiểm tra email của bạn để hoàn tất quá trình đăng ký.","All_markets_are_closed_now__Please_try_again_later_":"Tất cả các thị trường đều đã đóng cửa. Vui lòng thử lại sau.","Withdrawal":"Rút tiền","demo_credit_to_account":"tín dụng demo được thêm vào tài khoản","login":"đăng nhập","logout":"đăng xuất","Asians":"Châu Á","Call_Spread/Put_Spread":"Mua Chênh lệch/Bán Chênh lệch","Digits":"Chữ số","Ends_Between/Ends_Outside":"Kết Thúc Giữa / Kết Thúc Ra Ngoài","High/Low_Ticks":"Tick Cao/Thấp","Reset_Call/Reset_Put":"Đặt lại Call/ Đặt lại Put","Stays_Between/Goes_Outside":"Nằm Giữa/ Ra Ngoài","Touch/No_Touch":"Chạm/Không Chạm","Christmas_Day":"Lễ Giáng Sinh","Closes_early_(at_18:00)":"Kết thúc sớm (lúc 18:00)","Closes_early_(at_21:00)":"Kết thúc sớm (lúc 21:00)","Fridays":"Thứ Sáu","New_Year's_Day":"Ngày của năm mới","today":"hôm nay","today,_Fridays":"hôm nay, Thứ Sáu","There_was_a_problem_accessing_the_server_":"Có lỗi khi truy cập máy chủ.","There_was_a_problem_accessing_the_server_during_purchase_":"Có lỗi trung cập vào máy chủ khi mua."}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/zh_cn.js b/src/javascript/_autogenerated/zh_cn.js index f1f3c36d34c39..b7b1b7a01a71c 100644 --- a/src/javascript/_autogenerated/zh_cn.js +++ b/src/javascript/_autogenerated/zh_cn.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['ZH_CN'] = {"Real":"真实","Multipliers":"乘数期权","Gaming":"博彩","Options":"期权","Demo":"模拟","Real_CFDs":"真实差价合约","Real_Financial":"真实金融","Demo_CFDs":"演示差价合约","Demo_Financial":"演示金融","Synthetic":"综合","Demo_Synthetic":"演示综合","Real_Synthetic":"真实综合","CFDs":"差价合约","Financial":"金融","Financial_STP":"金融 STP","Demo_Financial_STP":"演示金融 STP","Real_Financial_STP":"真实金融 STP","Bitcoin":"比特币","Ethereum":"以太坊","Ether_Classic":"古典以太币","Litecoin":"莱特币","Binance_USD":"币安美元","Multi-Collateral":"多资产抵押","Paxos_Standard":"Paxos 标准","Tether_Omni":"泰达 Omni","Tether_ERC20":"泰达 ERC20","Binary_Coin":"Binary 币","Thank_you,_we'll_get_back_to_you_within_24_hours":"谢谢,我们会在24小时内回复","Online":"在线","Offline":"离线","Connecting_to_server":"连接服务器","Use_a_few_words,_avoid_common_phrases":"用几个词,避免常用短语","No_need_for_symbols,_digits,_or_uppercase_letters":"不需要符号、数字或大写字母","Add_another_word_or_two__Uncommon_words_are_better_":"加上一两个字。不常见的词更好。","Straight_rows_of_keys_are_easy_to_guess":"直线排列键很容易猜到","Short_keyboard_patterns_are_easy_to_guess":"短键盘列式很容易猜到","Use_a_longer_keyboard_pattern_with_more_turns":"使用更长的键盘列式并给予更多变化","Repeats_like_\"aaa\"_are_easy_to_guess":"像“aaa”这样的重复密码很容易猜到","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"像“abcabcabc”这样的重复词比“abc”更难猜测","Avoid_repeated_words_and_characters":"避免重复的单词和字符","Sequences_like_abc_or_6543_are_easy_to_guess":"像abc或6543这样的序列密码很容易猜到","Avoid_sequences":"避免序列式密码","Recent_years_are_easy_to_guess":"以最近数年的年份作密码很容易猜出","Avoid_recent_years":"避免用最近数年的年份","Avoid_years_that_are_associated_with_you":"避免用相关的年份","Dates_are_often_easy_to_guess":"日期通常很容易猜到","Avoid_dates_and_years_that_are_associated_with_you":"避免相关的日期和年份","This_is_a_top-10_common_password":"这是10个最常用的密码","This_is_a_top-100_common_password":"这是100个最常用的密码","This_is_a_very_common_password":"这是很常用的密码","This_is_similar_to_a_commonly_used_password":"这类似于常用密码","A_word_by_itself_is_easy_to_guess":"一个词本身很容易猜到","Names_and_surnames_by_themselves_are_easy_to_guess":"仅名字和姓氏本身很容易猜到","Common_names_and_surnames_are_easy_to_guess":"常用名称和姓氏容易猜到","Capitalization_doesn't_help_very_much":"大写并不提供很大帮助","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"全大写几乎和全小写一样容易猜出","Reversed_words_aren't_much_harder_to_guess":"倒写单词并不难猜","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"容易猜测的替换,例如用'@'代替'a'并没有提供太大帮助","This_password_is_on_the_blacklist":"此密码已列入黑名单","Unknown_OS":"未知 OS","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"将被转到不是Binary.com拥有的第三方网站。","Click_OK_to_proceed_":"单击 \"确定\" 继续。","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"请确保设备已安装了电报应用程序。","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"必须启用浏览器的web存储,[_1]才能正常工作。请启用它或退出私人浏览模式。","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"请 [_1]登录[_2] 或 [_3]注册[_4]以查看此页 。","This_feature_is_available_to_demo_accounts_only_":"此功能仅适用于演示账户。","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"正在使用演示账户。请切换到或开立真实账户以访问收银台。","This_page_is_only_available_to_logged_out_clients_":"此页面仅适用于已登出的客户。","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"乘数账户无法进行二元期权交易。","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"通过乘数账户无法进行二元期权交易。
请转回期权账户。","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"抱歉,英国和马恩岛不提供期权交易","Binary_options_trading_is_not_available_in_your_country_":"您的国家无法进行二元期权交易。","This_page_is_not_available_in_your_country_of_residence_":"您的居住国无法使用此页面。","Page_not_available,_you_did_not_deactivate_your_account_":"页面不可用,没有停用账户。","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"很遗憾,您的国家不能使用此服务。如要交易乘数,请试用 Deriv 的 DTrader。","Go_to_DTrader":"前往 DTrader","Sign_out":"登出","[_1]_Account":"[_1]账户","Click_here_to_open_a_Real_Account":"单击此处开立真实账户","Open_a_Real_Account":"开立真实账户","Click_here_to_open_a_Multipliers_Account":"单击此处开立乘数账户","Click_here_to_open_an_Options_account":"单击此处开立期权账户","Open_a_Multipliers_Account":"开立乘数账户","Create_Account":"开立账户","Accounts_List":"账户列表","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"由于系统维护,暂时无法存款。一旦维护完成,即可存款。","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"由于系统维护,暂时无法取款。一旦维护完成,即可取款。","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,加密货币收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"收银台目前已被锁。请通过实时聊天与我们联系以了解如何解锁。","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"请设置 [_1]账户货币[_2] 以启用存款和取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"账户尚未通过验证。请提交 [_1]身份证明和地址证明[_2] 以验证账户并请求取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"账户尚未通过验证。请提交 [_1] 身份证明和地址证明[_2] 以验证账户并访问收银台。","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"提交的身份证明文件已过期。请提交有效的身份证件以解锁收银台。","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]身份证明[_2]已过期。","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]地址证明[_2]已过期。","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]身份证明[_3]与[_2]地址证明[_3]还未通过验证。","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]身份证明[_2]还未通过验证。","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]地址证明[_2]还未通过验证。","Please_submit_your_[_1]proof_of_identity[_2]_":"请提交[_1]身份证明[_2]。","Please_submit_your_[_1]proof_of_address[_2]_":"请提交[_1]地址证明[_2]。","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"已选择在 [_1] 前自我禁止在网站交易。如果在自我禁止期后无法交易或存款,请通过实时聊天与我们联系。","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"由于尚未设置 30 天交易限额,您已被暂时禁用收银台。请前往 [_1]自我禁止[_2] 并设置 30 天交易限额。","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"MT5账户已被禁提款。请检查电子邮件,以了解更多详情。","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"很遗憾,只能存款。请通过实时聊天与我们联系以启用提款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用存款和取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用存款。","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"尚未设置居住国家/地区。要访问收银台,请前往账户设置的“个人详细信息”部分更新 [_1]居住国家/地区[_2]。","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"收银台已被锁。请完成[_1]财务评估[_2]以解锁。","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"没有提供税务编号。法律和监管规定要求提供此信息。请到账户设置中的[_1]个人资料[_2],填写最新的税务编号。","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"很遗憾,只能取款。请通过实时聊天与我们联系。","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"账户已被禁提款。须等上载的文件通过验证。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"请[_1]接受更新条款和条件[_2]。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"请[_1]接受更新条款和条件[_2],以提高存款和交易限额。","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"账户暂时被禁用。请通过实时聊天与我们联系以再次启用存款和取款。","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"请完成合适性测试以访问收银台。","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"收银台已被锁。 继续操作之前,请参阅 [_1]我们如何保护您的资金[_2]。","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"账户需要验证。请提交[_1]身份证明[_2]以访问收银台。","Account_Authenticated":"账户验证","Connection_error:_Please_check_your_internet_connection_":"连接错误:请检查网络连接。","Network_status":"网络状态","This_is_a_staging_server_-_For_testing_purposes_only":"这是分期服务器 -仅用于测试目的","The_server_endpoint_is:_[_2]":"服务器终端是: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"网络浏览器 ([_1]) 已过时,并可能会影响交易操作。继续操作须自行承担风险。[_2]更新浏览器[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"已达每秒钟提呈请求的最高限率。请稍后重试。","There_was_some_invalid_character_in_an_input_field_":"某字段的输入字符无效。","regulated_by_the_UK_Gaming_Commission_(UKGC),":"由英国博彩委员会(UKGC)监管,","regulated_by_the_Malta_Gaming_Authority,":"由马耳他博彩局监管,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"由马耳他金融服务管理局(MFSA) 监管,","Please_select":"请选择","Please_accept_the_terms_and_conditions_":"请接受条款和条件。","Please_confirm_that_you_are_not_a_politically_exposed_person_":"请确认您不是政治公众人士。","Today":"今天","Select_date":"选择日期","Barrier":"障碍","Entry_Spot":"入市现价","Exit_Spot":"退市现价","Charting_for_this_underlying_is_delayed":"此标的资产的图表数据存在延迟","Payout_Range":"赔付范围","Purchase_Time":"买入时间","Reset_Barrier":"重设障碍","Reset_Time":"重设时间","Selected_Tick":"选定跳动点","Exit_Time":"退市时间","Start_Time":"开始时间","Fiat":"法定货币","Crypto":"加密","Step_[_1]:_[_2]_([_1]_of_[_3])":"步骤 [_1]: [_2] ([_3] 的 [_1])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"验证码错误。请使用以下链接发送到电子邮件。","Indicates_required_field":"为必填字段","Please_select_the_checkbox_":"请选择复选框。","This_field_is_required_":"此字段为必填项。","Should_be_a_valid_number_":"必须是有效号码。","Up_to_[_1]_decimal_places_are_allowed_":"允许 [_1] 个小数位。","Should_be_[_1]":"必须为[_1]","Should_be_between_[_1]_and_[_2]":"须在[_1] 与 [_2]之间","Should_be_more_than_[_1]":"必须大于 [_1]","Should_be_less_than_[_1]":"必须少于[_1]","Insufficient_balance_":"余额不足。","Invalid_email_address_":"无效的电子邮件地址。","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"密码必须有大小写英文字母和数字。","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允许使用字母、数字、空格、连字符、句点和省略号。","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"仅允许字母、数字、空格和这些特殊字符:[_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允许字母、空格、连字符、句号和省略号。","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"只允许字母、数字、空格和连字符。","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"请输入有效的电话号 (例如 +15417541234)。","The_two_passwords_that_you_entered_do_not_match_":"两个输入的密码不一致。","[_1]_and_[_2]_cannot_be_the_same_":"[_1] 和 [_2] 不可相同。","Minimum_of_[_1]_characters_required_":"需至少[_1] 个字符。","You_should_enter_[_1]_characters_":"必须输入[_1]个字符。","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"应以字母或数字开始,可包含连字符和下划线。","Invalid_verification_code_":"无效的验证代码。","Your_password_cannot_be_the_same_as_your_email_address_":"密码不可与电子邮件地址相同。","Transaction_performed_by_[_1]_(App_ID:_[_2])":"交易执行者为[_1] (应用程序 ID: [_2])","Guide":"指南","Next":"下一页","Finish":"完成","Step":"步骤","Select_your_market_and_underlying_asset":"选择市场和基础资产","Select_your_trade_type":"选择交易类型","Adjust_trade_parameters":"调整交易参数","Predict_the_directionand_purchase":"预测价格走向
并购入","Your_session_duration_limit_will_end_in_[_1]_seconds_":"交易期持续时间限制将于[_1]秒内结束。","January":"一月","February":"二月","March":"三月","April":"四月","May":"五月","June":"六月","July":"七月","August":"八月","September":"九月","October":"十月","November":"十一月","December":"十二月","Jan":"一月","Feb":"二月","Mar":"三月","Apr":"四月","Jun":"六月","Jul":"七月","Aug":"八月","Sep":"九月","Oct":"十月","Nov":"十一月","Dec":"十二月","Sunday":"周日","Monday":"星期一","Tuesday":"星期二","Wednesday":"星期三","Thursday":"星期四","Friday":"星期五","Saturday":"周六","Su":"星期日","Mo":"星期一","Tu":"星期二","We":"星期三","Th":"星期四","Fr":"星期五","Sa":"星期六","Previous":"之前","Hour":"小时","Minute":"分钟","AM":"上午","PM":"下午","Verification_required":"需要验证","Verify_identity":"身份验证","From_account:_":"从账户: ","To_account:_":"至账户: ","Not_announced_for_this_currency_":"此货币未公布。","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"随时将演示账户余额重置为 [_1] 。","[_1]Manage_your_accounts[_2]":"[_1]管理账户[_2]","time":"时间","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"时间或开立 MT5 真实账户(或deriv.com 的 Deriv X 真实账户)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"已开立了MT5 真实账户(或deriv.com 的 Deriv X 真实账户),因此不能再更改币种。","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"已存入第一笔资金,因此不能再更改币种。","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"法定账户的币种当前设置为 [_1]。","Your_fiat_account's_currency_is_set_to_[_1]_":"法定账户的币种设置为 [_1]。","This_is_your_[_1]_account_":"这是 [_1] 账户。","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"首次[_3]存款之前,可以 [_1]设置新币种[_2]。","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"不想使用[_1]交易?可以另外开立加密货币账户。","Switch_account":"转换账户","Switch_account?":"转换账户?","To_deposit_money,_please_switch_to_your_[_1]_account_":"要存款,请转换至[_1]账户。","To_withdraw_money,_please_switch_to_your_[_1]_account_":"要取款,请转换至[_1]账户。","Switch_to_crypto_account?":"转换至加密账户?","To_deposit_cryptocurrency,_switch_your_account_":"要用加密货币存款,请先转换账户。","To_withdraw_cryptocurrency,_switch_your_account_":"要用加密货币取款,请先转换账户。","Cancel":"取消","Withdraw":"取款","Deposit":"存款","Town/City":"城镇/城市","First_line_of_home_address":"住家地址第一行","Postal_Code/ZIP":"邮编","State/Province":"州/省","Email_address":"电子邮件地址","Telephone":"电话","Country_of_Residence":"居住国","details":"详情","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Your_cashier_is_locked_":"收银台已锁定。","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"请注意,所选货币仅适用于受限制账户。","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"已达到提款限额。请上传身份和地址证明,以提高提款限额,并继续提款。","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"您的国家或首选币种不可使用付款代理服务。","Select_payment_agent":"选择付款代理","Amount_in":"金额单位为","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"只允许字母、数字、空格、连字符、句号、逗号和省略号。","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"从 [_3] 账户提取 [_1] [_2] 到支付代理 [_4]账户的请求已成功处理。","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"令牌已过期或失效。请点击[_1]此处[_2]重启验证程序。","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"抱歉,此货币的取款目前被禁用。","Please_[_1]deposit[_2]_to_your_account_":"请[_1]存入[_2]账户。","Sorry,_account_signup_is_not_available_in_your_country_":"对不起,您的所在国内不可注册账户。","Asset":"资产","Opens":"开盘","Closes":"收盘","Settles":"结算","Upcoming_Events":"未来事件","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"透过添加+/-给障碍偏移量定义。例如, +0.005 表示比入市现价高0.005 的障碍。","Digit":"数字期权","Percentage":"百分比","Waiting_for_entry_tick_":"正在等待进场跳动点。","High_Barrier":"高障碍","Low_Barrier":"低障碍","Waiting_for_exit_tick_":"正在等待退场跳动点。","Ticks_history_returned_an_empty_array_":"跳动点历史返回空数组","Chart_is_not_available_for_this_underlying_":"此标的工具图表不可用。","Purchase":"买入","Net_profit":"净收益","Return":"收益","Time_is_in_the_wrong_format_":"时间格式错误。","Rise/Fall":"上涨/下跌","Higher/Lower":"高于/低于","Matches/Differs":"相符/差异","Even/Odd":"偶/奇","Over/Under":"大于/小于","High-Close":"最高值-收盘","Close-Low":"收盘-最低值","High-Low":"最高值-最低值","Reset_Call":"重置看涨","Reset_Put":"重置看跌","Up/Down":"涨/跌","Only_Ups/Only_Downs":"持续上涨/持续下跌","In/Out":"范围之内/之外","Select_Trade_Type":"选择交易类型","Tick":"跳动点","Spot":"现价","Spot_Time_(GMT)":"现货时间 (GMT)","seconds":"秒","minutes":"分钟","hours":"小时","days":"天","ticks":"跳动点","tick":"跳动点","second":"秒","minute":"分钟","hour":"小时","day":"天","Duration":"期限","End_Time":"结束时间","Purchase_request_sent":"采购请求已发送","High":"最高值","Close":"收盘","Low":"最低值","Select_Asset":"选择资产","Search___":"搜索...","Maximum_multiplier_of_1000_":"最大乘数为1000。","Stake":"投注资金","Payout":"赔付","Multiplier":"乘数期权","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"对不起,账户无权进一步买入任何合约。","Trading_is_unavailable_at_this_time_":"此时无法交易。","Please_reload_the_page":"请重新加载页面","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"要求成为专业客户的申请正在处理中。","Your_professional_client_request_is_[_1]not_approved[_2]_":"申请成为专业客户的请求 [_1]不受批准[_2]。","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"一旦满足所需标准, 请重新申请。","More_information_can_be_found_in_an_email_sent_to_you_":"可以在发给您的电子邮件中找到更详细的信息。","I_want_to_reapply":"我想重新申请","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"欧盟的金融二元期权仅供专业投资者使用。","Apply_now_as_a_professional_investor":"立刻申请成为专业投资者","Try_our_[_1]Synthetic_Indices[_2]_":"请试试[_1]综合指数[_2]。","Try_our_other_markets_":"请尝试我们其他的市场。","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"请按照[_3]英国博彩[_4]委员会 (UKGC) 的需求完成[_1]真实账户表格[_2]以验证年龄。","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"账户访问已暂时受限制。欲知详情请查看收件箱。","Contract_Confirmation":"合约确认","Your_transaction_reference_is":"交易参考号是","Total_Cost":"成本总计","Potential_Payout":"可能的赔付额","Potential_Profit":"潜在利润","View":"查看","This_contract_won":"此合约获利","This_contract_lost":"此合约亏损","The_reset_time_is_[_1]":"重设时间为 [_1]","Now":"现在","Average":"平均","Buy_price":"买入价","Final_price":"最终价格","Loss":"亏损","Profit":"利润","Account_balance:":"账户余额:","Reverse_Side":"反面","Front_Side":"前侧","Pending":"待定","Submitting":"正在提交","Submitted":"已提交","Failed":"失败","Compressing_Image":"正在压缩图像","Checking":"检查中","Checked":"已检查","Unable_to_read_file_[_1]":"无法读取文件 [_1]","Passport":"护照","Identity_card":"身份证","Driving_licence":"驾驶执照","Invalid_document_format_":"无效的文档格式。","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"文件 ([_1]) 大小超过允许限额。允许的最大文件大小: [_2]","ID_number_is_required_for_[_1]_":"[_1] 需要身份证号。","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"ID 号([_1]) 只允许字母、数字、空格、下划线和连字符。","Expiry_date_is_required_for_[_1]_":"[_1] 需要有失效期日。","Place_of_birth":"出生地点","Please_select_the_country_of_document_issuance":"请选择文件签发国","Choose_the_document_type":"选择文件类型","Please_enter_the_correct_format__Example:":"请输入正确的格式。例如:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Google账户的电子邮件并点击邮件里的链接以继续操作。","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Facebook账户的电子邮件并点击邮件里的链接以继续操作。","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"查看与Apple ID关联的电子邮件账户并点击邮件里的链接以继续操作。","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"请单击邮件上的链接以更改 MT5 密码。","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"请单击邮件上的链接以更改 binary 密码。","We’ve_sent_you_an_email":"已给您发送电子邮件","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"正在使用 [_1] 账户登录到 Binary.com 账户。如果要将登录方式改成使用用户名和密码,请单击 [_2]取消链接[_3]按钮。","Linked_with_[_1]":"已与[_1]链接","You_will_need_to_set_a_password_to_complete_the_process_":"必须设置密码以完成流程。","Are_you_sure_you_want_to_unlink_from_[_1]?":"是否确认与[_1]解除链接?","Unlink":"解除链接","Country_not_found":"未找到国名","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"当前不支持该国家/地区的文档-尝试其他文档类型","Submit_document":"提交文件","Select_country":"选择国家","e_g__United_States":"例如美国","Search_for_country":"搜索国家","Select_issuing_country":"选择发件国家","Submit_verification":"提交验证","Tips":"提示","Documents_uploaded":"文档已上传","Document_uploaded":"文档已上传","Selfie_uploaded":"自拍照已上传","We're_now_ready_to_verify_your_identity":"我们现在准备验证您的身份","Great,_that's_everything_we_need":"太好了,这就是我们需要的一切信息","The_link_only_works_on_mobile_devices":"链接只能用于手机","Something's_gone_wrong":"出现错误","You'll_need_to_restart_your_verification_on_your_computer":"需用电脑重启验证","Get_secure_link":"获取安全链接","Steps_required_to_continue_verification_on_your_mobile":"手机继续验证所需的步骤","Check_back_here_to_finish_the_submission":"返回此处完成提交","Open_the_link_and_complete_the_tasks":"打开链接并完成任务","Send_a_secure_link_to_your_phone":"发送安全链接到手机","Here's_how_to_do_it:":"这是做法:","Continue_on_your_phone":"用电话继续操作","Your_computer_may_take_a_few_seconds_to_update":"电脑更新可能需要数秒钟","You_can_now_return_to_your_computer_to_continue":"现在可以返回电脑继续操作","Uploads_successful":"上传成功","Make_sure_everything_is_clear":"确保一切都很清楚","Blurry_photo_detected":"检测到模糊的照片","Make_sure_full_document_is_visible":"确保整个文件都清晰可见","Cut-off_image_detected":"检测到裁切图像","Move_away_from_direct_light":"远离直射光","Glare_detected":"检测到眩光","Make_sure_all_of_the_document_is_in_the_photo":"确保所有文档都在照片中","No_document_detected":"未检测到文件","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"确保卡详细信息清晰易读,没有模糊字体或眩光现象","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"如果看不清楚,就需要更长的时间进行验证","To_smoothly_verify_you,_we_need_a_better_photo":"为了顺利验证,我们需要更好的照片","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"确保许可证详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"确保护照详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"确保许可证详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"确保所有详细信息清晰易读,没有模糊字体或眩光现象","Redo":"恢复","Confirm":"确认","Upload_anyway":"仍要上传","Enlarge_image":"放大图像","Photo_of_your_document":"文件的相片","Check_your_image":"查看图像","Front_and_back":"正面和背面","Driver's_license":"驾驶执照","Face_photo_page":"脸部相片页面","Residence_permit":"居留许可证","Sorry,_no_mobile_phone_bills":"抱歉,不接受手机账单","Documents_you_can_use_to_verify_your_identity":"可用于验证身份的文件","It_must_be_an_official_photo_ID":"必须是带照片的正式身份证","These_are_the_documents_most_likely_to_show_your_current_home_address":"这些是最有可能显示当前家庭住址的文件","Choose_document":"选择文件","Select_a_%{country}_document":"选择 %{country} 文件","or_upload_photo_–_no_scans_or_photocopies":"或上传照片 - 不接受扫描件或影印件","Continue_on_phone":"用电话继续操作","Take_a_photo_with_your_phone":"用手机拍照","Submit_identity_card_(back)":"提交身份证(背面)","Submit_identity_card_(front)":"提交身份证(正面)","Submit_license_(back)":"提交执照 (背面)","Submit_license_(front)":"提交执照 (正面)","Submit_passport_photo_page":"提交含照片的护照页面","Submit_residence_permit_(back)":"提交居留许可证 (背面)","Submit_residence_permit_(front)":"提交居留许可证 (正面)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"用最新版本的Google Chrome重启该过程","Restart_the_process_on_the_latest_version_of_Safari":"用最新版本的 Safari 重启该过程","Unsupported_browser":"不受支持的浏览器","Close_identity_verification_screen":"关闭身份验证屏幕","Dismiss_alert":"消除警报","back":"返回","close":"关闭","Restart_process_on_a_different_device":"用其他设备重启进程","Camera_not_detected":"未检测到相机","Must_be_under_10MB_":"必须小于10MB。","File_size_exceeded_":"超过了文件大小。","Try_using_another_file_type_":"尝试使用其他文件类型。","File_not_uploaded_":"文件未上传。","An_error_occurred_while_loading_the_component":"加载组件时发生错误","Only_your_face_can_be_in_the_selfie":"自拍照只能拍脸","Multiple_faces_found":"发现多个面孔","Your_face_is_needed_in_the_selfie":"自拍照片必须包括脸部","No_face_found":"未找到人脸","Please_try_again":"请重试","Connection_lost":"连接中断","Copy_the_link_to_your_phone":"复制链接到手机","Too_many_failed_attempts":"失败尝试次数太多","Try_using_a_JPG_or_PNG_file":"尝试使用 JPG 或 PNG 文件","File_type_not_supported":"文件类型不受支持","Loading___":"正在加载...","Loading":"加载","Check_that_your_number_is_correct":"检查电话号码是否正确","Copied":"已复制","Copy":"复制","Send_link":"发送链接","How_to_scan_a_QR_code":"如何扫描 QR 码","Point_your_phone’s_camera_at_the_QR_code":"将手机的相机对准 QR 码","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"如果无法扫描,请从Google Play 或 App Store 下载 QR 码扫描应用","or":"或","Scan_QR_code":"扫描 QR 码","Get_link_via_SMS":"通过简讯获取链接","Copy_link":"复制链接","Sending":"发送中","Enter_mobile_number":"输入手机号","Enter_your_mobile_number:":"输入手机号:","Scan_the_QR_code_with_your_phone":"用手机扫描QR码","Send_this_one-time_link_to_your_phone":"发送此一次性链接到手机","Open_the_link_on_your_mobile":"用手机打开链接","Get_your_secure_link":"获取安全链接","Copy_the_link_to_your_mobile_browser":"复制链接到手机浏览器","Continue":"继续","Make_sure§":"确保§","2__Your_desktop_window_stays_open":"2. 桌面窗口保持打开状态","1__This_link_was_sent_by_you":"1. 此链接是您发送的","Continue_with_the_verification":"继续验证操作","Linked_to_your_computer":"与电脑连接","Take_a_photo_of_the_back_of_your_card":"卡背面拍照","Take_a_photo_of_the_front_of_your_card":"卡正面拍照","Take_a_photo_of_the_back_of_your_license":"许可证背面拍照","Take_a_photo_of_the_front_of_your_license":"许可证正面拍照","Take_a_photo_of_your_passport_photo_page":"为含照片的护照页面拍照","Take_a_selfie_showing_your_face":"拍张脸部自拍照","Take_a_photo_using_the_basic_camera_mode_instead":"改为使用基本相机模式拍照","Take_a_photo":"拍照","Passport_photo_page":"含照片的护照页面","Thank_you":"谢谢","Verification_complete":"验证完成","Refresh":"刷新","Recovery":"恢复","Follow_these_steps_to_recover_camera_access:":"请按照以下步骤恢复相机访问权限:","Refresh_this_page_to_restart_the_identity_verification_process":"刷新此页面以重启身份验证过程","Grant_access_to_your_camera_from_your_browser_settings":"通过浏览器设置给予相机的访问权限","Recover_camera_access_to_continue_face_verification":"恢复相机访问权限以继续面部验证","Camera_access_is_denied":"相机访问被拒","We_cannot_verify_you_without_using_your_camera":"不使用相机,无法验证您的身份","Enable_camera":"启用相机","When_prompted,_you_must_enable_camera_access_to_continue":"出现提示时,须启用相机访问权限以继续操作","Allow_camera_access":"允许相机访问","Provide_the_whole_document_page_for_best_results":"提供完整的文档页面以获得最佳结果","Upload_back_of_card_from_your_computer":"从电脑上传卡的背面","Upload_front_of_card_from_your_computer":"从电脑上传卡的正面","Upload_back_of_license_from_your_computer":"从电脑上传执照的背面","Upload_front_of_license_from_your_computer":"从电脑上传执照的正面","Upload_passport_photo_page_from_your_computer":"从电脑上传含照片的护照页面","Upload_a_selfie_from_your_computer":"从电脑上传自拍照片","Take_photo":"拍照","Upload":"上传","Selfie":"自拍","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"检查它是否已连接并且功能正常。还可以在手机上继续验证","Make_sure_your_device_has_a_working_camera":"确保设备具可正常使用的相机","Camera_not_working?":"相机不能用?","It_may_be_disconnected__Try_using_your_phone_instead_":"可能没连接。试试用手机。","Make_sure_your_device's_camera_works":"确保设备相机可正常使用","Camera_not_working":"相机不能用","Remember_to_press_stop_when_you're_done__Redo_video_actions":"完成后,请记得要按停止。恢复视频操作","Looks_like_you_took_too_long":"似乎时间过长","View_from_camera":"从相机观看","Take_a_selfie":"自拍","Photo_of_your_face":"脸部的照片","Make_sure_your_selfie_clearly_shows_your_face":"确保自拍照清楚显示脸部","Check_selfie":"检查自拍照","Tips_to_take_a_good_selfie":"好的自拍技巧","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"面向前方并确保眼睛清晰可见","Remove_your_glasses,_if_necessary":"必要时摘下眼镜","We'll_compare_it_with_your_document":"将把它与您的文档比较","Your_link_will_expire_in_one_hour":"链接将于一小时后失效","Keep_this_window_open_while_using_your_mobile":"使用手机时保持打开此窗口","Resend_link":"重新发送链接","We've_sent_a_secure_link_to_%{number}":"已发送安全链接至%{number}","It_may_take_a_few_minutes_to_arrive":"可能要花数分钟时间","Check_your_mobile":"检查手机","Your_mobile_link_will_expire_in_one_hour":"手机链接将于一小时后失效","Don't_refresh_this_page":"不要刷新此页面","Once_you've_finished_we'll_take_you_to_the_next_step":"完成后,将带您进入下一步","Connected_to_your_mobile":"已连接到手机","Upload_photo":"上传照片","Example_of_a_blurry_document":"模糊不清文档的示例","All_details_must_be_clear_—_nothing_blurry":"所有细节必须清楚-不可模糊","Example_of_a_cut-off_document":"剪切文件示例","Show_all_details_—_including_the_bottom_2_lines":"显示所有详细信息-包括最后2行","Example_of_a_document_with_glare":"带有眩光的文档示例","Move_away_from_direct_light_—_no_glare":"远离直射光 - 无眩光现象","Document_example":"文档示例","The_photo_should_clearly_show_your_document":"照片须清楚显示文件","Scans_and_photocopies_are_not_accepted":"不接受扫描件和影印件","Upload_passport_photo_page":"上传含照片的护照页面","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"要开设银行账户,必须先验证身份。","It_will_only_take_a_couple_of_minutes_":"只需数分钟。","Verify_Identity":"身份验证","Open_your_new_bank_account":"开立新的银行账户","Please_enter_a_valid_Login_ID_":"请输入有效的登录 ID。","Amount":"金额","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"从 [_3] 转账 [_1][_2] 到 [_4] 的请求已成功处理。","Resale_not_offered":"不提供转售","You've_made_no_transactions_of_this_type_up_to_this_date_":"至今为止没有进行过此类交易。","Date":"日期","Ref_":"参考","Contract":"合约","Purchase_Price":"买入价格","Sale_Date":"卖出日期","Sale_Price":"卖出价格","Profit/Loss":"利润/亏损","Details":"详情","Total_Profit/Loss":"利润/亏损合计","Action_required!":"需要展开行动!","Sorry,_an_error_occurred_while_processing_your_request_":"对不起,请求处理发生错误。","position(s)":"头寸","withdrawal(s)":"提款","We_couldn’t_read_that!":"我们无法读取!","Remaining_characters:_[_1]_":"剩余字符:[_1]。","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"两个字段请输入少于[_1]个字符。","Only_[_1]_are_allowed_":"只允许 [_1] 。","letters":"字母","numbers":"数字","space":"空间","Please_select_at_least_one_scope":"请选择至少一个范围","New_token_created_":"已创建新口令牌。","The_maximum_number_of_tokens_([_1])_has_been_reached_":"已达令牌 ([_1]) 最大限数。","Name":"姓名","Token":"令牌","Scopes":"范围","Last_Used":"上一次使用","Action":"操作","Are_you_sure_that_you_want_to_permanently_delete_the_token":"确定要永久删除令牌吗","Delete":"删除","Never_Used":"从未使用过","You_have_not_granted_access_to_any_applications_":"没有访问任何应用程序的权限。","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"确定要永久废除应用程序访问权限吗","Revoke_access":"撤销访问权限","Admin":"管理中心","Payments":"支付","Read":"阅读","Trade":"交易","Trading_Information":"交易信息","Never":"从未","Permissions":"权限","Last_Login":"上一次登录","You_did_not_change_anything_":"没作任何更改。","Your_changes_have_been_updated_successfully_":"更改已成功更新。","Successful":"成功","Date_and_Time":"日期和时间","Browser":"浏览器","IP_Address":"IP 地址","Status":"统计","Your_account_has_no_Login/Logout_activity_":"账户无交易活动。","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"账户已经得到完全验证,且取款限额已经取消。","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"当前的[_1]天取款限额是 [_2][_3]。","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"过去 [_3] 天里已累计提取 [_1][_2] 。","Your_withdrawal_limit_is_[_1][_2]_":"取款限额是 [_1][_2]。","You_have_already_withdrawn_[_1][_2]_":"已提取[_1][_2]。","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"因此,取决于账户的可用资金,可支取余额最多为%1%2。","Please_confirm_that_all_the_information_above_is_true_and_complete_":"请确认以上所有信息是真实和完整的。","Your_settings_have_been_updated_successfully_":"设置已成功更新。","Sorry,_an_error_occurred_while_processing_your_account_":"对不起,账户处理发生错误。","Please_select_a_country":"请选择国家","Timed_out_until":"暂停至","Excluded_from_the_website_until":"已被禁止访问本网站直到","Session_duration_limit_cannot_be_more_than_6_weeks_":"交易期持续时间限制不能大于6周。","Time_out_must_be_after_today_":"到期时间必须在今日之后。","Time_out_cannot_be_more_than_6_weeks_":"到期时间不能大于6周。","Time_out_cannot_be_in_the_past_":"到期时间不可为过去式。","Please_select_a_valid_time_":"请选择有效时间。","Exclude_time_cannot_be_less_than_6_months_":"禁止时间不能少于6个月。","Exclude_time_cannot_be_for_more_than_5_years_":"禁止时间不能超过5年。","Confirm_changes":"确认更改","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"将更新您的限额。单击%1同意和接受%2以确认您对自己的行为负全部责任。如果您因此而上瘾或蒙受损失,我们将不承担任何责任。","Agree_and_accept":"同意和接受","Go_back":"返回","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"点选“OK”后,将被禁止在此网站交易,直到选定期限结束为止。","Your_changes_have_been_updated_":"更改已成功更新。","Disable":"禁用","Enable":"启用","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"已成功启用账户的双因素身份验证。","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"已成功禁用账户的双因素身份验证。","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"此时账户还不需要验证。[_1]将通知您何时需通过账户验证。","No_authentication_required":"不需验证","Back_to_trading":"返回交易","You_are_categorised_as_a_professional_client_":"您被归类为专业客户。","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"您被归类为零售客户。申请成为专业交易者。","Bid":"出价","Closed_Bid":"密封出价","Reference_ID":"参考编号","Description":"说明","Credit/Debit":"借方/贷方","Balance":"余额","Top_up_error":"充值错误","Understood":"理解","Top-up_successful":"充值成功","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] 已记入演示账户: [_2]。","Go_to_statement":"前往月结单","Continue_trading":"继续交易","Your_Demo_balance_has_been_reset_":"演示余额已重置。","Account":"账户","Available_Markets":"可用的市场","Type":"类型","Currency":"货币","Multipliers_Account":"乘数账户","Gaming_Account":"博彩账户","Options_Account":"期权账户","Real_Account":"真实账户","Counterparty":"相对方","Jurisdiction":"管辖","Create_account":"开立账户","Change_currency":"更改币种","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"注意: 只能使用一个法定货币账户。首次将资金存入法定账户或开立 MT5 真实账户(或deriv.com 的 Deriv X 真实账户)之前,可以更改法定账户的币种。还可以为每种受支持的加密货币开立专用账户。","This_account_is_disabled":"此账户已禁用","This_account_is_excluded_until_[_1]":"此账户已被隔离, 直到[_1]","Set_currency":"设置币种","Commodities":"大宗商品","Forex":"外汇","Stock_Indices":"股票指数","Stocks":"股票","Synthetic_Indices":"综合指数","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"如已在我们的平台拥有账户,将于数分钟内发送内含链接的电子邮件,以便重置密码。","Sign_up":"注册","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"差价合约 (CFD) 的综合指数交易不是所有人都合适。请确保完全明白有关的风险。亏损可能会超越 MT5 账户的所有资金。博彩活动可能会上瘾,请提醒自己要承担责任。","Do_you_wish_to_continue?":"是否继续?","Acknowledge":"确认","Change_Password":"更改密码","The_investor_password_of_account_number_[_1]_has_been_changed_":"[_1]账号的投资者密码已更改。","Reset_Password":"重设密码","Verify_Reset_Password":"重置密码验证","Please_check_your_email_for_further_instructions_":"请检查电子邮件收取详细说明。","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"已完成从[_2]至账号[_3]的[_1]存款。交易编号: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"已完成从账号[_2]至[_3]的[_1]提款。交易编号: [_4]交易编号:[_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"要想从MetaTrader 5 [_1]账户提款,请先通过Binary账户的[_2]验证[_3]。","Current_password":"当前密码","New_password":"新密码","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"要把资金转入MT5账户,请输入[_1]或更多金额","You_have_insufficient_funds_in_your_MT5_account_":"MT5 账户资金不足。","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"对不起,管辖权内无法使用此功能。","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"由于服务器发生问题,一些MT5账户目前无法使用。%1请耐心配合,非常感谢。","Unavailable":"不可用","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] 已记入MT5演示账户: [_2]。","_(Region_added)":" (区域已添加)","_(Temporarily_unavailable)":" (暂时不可用)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"MT5 服务器暂时不能用。正在修复中。请于数分钟后重试。","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"在手机或其他设备使用MT5应用时使用 MT5 密码登录任何[_1]账户。","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"这将更改用在所有[_1]账户的密码。","Demo_Accounts":"模拟账户","Real-Money_Accounts":"真实资金账户","Demo_Account":"模拟账户","Real-Money_Account":"真实资金账户","for_account_[_1]":"用于[_1]账户","[_1]_Account_[_2]":"[_1]账户[_2]","MT5_Financial":"MT5 金融","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"输入 MT5 密码以添加 [_1] [_2] 账户。","demo":"演示","real":"真实","MT5_Synthetic":"MT5 综合","Get_[_1]":"获取 [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"演示账户余额当前为 [_1] 或更低。可以添加 [_2]补充账户资金。","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"如果余额为 [_2] 或更低,可以在演示账户内添加 [_1]。","Yes,_I'm_sure":"是的, 我确认","Are_you_sure?":"是否确定?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"开立此[_1]账户后, 将无法更改法定账户的币种。确定要继续吗?","OK":"确定","Go_to_Deriv_to_add_an_MT5_account":"前往 Deriv 添加 MT5 账户","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"可使用 Binary.com 凭据登录 Deriv。","Back":"返回","Go_to_Deriv":"前往 Deriv","Address":"地址","Account_currency":"账户币种","Financial_assessment":"金融评估","Personal_details":"个人资料","Terms_of_use":"使用条款","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"泰达 Omni (USDT) 是建立在比特币区块链上,与美元挂钩的泰达币版本。","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"泰达 ERC20(eUSDT)是与美元挂钩的泰达币版本,在以太坊平台上受托管。","Title_and_name":"称谓和姓名","Real_money_account_opening":"开立真实资金账户","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"令牌已过期或失效。请点击此处重启验证程序。","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"所提供的电子邮件地址已经在使用。如果忘了密码,请尝试使用我们的密码恢复工具或联系客服部。","Password_is_not_strong_enough_":"密码安全度不够。","Upgrade_now":"立即升级","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] 天 [_2] 小时 [_3] 分钟","Your_trading_statistics_since_[_1]_":"自 [_1] 至今的交易统计。","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1]交易和其他类似活动一样,过于沉迷可能会上瘾。为了避免这种风险,我们会定期提供交易和财务的实况简报。","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] 请点击下方的链接,重新启动密码恢复过程。","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"您有了新的 Binary 密码,可用以登录 Binary.com。","Success":"成功","Done":"完成","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Binary账户已与[_1]解除链接。以后请用[_2]电子邮件和密码登录。","Success!":"成功!","Got_it":"知道了","Binary_Password_Reset":"重置 Binary 密码","Binary_password":"Binary 密码","You_have_added_a_[_1]_account_":"已添加了[_1]账户。","Add_account":"添加账户","Add_new_crypto_account":"添加新加密账户","Add_new_account":"添加新账户","Create_a_cryptocurrency_account":"开立加密货币账户","Choose_your_preferred_cryptocurrency":"选择较倾向的加密货币","You_can_open_an_account_for_each_cryptocurrency_":"可以为每种加密货币开立账户。","Choose_a_cryptocurrency_account":"选择加密货币账户","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"选择一个账户或添加新的加密货币账户","Choose_an_account":"选择账户","Choose_one_of_your_accounts_or_add_a_new_account":"选择一个账户或添加新账户","Choose_one_of_your_accounts":"选择一个账户","Please_select_the_currency_for_this_account:":"请选择此账户的币种:","deposit":"存款","deposit_or_create_a_CFDs_account":"存款或开立差价合约账户","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"确定要现在开立 [_1] 账户吗?","Note:":"附注:","You_may_open_one_account_for_each_supported_cryptocurrency_":"可以为每种受支持的加密货币开立专用账户。","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"确定要在 [_1] 开立法定账户吗?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"只能用一个法定账户。首次[_1]前,可以随时更改法定账户的币种。","Yes":"是的","Create_[_1]_account":"开立[_1]账户","You_have_successfully_set_your_account_currency_to_[_1]_":"已成功将账户币种设置为 [_1] 。","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"已成功将账户币种从 [_1] 更改为 [_2]。","Please_choose_a_currency":"请选择一种货币","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"您有了新的 MT5 密码,用于登录网络和手机应用上的 [_1]账户。","Asian_Up":"亚洲上涨","Asian_Down":"亚洲下跌","Higher":"高于","Higher_or_equal":"高于或等于","Lower":"低于","Lower_or_equal":"低于或等值","Digit_Matches":"数字匹配","Digit_Differs":"数字差异","Digit_Odd":"数字奇数","Digit_Even":"数字偶数","Digit_Over":"数字大于","Digit_Under":"数字小于","Ends_Outside":"到期在范围之外","Ends_Between":"到期在范围之内","Stays_Between":"位于区间之内","Goes_Outside":"处于区间之外","Touches":"触及","Does_Not_Touch":"未触及","Call_Spread":"买权价差","Put_Spread":"卖权价差","High_Tick":"高跳动点","Low_Tick":"低跳动点","Only_Ups":"持续上涨","Only_Downs":"只会持续下跌","Multiplier_Up":"乘数上涨","Multiplier_Down":"乘数下跌","Equals":"等于","Not":"不","Buy":"买入","Sell":"卖出","Waiting_for_contract_settlement_":"等待合约结算。","including_Deal_Cancel__Fee":"包含交易取消. 费用","Contract_has_not_started_yet":"合约还未开始","This_contract_is_only_available_on_[_1]DTrader[_2]_":"此合约仅适用于[_1]DTrader[_2]。","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"此合约只能通过DTrader运作。[_1][_2]前往 Dtrader[_3] 终止或取消此合约。","Contract_Result":"合约结果","Close_Time":"收盘时间","Exit_Spot_Time":"退市现价时间","Audit":"审计","View_chart":"查看图表","Audit_Page":"审核页面","Contract_Starts":"合约开始时间","Contract_Ends":"合同结束","Contract_Details":"合约详情","Target":"目标","Contract_Information":"合约信息","Contract_Type":"合约类型","Transaction_ID":"交易ID","Remaining_Time":"剩余时间","Maximum_payout":"最大赔付","Barrier_Change":"障碍变更","Current":"当前","Spot_Time":"现货时间","Current_Time":"当前时间","Indicative":"指示性","Potential_Profit/Loss":"潜在利润/亏损","Deal_Cancel__Fee":"交易取消. 费用","You_can_close_this_window_without_interrupting_your_trade_":"可以在不中断交易的情况下关闭此窗口。","There_was_an_error":"出现错误","Sell_at_market":"按市价卖出","Note":"附注","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"合约将在我们服务器收到请求时,以当时的市场价格卖出。此价格可能与报价有差异。","You_have_sold_this_contract_at_[_1]_[_2]":"已经以 [_1] [_2] 卖出此合约","Your_transaction_reference_number_is_[_1]":"交易参考号是 [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"谢谢您的注册!请查看邮件以完成注册程序。","All_markets_are_closed_now__Please_try_again_later_":"所有市场现已关闭。请稍后重试。","Withdrawal":"提款","demo_credit_to_account":"模拟资金进入账户","login":"登录","logout":"注销","Asians":"亚式期权","Call_Spread/Put_Spread":"看涨期权价差/看跌期权价差","Digits":"数字期权","Ends_Between/Ends_Outside":"到期在范围之内/之外","High/Low_Ticks":"高/低跳动点","Lookbacks":"回顾期权","Reset_Call/Reset_Put":"重置看涨/重置看跌","Stays_Between/Goes_Outside":"保持在范围之内/超出范围之外","Touch/No_Touch":"触及/未触及","Christmas_Day":"圣诞节","Closes_early_(at_18:00)":"收盘提前(至18:00)","Closes_early_(at_21:00)":"收盘提前(至21:00)","Fridays":"星期五","New_Year's_Day":"元旦","today":"今天","today,_Fridays":"今天,周五","There_was_a_problem_accessing_the_server_":"服务器访问发生问题。","There_was_a_problem_accessing_the_server_during_purchase_":"买入时服务器访问发生问题。"}; \ No newline at end of file +texts_json['ZH_CN'] = {"Real":"真实","Multipliers":"乘数期权","Gaming":"博彩","Options":"期权","Demo":"模拟","Real_CFDs":"真实差价合约","Real_Financial":"真实金融","Demo_CFDs":"演示差价合约","Demo_Financial":"演示金融","Derived":"衍生资产","Demo_Derived":"演示衍生资产","Real_Derived":"真实衍生资产","CFDs":"差价合约","Financial":"金融","Financial_STP":"金融 STP","Demo_Financial_STP":"演示金融 STP","Real_Financial_STP":"真实金融 STP","Bitcoin":"比特币","Ethereum":"以太坊","Ether_Classic":"古典以太币","Litecoin":"莱特币","Binance_USD":"币安美元","Multi-Collateral":"多资产抵押","Paxos_Standard":"Paxos 标准","Tether_Omni":"泰达 Omni","Tether_ERC20":"泰达 ERC20","Binary_Coin":"Binary 币","Tether_TRC20":"泰达 TRC20","Online":"在线","Offline":"离线","Connecting_to_server":"连接服务器","Use_a_few_words,_avoid_common_phrases":"用几个词,避免常用短语","No_need_for_symbols,_digits,_or_uppercase_letters":"不需要符号、数字或大写字母","Add_another_word_or_two__Uncommon_words_are_better_":"加上一两个字。不常见的词更好。","Straight_rows_of_keys_are_easy_to_guess":"直线排列键很容易猜到","Short_keyboard_patterns_are_easy_to_guess":"短键盘列式很容易猜到","Use_a_longer_keyboard_pattern_with_more_turns":"使用更长的键盘列式并给予更多变化","Repeats_like_\"aaa\"_are_easy_to_guess":"像“aaa”这样的重复密码很容易猜到","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"像“abcabcabc”这样的重复词比“abc”更难猜测","Avoid_repeated_words_and_characters":"避免重复的单词和字符","Sequences_like_abc_or_6543_are_easy_to_guess":"像abc或6543这样的序列密码很容易猜到","Avoid_sequences":"避免序列式密码","Recent_years_are_easy_to_guess":"以最近数年的年份作密码很容易猜出","Avoid_recent_years":"避免用最近数年的年份","Avoid_years_that_are_associated_with_you":"避免用相关的年份","Dates_are_often_easy_to_guess":"日期通常很容易猜到","Avoid_dates_and_years_that_are_associated_with_you":"避免相关的日期和年份","This_is_a_top-10_common_password":"这是10个最常用的密码","This_is_a_top-100_common_password":"这是100个最常用的密码","This_is_a_very_common_password":"这是很常用的密码","This_is_similar_to_a_commonly_used_password":"这类似于常用密码","A_word_by_itself_is_easy_to_guess":"一个词本身很容易猜到","Names_and_surnames_by_themselves_are_easy_to_guess":"仅名字和姓氏本身很容易猜到","Common_names_and_surnames_are_easy_to_guess":"常用名称和姓氏容易猜到","Capitalization_doesn't_help_very_much":"大写并不提供很大帮助","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"全大写几乎和全小写一样容易猜出","Reversed_words_aren't_much_harder_to_guess":"倒写单词并不难猜","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"容易猜测的替换,例如用'@'代替'a'并没有提供太大帮助","This_password_is_on_the_blacklist":"此密码已列入黑名单","Unknown_OS":"未知 OS","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"将被转到不是Binary.com拥有的第三方网站。","Click_OK_to_proceed_":"单击 \"确定\" 继续。","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"请确保设备已安装了电报应用程序。","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"必须启用浏览器的web存储,[_1]才能正常工作。请启用它或退出私人浏览模式。","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"请 [_1]登录[_2] 或 [_3]注册[_4]以查看此页 。","This_feature_is_available_to_demo_accounts_only_":"此功能仅适用于演示账户。","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"正在使用演示账户。请切换到或开立真实账户以访问收银台。","This_page_is_only_available_to_logged_out_clients_":"此页面仅适用于已登出的客户。","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"乘数账户无法进行二元期权交易。","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"通过乘数账户无法进行二元期权交易。
请转回期权账户。","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"抱歉,英国和马恩岛不提供期权交易","Binary_options_trading_is_not_available_in_your_country_":"您的国家无法进行二元期权交易。","This_page_is_not_available_in_your_country_of_residence_":"您的居住国无法使用此页面。","Page_not_available,_you_did_not_deactivate_your_account_":"页面不可用,没有停用账户。","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"很遗憾,您的国家不能使用此服务。如要交易乘数,请试用 Deriv 的 DTrader。","Go_to_DTrader":"前往 DTrader","Sign_out":"登出","[_1]_Account":"[_1]账户","Click_here_to_open_a_Real_Account":"单击此处开立真实账户","Open_a_Real_Account":"开立真实账户","Click_here_to_open_a_Multipliers_Account":"单击此处开立乘数账户","Click_here_to_open_an_Options_account":"单击此处开立期权账户","Open_a_Multipliers_Account":"开立乘数账户","Go_to_Deriv_to_add_an_account":"前往 Deriv 添加账户","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"可使用 Binary.com 凭据登录 Deriv。","Cancel":"取消","Go_to_Deriv":"前往 Deriv","Create_Account":"开立账户","Accounts_List":"账户列表","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"由于系统维护,暂时无法存款。一旦维护完成,即可存款。","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"由于系统维护,暂时无法取款。一旦维护完成,即可取款。","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,加密货币收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"收银台目前已被锁。请通过实时聊天与我们联系以了解如何解锁。","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"请设置 [_1]账户货币[_2] 以启用存款和取款。","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文档中的姓名和出生日期与 Binary 个人资料不匹配。请在[_1]个人详细信息页面[_2]更新姓名。","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文档中的出生日期与 Binary 个人资料不匹配。请在[_1]个人详细信息页面[_2]更新姓名。","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文档中的姓名与 Binary 个人资料不匹配。请在[_1]个人详细信息页面[_2]更新姓名。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"账户尚未通过验证。请提交 [_1]身份证明和地址证明[_2] 以验证账户并请求取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"账户尚未通过验证。请提交 [_1] 身份证明和地址证明[_2] 以验证账户并访问收银台。","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"提交的身份证明文件已过期。请提交有效的身份证件以解锁收银台。","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]身份证明[_2]已过期。","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]地址证明[_2]已过期。","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]身份证明[_3]与[_2]地址证明[_3]还未通过验证。","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]身份证明[_2]还未通过验证。","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]地址证明[_2]还未通过验证。","Please_submit_your_[_1]proof_of_identity[_2]_":"请提交[_1]身份证明[_2]。","Please_submit_your_[_1]proof_of_address[_2]_":"请提交[_1]地址证明[_2]。","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"已选择在 [_1] 前自我禁止在网站交易。如果在自我禁止期后无法交易或存款,请通过实时聊天与我们联系。","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"由于尚未设置 30 天交易限额,您已被暂时禁用收银台。请前往 [_1]自我禁止[_2] 并设置 30 天交易限额。","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"MT5账户已被禁提款。请检查电子邮件,以了解更多详情。","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"很遗憾,只能存款。请通过实时聊天与我们联系以启用提款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用存款和取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]个人详细信息[_2] 不完整。请前往账户设置并填写个人详细信息,以启用存款。","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"尚未设置居住国家/地区。要访问收银台,请前往账户设置的“个人详细信息”部分更新 [_1]居住国家/地区[_2]。","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"收银台已被锁。请完成[_1]财务评估[_2]以解锁。","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"没有提供税务编号。法律和监管规定要求提供此信息。请到账户设置中的[_1]个人资料[_2],填写最新的税务编号。","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"很遗憾,只能取款。请通过实时聊天与我们联系。","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"账户已被禁提款。须等上载的文件通过验证。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"请[_1]接受更新条款和条件[_2]。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"请[_1]接受更新条款和条件[_2],以提高存款和交易限额。","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"账户暂时被禁用。请通过实时聊天与我们联系以再次启用存款和取款。","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"请完成合适性测试以访问收银台。","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"收银台已被锁。 继续操作之前,请参阅 [_1]我们如何保护您的资金[_2]。","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"账户需要验证。请提交[_1]身份证明[_2]以访问收银台。","Account_Authenticated":"账户验证","Connection_error:_Please_check_your_internet_connection_":"连接错误:请检查网络连接。","Network_status":"网络状态","This_is_a_staging_server_-_For_testing_purposes_only":"这是分期服务器 -仅用于测试目的","The_server_endpoint_is:_[_2]":"服务器终端是: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"网络浏览器 ([_1]) 已过时,并可能会影响交易操作。继续操作须自行承担风险。[_2]更新浏览器[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"已达每秒钟提呈请求的最高限率。请稍后重试。","There_was_some_invalid_character_in_an_input_field_":"某字段的输入字符无效。","regulated_by_the_UK_Gaming_Commission_(UKGC),":"由英国博彩委员会(UKGC)监管,","regulated_by_the_Malta_Gaming_Authority,":"由马耳他博彩局监管,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"由马耳他金融服务管理局(MFSA) 监管,","Please_select":"请选择","Please_accept_the_terms_and_conditions_":"请接受条款和条件。","Please_confirm_that_you_are_not_a_politically_exposed_person_":"请确认您不是政治公众人士。","Today":"今天","Select_date":"选择日期","Barrier":"障碍","Entry_Spot":"入市现价","Exit_Spot":"退市现价","Charting_for_this_underlying_is_delayed":"此标的资产的图表数据存在延迟","Payout_Range":"赔付范围","Purchase_Time":"买入时间","Reset_Barrier":"重设障碍","Reset_Time":"重设时间","Selected_Tick":"选定跳动点","Exit_Time":"退市时间","Start_Time":"开始时间","Fiat":"法定货币","Crypto":"加密","Step_[_1]:_[_2]_([_1]_of_[_3])":"步骤 [_1]: [_2] ([_3] 的 [_1])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"验证码错误。请使用以下链接发送到电子邮件。","Indicates_required_field":"为必填字段","Please_select_the_checkbox_":"请选择复选框。","This_field_is_required_":"此字段为必填项。","Should_be_a_valid_number_":"必须是有效号码。","Up_to_[_1]_decimal_places_are_allowed_":"允许 [_1] 个小数位。","Should_be_[_1]":"必须为[_1]","Should_be_between_[_1]_and_[_2]":"须在[_1] 与 [_2]之间","Should_be_more_than_[_1]":"必须大于 [_1]","Should_be_less_than_[_1]":"必须少于[_1]","Insufficient_balance_":"余额不足。","Invalid_email_address_":"无效的电子邮件地址。","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"密码必须有大小写英文字母和数字。","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允许使用字母、数字、空格、连字符、句点和省略号。","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"仅允许字母、数字、空格和这些特殊字符:[_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允许字母、空格、连字符、句号和省略号。","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"只允许字母、数字、空格和连字符。","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"请输入有效的电话号 (例如 +15417541234)。","The_two_passwords_that_you_entered_do_not_match_":"两个输入的密码不一致。","[_1]_and_[_2]_cannot_be_the_same_":"[_1] 和 [_2] 不可相同。","Minimum_of_[_1]_characters_required_":"需至少[_1] 个字符。","You_should_enter_[_1]_characters_":"必须输入[_1]个字符。","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"应以字母或数字开始,可包含连字符和下划线。","Invalid_verification_code_":"无效的验证代码。","Your_password_cannot_be_the_same_as_your_email_address_":"密码不可与电子邮件地址相同。","Transaction_performed_by_[_1]_(App_ID:_[_2])":"交易执行者为[_1] (应用程序 ID: [_2])","Guide":"指南","Next":"下一页","Finish":"完成","Step":"步骤","Select_your_market_and_underlying_asset":"选择市场和基础资产","Select_your_trade_type":"选择交易类型","Adjust_trade_parameters":"调整交易参数","Predict_the_directionand_purchase":"预测价格走向
并购入","Your_session_duration_limit_will_end_in_[_1]_seconds_":"交易期持续时间限制将于[_1]秒内结束。","January":"一月","February":"二月","March":"三月","April":"四月","May":"五月","June":"六月","July":"七月","August":"八月","September":"九月","October":"十月","November":"十一月","December":"十二月","Jan":"一月","Feb":"二月","Mar":"三月","Apr":"四月","Jun":"六月","Jul":"七月","Aug":"八月","Sep":"九月","Oct":"十月","Nov":"十一月","Dec":"十二月","Sunday":"周日","Monday":"星期一","Tuesday":"星期二","Wednesday":"星期三","Thursday":"星期四","Friday":"星期五","Saturday":"周六","Su":"星期日","Mo":"星期一","Tu":"星期二","We":"星期三","Th":"星期四","Fr":"星期五","Sa":"星期六","Previous":"之前","Hour":"小时","Minute":"分钟","AM":"上午","PM":"下午","Verification_required":"需要验证","Verify_identity":"身份验证","From_account:_":"从账户: ","To_account:_":"至账户: ","Not_announced_for_this_currency_":"此货币未公布。","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"随时将演示账户余额重置为 [_1] 。","[_1]Manage_your_accounts[_2]":"[_1]管理账户[_2]","time":"时间","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"时间或开立 MT5 真实账户(或deriv.com 的 Deriv X 真实账户)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"已开立了MT5 真实账户(或deriv.com 的 Deriv X 真实账户),因此不能再更改币种。","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"已存入第一笔资金,因此不能再更改币种。","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"法定账户的币种当前设置为 [_1]。","Your_fiat_account's_currency_is_set_to_[_1]_":"法定账户的币种设置为 [_1]。","This_is_your_[_1]_account_":"这是 [_1] 账户。","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"首次[_3]存款之前,可以 [_1]设置新币种[_2]。","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"不想使用[_1]交易?可以另外开立加密货币账户。","Switch_account":"转换账户","Switch_account?":"转换账户?","To_deposit_money,_please_switch_to_your_[_1]_account_":"要存款,请转换至[_1]账户。","To_withdraw_money,_please_switch_to_your_[_1]_account_":"要取款,请转换至[_1]账户。","Switch_to_crypto_account?":"转换至加密账户?","To_deposit_cryptocurrency,_switch_your_account_":"要用加密货币存款,请先转换账户。","To_withdraw_cryptocurrency,_switch_your_account_":"要用加密货币取款,请先转换账户。","Withdraw":"取款","Deposit":"存款","Town/City":"城镇/城市","First_line_of_home_address":"住家地址第一行","Postal_Code/ZIP":"邮编","State/Province":"州/省","Email_address":"电子邮件地址","Telephone":"电话","Country_of_Residence":"居住国","details":"详情","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由于系统维护,收银台暂时无法使用。数分钟后一旦维护完成,即可访问收银台。","Your_cashier_is_locked_":"收银台已锁定。","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"请注意,所选货币仅适用于受限制账户。","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"已达到提款限额。请上传身份和地址证明,以提高提款限额,并继续提款。","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"您的国家或首选币种不可使用付款代理服务。","Select_payment_agent":"选择付款代理","Amount_in":"金额单位为","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"只允许字母、数字、空格、连字符、句号、逗号和省略号。","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"从 [_3] 账户提取 [_1] [_2] 到支付代理 [_4]账户的请求已成功处理。","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"令牌已过期或失效。请点击[_1]此处[_2]重启验证程序。","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"抱歉,此货币的取款目前被禁用。","Please_[_1]deposit[_2]_to_your_account_":"请[_1]存入[_2]账户。","Sorry,_account_signup_is_not_available_in_your_country_":"对不起,您的所在国内不可注册账户。","Asset":"资产","Opens":"开盘","Closes":"收盘","Settles":"结算","Upcoming_Events":"未来事件","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"透过添加+/-给障碍偏移量定义。例如, +0.005 表示比入市现价高0.005 的障碍。","Digit":"数字期权","Percentage":"百分比","Waiting_for_entry_tick_":"正在等待进场跳动点。","High_Barrier":"高障碍","Low_Barrier":"低障碍","Waiting_for_exit_tick_":"正在等待退场跳动点。","Ticks_history_returned_an_empty_array_":"跳动点历史返回空数组","Chart_is_not_available_for_this_underlying_":"此标的工具图表不可用。","Purchase":"买入","Net_profit":"净收益","Return":"收益","Time_is_in_the_wrong_format_":"时间格式错误。","Rise/Fall":"上涨/下跌","Higher/Lower":"高于/低于","Matches/Differs":"相符/差异","Even/Odd":"偶/奇","Over/Under":"大于/小于","High-Close":"最高值-收盘","Close-Low":"收盘-最低值","High-Low":"最高值-最低值","Reset_Call":"重置看涨","Reset_Put":"重置看跌","Up/Down":"涨/跌","Only_Ups/Only_Downs":"持续上涨/持续下跌","In/Out":"范围之内/之外","Select_Trade_Type":"选择交易类型","Tick":"跳动点","Spot":"现价","Spot_Time_(GMT)":"现货时间 (GMT)","seconds":"秒","minutes":"分钟","hours":"小时","days":"天","ticks":"跳动点","tick":"跳动点","second":"秒","minute":"分钟","hour":"小时","day":"天","Duration":"期限","End_Time":"结束时间","Purchase_request_sent":"采购请求已发送","High":"最高值","Close":"收盘","Low":"最低值","Select_Asset":"选择资产","Search___":"搜索...","Maximum_multiplier_of_1000_":"最大乘数为1000。","Stake":"投注资金","Payout":"赔付","Multiplier":"乘数期权","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"对不起,账户无权进一步买入任何合约。","Trading_is_unavailable_at_this_time_":"此时无法交易。","Please_reload_the_page":"请重新加载页面","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"当前交易时段内不允许对该合约类型进一步交易。有关详细信息,请参阅[_1]条款和条件[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"要求成为专业客户的申请正在处理中。","Your_professional_client_request_is_[_1]not_approved[_2]_":"申请成为专业客户的请求 [_1]不受批准[_2]。","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"一旦满足所需标准, 请重新申请。","More_information_can_be_found_in_an_email_sent_to_you_":"可以在发给您的电子邮件中找到更详细的信息。","I_want_to_reapply":"我想重新申请","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"欧盟的金融二元期权仅供专业投资者使用。","Apply_now_as_a_professional_investor":"立刻申请成为专业投资者","Try_our_[_1]Synthetic_Indices[_2]_":"请试试[_1]综合指数[_2]。","Try_our_other_markets_":"请尝试我们其他的市场。","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"请按照[_3]英国博彩[_4]委员会 (UKGC) 的需求完成[_1]真实账户表格[_2]以验证年龄。","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"账户访问已暂时受限制。欲知详情请查看收件箱。","Contract_Confirmation":"合约确认","Your_transaction_reference_is":"交易参考号是","Total_Cost":"成本总计","Potential_Payout":"可能的赔付额","Potential_Profit":"潜在利润","View":"查看","This_contract_won":"此合约获利","This_contract_lost":"此合约亏损","The_reset_time_is_[_1]":"重设时间为 [_1]","Now":"现在","Average":"平均","Buy_price":"买入价","Final_price":"最终价格","Loss":"亏损","Profit":"利润","Account_balance:":"账户余额:","Reverse_Side":"反面","Front_Side":"前侧","Pending":"待定","Submitting":"正在提交","Submitted":"已提交","Failed":"失败","Compressing_Image":"正在压缩图像","Checking":"检查中","Checked":"已检查","Unable_to_read_file_[_1]":"无法读取文件 [_1]","Passport":"护照","Identity_card":"身份证","Driving_licence":"驾驶执照","Invalid_document_format_":"无效的文档格式。","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"文件 ([_1]) 大小超过允许限额。允许的最大文件大小: [_2]","ID_number_is_required_for_[_1]_":"[_1] 需要身份证号。","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"ID 号([_1]) 只允许字母、数字、空格、下划线和连字符。","Expiry_date_is_required_for_[_1]_":"[_1] 需要有失效期日。","Place_of_birth":"出生地点","Please_select_the_country_of_document_issuance":"请选择文件签发国","Choose_the_document_type":"选择文件类型","Please_enter_the_correct_format__Example:":"请输入正确的格式。例如:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Google账户的电子邮件并点击邮件里的链接以继续操作。","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Facebook账户的电子邮件并点击邮件里的链接以继续操作。","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"查看与Apple ID关联的电子邮件账户并点击邮件里的链接以继续操作。","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"请单击邮件上的链接以更改 MT5 密码。","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"请单击邮件上的链接以更改 binary 密码。","We’ve_sent_you_an_email":"已给您发送电子邮件","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"正在使用 [_1] 账户登录到 Binary.com 账户。如果要将登录方式改成使用用户名和密码,请单击 [_2]取消链接[_3]按钮。","Linked_with_[_1]":"已与[_1]链接","You_will_need_to_set_a_password_to_complete_the_process_":"必须设置密码以完成流程。","Are_you_sure_you_want_to_unlink_from_[_1]?":"是否确认与[_1]解除链接?","Unlink":"解除链接","Country_not_found":"未找到国名","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"当前不支持该国家/地区的文档-尝试其他文档类型","Submit_document":"提交文件","Select_country":"选择国家","e_g__United_States":"例如美国","Search_for_country":"搜索国家","Select_issuing_country":"选择发件国家","Submit_verification":"提交验证","Tips":"提示","Documents_uploaded":"文档已上传","Document_uploaded":"文档已上传","Selfie_uploaded":"自拍照已上传","We're_now_ready_to_verify_your_identity":"我们现在准备验证您的身份","Great,_that's_everything_we_need":"太好了,这就是我们需要的一切信息","The_link_only_works_on_mobile_devices":"链接只能用于手机","Something's_gone_wrong":"出现错误","You'll_need_to_restart_your_verification_on_your_computer":"需用电脑重启验证","Get_secure_link":"获取安全链接","Steps_required_to_continue_verification_on_your_mobile":"手机继续验证所需的步骤","Check_back_here_to_finish_the_submission":"返回此处完成提交","Open_the_link_and_complete_the_tasks":"打开链接并完成任务","Send_a_secure_link_to_your_phone":"发送安全链接到手机","Here's_how_to_do_it:":"这是做法:","Continue_on_your_phone":"用电话继续操作","Your_computer_may_take_a_few_seconds_to_update":"电脑更新可能需要数秒钟","You_can_now_return_to_your_computer_to_continue":"现在可以返回电脑继续操作","Uploads_successful":"上传成功","Make_sure_everything_is_clear":"确保一切都很清楚","Blurry_photo_detected":"检测到模糊的照片","Make_sure_full_document_is_visible":"确保整个文件都清晰可见","Cut-off_image_detected":"检测到裁切图像","Move_away_from_direct_light":"远离直射光","Glare_detected":"检测到眩光","Make_sure_all_of_the_document_is_in_the_photo":"确保所有文档都在照片中","No_document_detected":"未检测到文件","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"确保卡详细信息清晰易读,没有模糊字体或眩光现象","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"如果看不清楚,就需要更长的时间进行验证","To_smoothly_verify_you,_we_need_a_better_photo":"为了顺利验证,我们需要更好的照片","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"确保许可证详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"确保护照详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"确保许可证详细信息清晰易读,没有模糊字体或眩光现象","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"确保所有详细信息清晰易读,没有模糊字体或眩光现象","Redo":"恢复","Confirm":"确认","Upload_anyway":"仍要上传","Enlarge_image":"放大图像","Photo_of_your_document":"文件的相片","Check_your_image":"查看图像","Front_and_back":"正面和背面","Driver's_license":"驾驶执照","Face_photo_page":"脸部相片页面","Residence_permit":"居留许可证","Sorry,_no_mobile_phone_bills":"抱歉,不接受手机账单","Documents_you_can_use_to_verify_your_identity":"可用于验证身份的文件","It_must_be_an_official_photo_ID":"必须是带照片的正式身份证","These_are_the_documents_most_likely_to_show_your_current_home_address":"这些是最有可能显示当前家庭住址的文件","Choose_document":"选择文件","Select_a_%{country}_document":"选择 %{country} 文件","or_upload_photo_–_no_scans_or_photocopies":"或上传照片 - 不接受扫描件或影印件","Continue_on_phone":"用电话继续操作","Take_a_photo_with_your_phone":"用手机拍照","Submit_identity_card_(back)":"提交身份证(背面)","Submit_identity_card_(front)":"提交身份证(正面)","Submit_license_(back)":"提交执照 (背面)","Submit_license_(front)":"提交执照 (正面)","Submit_passport_photo_page":"提交含照片的护照页面","Submit_residence_permit_(back)":"提交居留许可证 (背面)","Submit_residence_permit_(front)":"提交居留许可证 (正面)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"用最新版本的Google Chrome重启该过程","Restart_the_process_on_the_latest_version_of_Safari":"用最新版本的 Safari 重启该过程","Unsupported_browser":"不受支持的浏览器","Close_identity_verification_screen":"关闭身份验证屏幕","Dismiss_alert":"消除警报","back":"返回","close":"关闭","Restart_process_on_a_different_device":"用其他设备重启进程","Camera_not_detected":"未检测到相机","Must_be_under_10MB_":"必须小于10MB。","File_size_exceeded_":"超过了文件大小。","Try_using_another_file_type_":"尝试使用其他文件类型。","File_not_uploaded_":"文件未上传。","An_error_occurred_while_loading_the_component":"加载组件时发生错误","Only_your_face_can_be_in_the_selfie":"自拍照只能拍脸","Multiple_faces_found":"发现多个面孔","Your_face_is_needed_in_the_selfie":"自拍照片必须包括脸部","No_face_found":"未找到人脸","Please_try_again":"请重试","Connection_lost":"连接中断","Copy_the_link_to_your_phone":"复制链接到手机","Too_many_failed_attempts":"失败尝试次数太多","Try_using_a_JPG_or_PNG_file":"尝试使用 JPG 或 PNG 文件","File_type_not_supported":"文件类型不受支持","Loading___":"正在加载...","Loading":"加载","Check_that_your_number_is_correct":"检查电话号码是否正确","Copied":"已复制","Copy":"复制","Send_link":"发送链接","How_to_scan_a_QR_code":"如何扫描 QR 码","Point_your_phone’s_camera_at_the_QR_code":"将手机的相机对准 QR 码","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"如果无法扫描,请从Google Play 或 App Store 下载 QR 码扫描应用","or":"或","Scan_QR_code":"扫描 QR 码","Get_link_via_SMS":"通过简讯获取链接","Copy_link":"复制链接","Sending":"发送中","Enter_mobile_number":"输入手机号","Enter_your_mobile_number:":"输入手机号:","Scan_the_QR_code_with_your_phone":"用手机扫描QR码","Send_this_one-time_link_to_your_phone":"发送此一次性链接到手机","Open_the_link_on_your_mobile":"用手机打开链接","Get_your_secure_link":"获取安全链接","Copy_the_link_to_your_mobile_browser":"复制链接到手机浏览器","Continue":"继续","Make_sure§":"确保§","2__Your_desktop_window_stays_open":"2. 桌面窗口保持打开状态","1__This_link_was_sent_by_you":"1. 此链接是您发送的","Continue_with_the_verification":"继续验证操作","Linked_to_your_computer":"与电脑连接","Take_a_photo_of_the_back_of_your_card":"卡背面拍照","Take_a_photo_of_the_front_of_your_card":"卡正面拍照","Take_a_photo_of_the_back_of_your_license":"许可证背面拍照","Take_a_photo_of_the_front_of_your_license":"许可证正面拍照","Take_a_photo_of_your_passport_photo_page":"为含照片的护照页面拍照","Take_a_selfie_showing_your_face":"拍张脸部自拍照","Take_a_photo_using_the_basic_camera_mode_instead":"改为使用基本相机模式拍照","Take_a_photo":"拍照","Passport_photo_page":"含照片的护照页面","Thank_you":"谢谢","Verification_complete":"验证完成","Refresh":"刷新","Recovery":"恢复","Follow_these_steps_to_recover_camera_access:":"请按照以下步骤恢复相机访问权限:","Refresh_this_page_to_restart_the_identity_verification_process":"刷新此页面以重启身份验证过程","Grant_access_to_your_camera_from_your_browser_settings":"通过浏览器设置给予相机的访问权限","Recover_camera_access_to_continue_face_verification":"恢复相机访问权限以继续面部验证","Camera_access_is_denied":"相机访问被拒","We_cannot_verify_you_without_using_your_camera":"不使用相机,无法验证您的身份","Enable_camera":"启用相机","When_prompted,_you_must_enable_camera_access_to_continue":"出现提示时,须启用相机访问权限以继续操作","Allow_camera_access":"允许相机访问","Provide_the_whole_document_page_for_best_results":"提供完整的文档页面以获得最佳结果","Upload_back_of_card_from_your_computer":"从电脑上传卡的背面","Upload_front_of_card_from_your_computer":"从电脑上传卡的正面","Upload_back_of_license_from_your_computer":"从电脑上传执照的背面","Upload_front_of_license_from_your_computer":"从电脑上传执照的正面","Upload_passport_photo_page_from_your_computer":"从电脑上传含照片的护照页面","Upload_a_selfie_from_your_computer":"从电脑上传自拍照片","Take_photo":"拍照","Upload":"上传","Selfie":"自拍","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"检查它是否已连接并且功能正常。还可以在手机上继续验证","Make_sure_your_device_has_a_working_camera":"确保设备具可正常使用的相机","Camera_not_working?":"相机不能用?","It_may_be_disconnected__Try_using_your_phone_instead_":"可能没连接。试试用手机。","Make_sure_your_device's_camera_works":"确保设备相机可正常使用","Camera_not_working":"相机不能用","Remember_to_press_stop_when_you're_done__Redo_video_actions":"完成后,请记得要按停止。恢复视频操作","Looks_like_you_took_too_long":"似乎时间过长","View_from_camera":"从相机观看","Take_a_selfie":"自拍","Photo_of_your_face":"脸部的照片","Make_sure_your_selfie_clearly_shows_your_face":"确保自拍照清楚显示脸部","Check_selfie":"检查自拍照","Tips_to_take_a_good_selfie":"好的自拍技巧","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"面向前方并确保眼睛清晰可见","Remove_your_glasses,_if_necessary":"必要时摘下眼镜","We'll_compare_it_with_your_document":"将把它与您的文档比较","Your_link_will_expire_in_one_hour":"链接将于一小时后失效","Keep_this_window_open_while_using_your_mobile":"使用手机时保持打开此窗口","Resend_link":"重新发送链接","We've_sent_a_secure_link_to_%{number}":"已发送安全链接至%{number}","It_may_take_a_few_minutes_to_arrive":"可能要花数分钟时间","Check_your_mobile":"检查手机","Your_mobile_link_will_expire_in_one_hour":"手机链接将于一小时后失效","Don't_refresh_this_page":"不要刷新此页面","Once_you've_finished_we'll_take_you_to_the_next_step":"完成后,将带您进入下一步","Connected_to_your_mobile":"已连接到手机","Upload_photo":"上传照片","Example_of_a_blurry_document":"模糊不清文档的示例","All_details_must_be_clear_—_nothing_blurry":"所有细节必须清楚-不可模糊","Example_of_a_cut-off_document":"剪切文件示例","Show_all_details_—_including_the_bottom_2_lines":"显示所有详细信息-包括最后2行","Example_of_a_document_with_glare":"带有眩光的文档示例","Move_away_from_direct_light_—_no_glare":"远离直射光 - 无眩光现象","Document_example":"文档示例","The_photo_should_clearly_show_your_document":"照片须清楚显示文件","Scans_and_photocopies_are_not_accepted":"不接受扫描件和影印件","Upload_passport_photo_page":"上传含照片的护照页面","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"要开设银行账户,必须先验证身份。","It_will_only_take_a_couple_of_minutes_":"只需数分钟。","Verify_Identity":"身份验证","Open_your_new_bank_account":"开立新的银行账户","Please_enter_a_valid_Login_ID_":"请输入有效的登录 ID。","Amount":"金额","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"从 [_3] 转账 [_1][_2] 到 [_4] 的请求已成功处理。","Resale_not_offered":"不提供转售","You've_made_no_transactions_of_this_type_up_to_this_date_":"至今为止没有进行过此类交易。","Date":"日期","Ref_":"参考","Contract":"合约","Purchase_Price":"买入价格","Sale_Date":"卖出日期","Sale_Price":"卖出价格","Profit/Loss":"利润/亏损","Details":"详情","Total_Profit/Loss":"利润/亏损合计","Action_required!":"需要展开行动!","Sorry,_an_error_occurred_while_processing_your_request_":"对不起,请求处理发生错误。","position(s)":"头寸","withdrawal(s)":"提款","We_couldn’t_read_that!":"我们无法读取!","Remaining_characters:_[_1]_":"剩余字符:[_1]。","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"两个字段请输入少于[_1]个字符。","Only_[_1]_are_allowed_":"只允许 [_1] 。","letters":"字母","numbers":"数字","space":"空间","Please_select_at_least_one_scope":"请选择至少一个范围","New_token_created_":"已创建新口令牌。","The_maximum_number_of_tokens_([_1])_has_been_reached_":"已达令牌 ([_1]) 最大限数。","Name":"姓名","Token":"令牌","Scopes":"范围","Last_Used":"上一次使用","Action":"操作","Are_you_sure_that_you_want_to_permanently_delete_the_token":"确定要永久删除令牌吗","Delete":"删除","Never_Used":"从未使用过","You_have_not_granted_access_to_any_applications_":"没有访问任何应用程序的权限。","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"确定要永久废除应用程序访问权限吗","Revoke_access":"撤销访问权限","Admin":"管理中心","Payments":"支付","Read":"阅读","Trade":"交易","Trading_Information":"交易信息","Never":"从未","Permissions":"权限","Last_Login":"上一次登录","You_did_not_change_anything_":"没作任何更改。","Your_changes_have_been_updated_successfully_":"更改已成功更新。","Successful":"成功","Date_and_Time":"日期和时间","Browser":"浏览器","IP_Address":"IP 地址","Status":"统计","Your_account_has_no_Login/Logout_activity_":"账户无交易活动。","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"账户已经得到完全验证,且取款限额已经取消。","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"当前的[_1]天取款限额是 [_2][_3]。","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"过去 [_3] 天里已累计提取 [_1][_2] 。","Your_withdrawal_limit_is_[_1][_2]_":"取款限额是 [_1][_2]。","You_have_already_withdrawn_[_1][_2]_":"已提取[_1][_2]。","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"因此,取决于账户的可用资金,可支取余额最多为%1%2。","Please_confirm_that_all_the_information_above_is_true_and_complete_":"请确认以上所有信息是真实和完整的。","Your_settings_have_been_updated_successfully_":"设置已成功更新。","Sorry,_an_error_occurred_while_processing_your_account_":"对不起,账户处理发生错误。","Please_select_a_country":"请选择国家","Timed_out_until":"暂停至","Excluded_from_the_website_until":"已被禁止访问本网站直到","Session_duration_limit_cannot_be_more_than_6_weeks_":"交易期持续时间限制不能大于6周。","Time_out_must_be_after_today_":"到期时间必须在今日之后。","Time_out_cannot_be_more_than_6_weeks_":"到期时间不能大于6周。","Time_out_cannot_be_in_the_past_":"到期时间不可为过去式。","Please_select_a_valid_time_":"请选择有效时间。","Exclude_time_cannot_be_less_than_6_months_":"禁止时间不能少于6个月。","Exclude_time_cannot_be_for_more_than_5_years_":"禁止时间不能超过5年。","Confirm_changes":"确认更改","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"将更新您的限额。单击%1同意和接受%2以确认您对自己的行为负全部责任。如果您因此而上瘾或蒙受损失,我们将不承担任何责任。","Agree_and_accept":"同意和接受","Go_back":"返回","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"点选“OK”后,将被禁止在此网站交易,直到选定期限结束为止。","Your_changes_have_been_updated_":"更改已成功更新。","Disable":"禁用","Enable":"启用","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"已成功启用账户的双因素身份验证。","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"已成功禁用账户的双因素身份验证。","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"此时账户还不需要验证。[_1]将通知您何时需通过账户验证。","No_authentication_required":"不需验证","Back_to_trading":"返回交易","You_are_categorised_as_a_professional_client_":"您被归类为专业客户。","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"您被归类为零售客户。申请成为专业交易者。","Bid":"出价","Closed_Bid":"密封出价","Reference_ID":"参考编号","Description":"说明","Credit/Debit":"借方/贷方","Balance":"余额","Top_up_error":"充值错误","Understood":"理解","Top-up_successful":"充值成功","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] 已记入演示账户: [_2]。","Go_to_statement":"前往月结单","Continue_trading":"继续交易","Your_Demo_balance_has_been_reset_":"演示余额已重置。","Account":"账户","Available_Markets":"可用的市场","Type":"类型","Currency":"货币","Multipliers_Account":"乘数账户","Gaming_Account":"博彩账户","Options_Account":"期权账户","Real_Account":"真实账户","Counterparty":"相对方","Jurisdiction":"管辖","Create_account":"开立账户","Change_currency":"更改币种","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"注意: 只能使用一个法定货币账户。首次将资金存入法定账户或开立 MT5 真实账户(或deriv.com 的 Deriv X 真实账户)之前,可以更改法定账户的币种。还可以为每种受支持的加密货币开立专用账户。","This_account_is_disabled":"此账户已禁用","This_account_is_excluded_until_[_1]":"此账户已被隔离, 直到[_1]","Set_currency":"设置币种","Commodities":"大宗商品","Forex":"外汇","Stock_Indices":"股票指数","Stocks":"股票","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"如已在我们的平台拥有账户,将于数分钟内发送内含链接的电子邮件,以便重置密码。","Sign_up":"注册","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"差价合约 (CFD) 的综合指数交易不是所有人都合适。请确保完全明白有关的风险。亏损可能会超越 MT5 账户的所有资金。博彩活动可能会上瘾,请提醒自己要承担责任。","Do_you_wish_to_continue?":"是否继续?","Acknowledge":"确认","Change_Password":"更改密码","The_investor_password_of_account_number_[_1]_has_been_changed_":"[_1]账号的投资者密码已更改。","Reset_Password":"重设密码","Verify_Reset_Password":"重置密码验证","Please_check_your_email_for_further_instructions_":"请检查电子邮件收取详细说明。","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"已完成从[_2]至账号[_3]的[_1]存款。交易编号: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"已完成从账号[_2]至[_3]的[_1]提款。交易编号: [_4]交易编号:[_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"要想从MetaTrader 5 [_1]账户提款,请先通过Binary账户的[_2]验证[_3]。","Current_password":"当前密码","New_password":"新密码","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"要把资金转入MT5账户,请输入[_1]或更多金额","You_have_insufficient_funds_in_your_MT5_account_":"MT5 账户资金不足。","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"对不起,管辖权内无法使用此功能。","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"由于服务器发生问题,一些MT5账户目前无法使用。%1请耐心配合,非常感谢。","Unavailable":"不可用","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] 已记入MT5演示账户: [_2]。","_(Region_added)":" (区域已添加)","_(Temporarily_unavailable)":" (暂时不可用)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"MT5 服务器暂时不能用。正在修复中。请于数分钟后重试。","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"在手机或其他设备使用MT5应用时使用 MT5 密码登录任何[_1]账户。","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"这将更改用在所有[_1]账户的密码。","Demo_Accounts":"模拟账户","Real-Money_Accounts":"真实资金账户","Demo_Account":"模拟账户","Real-Money_Account":"真实资金账户","for_account_[_1]":"用于[_1]账户","[_1]_Account_[_2]":"[_1]账户[_2]","MT5_Financial":"MT5 金融","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"输入 MT5 密码以添加 [_1] [_2] 账户。","demo":"演示","real":"真实","MT5_Synthetic":"MT5 综合","Get_[_1]":"获取 [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"演示账户余额当前为 [_1] 或更低。可以添加 [_2]补充账户资金。","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"如果余额为 [_2] 或更低,可以在演示账户内添加 [_1]。","Yes,_I'm_sure":"是的, 我确认","Are_you_sure?":"是否确定?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"开立此[_1]账户后, 将无法更改法定账户的币种。确定要继续吗?","OK":"确定","Go_to_Deriv_to_add_an_MT5_account":"前往 Deriv 添加 MT5 账户","Back":"返回","Address":"地址","Account_currency":"账户币种","Financial_assessment":"金融评估","Personal_details":"个人资料","Terms_of_use":"使用条款","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"泰达 Omni (USDT) 是建立在比特币区块链上,与美元挂钩的泰达币版本。","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"泰达 ERC20(eUSDT)是与美元挂钩的泰达币版本,在以太坊平台上受托管。","Title_and_name":"称谓和姓名","Real_money_account_opening":"开立真实资金账户","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"令牌已过期或失效。请点击此处重启验证程序。","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"所提供的电子邮件地址已经在使用。如果忘了密码,请尝试使用我们的密码恢复工具或联系客服部。","Password_is_not_strong_enough_":"密码安全度不够。","Upgrade_now":"立即升级","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] 天 [_2] 小时 [_3] 分钟","Your_trading_statistics_since_[_1]_":"自 [_1] 至今的交易统计。","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1]交易和其他类似活动一样,过于沉迷可能会上瘾。为了避免这种风险,我们会定期提供交易和财务的实况简报。","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] 请点击下方的链接,重新启动密码恢复过程。","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"您有了新的 Binary 密码,可用以登录 Binary.com。","Success":"成功","Done":"完成","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Binary账户已与[_1]解除链接。以后请用[_2]电子邮件和密码登录。","Success!":"成功!","Got_it":"知道了","Binary_Password_Reset":"重置 Binary 密码","Binary_password":"Binary 密码","You_have_added_a_[_1]_account_":"已添加了[_1]账户。","Add_account":"添加账户","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"泰达作为 Omni 代币(USDT)是在比特币区块链 Omni 层托管的泰达币版本。","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"泰达作为 ERC20 代币(eUSDT)是在以太坊托管的泰达币版本。","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"泰达作为 TRC20 代币(tUSDT)是在 Tron 托管的泰达币版本。","Add_new_crypto_account":"添加新加密账户","Add_new_account":"添加新账户","Create_a_cryptocurrency_account":"开立加密货币账户","Choose_your_preferred_cryptocurrency":"选择较倾向的加密货币","You_can_open_an_account_for_each_cryptocurrency_":"可以为每种加密货币开立账户。","Choose_a_cryptocurrency_account":"选择加密货币账户","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"选择一个账户或添加新的加密货币账户","Choose_an_account":"选择账户","Choose_one_of_your_accounts_or_add_a_new_account":"选择一个账户或添加新账户","Choose_one_of_your_accounts":"选择一个账户","Please_select_the_currency_for_this_account:":"请选择此账户的币种:","deposit":"存款","deposit_or_create_a_CFDs_account":"存款或开立差价合约账户","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"确定要现在开立 [_1] 账户吗?","Note:":"附注:","You_may_open_one_account_for_each_supported_cryptocurrency_":"可以为每种受支持的加密货币开立专用账户。","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"确定要在 [_1] 开立法定账户吗?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"只能用一个法定账户。首次[_1]前,可以随时更改法定账户的币种。","Yes":"是的","Create_[_1]_account":"开立[_1]账户","You_have_successfully_set_your_account_currency_to_[_1]_":"已成功将账户币种设置为 [_1] 。","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"已成功将账户币种从 [_1] 更改为 [_2]。","Please_choose_a_currency":"请选择一种货币","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"您有了新的 MT5 密码,用于登录网络和手机应用上的 [_1]账户。","Accumulator":"累加器","Asian_Down":"亚洲下跌","Asian_Up":"亚洲上涨","Higher":"高于","Higher_or_equal":"高于或等于","Call_Spread":"买权价差","Digit_Differs":"数字差异","Digit_Even":"数字偶数","Digit_Matches":"数字匹配","Digit_Odd":"数字奇数","Digit_Over":"数字大于","Digit_Under":"数字小于","Ends_Outside":"到期在范围之外","Ends_Between":"到期在范围之内","Multiplier_Down":"乘数下跌","Multiplier_Up":"乘数上涨","Does_Not_Touch":"未触及","Touches":"触及","Lower":"低于","Lower_or_equal":"低于或等值","Put_Spread":"卖权价差","Stays_Between":"位于区间之内","Only_Ups":"持续上涨","Only_Downs":"只会持续下跌","High_Tick":"高跳动点","Low_Tick":"低跳动点","Goes_Outside":"处于区间之外","Call":"看涨期权","Put":"看跌期权","Equals":"等于","Not":"不","Buy":"买入","Sell":"卖出","Waiting_for_contract_settlement_":"等待合约结算。","including_Deal_Cancel__Fee":"包含交易取消. 费用","Contract_has_not_started_yet":"合约还未开始","This_contract_is_only_available_on_[_1]DTrader[_2]_":"此合约仅适用于[_1]DTrader[_2]。","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"此合约只能通过DTrader运作。[_1][_2]前往 Dtrader[_3] 终止或取消此合约。","Contract_Result":"合约结果","Close_Time":"收盘时间","Exit_Spot_Time":"退市现价时间","Audit":"审计","View_chart":"查看图表","Audit_Page":"审核页面","Contract_Starts":"合约开始时间","Contract_Ends":"合同结束","Contract_Details":"合约详情","Target":"目标","Contract_Information":"合约信息","Contract_Type":"合约类型","Transaction_ID":"交易ID","Remaining_Time":"剩余时间","Maximum_payout":"最大赔付","Barrier_Change":"障碍变更","Current":"当前","Spot_Time":"现货时间","Current_Time":"当前时间","Indicative":"指示性","Potential_Profit/Loss":"潜在利润/亏损","Deal_Cancel__Fee":"交易取消. 费用","You_can_close_this_window_without_interrupting_your_trade_":"可以在不中断交易的情况下关闭此窗口。","There_was_an_error":"出现错误","Sell_at_market":"按市价卖出","Note":"附注","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"合约将在我们服务器收到请求时,以当时的市场价格卖出。此价格可能与报价有差异。","You_have_sold_this_contract_at_[_1]_[_2]":"已经以 [_1] [_2] 卖出此合约","Your_transaction_reference_number_is_[_1]":"交易参考号是 [_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"谢谢您的注册!请查看邮件以完成注册程序。","All_markets_are_closed_now__Please_try_again_later_":"所有市场现已关闭。请稍后重试。","Withdrawal":"提款","demo_credit_to_account":"模拟资金进入账户","login":"登录","logout":"注销","Asians":"亚式期权","Call_Spread/Put_Spread":"看涨期权价差/看跌期权价差","Digits":"数字期权","Ends_Between/Ends_Outside":"到期在范围之内/之外","High/Low_Ticks":"高/低跳动点","Lookbacks":"回顾期权","Reset_Call/Reset_Put":"重置看涨/重置看跌","Stays_Between/Goes_Outside":"保持在范围之内/超出范围之外","Touch/No_Touch":"触及/未触及","Christmas_Day":"圣诞节","Closes_early_(at_18:00)":"收盘提前(至18:00)","Closes_early_(at_21:00)":"收盘提前(至21:00)","Fridays":"星期五","New_Year's_Day":"元旦","today":"今天","today,_Fridays":"今天,周五","There_was_a_problem_accessing_the_server_":"服务器访问发生问题。","There_was_a_problem_accessing_the_server_during_purchase_":"买入时服务器访问发生问题。"}; \ No newline at end of file diff --git a/src/javascript/_autogenerated/zh_tw.js b/src/javascript/_autogenerated/zh_tw.js index 42be9890b8fc7..2421bf8e35a35 100644 --- a/src/javascript/_autogenerated/zh_tw.js +++ b/src/javascript/_autogenerated/zh_tw.js @@ -1,2 +1,2 @@ const texts_json = {}; -texts_json['ZH_TW'] = {"Real":"真實","Multipliers":"乘數期權","Gaming":"博彩","Options":"期權","Demo":"示範","Real_CFDs":"真實差價合約","Real_Financial":"真實金融","Demo_CFDs":"示範差價合約","Demo_Financial":"示範金融","Synthetic":"綜合","Demo_Synthetic":"示範綜合","Real_Synthetic":"真實綜合","CFDs":"差價合約","Financial":"金融","Financial_STP":"金融 STP","Demo_Financial_STP":"示範金融 STP","Real_Financial_STP":"真實金融 STP","Bitcoin":"比特幣","Ethereum":"以太坊","Ether_Classic":"古典以太幣","Litecoin":"萊特幣","Binance_USD":"幣安美元","Multi-Collateral":"多資產抵押","Paxos_Standard":"Paxos 標準","Tether_Omni":"泰達 Omni","Tether_ERC20":"泰達 ERC20","Binary_Coin":"Binary 幣","Thank_you,_we'll_get_back_to_you_within_24_hours":"謝謝,會在24小時內回覆","Online":"線上","Offline":"離線","Connecting_to_server":"連接伺服器","Use_a_few_words,_avoid_common_phrases":"用幾個詞,避免常用短語","No_need_for_symbols,_digits,_or_uppercase_letters":"不需要符號、數字或大寫字母","Add_another_word_or_two__Uncommon_words_are_better_":"加上一兩個字。不常見的詞更好。","Straight_rows_of_keys_are_easy_to_guess":"直線排列鍵很容易猜到","Short_keyboard_patterns_are_easy_to_guess":"短鍵盤列式很容易猜到","Use_a_longer_keyboard_pattern_with_more_turns":"使用更長的鍵盤列式並給予更多變化","Repeats_like_\"aaa\"_are_easy_to_guess":"像“aaa”這樣的重複密碼很容易猜到","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"像“abcabcabc”這樣的重複詞比“abc”更難猜測","Avoid_repeated_words_and_characters":"避免重複的單詞和字元","Sequences_like_abc_or_6543_are_easy_to_guess":"像abc或6543這樣的序列密碼很容易猜到","Avoid_sequences":"避免序列式密碼","Recent_years_are_easy_to_guess":"以最近年份作密碼很容易猜出","Avoid_recent_years":"避免用最近數年的年份","Avoid_years_that_are_associated_with_you":"避免用與您相關的年份","Dates_are_often_easy_to_guess":"日期通常很容易猜到","Avoid_dates_and_years_that_are_associated_with_you":"避免用與您相關的日期和年份","This_is_a_top-10_common_password":"這是10個最常用的密碼","This_is_a_top-100_common_password":"這是100個最常用的密碼","This_is_a_very_common_password":"這是很常用的密碼","This_is_similar_to_a_commonly_used_password":"這類似於常用密碼","A_word_by_itself_is_easy_to_guess":"一個詞本身很容易猜到","Names_and_surnames_by_themselves_are_easy_to_guess":"僅名字和姓氏本身很容易猜到","Common_names_and_surnames_are_easy_to_guess":"常用名稱和姓氏容易猜到","Capitalization_doesn't_help_very_much":"大寫並不提供很大幫助","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"全大寫幾乎和全小寫一樣容易猜出","Reversed_words_aren't_much_harder_to_guess":"倒寫單詞並不難猜","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"容易猜測的替換,例如用'@'代替'a'並沒有提供太大幫助","This_password_is_on_the_blacklist":"此密碼已列入黑名單","Unknown_OS":"未知 OS","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"將被轉到不是Binary.com擁有的第三方網站。","Click_OK_to_proceed_":"按一下「確定」繼續。","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"請確保裝置已安裝了Telegram應用程式。","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"必須啟用瀏覽器的web存儲,[_1]才能正常工作。請啟用它或退出私人瀏覽模式。","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"請[_1]登入[_2] 或 [_3]註冊[_4] 以檢視此頁。","This_feature_is_available_to_demo_accounts_only_":"此功能僅適用於示範帳戶。","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"正在使用示範帳戶。請切換到或開立真實帳戶或以存取收銀台。","This_page_is_only_available_to_logged_out_clients_":"此頁面僅適用於已登出的客戶。","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"乘數帳戶無法進行二元期權交易。","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"通過乘數帳戶無法進行二元期權交易。
請轉回到期權帳戶。","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"抱歉,英國和曼島不提供期權交易","Binary_options_trading_is_not_available_in_your_country_":"您的國家無法進行二元期權交易。","This_page_is_not_available_in_your_country_of_residence_":"居住國無法使用此頁面。","Page_not_available,_you_did_not_deactivate_your_account_":"頁面無法使用。沒有停用帳戶。","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"很遺憾,您所在的國家/地區不提供此服務。 如果想交易乘數期權,請嘗試 Deriv 的 DTrader。","Go_to_DTrader":"前往 DTrader","Sign_out":"登出","[_1]_Account":"[_1]帳戶","Click_here_to_open_a_Real_Account":"按一下此處開立真實帳戶","Open_a_Real_Account":"開立真實帳戶","Click_here_to_open_a_Multipliers_Account":"按一下此處開立乘數帳戶","Click_here_to_open_an_Options_account":"按一下此處開立期權帳戶","Open_a_Multipliers_Account":"開立乘數帳戶","Create_Account":"開立帳戶","Accounts_List":"帳戶清單","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"由於系統維護,暫時無法存款。一旦維護完成,即可存款。","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"由於系統維護,暫時無法取款。一旦維護完成,即可取款。","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,加密貨幣收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"收銀台目前已被鎖。請通過即時聊天與我們聯繫以了解如何解鎖。","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"請設定 [_1]帳戶貨幣[_2] 以啟用存款和取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"帳戶尚未通過驗證。請提交[_1]身份證明和地址證明[_2]以驗證帳戶並請求取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"帳戶尚未通過驗證。請提交[_1]身份證明和地址證明[_2]以驗證帳戶並存取收銀台。","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"提交的身份證明文件已過期。請提交有效的身份證件以解鎖收銀台。","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]身份證明[_2]已過期。","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]地址證明[_2]已過期。","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]身份證明[_3]與[_2]地址證明[_3]還未通過驗證。","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]身份證明[_2]還未通過驗證。","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]地址證明[_2]還未通過驗證。","Please_submit_your_[_1]proof_of_identity[_2]_":"請提交[_1]身份證明[_2]。","Please_submit_your_[_1]proof_of_address[_2]_":"請提交[_1]地址證明[_2]。","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"已選擇在 [_1] 前自我禁止在網站交易。如果在自我禁止期後無法交易或存款,請通過即時聊天與我們聯繫。","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"由於尚未設定 30 天交易限額,已被暫時禁用收銀台。請前往 [_1]自我禁止[_2] 並設定 30 天交易限額。","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"MT5帳戶已被禁提款。請檢查電子郵件,以瞭解更多詳情。","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"很遺憾,只能存款。請通過即時聊天與我們聯繫以啟用提款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用存款和取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用存款。","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"尚未設定居住國家/地區。要存取收銀台,請前往帳戶設定的“個人詳細資料”部分更新[_1]居住國家/地區[_2]。","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"收銀台已被鎖。請完成[_1]財務評估[_2]以解鎖。","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"沒有提供稅務編號。法律和監管規定要求提供此資訊。請到帳戶設定中的[_1]個人資料[_2],填寫最新的稅務編號。","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"很遺憾,只能取款。請通過即時聊天與我們聯繫。","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"帳戶已被禁提款。須等載入的文件通過驗證。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"請[_1]接受更新條款和條件[_2]。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"請[_1]接受更新條款和條件[_2],以提高存款和交易限額。","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"帳戶暫時被禁用。請通過即時聊天與我們聯繫以再次啟用存款和取款。","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"請完成合適性測試以存取收銀台。","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"收銀台已被鎖。繼續操作之前,請參閱[_1]我們如何保護您的資金[_2]。","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"帳戶需要驗證。請提交[_1]身分證明[_2]以存取收銀台。","Account_Authenticated":"帳戶已驗證","Connection_error:_Please_check_your_internet_connection_":"連接錯誤:請檢查網絡連接。","Network_status":"網路狀態","This_is_a_staging_server_-_For_testing_purposes_only":"這是分期伺服器,僅用於測試目的","The_server_endpoint_is:_[_2]":"伺服器終端是: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"網絡瀏覽器 ([_1]) 已過時,並可能會影響交易操作。繼續操作須自行承擔風險。[_2]更新瀏覽器[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"已達每秒鐘提呈請求的最高限率。請稍後重試。","There_was_some_invalid_character_in_an_input_field_":"某欄位的輸入字元無效。","regulated_by_the_UK_Gaming_Commission_(UKGC),":"由英國博彩委員會(UKGC)監管,","regulated_by_the_Malta_Gaming_Authority,":"由馬爾他博彩局監管,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"由馬爾他金融服務管理局 (MFSA) 監管,","Please_select":"請選擇","Please_accept_the_terms_and_conditions_":"請接受條款和條件。","Please_confirm_that_you_are_not_a_politically_exposed_person_":"請確認不是政治公眾人士。","Today":"今天","Select_date":"選擇日期","Barrier":"障礙","Entry_Spot":"入市現價","Exit_Spot":"退市現價","Charting_for_this_underlying_is_delayed":"此標的資產的圖表資料已延遲","Payout_Range":"賠付範圍","Purchase_Time":"買入時間","Reset_Barrier":"重設障礙","Reset_Time":"重設時間","Selected_Tick":"選定跳動點","Exit_Time":"退市時間","Start_Time":"開始時間","Fiat":"法定貨幣","Crypto":"加密","Step_[_1]:_[_2]_([_1]_of_[_3])":"步驟 [_1]: [_2] ([_3] 的 [_1])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"驗證碼錯誤。請使用傳送給您的電子郵件中的連結。","Indicates_required_field":"表示必填欄位","Please_select_the_checkbox_":"請選擇核取方塊。","This_field_is_required_":"此為必填欄位。","Should_be_a_valid_number_":"必須是有效號碼。","Up_to_[_1]_decimal_places_are_allowed_":"允許小數點后%位。","Should_be_[_1]":"必須為[_1]","Should_be_between_[_1]_and_[_2]":"須在[_1] 與 [_2]之間","Should_be_more_than_[_1]":"必須大於[_1]","Should_be_less_than_[_1]":"必須小於[_1]","Insufficient_balance_":"餘額不足。","Invalid_email_address_":"無效的電子郵件地址.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"密碼必須有大小寫英文字母和數字。","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允許使用字母、數字、空格、連字號、句號和所有格號。","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"僅允許字母、數字、空格和這些特殊字元: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允許字母、空格、連字號、句號和所有格號。","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"僅允許字母、數字、空格和連字符。","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"請輸入有效的電話號 (例如 +15417541234)。","The_two_passwords_that_you_entered_do_not_match_":"兩次輸入的密碼不相符。","[_1]_and_[_2]_cannot_be_the_same_":"[_1] 和 [_2] 不可相同。","Minimum_of_[_1]_characters_required_":"需至少[_1] 個字元。","You_should_enter_[_1]_characters_":"必須輸入[_1]個字元。","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"應以字母或數位開始,可包含連字號和底線。","Invalid_verification_code_":"無效的驗證代碼。","Your_password_cannot_be_the_same_as_your_email_address_":"密碼不可與電子郵件地址相同。","Transaction_performed_by_[_1]_(App_ID:_[_2])":"交易執行者為[_1] (應用程式 ID: [_2])","Guide":"指南","Next":"下一頁","Finish":"完成","Step":"步驟","Select_your_market_and_underlying_asset":"選擇市場和標的資產","Select_your_trade_type":"選取交易類型","Adjust_trade_parameters":"調整交易參數","Predict_the_directionand_purchase":"預測價格走向
並購入","Your_session_duration_limit_will_end_in_[_1]_seconds_":"交易期持續時間限制將於[_1]秒內結束。","January":"一月","February":"二月","March":"三月","April":"四月","May":"五月","June":"六月","July":"七月","August":"八月","September":"九月","October":"十月","November":"十一月","December":"十二月","Jan":"一月","Feb":"二月","Mar":"三月","Apr":"四月","Jun":"六月","Jul":"七月","Aug":"八月","Sep":"九月","Oct":"十月","Nov":"十一月","Dec":"十二月","Sunday":"星期日","Monday":"星期一","Tuesday":"星期二","Wednesday":"星期三","Thursday":"星期四","Friday":"星期五","Saturday":"星期六","Su":"星期日","Mo":"星期一","Tu":"星期二","We":"星期三","Th":"星期四","Fr":"星期五","Sa":"星期六","Previous":"之前","Hour":"小時","Minute":"分鐘","AM":"上午","PM":"下午","Verification_required":"需要驗證","Verify_identity":"身份驗證","From_account:_":"從帳戶: ","To_account:_":"至帳戶: ","Not_announced_for_this_currency_":"此貨幣未公佈。","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"隨時將示範帳戶餘額重設為 [_1] 。","[_1]Manage_your_accounts[_2]":"[_1]管理帳戶[_2]","time":"時間","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"時或開立 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"已開立了 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶),因此不能再更改幣種。","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"已存入第一筆資金,因此不能再更改幣種。","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"法定帳戶的幣種目前設定為[_1]。","Your_fiat_account's_currency_is_set_to_[_1]_":"法定帳戶的幣種設定為[_1]。","This_is_your_[_1]_account_":"這是 [_1] 帳戶。","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"首次[_3]存款前,可以[_1]設定新幣種[_2]。","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"不想在[_1]交易?可以另外開立加密貨幣帳戶。","Switch_account":"轉換帳戶","Switch_account?":"轉換帳戶?","To_deposit_money,_please_switch_to_your_[_1]_account_":"要存款,請先轉至[_1]帳戶。","To_withdraw_money,_please_switch_to_your_[_1]_account_":"要取款,請先轉至[_1]帳戶。","Switch_to_crypto_account?":"轉換至加密帳戶?","To_deposit_cryptocurrency,_switch_your_account_":"要存入加密貨幣,請轉換帳戶。","To_withdraw_cryptocurrency,_switch_your_account_":"要用加密貨幣取款,請轉換帳戶。","Cancel":"取消","Withdraw":"取款","Deposit":"存款","Town/City":"城鎮/城市","First_line_of_home_address":"住家地址第一行","Postal_Code/ZIP":"郵遞區號","State/Province":"州/省","Email_address":"電子郵件地址","Telephone":"電話","Country_of_Residence":"居住國","details":"詳細資料","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Your_cashier_is_locked_":"收銀台已被鎖。","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"請注意,所選貨幣僅適用於受限制帳戶。","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"已達到提款限額。請上傳身份和地址證明,以提高提款限額,並繼續提款。","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"您的國家或首選幣種不可使用付款代理服務。","Select_payment_agent":"選擇付款代理","Amount_in":"金額單位為","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"只允許字母、數字、空格、連字號、句號、逗號和所有格號。","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"從[_3]帳戶提取[_1] [_2] 到付款代理[_4]帳戶的要求已成功處理。","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"代幣已過期或失效。請點選[_1]此處[_2]重啟驗證程序。","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"抱歉,目前被禁以此貨幣取款。","Please_[_1]deposit[_2]_to_your_account_":"請[_1]存款[_2]入帳戶。","Sorry,_account_signup_is_not_available_in_your_country_":"對不起,您的所在國內不可註冊帳戶。","Asset":"資產","Opens":"開盤","Closes":"收盤","Settles":"結算","Upcoming_Events":"未來事件","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"透過新增+/-給障礙偏移量定義。例如,+0.005 表示比入市現價高0.005 的障礙。","Digit":"數字期權","Percentage":"百分比","Waiting_for_entry_tick_":"等待買入價跳動。","High_Barrier":"高障礙","Low_Barrier":"低障礙","Waiting_for_exit_tick_":"等待賣出價跳動。","Ticks_history_returned_an_empty_array_":"跳動點歷史返回空數組。","Chart_is_not_available_for_this_underlying_":"此標的工具圖表不可用。","Purchase":"買入","Net_profit":"淨收益","Return":"回報","Time_is_in_the_wrong_format_":"時間格式錯誤。","Rise/Fall":"上漲/下跌","Higher/Lower":"高於/低於","Matches/Differs":"符合/相差","Even/Odd":"偶/奇","Over/Under":"大於/小於","High-Close":"最高值-收盤值","Close-Low":"收盤-最低值","High-Low":"最高值-最低值","Reset_Call":"重設買權","Reset_Put":"重設賣權","Up/Down":"漲/跌","Only_Ups/Only_Downs":"持續上漲/持續下跌","In/Out":"範圍之內/之外","Select_Trade_Type":"選擇交易類型","Tick":"跳動點","Spot":"現價","Spot_Time_(GMT)":"現貨時間 (GMT)","seconds":"秒","minutes":"分鐘","hours":"小時","days":"天","ticks":"跳動點","tick":"跳動點","second":"秒","minute":"分鐘","hour":"小時","day":"天","Duration":"期限","End_Time":"結束時間","Purchase_request_sent":"採購請求已傳送","High":"最高值","Close":"收盤","Low":"最低值","Select_Asset":"選擇資產","Search___":"搜尋...","Maximum_multiplier_of_1000_":"最大乘數為1000。","Stake":"投注資金","Payout":"賠付","Multiplier":"乘數期權","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"對不起,帳戶沒有進一步買入任何合約的權限。","Trading_is_unavailable_at_this_time_":"此時無法交易。","Please_reload_the_page":"請重新載入頁面","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"請求成為專業客戶的申請正在處理中。","Your_professional_client_request_is_[_1]not_approved[_2]_":"申請成為專業客戶的請求[_1]不受批准[_2]。","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"一旦滿足所需標準,請重新申請。","More_information_can_be_found_in_an_email_sent_to_you_":"可以在傳給您的電子郵件中找到更詳細的資訊。","I_want_to_reapply":"我想重新申請","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"歐盟的金融二元期權僅供專業投資者使用。","Apply_now_as_a_professional_investor":"立刻申請成為專業投資者","Try_our_[_1]Synthetic_Indices[_2]_":"請試試[_1]綜合指數[_2]。","Try_our_other_markets_":"請嘗試我們其他的市場。","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"請按照[_3]英國博彩[_4]委員會 (UKGC) 的需求完成[_1]真實帳戶表格[_2]以驗證年齡。","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"帳戶存取已暫時受限制。欲知詳情請檢視收件匣。","Contract_Confirmation":"合約確認","Your_transaction_reference_is":"交易參考號是","Total_Cost":"成本總計","Potential_Payout":"可能的賠付額","Potential_Profit":"潛在利潤","View":"檢視","This_contract_won":"此合約獲利","This_contract_lost":"此合約虧損","The_reset_time_is_[_1]":"重設時間為 [_1]","Now":"現在","Average":"平均","Buy_price":"買入價","Final_price":"最終價格","Loss":"虧損","Profit":"利潤","Account_balance:":"帳戶餘額:","Reverse_Side":"反面","Front_Side":"正面","Pending":"待決","Submitting":"正在提交","Submitted":"已提交","Failed":"失敗","Compressing_Image":"正在壓縮圖像","Checking":"檢查中","Checked":"已檢查","Unable_to_read_file_[_1]":"無法讀取文檔[_1]","Passport":"護照","Identity_card":"身分證","Driving_licence":"駕駛執照","Invalid_document_format_":"無效的文檔格式.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"檔案 ([_1]) 大小超過允許限額。允許的最大檔案大小: [_2]","ID_number_is_required_for_[_1]_":"[_1] 需要身份證號。","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"ID 號([_1]) 只允許字母、數位、空格、底線和連字號。","Expiry_date_is_required_for_[_1]_":"[_1] 需要有到期日。","Place_of_birth":"出生地點","Please_select_the_country_of_document_issuance":"請選擇文件簽發國","Choose_the_document_type":"選擇文件類型","Please_enter_the_correct_format__Example:":"請輸入正確的格式。例如:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Google帳戶的電子郵件並點選郵件裡的連結以繼續操作。","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Facebook帳戶的電子郵件並點選郵件裡的連結以繼續操作。","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"查看Apple ID 的電子郵件帳戶並點選郵件裡的連結以繼續操作。","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"請點選郵件上的連結以更改 MT5 密碼。","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"請點選郵件上的連結以更改binary密碼。","We’ve_sent_you_an_email":"已給您傳送電子郵件","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"正在使用 [_1] 帳戶登入 Binary.com 帳戶。如果要將登入方式改成使用者名稱和密碼,請點選[_2]取消連結[_3]按鈕。","Linked_with_[_1]":"已與[_1]連結","You_will_need_to_set_a_password_to_complete_the_process_":"必須設定密碼以完成流程。","Are_you_sure_you_want_to_unlink_from_[_1]?":"是否確認與[_1] 解除連結?","Unlink":"解除連結","Country_not_found":"找不到國家名","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"目前不支援該國家/地區的文檔-嘗試其他文檔類型","Submit_document":"提交文件","Select_country":"選擇國家","e_g__United_States":"例如美國","Search_for_country":"搜尋國家","Select_issuing_country":"選擇發證國家","Submit_verification":"提交驗證","Tips":"提示","Documents_uploaded":"文檔已上傳","Document_uploaded":"文檔已上傳","Selfie_uploaded":"自拍照已上傳","We're_now_ready_to_verify_your_identity":"現在準備驗證身份","Great,_that's_everything_we_need":"太好了,這就是我們需要的一切資訊","The_link_only_works_on_mobile_devices":"連結只能用於手機","Something's_gone_wrong":"出現錯誤","You'll_need_to_restart_your_verification_on_your_computer":"需用電腦重啟驗證","Get_secure_link":"獲取安全連結","Steps_required_to_continue_verification_on_your_mobile":"手機繼續驗證所需的步驟","Check_back_here_to_finish_the_submission":"返回此處完成提交","Open_the_link_and_complete_the_tasks":"打開連結並完成任務","Send_a_secure_link_to_your_phone":"傳送安全連結到手機","Here's_how_to_do_it:":"這是做法:","Continue_on_your_phone":"用電話繼續操作","Your_computer_may_take_a_few_seconds_to_update":"電腦更新可能需要數秒鐘","You_can_now_return_to_your_computer_to_continue":"現在可以返回電腦繼續操作","Uploads_successful":"上傳成功","Make_sure_everything_is_clear":"確保一切都很清楚","Blurry_photo_detected":"偵測到模糊的照片","Make_sure_full_document_is_visible":"確保整個文件都清晰可見","Cut-off_image_detected":"偵測到剪切圖像","Move_away_from_direct_light":"遠離直射光","Glare_detected":"偵測到眩光","Make_sure_all_of_the_document_is_in_the_photo":"確保所有文檔都在照片中","No_document_detected":"未偵測到文件","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"確保卡資料清晰易讀,沒有模糊字體或眩光現象","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"如果看不清楚,就需要更長的時間進行驗證","To_smoothly_verify_you,_we_need_a_better_photo":"為了順利驗證,我們需要更好的照片","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"確保執照詳細資訊清晰易讀,沒有模糊字體或眩光現象","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"確保護照詳細資料清晰易讀,沒有模糊字體或眩光現象","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"確保許可證資料清晰易讀,沒有模糊字體或眩光現象","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"確保所有詳細資訊清晰易讀,沒有模糊字體或眩光現象","Redo":"取消復原","Confirm":"確認","Upload_anyway":"仍要上傳","Enlarge_image":"放大圖像","Photo_of_your_document":"文件的相片","Check_your_image":"查看圖像","Front_and_back":"正面和背面","Driver's_license":"駕駛執照","Face_photo_page":"臉部相片頁面","Residence_permit":"居留證","Sorry,_no_mobile_phone_bills":"抱歉,不接受手機帳單","Documents_you_can_use_to_verify_your_identity":"可用於驗證身份的文件","It_must_be_an_official_photo_ID":"必須是帶照片的正式身份證","These_are_the_documents_most_likely_to_show_your_current_home_address":"這些是最有可能顯示目前家庭住址的文件","Choose_document":"選擇文件","Select_a_%{country}_document":"選擇 %{country} 文件","or_upload_photo_–_no_scans_or_photocopies":"或上傳照片 - 不接受掃描件或影印件","Continue_on_phone":"用電話繼續操作","Take_a_photo_with_your_phone":"用手機拍照","Submit_identity_card_(back)":"提交身份證(背面)","Submit_identity_card_(front)":"提交身份證(正面)","Submit_license_(back)":"提交執照 (背面)","Submit_license_(front)":"提交執照 (正面)","Submit_passport_photo_page":"提交含照片的護照頁面","Submit_residence_permit_(back)":"提交居留證 (背面)","Submit_residence_permit_(front)":"提交居留證 (正面)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"用最新版本的Google Chrome重啟該過程","Restart_the_process_on_the_latest_version_of_Safari":"用最新版本的 Safari 重啟該過程","Unsupported_browser":"不受支援的瀏覽器","Close_identity_verification_screen":"關閉身份驗證螢幕","Dismiss_alert":"消除警報","back":"返回","close":"關閉","Restart_process_on_a_different_device":"用其他裝置重啟進程","Camera_not_detected":"未偵測到相機","Must_be_under_10MB_":"必須小於10MB。","File_size_exceeded_":"超過了文件大小。","Try_using_another_file_type_":"嘗試使用其他文件類型。","File_not_uploaded_":"文件未上傳。","An_error_occurred_while_loading_the_component":"載入組件時出錯","Only_your_face_can_be_in_the_selfie":"自拍照只能拍臉","Multiple_faces_found":"發現多個面孔","Your_face_is_needed_in_the_selfie":"自拍照片必須包括臉部","No_face_found":"未找到人臉","Please_try_again":"請重試","Connection_lost":"連接中斷","Copy_the_link_to_your_phone":"複製連結到手機","Too_many_failed_attempts":"失敗嘗試次數太多","Try_using_a_JPG_or_PNG_file":"嘗試使用 JPG 或 PNG 文件","File_type_not_supported":"不支援的文件類型","Loading___":"正在載入...","Loading":"載入","Check_that_your_number_is_correct":"檢查電話號碼是否正確","Copied":"已複製","Copy":"複製","Send_link":"傳送連結","How_to_scan_a_QR_code":"如何掃描 QR 碼","Point_your_phone’s_camera_at_the_QR_code":"將手機的相機對準 QR 碼","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"如果無法掃描,請從Google Play 或 App Store 下載 QR 碼掃描應用","or":"或","Scan_QR_code":"掃描 QR 碼","Get_link_via_SMS":"通過簡訊獲取連結","Copy_link":"複製連結","Sending":"傳送中","Enter_mobile_number":"輸入行動電話號碼","Enter_your_mobile_number:":"輸入行動電話號碼:","Scan_the_QR_code_with_your_phone":"用手機掃描QR碼","Send_this_one-time_link_to_your_phone":"傳送此一次性安全連結到手機","Open_the_link_on_your_mobile":"用手機打開連結","Get_your_secure_link":"取得安全連結","Copy_the_link_to_your_mobile_browser":"複製連結到手機瀏覽器","Continue":"繼續","Make_sure§":"確保§","2__Your_desktop_window_stays_open":"2. 桌面視窗保持打開狀態","1__This_link_was_sent_by_you":"1. 此連結是您傳送的","Continue_with_the_verification":"繼續驗證操作","Linked_to_your_computer":"與電腦連接","Take_a_photo_of_the_back_of_your_card":"卡背面拍照","Take_a_photo_of_the_front_of_your_card":"卡正面拍照","Take_a_photo_of_the_back_of_your_license":"執照背面拍照","Take_a_photo_of_the_front_of_your_license":"執照正面拍照","Take_a_photo_of_your_passport_photo_page":"為含照片的護照頁面拍照","Take_a_selfie_showing_your_face":"拍張臉部自拍照","Take_a_photo_using_the_basic_camera_mode_instead":"改為使用基本相機模式拍照","Take_a_photo":"拍照","Passport_photo_page":"含照片的護照頁面","Thank_you":"謝謝","Verification_complete":"驗證完畢","Refresh":"更新","Recovery":"復原","Follow_these_steps_to_recover_camera_access:":"請按照以下步驟復原相機存取權限:","Refresh_this_page_to_restart_the_identity_verification_process":"更新此頁面以重啟身份驗證過程","Grant_access_to_your_camera_from_your_browser_settings":"通過瀏覽器設定給予相機的存取權限","Recover_camera_access_to_continue_face_verification":"恢復相機存取權限以繼續面部驗證","Camera_access_is_denied":"相機存取被拒","We_cannot_verify_you_without_using_your_camera":"不使用相機,無法驗證身份","Enable_camera":"啟用相機","When_prompted,_you_must_enable_camera_access_to_continue":"出現提示時,須啟用相機存取權限以繼續操作","Allow_camera_access":"允許相機存取","Provide_the_whole_document_page_for_best_results":"提供完整的文檔頁面以獲得最佳結果","Upload_back_of_card_from_your_computer":"從電腦上傳卡的背面","Upload_front_of_card_from_your_computer":"從電腦上傳卡的正面","Upload_back_of_license_from_your_computer":"從電腦上傳執照的背面","Upload_front_of_license_from_your_computer":"從電腦上傳執照的正面","Upload_passport_photo_page_from_your_computer":"從電腦上傳含照片的護照頁面","Upload_a_selfie_from_your_computer":"從電腦上傳自拍照片","Take_photo":"拍照","Upload":"上傳","Selfie":"自拍","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"檢查它是否已連接並且功能正常。還可以在手機上繼續驗證","Make_sure_your_device_has_a_working_camera":"確保裝置具可正常使用的相機","Camera_not_working?":"相機不能用?","It_may_be_disconnected__Try_using_your_phone_instead_":"可能沒連接。 試試用手機。","Make_sure_your_device's_camera_works":"確保裝置相機可正常使用","Camera_not_working":"相機不能用","Remember_to_press_stop_when_you're_done__Redo_video_actions":"完成後,請記得要按停止。 恢復視訊操作","Looks_like_you_took_too_long":"似乎時間過長","View_from_camera":"從相機觀看","Take_a_selfie":"自拍","Photo_of_your_face":"臉部的照片","Make_sure_your_selfie_clearly_shows_your_face":"確保自拍照清楚顯示臉部","Check_selfie":"檢查自拍照","Tips_to_take_a_good_selfie":"好的自拍技巧","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"面向前方並確保眼睛清晰可見","Remove_your_glasses,_if_necessary":"必要時摘下眼鏡","We'll_compare_it_with_your_document":"將把它與您的文檔比較","Your_link_will_expire_in_one_hour":"連結將於一小時後失效","Keep_this_window_open_while_using_your_mobile":"使用手機時保持打開此視窗","Resend_link":"重新傳送連結","We've_sent_a_secure_link_to_%{number}":"已傳送安全連結至%{number}","It_may_take_a_few_minutes_to_arrive":"可能要花數分鐘時間","Check_your_mobile":"檢查手機","Your_mobile_link_will_expire_in_one_hour":"手機連結將於一小時後失效","Don't_refresh_this_page":"不要刷新此頁面","Once_you've_finished_we'll_take_you_to_the_next_step":"完成後,將帶您進入下一步","Connected_to_your_mobile":"已連接到手機","Upload_photo":"上傳照片","Example_of_a_blurry_document":"模糊不清文檔的示例","All_details_must_be_clear_—_nothing_blurry":"所有詳細資料必須清楚-不可模糊","Example_of_a_cut-off_document":"剪切文件示例","Show_all_details_—_including_the_bottom_2_lines":"顯示所有詳細資訊-包括最後2行","Example_of_a_document_with_glare":"帶有眩光的文檔示例","Move_away_from_direct_light_—_no_glare":"遠離直射光 - 無眩光現象","Document_example":"文檔示例","The_photo_should_clearly_show_your_document":"照片須清楚顯示文件","Scans_and_photocopies_are_not_accepted":"不接受掃描件和影印件","Upload_passport_photo_page":"上傳含照片的護照頁面","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"要開設銀行帳戶,必須先驗證身份。","It_will_only_take_a_couple_of_minutes_":"只需數分鐘。","Verify_Identity":"身份驗證","Open_your_new_bank_account":"開立新的銀行帳戶","Please_enter_a_valid_Login_ID_":"請輸入有效的登入識別碼。","Amount":"金額","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"從[_3]轉帳[_1][_2]到[_4]的要求已成功處理。","Resale_not_offered":"不提供轉售","You've_made_no_transactions_of_this_type_up_to_this_date_":"至今為止沒有進行過此類交易。","Date":"日期","Ref_":"參考","Contract":"合約","Purchase_Price":"買入價格","Sale_Date":"賣出日期","Sale_Price":"賣出價格","Profit/Loss":"利潤/虧損","Details":"詳細資料","Total_Profit/Loss":"利潤/虧損合計","Action_required!":"需要展開行動!","Sorry,_an_error_occurred_while_processing_your_request_":"對不起,在處理請求時發生錯誤。","position(s)":"頭寸","withdrawal(s)":"提款","We_couldn’t_read_that!":"我們無法讀取!","Remaining_characters:_[_1]_":"剩餘字元:[_1]。","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"兩個欄位請輸入少於[_1]個字元。","Only_[_1]_are_allowed_":"只允許 [_1] 。","letters":"字母","numbers":"號碼","space":"空間","Please_select_at_least_one_scope":"請選擇至少一個範圍","New_token_created_":"已建立新代幣。","The_maximum_number_of_tokens_([_1])_has_been_reached_":"已達代幣 ([_1]) 最大限數。","Name":"姓名","Token":"代幣","Scopes":"範圍","Last_Used":"最近一次使用","Action":"操作","Are_you_sure_that_you_want_to_permanently_delete_the_token":"確定要永久刪除權杖嗎","Delete":"刪除","Never_Used":"從未使用過","You_have_not_granted_access_to_any_applications_":"未獲權限存取任何應用程式。","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"確定要永久廢除應用程式存取權限嗎","Revoke_access":"撤銷存取權限","Admin":"管理中心","Payments":"支付","Read":"閱讀","Trade":"交易","Trading_Information":"交易資訊","Never":"從未","Permissions":"權限","Last_Login":"上一次登入","You_did_not_change_anything_":"沒做任何更改。","Your_changes_have_been_updated_successfully_":"更改已成功更新。","Successful":"成功","Date_and_Time":"日期和時間","Browser":"瀏覽","IP_Address":"IP地址","Status":"狀況","Your_account_has_no_Login/Logout_activity_":"帳戶沒有登入/登出活動。","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"帳戶已經得到完全驗證,且取款限額已經取消。","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"目前[_1]天的取款限額是[_2][_3]。","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"過去 [_3] 天裡已累計提取 [_1][_2]。","Your_withdrawal_limit_is_[_1][_2]_":"取款限額是[_1][_2]。","You_have_already_withdrawn_[_1][_2]_":"已提取 [_1][_2]。","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"因此,取決於帳戶的可用資金,可支取餘額最多為[_1][_2]。","Please_confirm_that_all_the_information_above_is_true_and_complete_":"請確認以上所有資訊是真實和完整的。","Your_settings_have_been_updated_successfully_":"設定已成功更新。","Sorry,_an_error_occurred_while_processing_your_account_":"對不起,在處理帳戶時出錯。","Please_select_a_country":"請選擇國家","Timed_out_until":"時間已過。下次開啟時間為","Excluded_from_the_website_until":"已被禁止存取本網站直到","Session_duration_limit_cannot_be_more_than_6_weeks_":"交易期持續時間限制不能大於6週。","Time_out_must_be_after_today_":"到期時間必須在今日之後。","Time_out_cannot_be_more_than_6_weeks_":"到期時間不能大於6週。","Time_out_cannot_be_in_the_past_":"到期時間不可為過去式。","Please_select_a_valid_time_":"請選擇有效時間。","Exclude_time_cannot_be_less_than_6_months_":"禁止時間不能少於6個月。","Exclude_time_cannot_be_for_more_than_5_years_":"禁止時間不能超過5年。","Confirm_changes":"確認更改","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"將更新限額。點選[_1]同意和接受[_2]以確認對自己的行為負全部責任,如果您因此而上癮或蒙受損失,我們將不承擔任何責任。","Agree_and_accept":"同意和接受","Go_back":"返回","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"點選「OK」後,您將被禁止在此網站交易,直到選定期限結束為止。","Your_changes_have_been_updated_":"更改已成功更新。","Disable":"禁用","Enable":"啟用","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"已成功啟用帳戶的雙因素身份驗證。","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"已成功禁用帳戶的雙因素身份驗證。","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"此時帳戶還不需要驗證。[_1]我們會通知您何時必須通過帳戶驗證。","No_authentication_required":"不需要驗證","Back_to_trading":"返回交易","You_are_categorised_as_a_professional_client_":"您被歸類為專業客戶。","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"您被歸類為零售客戶。申請成為專業交易者。","Bid":"出價","Closed_Bid":"出價已收盤","Reference_ID":"身份參考號","Description":"描述","Credit/Debit":"借記/貸記","Balance":"餘額","Top_up_error":"充值錯誤","Understood":"理解","Top-up_successful":"充值成功","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] 已記入MT5示範帳戶: [_2]。","Go_to_statement":"前往月結單","Continue_trading":"繼續交易","Your_Demo_balance_has_been_reset_":"示範餘額已重設。","Account":"帳戶","Available_Markets":"可用的市場","Type":"類型","Currency":"貨幣","Multipliers_Account":"乘數帳戶","Gaming_Account":"博彩帳戶","Options_Account":"期權帳戶","Real_Account":"真實帳戶","Counterparty":"相對方","Jurisdiction":"管轄","Create_account":"開立帳戶","Change_currency":"更改幣種","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"注意: 只能使用一個法定貨幣帳戶。首次把資金存入法定帳戶或開立 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶)之前,可以更改法定帳戶的幣種。還可以為每種受支持的加密貨幣開立專用帳戶。","This_account_is_disabled":"此帳戶已禁用","This_account_is_excluded_until_[_1]":"此帳戶已被隔離,直到[_1]","Set_currency":"設定幣種","Commodities":"商品","Forex":"外匯","Stock_Indices":"股票指數","Stocks":"股票","Synthetic_Indices":"綜合指數","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"如已在平台擁有帳戶,將於數分鐘內傳送內含連結的電子郵件,以便重設密碼。","Sign_up":"註冊","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"差價合約 (CFD) 的綜合指數交易並不是所有人都適合。請確保您完全明白有關的風險。虧損可能會超越 MT5 帳戶的所有資金。博彩活動可能會上癮,請提醒自己要承擔責任。","Do_you_wish_to_continue?":"是否繼續?","Acknowledge":"確認","Change_Password":"更改密碼","The_investor_password_of_account_number_[_1]_has_been_changed_":"[_1]帳號的投資者密碼已更改。","Reset_Password":"重設密碼","Verify_Reset_Password":"重設密碼驗證","Please_check_your_email_for_further_instructions_":"請檢查電子郵件收取詳細說明。","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"已完成從[_2]至帳號[_3]的[_1]存款。交易編號: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"已完成從帳號[_2]至[_3]的[_1]提款。交易編號: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"如果想從MetaTrader 5 [_1]帳戶提款,請先通過Binary帳戶的[_2]驗證[_3]。","Current_password":"目前密碼","New_password":"新密碼","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"要把資金轉入MT5帳戶,請輸入[_1]或更多金額","You_have_insufficient_funds_in_your_MT5_account_":"MT5 帳戶資金不足。","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"對不起,管轄權內無法使用此功能。","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"由於伺服器發生問題,一些MT5帳戶目前無法使用。 %1請耐心配合,非常感謝。","Unavailable":"不可用","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] 已記入MT5示範帳戶: [_2]。","_(Region_added)":" (已新增區域)","_(Temporarily_unavailable)":" (暫時不可用)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"MT5 伺服器暫時不能用。正在修復中。請於數分鐘後重試。","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"在手機或其他裝置使用MT5應用時使用 MT5 密碼登入任何[_1]帳戶。","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"這將更改用於所有 [_1]帳戶的密碼。","Demo_Accounts":"示範帳戶","Real-Money_Accounts":"真實資金帳戶","Demo_Account":"示範帳戶","Real-Money_Account":"真實資金帳戶","for_account_[_1]":"用於帳戶[_1]","[_1]_Account_[_2]":"[_1]帳戶[_2]","MT5_Financial":"MT5 金融","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"輸入 MT5 密碼以新增 [_1] [_2] 帳戶。","demo":"示範","real":"真實","MT5_Synthetic":"MT5 綜合","Get_[_1]":"獲取 [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"示範帳戶餘額目前為[_1]或更低。可以新增[_2]補充帳戶資金。","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"如果餘額為 [_2] 或更低,可以在示範帳戶內新增 [_1]。","Yes,_I'm_sure":"是的,我確認","Are_you_sure?":"是否確定?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"開立此[_1]帳戶後,將無法更改法定帳戶的幣種。確定要繼續嗎?","OK":"確定","Go_to_Deriv_to_add_an_MT5_account":"前往 Deriv 新增 MT5 帳戶","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"可使用 Binary.com 憑證登入 Deriv。","Back":"返回","Go_to_Deriv":"前往 Deriv","Address":"地址","Account_currency":"帳戶幣種","Financial_assessment":"財務評估","Personal_details":"個人資料","Terms_of_use":"使用條款","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"泰達 Omni (USDT) 是建立在比特幣區塊鏈上,與美元掛鉤的泰達幣版本。","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"泰達 ERC20(eUSDT)是與美元掛鉤的泰達幣版本,在以太坊平台上受託管。","Title_and_name":"稱謂和姓名","Real_money_account_opening":"開立真實資金帳戶","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"代幣已過期或失效。請點選此處重啟驗證程序。","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"所提供的電子郵件地址已經在使用。如果忘了密碼,請嘗試使用我們的密碼恢復工具或聯繫客服部。","Password_is_not_strong_enough_":"密碼安全度不夠。","Upgrade_now":"立即升級","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] 天 [_2] 小時 [_3] 分鐘","Your_trading_statistics_since_[_1]_":"自[_1]至今的交易統計。","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1]交易就像任何其他活動一樣,過於沉迷可能會上癮。為了避免發生此種風險,我們定期提供交易和財務的實況簡報。","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] 請點選下方連結,重新開啟密碼恢復過程。","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"有了新的 Binary 密碼,用於登入 Binary.com。","Success":"成功","Done":"完成","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Binary帳戶已與[_1]解除連結。以後請用[_2]電子郵件和密碼登入。","Success!":"成功!","Got_it":"知道了","Binary_Password_Reset":"重設 Binary 密碼","Binary_password":"Binary 密碼","You_have_added_a_[_1]_account_":"已建立了 [_1]帳戶。","Add_account":"新增帳戶","Add_new_crypto_account":"新增加密帳戶","Add_new_account":"新增帳戶","Create_a_cryptocurrency_account":"開立加密貨幣帳戶","Choose_your_preferred_cryptocurrency":"選擇較傾向的加密貨幣","You_can_open_an_account_for_each_cryptocurrency_":"可以為每種加密貨幣開立帳戶。","Choose_a_cryptocurrency_account":"選擇加密貨幣帳戶","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"選擇一個帳戶或開立新的加密貨幣帳戶","Choose_an_account":"選擇帳戶","Choose_one_of_your_accounts_or_add_a_new_account":"選擇一個帳戶或開立新帳戶","Choose_one_of_your_accounts":"選擇一個帳戶","Please_select_the_currency_for_this_account:":"請選擇此帳戶的幣種:","deposit":"存款","deposit_or_create_a_CFDs_account":"存款或開立差價合約帳戶","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"確定要現在開立 [_1] 帳戶嗎?","Note:":"備註:","You_may_open_one_account_for_each_supported_cryptocurrency_":"可以為每種受支援的加密貨幣開立專用帳戶。","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"確定要在 [_1] 開立法定帳戶嗎?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"只能用一個法定帳戶。首次[_1]之前,可以隨時更改法定帳戶的幣種。","Yes":"是的","Create_[_1]_account":"開立[_1]帳戶","You_have_successfully_set_your_account_currency_to_[_1]_":"已成功將帳戶幣種設定為 [_1] 。","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"已成功將帳戶幣種從 [_1] 更改為 [_2]。","Please_choose_a_currency":"請選擇一種貨幣","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"有了新的 MT5 密碼,用於登入網絡和手機應用上的 [_1]帳戶.","Asian_Up":"亞洲期權上漲","Asian_Down":"亞洲期權下跌","Higher":"高於","Higher_or_equal":"高於或等於","Lower":"低於","Lower_or_equal":"低於或等值","Digit_Matches":"數字匹配","Digit_Differs":"數字不匹配","Digit_Odd":"數字為奇數","Digit_Even":"數字為偶數","Digit_Over":"數字超過限額","Digit_Under":"數字低於限額","Ends_Outside":"區間之外結束","Ends_Between":"區間之內結束","Stays_Between":"位於區間之內","Goes_Outside":"處於區間之外","Touches":"觸及","Does_Not_Touch":"未觸及","Call_Spread":"買權價差","Put_Spread":"賣權價差","High_Tick":"高跳動點","Low_Tick":"低跳動點","Only_Ups":"只會持續上漲","Only_Downs":"只會持續下跌","Multiplier_Up":"乘數上漲","Multiplier_Down":"乘數下跌","Equals":"等於","Not":"不","Buy":"買入","Sell":"賣出","Waiting_for_contract_settlement_":"等待合約結算。","including_Deal_Cancel__Fee":"包含交易取消. 費用","Contract_has_not_started_yet":"合約尚未開始","This_contract_is_only_available_on_[_1]DTrader[_2]_":"此合約僅適用於[_1]DTrader[_2]。","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"此合約只能通過DTrader執行。 [_1][_2]前往 Dtrader[_3] 終止或取消此合約。","Contract_Result":"合約結果","Close_Time":"收盤時間","Exit_Spot_Time":"退市現價時間","Audit":"審計","View_chart":"檢視圖表","Audit_Page":"審核頁面","Contract_Starts":"合約開始時間","Contract_Ends":"合約結束","Contract_Details":"合約詳細資料","Target":"目標","Contract_Information":"合約資訊","Contract_Type":"合約類型","Transaction_ID":"交易ID","Remaining_Time":"剩餘時間","Maximum_payout":"最大賠付","Barrier_Change":"障礙變更","Current":"目前","Spot_Time":"現貨時間","Current_Time":"目前時間","Indicative":"指示性","Potential_Profit/Loss":"潛在利潤/虧損","Deal_Cancel__Fee":"交易取消. 費用","You_can_close_this_window_without_interrupting_your_trade_":"可以在不中斷交易的情況下關閉此視窗。","There_was_an_error":"出現錯誤","Sell_at_market":"按市價賣出","Note":"備註","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"合約將在我們伺服器收到要求時以當時的市場價格賣出。此價格可能會與報價有差異。","You_have_sold_this_contract_at_[_1]_[_2]":"已經以 [_1] [_2] 賣出此合約","Your_transaction_reference_number_is_[_1]":"交易號是[_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"謝謝您的註冊!請檢視郵件以完成註冊程序。","All_markets_are_closed_now__Please_try_again_later_":"所有市場現已關閉。請稍後重試。","Withdrawal":"提款","demo_credit_to_account":"示範資金存入帳戶","login":"登入","logout":"登出","Asians":"亞洲期權","Call_Spread/Put_Spread":"看漲期權價差/看跌期權價差","Digits":"數字期權","Ends_Between/Ends_Outside":"到期在範圍之內/之外","High/Low_Ticks":"高/低跳動點","Lookbacks":"回顧","Reset_Call/Reset_Put":"重置看漲/重置看跌","Stays_Between/Goes_Outside":"保持在範圍之內/超出範圍之外","Touch/No_Touch":"觸及/未觸及","Christmas_Day":"聖誕節","Closes_early_(at_18:00)":"收盤提前(至18:00)","Closes_early_(at_21:00)":"收盤提前(至21:00)","Fridays":"星期五","New_Year's_Day":"新年","today":"今天","today,_Fridays":"今天,週五","There_was_a_problem_accessing_the_server_":"伺服器存取出了問題。","There_was_a_problem_accessing_the_server_during_purchase_":"買入時伺服器存取出了問題。"}; \ No newline at end of file +texts_json['ZH_TW'] = {"Real":"真實","Multipliers":"乘數期權","Gaming":"博彩","Options":"期權","Demo":"示範","Real_CFDs":"真實差價合約","Real_Financial":"真實金融","Demo_CFDs":"示範差價合約","Demo_Financial":"示範金融","Derived":"衍生資產","Demo_Derived":"示範衍生資產","Real_Derived":"真實衍生資產","CFDs":"差價合約","Financial":"金融","Financial_STP":"金融 STP","Demo_Financial_STP":"示範金融 STP","Real_Financial_STP":"真實金融 STP","Bitcoin":"比特幣","Ethereum":"以太坊","Ether_Classic":"古典以太幣","Litecoin":"萊特幣","Binance_USD":"幣安美元","Multi-Collateral":"多資產抵押","Paxos_Standard":"Paxos 標準","Tether_Omni":"泰達 Omni","Tether_ERC20":"泰達 ERC20","Binary_Coin":"Binary 幣","Tether_TRC20":"泰達 TRC20","Online":"線上","Offline":"離線","Connecting_to_server":"連接伺服器","Use_a_few_words,_avoid_common_phrases":"用幾個詞,避免常用短語","No_need_for_symbols,_digits,_or_uppercase_letters":"不需要符號、數字或大寫字母","Add_another_word_or_two__Uncommon_words_are_better_":"加上一兩個字。不常見的詞更好。","Straight_rows_of_keys_are_easy_to_guess":"直線排列鍵很容易猜到","Short_keyboard_patterns_are_easy_to_guess":"短鍵盤列式很容易猜到","Use_a_longer_keyboard_pattern_with_more_turns":"使用更長的鍵盤列式並給予更多變化","Repeats_like_\"aaa\"_are_easy_to_guess":"像“aaa”這樣的重複密碼很容易猜到","Repeats_like_\"abcabcabc\"_are_only_slightly_harder_to_guess_than_\"abc\"":"像“abcabcabc”這樣的重複詞比“abc”更難猜測","Avoid_repeated_words_and_characters":"避免重複的單詞和字元","Sequences_like_abc_or_6543_are_easy_to_guess":"像abc或6543這樣的序列密碼很容易猜到","Avoid_sequences":"避免序列式密碼","Recent_years_are_easy_to_guess":"以最近年份作密碼很容易猜出","Avoid_recent_years":"避免用最近數年的年份","Avoid_years_that_are_associated_with_you":"避免用與您相關的年份","Dates_are_often_easy_to_guess":"日期通常很容易猜到","Avoid_dates_and_years_that_are_associated_with_you":"避免用與您相關的日期和年份","This_is_a_top-10_common_password":"這是10個最常用的密碼","This_is_a_top-100_common_password":"這是100個最常用的密碼","This_is_a_very_common_password":"這是很常用的密碼","This_is_similar_to_a_commonly_used_password":"這類似於常用密碼","A_word_by_itself_is_easy_to_guess":"一個詞本身很容易猜到","Names_and_surnames_by_themselves_are_easy_to_guess":"僅名字和姓氏本身很容易猜到","Common_names_and_surnames_are_easy_to_guess":"常用名稱和姓氏容易猜到","Capitalization_doesn't_help_very_much":"大寫並不提供很大幫助","All-uppercase_is_almost_as_easy_to_guess_as_all-lowercase":"全大寫幾乎和全小寫一樣容易猜出","Reversed_words_aren't_much_harder_to_guess":"倒寫單詞並不難猜","Predictable_substitutions_like_'@'_instead_of_'a'_don't_help_very_much":"容易猜測的替換,例如用'@'代替'a'並沒有提供太大幫助","This_password_is_on_the_blacklist":"此密碼已列入黑名單","Unknown_OS":"未知 OS","You_will_be_redirected_to_a_third-party_website_which_is_not_owned_by_Binary_com_":"將被轉到不是Binary.com擁有的第三方網站。","Click_OK_to_proceed_":"按一下「確定」繼續。","Please_ensure_that_you_have_the_Telegram_app_installed_on_your_device_":"請確保裝置已安裝了Telegram應用程式。","[_1]_requires_your_browser's_web_storage_to_be_enabled_in_order_to_function_properly__Please_enable_it_or_exit_private_browsing_mode_":"必須啟用瀏覽器的web存儲,[_1]才能正常工作。請啟用它或退出私人瀏覽模式。","Please_[_1]log_in[_2]_or_[_3]sign_up[_4]_to_view_this_page_":"請[_1]登入[_2] 或 [_3]註冊[_4] 以檢視此頁。","This_feature_is_available_to_demo_accounts_only_":"此功能僅適用於示範帳戶。","You_are_using_a_demo_account__Please_switch_to_a_real_account_or_create_one_to_access_Cashier_":"正在使用示範帳戶。請切換到或開立真實帳戶或以存取收銀台。","This_page_is_only_available_to_logged_out_clients_":"此頁面僅適用於已登出的客戶。","Binary_options_trading_is_not_available_in_your_Multipliers_account_":"乘數帳戶無法進行二元期權交易。","Binary_options_trading_is_not_available_via_your_Multipliers_account_
Please_switch_back_to_your_Options_account_":"通過乘數帳戶無法進行二元期權交易。
請轉回到期權帳戶。","Sorry,_options_trading_isn’t_available_in_the_United_Kingdom_and_the_Isle_of_Man":"抱歉,英國和曼島不提供期權交易","Binary_options_trading_is_not_available_in_your_country_":"您的國家無法進行二元期權交易。","This_page_is_not_available_in_your_country_of_residence_":"居住國無法使用此頁面。","Page_not_available,_you_did_not_deactivate_your_account_":"頁面無法使用。沒有停用帳戶。","Unfortunately,_this_service_isn’t_available_in_your_country__If_you’d_like_to_trade_multipliers,_try_DTrader_on_Deriv_":"很遺憾,您所在的國家/地區不提供此服務。 如果想交易乘數期權,請嘗試 Deriv 的 DTrader。","Go_to_DTrader":"前往 DTrader","Sign_out":"登出","[_1]_Account":"[_1]帳戶","Click_here_to_open_a_Real_Account":"按一下此處開立真實帳戶","Open_a_Real_Account":"開立真實帳戶","Click_here_to_open_a_Multipliers_Account":"按一下此處開立乘數帳戶","Click_here_to_open_an_Options_account":"按一下此處開立期權帳戶","Open_a_Multipliers_Account":"開立乘數帳戶","Go_to_Deriv_to_add_an_account":"前往 Deriv 新增帳戶","You'll_be_able_to_log_in_to_Deriv_using_your_Binary_com_credentials_":"可使用 Binary.com 憑證登入 Deriv。","Cancel":"取消","Go_to_Deriv":"前往 Deriv","Create_Account":"開立帳戶","Accounts_List":"帳戶清單","Deposits_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_deposits_when_the_maintenance_is_complete_":"由於系統維護,暫時無法存款。一旦維護完成,即可存款。","Withdrawals_are_temporarily_unavailable_due_to_system_maintenance__You_can_make_your_withdrawals_when_the_maintenance_is_complete_":"由於系統維護,暫時無法取款。一旦維護完成,即可取款。","Our_cryptocurrency_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,加密貨幣收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Our_cashier_is_temporarily_down_due_to_system_maintenance_You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Your_cashier_is_currently_locked__Please_contact_us_via_live_chat_to_find_out_how_to_unlock_it_":"收銀台目前已被鎖。請通過即時聊天與我們聯繫以了解如何解鎖。","Please_set_your_[_1]account_currency[_2]_to_enable_deposits_and_withdrawals_":"請設定 [_1]帳戶貨幣[_2] 以啟用存款和取款。","Your_name_and_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文件中的姓名和出生日期與 Binary 個人資料不匹配。請在[_1]個人詳細資料頁面[_2]更新姓名。","Your_date_of_birth_in_the_document_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文件中的出生日期與 Binary 個人資料不匹配。請在[_1]個人詳細資料頁面[_2]更新姓名。","Your_document_name_doesn't_match_your_Binary_profile_name__Please_update_your_name_in_the_[_1]Personal_details_page[_2]_":"文件中的姓名與 Binary 個人資料不匹配。請在[_1]個人詳細資料頁面[_2]更新姓名。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_request_for_withdrawals_":"帳戶尚未通過驗證。請提交[_1]身份證明和地址證明[_2]以驗證帳戶並請求取款。","Your_account_has_not_been_authenticated__Please_submit_your_[_1]proof_of_identity_and_proof_of_address[_2]_to_authenticate_your_account_and_access_your_cashier_":"帳戶尚未通過驗證。請提交[_1]身份證明和地址證明[_2]以驗證帳戶並存取收銀台。","The_identification_documents_you_submitted_have_expired__Please_submit_valid_identity_documents_to_unlock_Cashier_":"提交的身份證明文件已過期。請提交有效的身份證件以解鎖收銀台。","Your_[_1]proof_of_identity[_2]_has_expired_":"[_1]身份證明[_2]已過期。","Your_[_1]proof_of_address[_2]_has_expired_":"[_1]地址證明[_2]已過期。","Your_[_1]proof_of_identity[_3]_and_[_2]proof_of_address[_3]_have_not_been_verified_":"[_1]身份證明[_3]與[_2]地址證明[_3]還未通過驗證。","Your_[_1]proof_of_identity[_2]_has_not_been_verified_":"[_1]身份證明[_2]還未通過驗證。","Your_[_1]proof_of_address[_2]_has_not_been_verified_":"[_1]地址證明[_2]還未通過驗證。","Please_submit_your_[_1]proof_of_identity[_2]_":"請提交[_1]身份證明[_2]。","Please_submit_your_[_1]proof_of_address[_2]_":"請提交[_1]地址證明[_2]。","You_have_chosen_to_exclude_yourself_from_trading_on_our_website_until_[_1]__If_you_are_unable_to_place_a_trade_or_deposit_after_your_self-exclusion_period,_please_contact_us_via_live_chat_":"已選擇在 [_1] 前自我禁止在網站交易。如果在自我禁止期後無法交易或存款,請通過即時聊天與我們聯繫。","Your_access_to_Cashier_has_been_temporarily_disabled_as_you_have_not_set_your_30-day_turnover_limit__Please_go_to_[_1]Self-exclusion[_2]_and_set_your_30-day_turnover_limit_":"由於尚未設定 30 天交易限額,已被暫時禁用收銀台。請前往 [_1]自我禁止[_2] 並設定 30 天交易限額。","MT5_withdrawals_have_been_disabled_on_your_account__Please_check_your_email_for_more_details_":"MT5帳戶已被禁提款。請檢查電子郵件,以瞭解更多詳情。","Unfortunately,_you_can_only_make_deposits__Please_contact_us_via_live_chat_to_enable_withdrawals_":"很遺憾,只能存款。請通過即時聊天與我們聯繫以啟用提款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_and_withdrawals_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用存款和取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_withdrawals_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用取款。","Your_[_1]personal_details[_2]_are_incomplete__Please_go_to_your_account_settings_and_complete_your_personal_details_to_enable_deposits_":"[_1]個人詳細資料[_2]不完整。請前往帳戶設定並填寫個人詳細資料,以啟用存款。","You’ve_not_set_your_country_of_residence__To_access_Cashier,_please_update_your_[_1]country_of_residence[_2]_in_the_Personal_details_section_in_your_account_settings_":"尚未設定居住國家/地區。要存取收銀台,請前往帳戶設定的“個人詳細資料”部分更新[_1]居住國家/地區[_2]。","Your_cashier_is_locked__Please_complete_the_[_1]financial_assessment[_2]_to_unlock_it_":"收銀台已被鎖。請完成[_1]財務評估[_2]以解鎖。","You_have_not_provided_your_tax_identification_number__This_information_is_necessary_for_legal_and_regulatory_requirements__Please_go_to_[_1]Personal_details[_2]_in_your_account_settings,_and_fill_in_your_latest_tax_identification_number_":"沒有提供稅務編號。法律和監管規定要求提供此資訊。請到帳戶設定中的[_1]個人資料[_2],填寫最新的稅務編號。","Unfortunately,_you_can_only_make_withdrawals__Please_contact_us_via_live_chat_":"很遺憾,只能取款。請通過即時聊天與我們聯繫。","Withdrawals_have_been_disabled_on_your_account__Please_wait_until_your_uploaded_documents_are_verified_":"帳戶已被禁提款。須等載入的文件通過驗證。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_":"請[_1]接受更新條款和條件[_2]。","Please_[_1]accept_the_updated_Terms_and_Conditions[_2]_to_lift_your_deposit_and_trading_limits_":"請[_1]接受更新條款和條件[_2],以提高存款和交易限額。","Your_account_is_temporarily_disabled__Please_contact_us_via_live_chat_to_enable_deposits_and_withdrawals_again_":"帳戶暫時被禁用。請通過即時聊天與我們聯繫以再次啟用存款和取款。","Please_complete_the_Appropriateness_Test_to_access_your_cashier_":"請完成合適性測試以存取收銀台。","Your_cashier_is_locked__See_[_1]how_we_protect_your_funds[_2]_before_you_proceed_":"收銀台已被鎖。繼續操作之前,請參閱[_1]我們如何保護您的資金[_2]。","Your_account_needs_authentication__Please_submit_your_[_1]proof_of_identity[_2]_to_access_Cashier_":"帳戶需要驗證。請提交[_1]身分證明[_2]以存取收銀台。","Account_Authenticated":"帳戶已驗證","Connection_error:_Please_check_your_internet_connection_":"連接錯誤:請檢查網絡連接。","Network_status":"網路狀態","This_is_a_staging_server_-_For_testing_purposes_only":"這是分期伺服器,僅用於測試目的","The_server_endpoint_is:_[_2]":"伺服器終端是: [_2]","Your_web_browser_([_1])_is_out_of_date_and_may_affect_your_trading_experience__Proceed_at_your_own_risk__[_2]Update_browser[_3]":"網絡瀏覽器 ([_1]) 已過時,並可能會影響交易操作。繼續操作須自行承擔風險。[_2]更新瀏覽器[_3]","You_have_reached_the_rate_limit_of_requests_per_second__Please_try_later_":"已達每秒鐘提呈請求的最高限率。請稍後重試。","There_was_some_invalid_character_in_an_input_field_":"某欄位的輸入字元無效。","regulated_by_the_UK_Gaming_Commission_(UKGC),":"由英國博彩委員會(UKGC)監管,","regulated_by_the_Malta_Gaming_Authority,":"由馬爾他博彩局監管,","regulated_by_the_Malta_Financial_Services_Authority_(MFSA),":"由馬爾他金融服務管理局 (MFSA) 監管,","Please_select":"請選擇","Please_accept_the_terms_and_conditions_":"請接受條款和條件。","Please_confirm_that_you_are_not_a_politically_exposed_person_":"請確認不是政治公眾人士。","Today":"今天","Select_date":"選擇日期","Barrier":"障礙","Entry_Spot":"入市現價","Exit_Spot":"退市現價","Charting_for_this_underlying_is_delayed":"此標的資產的圖表資料已延遲","Payout_Range":"賠付範圍","Purchase_Time":"買入時間","Reset_Barrier":"重設障礙","Reset_Time":"重設時間","Selected_Tick":"選定跳動點","Exit_Time":"退市時間","Start_Time":"開始時間","Fiat":"法定貨幣","Crypto":"加密","Step_[_1]:_[_2]_([_1]_of_[_3])":"步驟 [_1]: [_2] ([_3] 的 [_1])","Verification_code_is_wrong__Please_use_the_link_sent_to_your_email_":"驗證碼錯誤。請使用傳送給您的電子郵件中的連結。","Indicates_required_field":"表示必填欄位","Please_select_the_checkbox_":"請選擇核取方塊。","This_field_is_required_":"此為必填欄位。","Should_be_a_valid_number_":"必須是有效號碼。","Up_to_[_1]_decimal_places_are_allowed_":"允許小數點后%位。","Should_be_[_1]":"必須為[_1]","Should_be_between_[_1]_and_[_2]":"須在[_1] 與 [_2]之間","Should_be_more_than_[_1]":"必須大於[_1]","Should_be_less_than_[_1]":"必須小於[_1]","Insufficient_balance_":"餘額不足。","Invalid_email_address_":"無效的電子郵件地址.","Password_should_have_lower_and_uppercase_English_letters_with_numbers_":"密碼必須有大小寫英文字母和數字。","Only_letters,_numbers,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允許使用字母、數字、空格、連字號、句號和所有格號。","Only_letters,_numbers,_space,_and_these_special_characters_are_allowed:_[_1]":"僅允許字母、數字、空格和這些特殊字元: [_1]","Only_letters,_space,_hyphen,_period,_and_apostrophe_are_allowed_":"只允許字母、空格、連字號、句號和所有格號。","Only_letters,_numbers,_space,_and_hyphen_are_allowed_":"僅允許字母、數字、空格和連字符。","Please_enter_a_valid_phone_number_(e_g__+15417541234)_":"請輸入有效的電話號 (例如 +15417541234)。","The_two_passwords_that_you_entered_do_not_match_":"兩次輸入的密碼不相符。","[_1]_and_[_2]_cannot_be_the_same_":"[_1] 和 [_2] 不可相同。","Minimum_of_[_1]_characters_required_":"需至少[_1] 個字元。","You_should_enter_[_1]_characters_":"必須輸入[_1]個字元。","Should_start_with_letter_or_number,_and_may_contain_hyphen_and_underscore_":"應以字母或數位開始,可包含連字號和底線。","Invalid_verification_code_":"無效的驗證代碼。","Your_password_cannot_be_the_same_as_your_email_address_":"密碼不可與電子郵件地址相同。","Transaction_performed_by_[_1]_(App_ID:_[_2])":"交易執行者為[_1] (應用程式 ID: [_2])","Guide":"指南","Next":"下一頁","Finish":"完成","Step":"步驟","Select_your_market_and_underlying_asset":"選擇市場和標的資產","Select_your_trade_type":"選取交易類型","Adjust_trade_parameters":"調整交易參數","Predict_the_directionand_purchase":"預測價格走向
並購入","Your_session_duration_limit_will_end_in_[_1]_seconds_":"交易期持續時間限制將於[_1]秒內結束。","January":"一月","February":"二月","March":"三月","April":"四月","May":"五月","June":"六月","July":"七月","August":"八月","September":"九月","October":"十月","November":"十一月","December":"十二月","Jan":"一月","Feb":"二月","Mar":"三月","Apr":"四月","Jun":"六月","Jul":"七月","Aug":"八月","Sep":"九月","Oct":"十月","Nov":"十一月","Dec":"十二月","Sunday":"星期日","Monday":"星期一","Tuesday":"星期二","Wednesday":"星期三","Thursday":"星期四","Friday":"星期五","Saturday":"星期六","Su":"星期日","Mo":"星期一","Tu":"星期二","We":"星期三","Th":"星期四","Fr":"星期五","Sa":"星期六","Previous":"之前","Hour":"小時","Minute":"分鐘","AM":"上午","PM":"下午","Verification_required":"需要驗證","Verify_identity":"身份驗證","From_account:_":"從帳戶: ","To_account:_":"至帳戶: ","Not_announced_for_this_currency_":"此貨幣未公佈。","Reset_the_balance_of_your_demo_account_to_[_1]_anytime_":"隨時將示範帳戶餘額重設為 [_1] 。","[_1]Manage_your_accounts[_2]":"[_1]管理帳戶[_2]","time":"時間","time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)":"時或開立 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶)","You_can_no_longer_change_the_currency_because_you've_created_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)_":"已開立了 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶),因此不能再更改幣種。","You_can_no_longer_change_the_currency_because_you've_made_a_first-time_deposit_":"已存入第一筆資金,因此不能再更改幣種。","Your_fiat_account's_currency_is_currently_set_to_[_1]_":"法定帳戶的幣種目前設定為[_1]。","Your_fiat_account's_currency_is_set_to_[_1]_":"法定帳戶的幣種設定為[_1]。","This_is_your_[_1]_account_":"這是 [_1] 帳戶。","You_can_[_1]set_a_new_currency[_2]_before_you_deposit_for_the_first_[_3]_":"首次[_3]存款前,可以[_1]設定新幣種[_2]。","Don't_want_to_trade_in_[_1]?_You_can_open_another_cryptocurrency_account_":"不想在[_1]交易?可以另外開立加密貨幣帳戶。","Switch_account":"轉換帳戶","Switch_account?":"轉換帳戶?","To_deposit_money,_please_switch_to_your_[_1]_account_":"要存款,請先轉至[_1]帳戶。","To_withdraw_money,_please_switch_to_your_[_1]_account_":"要取款,請先轉至[_1]帳戶。","Switch_to_crypto_account?":"轉換至加密帳戶?","To_deposit_cryptocurrency,_switch_your_account_":"要存入加密貨幣,請轉換帳戶。","To_withdraw_cryptocurrency,_switch_your_account_":"要用加密貨幣取款,請轉換帳戶。","Withdraw":"取款","Deposit":"存款","Town/City":"城鎮/城市","First_line_of_home_address":"住家地址第一行","Postal_Code/ZIP":"郵遞區號","State/Province":"州/省","Email_address":"電子郵件地址","Telephone":"電話","Country_of_Residence":"居住國","details":"詳細資料","Our_cashier_is_temporarily_down_due_to_system_maintenance__You_can_access_the_Cashier_in_a_few_minutes_when_the_maintenance_is_complete_":"由於系統維護,收銀台暫時無法使用。數分鐘後一旦維護完成,即可存取收銀台。","Your_cashier_is_locked_":"收銀台已被鎖。","Please_note_that_the_selected_currency_is_allowed_for_limited_accounts_only_":"請注意,所選貨幣僅適用於受限制帳戶。","You_have_reached_the_withdrawal_limit__Please_upload_your_proof_of_identity_and_address_to_lift_your_withdrawal_limit_and_proceed_with_your_withdrawal_":"已達到提款限額。請上傳身份和地址證明,以提高提款限額,並繼續提款。","Payment_Agent_services_are_not_available_in_your_country_or_in_your_preferred_currency_":"您的國家或首選幣種不可使用付款代理服務。","Select_payment_agent":"選擇付款代理","Amount_in":"金額單位為","Only_letters,_numbers,_space,_hyphen,_period,_comma,_and_apostrophe_are_allowed_":"只允許字母、數字、空格、連字號、句號、逗號和所有格號。","Your_request_to_withdraw_[_1]_[_2]_from_your_account_[_3]_to_Payment_Agent_[_4]_account_has_been_successfully_processed_":"從[_3]帳戶提取[_1] [_2] 到付款代理[_4]帳戶的要求已成功處理。","Your_token_has_expired_or_is_invalid__Please_click_[_1]here[_2]_to_restart_the_verification_process_":"代幣已過期或失效。請點選[_1]此處[_2]重啟驗證程序。","Sorry,_withdrawals_for_this_currency_are_currently_disabled_":"抱歉,目前被禁以此貨幣取款。","Please_[_1]deposit[_2]_to_your_account_":"請[_1]存款[_2]入帳戶。","Sorry,_account_signup_is_not_available_in_your_country_":"對不起,您的所在國內不可註冊帳戶。","Asset":"資產","Opens":"開盤","Closes":"收盤","Settles":"結算","Upcoming_Events":"未來事件","Add_+/–_to_define_a_barrier_offset__For_example,_+0_005_means_a_barrier_that's_0_005_higher_than_the_entry_spot_":"透過新增+/-給障礙偏移量定義。例如,+0.005 表示比入市現價高0.005 的障礙。","Digit":"數字期權","Percentage":"百分比","Waiting_for_entry_tick_":"等待買入價跳動。","High_Barrier":"高障礙","Low_Barrier":"低障礙","Waiting_for_exit_tick_":"等待賣出價跳動。","Ticks_history_returned_an_empty_array_":"跳動點歷史返回空數組。","Chart_is_not_available_for_this_underlying_":"此標的工具圖表不可用。","Purchase":"買入","Net_profit":"淨收益","Return":"回報","Time_is_in_the_wrong_format_":"時間格式錯誤。","Rise/Fall":"上漲/下跌","Higher/Lower":"高於/低於","Matches/Differs":"符合/相差","Even/Odd":"偶/奇","Over/Under":"大於/小於","High-Close":"最高值-收盤值","Close-Low":"收盤-最低值","High-Low":"最高值-最低值","Reset_Call":"重設買權","Reset_Put":"重設賣權","Up/Down":"漲/跌","Only_Ups/Only_Downs":"持續上漲/持續下跌","In/Out":"範圍之內/之外","Select_Trade_Type":"選擇交易類型","Tick":"跳動點","Spot":"現價","Spot_Time_(GMT)":"現貨時間 (GMT)","seconds":"秒","minutes":"分鐘","hours":"小時","days":"天","ticks":"跳動點","tick":"跳動點","second":"秒","minute":"分鐘","hour":"小時","day":"天","Duration":"期限","End_Time":"結束時間","Purchase_request_sent":"採購請求已傳送","High":"最高值","Close":"收盤","Low":"最低值","Select_Asset":"選擇資產","Search___":"搜尋...","Maximum_multiplier_of_1000_":"最大乘數為1000。","Stake":"投注資金","Payout":"賠付","Multiplier":"乘數期權","Sorry,_your_account_is_not_authorised_for_any_further_contract_purchases_":"對不起,帳戶沒有進一步買入任何合約的權限。","Trading_is_unavailable_at_this_time_":"此時無法交易。","Please_reload_the_page":"請重新載入頁面","No_further_trading_is_allowed_on_this_contract_type_for_the_current_trading_session__For_more_info,_refer_to_our_[_1]terms_and_conditions[_2]_":"目前交易時段內不允許對該合約類型進一步交易。有關詳細資訊,請參閱[_1]條款和條件[_2].","Your_application_to_be_treated_as_a_professional_client_is_being_processed_":"請求成為專業客戶的申請正在處理中。","Your_professional_client_request_is_[_1]not_approved[_2]_":"申請成為專業客戶的請求[_1]不受批准[_2]。","Please_reapply_once_the_required_criteria_has_been_fulfilled_":"一旦滿足所需標準,請重新申請。","More_information_can_be_found_in_an_email_sent_to_you_":"可以在傳給您的電子郵件中找到更詳細的資訊。","I_want_to_reapply":"我想重新申請","In_the_EU,_financial_binary_options_are_only_available_to_professional_investors_":"歐盟的金融二元期權僅供專業投資者使用。","Apply_now_as_a_professional_investor":"立刻申請成為專業投資者","Try_our_[_1]Synthetic_Indices[_2]_":"請試試[_1]綜合指數[_2]。","Try_our_other_markets_":"請嘗試我們其他的市場。","Please_complete_the_[_1]Real_Account_form[_2]_to_verify_your_age_as_required_by_the_[_3]UK_Gambling[_4]_Commission_(UKGC)_":"請按照[_3]英國博彩[_4]委員會 (UKGC) 的需求完成[_1]真實帳戶表格[_2]以驗證年齡。","Account_access_is_temporarily_limited__Please_check_your_inbox_for_more_details_":"帳戶存取已暫時受限制。欲知詳情請檢視收件匣。","Contract_Confirmation":"合約確認","Your_transaction_reference_is":"交易參考號是","Total_Cost":"成本總計","Potential_Payout":"可能的賠付額","Potential_Profit":"潛在利潤","View":"檢視","This_contract_won":"此合約獲利","This_contract_lost":"此合約虧損","The_reset_time_is_[_1]":"重設時間為 [_1]","Now":"現在","Average":"平均","Buy_price":"買入價","Final_price":"最終價格","Loss":"虧損","Profit":"利潤","Account_balance:":"帳戶餘額:","Reverse_Side":"反面","Front_Side":"正面","Pending":"待決","Submitting":"正在提交","Submitted":"已提交","Failed":"失敗","Compressing_Image":"正在壓縮圖像","Checking":"檢查中","Checked":"已檢查","Unable_to_read_file_[_1]":"無法讀取文檔[_1]","Passport":"護照","Identity_card":"身分證","Driving_licence":"駕駛執照","Invalid_document_format_":"無效的文檔格式.","File_([_1])_size_exceeds_the_permitted_limit__Maximum_allowed_file_size:_[_2]":"檔案 ([_1]) 大小超過允許限額。允許的最大檔案大小: [_2]","ID_number_is_required_for_[_1]_":"[_1] 需要身份證號。","Only_letters,_numbers,_space,_underscore,_and_hyphen_are_allowed_for_ID_number_([_1])_":"ID 號([_1]) 只允許字母、數位、空格、底線和連字號。","Expiry_date_is_required_for_[_1]_":"[_1] 需要有到期日。","Place_of_birth":"出生地點","Please_select_the_country_of_document_issuance":"請選擇文件簽發國","Choose_the_document_type":"選擇文件類型","Please_enter_the_correct_format__Example:":"請輸入正確的格式。例如:","Check_your_Google_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Google帳戶的電子郵件並點選郵件裡的連結以繼續操作。","Check_your_Facebook_account_email_and_click_the_link_in_the_email_to_proceed_":"查看Facebook帳戶的電子郵件並點選郵件裡的連結以繼續操作。","Check_the_email_account_associated_with_your_Apple_ID_and_click_the_link_in_the_email_to_proceed_":"查看Apple ID 的電子郵件帳戶並點選郵件裡的連結以繼續操作。","Please_click_on_the_link_in_the_email_to_change_your_MT5_password_":"請點選郵件上的連結以更改 MT5 密碼。","Please_click_on_the_link_in_the_email_to_change_your_binary_password_":"請點選郵件上的連結以更改binary密碼。","We’ve_sent_you_an_email":"已給您傳送電子郵件","You're_using_your_[_1]_account_to_log_in_to_your_Binary_com_account__To_change_your_login_method_into_using_a_username_and_password,_click_the_[_2]Unlink[_3]_button_":"正在使用 [_1] 帳戶登入 Binary.com 帳戶。如果要將登入方式改成使用者名稱和密碼,請點選[_2]取消連結[_3]按鈕。","Linked_with_[_1]":"已與[_1]連結","You_will_need_to_set_a_password_to_complete_the_process_":"必須設定密碼以完成流程。","Are_you_sure_you_want_to_unlink_from_[_1]?":"是否確認與[_1] 解除連結?","Unlink":"解除連結","Country_not_found":"找不到國家名","Documents_from_that_country_are_not_currently_supported_—_try_another_document_type":"目前不支援該國家/地區的文檔-嘗試其他文檔類型","Submit_document":"提交文件","Select_country":"選擇國家","e_g__United_States":"例如美國","Search_for_country":"搜尋國家","Select_issuing_country":"選擇發證國家","Submit_verification":"提交驗證","Tips":"提示","Documents_uploaded":"文檔已上傳","Document_uploaded":"文檔已上傳","Selfie_uploaded":"自拍照已上傳","We're_now_ready_to_verify_your_identity":"現在準備驗證身份","Great,_that's_everything_we_need":"太好了,這就是我們需要的一切資訊","The_link_only_works_on_mobile_devices":"連結只能用於手機","Something's_gone_wrong":"出現錯誤","You'll_need_to_restart_your_verification_on_your_computer":"需用電腦重啟驗證","Get_secure_link":"獲取安全連結","Steps_required_to_continue_verification_on_your_mobile":"手機繼續驗證所需的步驟","Check_back_here_to_finish_the_submission":"返回此處完成提交","Open_the_link_and_complete_the_tasks":"打開連結並完成任務","Send_a_secure_link_to_your_phone":"傳送安全連結到手機","Here's_how_to_do_it:":"這是做法:","Continue_on_your_phone":"用電話繼續操作","Your_computer_may_take_a_few_seconds_to_update":"電腦更新可能需要數秒鐘","You_can_now_return_to_your_computer_to_continue":"現在可以返回電腦繼續操作","Uploads_successful":"上傳成功","Make_sure_everything_is_clear":"確保一切都很清楚","Blurry_photo_detected":"偵測到模糊的照片","Make_sure_full_document_is_visible":"確保整個文件都清晰可見","Cut-off_image_detected":"偵測到剪切圖像","Move_away_from_direct_light":"遠離直射光","Glare_detected":"偵測到眩光","Make_sure_all_of_the_document_is_in_the_photo":"確保所有文檔都在照片中","No_document_detected":"未偵測到文件","Make_sure_your_card_details_are_clear_to_read,_with_no_blur_or_glare":"確保卡資料清晰易讀,沒有模糊字體或眩光現象","It’ll_take_longer_to_verify_you_if_we_can’t_read_it":"如果看不清楚,就需要更長的時間進行驗證","To_smoothly_verify_you,_we_need_a_better_photo":"為了順利驗證,我們需要更好的照片","Make_sure_your_license_details_are_clear_to_read,_with_no_blur_or_glare":"確保執照詳細資訊清晰易讀,沒有模糊字體或眩光現象","Make_sure_your_passport_details_are_clear_to_read,_with_no_blur_or_glare":"確保護照詳細資料清晰易讀,沒有模糊字體或眩光現象","Make_sure_your_permit_details_are_clear_to_read,_with_no_blur_or_glare":"確保許可證資料清晰易讀,沒有模糊字體或眩光現象","Make_sure_details_are_clear_to_read,_with_no_blur_or_glare":"確保所有詳細資訊清晰易讀,沒有模糊字體或眩光現象","Redo":"取消復原","Confirm":"確認","Upload_anyway":"仍要上傳","Enlarge_image":"放大圖像","Photo_of_your_document":"文件的相片","Check_your_image":"查看圖像","Front_and_back":"正面和背面","Driver's_license":"駕駛執照","Face_photo_page":"臉部相片頁面","Residence_permit":"居留證","Sorry,_no_mobile_phone_bills":"抱歉,不接受手機帳單","Documents_you_can_use_to_verify_your_identity":"可用於驗證身份的文件","It_must_be_an_official_photo_ID":"必須是帶照片的正式身份證","These_are_the_documents_most_likely_to_show_your_current_home_address":"這些是最有可能顯示目前家庭住址的文件","Choose_document":"選擇文件","Select_a_%{country}_document":"選擇 %{country} 文件","or_upload_photo_–_no_scans_or_photocopies":"或上傳照片 - 不接受掃描件或影印件","Continue_on_phone":"用電話繼續操作","Take_a_photo_with_your_phone":"用手機拍照","Submit_identity_card_(back)":"提交身份證(背面)","Submit_identity_card_(front)":"提交身份證(正面)","Submit_license_(back)":"提交執照 (背面)","Submit_license_(front)":"提交執照 (正面)","Submit_passport_photo_page":"提交含照片的護照頁面","Submit_residence_permit_(back)":"提交居留證 (背面)","Submit_residence_permit_(front)":"提交居留證 (正面)","Restart_the_process_on_the_latest_version_of_Google_Chrome":"用最新版本的Google Chrome重啟該過程","Restart_the_process_on_the_latest_version_of_Safari":"用最新版本的 Safari 重啟該過程","Unsupported_browser":"不受支援的瀏覽器","Close_identity_verification_screen":"關閉身份驗證螢幕","Dismiss_alert":"消除警報","back":"返回","close":"關閉","Restart_process_on_a_different_device":"用其他裝置重啟進程","Camera_not_detected":"未偵測到相機","Must_be_under_10MB_":"必須小於10MB。","File_size_exceeded_":"超過了文件大小。","Try_using_another_file_type_":"嘗試使用其他文件類型。","File_not_uploaded_":"文件未上傳。","An_error_occurred_while_loading_the_component":"載入組件時出錯","Only_your_face_can_be_in_the_selfie":"自拍照只能拍臉","Multiple_faces_found":"發現多個面孔","Your_face_is_needed_in_the_selfie":"自拍照片必須包括臉部","No_face_found":"未找到人臉","Please_try_again":"請重試","Connection_lost":"連接中斷","Copy_the_link_to_your_phone":"複製連結到手機","Too_many_failed_attempts":"失敗嘗試次數太多","Try_using_a_JPG_or_PNG_file":"嘗試使用 JPG 或 PNG 文件","File_type_not_supported":"不支援的文件類型","Loading___":"正在載入...","Loading":"載入","Check_that_your_number_is_correct":"檢查電話號碼是否正確","Copied":"已複製","Copy":"複製","Send_link":"傳送連結","How_to_scan_a_QR_code":"如何掃描 QR 碼","Point_your_phone’s_camera_at_the_QR_code":"將手機的相機對準 QR 碼","If_it_doesn’t_work,_download_a_QR_code_scanner_from_Google_Play_or_the_App_Store":"如果無法掃描,請從Google Play 或 App Store 下載 QR 碼掃描應用","or":"或","Scan_QR_code":"掃描 QR 碼","Get_link_via_SMS":"通過簡訊獲取連結","Copy_link":"複製連結","Sending":"傳送中","Enter_mobile_number":"輸入行動電話號碼","Enter_your_mobile_number:":"輸入行動電話號碼:","Scan_the_QR_code_with_your_phone":"用手機掃描QR碼","Send_this_one-time_link_to_your_phone":"傳送此一次性安全連結到手機","Open_the_link_on_your_mobile":"用手機打開連結","Get_your_secure_link":"取得安全連結","Copy_the_link_to_your_mobile_browser":"複製連結到手機瀏覽器","Continue":"繼續","Make_sure§":"確保§","2__Your_desktop_window_stays_open":"2. 桌面視窗保持打開狀態","1__This_link_was_sent_by_you":"1. 此連結是您傳送的","Continue_with_the_verification":"繼續驗證操作","Linked_to_your_computer":"與電腦連接","Take_a_photo_of_the_back_of_your_card":"卡背面拍照","Take_a_photo_of_the_front_of_your_card":"卡正面拍照","Take_a_photo_of_the_back_of_your_license":"執照背面拍照","Take_a_photo_of_the_front_of_your_license":"執照正面拍照","Take_a_photo_of_your_passport_photo_page":"為含照片的護照頁面拍照","Take_a_selfie_showing_your_face":"拍張臉部自拍照","Take_a_photo_using_the_basic_camera_mode_instead":"改為使用基本相機模式拍照","Take_a_photo":"拍照","Passport_photo_page":"含照片的護照頁面","Thank_you":"謝謝","Verification_complete":"驗證完畢","Refresh":"更新","Recovery":"復原","Follow_these_steps_to_recover_camera_access:":"請按照以下步驟復原相機存取權限:","Refresh_this_page_to_restart_the_identity_verification_process":"更新此頁面以重啟身份驗證過程","Grant_access_to_your_camera_from_your_browser_settings":"通過瀏覽器設定給予相機的存取權限","Recover_camera_access_to_continue_face_verification":"恢復相機存取權限以繼續面部驗證","Camera_access_is_denied":"相機存取被拒","We_cannot_verify_you_without_using_your_camera":"不使用相機,無法驗證身份","Enable_camera":"啟用相機","When_prompted,_you_must_enable_camera_access_to_continue":"出現提示時,須啟用相機存取權限以繼續操作","Allow_camera_access":"允許相機存取","Provide_the_whole_document_page_for_best_results":"提供完整的文檔頁面以獲得最佳結果","Upload_back_of_card_from_your_computer":"從電腦上傳卡的背面","Upload_front_of_card_from_your_computer":"從電腦上傳卡的正面","Upload_back_of_license_from_your_computer":"從電腦上傳執照的背面","Upload_front_of_license_from_your_computer":"從電腦上傳執照的正面","Upload_passport_photo_page_from_your_computer":"從電腦上傳含照片的護照頁面","Upload_a_selfie_from_your_computer":"從電腦上傳自拍照片","Take_photo":"拍照","Upload":"上傳","Selfie":"自拍","Check_that_it_is_connected_and_functional__You_can_also_continue_verification_on_your_phone":"檢查它是否已連接並且功能正常。還可以在手機上繼續驗證","Make_sure_your_device_has_a_working_camera":"確保裝置具可正常使用的相機","Camera_not_working?":"相機不能用?","It_may_be_disconnected__Try_using_your_phone_instead_":"可能沒連接。 試試用手機。","Make_sure_your_device's_camera_works":"確保裝置相機可正常使用","Camera_not_working":"相機不能用","Remember_to_press_stop_when_you're_done__Redo_video_actions":"完成後,請記得要按停止。 恢復視訊操作","Looks_like_you_took_too_long":"似乎時間過長","View_from_camera":"從相機觀看","Take_a_selfie":"自拍","Photo_of_your_face":"臉部的照片","Make_sure_your_selfie_clearly_shows_your_face":"確保自拍照清楚顯示臉部","Check_selfie":"檢查自拍照","Tips_to_take_a_good_selfie":"好的自拍技巧","Face_forward_and_make_sure_your_eyes_are_clearly_visible":"面向前方並確保眼睛清晰可見","Remove_your_glasses,_if_necessary":"必要時摘下眼鏡","We'll_compare_it_with_your_document":"將把它與您的文檔比較","Your_link_will_expire_in_one_hour":"連結將於一小時後失效","Keep_this_window_open_while_using_your_mobile":"使用手機時保持打開此視窗","Resend_link":"重新傳送連結","We've_sent_a_secure_link_to_%{number}":"已傳送安全連結至%{number}","It_may_take_a_few_minutes_to_arrive":"可能要花數分鐘時間","Check_your_mobile":"檢查手機","Your_mobile_link_will_expire_in_one_hour":"手機連結將於一小時後失效","Don't_refresh_this_page":"不要刷新此頁面","Once_you've_finished_we'll_take_you_to_the_next_step":"完成後,將帶您進入下一步","Connected_to_your_mobile":"已連接到手機","Upload_photo":"上傳照片","Example_of_a_blurry_document":"模糊不清文檔的示例","All_details_must_be_clear_—_nothing_blurry":"所有詳細資料必須清楚-不可模糊","Example_of_a_cut-off_document":"剪切文件示例","Show_all_details_—_including_the_bottom_2_lines":"顯示所有詳細資訊-包括最後2行","Example_of_a_document_with_glare":"帶有眩光的文檔示例","Move_away_from_direct_light_—_no_glare":"遠離直射光 - 無眩光現象","Document_example":"文檔示例","The_photo_should_clearly_show_your_document":"照片須清楚顯示文件","Scans_and_photocopies_are_not_accepted":"不接受掃描件和影印件","Upload_passport_photo_page":"上傳含照片的護照頁面","To_open_a_bank_account,_we_will_need_to_verify_your_identity_":"要開設銀行帳戶,必須先驗證身份。","It_will_only_take_a_couple_of_minutes_":"只需數分鐘。","Verify_Identity":"身份驗證","Open_your_new_bank_account":"開立新的銀行帳戶","Please_enter_a_valid_Login_ID_":"請輸入有效的登入識別碼。","Amount":"金額","Your_request_to_transfer_[_1]_[_2]_from_[_3]_to_[_4]_has_been_successfully_processed_":"從[_3]轉帳[_1][_2]到[_4]的要求已成功處理。","Resale_not_offered":"不提供轉售","You've_made_no_transactions_of_this_type_up_to_this_date_":"至今為止沒有進行過此類交易。","Date":"日期","Ref_":"參考","Contract":"合約","Purchase_Price":"買入價格","Sale_Date":"賣出日期","Sale_Price":"賣出價格","Profit/Loss":"利潤/虧損","Details":"詳細資料","Total_Profit/Loss":"利潤/虧損合計","Action_required!":"需要展開行動!","Sorry,_an_error_occurred_while_processing_your_request_":"對不起,在處理請求時發生錯誤。","position(s)":"頭寸","withdrawal(s)":"提款","We_couldn’t_read_that!":"我們無法讀取!","Remaining_characters:_[_1]_":"剩餘字元:[_1]。","Please_enter_no_more_than_[_1]_characters_for_both_fields_":"兩個欄位請輸入少於[_1]個字元。","Only_[_1]_are_allowed_":"只允許 [_1] 。","letters":"字母","numbers":"號碼","space":"空間","Please_select_at_least_one_scope":"請選擇至少一個範圍","New_token_created_":"已建立新代幣。","The_maximum_number_of_tokens_([_1])_has_been_reached_":"已達代幣 ([_1]) 最大限數。","Name":"姓名","Token":"代幣","Scopes":"範圍","Last_Used":"最近一次使用","Action":"操作","Are_you_sure_that_you_want_to_permanently_delete_the_token":"確定要永久刪除權杖嗎","Delete":"刪除","Never_Used":"從未使用過","You_have_not_granted_access_to_any_applications_":"未獲權限存取任何應用程式。","Are_you_sure_that_you_want_to_permanently_revoke_access_to_the_application":"確定要永久廢除應用程式存取權限嗎","Revoke_access":"撤銷存取權限","Admin":"管理中心","Payments":"支付","Read":"閱讀","Trade":"交易","Trading_Information":"交易資訊","Never":"從未","Permissions":"權限","Last_Login":"上一次登入","You_did_not_change_anything_":"沒做任何更改。","Your_changes_have_been_updated_successfully_":"更改已成功更新。","Successful":"成功","Date_and_Time":"日期和時間","Browser":"瀏覽","IP_Address":"IP地址","Status":"狀況","Your_account_has_no_Login/Logout_activity_":"帳戶沒有登入/登出活動。","Your_account_is_fully_authenticated_and_your_withdrawal_limits_have_been_lifted_":"帳戶已經得到完全驗證,且取款限額已經取消。","Your_[_1]_day_withdrawal_limit_is_currently_[_2][_3]_":"目前[_1]天的取款限額是[_2][_3]。","You_have_already_withdrawn_[_1][_2]_in_aggregate_over_the_last_[_3]_days_":"過去 [_3] 天裡已累計提取 [_1][_2]。","Your_withdrawal_limit_is_[_1][_2]_":"取款限額是[_1][_2]。","You_have_already_withdrawn_[_1][_2]_":"已提取 [_1][_2]。","Hence,_your_withdrawable_balance_is_only_up_to_[_1][_2],_subject_to_your_account’s_available_funds_":"因此,取決於帳戶的可用資金,可支取餘額最多為[_1][_2]。","Please_confirm_that_all_the_information_above_is_true_and_complete_":"請確認以上所有資訊是真實和完整的。","Your_settings_have_been_updated_successfully_":"設定已成功更新。","Sorry,_an_error_occurred_while_processing_your_account_":"對不起,在處理帳戶時出錯。","Please_select_a_country":"請選擇國家","Timed_out_until":"時間已過。下次開啟時間為","Excluded_from_the_website_until":"已被禁止存取本網站直到","Session_duration_limit_cannot_be_more_than_6_weeks_":"交易期持續時間限制不能大於6週。","Time_out_must_be_after_today_":"到期時間必須在今日之後。","Time_out_cannot_be_more_than_6_weeks_":"到期時間不能大於6週。","Time_out_cannot_be_in_the_past_":"到期時間不可為過去式。","Please_select_a_valid_time_":"請選擇有效時間。","Exclude_time_cannot_be_less_than_6_months_":"禁止時間不能少於6個月。","Exclude_time_cannot_be_for_more_than_5_years_":"禁止時間不能超過5年。","Confirm_changes":"確認更改","We’ll_update_your_limits__Click_[_1]Agree_and_accept[_2]_to_acknowledge_that_you_are_fully_responsible_for_your_actions,_and_we_are_not_liable_for_any_addiction_or_loss_":"將更新限額。點選[_1]同意和接受[_2]以確認對自己的行為負全部責任,如果您因此而上癮或蒙受損失,我們將不承擔任何責任。","Agree_and_accept":"同意和接受","Go_back":"返回","When_you_click_\"OK\"_you_will_be_excluded_from_trading_on_the_site_until_the_selected_date_":"點選「OK」後,您將被禁止在此網站交易,直到選定期限結束為止。","Your_changes_have_been_updated_":"更改已成功更新。","Disable":"禁用","Enable":"啟用","You_have_successfully_enabled_two-factor_authentication_for_your_account_":"已成功啟用帳戶的雙因素身份驗證。","You_have_successfully_disabled_two-factor_authentication_for_your_account_":"已成功禁用帳戶的雙因素身份驗證。","You_do_not_need_to_authenticate_your_account_at_this_time_[_1]We_will_inform_you_when_your_account_needs_to_be_authenticated_":"此時帳戶還不需要驗證。[_1]我們會通知您何時必須通過帳戶驗證。","No_authentication_required":"不需要驗證","Back_to_trading":"返回交易","You_are_categorised_as_a_professional_client_":"您被歸類為專業客戶。","You_are_categorised_as_a_retail_client__Apply_to_be_treated_as_a_professional_trader_":"您被歸類為零售客戶。申請成為專業交易者。","Bid":"出價","Closed_Bid":"出價已收盤","Reference_ID":"身份參考號","Description":"描述","Credit/Debit":"借記/貸記","Balance":"餘額","Top_up_error":"充值錯誤","Understood":"理解","Top-up_successful":"充值成功","[_1]_has_been_credited_into_your_Demo_Account:_[_2]_":"[_1] 已記入MT5示範帳戶: [_2]。","Go_to_statement":"前往月結單","Continue_trading":"繼續交易","Your_Demo_balance_has_been_reset_":"示範餘額已重設。","Account":"帳戶","Available_Markets":"可用的市場","Type":"類型","Currency":"貨幣","Multipliers_Account":"乘數帳戶","Gaming_Account":"博彩帳戶","Options_Account":"期權帳戶","Real_Account":"真實帳戶","Counterparty":"相對方","Jurisdiction":"管轄","Create_account":"開立帳戶","Change_currency":"更改幣種","Note:_You_are_limited_to_one_fiat_currency_account__The_currency_of_your_fiat_account_can_be_changed_before_you_deposit_into_your_fiat_account_for_the_first_time_or_create_a_real_MT5_account_(or_a_real_Deriv_X_account_at_deriv_com)__You_may_also_open_one_account_for_each_supported_cryptocurrency_":"注意: 只能使用一個法定貨幣帳戶。首次把資金存入法定帳戶或開立 MT5 真實帳戶(或deriv.com 的 Deriv X 真實帳戶)之前,可以更改法定帳戶的幣種。還可以為每種受支持的加密貨幣開立專用帳戶。","This_account_is_disabled":"此帳戶已禁用","This_account_is_excluded_until_[_1]":"此帳戶已被隔離,直到[_1]","Set_currency":"設定幣種","Commodities":"商品","Forex":"外匯","Stock_Indices":"股票指數","Stocks":"股票","If_you_have_an_account_with_us,_we'll_send_you_a_link_to_your_email_in_a_few_minutes_to_reset_your_password_":"如已在平台擁有帳戶,將於數分鐘內傳送內含連結的電子郵件,以便重設密碼。","Sign_up":"註冊","Trading_contracts_for_difference_(CFDs)_on_Synthetic_Indices_may_not_be_suitable_for_everyone__Please_ensure_that_you_fully_understand_the_risks_involved,_including_the_possibility_of_losing_all_the_funds_in_your_MT5_account__Gambling_can_be_addictive_–_please_play_responsibly_":"差價合約 (CFD) 的綜合指數交易並不是所有人都適合。請確保您完全明白有關的風險。虧損可能會超越 MT5 帳戶的所有資金。博彩活動可能會上癮,請提醒自己要承擔責任。","Do_you_wish_to_continue?":"是否繼續?","Acknowledge":"確認","Change_Password":"更改密碼","The_investor_password_of_account_number_[_1]_has_been_changed_":"[_1]帳號的投資者密碼已更改。","Reset_Password":"重設密碼","Verify_Reset_Password":"重設密碼驗證","Please_check_your_email_for_further_instructions_":"請檢查電子郵件收取詳細說明。","[_1]_deposit_from_[_2]_to_account_number_[_3]_is_done__Transaction_ID:_[_4]":"已完成從[_2]至帳號[_3]的[_1]存款。交易編號: [_4]","[_1]_withdrawal_from_account_number_[_2]_to_[_3]_is_done__Transaction_ID:_[_4]":"已完成從帳號[_2]至[_3]的[_1]提款。交易編號: [_4]","To_withdraw_from_MetaTrader_5_[_1]_please_[_2]Authenticate[_3]_your_Binary_account_":"如果想從MetaTrader 5 [_1]帳戶提款,請先通過Binary帳戶的[_2]驗證[_3]。","Current_password":"目前密碼","New_password":"新密碼","To_transfer_funds_to_your_MT5_account,_enter_an_amount_of_[_1]_or_more":"要把資金轉入MT5帳戶,請輸入[_1]或更多金額","You_have_insufficient_funds_in_your_MT5_account_":"MT5 帳戶資金不足。","Sorry,_this_feature_is_not_available_in_your_jurisdiction_":"對不起,管轄權內無法使用此功能。","Due_to_an_issue_on_our_server,_some_of_your_MT5_accounts_are_unavailable_at_the_moment__[_1]Please_bear_with_us_and_thank_you_for_your_patience_":"由於伺服器發生問題,一些MT5帳戶目前無法使用。 %1請耐心配合,非常感謝。","Unavailable":"不可用","[_1]_has_been_credited_into_your_MT5_Demo_Account:_[_2]_":"[_1] 已記入MT5示範帳戶: [_2]。","_(Region_added)":" (已新增區域)","_(Temporarily_unavailable)":" (暫時不可用)","Our_MT5_servers_are_temporarily_unavailable__We're_working_to_restore_them__Please_try_again_in_a_few_minutes_":"MT5 伺服器暫時不能用。正在修復中。請於數分鐘後重試。","Use_MT5_password_to_sign_in_to_any_of_your_[_1]_accounts_when_using_MT5_apps_on_your_mobile_or_other_devices_":"在手機或其他裝置使用MT5應用時使用 MT5 密碼登入任何[_1]帳戶。","This_will_change_the_password_to_all_of_your_[_1]_accounts_":"這將更改用於所有 [_1]帳戶的密碼。","Demo_Accounts":"示範帳戶","Real-Money_Accounts":"真實資金帳戶","Demo_Account":"示範帳戶","Real-Money_Account":"真實資金帳戶","for_account_[_1]":"用於帳戶[_1]","[_1]_Account_[_2]":"[_1]帳戶[_2]","MT5_Financial":"MT5 金融","Enter_your_MT5_password_to_add_a_[_1]_[_2]_account_":"輸入 MT5 密碼以新增 [_1] [_2] 帳戶。","demo":"示範","real":"真實","MT5_Synthetic":"MT5 綜合","Get_[_1]":"獲取 [_1]","Your_demo_account_balance_is_currently_[_1]_or_less__You_may_top_up_your_account_with_an_additional_[_2]_":"示範帳戶餘額目前為[_1]或更低。可以新增[_2]補充帳戶資金。","You_can_top_up_your_demo_account_with_an_additional_[_1]_if_your_balance_is_[_2]_or_less_":"如果餘額為 [_2] 或更低,可以在示範帳戶內新增 [_1]。","Yes,_I'm_sure":"是的,我確認","Are_you_sure?":"是否確定?","You_will_not_be_able_to_change_your_fiat_account_currency_after_creating_this_[_1]_account__Are_you_sure_you_want_to_proceed?":"開立此[_1]帳戶後,將無法更改法定帳戶的幣種。確定要繼續嗎?","OK":"確定","Go_to_Deriv_to_add_an_MT5_account":"前往 Deriv 新增 MT5 帳戶","Back":"返回","Address":"地址","Account_currency":"帳戶幣種","Financial_assessment":"財務評估","Personal_details":"個人資料","Terms_of_use":"使用條款","Tether_Omni_(USDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_built_on_the_Bitcoin_blockchain_":"泰達 Omni (USDT) 是建立在比特幣區塊鏈上,與美元掛鉤的泰達幣版本。","Tether_ERC20_(eUSDT)_is_a_version_of_Tether_that's_pegged_to_USD_and_is_hosted_on_the_Ethereum_platform_":"泰達 ERC20(eUSDT)是與美元掛鉤的泰達幣版本,在以太坊平台上受託管。","Title_and_name":"稱謂和姓名","Real_money_account_opening":"開立真實資金帳戶","Your_token_has_expired_or_is_invalid__Please_click_here_to_restart_the_verification_process_":"代幣已過期或失效。請點選此處重啟驗證程序。","The_email_address_provided_is_already_in_use__If_you_forgot_your_password,_please_try_our_password_recovery_tool_or_contact_our_customer_service_":"所提供的電子郵件地址已經在使用。如果忘了密碼,請嘗試使用我們的密碼恢復工具或聯繫客服部。","Password_is_not_strong_enough_":"密碼安全度不夠。","Upgrade_now":"立即升級","[_1]_days_[_2]_hours_[_3]_minutes":"[_1] 天 [_2] 小時 [_3] 分鐘","Your_trading_statistics_since_[_1]_":"自[_1]至今的交易統計。","[_1]_trading_can_become_a_real_addiction,_as_can_any_other_activity_pushed_to_its_limits__To_avoid_the_danger_of_such_an_addiction,_we_provide_a_reality-check_that_gives_you_a_summary_of_your_trades_and_accounts_on_a_regular_basis_":"[_1]交易就像任何其他活動一樣,過於沉迷可能會上癮。為了避免發生此種風險,我們定期提供交易和財務的實況簡報。","[_1]_Please_click_the_link_below_to_restart_the_password_recovery_process_":"[_1] 請點選下方連結,重新開啟密碼恢復過程。","You_have_a_new_Binary_password_to_log_in_to_Binary_com_":"有了新的 Binary 密碼,用於登入 Binary.com。","Success":"成功","Done":"完成","Your_Binary_account_is_unlinked_from_[_1]__Use_[_2]your_email_and_password_for_future_log_in_":"Binary帳戶已與[_1]解除連結。以後請用[_2]電子郵件和密碼登入。","Success!":"成功!","Got_it":"知道了","Binary_Password_Reset":"重設 Binary 密碼","Binary_password":"Binary 密碼","You_have_added_a_[_1]_account_":"已建立了 [_1]帳戶。","Add_account":"新增帳戶","Tether_as_an_Omni_token_(USDT)_is_a_version_of_Tether_that_is_hosted_on_the_Omni_layer_on_the_Bitcoin_blockchain_":"泰達作為 Omni 代幣(USDT)是在比特幣區塊鏈 Omni 層託管的泰達幣版本。","Tether_as_an_ERC20_token_(eUSDT)_is_a_version_of_Tether_that_is_hosted_on_Ethereum_":"泰達作為 ERC20 代幣(eUSDT)是在以太坊託管的泰達幣版本。","Tether_as_a_TRC20_token_(tUSDT)_is_a_version_of_Tether_that_is_hosted_on_Tron_":"泰達作為 TRC20 代幣(tUSDT)是在 Tron 託管的泰達幣版本。","Add_new_crypto_account":"新增加密帳戶","Add_new_account":"新增帳戶","Create_a_cryptocurrency_account":"開立加密貨幣帳戶","Choose_your_preferred_cryptocurrency":"選擇較傾向的加密貨幣","You_can_open_an_account_for_each_cryptocurrency_":"可以為每種加密貨幣開立帳戶。","Choose_a_cryptocurrency_account":"選擇加密貨幣帳戶","Choose_one_of_your_accounts_or_add_a_new_cryptocurrency_account":"選擇一個帳戶或開立新的加密貨幣帳戶","Choose_an_account":"選擇帳戶","Choose_one_of_your_accounts_or_add_a_new_account":"選擇一個帳戶或開立新帳戶","Choose_one_of_your_accounts":"選擇一個帳戶","Please_select_the_currency_for_this_account:":"請選擇此帳戶的幣種:","deposit":"存款","deposit_or_create_a_CFDs_account":"存款或開立差價合約帳戶","Are_you_sure_you_want_to_create_your_[_1]_account_now?":"確定要現在開立 [_1] 帳戶嗎?","Note:":"備註:","You_may_open_one_account_for_each_supported_cryptocurrency_":"可以為每種受支援的加密貨幣開立專用帳戶。","Are_you_sure_you_want_to_create_a_fiat_account_in_[_1]?":"確定要在 [_1] 開立法定帳戶嗎?","You_are_limited_to_one_fiat_account__You_can_change_the_currency_of_your_fiat_account_anytime_before_you_make_a_first-time_[_1]_":"只能用一個法定帳戶。首次[_1]之前,可以隨時更改法定帳戶的幣種。","Yes":"是的","Create_[_1]_account":"開立[_1]帳戶","You_have_successfully_set_your_account_currency_to_[_1]_":"已成功將帳戶幣種設定為 [_1] 。","You_have_successfully_changed_your_account_currency_from_[_1]_to_[_2]_":"已成功將帳戶幣種從 [_1] 更改為 [_2]。","Please_choose_a_currency":"請選擇一種貨幣","You_have_a_new_MT5_password_to_log_in_to_your_[_1]_accounts_on_the_web_and_mobile_apps_":"有了新的 MT5 密碼,用於登入網絡和手機應用上的 [_1]帳戶.","Accumulator":"累加器","Asian_Down":"亞洲期權下跌","Asian_Up":"亞洲期權上漲","Higher":"高於","Higher_or_equal":"高於或等於","Call_Spread":"買權價差","Digit_Differs":"數字不匹配","Digit_Even":"數字為偶數","Digit_Matches":"數字匹配","Digit_Odd":"數字為奇數","Digit_Over":"數字超過限額","Digit_Under":"數字低於限額","Ends_Outside":"區間之外結束","Ends_Between":"區間之內結束","Multiplier_Down":"乘數下跌","Multiplier_Up":"乘數上漲","Does_Not_Touch":"未觸及","Touches":"觸及","Lower":"低於","Lower_or_equal":"低於或等值","Put_Spread":"賣權價差","Stays_Between":"位於區間之內","Only_Ups":"只會持續上漲","Only_Downs":"只會持續下跌","High_Tick":"高跳動點","Low_Tick":"低跳動點","Goes_Outside":"處於區間之外","Call":"看漲期權","Put":"看跌期權","Equals":"等於","Not":"不","Buy":"買入","Sell":"賣出","Waiting_for_contract_settlement_":"等待合約結算。","including_Deal_Cancel__Fee":"包含交易取消. 費用","Contract_has_not_started_yet":"合約尚未開始","This_contract_is_only_available_on_[_1]DTrader[_2]_":"此合約僅適用於[_1]DTrader[_2]。","This_contract_is_only_available_on_DTrader_[_1][_2]Go_to_Dtrader[_3]_to_close_or_cancel_this_contract_":"此合約只能通過DTrader執行。 [_1][_2]前往 Dtrader[_3] 終止或取消此合約。","Contract_Result":"合約結果","Close_Time":"收盤時間","Exit_Spot_Time":"退市現價時間","Audit":"審計","View_chart":"檢視圖表","Audit_Page":"審核頁面","Contract_Starts":"合約開始時間","Contract_Ends":"合約結束","Contract_Details":"合約詳細資料","Target":"目標","Contract_Information":"合約資訊","Contract_Type":"合約類型","Transaction_ID":"交易ID","Remaining_Time":"剩餘時間","Maximum_payout":"最大賠付","Barrier_Change":"障礙變更","Current":"目前","Spot_Time":"現貨時間","Current_Time":"目前時間","Indicative":"指示性","Potential_Profit/Loss":"潛在利潤/虧損","Deal_Cancel__Fee":"交易取消. 費用","You_can_close_this_window_without_interrupting_your_trade_":"可以在不中斷交易的情況下關閉此視窗。","There_was_an_error":"出現錯誤","Sell_at_market":"按市價賣出","Note":"備註","Contract_will_be_sold_at_the_prevailing_market_price_when_the_request_is_received_by_our_servers__This_price_may_differ_from_the_indicated_price_":"合約將在我們伺服器收到要求時以當時的市場價格賣出。此價格可能會與報價有差異。","You_have_sold_this_contract_at_[_1]_[_2]":"已經以 [_1] [_2] 賣出此合約","Your_transaction_reference_number_is_[_1]":"交易號是[_1]","Thank_you_for_signing_up!_Please_check_your_email_to_complete_the_registration_process_":"謝謝您的註冊!請檢視郵件以完成註冊程序。","All_markets_are_closed_now__Please_try_again_later_":"所有市場現已關閉。請稍後重試。","Withdrawal":"提款","demo_credit_to_account":"示範資金存入帳戶","login":"登入","logout":"登出","Asians":"亞洲期權","Call_Spread/Put_Spread":"看漲期權價差/看跌期權價差","Digits":"數字期權","Ends_Between/Ends_Outside":"到期在範圍之內/之外","High/Low_Ticks":"高/低跳動點","Lookbacks":"回顧","Reset_Call/Reset_Put":"重置看漲/重置看跌","Stays_Between/Goes_Outside":"保持在範圍之內/超出範圍之外","Touch/No_Touch":"觸及/未觸及","Christmas_Day":"聖誕節","Closes_early_(at_18:00)":"收盤提前(至18:00)","Closes_early_(at_21:00)":"收盤提前(至21:00)","Fridays":"星期五","New_Year's_Day":"新年","today":"今天","today,_Fridays":"今天,週五","There_was_a_problem_accessing_the_server_":"伺服器存取出了問題。","There_was_a_problem_accessing_the_server_during_purchase_":"買入時伺服器存取出了問題。"}; \ No newline at end of file diff --git a/src/javascript/_common/base/client_base.js b/src/javascript/_common/base/client_base.js index a2e4bd9592232..5a569c811b4c4 100644 --- a/src/javascript/_common/base/client_base.js +++ b/src/javascript/_common/base/client_base.js @@ -249,8 +249,8 @@ const ClientBase = (() => { const obj_display = { gaming: { financial: { - short: localize('Synthetic'), - full : is_demo ? localize('Demo Synthetic') : localize('Real Synthetic'), + short: localize('Derived'), + full : is_demo ? localize('Demo Derived') : localize('Real Derived'), }, }, financial: { diff --git a/src/javascript/_common/base/currency_base.js b/src/javascript/_common/base/currency_base.js index 0a4598bd8a41e..f9ddae63c6b45 100644 --- a/src/javascript/_common/base/currency_base.js +++ b/src/javascript/_common/base/currency_base.js @@ -62,22 +62,125 @@ const CryptoConfig = (() => { let crypto_config; const initCryptoConfig = () => ({ - BTC : { display_code: 'BTC', name: localize('Bitcoin'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - ETH : { display_code: 'ETH', name: localize('Ethereum'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - ETC : { display_code: 'ETC', name: localize('Ether Classic'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - LTC : { display_code: 'LTC', name: localize('Litecoin'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - IDK : { display_code: 'IDK', name: localize('IDK'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - BUSD : { display_code: 'BUSD', name: localize('Binance USD'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - DAI : { display_code: 'DAI', name: localize('Multi-Collateral'), min_withdrawal: 0.002, pa_max_withdrawal: 5, pa_min_withdrawal: 0.002 }, - EURS : { display_code: 'EURS', name: localize('STASIS Euro'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - PAX : { display_code: 'PAX', name: localize('Paxos Standard'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - TUSD : { display_code: 'TUSD', name: localize('True USD'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - USDC : { display_code: 'USDC', name: localize('USD Coin'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - USDK : { display_code: 'USDK', name: localize('USDK'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - UST : { display_code: 'USDT', name: localize('Tether Omni'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - USDT : { display_code: 'USDT', name: localize('Tether Omni'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - eUSDT: { display_code: 'eUSDT', name: localize('Tether ERC20'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, - USB : { display_code: 'USB', name: localize('Binary Coin'), min_withdrawal: 0.02, pa_max_withdrawal: 2000, pa_min_withdrawal: 10 }, + BTC: { + display_code : 'BTC', + name : localize('Bitcoin'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + ETH: { + display_code : 'ETH', + name : localize('Ethereum'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + ETC: { + display_code : 'ETC', + name : localize('Ether Classic'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + LTC: { + display_code : 'LTC', + name : localize('Litecoin'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + IDK: { + display_code : 'IDK', + name : localize('IDK'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + BUSD: { + display_code : 'BUSD', + name : localize('Binance USD'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + DAI: { + display_code : 'DAI', + name : localize('Multi-Collateral'), + min_withdrawal : 0.002, + pa_max_withdrawal: 5, + pa_min_withdrawal: 0.002, + }, + EURS: { + display_code : 'EURS', + name : localize('STASIS Euro'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + PAX: { + display_code : 'PAX', + name : localize('Paxos Standard'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + TUSD: { + display_code : 'TUSD', + name : localize('True USD'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + USDC: { + display_code : 'USDC', + name : localize('USD Coin'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + USDK: { + display_code : 'USDK', + name : localize('USDK'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + UST: { + display_code : 'USDT', + name : localize('Tether Omni'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + USDT: { + display_code : 'USDT', + name : localize('Tether Omni'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + eUSDT: { + display_code : 'eUSDT', + name : localize('Tether ERC20'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + USB: { + display_code : 'USB', + name : localize('Binary Coin'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, + tUSDT: { + display_code : 'tUSDT', + name : localize('Tether TRC20'), + min_withdrawal : 0.02, + pa_max_withdrawal: 2000, + pa_min_withdrawal: 10, + }, }); return { diff --git a/src/javascript/_common/base/elevio.js b/src/javascript/_common/base/elevio.js deleted file mode 100644 index c09f776630117..0000000000000 --- a/src/javascript/_common/base/elevio.js +++ /dev/null @@ -1,151 +0,0 @@ -const ClientBase = require('./client_base'); -const GTM = require('./gtm'); -const { livechatFallback } = require('./livechat'); -const BinarySocket = require('./socket_base'); -const getLanguage = require('../language').get; -const localize = require('../localize').localize; -const createElement = require('../utility').createElement; -const isLoginPages = require('../utility').isLoginPages; - -const Elevio = (() => { - const el_shell_id = 'elevio-shell'; - let el_shell; - const account_id = '5bbc2de0b7365'; - const elevio_script = `https://cdn.elev.io/sdk/bootloader/v4/elevio-bootloader.js?cid=${account_id}`; - - const checkElevioAvailability = () => { - const httpGet = (theUrl) => { - const xmlHttp = new XMLHttpRequest(); - xmlHttp.open('GET', theUrl, false); - xmlHttp.send(null); - return xmlHttp.status; - }; - - const httpresponse = httpGet(elevio_script); - if (httpresponse !== 200) { - - // fallback to livechat when elevio is not available - el_shell = document.getElementById(el_shell_id).remove(); - livechatFallback(); - } - }; - - const init = () => { - if (isLoginPages()) return; - - document.addEventListener('readystatechange', () => { - if (document.readyState === 'complete') { - el_shell = document.getElementById(el_shell_id); - - el_shell.addEventListener('click', () => injectElevio(true)); - } - }); - checkElevioAvailability(elevio_script); - }; - - const injectElevio = (is_open = false) => { - - window._elev = {}; // eslint-disable-line no-underscore-dangle - window._elev.account_id = account_id; // eslint-disable-line no-underscore-dangle - - const script = document.createElement('script'); - script.type = 'text/javascript'; - script.async = 1; - script.src = elevio_script; - script.id = 'loaded-elevio-script'; - document.body.appendChild(script); - - window._elev.q = []; // eslint-disable-line no-underscore-dangle - window._elev.on = function(z, y) { // eslint-disable-line no-underscore-dangle - window._elev.q.push([z, y]); // eslint-disable-line no-underscore-dangle - }; - - script.onload = () => loadElevio(is_open); - }; - - const loadElevio = (is_open = false) => { - if (!window._elev) return; // eslint-disable-line no-underscore-dangle - - window._elev.on('load', (elev) => { // eslint-disable-line no-underscore-dangle - GTM.pushDataLayer({ event: 'elevio_widget_load' }); - if (el_shell) { - el_shell.parentNode.removeChild(el_shell); - el_shell = undefined; - } - - const available_elev_languages = ['es', 'id', 'pt', 'ru']; - const current_language = getLanguage().toLowerCase(); - if (available_elev_languages.indexOf(current_language) !== -1) { - elev.setLanguage(current_language); - } else { - elev.setLanguage('en'); - } - setUserInfo(elev); - setTranslations(elev); - addEventListenerGTM(); - makeLauncherVisible(); - - // disable tracking page views every route change - elev.setSettings({ - disablePushState: true, - }); - - if (is_open) { - elev.open(); - } - }); - }; - - const addEventListenerGTM = () => { - window._elev.on('widget:opened', () => { // eslint-disable-line no-underscore-dangle - GTM.pushDataLayer({ event: 'elevio_widget_opened', is_elevio: true }); - }); - window._elev.on('page:view', () => { // eslint-disable-line no-underscore-dangle - GTM.pushDataLayer({ event: 'elevio_page_views', is_elevio: true }); - }); - }; - - const makeLauncherVisible = () => { - // we have to add the style since the launcher element gets updates even after elevio's 'ready' event fired - const el_launcher_style = createElement('style', { html: '._elevio_launcher {display: block;}' }); - document.head.appendChild(el_launcher_style); - }; - - const setUserInfo = (elev) => { - if (ClientBase.isLoggedIn()) { - BinarySocket.wait('get_settings').then((response) => { - const get_settings = response.get_settings || {}; - const is_virtual = ClientBase.get('is_virtual'); - - const user_obj = { - email : ClientBase.get('email'), - first_name: is_virtual ? 'Virtual' : get_settings.first_name, - last_name : is_virtual ? ClientBase.get('loginid') : get_settings.last_name, - user_hash : get_settings.user_hash, - }; - - elev.setUser(user_obj); - }); - } - }; - - const setTranslations = (elev) => { - elev.setTranslations({ - modules: { - support: { - thankyou: localize('Thank you, we\'ll get back to you within 24 hours'), - }, - }, - }); - }; - - const createComponent = (type) => window._elev.component({ type }); // eslint-disable-line no-underscore-dangle - - return { - init, - injectElevio, - createComponent, - }; -})(); - -module.exports = Elevio; diff --git a/src/javascript/_common/base/livechat.js b/src/javascript/_common/base/livechat.js index 9107e68309248..f71772f3248a3 100644 --- a/src/javascript/_common/base/livechat.js +++ b/src/javascript/_common/base/livechat.js @@ -2,6 +2,7 @@ const BinarySocket = require('./socket_base'); const ClientBase = require('./client_base'); const TrafficSource = require('../../app/common/traffic_source'); const licenseID = require('../utility').lc_licenseID; +const Url = require('../../_common/url'); const LiveChat = (() => { @@ -66,6 +67,11 @@ const LiveChat = (() => { setNameEmail(); }; } + + // Handle opening livechat via URL + const url_query_strings = Url.paramsHash(); + const is_livechat_open = url_query_strings.is_livechat_open === 'true'; + if (is_livechat_open) window.LC_API.open_chat_window(); }); } }; diff --git a/src/javascript/_common/url.js b/src/javascript/_common/url.js index 12d664fa26a41..0012246e50c65 100644 --- a/src/javascript/_common/url.js +++ b/src/javascript/_common/url.js @@ -65,7 +65,6 @@ const Url = (() => { 'bot.binary.com' : 'www.binary.bot', 'developers.binary.com': 'developers.binary.com', // same, shouldn't change 'academy.binary.com' : 'academy.binary.com', - 'tech.binary.com' : 'tech.binary.com', 'blog.binary.com' : 'blog.binary.com', }; diff --git a/src/javascript/_common/utility.js b/src/javascript/_common/utility.js index 785f0fc241096..04fd1fcc8b784 100644 --- a/src/javascript/_common/utility.js +++ b/src/javascript/_common/utility.js @@ -13,6 +13,25 @@ const showLoadingImage = (container, theme = 'dark') => { container.html(loading_div); }; +function removeLoadingImage () { + const loading_wrapper = document.getElementById('redirect-loading'); + if (!loading_wrapper) return; + const parent = loading_wrapper.parentNode; + parent.removeChild(loading_wrapper); +} + +function showLoading() { + if (!document.getElementById('redirect-loading')) { + const loading_wrapper = document.createElement('div'); + loading_wrapper.id = 'redirect-loading'; + loading_wrapper.classList.add('redirect-loader'); + document.body.appendChild(loading_wrapper); + showLoadingImage(document.getElementById('redirect-loading')); + } else { + showLoadingImage(document.getElementById('redirect-loading')); + } +} + /** * Returns the highest z-index in the page. * Accepts a selector to only check those elements, @@ -438,4 +457,6 @@ module.exports = { removeObjProperties, lc_licenseID, lc_clientID, + showLoading, + removeLoadingImage, }; diff --git a/src/javascript/app/base/binary_loader.js b/src/javascript/app/base/binary_loader.js index 9fcdc0fb11802..3fe22fdf283eb 100644 --- a/src/javascript/app/base/binary_loader.js +++ b/src/javascript/app/base/binary_loader.js @@ -20,16 +20,13 @@ const GTM = require('../../_common/base/gtm'); const LiveChat = require('../../_common/base/livechat'); const Login = require('../../_common/base/login'); const toTitleCase = require('../../_common/string_util').toTitleCase; +const getLanguage = require('../../_common/language').get; const BinaryLoader = (() => { let container; let active_script = null; const init = () => { - if (!/\.html$/i.test(window.location.pathname)) { - window.location.pathname += '.html'; - return; - } if (!isStorageSupported(localStorage) || !isStorageSupported(sessionStorage)) { Header.displayNotification(localize('[_1] requires your browser\'s web storage to be enabled in order to function properly. Please enable it or exit private browsing mode.', 'Binary.com'), @@ -113,10 +110,12 @@ const BinaryLoader = (() => { if (active_script) { BinarySocket.setOnReconnect(active_script.onReconnect); } + + changeAllBinarySignupLinkToDeriv(); }; const error_messages = { - login : () => localize('Please [_1]log in[_2] or [_3]sign up[_4] to view this page.', [``, '', ``, '']), + login : () => localize('Please [_1]log in[_2] or [_3]sign up[_4] to view this page.', [``, '', ``, '']), only_virtual : () => localize('This feature is available to demo accounts only.'), only_real : () => localize('You are using a demo account. Please switch to a real account or create one to access Cashier.'), not_authenticated : () => localize('This page is only available to logged out clients.'), @@ -153,6 +152,8 @@ const BinaryLoader = (() => { } else { loadActiveScript(config); } + + changeAllBinarySignupLinkToDeriv(); }); } } else if (config.not_authenticated && Client.isLoggedIn()) { @@ -173,6 +174,8 @@ const BinaryLoader = (() => { } else { displayMessage(error_messages.no_mf()); } + + changeAllBinarySignupLinkToDeriv(); }); } @@ -182,6 +185,8 @@ const BinaryLoader = (() => { displayMessage(error_messages.no_options_mf_mx()); } }); + + changeAllBinarySignupLinkToDeriv(); } if (this_page === 'deactivated-account' && Client.isLoggedIn()) { @@ -198,6 +203,8 @@ const BinaryLoader = (() => { displayMessage(error_messages.options_blocked()); } } + + changeAllBinarySignupLinkToDeriv(); }); // TODO: temporary condition; remove once BE Apple social signup is ready BinarySocket.wait('get_account_status').then((response) => { @@ -298,4 +305,14 @@ const BinaryLoader = (() => { }; })(); +const changeAllBinarySignupLinkToDeriv = () => { + const language = getLanguage().toLowerCase().replace(/_/g, '-'); + const elements = document.getElementsByClassName('binary-to-deriv-link') || []; + + for (let i = 0; i < elements.length; i++) { + elements.item(i).removeAttribute('href'); + elements.item(i).addEventListener('click', () => window.location.href = `/binary-to-deriv/?l=${language}&source=binary`); + } +}; + module.exports = BinaryLoader; diff --git a/src/javascript/app/base/binary_pages.js b/src/javascript/app/base/binary_pages.js index a6ab58764e43d..8b2e6abd2f895 100644 --- a/src/javascript/app/base/binary_pages.js +++ b/src/javascript/app/base/binary_pages.js @@ -56,7 +56,7 @@ const VideoFacility = require('../pages/user/video_facility'); // ==================== static ==================== // const Charity = require('../../static/pages/charity'); -const Contact = require('../../static/pages/contact'); +// const Contact = require('../../static/pages/contact'); // const Contact2 = require('../../static/pages/contact_2'); const DeactivatedAccount = require('../../static/pages/deactivated_account'); const GetStarted = require('../../static/pages/get_started'); @@ -89,7 +89,7 @@ const pages_config = { // charity : { module: Charity }, change_passwordws : { module: ChangePassword, is_authenticated: true }, closure : { module: AccountClosure, is_authenticated: true }, - contact : { module: Contact }, + // contact : { module: Contact }, cryptocurrencies : { module: GetStarted.Cryptocurrencies }, cyberjaya : { module: StaticPages.Locations }, detailsws : { module: PersonalDetails, is_authenticated: true, needs_currency: true }, @@ -146,6 +146,8 @@ const pages_config = { withdrawws : { module: PaymentAgentWithdraw, is_authenticated: true, only_real: true }, 'affiliate-ib' : { module: AffiliatesIBLanding }, + 'partners' : { module: StaticPages.Partners }, + 'security-testing' : { module: StaticPages.SecurityTesting }, 'binary-in-numbers' : { module: StaticPages.BinaryInNumbers }, 'binary-options' : { module: GetStarted.BinaryOptions }, // 'contact-2' : { module: Contact2 }, diff --git a/src/javascript/app/base/binary_pjax.js b/src/javascript/app/base/binary_pjax.js index 5cbb480d59893..9cb6fbf459b7f 100644 --- a/src/javascript/app/base/binary_pjax.js +++ b/src/javascript/app/base/binary_pjax.js @@ -51,7 +51,11 @@ const BinaryPjax = (() => { }; const setDataPage = (content, url) => { - content.setAttribute('data-page', url.match(/.+\/(.+)\.html.*/)[1]); + let filename = url.replace(/#.+$/, ''); // remove anchors if any + filename = filename.replace(/\?.+$/, ''); // remove parameters if any + filename = filename.match(/.+\/(.+)/)[1]; // get path + filename = filename.replace(/\.[^/.]+$/, ''); // remove suffix if any + content.setAttribute('data-page', filename); }; const handleClick = (event) => { diff --git a/src/javascript/app/base/client.js b/src/javascript/app/base/client.js index 22a6596a6646c..f7e5ed2df5a50 100644 --- a/src/javascript/app/base/client.js +++ b/src/javascript/app/base/client.js @@ -120,6 +120,9 @@ const Client = (() => { if (response.logout !== 1) return; removeCookies('login', 'loginid', 'loginid_list', 'email', 'residence', 'settings'); // backward compatibility removeCookies('reality_check', 'affiliate_token', 'affiliate_tracking', 'onfido_token', 'hide_guide'); + // clear local storage + localStorage.removeItem('read_scam_message'); + localStorage.removeItem('new_user_account'); // clear elev.io session storage sessionStorage.removeItem('_elevaddon-6app'); sessionStorage.removeItem('_elevaddon-6create'); @@ -137,7 +140,8 @@ const Client = (() => { redirection(response); }); } else { - redirection(response); + // for non-binary domains adding a delay for redirection to prevent NS_BINDING_ABORTED error in firefox. + setTimeout(() => { redirection(response); }, 500); } }; diff --git a/src/javascript/app/base/header.js b/src/javascript/app/base/header.js index bda8cb74d6171..c4476904b8fcf 100644 --- a/src/javascript/app/base/header.js +++ b/src/javascript/app/base/header.js @@ -19,6 +19,8 @@ const createElement = require('../../_common/utility').createElement; const findParent = require('../../_common/utility').findParent; const template = require('../../_common/utility').template; const Currency = require('../common/currency'); +const Dialog = require('../common/attach_dom/dialog'); +const getLanguage = require('../../_common/language').get; const Header = (() => { const onLoad = () => { @@ -147,20 +149,21 @@ const Header = (() => { return; } - const showUpgrade = (url, params, localized_text) => { + const showUpgrade = (localized_text) => { applyToAllElements(upgrade_msg, (el) => { el.setVisibility(1); applyToAllElements('a', (ele) => { - ele.html(createElement('span', { text: localized_text })).setVisibility(1).setAttribute('href', Url.urlFor(url, params)); + ele.html(createElement('span', { text: localized_text })).setVisibility(1); + ele.addEventListener('click', showGoToDerivAlertPopup); }, '', el); }); }; - const showUpgradeBtn = (url, params, localized_text) => { + const showUpgradeBtn = (localized_text) => { applyToAllElements(upgrade_msg, (el) => { el.setVisibility(1); applyToAllElements('a.button', (ele) => { - ele.html(createElement('span', { text: localized_text })).setVisibility(1).setAttribute('href', Url.urlFor(url, params)); + ele.html(createElement('span', { text: localized_text })).setVisibility(1).addEventListener('click', showGoToDerivAlertPopup); }, '', el); }); }; @@ -195,11 +198,8 @@ const Header = (() => { }); if (show_upgrade_msg) { - const upgrade_url = upgrade_info.can_upgrade_to.length > 1 - ? 'user/accounts' - : 'new_account/real_account'; - showUpgrade(upgrade_url, `account_type=${upgrade_info.can_upgrade_to[0]}`, upgrade_link_txt); - showUpgradeBtn(upgrade_url, `account_type=${upgrade_info.can_upgrade_to[0]}`, upgrade_btn_txt); + showUpgrade(upgrade_link_txt); + showUpgradeBtn(upgrade_btn_txt); } else { applyToAllElements(upgrade_msg, (el) => { applyToAllElements('a', (ele) => { @@ -212,11 +212,8 @@ const Header = (() => { } } else if (show_upgrade_msg) { getElementById('virtual-wrapper').setVisibility(0); - const upgrade_url = upgrade_info.can_upgrade_to.length > 1 - ? 'user/accounts' - : 'new_account/real_account'; - showUpgrade(upgrade_url, `account_type=${upgrade_info.can_upgrade_to[0]}`, upgrade_link_txt); - showUpgradeBtn(upgrade_url, `account_type=${upgrade_info.can_upgrade_to[0]}`, upgrade_btn_txt); + showUpgrade(upgrade_link_txt); + showUpgradeBtn(upgrade_btn_txt); if (/new_account/.test(window.location.href)) { showHidePulser(0); @@ -228,11 +225,25 @@ const Header = (() => { }); }; + const showGoToDerivAlertPopup = () => { + const url_on_confirm = `https://app.deriv.com/?lang=${getLanguage()}`; + Dialog.confirm({ + id : 'go-to-deriv-popup', + localized_title : localize('Go to Deriv to add an account'), + localized_message: localize('You\'ll be able to log in to Deriv using your Binary.com credentials.'), + cancel_text : localize('Cancel'), + ok_text : localize('Go to Deriv'), + onConfirm : () => { window.location.href = url_on_confirm; }, + }); + }; + const showHidePulser = (should_show) => { $('.upgrademessage').children('a').setVisibility(should_show); }; const showHideNewAccount = (upgrade_info) => { - if (upgrade_info.can_upgrade || upgrade_info.can_open_multi) { + const user_accounts = getElementById('user_accounts'); + if ((upgrade_info.can_upgrade || upgrade_info.can_open_multi) && user_accounts) { changeAccountsText(1, localize('Create Account')); + user_accounts.addEventListener('click', () => showGoToDerivAlertPopup()); } else { changeAccountsText(0, localize('Accounts List')); } @@ -361,30 +372,33 @@ const Header = (() => { }; const messages = { - cashier_locked : () => localize('Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.'), - system_maintenance: () => getSystemMaintenanceMessage(), - currency : () => buildMessage(localizeKeepPlaceholders('Please set your [_1]account currency[_2] to enable deposits and withdrawals.'), 'user/set-currency'), - unsubmitted : () => buildMessage(get_account_status.risk_classification === 'high' + cashier_locked : () => localize('Your cashier is currently locked. Please contact us via live chat to find out how to unlock it.'), + system_maintenance : () => getSystemMaintenanceMessage(), + currency : () => buildMessage(localizeKeepPlaceholders('Please set your [_1]account currency[_2] to enable deposits and withdrawals.'),'user/set-currency'), + both_dob_name_mismatch: () => buildMessage(localizeKeepPlaceholders('Your name and date of birth in the document doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].'),'user/settings/detailsws'), + dob_mismatch : () => buildMessage(localizeKeepPlaceholders('Your date of birth in the document doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].'),'user/settings/detailsws'), + name_mismatch : () => buildMessage(localizeKeepPlaceholders('Your document name doesn\'t match your Binary profile name. Please update your name in the [_1]Personal details page[_2].'),'user/settings/detailsws'), + unsubmitted : () => buildMessage(get_account_status.risk_classification === 'high' ? localizeKeepPlaceholders('Your account has not been authenticated. Please submit your [_1]proof of identity and proof of address[_2] to authenticate your account and request for withdrawals.', 'user/authenticate') : localizeKeepPlaceholders('Your account has not been authenticated. Please submit your [_1]proof of identity and proof of address[_2] to authenticate your account and access your cashier.'), 'user/authenticate'), expired : () => localize('The identification documents you submitted have expired. Please submit valid identity documents to unlock Cashier.'), - expired_identity : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of identity[_2] has expired.'), 'user/authenticate'), - expired_document : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of address[_2] has expired.'), 'user/authenticate', '?authentication_tab=poa'), + expired_identity : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of identity[_2] has expired.'),'user/authenticate'), + expired_document : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of address[_2] has expired.'),'user/authenticate', '?authentication_tab=poa'), rejected : () => buildSpecificMessage(localizeKeepPlaceholders('Your [_1]proof of identity[_3] and [_2]proof of address[_3] have not been verified.'), [``, ``, '']), - rejected_identity : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of identity[_2] has not been verified.'), 'user/authenticate'), - rejected_document : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of address[_2] has not been verified.'), 'user/authenticate', '?authentication_tab=poa'), - identity : () => buildMessage(localizeKeepPlaceholders('Please submit your [_1]proof of identity[_2].'), 'user/authenticate'), - document : () => buildMessage(localizeKeepPlaceholders('Please submit your [_1]proof of address[_2].'), 'user/authenticate', '?authentication_tab=poa'), + rejected_identity : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of identity[_2] has not been verified.'),'user/authenticate'), + rejected_document : () => buildMessage(localizeKeepPlaceholders('Your [_1]proof of address[_2] has not been verified.'),'user/authenticate', '?authentication_tab=poa'), + identity : () => buildMessage(localizeKeepPlaceholders('Please submit your [_1]proof of identity[_2].'),'user/authenticate'), + document : () => buildMessage(localizeKeepPlaceholders('Please submit your [_1]proof of address[_2].'),'user/authenticate', '?authentication_tab=poa'), excluded_until : () => localize('You have chosen to exclude yourself from trading on our website until [_1]. If you are unable to place a trade or deposit after your self-exclusion period, please contact us via live chat.', moment(+Client.get('excluded_until') * 1000).format('DD MMM YYYY')), - financial_limit : () => buildMessage(localizeKeepPlaceholders('Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to [_1]Self-exclusion[_2] and set your 30-day turnover limit.'), 'user/security/self_exclusionws'), + financial_limit : () => buildMessage(localizeKeepPlaceholders('Your access to Cashier has been temporarily disabled as you have not set your 30-day turnover limit. Please go to [_1]Self-exclusion[_2] and set your 30-day turnover limit.'),'user/security/self_exclusionws'), mt5_withdrawal_locked : () => localize('MT5 withdrawals have been disabled on your account. Please check your email for more details.'), no_withdrawal_or_trading : () => localize('Unfortunately, you can only make deposits. Please contact us via live chat to enable withdrawals.'), - required_fields : () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.'), 'user/settings/detailsws'), - withdrawal_required_fields: () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.'), 'user/settings/detailsws'), - deposit_required_fields : () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable deposits.'), 'user/settings/detailsws'), - residence : () => buildMessage(localizeKeepPlaceholders('You’ve not set your country of residence. To access Cashier, please update your [_1]country of residence[_2] in the Personal details section in your account settings.'), 'user/settings/detailsws'), - risk : () => buildMessage(localizeKeepPlaceholders('Your cashier is locked. Please complete the [_1]financial assessment[_2] to unlock it.'), 'user/settings/assessmentws'), - tax : () => buildMessage(localize('You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to [_1]Personal details[_2] in your account settings, and fill in your latest tax identification number.'), 'user/settings/detailsws'), + required_fields : () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable deposits and withdrawals.'),'user/settings/detailsws'), + withdrawal_required_fields: () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable withdrawals.'),'user/settings/detailsws'), + deposit_required_fields : () => buildMessage(localizeKeepPlaceholders('Your [_1]personal details[_2] are incomplete. Please go to your account settings and complete your personal details to enable deposits.'),'user/settings/detailsws'), + residence : () => buildMessage(localizeKeepPlaceholders('You’ve not set your country of residence. To access Cashier, please update your [_1]country of residence[_2] in the Personal details section in your account settings.'),'user/settings/detailsws'), + risk : () => buildMessage(localizeKeepPlaceholders('Your cashier is locked. Please complete the [_1]financial assessment[_2] to unlock it.'),'user/settings/assessmentws'), + tax : () => buildMessage(localize('You have not provided your tax identification number. This information is necessary for legal and regulatory requirements. Please go to [_1]Personal details[_2] in your account settings, and fill in your latest tax identification number.'),'user/settings/detailsws'), unwelcome : () => localize('Unfortunately, you can only make withdrawals. Please contact us via live chat.'), withdrawal_locked_review : () => localize('Withdrawals have been disabled on your account. Please wait until your uploaded documents are verified.'), withdrawal_locked : () => localize('Unfortunately, you can only make deposits. Please contact us via live chat to enable withdrawals.'), @@ -402,6 +416,9 @@ const Header = (() => { system_maintenance : () => hasStatus('system_maintenance'), currency : () => hasStatus('ASK_CURRENCY'), unsubmitted : () => hasStatus('ASK_AUTHENTICATE') && hasVerification('unsubmitted'), + both_dob_name_mismatch : () => hasStatus('poi_dob_mismatch') && hasStatus('poi_name_mismatch'), + dob_mismatch : () => hasStatus('poi_dob_mismatch'), + name_mismatch : () => hasStatus('poi_name_mismatch'), expired : () => hasStatus('documents_expired'), expired_identity : () => hasVerification('expired_identity'), expired_document : () => hasVerification('expired_document'), @@ -423,7 +440,7 @@ const Header = (() => { tnc : () => Client.shouldAcceptTnc(), unwelcome : () => hasStatus('unwelcome_status'), withdrawal_locked_review : () => hasStatus('withdrawal_locked') && get_account_status.risk_classification === 'high' && !is_fully_authenticated && authentication.document.status === 'pending', - withdrawal_locked : () => (hasStatus('withdrawal_locked') && !hasStatus('only_pa_withdrawals_allowed')) || hasStatus('withdrawal_locked_status'), + withdrawal_locked : () => (hasStatus('withdrawal_locked') && !hasStatus('only_pa_p2p_withdrawals_allowed')) || hasStatus('withdrawal_locked_status'), disabled : () => hasStatus('disabled_status'), financial_risk_approval : () => hasStatus('ASK_FINANCIAL_RISK_APPROVAL'), ask_uk_funds_protection : () => hasStatus('ASK_UK_FUNDS_PROTECTION'), @@ -443,6 +460,9 @@ const Header = (() => { 'risk', 'tax', 'unsubmitted', + 'both_dob_name_mismatch', + 'dob_mismatch', + 'name_mismatch', 'expired', 'expired_identity', 'expired_document', @@ -508,6 +528,7 @@ const Header = (() => { loginOnClick, switchLoginid, loginIDOnClick, + showGoToDerivAlertPopup, }; })(); diff --git a/src/javascript/app/base/page.js b/src/javascript/app/base/page.js index d7211c4895b12..75b9ecbb3a562 100644 --- a/src/javascript/app/base/page.js +++ b/src/javascript/app/base/page.js @@ -1,38 +1,39 @@ -const Cookies = require('js-cookie'); -const moment = require('moment'); -const Client = require('./client'); -const Contents = require('./contents'); -const Header = require('./header'); -const Footer = require('./footer'); -const Menu = require('./menu'); -const BinarySocket = require('./socket'); -const TrafficSource = require('../common/traffic_source'); -const RealityCheck = require('../pages/user/reality_check/reality_check'); -const Elevio = require('../../_common/base/elevio'); -const Login = require('../../_common/base/login'); -const ClientBase = require('../../_common/base/client_base'); -const elementInnerHtml = require('../../_common/common_functions').elementInnerHtml; -const getElementById = require('../../_common/common_functions').getElementById; -const Crowdin = require('../../_common/crowdin'); -const GTM = require('../../_common/gtm'); -const Language = require('../../_common/language'); -const PushNotification = require('../../_common/lib/push_notification'); -const localize = require('../../_common/localize').localize; -const isMobile = require('../../_common/os_detect').isMobile; -const LocalStore = require('../../_common/storage').LocalStore; -const State = require('../../_common/storage').State; -const scrollToTop = require('../../_common/scroll').scrollToTop; -const toISOFormat = require('../../_common/string_util').toISOFormat; -const Url = require('../../_common/url'); -const createElement = require('../../_common/utility').createElement; -const isLoginPages = require('../../_common/utility').isLoginPages; -const isProduction = require('../../config').isProduction; -const ClosePopup = require('../common/game_close_popup'); -const EuClosePopup = require('../common/eu_close_popup'); -const EuCloseBanner = require('../common/eu_close_baner'); -const CloseBanner = require('../common/game_close_banner'); -const RedirectBanner = require('../common/redirect_banner'); -const DerivBanner = require('../common/deriv_banner'); +const Cookies = require('js-cookie'); +const moment = require('moment'); +const Client = require('./client'); +const Contents = require('./contents'); +const Header = require('./header'); +const Footer = require('./footer'); +const Menu = require('./menu'); +const BinarySocket = require('./socket'); +const TrafficSource = require('../common/traffic_source'); +const RealityCheck = require('../pages/user/reality_check/reality_check'); +const Login = require('../../_common/base/login'); +const ClientBase = require('../../_common/base/client_base'); +const elementInnerHtml = require('../../_common/common_functions').elementInnerHtml; +const getElementById = require('../../_common/common_functions').getElementById; +const Crowdin = require('../../_common/crowdin'); +const GTM = require('../../_common/gtm'); +const Language = require('../../_common/language'); +const PushNotification = require('../../_common/lib/push_notification'); +const localize = require('../../_common/localize').localize; +const isMobile = require('../../_common/os_detect').isMobile; +const LocalStore = require('../../_common/storage').LocalStore; +const State = require('../../_common/storage').State; +const scrollToTop = require('../../_common/scroll').scrollToTop; +const toISOFormat = require('../../_common/string_util').toISOFormat; +const Url = require('../../_common/url'); +const createElement = require('../../_common/utility').createElement; +const isLoginPages = require('../../_common/utility').isLoginPages; +const isProduction = require('../../config').isProduction; +const WarningScamMessage = require('../pages/user/warning_scam_message'); +const ClosePopup = require('../common/game_close_popup'); +const EuClosePopup = require('../common/eu_close_popup'); +const EuCloseBanner = require('../common/eu_close_baner'); +const CloseBanner = require('../common/game_close_banner'); +const RedirectBanner = require('../common/redirect_banner'); +const DerivBanner = require('../common/deriv_banner'); +const { removeLoadingImage } = require('../../_common/utility'); require('../../_common/lib/polyfills/array.includes'); require('../../_common/lib/polyfills/string.includes'); @@ -41,7 +42,6 @@ const Page = (() => { State.set('is_loaded_by_pjax', false); GTM.init(); Url.init(); - Elevio.init(); PushNotification.init(); onDocumentReady(); Crowdin.init(); @@ -91,24 +91,10 @@ const Page = (() => { init(); if (!isLoginPages()) { Language.setCookie(Language.urlLang()); - const url_query_strings = Url.paramsHash(); - if (!ClientBase.get('is_virtual')) { // TODO: uncomment below to enable interview popup dialog // InterviewPopup.onLoad(); } - if (url_query_strings['data-elevio-article']) { - Elevio.injectElevio(); - } - - // Handle opening livechat via URL - const is_livechat_open = url_query_strings.is_livechat_open === 'true'; - - if (is_livechat_open && window.LiveChatWidget) { - window.LiveChatWidget.on('ready', () => { - window.LC_API.open_chat_window(); - }); - } } Header.onLoad(); Footer.onLoad(); @@ -127,8 +113,13 @@ const Page = (() => { } if (Client.isLoggedIn()) { BinarySocket.wait('authorize', 'website_status', 'get_account_status').then(() => { + setTimeout(() => { + removeLoadingImage(); + }, 1000); RealityCheck.onLoad(); Menu.init(); + const is_brazil_client = State.getResponse('website_status.clients_country') === 'br'; + const read_scam_message = localStorage.getItem('read_scam_message') || false; const is_uk_residence = (Client.get('residence') === 'gb' || State.getResponse('website_status.clients_country') === 'gb'); const is_iom_client = (Client.get('residence') === 'im' || State.getResponse('website_status.clients_country') === 'im'); const is_be_client = (Client.get('residence') === 'be' || State.getResponse('website_status.clients_country') === 'be') && Client.hasAccountType('gaming'); @@ -136,6 +127,7 @@ const Page = (() => { const mlt_check = ClientBase.get('landing_company_shortcode') === 'malta'; const mf_check = ClientBase.get('landing_company_shortcode') === 'maltainvest'; const virtual_account = Client.get('landing_company_shortcode') === 'virtual'; + if (is_brazil_client && !read_scam_message) { WarningScamMessage.has_read_warning_scam_message(); } if (!is_iom_client || is_uk_residence && !Client.hasAccountType('gaming') || mf_check || mlt_check) RedirectBanner.loginOnLoad(); if (is_uk_residence && Client.hasAccountType('gaming')) { CloseBanner.onLoad(); @@ -150,7 +142,7 @@ const Page = (() => { } else { DerivBanner.loginOnLoad(); } - + }); } else { Menu.init(); diff --git a/src/javascript/app/common/__tests__/active_symbols.js b/src/javascript/app/common/__tests__/active_symbols.js index 3060f25540944..4587986440054 100644 --- a/src/javascript/app/common/__tests__/active_symbols.js +++ b/src/javascript/app/common/__tests__/active_symbols.js @@ -6,32 +6,82 @@ const { expect } = require('../../../_common/__tests__/tests_common'); There is a market called forex, which has a submarket called major_pairs, which has a symbol called frxEURUSD */ -const expected_markets_str = '{"indices":{"name":"Indices","is_active":1,"submarkets":{"europe_africa":{"name":"Europe/Africa","is_active":1,"symbols":{"OTC_AEX":{"display":"Dutch Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_SX5E":{"display":"Euro 50 Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_FCHI":{"display":"French Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_GDAXI":{"display":"German Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_IBEX35":{"display":"Spanish Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_SSMI":{"display":"Swiss Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"},"OTC_FTSE":{"display":"UK Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"europe_africa_OTC"}}},"asia_oceania":{"name":"Asia/Oceania","is_active":1,"symbols":{"OTC_AS51":{"display":"Australian Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"asia_oceania_OTC"},"OTC_HSI":{"display":"Hong Kong Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"asia_oceania_OTC"},"OTC_N225":{"display":"Japanese Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"asia_oceania_OTC"}}},"americas":{"name":"Americas","is_active":1,"symbols":{"OTC_SPC":{"display":"US Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"americas_OTC"},"OTC_NDX":{"display":"US Tech Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"americas_OTC"},"OTC_DJI":{"display":"Wall Street Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"indices","submarket":"americas_OTC"}}}}},"stocks":{"name":"OTC Stocks","is_active":1,"submarkets":{"ge_otc_stock":{"name":"Germany","is_active":1,"symbols":{"DEALV":{"display":"Allianz","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"ge_otc_stock"},"DEDAI":{"display":"Daimler","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"ge_otc_stock"},"DESIE":{"display":"Siemens","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"ge_otc_stock"}}},"uk_otc_stock":{"name":"UK","is_active":1,"symbols":{"UKBARC":{"display":"Barclays","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"uk_otc_stock"},"UKBATS":{"display":"British American Tobacco","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"uk_otc_stock"},"UKHSBA":{"display":"HSBC","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"uk_otc_stock"}}},"us_otc_stock":{"name":"US","is_active":1,"symbols":{"USAAPL":{"display":"Apple","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USAMZN":{"display":"Amazon.com","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USCT":{"display":"Citigroup","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USFB":{"display":"Facebook","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USGOOG":{"display":"Alphabet","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USMSFT":{"display":"Microsoft","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"},"USXOM":{"display":"Exxon Mobil","symbol_type":"individualstock","is_active":1,"pip":"0.01","market":"stocks","submarket":"us_otc_stock"}}}}},"synthetic_index":{"name":"Synthetic Indices","is_active":1,"submarkets":{"random_daily":{"name":"Daily Reset Indices","is_active":1,"symbols":{"RDBEAR":{"display":"Bear Market Index","symbol_type":"stockindex","is_active":1,"pip":"0.0001","market":"synthetic_index","submarket":"random_daily"},"RDBULL":{"display":"Bull Market Index","symbol_type":"stockindex","is_active":1,"pip":"0.0001","market":"synthetic_index","submarket":"random_daily"}}},"random_index":{"name":"Continuous Indices","is_active":1,"symbols":{"R_100":{"display":"Volatility 100 Index","symbol_type":"stockindex","is_active":1,"pip":"0.01","market":"synthetic_index","submarket":"random_index"},"R_25":{"display":"Volatility 25 Index","symbol_type":"stockindex","is_active":1,"pip":"0.001","market":"synthetic_index","submarket":"random_index"},"R_50":{"display":"Volatility 50 Index","symbol_type":"stockindex","is_active":1,"pip":"0.0001","market":"synthetic_index","submarket":"random_index"},"R_75":{"display":"Volatility 75 Index","symbol_type":"stockindex","is_active":1,"pip":"0.0001","market":"synthetic_index","submarket":"random_index"}}}}},"forex":{"name":"Forex","is_active":1,"submarkets":{"smart_fx":{"name":"Smart FX","is_active":1,"symbols":{"WLDAUD":{"display":"AUD Index","symbol_type":"smart_fx","is_active":1,"pip":"0.001","market":"forex","submarket":"smart_fx"},"WLDEUR":{"display":"EUR Index","symbol_type":"smart_fx","is_active":1,"pip":"0.001","market":"forex","submarket":"smart_fx"},"WLDGBP":{"display":"GBP Index","symbol_type":"smart_fx","is_active":1,"pip":"0.001","market":"forex","submarket":"smart_fx"},"WLDUSD":{"display":"USD Index","symbol_type":"smart_fx","is_active":1,"pip":"0.001","market":"forex","submarket":"smart_fx"}}},"minor_pairs":{"name":"Minor Pairs","is_active":1,"symbols":{"frxAUDCAD":{"display":"AUD/CAD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxAUDCHF":{"display":"AUD/CHF","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxAUDNZD":{"display":"AUD/NZD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxAUDPLN":{"display":"AUD/PLN","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"minor_pairs"},"frxEURNZD":{"display":"EUR/NZD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxGBPCAD":{"display":"GBP/CAD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxGBPCHF":{"display":"GBP/CHF","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxGBPNOK":{"display":"GBP/NOK","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"minor_pairs"},"frxGBPNZD":{"display":"GBP/NZD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxGBPPLN":{"display":"GBP/PLN","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"minor_pairs"},"frxNZDJPY":{"display":"NZD/JPY","symbol_type":"forex","is_active":1,"pip":"0.001","market":"forex","submarket":"minor_pairs"},"frxNZDUSD":{"display":"NZD/USD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxUSDMXN":{"display":"USD/MXN","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"minor_pairs"},"frxUSDNOK":{"display":"USD/NOK","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"},"frxUSDPLN":{"display":"USD/PLN","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"minor_pairs"},"frxUSDSEK":{"display":"USD/SEK","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"minor_pairs"}}},"major_pairs":{"name":"Major Pairs","is_active":1,"symbols":{"frxAUDJPY":{"display":"AUD/JPY","symbol_type":"forex","is_active":1,"pip":"0.001","market":"forex","submarket":"major_pairs"},"frxAUDUSD":{"display":"AUD/USD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxEURAUD":{"display":"EUR/AUD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxEURCAD":{"display":"EUR/CAD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxEURCHF":{"display":"EUR/CHF","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxEURGBP":{"display":"EUR/GBP","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxEURJPY":{"display":"EUR/JPY","symbol_type":"forex","is_active":1,"pip":"0.001","market":"forex","submarket":"major_pairs"},"frxEURUSD":{"display":"EUR/USD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxGBPAUD":{"display":"GBP/AUD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxGBPJPY":{"display":"GBP/JPY","symbol_type":"forex","is_active":1,"pip":"0.001","market":"forex","submarket":"major_pairs"},"frxGBPUSD":{"display":"GBP/USD","symbol_type":"forex","is_active":1,"pip":"0.0001","market":"forex","submarket":"major_pairs"},"frxUSDCAD":{"display":"USD/CAD","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxUSDCHF":{"display":"USD/CHF","symbol_type":"forex","is_active":1,"pip":"0.00001","market":"forex","submarket":"major_pairs"},"frxUSDJPY":{"display":"USD/JPY","symbol_type":"forex","is_active":1,"pip":"0.001","market":"forex","submarket":"major_pairs"}}}}},"commodities":{"name":"Commodities","is_active":1,"submarkets":{"energy":{"name":"Energy","is_active":1,"symbols":{"frxBROUSD":{"display":"Oil/USD","symbol_type":"commodities","is_active":1,"pip":"0.01","market":"commodities","submarket":"energy"}}},"metals":{"name":"Metals","is_active":1,"symbols":{"frxXAGUSD":{"display":"Silver/USD","symbol_type":"commodities","is_active":1,"pip":"0.0001","market":"commodities","submarket":"metals"},"frxXAUUSD":{"display":"Gold/USD","symbol_type":"commodities","is_active":1,"pip":"0.01","market":"commodities","submarket":"metals"},"frxXPDUSD":{"display":"Palladium/USD","symbol_type":"commodities","is_active":1,"pip":"0.01","market":"commodities","submarket":"metals"},"frxXPTUSD":{"display":"Platinum/USD","symbol_type":"commodities","is_active":1,"pip":"0.01","market":"commodities","submarket":"metals"}}}}}}'; +const expected_markets_str = `{ + "forex": { + "name": "Forex", + "is_active": 1, + "subgroup_name": "None", + "submarkets": { + "major_pairs": { + "name": "Major Pairs", + "is_active": 1, + "symbols": { + "frxEURUSD": { + "display": "EUR/USD", + "symbol_type": "forex", + "is_active": 1, + "pip": 0.00001, + "market": "forex", + "submarket": "major_pairs" + } + } + } + } + }, + "baskets": { + "name": "Baskets", + "is_active": 1, + "subgroup_name": "Derived", + "submarkets": { + "forex_basket": { + "name": "Forex Basket", + "is_active": 1, + "symbols": { + "WLDAUD": { + "display": "AUD Basket", + "symbol_type": "forex_basket", + "is_active": 1, + "pip": 0.001, + "market": "synthetic_index", + "submarket": "forex_basket" + } + } + }, + } + } +}` + const active_symbols = [ { allow_forward_starting: 1, display_name: "EUR/USD", + display_order: 78, exchange_is_open: 1, is_trading_suspended: 0, market: "forex", market_display_name: "Forex", - pip: "0.00001", + pip: 0.00001, + subgroup: "none", + subgroup_display_name: "None", submarket: "major_pairs", submarket_display_name: "Major Pairs", symbol: "frxEURUSD", symbol_type: "forex", }, { - allow_forward_starting: 1, - display_name: "Euro 50 Index", + allow_forward_starting: 0, + display_name: "AUD Basket", + display_order: 78, exchange_is_open: 1, is_trading_suspended: 0, - market: "indices", - market_display_name: "Indices", - pip: "0.01", - submarket: "europe_OTC", - submarket_display_name: "Europe", - symbol: "OTC_SX5E", - symbol_type: "stockindex", + market: "synthetic_index", + market_display_name: "Derived", + pip: 0.001, + subgroup: "baskets", + subgroup_display_name: "Baskets", + submarket: "forex_basket", + submarket_display_name: "Forex Basket", + symbol: "WLDAUD", + symbol_type: "forex_basket", } ]; @@ -56,7 +106,7 @@ describe('ActiveSymbols', () => { const markets = activeSymbols.getMarkets(active_symbols); expect(markets).to.be.an('Object') .and.to.have.property('forex'); - expect(markets).to.have.property('indices'); + expect(markets).to.have.property('baskets'); expect(markets).to.not.have.property('commodities'); expect(markets.forex).to.have.property('name') .and.to.be.a('String'); @@ -64,19 +114,21 @@ describe('ActiveSymbols', () => { .and.to.be.a('Number'); expect(markets.forex).to.have.property('submarkets') .and.to.be.an('Object'); + expect(markets.baskets).to.have.property('subgroup_name') + .and.to.be.a('String'); }); - it('Should getSubmarkets have major_pairs and europe_OTC as a key, but not forex and minor_pairs', () => { + it('Should getSubmarkets have major_pairs and forex_basket as a key, but not forex and baskets', () => { const submarkets = activeSymbols.getSubmarkets(active_symbols); expect(submarkets).to.be.an('Object') expect(submarkets).to.have.property('major_pairs'); - expect(submarkets).to.have.property('europe_OTC'); + expect(submarkets).to.have.property('forex_basket'); expect(submarkets).to.not.have.property('forex'); - expect(submarkets).to.not.have.property('minor_pairs'); + expect(submarkets).to.not.have.property('baskets'); }); - it('Should getMarketsList have europe_OTC, major_pairs, forex and indices as keys', () => { + it('Should getMarketsList have forex_basket, major_pairs, forex and baskets as keys', () => { const market_list = activeSymbols.getMarketsList(active_symbols); expect(market_list).to.be.an('Object') - .and.to.have.all.of.keys(['europe_OTC', 'major_pairs', 'forex', 'indices']); + .and.to.have.all.of.keys(['forex_basket', 'major_pairs', 'forex', 'baskets']); }); it('Should return correct values in getTradeUnderlyings', () => { const trade_underlyings = activeSymbols.getTradeUnderlyings(active_symbols); @@ -88,18 +140,18 @@ describe('ActiveSymbols', () => { .and.to.have.property('frxEURUSD') .and.to.have.any.of.keys(['is_active', 'display', 'market', 'submarket']); expect(trade_underlyings).to.be.an('Object') - .and.to.have.property('indices') - .and.to.have.property('OTC_SX5E') + .and.to.have.property('forex_basket') + .and.to.have.property('WLDAUD') .and.to.have.any.of.keys(['is_active', 'display', 'market', 'submarket']); - expect(trade_underlyings).to.have.property('europe_OTC') - .and.to.have.property('OTC_SX5E') + expect(trade_underlyings).to.have.property('forex_basket') + .and.to.have.property('WLDAUD') .and.to.have.any.of.keys(['is_active', 'display', 'market', 'submarket']); }); it('Should getSymbolNames have all symbol names', () => { const names = activeSymbols.getSymbolNames(active_symbols); expect(names).to.be.an('Object') .and.to.have.property('frxEURUSD'); - expect(names).to.have.property('OTC_SX5E'); + expect(names).to.have.property('WLDAUD'); }); it.skip('Should getMarkets output match the market snapshot', () => { const markets = activeSymbols.getMarkets(active_symbols); diff --git a/src/javascript/app/common/account_opening.js b/src/javascript/app/common/account_opening.js index dc3b642245029..bcbeeb7a250d1 100644 --- a/src/javascript/app/common/account_opening.js +++ b/src/javascript/app/common/account_opening.js @@ -77,9 +77,14 @@ const AccountOpening = (() => { const showResponseError = (response) => { getElementById('loading').setVisibility(0); getElementById('real_account_wrapper').setVisibility(1); + const error_message = response.error.message; + let client_error_message = null; + if (response.error.code.message_to_client){ + client_error_message = response.error.code.message_to_client; + } const $notice_box = $('#client_message').find('.notice-msg'); $('#submit-message').empty(); - $notice_box.text(response.msg_type === 'sanity_check' ? localize('There was some invalid character in an input field.') : response.error.message).end() + $notice_box.text(response.msg_type === 'sanity_check' ? localize('There was some invalid character in an input field.') : (error_message || client_error_message)).end() .setVisibility(1); $.scrollTo($notice_box, 500, { offset: -150 }); }; @@ -293,9 +298,13 @@ const AccountOpening = (() => { const handleNewAccount = (response, message_type) => { if (response.error) { const error_message = response.error.message; + let client_error_message = null; + if (response.error.code.message_to_client){ + client_error_message = response.error.code.message_to_client; + } const $notice_box = $('#client_message').find('.notice-msg'); $('#submit-message').empty(); - $notice_box.text(response.msg_type === 'sanity_check' ? localize('There was some invalid character in an input field.') : error_message).end() + $notice_box.text(response.msg_type === 'sanity_check' ? localize('There was some invalid character in an input field.') : (error_message || client_error_message)).end() .setVisibility(1); $.scrollTo($notice_box, 500, { offset: -150 }); } else { @@ -333,7 +342,7 @@ const AccountOpening = (() => { { selector: '#date_of_birth', validations: ['req'] }, { selector: '#address_line_1', validations: ['req', 'address', ['length', { min: 1, max: 70 }]] }, { selector: '#address_line_2', validations: ['address', ['length', { min: 0, max: 70 }]] }, - { selector: '#address_city', validations: ['req', 'letter_symbol', ['length', { min: 1, max: 35 }]] }, + { selector: '#address_city', validations: ['req', 'address_city', ['length', { min: 1, max: 35 }]] }, { selector: '#address_state', validations: [residence === 'au' ? 'req' : '', $('#address_state').prop('nodeName') === 'SELECT' ? '' : ['letter_symbol', ['length', { min: 0, max: 35 }]]] }, { selector: '#address_postcode', validations: [residence === 'gb' || State.getResponse('authorize.upgradeable_landing_companies').some(lc => lc === 'iom') ? 'req' : '', 'postcode', ['length', { min: 0, max: 20 }]] }, { selector: '#phone', validations: ['req', 'phone', ['length', { min: 9, max: 35, value: () => $('#phone').val().replace(/\D/g,'') }]] }, diff --git a/src/javascript/app/common/active_symbols.js b/src/javascript/app/common/active_symbols.js index 2f7f40d88561b..cdafd3a1cfba7 100644 --- a/src/javascript/app/common/active_symbols.js +++ b/src/javascript/app/common/active_symbols.js @@ -26,7 +26,7 @@ const submarket_order = { }; const ActiveSymbols = (() => { - const groupBy = (xs, key) => ( + const groupBy = (xs = [], key) => ( xs.reduce((rv, x) => { (rv[x[key]] = rv[x[key]] || []).push(x); return rv; @@ -53,13 +53,19 @@ const ActiveSymbols = (() => { } const all_markets = groupBy(all_symbols, 'market'); - Object.keys(all_markets).forEach((key) => { + const derived_markets = groupBy(all_markets.synthetic_index, 'subgroup'); + delete all_markets.synthetic_index; + + const final_markets = { ...all_markets, ...derived_markets }; + Object.keys(final_markets).forEach((key) => { const market_name = key; - const market_symbols = all_markets[key]; + const market_symbols = final_markets[key]; const symbol = market_symbols[0]; markets[market_name] = { - name : symbol.market_display_name, - is_active: !symbol.is_trading_suspended && symbol.exchange_is_open, + name : symbol.market === 'synthetic_index' ? symbol.subgroup_display_name : symbol.market_display_name, + is_active : !symbol.is_trading_suspended && symbol.exchange_is_open, + subgroup_name: symbol.subgroup !== 'none' ? symbol.market_display_name : symbol.subgroup_display_name, + subgroup : symbol.subgroup !== 'none' ? symbol.market : symbol.subgroup, }; getSubmarketsForMarket(market_symbols, markets[market_name]); }); @@ -104,7 +110,7 @@ const ActiveSymbols = (() => { symbol_type: symbol.symbol_type, is_active : !symbol.is_trading_suspended && symbol.exchange_is_open, pip : symbol.pip, - market : symbol.market, + market : symbol.market !== 'synthetic_index' ? symbol.market : symbol.subgroup, submarket : symbol.submarket, }; }); diff --git a/src/javascript/app/common/form_validation.js b/src/javascript/app/common/form_validation.js index c6b150b13baca..883304247c635 100644 --- a/src/javascript/app/common/form_validation.js +++ b/src/javascript/app/common/form_validation.js @@ -181,6 +181,7 @@ const Validation = (() => { return false; }; const validLetterSymbol = value => !/[`~!@#$%^&*)(_=+[}{\]\\/";:?><,|\d]+/.test(value); + const validAddressCity = value => /^[a-zA-Z ]+[-.'a-zA-z ]*$/.test(value); const validGeneral = value => !/[`~!@#$%^&*)(_=+[}{\]\\/";:?><|]+/.test(value); const validAddress = value => !/[`~!$%^&*_=+[}{\]\\"?><|]+/.test(value); const validPostCode = value => value === '' || /^[A-Za-z0-9][A-Za-z0-9\s-]*$/.test(value); @@ -286,6 +287,7 @@ const Validation = (() => { general : { func: validGeneral, message: localize('Only letters, numbers, space, hyphen, period, and apostrophe are allowed.') }, address : { func: validAddress, message: localize('Only letters, numbers, space, and these special characters are allowed: [_1]', '- . \' # ; : ( ) , @ /') }, letter_symbol : { func: validLetterSymbol, message: localize('Only letters, space, hyphen, period, and apostrophe are allowed.') }, + address_city : { func: validAddressCity, message: localize('Only letters, space, hyphen, period, and apostrophe are allowed.') }, postcode : { func: validPostCode, message: localize('Only letters, numbers, space, and hyphen are allowed.') }, phone : { func: validPhone, message: localize('Please enter a valid phone number (e.g. +15417541234).') }, compare : { func: validCompare, message: localize('The two passwords that you entered do not match.') }, diff --git a/src/javascript/app/common/redirect_banner.js b/src/javascript/app/common/redirect_banner.js index c3144c413e043..d324320c952d6 100644 --- a/src/javascript/app/common/redirect_banner.js +++ b/src/javascript/app/common/redirect_banner.js @@ -1,19 +1,25 @@ +const Cookies = require('js-cookie'); const DerivBanner = require('./deriv_banner'); const BinarySocket = require('../base/socket'); const State = require('../../_common/storage').State; const Client = require('../base/client'); +const { showLoading, removeLoadingImage } = require('../../_common/utility'); const isEuCountrySelected = require('../../_common/utility').isEuCountrySelected; const RedirectBanner = (() => { - const onLoad = () => { + showLoading(); BinarySocket.wait('authorize', 'website_status', 'landing_company').then(() => { - const eu_country = isEuCountrySelected(Client.get('residence')) || isEuCountrySelected(State.getResponse('website_status.clients_country')); + if (eu_country) { handleRedirect(); + } else if (!Cookies.get('row-lp-visited')) { + handleRowRedirect(); } - + setTimeout(() => { + removeLoadingImage(); + }, 1000); }); }; @@ -21,8 +27,12 @@ const RedirectBanner = (() => { const handleRedirect = () => { window.location.href = '/move-to-deriv/'; }; + const handleRowRedirect = () => { + window.location.href = '/binary-to-deriv/'; + }; const loginOnLoad = () => { + showLoading(); BinarySocket.wait('authorize', 'website_status', 'landing_company').then(() => { const eu_country = isEuCountrySelected(Client.get('residence')) || isEuCountrySelected(State.getResponse('website_status.clients_country')); const landing_company_shortcode = Client.get('landing_company_shortcode'); @@ -40,8 +50,12 @@ const RedirectBanner = (() => { handleRedirect(); } else if (eu_country && virtual_account) { handleRedirect(); + } else if (!Cookies.get('row-lp-visited')) { + handleRowRedirect(); } - + setTimeout(() => { + removeLoadingImage(); + }, 1000); }); }; diff --git a/src/javascript/app/common/traffic_source.js b/src/javascript/app/common/traffic_source.js index 369209df5e6e0..c281c93b24a83 100644 --- a/src/javascript/app/common/traffic_source.js +++ b/src/javascript/app/common/traffic_source.js @@ -93,8 +93,8 @@ const TrafficSource = (() => { // Check if params has utm data if (shouldOverwrite(new_values, current_values)) { clearData(); - Object.keys(new_values).forEach((key) => { - cookie.set(key, new_values[key], { sameSite: 'none', secure: true }); + Object.keys(new_values).forEach(() => { + // cookie.set(key, new_values[key], { sameSite: 'none', secure: true }); }); } diff --git a/src/javascript/app/pages/cashier/cashier.js b/src/javascript/app/pages/cashier/cashier.js index f71aa2edd4726..21feee3dc3a6d 100644 --- a/src/javascript/app/pages/cashier/cashier.js +++ b/src/javascript/app/pages/cashier/cashier.js @@ -14,6 +14,7 @@ const BinaryPjax = require('../../base/binary_pjax'); const Accounts = require('../user/accounts'); const Header = require('../../base/header'); const isEuCountry = require('../../common/country_base').isEuCountry; +const getLanguage = require('../../../_common/language').get; const Cashier = (() => { let href = ''; @@ -135,53 +136,6 @@ const Cashier = (() => { el_acc_currency.setVisibility(show_current_currency); }; - const setCryptoMinimumWithdrawal = () => { - BinarySocket.wait('website_status').then((response) => { - $('#cryptocurrency tbody tr').each(function () { - const $row = $(this); - const $columns = $row.find('td:nth-child(2) div:nth-child(2)'); - - const $crypto_min_withdrawal = $columns.find('span[data-currency]'); - const shortname = $crypto_min_withdrawal.attr('data-currency'); - - if (shortname && $crypto_min_withdrawal) { - const minimum_withdrawal = getPropertyValue(response, ['website_status', 'crypto_config', shortname, 'minimum_withdrawal']); - - let to_fixed = 0; - // cut long numbers off after two non-zero decimals - // examples: 0.00123456 -> 0.0012, 0.01234567 -> 0.012, 0.12345678 -> 0.12, 0.00102345 -> 0.00102 - // first check if number has any decimal places - if (/\./.test(minimum_withdrawal)) { - let count_non_zero = 0; - - // change number to string so we can use split on it - // split by . separator to only parse the decimal places - // split to array so we can parse each number one by one - const array_decimals = minimum_withdrawal.toString().split('.')[1].split(''); - - to_fixed = array_decimals.findIndex((n) => { - // if current number is not a zero - // and we have parsed more than 2 non-zero numbers - // cut off the number here - if (+n !== 0 && count_non_zero >= 2) { - return true; - } - // otherwise add to the count if current number is not zero and move to the next number - if (+n !== 0) { - count_non_zero += 1; - } - return false; - }); - } - // if there is not more than 2 non-zero decimals - // don't cut off the number - const min_withdrawal = to_fixed === -1 ? minimum_withdrawal : minimum_withdrawal.toFixed(to_fixed); - $crypto_min_withdrawal.text(min_withdrawal); - } - }); - }); - }; - const setBtnDisable = selector => $(selector).addClass('button-disabled').click(false); const applyStateLockLogic = (status, deposit, withdraw) => { @@ -192,14 +146,14 @@ const Cashier = (() => { { lock: 'withdrawal_locked', selectors: [withdraw] }, { lock: 'no_withdrawal_or_trading', selectors: [withdraw] }, { lock: 'unwelcome', selectors: [deposit] }, - { lock: 'only_pa_withdrawals_allowed', selectors: [withdraw] }, + { lock: 'only_pa_p2p_withdrawals_allowed', selectors: [withdraw] }, ]; statuses_to_check.forEach(item => { if (status.includes(item.lock)) { item.selectors.forEach(selector => setBtnDisable(selector)); } }); - if (status.includes('only_pa_withdrawals_allowed')){ + if (status.includes('only_pa_p2p_withdrawals_allowed')){ $('.pa_withdraw').removeClass('button-disabled').click(false); } }; @@ -208,13 +162,6 @@ const Cashier = (() => { applyStateLockLogic(status, '.deposit_btn_cashier', '.withdraw_btn_cashier'); }; - const checkLockStatusPA = () => { - BinarySocket.wait('get_account_status').then(() => { - const { status } = State.getResponse('get_account_status'); - applyStateLockLogic(status, '.deposit', '.withdraw'); - }); - }; - const switchToAccount = (account_type, transaction_type, fiat_account) => { const ok_text = localize('Switch account'); const fiat_currency = Client.get('currency', fiat_account); @@ -255,7 +202,7 @@ const Cashier = (() => { }, onAbort: () => BinaryPjax.load(Url.urlFor('cashier')), }); - + }); }; @@ -375,7 +322,7 @@ const Cashier = (() => { return false; }); } - + if (has_fiat_account || has_crypto_account){ el_paymentmethod_deposit.on('click', () => { BinarySocket.send({ authorize: 1 }).then(() => { @@ -389,17 +336,24 @@ const Cashier = (() => { }); return false; }); - + } else { el_paymentmethod_deposit.on('click', () => { - el_paymentmethod_deposit.attr('href', Url.urlFor('/new_account/real_account')); + Header.showGoToDerivAlertPopup(); + return false; }); el_paymentmethod_withdraw.on('click', () => { - el_paymentmethod_withdraw.attr('href', Url.urlFor('/new_account/real_account')); + Header.showGoToDerivAlertPopup(); + return false; }); } }); } + const lang = getLanguage(); + const all_links = Array.from(document.getElementsByTagName('a')); + const payment_methods_link = all_links.filter(link => link.href.includes('payment_methods')); + payment_methods_link.map(a => a.href = `https://deriv.com/${lang.toLowerCase().replace(/_/g, '-')}/payment-methods/`); + showContent(); }; @@ -407,9 +361,8 @@ const Cashier = (() => { onLoad, PaymentMethods: { onLoad: () => { - showContent(); - checkLockStatusPA(); - setCryptoMinimumWithdrawal(); + const lang = getLanguage(); + window.location.href = `https://deriv.com/${lang.toLowerCase().replace(/_/g, '-')}/payment-methods/`; }, }, }; diff --git a/src/javascript/app/pages/cashier/payment_agent_withdraw.js b/src/javascript/app/pages/cashier/payment_agent_withdraw.js index d44441183505d..672f894e4612a 100644 --- a/src/javascript/app/pages/cashier/payment_agent_withdraw.js +++ b/src/javascript/app/pages/cashier/payment_agent_withdraw.js @@ -280,7 +280,7 @@ const PaymentAgentWithdraw = (() => { const get_account_status = State.getResponse('get_account_status'); if (/(withdrawal|cashier)_locked/.test(get_account_status.status)) { - if (!/only_pa_withdrawals_allowed/.test(get_account_status.status)){ + if (!/only_pa_p2p_withdrawals_allowed/.test(get_account_status.status)){ showPageError('', 'withdrawal-locked-error'); return; } diff --git a/src/javascript/app/pages/trade/markets.jsx b/src/javascript/app/pages/trade/markets.jsx index ce7d27a44d1b9..4a6685d0b06d8 100644 --- a/src/javascript/app/pages/trade/markets.jsx +++ b/src/javascript/app/pages/trade/markets.jsx @@ -1,11 +1,13 @@ import React from 'react'; import ReactDOM from 'react-dom'; +import classNames from 'classnames'; import Symbols from './symbols'; // Should be remove in the future import Defaults from './defaults'; import { sortSubmarket, getAvailableUnderlyings } from '../../common/active_symbols'; import { getElementById } from '../../../_common/common_functions'; import { localize } from '../../../_common/localize'; +import { isMobile } from '../../../_common/os_detect'; function scrollToPosition (element, to, duration) { const requestAnimationFrame = window.requestAnimationFrame || @@ -30,40 +32,91 @@ const List = ({ saveRef, underlying, onUnderlyingClick, -}) => ( - arr.map(([market_code, obj], idx) => ( -
-
- {obj.name} -
- {Object.entries(obj.submarkets).sort((a, b) => sortSubmarket(a[0], b[0])) - .map(([key, submarket], idx_2) => ( // eslint-disable-line no-unused-vars -
-
- {submarket.name} -
-
- {Object.entries(submarket.symbols).map(([u_code, symbol]) => ( -
- {symbol.display} + groupMarkets, +}) => { + const group_markets = groupMarkets(arr); + return ( + + { + Object.keys(group_markets).map((item) => { + const derived_category = group_markets[item].markets[0].key; + return ( + group_markets[item].markets.map((obj, idx) => ( + item === 'none' ? ( +
+
+
+ {obj.name} +
+ {Object.entries(obj.submarket).sort((a, b) => sortSubmarket(a[0], b[0])) + .map(([key, submarket], idx_2) => ( // eslint-disable-line no-unused-vars +
+
+ {submarket.name} +
+
+ {Object.entries(submarket.symbols).map(([u_code, symbol]) => ( +
+ {symbol.display} +
+ ))} +
+
+ ))} +
- ))} -
-
- ))} -
- )) -); + ) : ( +
+
+ {(obj.key === derived_category && isMobile()) &&
{obj.subgroup_name}
} +
+ {obj.name} +
+ {Object.entries(obj.submarket).sort((a, b) => sortSubmarket(a[0], b[0])) + .map(([key, submarket], idx_2) => ( // eslint-disable-line no-unused-vars +
+
+ {submarket.name} +
+
+ {Object.entries(submarket.symbols).map(([u_code, symbol]) => ( +
+ {symbol.display} +
+ ))} +
+
+ ))} +
+
+ ) + )) + ); + }) + } + + ); +}; class Markets extends React.Component { constructor (props) { @@ -71,7 +124,11 @@ class Markets extends React.Component { let market_symbol = Defaults.get('market'); const market_list = Symbols.markets(); this.markets = getAvailableUnderlyings(market_list); - delete this.markets.forex.submarkets.smart_fx; + + if (this.markets.forex) { + delete this.markets.forex.submarkets.smart_fx; + } + this.underlyings = Symbols.getAllSymbols() || {}; let underlying_symbol = Defaults.get('underlying'); @@ -90,6 +147,12 @@ class Markets extends React.Component { market_symbol = Object.keys(this.markets).find(m => this.markets[m].submarkets[market_symbol]); Defaults.set('market', market_symbol); } + this.keys_arr = []; + this.markets_all.forEach((market) => { + if (market[1].subgroup !== 'none') { + this.keys_arr.push(market[0]); + } + }); this.el_underlying = getElementById('underlying'); this.references = {}; this.state = { @@ -106,6 +169,9 @@ class Markets extends React.Component { active_market : market_symbol, query : '', open_dropdown_scroll_id: 0, + open_accordion : false, + subgroup_active : false, + subgroup_title : false, }; this.el_underlying.value = underlying_symbol; } @@ -121,12 +187,20 @@ class Markets extends React.Component { /* eslint-disable no-undef */ closeDropdown = () => { this.setState({ - open : false, - query : '', - markets: this.markets_all, + open : false, + query : '', + markets : this.markets_all, + open_accordion: false, }); }; + toggleAccordion = () => { + this.setState((prevState) => ({ + ...prevState, + open_accordion: !prevState.open_accordion, + })); + } + getCurrentUnderlying = () => { const { underlying: { name: underlying } } = this.state; const max_char = window.innerWidth <= 767 ? 15 : 25; @@ -153,6 +227,16 @@ class Markets extends React.Component { if (node && node.offsetParent && node.offsetTop - 41 <= position) { arr.push(key); + if (this.keys_arr.includes(key)) { + this.setState({ + subgroup_active: true, + open_accordion : true, + }); + } else { + this.setState({ + subgroup_active: false, + }); + } } }); if (this.state.active_market !== arr[arr.length - 1]) { @@ -251,6 +335,7 @@ class Markets extends React.Component { const class_under = 'put_under'; const TITLE_HEIGHT = 40; const DEFAULT_TOP = this.references.list.offsetTop; + const SUBGROUP_LABEL = document.getElementsByClassName('label'); const current_viewed_node = Object.values(market_nodes).find(node => ( node.dataset.offsetTop <= position @@ -264,6 +349,7 @@ class Markets extends React.Component { node.removeAttribute('style'); node.children[0].removeAttribute('style'); node.children[0].classList.remove(class_under, class_sticky); + node.children[1].classList.remove(class_under, class_sticky); }); this.references.last_viewed_node = current_viewed_node; } @@ -276,6 +362,11 @@ class Markets extends React.Component { current_viewed_node.children[0].removeAttribute('style'); current_viewed_node.children[0].classList.remove(class_under); } + if (isMobile() && (current_viewed_node.classList.contains('subgroup') && !current_viewed_node.classList.contains('label'))) { + SUBGROUP_LABEL[0].classList.add(class_sticky); + SUBGROUP_LABEL[0].removeAttribute('style'); + SUBGROUP_LABEL[0].classList.remove(class_under); + } current_viewed_node.children[0].classList.add(class_sticky); current_viewed_node.style.paddingTop = `${TITLE_HEIGHT}px`; } @@ -289,12 +380,28 @@ class Markets extends React.Component { node.dataset.offsetHeight = node.offsetHeight; } + groupMarkets = (markets) => { + const market_group = {}; + markets.forEach(([key, obj]) => { + if (market_group[obj.subgroup]){ + market_group[obj.subgroup].markets.push( + { name: obj.name, key, subgroup_name: obj.subgroup_name, submarket: obj.submarkets } + ); + } else { + market_group[obj.subgroup] = { markets: [ + { name: obj.name, key, subgroup_name: obj.subgroup_name, submarket: obj.submarkets }], + }; + } + }); + return market_group; + } + searchSymbols = ({ target: { value: query } }) => { this.setState({ query }); scrollToPosition(this.references.list, 0, 0); const markets_all = this.markets_all; if (!query) { - this.setState({ markets: markets_all }); + this.setState({ markets: markets_all, subgroup_active: false, open_accordion: false }); return; } const filter_markets = []; @@ -325,12 +432,22 @@ class Markets extends React.Component { const market_copy = JSON.parse(JSON.stringify(market)); market_copy.submarkets = filter_submarkets; filter_markets.push([key, market_copy]); + if (this.keys_arr.includes(filter_markets[0][0])) { + this.setState({ + subgroup_active: true, + open_accordion : true, + }); + } else { + this.setState({ + subgroup_active: false, + open_accordion : false, + }); + } } }); // nothing found if (!filter_markets.length) return; - this.setState({ markets: filter_markets, active_market: filter_markets[0][0] }); } @@ -339,6 +456,7 @@ class Markets extends React.Component { const { list } = this.references; const node = this.references.market_nodes[key]; const offset = node.dataset.offsetTop - list.offsetTop; + scrollToPosition(list, offset, 0); } @@ -352,6 +470,8 @@ class Markets extends React.Component { query, market, open, + open_accordion, + subgroup_active, } = this.state; const { getCurrentUnderlying, @@ -363,8 +483,12 @@ class Markets extends React.Component { onUnderlyingClick, saveRef, scrollToMarket, + groupMarkets, + toggleAccordion, } = this; + const group_markets = groupMarkets(markets); + return (
- {markets.map(([key, obj]) => -
- - {obj.name} + {Object.keys(group_markets).map((item, idx) => ( +
+ {item === 'none' ? ( +
+ {group_markets[item].markets.map((m) => ( +
+ + {m.name} +
))} +
+ ) : ( +
+
+ + {group_markets[item].markets[0].subgroup_name} + +
+
+ {group_markets[item].markets.map((m) => ( +
+ {m.name} +
+ ))} +
+ +
+ )}
- )} + ))}
-
    - {markets.map(([key]) => ( -
  • - -
  • - ))} -
+ +
    + {Object.keys(group_markets).map((item, idx) => { + const derived_category = group_markets[item].markets[0].key; + return ( + item === 'none' ? ( + + {group_markets[item].markets.map((m) => ( +
  • + +
  • + ))} +
    + ) : ( +
  • + +
  • + ) + ); + })} +
+
diff --git a/src/javascript/app/pages/trade/purchase.js b/src/javascript/app/pages/trade/purchase.js index f0b3c4787af1d..c5950176d783f 100644 --- a/src/javascript/app/pages/trade/purchase.js +++ b/src/javascript/app/pages/trade/purchase.js @@ -102,47 +102,49 @@ const Purchase = (() => { authorization_error_btn_login.removeEventListener('click', loginOnClick); authorization_error_btn_login.addEventListener('click', loginOnClick); } else { - BinarySocket.wait('get_account_status').then(response => { - confirmation_error.setVisibility(1); - let message = error.message; - if (/NoMFProfessionalClient/.test(error.code)) { - const account_status = getPropertyValue(response, ['get_account_status', 'status']) || []; - const has_professional_requested = account_status.includes('professional_requested'); - const has_professional_rejected = account_status.includes('professional_rejected'); - if (has_professional_requested) { - message = localize('Your application to be treated as a professional client is being processed.'); - } else if (has_professional_rejected) { - const message_text = `${localize('Your professional client request is [_1]not approved[_2].', ['', ''])}
${localize('Please reapply once the required criteria has been fulfilled.')}

${localize('More information can be found in an email sent to you.')}`; - const button_text = localize('I want to reapply'); - - message = prepareConfirmationErrorCta(message_text, button_text, true); - } else { - const message_text = localize('In the EU, financial binary options are only available to professional investors.'); - const button_text = localize('Apply now as a professional investor'); - - message = prepareConfirmationErrorCta(message_text, button_text); + confirmation_error.setVisibility(1); + let message = error.message; + if (/CompanyWideLimitExceeded/i.test(error.code)) { + const redirect = ''; + const redirect_close = ''; + message = localize('No further trading is allowed on this contract type for the current trading session. For more info, refer to our [_1]terms and conditions[_2].',[redirect, redirect_close]); + } else { + BinarySocket.wait('get_account_status').then(response => { + if (/NoMFProfessionalClient/.test(error.code)) { + const account_status = getPropertyValue(response, ['get_account_status', 'status']) || []; + const has_professional_requested = account_status.includes('professional_requested'); + const has_professional_rejected = account_status.includes('professional_rejected'); + if (has_professional_requested) { + message = localize('Your application to be treated as a professional client is being processed.'); + } else if (has_professional_rejected) { + const message_text = `${localize('Your professional client request is [_1]not approved[_2].', ['', ''])}
${localize('Please reapply once the required criteria has been fulfilled.')}

${localize('More information can be found in an email sent to you.')}`; + const button_text = localize('I want to reapply'); + message = prepareConfirmationErrorCta(message_text, button_text, true); + } else { + const message_text = localize('In the EU, financial binary options are only available to professional investors.'); + const button_text = localize('Apply now as a professional investor'); + message = prepareConfirmationErrorCta(message_text, button_text); + } + } else if (/RestrictedCountry/.test(error.code)) { + let additional_message = ''; + if (/FinancialBinaries/.test(error.code)) { + additional_message = localize('Try our [_1]Synthetic Indices[_2].', [``, '']); + } else if (/Random/.test(error.code)) { + additional_message = localize('Try our other markets.'); + } + message = `${error.message}. ${additional_message}`; + } else if (/ClientUnwelcome/.test(error.code) && /gb/.test(Client.get('residence'))) { + if (!Client.hasAccountType('real') && Client.get('is_virtual')) { + message = localize('Please complete the [_1]Real Account form[_2] to verify your age as required by the [_3]UK Gambling[_4] Commission (UKGC).', [``, '', '', '']); + } else if (Client.hasAccountType('real') && /^virtual|iom$/i.test(Client.get('landing_company_shortcode'))) { + message = localize('Account access is temporarily limited. Please check your inbox for more details.'); + } else { + message = error.message; + } } - } else if (/RestrictedCountry/.test(error.code)) { - let additional_message = ''; - if (/FinancialBinaries/.test(error.code)) { - additional_message = localize('Try our [_1]Synthetic Indices[_2].', [``, '']); - } else if (/Random/.test(error.code)) { - additional_message = localize('Try our other markets.'); - } - - message = `${error.message}. ${additional_message}`; - } else if (/ClientUnwelcome/.test(error.code) && /gb/.test(Client.get('residence'))) { - if (!Client.hasAccountType('real') && Client.get('is_virtual')) { - message = localize('Please complete the [_1]Real Account form[_2] to verify your age as required by the [_3]UK Gambling[_4] Commission (UKGC).', [``, '', '', '']); - } else if (Client.hasAccountType('real') && /^virtual|iom$/i.test(Client.get('landing_company_shortcode'))) { - message = localize('Account access is temporarily limited. Please check your inbox for more details.'); - } else { - message = error.message; - } - } - - CommonFunctions.elementInnerHtml(confirmation_error, message); - }); + }); + } + CommonFunctions.elementInnerHtml(confirmation_error, message); } } } else { @@ -171,14 +173,14 @@ const Purchase = (() => { const potential_profit_value = payout_value ? formatMoney(currency, payout_value - cost_value) : undefined; - CommonFunctions.elementInnerHtml(cost, `${localize('Total Cost')}

${formatMoney(currency, cost_value)}

`); + CommonFunctions.elementInnerHtml(cost, `${localize('Total Cost')}

${formatMoney(currency, cost_value)}

`); if (isLookback(contract_type)) { - CommonFunctions.elementInnerHtml(payout, `${localize('Potential Payout')}

${formula}

`); + CommonFunctions.elementInnerHtml(payout, `${localize('Potential Payout')}

${formula}

`); profit.setVisibility(0); } else { profit.setVisibility(1); - CommonFunctions.elementInnerHtml(payout, `${localize('Potential Payout')}

${formatMoney(currency, payout_value)}

`); - CommonFunctions.elementInnerHtml(profit, `${localize('Potential Profit')}

${potential_profit_value}

`); + CommonFunctions.elementInnerHtml(payout, `${localize('Potential Payout')}

${formatMoney(currency, payout_value)}

`); + CommonFunctions.elementInnerHtml(profit, `${localize('Potential Profit')}

${potential_profit_value}

`); } updateValues.updateContractBalance(receipt.balance_after); diff --git a/src/javascript/app/pages/trade/tick_trade.js b/src/javascript/app/pages/trade/tick_trade.js index 3e3bfdcc524c8..8c8f4588319ab 100644 --- a/src/javascript/app/pages/trade/tick_trade.js +++ b/src/javascript/app/pages/trade/tick_trade.js @@ -69,9 +69,10 @@ const TickDisplay = (() => { title : show_contract_result ? '' : contract.display_name, tooltip : { formatter() { - const tick = contract.tick_stream.find((data) => data.tick === this.y).tick_display_value; + const tick = contract.tick_stream.find((data) => data.tick === this.y); + const tick_display_value = tick ? tick.tick_display_value : ''; const date = moment.utc(contract.tick_stream[this.x].epoch * 1000).format('dddd, MMM D, HH:mm:ss'); - return `
${date}
${contract.display_name} ${tick}
`; + return `
${date}
${contract.display_name} ${tick_display_value}
`; }, }, type : 'line', diff --git a/src/javascript/app/pages/trade/update_values.js b/src/javascript/app/pages/trade/update_values.js index 8ab4c026eaa98..3b3bbf36f10e7 100644 --- a/src/javascript/app/pages/trade/update_values.js +++ b/src/javascript/app/pages/trade/update_values.js @@ -9,12 +9,12 @@ const updatePurchaseStatus = (final_price, pnl, profit, localized_contract_statu const $profit = $('#contract_purchase_profit'); const currency = Client.get('currency'); - $payout.html($('
', { text: localize('Buy price') }).append($('

', { html: formatMoney(currency, Math.abs(pnl)) }))); - $cost.html($('

', { text: localize('Final price') }).append($('

', { html: formatMoney(currency, final_price) }))); + $payout.html($('

', { text: localize('Buy price') }).append($('

', { html: formatMoney(currency, Math.abs(pnl)) }).attr('id','contract_purchase_payout--amount'))); + $cost.html($('

', { text: localize('Final price') }).append($('

', { html: formatMoney(currency, final_price) }).attr('id','contract_purchase_cost--amount'))); if (!final_price) { - $profit.html($('

', { text: localize('Loss') }).append($('

', { html: formatMoney(currency, pnl) }))); + $profit.html($('

', { text: localize('Loss') }).append($('

', { html: formatMoney(currency, pnl) }).attr('id','contract_purchase_loss--amount'))); } else { - $profit.html($('

', { text: localize('Profit') }).append($('

', { html: formatMoney(currency, profit) }))); + $profit.html($('

', { text: localize('Profit') }).append($('

', { html: formatMoney(currency, profit) }).attr('id','contract_purchase_profit--amount'))); updateContractBalance(Client.get('balance')); } }; diff --git a/src/javascript/app/pages/user/account/authenticate.js b/src/javascript/app/pages/user/account/authenticate.js index 90bd7ddf24453..58b7f0d28ba84 100644 --- a/src/javascript/app/pages/user/account/authenticate.js +++ b/src/javascript/app/pages/user/account/authenticate.js @@ -65,7 +65,7 @@ const Authenticate = (() => { const language = getLanguage(); const language_based_link = ['ID', 'RU', 'PT'].includes(language) ? `_${language}` : ''; const $not_authenticated = $('#not_authenticated'); - const link = Url.urlForCurrentDomain(`https://marketing.binary.com/authentication/Authentication_Process${language_based_link}.pdf`); + const link = Url.urlForCurrentDomain(`https://static.deriv.com/legacy/marketing/authentication/Authentication_Process${language_based_link}.pdf`); $not_authenticated.setVisibility(1); @@ -107,7 +107,7 @@ const Authenticate = (() => { const language = getLanguage(); const language_based_link = ['ID', 'RU', 'PT'].includes(language) ? `_${language}` : ''; const $not_authenticated_uns = $('#not_authenticated_uns'); - const link = Url.urlForCurrentDomain(`https://marketing.binary.com/authentication/Authentication_Process${language_based_link}.pdf`); + const link = Url.urlForCurrentDomain(`https://static.deriv.com/legacy/marketing/authentication/Authentication_Process${language_based_link}.pdf`); $not_authenticated_uns.find('.learn_more').setVisibility(1).find('a').attr('href', link); @@ -1125,6 +1125,11 @@ const Authenticate = (() => { const country_code = selected_country.value; const { has_visual_sample, documents_supported } = selected_country.identity.services.idv; + if (country_code === 'in') { + delete documents_supported.aadhaar; + delete documents_supported.passport; + } + let document_type, document_number; @@ -1231,6 +1236,10 @@ const Authenticate = (() => { await BinarySocket.send(submit_data).then(response => { if (response.error) { // Show some error message to user + $('#duplicate_idv_button').on('click', () => {window.location.reload(); }).css({ 'margin': '0 auto' ,'display': 'block' }); + $('#idv_document_submit').toggleClass('invisible'); + $('#duplicate_idv_container').toggleClass('invisible'); + $('#duplicate_idv_text').text(response.error.message); } else { // Success - Update authentication object with new status BinarySocket.send({ get_account_status: 1 }, { forced: true }).then(res => { @@ -1295,7 +1304,9 @@ const Authenticate = (() => { $('#idv_document_failed_upload_btn').setVisibility(0); // If IDV has remaining attempt if (Number(idv_submissions_left) > 0) { - $('#idv_document_failed_try_again_btn').on('click', () => { + $('#idv_document_failed_try_again_btn').on('click', (e) => { + e.preventDefault(); + e.stopPropagation(); $('#idv_document_failed').setVisibility(0); handleCountrySelector(); }); @@ -1303,7 +1314,9 @@ const Authenticate = (() => { $('#idv_document_failed_try_again_btn').setVisibility(0); $('#idv_document_failed_text').setVisibility(1); $('#idv_document_failed_upload_btn').setVisibility(1); - $('#idv_document_failed_upload_btn').on('click', () => { + $('#idv_document_failed_upload_btn').on('click', (e) => { + e.preventDefault(); + e.stopPropagation(); $('#idv_document_failed').setVisibility(0); if (Number(onfido_submissions_left) > 0) { handleCountrySelector(); @@ -1372,7 +1385,7 @@ const Authenticate = (() => { case 'suspected': case 'rejected': if (Number(submissions_left) < 1) { - $('#limited_poi').setVisibility(1); + handleManual(); } else { const maximum_reasons = rejected_reasons.slice(0, 3); const has_minimum_reasons = rejected_reasons.length > 3; @@ -1434,13 +1447,32 @@ const Authenticate = (() => { } }; - const handleManual = () => { - $('#idv-container').setVisibility(0); + const handleManual = async () => { + account_status = await getAccountStatus(); + const { manual } = account_status.authentication.identity.services; + const { status } = manual; $('#authentication_tab').setVisibility(1); - $('#msg_personal_details').setVisibility(1); TabSelector.updateTabDisplay(); - $('#not_authenticated_uns').setVisibility(1); - initUnsupported(); + + switch (status){ + case 'none': + $('#idv-container').setVisibility(0); + $('#msg_personal_details').setVisibility(1); + $('#not_authenticated_uns').setVisibility(1); + initUnsupported(); + break; + case 'pending': + $('#idv-container').setVisibility(0); + $('#upload_complete').setVisibility(1); + break; + case 'rejected': + case 'suspected': + $('#idv-container').setVisibility(0); + $('#limited_poi').setVisibility(1); + break; + default: + break; + } }; const initAuthentication = async () => { diff --git a/src/javascript/app/pages/user/account/settings/iphistory/iphistory.data.js b/src/javascript/app/pages/user/account/settings/iphistory/iphistory.data.js index 8c1d089c5d3aa..87ea35287c216 100644 --- a/src/javascript/app/pages/user/account/settings/iphistory/iphistory.data.js +++ b/src/javascript/app/pages/user/account/settings/iphistory/iphistory.data.js @@ -15,8 +15,8 @@ const IPHistoryData = (() => { { name: 'IE', regex: /trident\/\d+\.\d+;.*[rv:]+(\d+\.\d)/i }, { name: 'Firefox', regex: /firefox\/([\d\w.-]+)/i }, { name: 'Binary app', regex: /binary\.com V([\d.]+)/i }, - { name: 'iPhone', regex: /\b(iPhone\d*)\b.*(DP2P)\b/ig }, - { name: 'Android', regex: /\b(Android\d*)\b.*(DP2P)\b/ig }, + { name: 'iPhone', regex: /\b(iPhone\d*)\b.*(Deriv GO|Deriv P2P)\b/ig }, + { name: 'Android', regex: /\b(Android\d*)\b.*(Deriv GO|Deriv P2P)\b/ig }, { name: 'Dart', regex: /dart\/([\d\w.-]+)/i }, ]; for (let i = 0; i < lookup.length; i++) { @@ -25,7 +25,7 @@ const IPHistoryData = (() => { if (match !== null) { let app; if (['Android', 'iPhone'].includes(info.name)) { - match = user_agent.match(/(:?DP2P\/([\d\w.-]+))/ig)[0].split('/'); + match = user_agent.match(/(:?(Deriv GO|Deriv P2P)\/([\d\w.+-]+))/ig)[0].split('/'); app = match[0]; } return { diff --git a/src/javascript/app/pages/user/account/settings/iphistory/iphistory.ui.js b/src/javascript/app/pages/user/account/settings/iphistory/iphistory.ui.js index 68768b2dad61d..b68f5663b75e4 100644 --- a/src/javascript/app/pages/user/account/settings/iphistory/iphistory.ui.js +++ b/src/javascript/app/pages/user/account/settings/iphistory/iphistory.ui.js @@ -13,9 +13,9 @@ const IPHistoryUI = (() => { const browser = data.browser; let browser_string = browser ? `${browser.name} v${browser.version}` : 'Unknown'; if (browser && browser.app) { - browser_string += ` ${browser.app} app`; + browser_string = ` ${browser.name} ${browser.app} v/${browser.version}`; } - const patt = /(opera|chrome|safari|firefox|IE|Edge|SeaMonkey|Chromium|Binary app|Android|iPhone|Dart) v[0-9.]+(\b.*DP2P app)?$/i; + const patt = /(opera|chrome|safari|firefox|IE|Edge|SeaMonkey|Chromium|Binary app|Android|iPhone|Dart)(\b.*(Deriv GO|Deriv P2P))? v(\/)?[0-9.+]+$/i; if (!patt.test(browser_string) && browser_string !== 'Unknown') { browser_string = 'Error'; } diff --git a/src/javascript/app/pages/user/account/settings/limits/limits.ui.js b/src/javascript/app/pages/user/account/settings/limits/limits.ui.js index 1c71e08325699..8f14ab224c236 100644 --- a/src/javascript/app/pages/user/account/settings/limits/limits.ui.js +++ b/src/javascript/app/pages/user/account/settings/limits/limits.ui.js @@ -55,10 +55,20 @@ const LimitsUI = (() => { appendRowTable(markets[market].name, '', 'auto', 'bold'); limits.market_specific[market].forEach((submarket) => { // submarket name could be (Commodities|Minor Pairs|Major Pairs|Smart FX|Stock Indices|Synthetic Indices) - appendRowTable(localize(submarket.name /* localize-ignore */), submarket.turnover_limit !== 'null' ? Currency.formatMoney(currency, submarket.turnover_limit, 1) : 0, '25px', 'normal'); + if (!(submarket.name === 'Forex' && submarket.level === 'market')) { + appendRowTable(submarket.name, submarket.turnover_limit !== 'null' ? Currency.formatMoney(currency, submarket.turnover_limit, 1) : 0, '25px', 'normal'); + } }); } }); + if (limits.market_specific.synthetic_index) { + appendRowTable(localize('Derived'), '', 'auto', 'bold'); + limits.market_specific.synthetic_index.forEach((submarket) => { + if (submarket.level !== 'submarket') { + appendRowTable(submarket.name, submarket.turnover_limit !== 'null' ? Currency.formatMoney(currency, submarket.turnover_limit, 1) : 0, '25px', 'normal'); + } + }); + } } else { const tr = findParent(getElementById('market_specific'), 'tr'); if (tr) { diff --git a/src/javascript/app/pages/user/account/settings/personal_details.js b/src/javascript/app/pages/user/account/settings/personal_details.js index 607d71ae04691..3dc6a1c28ad9e 100644 --- a/src/javascript/app/pages/user/account/settings/personal_details.js +++ b/src/javascript/app/pages/user/account/settings/personal_details.js @@ -317,7 +317,7 @@ const PersonalDetails = (() => { { selector: '#last_name', validations: ['req', 'letter_symbol', ['length', { min: 2, max: 50 }]] }, { selector: '#address_line_1', validations: ['req', 'address'] }, { selector: '#address_line_2', validations: ['address'] }, - { selector: '#address_city', validations: ['req', 'letter_symbol'] }, + { selector: '#address_city', validations: ['req', 'address_city'] }, { selector: '#address_state', validations: $('#address_state').prop('nodeName') === 'SELECT' ? '' : ['letter_symbol'] }, { selector: '#address_postcode', validations: [residence === 'gb' || Client.get('landing_company_shortcode') === 'iom' ? 'req' : '', 'postcode', ['length', { min: 0, max: 20 }]] }, { selector: '#email_consent' }, @@ -355,7 +355,7 @@ const PersonalDetails = (() => { const setDetailsResponse = (response) => { // allow user to resubmit the form on error. - const is_error = response.set_settings !== 1; + const is_error = response.error; if (!is_error) { // to update tax information message for financial clients BinarySocket.send({ get_account_status: 1 }, { forced: true }).then(() => { diff --git a/src/javascript/app/pages/user/accounts.js b/src/javascript/app/pages/user/accounts.js index a202e5ea5e414..616bc958a0a95 100644 --- a/src/javascript/app/pages/user/accounts.js +++ b/src/javascript/app/pages/user/accounts.js @@ -3,7 +3,7 @@ const SetCurrency = require('./set_currency'); const BinaryPjax = require('../../base/binary_pjax'); const Client = require('../../base/client'); const BinarySocket = require('../../base/socket'); -const AccountOpening = require('../../common/account_opening'); +const Header = require('../../base/header'); const showPopup = require('../../common/attach_dom/popup'); const Currency = require('../../common/currency'); const localize = require('../../../_common/localize').localize; @@ -129,17 +129,12 @@ const Accounts = (() => { }))) .append($('', { text: getAvailableMarkets(account), datath: table_headers.available_markets })) .append($('') - .html($( - '', - { - class: 'button', - href : AccountOpening.getSinupPageLink( - upgrade_info, - upgrade_info.can_upgrade_to[index] - ), - }, - ) - .html($('', { text: localize('Create account'), class: 'padding-x-30' }))))); + .html($(' + + + + + + +

+
+
+
+
+
+
+
+
+
+
+
+
+
    +
  • +
    + + +
  • +
+
    +
  • + + + +
  • +
  • English
  • +
  • Español
  • +
  • Indonesia
  • +
  • Português
  • +
+
+
+
+ +
+
+ + + + + +
+
+ + + +
+ +
+ + + + + + + + +
+
+
+ + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/css/binary.css b/src/root_files/_common/binary-to-deriv/css/binary.css new file mode 100644 index 0000000000000..e0cee63d2f384 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/binary.css @@ -0,0 +1 @@ +@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin,vietnamese,cyrillic-ext,latin-ext,cyrillic);body{font-family:roboto,sans-serif;font-size:18px;position:relative;min-height:100%;margin:0;padding:0;color:#000;background:#fff;background-repeat:repeat-x;background-position:bottom}i{font-style:italic}.primary-color{color:#2a3052}.primary-bg-color{background-color:#2a3052}.secondary-color{color:#e98024}.secondary-bg-color{background-color:#e98024}.primary-color-dark{color:#15212d}.primary-bg-color-dark{background-color:#15212d}.content-inverse-color,.content-inverse-color:visited{color:#fff}.fill-bg-color{background-color:#f2f2f2}.border-color{border-color:#dedede}ol,ul{list-style:none}ol li,ul li{line-height:1.4em;margin:.5em 0 0}ol li ol,ol li ul,ul li ol,ul li ul{margin:.8em 0 0 1em}ol,ul.bullet{margin:1.25em 0 1.25em 1.25em}ul.bullet>li{list-style-image:url("data:image/svg+xml;charset=utf8,%3Csvg width='18px' height='18px' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23e98024' d='M12,17.5A5.5,5.5,0,1,1,17.5,12,5.507,5.507,0,0,1,12,17.5Zm0-9A3.5,3.5,0,1,0,15.5,12,3.5,3.5,0,0,0,12,8.5Z'/%3E%3C/svg%3E")}ol li{list-style-type:decimal;list-style-image:none}img{vertical-align:middle;border:0}ul.checked>li{min-height:24px;padding-left:35px;background:url("data:image/svg+xml;charset=utf8,%3Csvg width='24px' height='24px' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%23e98024' points='8.308 22.298 0.399 14.39 3.934 10.854 8.308 15.228 20.066 3.47 23.601 7.005 8.308 22.298'/%3E%3C/svg%3E") no-repeat}.reset_ol{counter-reset:item}.reset_ol li{display:block}.reset_ol li:before{content:counters(item,".") ". ";counter-increment:item}.border-bottom{border-bottom:1px solid #dedede}.contract_error{background-color:#fef1cf!important}#header,.header,header{border-top:2px solid #2a3052;border-bottom:4px solid #e98024;background:#2a3052}#header a,.header a{color:#fff;text-decoration:none}#header #menu-top li.active a,.header #menu-top li.active a{color:#e98024}#footer #footer-regulatory a{font-size:10px}#footer a{font-size:13px;font-weight:400;color:#fff}.invisible{display:none!important}.center-text{text-align:center}.separator-line{margin-top:10px;margin-bottom:10px}.align-self-center{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.no-transition,.no-transition:after,.no-transition:before{transition:none!important}button{text-decoration:none;text-align:center;line-height:100%;text-transform:capitalize;padding:10px 25px;display:inline-block;font-weight:400;font-family:inherit;border-radius:4px;cursor:pointer;font-size:18px;border:0;background:#2e8836;color:#fff}button:active,button:hover{text-decoration:none}button:visited{color:#fff}button:active,button:hover{background-color:#14602b}button.button-secondary{background:#f2f2f2;color:#000}button.button-secondary:active,button.button-secondary:hover,button.button-secondary:visited{background-color:#dedede}.button{cursor:pointer;margin-bottom:.5em}.button span{text-decoration:none;text-align:center;line-height:100%;text-transform:capitalize;padding:10px 25px;display:inline-block;font-weight:400;font-family:inherit;border-radius:4px;overflow:visible;border:0;color:#fff;background:#2e8836}.button span:active,.button span:hover{text-decoration:none}.button span:hover{background-color:#14602b}.button span:visited{color:#fff}.button-secondary{cursor:pointer;margin-bottom:.5em}.button-secondary span{text-decoration:none;text-align:center;line-height:100%;text-transform:capitalize;padding:10px 25px;display:inline-block;font-weight:400;font-family:inherit;border-radius:4px;overflow:visible;border:0;color:#000;background:#f2f2f2}.button-secondary span:active,.button-secondary span:hover{text-decoration:none}.button-secondary span:hover{text-decoration:none;background:#dedede}.button-disabled{cursor:pointer;margin-bottom:.5em}.button-disabled span{text-decoration:none;text-align:center;line-height:100%;text-transform:capitalize;padding:10px 25px;display:inline-block;font-weight:400;font-family:inherit;border-radius:4px;overflow:visible;white-space:nowrap;border:0;color:#dedede;background:#f2f2f2;cursor:default}.button-disabled span:active,.button-disabled span:hover{text-decoration:none}.button-disabled span:active,.button-disabled span:hover{color:#dedede;background:#f2f2f2}a,h1,h2,h3,h4,li,p,span{text-rendering:optimizeLegibility}a,a:visited{color:#2a3052;text-decoration:none;font-weight:700}a:active,a:hover,a:visited:active,a:visited:hover{text-decoration:underline}p{margin:1em 0;line-height:1.4em}.font-n{font-size:18px}.font-s{font-size:13px}.font-xs{font-size:10px}h1{font-size:36px;font-weight:300;color:#e98024}h1 a{color:#e98024!important}h1.dark{color:#2a3052}h1.dark a{color:#2a3052!important}h2{font-size:28px;color:#e98024;font-weight:300}h2 a{color:#2a3052!important}h2 em{text-decoration:underline}h2.center{text-align:center;margin:1.25em auto}h3{color:#2a3052;font-size:22px;font-weight:300}h3 a{color:#2a3052!important}h4{color:#000;font-size:18px}h4 a{color:#000!important}input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;padding:2px 8px;border:1px solid #f2f2f2;color:#000;background:#fff;border-radius:4px}input:hover,select:hover,textarea:hover{border:1px solid #2a3052}input:active,input:focus,select:active,select:focus,textarea:active,textarea:focus{outline:0;border:1px solid #2a3052}select.select-hidden{height:0;visibility:hidden;pointer-events:none;padding-right:10px;position:relative}@media all and (max-width:480px){select.select-hidden{visibility:visible;pointer-events:auto;width:100%;height:auto;text-transform:capitalize}}div.select{cursor:pointer;display:inline-block;position:relative;max-width:100%;min-width:95px;width:inherit;height:28px;text-align:left}div.select:after{content:'';position:absolute}@media all and (max-width:480px){div.select{width:100%}div.select:after{content:'\002303';position:absolute;top:9px;right:5px;font-size:120%;background:#fff;height:20px;line-height:normal;color:#dedede;transition:transform .2s ease-in;transform-origin:50% 35%;transform:rotate(180deg)}}div.select-dropdown{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid #f2f2f2;border-radius:4px;background-color:#fff;padding:2px 8px;white-space:nowrap;line-height:1.2em;text-transform:capitalize;vertical-align:middle}div.select-dropdown span{position:absolute;white-space:nowrap;text-overflow:ellipsis;width:calc(100% - 24px);overflow:hidden;pointer-events:none}div.select-dropdown:after{content:'\002303';position:absolute;color:#dedede;top:6px;right:4px;transition:transform .2s ease-in;transform-origin:50% 35%;transform:rotate(180deg)}div.select-dropdown:hover{border:1px solid #2a3052}div.select-dropdown:focus{outline:0;border:1px solid #2a3052}div.select-dropdown.show{border:1px solid #2a3052}div.select-dropdown.show:after{transform:rotate(0)}@media all and (max-width:480px){div.select-dropdown{display:none}}div.select-dropdown.show~ul.select-options{transform:scale(1,1);opacity:1;pointer-events:auto}ul.select-options{pointer-events:none;position:absolute;top:100%;right:0;left:0;z-index:999;margin:4px 0 0;padding:0;list-style:none;background-color:#fff;border:1px solid #f2f2f2;transition:transform .25s,opacity .25s;transform-origin:top;transform:scale(1,0);opacity:0;max-height:190px;border-radius:4px;box-shadow:0 0 2px 1px #f2f2f2;overflow-y:auto;overflow-x:hidden}ul.select-options li.select-items{margin:0;padding:3px 4px 3px 8px;display:block;font-size:inherit;text-transform:capitalize}ul.select-options li.select-items.label{cursor:default;font-size:85%;padding:3px 6px;color:#e98024;background-color:#fff}ul.select-options li.select-items.selected{color:#fff;background-color:#2a3052}ul.select-options li.select-items:not(.selected):not(.disabled):not(.label):hover{background-color:#f2f2f2}ul.select-options li.select-items:not(.selected):not(.disabled):not(.label).active{background-color:#f2f2f2}ul.select-options li.select-items:not(.selected):not(.disabled):not(.label):focus{background-color:#f2f2f2}ul.select-options li.select-items.disabled{color:#dedede;background:#fff}input[type=radio]:checked,input[type=radio]:not(:checked){position:absolute;opacity:0}input[type=radio]:checked+label,input[type=radio]:not(:checked)+label{position:relative;padding-left:22px;cursor:pointer;line-height:1em;display:inline-block}input[type=radio]:checked+label:before,input[type=radio]:not(:checked)+label:before{content:'';position:absolute;left:0;top:0;width:16px;height:16px;border:1px solid #dedede;border-radius:100%;background:#fff}input[type=radio]:checked+label:after,input[type=radio]:not(:checked)+label:after{content:'';width:10px;height:10px;background:#2a3052;position:absolute;top:4px;left:4px;border-radius:100%;transition:all .2s ease}input[type=radio]:checked+label:active:before,input[type=radio]:checked+label:focus:before,input[type=radio]:checked+label:hover:before,input[type=radio]:not(:checked)+label:active:before,input[type=radio]:not(:checked)+label:focus:before,input[type=radio]:not(:checked)+label:hover:before{border:1px solid #2a3052}input[type=radio]:not(:checked)+label:after{opacity:0;transform:scale(0)}input[type=radio]:checked+label:before{border:1px solid #2a3052}input[type=radio]:checked+label:after{opacity:1;transform:scale(1)}input[type=checkbox]{position:absolute;opacity:0}input[type=checkbox]+label{position:relative;cursor:pointer;font-size:inherit}input[type=checkbox]+label:before{line-height:1em;content:url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EArtboard%3C/title%3E%3Cpath d='M2 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z' fill='%23DEDEDE' fill-rule='nonzero'/%3E%3C/svg%3E");display:inline-block;vertical-align:middle;margin-right:5px;width:16px;height:16px;border-radius:4px}input[type=checkbox]:checked+label:before{content:url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EArtboard%3C/title%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M2 0h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z' fill='%232A3052'/%3E%3Cpath d='M4.854 8.144a.5.5 0 1 0-.708.706l2 2.003a.5.5 0 0 0 .708 0l5-5a.5.5 0 0 0-.708-.707L6.5 9.793l-1.646-1.65z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E")}input[type=checkbox]:not(:checked):focus+label:before,input[type=checkbox]:not(:checked):hover+label:before{content:url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EArtboard%3C/title%3E%3Cpath d='M2 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm0-1h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z' fill='%232A3052' fill-rule='nonzero'/%3E%3C/svg%3E")}fieldset{border:1px solid #f2f2f2}.hint{font-size:13px;color:#000;margin-top:3px}::-webkit-input-placeholder{color:#c2c2c2}::-moz-placeholder{color:#c2c2c2}:-ms-input-placeholder{color:#c2c2c2}:-moz-placeholder{color:#c2c2c2}.ui-widget-content .ui-state-default.ui-selectmenu-button{font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;border:1px solid #f2f2f2;color:#000;background:#fff;border-radius:4px}.error-msg{font-style:italic;font-size:13px;color:#c03}.notice-msg{color:#000;background-color:#fef1cf;padding:10px;overflow:hidden}#topbar,.topbar{width:100%;line-height:1;font-size:70%;text-align:right;padding:3px 0;z-index:2;min-height:20px}#topbar .languages,.topbar .languages{position:relative}#topbar #select_language,.topbar #select_language{opacity:0;visibility:hidden;background-color:#f2f2f2;border:1px solid #dedede;color:#000;position:absolute;right:0}#topbar #select_language .nav-caret,.topbar #select_language .nav-caret{color:#000}#topbar #select_language li:nth-child(2),.topbar #select_language li:nth-child(2){margin-top:2px;padding:3px}#topbar #select_language li:first-child,.topbar #select_language li:first-child{padding-top:3px}#topbar #display_language,.topbar #display_language{border:1px solid transparent;color:#fff;height:18px}#topbar #display_language .nav-caret,.topbar #display_language .nav-caret{color:#fff}#topbar #display_language li:first-child,.topbar #display_language li:first-child{margin:0;padding:0}#topbar #display_language,#topbar #select_language,.topbar #display_language,.topbar #select_language{float:right;text-align:center;padding:0;margin:0;width:116px;font-size:13px}#topbar #display_language li,#topbar #select_language li,.topbar #display_language li,.topbar #select_language li{cursor:pointer;margin:2px;padding:3px}#topbar #display_language li:first-child,#topbar #select_language li:first-child,.topbar #display_language li:first-child,.topbar #select_language li:first-child{display:inline-block;margin:0}#topbar .language-wrapper,.topbar .language-wrapper{vertical-align:middle;padding:0 5px;display:-ms-inline-flexbox;display:inline-flex;min-width:58px;margin:0 auto}#topbar .language,.topbar .language{margin:0 auto}#topbar .nav-caret,.topbar .nav-caret{vertical-align:middle;margin-right:9px}#topbar .world,.topbar .world{width:16px;height:16px;display:inline-block;vertical-align:middle}#topbar .world-white,.topbar .world-white{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='white' fill-rule='evenodd' d='M7.992,0 C3.576,0 0,3.584 0,8 C0,12.416 3.576,16 7.992,16 C12.416,16 16,12.416 16,8 C16,3.584 12.416,0 7.992,0 L7.992,0 Z M13.536,4.8 L11.176,4.8 C10.92,3.8 10.552,2.84 10.072,1.952 C11.544,2.456 12.768,3.48 13.536,4.8 L13.536,4.8 Z M8,1.632 C8.664,2.592 9.184,3.656 9.528,4.8 L6.472,4.8 C6.816,3.656 7.336,2.592 8,1.632 L8,1.632 Z M1.808,9.6 C1.68,9.088 1.6,8.552 1.6,8 C1.6,7.448 1.68,6.912 1.808,6.4 L4.512,6.4 C4.448,6.928 4.4,7.456 4.4,8 C4.4,8.544 4.448,9.072 4.512,9.6 L1.808,9.6 L1.808,9.6 Z M2.464,11.2 L4.824,11.2 C5.08,12.2 5.448,13.16 5.928,14.048 C4.456,13.544 3.232,12.528 2.464,11.2 L2.464,11.2 Z M4.824,4.8 L2.464,4.8 C3.232,3.472 4.456,2.456 5.928,1.952 C5.448,2.84 5.08,3.8 4.824,4.8 L4.824,4.8 Z M8,14.368 C7.336,13.408 6.816,12.344 6.472,11.2 L9.528,11.2 C9.184,12.344 8.664,13.408 8,14.368 L8,14.368 Z M9.872,9.6 L6.128,9.6 C6.056,9.072 6,8.544 6,8 C6,7.456 6.056,6.92 6.128,6.4 L9.872,6.4 C9.944,6.92 10,7.456 10,8 C10,8.544 9.944,9.072 9.872,9.6 L9.872,9.6 Z M10.072,14.048 C10.552,13.16 10.92,12.2 11.176,11.2 L13.536,11.2 C12.768,12.52 11.544,13.544 10.072,14.048 L10.072,14.048 Z M11.488,9.6 C11.552,9.072 11.6,8.544 11.6,8 C11.6,7.456 11.552,6.928 11.488,6.4 L14.192,6.4 C14.32,6.912 14.4,7.448 14.4,8 C14.4,8.552 14.32,9.088 14.192,9.6 L11.488,9.6 L11.488,9.6 Z'/%3E%3C/svg%3E")}#topbar .world-black,.topbar .world-black{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='black' fill-rule='evenodd' d='M7.992,0 C3.576,0 0,3.584 0,8 C0,12.416 3.576,16 7.992,16 C12.416,16 16,12.416 16,8 C16,3.584 12.416,0 7.992,0 L7.992,0 Z M13.536,4.8 L11.176,4.8 C10.92,3.8 10.552,2.84 10.072,1.952 C11.544,2.456 12.768,3.48 13.536,4.8 L13.536,4.8 Z M8,1.632 C8.664,2.592 9.184,3.656 9.528,4.8 L6.472,4.8 C6.816,3.656 7.336,2.592 8,1.632 L8,1.632 Z M1.808,9.6 C1.68,9.088 1.6,8.552 1.6,8 C1.6,7.448 1.68,6.912 1.808,6.4 L4.512,6.4 C4.448,6.928 4.4,7.456 4.4,8 C4.4,8.544 4.448,9.072 4.512,9.6 L1.808,9.6 L1.808,9.6 Z M2.464,11.2 L4.824,11.2 C5.08,12.2 5.448,13.16 5.928,14.048 C4.456,13.544 3.232,12.528 2.464,11.2 L2.464,11.2 Z M4.824,4.8 L2.464,4.8 C3.232,3.472 4.456,2.456 5.928,1.952 C5.448,2.84 5.08,3.8 4.824,4.8 L4.824,4.8 Z M8,14.368 C7.336,13.408 6.816,12.344 6.472,11.2 L9.528,11.2 C9.184,12.344 8.664,13.408 8,14.368 L8,14.368 Z M9.872,9.6 L6.128,9.6 C6.056,9.072 6,8.544 6,8 C6,7.456 6.056,6.92 6.128,6.4 L9.872,6.4 C9.944,6.92 10,7.456 10,8 C10,8.544 9.944,9.072 9.872,9.6 L9.872,9.6 Z M10.072,14.048 C10.552,13.16 10.92,12.2 11.176,11.2 L13.536,11.2 C12.768,12.52 11.544,13.544 10.072,14.048 L10.072,14.048 Z M11.488,9.6 C11.552,9.072 11.6,8.544 11.6,8 C11.6,7.456 11.552,6.928 11.488,6.4 L14.192,6.4 C14.32,6.912 14.4,7.448 14.4,8 C14.4,8.552 14.32,9.088 14.192,9.6 L11.488,9.6 L11.488,9.6 Z'/%3E%3C/svg%3E")}body .topbar{padding:0 11px}#topbar,#topbar a,.topbar,.topbar a{color:#fff}#topbar a:hover,#topbar:hover,.topbar a:hover,.topbar:hover{text-decoration:none}.logo-wrapper{display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.logo-wrapper .binary-logo-text>div{width:135px}.logo-wrapper .binary-logo-text img.responsive{width:80%;margin-top:10px}.logo-wrapper .logo-parent{display:-ms-inline-flexbox;display:inline-flex}.logo-wrapper .logo-parent .logo{width:55px;height:55px}.logo-parent{padding:10px 0}.logo{display:inline-block;width:24%}.logo>div{width:100%;height:55px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 46 46'%3E%3Cpath fill='%23fff' d='M39.057 6.937C30.2-1.926 15.792-1.926 6.934 6.934c-8.856 8.857-8.856 23.273 0 32.132 8.858 8.86 23.27 8.86 32.123-.002 8.87-8.857 8.87-23.273 0-32.127z'/%3E%3Cg fill='%23293152'%3E%3Cpath d='M16.666 28.957s.26 1.95 1.9 2.852l-.436-.815s.835-2.192-1.464-2.038zM37.908 8.085c-8.225-8.23-21.6-8.23-29.823-.002-8.223 8.226-8.223 21.608 0 29.834s21.603 8.224 29.823 0c8.233-8.226 8.233-21.608 0-29.832zm-2.18 27.648c-.23.228-.454.446-.688.656-5.066 4.13-8.97 2.074-9.014 2.074-2.645-.528-3.958-.537-4.7-1.033-.186-.124-.785-.445-.92-.368-.54.322-1.283.486-2.048-.12-.07-.058-.13-.117-.192-.174-.84-.84-.554-1.706-.275-2.006.194-.197-.147-.75-.147-.75s-.993-1.477-1.672-2.364c-.746-.975-.847-2.908-.856-2.933l-.01-.028c-.755-.897-.834-1.173-1.095-1.61-.153-.258-.387-.5-.585-.708-.136-.14-.263-.268-.35-.388-.022-.026-.026-.064-.018-.124.067-.42.97-1.342 1.163-1.47.238-.155 1.264-.778 1.264-.778s.578-.906 1.56-.906c.885.003 1.426-.05 2.953.447l.636.202c1.065.342 2.003.744 2.75 1.066.633.273 1.14.493 1.527.594 1.316.348 3.64-.718 4.13-1.17.806-.73 1.15-1.22 1.155-1.623.008-.227-.092-.423-.32-.66-.117-.11-.27-.313-.463-.507-.03-.03-.063-.066-.102-.094-2.23-2.37-1.844-3.855-1.84-3.88.094-1.065-.516-1.748-1.172-2.457l-.11-.133c-.034-.032-.075-.086-.075-.086.95.156 1.596.538 3.45.744 1.056.113.722.104 1.564.082 1.16-.037 2.08-.14 2.143-.402-.113-.096-.627.03-3.09-.912-1.14-.438-1.318-.502-2.045-.743-.932-.314-1.94-.75-1.94-.75 4.017 1.054 5.33 1.466 7.17 1.492.708.013 1.132-.073 1.38-.124.262-.046 1.072-.23 1.166-.51.028-.05-.778.13-2.27-.36-4.687-1.55-5.087-2.325-7.687-3.336-.904-.352-1.2-.546-3.94-1.252-1.254-.32-3.15-.138-3.407.024-3.556-.835-4.363-.743-5.406-.52 6.955-4.46 16.347-3.656 22.43 2.43.825.825 1.556 1.714 2.196 2.655l.084.13c1.953 2.923 2.994 6.353 2.994 9.945-.002 4.816-1.875 9.334-5.275 12.738zM23.922 15.405c1.765.63 2.332 2.51 2.332 2.51-2.242.51-1.77-1.78-1.77-1.78l-.56-.73z'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:contain}.binary-logo-text{display:inline-block;padding:0 10px}.binary-logo-text>div{width:90%;height:55px;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='46' viewBox='0 0 192.48 51.03'%3E%3Cpath fill='%23fff' d='M44.46,7.15a7.15,7.15,0,0,0-2.12.29,7.06,7.06,0,0,0-1.72.79,7.18,7.18,0,0,0-1.37,1.14l-.3.33V7.55H33.71V27.42h5.23V16.29A4.46,4.46,0,0,1,40,13.1,3.61,3.61,0,0,1,42.78,12a3.31,3.31,0,0,1,2.67,1.06,4.69,4.69,0,0,1,1,3.16V27.42h5.24V14.89a8.16,8.16,0,0,0-1.87-5.61A6.74,6.74,0,0,0,44.46,7.15Z'/%3E%3Cpath fill='%23fff' d='M63.75,7.3a16.55,16.55,0,0,0-4.11.44,20.87,20.87,0,0,0-3.31,1.18L56,9.08l1.45,4.28.41-.17a19.25,19.25,0,0,1,2.5-.85A11.25,11.25,0,0,1,63.14,12a4.78,4.78,0,0,1,3.2.95,3.25,3.25,0,0,1,1.06,2.51,18.61,18.61,0,0,0-1.84-.43,17.45,17.45,0,0,0-3-.22,12.37,12.37,0,0,0-3.18.39,7.41,7.41,0,0,0-2.6,1.23A5.81,5.81,0,0,0,55,18.54a6.63,6.63,0,0,0-.62,2.94v.07a6,6,0,0,0,.6,2.73,5.84,5.84,0,0,0,1.59,2,6.83,6.83,0,0,0,2.28,1.19,9.26,9.26,0,0,0,2.72.4A8.29,8.29,0,0,0,65.49,27a9.17,9.17,0,0,0,1.88-1.29v1.73h5.16V15.76a8.56,8.56,0,0,0-2.18-6.22C68.91,8,66.69,7.3,63.75,7.3Zm-.9,16.44a4.18,4.18,0,0,1-2.39-.65,2,2,0,0,1-.87-1.74v-.07a2.08,2.08,0,0,1,1-1.82,5.25,5.25,0,0,1,3-.72,12.61,12.61,0,0,1,2.32.2,12,12,0,0,1,1.63.42v.79a3.18,3.18,0,0,1-.33,1.45,3.42,3.42,0,0,1-.95,1.12,5,5,0,0,1-1.48.75A6.35,6.35,0,0,1,62.85,23.74Z'/%3E%3Cpath fill='%23fff' d='M99.49,20.89,94.38,7.55H88.82L96.93,27a3.7,3.7,0,0,1-1,1.4,2.06,2.06,0,0,1-1.3.39,4.06,4.06,0,0,1-1.19-.18,7,7,0,0,1-1.17-.49l-.39-.21-1.82,4,.34.18a10.82,10.82,0,0,0,2.15.88,9.42,9.42,0,0,0,2.55.32A7.27,7.27,0,0,0,97.32,33a5.48,5.48,0,0,0,1.8-1,7,7,0,0,0,1.46-1.74,16.78,16.78,0,0,0,1.22-2.55l7.79-20.15h-5.45Z'/%3E%3Cpath fill='%23e78024' d='M133.64,21a10,10,0,0,1-2.13,1.65,5.38,5.38,0,0,1-4.65.17,5.3,5.3,0,0,1-1.67-1.22,5.48,5.48,0,0,1-1.09-1.81,6.47,6.47,0,0,1-.38-2.23v-.07a6.31,6.31,0,0,1,.38-2.2,5.61,5.61,0,0,1,1.06-1.8,5.14,5.14,0,0,1,1.6-1.2,4.62,4.62,0,0,1,2-.44,5.06,5.06,0,0,1,2.58.61,9.86,9.86,0,0,1,2.06,1.64l.31.32L137,10.86l-.26-.28a11.06,11.06,0,0,0-3.24-2.47,10.67,10.67,0,0,0-12.07,2.12,10.27,10.27,0,0,0-2.16,3.31,10.56,10.56,0,0,0-.78,4v.07a10.47,10.47,0,0,0,.78,4,10.09,10.09,0,0,0,2.16,3.27,10.29,10.29,0,0,0,7.36,3,9.92,9.92,0,0,0,4.78-1,12.46,12.46,0,0,0,3.32-2.67l.27-.29-3.22-3.16Z'/%3E%3Cpath fill='%23e78024' d='M156.88,10.18A10.2,10.2,0,0,0,153.54,8a10.84,10.84,0,0,0-4.22-.81A10.7,10.7,0,0,0,145.1,8a10.37,10.37,0,0,0-5.56,5.52,10.12,10.12,0,0,0-.81,4v.07a10.32,10.32,0,0,0,.79,4,10,10,0,0,0,2.21,3.27,10.49,10.49,0,0,0,3.34,2.2,11.24,11.24,0,0,0,8.41,0,10.28,10.28,0,0,0,5.57-5.52,10,10,0,0,0,.81-4v-.07a10.12,10.12,0,0,0-3-7.27Zm-7.56,13.05a5.06,5.06,0,0,1-2.14-.45,5.39,5.39,0,0,1-1.7-1.24,6,6,0,0,1-1.12-1.82,6.08,6.08,0,0,1-.4-2.21v-.07a6.63,6.63,0,0,1,.37-2.2,5.14,5.14,0,0,1,1.06-1.78,5.26,5.26,0,0,1,1.68-1.2,5.5,5.5,0,0,1,4.35,0,5.31,5.31,0,0,1,1.7,1.22,5.57,5.57,0,0,1,1.11,1.81,6.23,6.23,0,0,1,.4,2.23v.07a6.44,6.44,0,0,1-.37,2.18,5.49,5.49,0,0,1-1.06,1.79,5.32,5.32,0,0,1-1.67,1.22A5.26,5.26,0,0,1,149.32,23.24Z'/%3E%3Cpath fill='%23e78024' d='M190.59,9.18a6.83,6.83,0,0,0-5.22-2,7.68,7.68,0,0,0-3.95,1A9.81,9.81,0,0,0,179,10.21a6.43,6.43,0,0,0-2-2.06,6.6,6.6,0,0,0-3.69-1,7,7,0,0,0-2.08.29,6.26,6.26,0,0,0-1.69.8,7.54,7.54,0,0,0-1.31,1.11l-.28.32V7.55h-5.23V27.42h5.23V16.32a4.7,4.7,0,0,1,1-3.21A3.32,3.32,0,0,1,171.53,12,3.09,3.09,0,0,1,174,13a4.75,4.75,0,0,1,.91,3.15V27.42h5.23V16.29a4.56,4.56,0,0,1,1-3.22A3.39,3.39,0,0,1,183.83,12a3.09,3.09,0,0,1,2.51,1,4.86,4.86,0,0,1,.91,3.19V27.42h5.23V14.85A8,8,0,0,0,190.59,9.18Z'/%3E%3Crect fill='%23fff' x='25.69' y='7.55' width='5.24' height='19.87'/%3E%3Cpath fill='%23fff' d='M31.21,2.9a2.9,2.9,0,1,0-2.9,2.9A2.9,2.9,0,0,0,31.21,2.9Z'/%3E%3Cpath fill='%23e78024' d='M116,25a2.9,2.9,0,1,0-2.89,2.9A2.9,2.9,0,0,0,116,25Z'/%3E%3Cpath fill='%23fff' d='M21.35,15.29a7.49,7.49,0,0,0-1.74-1.38,13.76,13.76,0,0,0-1.35-.66L18,13.12l.27-.17c.23-.14.45-.31.67-.48a6.26,6.26,0,0,0,1.28-1.31,6.51,6.51,0,0,0,.88-1.72,6.92,6.92,0,0,0,.34-2.26V7.11a6.33,6.33,0,0,0-1.89-4.65C17.88.83,15.46,0,12.31,0H0V27.42H12.69a16.26,16.26,0,0,0,4.13-.49,9.88,9.88,0,0,0,3.23-1.44,6.73,6.73,0,0,0,2.1-2.4,7.27,7.27,0,0,0,.74-3.32V19.7a7.15,7.15,0,0,0-.4-2.51A5.58,5.58,0,0,0,21.35,15.29ZM5.24,11.16V4.74h6.5a5.52,5.52,0,0,1,3.33.84,2.67,2.67,0,0,1,1.09,2.29V8a2.76,2.76,0,0,1-1.25,2.51,6.33,6.33,0,0,1-3.52.86H5.24Zm12.42,8.12a2.82,2.82,0,0,1-1.26,2.53,6.52,6.52,0,0,1-3.63.87H5.24V15.87h7.19a7.14,7.14,0,0,1,4,.9,2.77,2.77,0,0,1,1.25,2.44Z'/%3E%3Cpath fill='%23fff' d='M86.9,7.19a6.53,6.53,0,0,0-4.46,1.28,8.18,8.18,0,0,0-1.88,2.08v-3H75.33V27.42h5.24V19.76A10.11,10.11,0,0,1,81,16.59a6.05,6.05,0,0,1,1.24-2.21,5.16,5.16,0,0,1,1.91-1.3,6.72,6.72,0,0,1,2.48-.44h.64V7.21Z'/%3E%3Cpath fill='%23fff' d='M1.51,47.93,3.46,38.6H0l.25-1.2H8.54l-.25,1.2H4.87L2.92,47.93Z'/%3E%3Cpath fill='%23fff' d='M6.55,47.93l1.6-7.63H9.3L9,41.86a5.31,5.31,0,0,1,1.15-1.31,1.9,1.9,0,0,1,1.15-.42,2.26,2.26,0,0,1,1,.28l-.53,1.21a1.24,1.24,0,0,0-.74-.24,2,2,0,0,0-1.4.76,5.79,5.79,0,0,0-1.13,2.74l-.65,3.06Z'/%3E%3Cpath fill='%23fff' d='M16.67,46.55a3.84,3.84,0,0,1-2.81,1.55,2,2,0,0,1-1.43-.51,1.63,1.63,0,0,1-.54-1.24,9.47,9.47,0,0,1,.24-1.65l.92-4.41h1.3l-1,4.88a4.92,4.92,0,0,0-.13.95.87.87,0,0,0,.26.67,1.11,1.11,0,0,0,.77.24,2.32,2.32,0,0,0,1.07-.27,2.84,2.84,0,0,0,.9-.72A3.76,3.76,0,0,0,16.82,45a9.51,9.51,0,0,0,.37-1.39l.69-3.3h1.3l-1.6,7.63h-1.2Z'/%3E%3Cpath fill='%23fff' d='M19.76,45.32l1.3-.08a2.38,2.38,0,0,0,.17,1,1.37,1.37,0,0,0,.64.65A2.23,2.23,0,0,0,23,47.1a2,2,0,0,0,1.29-.34,1,1,0,0,0,.43-.81,1,1,0,0,0-.26-.64,4.09,4.09,0,0,0-1.3-.74,12.35,12.35,0,0,1-1.32-.62,2.13,2.13,0,0,1-.73-.69,1.72,1.72,0,0,1-.24-.92,2,2,0,0,1,.72-1.55,2.9,2.9,0,0,1,2-.65,3.2,3.2,0,0,1,2.19.66,2.31,2.31,0,0,1,.78,1.75l-1.27.09a1.46,1.46,0,0,0-.49-1.09,1.91,1.91,0,0,0-1.3-.4,1.6,1.6,0,0,0-1,.31.87.87,0,0,0-.37.67.81.81,0,0,0,.32.63,5.41,5.41,0,0,0,1.11.57,7.49,7.49,0,0,1,1.88,1A1.94,1.94,0,0,1,26,45.79a2,2,0,0,1-.35,1.11,2.4,2.4,0,0,1-1.06.87,4,4,0,0,1-1.69.33,3.8,3.8,0,0,1-2.25-.65A2.32,2.32,0,0,1,19.76,45.32Z'/%3E%3Cpath fill='%23fff' d='M30,46.87l-.22,1.06a3.57,3.57,0,0,1-.91.12,1.88,1.88,0,0,1-1.24-.38,1,1,0,0,1-.34-.78,7.86,7.86,0,0,1,.19-1.16l.93-4.43h-1l.21-1h1l.4-1.88,1.49-.9L30,40.3h1.28l-.22,1H29.75l-.88,4.22a7.9,7.9,0,0,0-.17,1,.45.45,0,0,0,.13.35.63.63,0,0,0,.43.12A3.12,3.12,0,0,0,30,46.87Z'/%3E%3Cpath fill='%23fff' d='M36.69,45.34l1.26.13a3.83,3.83,0,0,1-1.25,1.79,3.46,3.46,0,0,1-2.34.85,3.16,3.16,0,0,1-1.56-.39,2.57,2.57,0,0,1-1.08-1.14,3.79,3.79,0,0,1-.37-1.7,5.43,5.43,0,0,1,.58-2.43,4.13,4.13,0,0,1,1.5-1.75,3.7,3.7,0,0,1,2-.57,2.89,2.89,0,0,1,2.18.85,3.2,3.2,0,0,1,.82,2.31,6.83,6.83,0,0,1-.1,1.15H32.71a3.17,3.17,0,0,0,0,.4,2.42,2.42,0,0,0,.49,1.63,1.54,1.54,0,0,0,1.2.56,2.32,2.32,0,0,0,1.32-.44A2.85,2.85,0,0,0,36.69,45.34Zm-3.78-1.89H37.2q0-.2,0-.29a2.11,2.11,0,0,0-.49-1.5,1.65,1.65,0,0,0-1.26-.52,2.31,2.31,0,0,0-1.52.57A3.45,3.45,0,0,0,32.91,43.45Z'/%3E%3Cpath fill='%23fff' d='M44.42,46.82a3.14,3.14,0,0,1-2.33,1.28,2.33,2.33,0,0,1-1.81-.8A3.36,3.36,0,0,1,39.56,45a5.66,5.66,0,0,1,.57-2.55,4.32,4.32,0,0,1,1.43-1.73,3.07,3.07,0,0,1,1.72-.57,2.31,2.31,0,0,1,2.15,1.37l.86-4.1h1.29l-2.2,10.54h-1.2Zm-3.56-2.09A4,4,0,0,0,41,46a1.65,1.65,0,0,0,.54.77,1.41,1.41,0,0,0,.91.31,2,2,0,0,0,1.6-.92,4.72,4.72,0,0,0,1-3,2,2,0,0,0-.47-1.42,1.56,1.56,0,0,0-1.19-.51,1.76,1.76,0,0,0-.85.21,2.49,2.49,0,0,0-.76.71,4.45,4.45,0,0,0-.64,1.27A4.32,4.32,0,0,0,40.85,44.73Z'/%3E%3Cpath fill='%23fff' d='M51.55,47.93l2.2-10.54H55l-.78,3.77a4.61,4.61,0,0,1,1.12-.8,2.46,2.46,0,0,1,1-.23,2.3,2.3,0,0,1,1.79.8,3.37,3.37,0,0,1,.72,2.32,5.7,5.7,0,0,1-.29,1.85,5.15,5.15,0,0,1-.71,1.41,4.46,4.46,0,0,1-.88.91,3.48,3.48,0,0,1-.93.51,2.72,2.72,0,0,1-.91.17,2.27,2.27,0,0,1-1.33-.4,2.58,2.58,0,0,1-.9-1.22l-.3,1.44Zm1.93-3.13V45a2.13,2.13,0,0,0,.47,1.49A1.51,1.51,0,0,0,55.1,47a1.91,1.91,0,0,0,1.25-.48,3.41,3.41,0,0,0,.94-1.49,5.53,5.53,0,0,0,.37-1.87,2.2,2.2,0,0,0-.46-1.49A1.46,1.46,0,0,0,56,41.18a1.87,1.87,0,0,0-1.29.54,4.06,4.06,0,0,0-1,1.67A4.43,4.43,0,0,0,53.47,44.8Z'/%3E%3Cpath fill='%23fff' d='M59.25,50.88l.08-1.22a2.85,2.85,0,0,0,.78.11,1.05,1.05,0,0,0,.64-.18,3,3,0,0,0,.69-.89l.42-.75L60.58,40.3h1.28l.57,3.86q.17,1.14.29,2.29l3.41-6.14H67.5l-4.87,8.65a5.53,5.53,0,0,1-1.25,1.67,2,2,0,0,1-1.26.41A2.66,2.66,0,0,1,59.25,50.88Z'/%3E%3Cpath fill='%23fff' d='M74.22,46.87,74,47.94a3.57,3.57,0,0,1-.91.12,1.88,1.88,0,0,1-1.24-.38,1,1,0,0,1-.34-.78,7.86,7.86,0,0,1,.19-1.16l.93-4.43h-1l.21-1h1l.4-1.88,1.49-.9-.58,2.77h1.28l-.22,1H73.93l-.88,4.22a7.9,7.9,0,0,0-.17,1,.45.45,0,0,0,.13.35.63.63,0,0,0,.43.12A3.12,3.12,0,0,0,74.22,46.87Z'/%3E%3Cpath fill='%23fff' d='M75.27,47.93l1.6-7.63H78l-.32,1.56a5.31,5.31,0,0,1,1.15-1.31A1.9,1.9,0,0,1,80,40.13a2.26,2.26,0,0,1,1,.28l-.53,1.21a1.24,1.24,0,0,0-.74-.24,2,2,0,0,0-1.4.76,5.79,5.79,0,0,0-1.13,2.74l-.65,3.06Z'/%3E%3Cpath fill='%23fff' d='M85.32,47a5.17,5.17,0,0,1-1.3.85,3.34,3.34,0,0,1-1.34.27,2.35,2.35,0,0,1-1.7-.62,2.11,2.11,0,0,1-.65-1.59,2.18,2.18,0,0,1,.29-1.13,2.28,2.28,0,0,1,.77-.79,3.4,3.4,0,0,1,1.18-.43,13.16,13.16,0,0,1,1.66-.14A6,6,0,0,0,86,43.14a3.36,3.36,0,0,0,.15-.88.85.85,0,0,0-.33-.71,2.09,2.09,0,0,0-1.32-.36,2.29,2.29,0,0,0-1.34.36,2,2,0,0,0-.76,1l-1.32-.11a3.43,3.43,0,0,1,1.28-1.74,3.79,3.79,0,0,1,2.2-.6,3.44,3.44,0,0,1,2.24.68,1.59,1.59,0,0,1,.63,1.31,6.6,6.6,0,0,1-.18,1.42l-.42,1.9a7.11,7.11,0,0,0-.2,1.47,4.93,4.93,0,0,0,.16,1H85.47A4.8,4.8,0,0,1,85.32,47Zm.48-2.92a3.14,3.14,0,0,1-.59.17q-.31.06-1,.12a8,8,0,0,0-1.6.26,1.34,1.34,0,0,0-.7.49,1.27,1.27,0,0,0-.24.75,1.17,1.17,0,0,0,.38.9,1.52,1.52,0,0,0,1.07.35,2.54,2.54,0,0,0,2.18-1.29A5.53,5.53,0,0,0,85.8,44.06Z'/%3E%3Cpath fill='%23fff' d='M93.5,46.82a3.14,3.14,0,0,1-2.33,1.28,2.33,2.33,0,0,1-1.81-.8A3.36,3.36,0,0,1,88.64,45a5.66,5.66,0,0,1,.57-2.55,4.32,4.32,0,0,1,1.43-1.73,3.07,3.07,0,0,1,1.72-.57,2.31,2.31,0,0,1,2.15,1.37l.86-4.1h1.29l-2.2,10.54h-1.2Zm-3.56-2.09A4,4,0,0,0,90.1,46a1.65,1.65,0,0,0,.54.77,1.41,1.41,0,0,0,.91.31,2,2,0,0,0,1.6-.92,4.72,4.72,0,0,0,1-3,2,2,0,0,0-.47-1.42,1.56,1.56,0,0,0-1.19-.51,1.76,1.76,0,0,0-.85.21,2.49,2.49,0,0,0-.76.71,4.45,4.45,0,0,0-.64,1.27A4.32,4.32,0,0,0,89.94,44.73Z'/%3E%3Cpath fill='%23fff' d='M102.15,45.34l1.26.13a3.83,3.83,0,0,1-1.25,1.79,3.46,3.46,0,0,1-2.34.85,3.16,3.16,0,0,1-1.56-.39,2.57,2.57,0,0,1-1.08-1.14,3.79,3.79,0,0,1-.37-1.7,5.43,5.43,0,0,1,.58-2.43,4.13,4.13,0,0,1,1.5-1.75,3.7,3.7,0,0,1,2-.57,2.89,2.89,0,0,1,2.18.85,3.2,3.2,0,0,1,.82,2.31,6.83,6.83,0,0,1-.1,1.15H98.16a3.17,3.17,0,0,0,0,.4,2.42,2.42,0,0,0,.49,1.63,1.54,1.54,0,0,0,1.2.56,2.32,2.32,0,0,0,1.32-.44A2.85,2.85,0,0,0,102.15,45.34Zm-3.78-1.89h4.28q0-.2,0-.29a2.11,2.11,0,0,0-.49-1.5,1.65,1.65,0,0,0-1.26-.52,2.31,2.31,0,0,0-1.52.57A3.45,3.45,0,0,0,98.37,43.45Z'/%3E%3Cpath fill='%23fff' d='M104.73,47.93l1.6-7.63h1.15l-.32,1.56a5.31,5.31,0,0,1,1.15-1.31,1.9,1.9,0,0,1,1.15-.42,2.26,2.26,0,0,1,1,.28l-.53,1.21a1.24,1.24,0,0,0-.74-.24,2,2,0,0,0-1.4.76,5.79,5.79,0,0,0-1.13,2.74L106,47.93Z'/%3E%3Cpath fill='%23fff' d='M109.75,45.32l1.3-.08a2.38,2.38,0,0,0,.17,1,1.37,1.37,0,0,0,.64.65,2.23,2.23,0,0,0,1.08.25,2,2,0,0,0,1.29-.34,1,1,0,0,0,.43-.81,1,1,0,0,0-.26-.64,4.09,4.09,0,0,0-1.3-.74,12.35,12.35,0,0,1-1.32-.62,2.13,2.13,0,0,1-.73-.69,1.72,1.72,0,0,1-.24-.92,2,2,0,0,1,.72-1.55,2.9,2.9,0,0,1,2-.65,3.2,3.2,0,0,1,2.19.66,2.31,2.31,0,0,1,.78,1.75l-1.27.09a1.46,1.46,0,0,0-.49-1.09,1.91,1.91,0,0,0-1.3-.4,1.6,1.6,0,0,0-1,.31.87.87,0,0,0-.37.67.81.81,0,0,0,.32.63,5.41,5.41,0,0,0,1.11.57,7.49,7.49,0,0,1,1.88,1,1.94,1.94,0,0,1,.62,1.45,2,2,0,0,1-.35,1.11,2.4,2.4,0,0,1-1.06.87,4,4,0,0,1-1.69.33,3.8,3.8,0,0,1-2.25-.65A2.32,2.32,0,0,1,109.75,45.32Z'/%3E%3Cpath fill='%23fff' d='M121.2,45.32l1.3-.08a2.38,2.38,0,0,0,.17,1,1.37,1.37,0,0,0,.64.65,2.23,2.23,0,0,0,1.08.25,2,2,0,0,0,1.29-.34,1,1,0,0,0,.43-.81,1,1,0,0,0-.26-.64,4.09,4.09,0,0,0-1.3-.74,12.35,12.35,0,0,1-1.32-.62,2.13,2.13,0,0,1-.73-.69,1.72,1.72,0,0,1-.24-.92,2,2,0,0,1,.72-1.55,2.9,2.9,0,0,1,2-.65,3.2,3.2,0,0,1,2.19.66,2.31,2.31,0,0,1,.78,1.75l-1.27.09a1.46,1.46,0,0,0-.49-1.09,1.91,1.91,0,0,0-1.3-.4,1.6,1.6,0,0,0-1,.31.87.87,0,0,0-.37.67.81.81,0,0,0,.32.63,5.41,5.41,0,0,0,1.11.57,7.49,7.49,0,0,1,1.88,1,1.94,1.94,0,0,1,.62,1.45,2,2,0,0,1-.35,1.11,2.4,2.4,0,0,1-1.06.87,4,4,0,0,1-1.69.33,3.8,3.8,0,0,1-2.25-.65A2.32,2.32,0,0,1,121.2,45.32Z'/%3E%3Cpath fill='%23fff' d='M128.39,47.93,130,40.3h1.3l-1.6,7.63Zm1.9-9.06.31-1.47h1.29l-.31,1.47Z'/%3E%3Cpath fill='%23fff' d='M131.71,47.93l1.6-7.63h1.18l-.28,1.33a6.24,6.24,0,0,1,1.44-1.14,2.85,2.85,0,0,1,1.37-.36,2,2,0,0,1,1.46.5A1.77,1.77,0,0,1,139,42a7.5,7.5,0,0,1-.19,1.34l-1,4.62h-1.3l1-4.84a5.55,5.55,0,0,0,.15-1,.79.79,0,0,0-.26-.62,1.09,1.09,0,0,0-.76-.24,2.55,2.55,0,0,0-1.78.72,4.59,4.59,0,0,0-1.15,2.46L133,47.93Z'/%3E%3Cpath fill='%23fff' d='M145.16,45.15l1.3.14a4.37,4.37,0,0,1-1.39,2.12,3.28,3.28,0,0,1-2.05.69,2.67,2.67,0,0,1-2-.8,3.12,3.12,0,0,1-.77-2.25,6.42,6.42,0,0,1,.5-2.46,4,4,0,0,1,1.42-1.84,3.66,3.66,0,0,1,2.11-.63,2.69,2.69,0,0,1,1.95.69,2.43,2.43,0,0,1,.72,1.84l-1.28.09a1.55,1.55,0,0,0-.42-1.14,1.48,1.48,0,0,0-1.09-.41,2,2,0,0,0-1.36.5,3.27,3.27,0,0,0-.9,1.51,6.3,6.3,0,0,0-.33,1.94,2.16,2.16,0,0,0,.43,1.47,1.36,1.36,0,0,0,1.06.49,1.87,1.87,0,0,0,1.21-.48A3.16,3.16,0,0,0,145.16,45.15Z'/%3E%3Cpath fill='%23fff' d='M152.86,45.34l1.26.13a3.83,3.83,0,0,1-1.25,1.79,3.46,3.46,0,0,1-2.34.85,3.16,3.16,0,0,1-1.56-.39,2.57,2.57,0,0,1-1.08-1.14,3.79,3.79,0,0,1-.37-1.7,5.43,5.43,0,0,1,.58-2.43,4.13,4.13,0,0,1,1.5-1.75,3.7,3.7,0,0,1,2-.57,2.89,2.89,0,0,1,2.18.85,3.2,3.2,0,0,1,.82,2.31,6.83,6.83,0,0,1-.1,1.15h-5.62a3.17,3.17,0,0,0,0,.4,2.42,2.42,0,0,0,.49,1.63,1.54,1.54,0,0,0,1.2.56,2.32,2.32,0,0,0,1.32-.44A2.85,2.85,0,0,0,152.86,45.34Zm-3.78-1.89h4.28q0-.2,0-.29a2.11,2.11,0,0,0-.49-1.5,1.65,1.65,0,0,0-1.26-.52,2.31,2.31,0,0,0-1.52.57A3.45,3.45,0,0,0,149.08,43.45Z'/%3E%3Cpath fill='%23fff' d='M159.9,47.93a5.66,5.66,0,0,1,.56-1.58,5.28,5.28,0,0,1,.95-1.21q.59-.57,2.27-1.92a16.1,16.1,0,0,0,1.39-1.2,4,4,0,0,0,.78-1.1,1.92,1.92,0,0,0,.17-.8,1.67,1.67,0,0,0-.51-1.23,1.73,1.73,0,0,0-1.26-.51,1.84,1.84,0,0,0-1.29.51,3.05,3.05,0,0,0-.79,1.65l-1.27-.19A3.47,3.47,0,0,1,162,38.16a3.24,3.24,0,0,1,2.25-.81,3.52,3.52,0,0,1,1.63.37,2.51,2.51,0,0,1,1.1,1,2.89,2.89,0,0,1,.37,1.39,3.27,3.27,0,0,1-.75,2,19.89,19.89,0,0,1-2.7,2.38,15.06,15.06,0,0,0-1.43,1.25,4.48,4.48,0,0,0-.71.92h4.71l-.25,1.19Z'/%3E%3Cpath fill='%23fff' d='M168.26,44.47a10.85,10.85,0,0,1,1.29-4.92,5.4,5.4,0,0,1,1-1.29,3.92,3.92,0,0,1,1-.69,2.8,2.8,0,0,1,1.12-.22,2.6,2.6,0,0,1,2,.9,3.75,3.75,0,0,1,.81,2.59A11,11,0,0,1,175,44.3a6.6,6.6,0,0,1-1.84,3,3.1,3.1,0,0,1-2.06.77,2.56,2.56,0,0,1-2-.93A4,4,0,0,1,168.26,44.47Zm1.26.33a3,3,0,0,0,.32,1.52,1.41,1.41,0,0,0,1.3.75,1.83,1.83,0,0,0,1.37-.68,6.27,6.27,0,0,0,1.34-2.82,13.5,13.5,0,0,0,.45-3,2.49,2.49,0,0,0-.43-1.64,1.44,1.44,0,0,0-1.15-.5,1.86,1.86,0,0,0-1,.27,2.72,2.72,0,0,0-.86.91,9.18,9.18,0,0,0-1,2.73A11.45,11.45,0,0,0,169.52,44.8Z'/%3E%3Cpath fill='%23fff' d='M176.45,44.47a10.85,10.85,0,0,1,1.29-4.92,5.4,5.4,0,0,1,1-1.29,3.92,3.92,0,0,1,1-.69,2.8,2.8,0,0,1,1.12-.22,2.6,2.6,0,0,1,2,.9,3.75,3.75,0,0,1,.81,2.59,11,11,0,0,1-.56,3.46,6.6,6.6,0,0,1-1.84,3,3.1,3.1,0,0,1-2.06.77,2.56,2.56,0,0,1-2-.93A4,4,0,0,1,176.45,44.47Zm1.26.33a3,3,0,0,0,.32,1.52,1.41,1.41,0,0,0,1.3.75,1.83,1.83,0,0,0,1.37-.68A6.27,6.27,0,0,0,182,43.57a13.5,13.5,0,0,0,.45-3,2.49,2.49,0,0,0-.43-1.64,1.44,1.44,0,0,0-1.15-.5,1.86,1.86,0,0,0-1,.27,2.72,2.72,0,0,0-.86.91,9.18,9.18,0,0,0-1,2.73A11.45,11.45,0,0,0,177.71,44.8Z'/%3E%3Cpath fill='%23fff' d='M184.63,44.47a10.85,10.85,0,0,1,1.29-4.92,5.4,5.4,0,0,1,1-1.29,3.92,3.92,0,0,1,1-.69,2.8,2.8,0,0,1,1.12-.22,2.6,2.6,0,0,1,2,.9,3.75,3.75,0,0,1,.81,2.59,11,11,0,0,1-.56,3.46,6.6,6.6,0,0,1-1.84,3,3.1,3.1,0,0,1-2.06.77,2.56,2.56,0,0,1-2-.93A4,4,0,0,1,184.63,44.47Zm1.26.33a3,3,0,0,0,.32,1.52,1.41,1.41,0,0,0,1.3.75,1.83,1.83,0,0,0,1.37-.68,6.27,6.27,0,0,0,1.34-2.82,13.5,13.5,0,0,0,.45-3,2.49,2.49,0,0,0-.43-1.64,1.44,1.44,0,0,0-1.15-.5,1.86,1.86,0,0,0-1,.27,2.72,2.72,0,0,0-.86.91,9.18,9.18,0,0,0-1,2.73A11.45,11.45,0,0,0,185.89,44.8Z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:contain}.binary-logo-text img.responsive{width:90%}img.responsive{width:100%;height:auto}@media screen and (max-width:769px){#header .binary-logo-text{display:none}}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle;width:280px!important}.select2-container .select2-selection--multiple,.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-container .select2-selection--multiple:hover,.select2-container .select2-selection--single:hover{border:1px solid #2a3052}.select2-container .select2-selection--multiple .select2-selection__rendered,.select2-container .select2-selection--single .select2-selection__rendered{padding-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single{height:28px}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-right:20px}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container .select2-selection--multiple{min-height:32px}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block}.select2-container .select2-search--inline{float:left;margin:0}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-dropdown{background-color:#fff;border:1px solid #f2f2f2;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:1px 5px;margin:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0;box-shadow:0 0 2px 1px #f2f2f2}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px;border-bottom:1px solid #f2f2f2}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #f2f2f2;border-radius:4px}.select2-container--default .select2-selection--single:hover{outline:0;border:1px solid #2a3052}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#000;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#ccc}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{opacity:0}.select2-container--default .select2-selection--single .select2-selection__arrow:after{position:absolute;top:8px;left:0;font-size:1.15rem;content:'\002303';color:#dedede;transition:transform .2s ease-in;transform-origin:50% 30%;transform:rotate(180deg)}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#dedede;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#dedede;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0;border:1px solid #2a3052}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0;border:1px solid #2a3052}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0;border:1px solid #2a3052}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0;border:1px solid #2a3052}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after{transform:rotate(0)}.select2-container--default.select-container--focus>.select2-selection--multiple{border:1px solid #2a3052;outline:0}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #f2f2f2;border-radius:4px;cursor:text;outline:0}.select2-container--default .select2-selection--multiple:active,.select2-container--default .select2-selection--multiple:focus{border:1px solid #2a3052;outline:0}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none;font-size:17px}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#ccc;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#f2f2f2;border:1px solid #dedede;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#ccc;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#44484c}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#ccc}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#2a3052;color:#fff}.select2-container--default .select2-results__option--highlighted[aria-selected]:not([aria-selected=true]){background-color:#f2f2f2;color:#000}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--default.select2-container--focus{outline:0}.select2-container--default.select2-container--focus .select2-selection--single{border:1px solid #2a3052;outline:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #f2f2f2}.select2-container--default .select2-search--dropdown .select2-search__field:active,.select2-container--default .select2-search--dropdown .select2-search__field:focus,.select2-container--default .select2-search--dropdown .select2-search__field:hover{border:1px solid #2a3052}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic .select2-selection--single{background-color:#f2f2f2;border:1px solid #f2f2f2;border-radius:4px;outline:0;background-image:linear-gradient(to bottom,#fff 50%,#dedede 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:active,.select2-container--classic .select2-selection--single:focus{border:1px solid #2a3052;outline:0}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#000;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#ccc}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#dedede;border:none;border-left:1px solid #f2f2f2;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:linear-gradient(to bottom,#dedede 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{opacity:0}.select2-container--classic .select2-selection--single .select2-selection__arrow:after{position:absolute;top:8px;left:0;font-size:1.15rem;content:'\002303';color:#dedede;transition:transform .2s ease-in;transform-origin:50% 30%;transform:rotate(180deg)}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #2a3052}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow:after{transform:rotate(0)}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border:1px solid #2a3052;border-top-left-radius:0;border-top-right-radius:0;background-image:linear-gradient(to bottom,#fff 0,#dedede 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border:1px solid #2a3052;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border:1px solid #2a3052;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:linear-gradient(to bottom,#dedede 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border:1px solid #2a3052;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #f2f2f2}.select2-container--classic.select2-container--open .select2-dropdown{border:1px solid #f2f2f2}.select2-container--classic.select-container--focus>.select2-selection--multiple{border:1px solid #2a3052;outline:0}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #f2f2f2;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:active,.select2-container--classic .select2-selection--multiple:focus{border:1px solid #2a3052;outline:0}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#f2f2f2;border:1px solid #dedede;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#dedede;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#44484c}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:#dedede}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#2a3052;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #f2f2f2;outline:0}.select2-container--classic .select2-search--dropdown .select2-search__field:active,.select2-container--classic .select2-search--dropdown .select2-search__field:focus,.select2-container--classic .select2-search--dropdown .select2-search__field:hover{border:1px solid #2a3052}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #f2f2f2;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.section-divider{display:-ms-flexbox;display:flex}.section-divider>div:not(.faded){-ms-flex:1;flex:1}.section-divider>div.border-bottom-light-gray{border-bottom:1px solid #f2f2f2}.section-divider>div.faded{color:#c2c2c2;padding:0 20px}.section-divider>div.circle{-ms-flex:0;flex:0;border:1px solid #f2f2f2;border-radius:50%;margin:0;padding:5px;color:#c2c2c2;text-transform:uppercase;font-weight:400;font-size:.75rem}.chartOptions_button{background:#f2f2f2;margin-left:5px;color:#2a3052;border-radius:2px}.chartOptions_button:hover{cursor:pointer}.chartOptions_button.button_selected{color:#fff;background:#2a3052}.chartOptions_button.button_selected:hover{color:#fff;background:#2a3052}.chartOptions_button.button_selected [data-balloon]:after,.chartOptions_button.button_selected [data-balloon]:before{opacity:0}.chartOptions_button.button_selected[data-balloon]:after,.chartOptions_button.button_selected[data-balloon]:before{opacity:0}.chartOptions_button span{border-bottom:0;cursor:pointer;display:inline-block}.chartOptions_button span[data-balloon]:before{padding:.5em;font-size:13px;border:none;box-shadow:none;border-radius:0}.chartOptions_button .img{display:inline}.chartOptions_button .img div{width:25px;height:25px;margin:5px;background-repeat:no-repeat;background-position:center}.chartOptions_button .img img{width:20px;height:20px;margin:5px}table{border-collapse:collapse;font-size:.9em;line-height:1.5em;width:100%}table .even{background-color:#fff}table *{font-size:1em}table th,table thead{line-height:1.1em;font-weight:700;padding:3px 8px;background:#f2f2f2;border-bottom:1px solid #f2f2f2;vertical-align:middle}table th#pf-bet-details,table thead#pf-bet-details{text-align:left}table th.total,table thead.total{background:0 0}table th.num,table thead.num{font-weight:700}table td{vertical-align:top;border-width:0 1px;padding:4px;border-bottom:3px solid #f2f2f2}table td.num{text-align:center}table td.text{text-align:center;vertical-align:middle}table td.tip{text-align:left}.sidebar-left ul{font-size:18px}.sidebar-left ul li{list-style-image:none;margin:0;background:#f2f2f2;line-height:150%;border-bottom:1px solid #fff}.sidebar-left ul li:hover{background:#dedede}.sidebar-left ul li a{font-size:18px;font-weight:400;text-decoration:none;display:block;padding:5px 5px 5px 10px;color:#2a3052}.sidebar-left ul li.selected{background:#2a3052}.sidebar-left ul li.selected a{color:#fff;text-decoration:none}.sidebar-collapsible ul{font-size:18px}.sidebar-collapsible ul li{list-style-image:none;margin:0;background:#f2f2f2;line-height:38px;border-bottom:1px solid #fff}.sidebar-collapsible ul li:hover{background:#dedede}.sidebar-collapsible ul li a{font-size:18px;font-weight:400;text-decoration:none;display:block;padding:5px 5px 5px 10px;color:#2a3052}.sidebar-collapsible ul li a.selected,.sidebar-collapsible ul li a.selected:hover{background:#2a3052;color:#fff;text-decoration:none}.sidebar-collapsible ul li ul{height:0;margin:0 0 0 -1px;padding:0;overflow:hidden;background:#fff}.sidebar-collapsible ul li ul li{background:#fff;border:1px solid #f2f2f2;border-top:none;padding:5px 0}.sidebar-collapsible ul li ul li:hover{background:#fff}.sidebar-collapsible ul li ul li a{padding-left:20px;font-size:16px}.sidebar-collapsible ul li ul li a:hover{background:#fff;font-weight:700}.sidebar-collapsible ul li ul li a.selected,.sidebar-collapsible ul li ul li a.selected:hover{border-left:3px solid #2a3052;background:#fff;color:#2a3052;padding-left:15px;font-weight:700;transition:all .2s}.sidebar-collapsible ul li.has-submenu>a{position:relative}.sidebar-collapsible ul li.has-submenu>a:before{position:absolute;content:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 17 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.632 16L.27 30.318l1.462 1.364L16.368 16 1.73.318.27 1.682z' fill='%232a3052' fill-rule='evenodd'/%3E%3C/svg%3E");top:8px;right:10px;width:10px;transition:.3s}.sidebar-collapsible ul li.has-submenu>a.selected:before{content:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 17 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.632 16L.27 30.318l1.462 1.364L16.368 16 1.73.318.27 1.682z' fill='white' fill-rule='evenodd'/%3E%3C/svg%3E")}.sidebar-collapsible ul li.has-submenu.active>a:before{content:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 17 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.632 16L.27 30.318l1.462 1.364L16.368 16 1.73.318.27 1.682z' fill='white' fill-rule='evenodd'/%3E%3C/svg%3E");transform:rotate(90deg);top:5px;right:15px}[data-balloon]{position:relative;border-bottom:1px dotted #000;cursor:help}.no-underline[data-balloon]{border-bottom:none;text-decoration:none}[data-balloon]:after,[data-balloon]:before{-khtml-opacity:0;-moz-opacity:0;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;bottom:100%;left:50%;position:absolute;z-index:10;transform:translate(-50%,10px);transform-origin:top}[data-balloon]:before{font-family:proxima-nova,arial,sans-serif;font-size:14px;font-weight:400;line-height:1.5;text-align:initial;text-transform:none;text-decoration:none;letter-spacing:normal;border:1px solid #dedede;box-shadow:0 3px 5px rgba(0,0,0,.3);background:#fef1cf;border-radius:4px;color:#000;content:attr(data-balloon);padding:1em;white-space:nowrap;margin-bottom:11px}[data-balloon]:after{background:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36px' height='12px'%3E%3Cpath fill='%23fef1cf' transform='rotate(0)' d='M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z'/%3E%3C/svg%3E") no-repeat;background-size:100% auto;height:6px;width:18px;content:'';margin-bottom:6px}[data-balloon]:hover:after,[data-balloon]:hover:before{-khtml-opacity:1;-moz-opacity:1;opacity:1;pointer-events:auto;transform:translate(-50%,0)}[data-balloon][data-balloon-break]:before{white-space:normal}[data-balloon-pos=down]:after,[data-balloon-pos=down]:before{bottom:auto;left:50%;top:100%;transform:translate(-50%,-10px)}[data-balloon-pos=down]:before{margin-top:11px}[data-balloon-pos=down]:after{background:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36px' height='12px'%3E%3Cpath fill='%23fef1cf' transform='rotate(180 18 6)' d='M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z'/%3E%3C/svg%3E") no-repeat;background-size:100% auto;height:6px;width:18px;margin-top:6px;margin-bottom:0}[data-balloon-pos=down]:hover:after,[data-balloon-pos=down]:hover:before{transform:translate(-50%,0)}[data-balloon-pos=left]:after,[data-balloon-pos=left]:before{bottom:auto;left:auto;right:100%;top:50%;transform:translate(10px,-50%)}[data-balloon-pos=left]:before{margin-right:11px}[data-balloon-pos=left]:after{background:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12px' height='36px'%3E%3Cpath fill='%23fef1cf' transform='rotate(-90 18 18)' d='M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z'/%3E%3C/svg%3E") no-repeat;background-size:100% auto;height:18px;width:6px;margin-right:6px;margin-bottom:0}[data-balloon-pos=left]:hover:after,[data-balloon-pos=left]:hover:before{transform:translate(0,-50%)}[data-balloon-pos=right]:after,[data-balloon-pos=right]:before{bottom:auto;left:100%;top:50%;transform:translate(-10px,-50%)}[data-balloon-pos=right]:before{margin-left:11px}[data-balloon-pos=right]:after{background:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12px' height='36px'%3E%3Cpath fill='%23fef1cf' transform='rotate(90 6 6)' d='M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z'/%3E%3C/svg%3E") no-repeat;background-size:100% auto;height:18px;width:6px;margin-bottom:0;margin-left:6px}[data-balloon-pos=right]:hover:after,[data-balloon-pos=right]:hover:before{transform:translate(0,-50%)}[data-balloon-length]:before{white-space:normal}[data-balloon-length=small]:before{width:80px}[data-balloon-length=medium]:before{width:150px}[data-balloon-length=large]:before{width:260px}[data-balloon-length=xlarge]:before{width:90vw}@media screen and (min-width:768px){[data-balloon-length=xlarge]:before{width:380px}}[data-balloon-length=fit]:before{width:100%}@media screen and (max-width:768px){[data-balloon]{cursor:initial}[data-balloon]:after,[data-balloon]:before{display:none!important}}.nav-menu{font-size:1rem}.nav-menu a{color:#fff}.nav-menu>li{position:relative;text-align:center}.nav-menu>li>ul{width:100%;background-color:#f2f2f2}.main-nav{width:165px;border:1px solid #2a3052;position:absolute;right:0;padding:0;margin:0;background-color:#2a3052;transition:none!important}.main-nav>li{margin:0;height:77px}.main-nav>li a{font-weight:400;display:block;max-height:70px;margin-top:3px}.main-nav>li a:hover{text-decoration:none}.main-nav>li>ul{margin:0;margin-left:-1px;padding:0;border:1px solid #dedede}.main-nav>li>ul a{color:initial}.main-nav>li>ul a li{margin-top:0;padding:7px 0}.main-nav>li>ul a li:hover{background-color:#dedede}.main-nav .nav-caret{position:relative;top:-45px;right:-68px}.main-nav *{outline:0}.nav-caret{vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent;display:inline-block}#all-accounts,#all-accounts-top{background-color:#f2f2f2;border:1px solid #dedede;z-index:99999;opacity:0;visibility:hidden}#all-accounts-top>li a,#all-accounts>li a{color:#000;margin:0}#logout-top,#main-logout{position:relative;height:75px;display:-ms-flexbox;display:flex;width:165px;float:right}.separator-line-thin-gray{border-top:1px solid #dedede}#main-account{height:70px}.has-tabs,.tabs-container{padding:0}.has-tabs ul.ui-tabs-nav,.tabs-container ul.ui-tabs-nav{border:none;border-radius:0;padding:0;margin-left:0;background:0 0}.has-tabs ul.ui-tabs-nav li,.tabs-container ul.ui-tabs-nav li{border:none;list-style-image:none;background:#f2f2f2;border-radius:4px 4px 0 0;margin:0 2px 0 0;padding:0 10px}.has-tabs ul.ui-tabs-nav li a,.has-tabs ul.ui-tabs-nav li a:visited,.tabs-container ul.ui-tabs-nav li a,.tabs-container ul.ui-tabs-nav li a:visited{padding:3px 0 0!important;font-weight:400;text-decoration:none;color:#000;font-size:90%;background:0 0}.has-tabs ul.ui-tabs-nav li.active,.has-tabs ul.ui-tabs-nav li.ui-tabs-active,.tabs-container ul.ui-tabs-nav li.active,.tabs-container ul.ui-tabs-nav li.ui-tabs-active{background:#2a3052;color:#fff}.has-tabs ul.ui-tabs-nav li.active a,.has-tabs ul.ui-tabs-nav li.ui-tabs-active a,.tabs-container ul.ui-tabs-nav li.active a,.tabs-container ul.ui-tabs-nav li.ui-tabs-active a{background:0 0;color:#fff;font-weight:400;text-decoration:none;padding:0;outline:0}.container .has-tabs .ui-tabs-panel,.tabs-container .ui-tabs-panel{border:none;padding:0!important}.container .has-tabs ul.ui-tabs-nav,.tabs-container ul.ui-tabs-nav{margin-bottom:2px;border-bottom:1px solid #000}.has-tabs .ui-tabs-panel{border:1px solid #dedede;padding:10px}.ui-dialog-titlebar-buttonpane .ui-corner-all.ui-state-default{border:0 solid #2a3052;background:#2a3052}.ui-widget-header{border:1px solid #2a3052;background:#2a3052;color:#fff;font-family:roboto,sans-serif;font-weight:400}.barspinner{margin:50px auto;width:60px;height:20px;text-align:center;font-size:13px;white-space:nowrap}.barspinner>div{margin:2px;border-radius:20px;height:100%;width:6px;display:inline-block;animation:sk-stretchdelay 1.2s infinite ease-in-out}.barspinner.dark>div{background-color:#2a3052}.barspinner.white>div{background-color:#fff}.barspinner .rect1{animation-delay:-1.2s}.barspinner .rect2{animation-delay:-1.1s}.barspinner .rect3{animation-delay:-1s}.barspinner .rect4{animation-delay:-.9s}.barspinner .rect5{animation-delay:-.8s}@keyframes sk-stretchdelay{0%,100%,40%{transform:scaleY(1)}20%{transform:scaleY(2)}}.top-nav-menu{list-style:none outside none;display:inline-table;padding:0;margin:0;vertical-align:middle}.top-nav-menu>li>a{height:30px}.top-nav-menu>li>ul{position:absolute;list-style:none outside none;min-width:100%}.top-nav-menu li{float:left;position:relative;list-style:none outside none;padding:0;margin:0}.top-nav-menu li a{display:block;padding:20px 30px;transition:padding .5s;white-space:nowrap;text-align:left;outline:0;font-size:1rem;font-weight:400}.top-nav-menu li a.disabled,.top-nav-menu li a.disabled:hover{opacity:.5}.top-nav-menu li a:hover{opacity:.75;text-decoration:none}.top-nav-menu li ul{visibility:hidden;opacity:0;margin:0;padding:0}.top-nav-menu li ul li ul{position:absolute;left:100%;top:0}.top-nav-menu li>ul li{float:none;background-color:#2a3052}.top-nav-menu li>ul li a{padding:10px 30px}.top-nav-menu li>ul li a:hover{background:#e98024;opacity:1;text-decoration:none}.top-nav-menu ul li:hover>ul{visibility:visible!important;display:inline-block!important;opacity:1!important}.top-nav-menu .nav-caret{margin-left:2px}.top-nav-menu .nav-submenu-caret{position:absolute;right:15px;top:10px;display:inline-block;color:#fff}.top-nav-menu .nav-submenu-caret:after{content:'»'}.candlestick-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='8.5' x2='25' y2='41.5'/%3E %3Crect fill='white' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x='20.842' y='17.146' width='8.316' height='15.708'/%3E %3C/svg%3E")}.candlestick-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='25' y1='8.5' x2='25' y2='41.5'/%3E %3Crect fill='%232a3052' stroke='white' stroke-miterlimit='10' stroke-width='2' x='20.842' y='17.146' width='8.316' height='15.708'/%3E %3C/svg%3E")}.chart_template-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='20' height='20' fill='none'/%3E %3Cg fill='%232a3052' transform='translate(3 3)'%3E %3Cpath d='M4.05864772,10.5881597 L3.96565789,10.5881597 C1.90358816,10.5916328 0.184234309,8.96390779 0.0137311841,6.84684145 C-0.156771941,4.7297751 1.27867882,2.83239362 3.31310798,2.48571907 C4.29476577,0.740866197 6.20012412,-0.222868908 8.14053573,0.0439938228 C10.0809473,0.310856554 11.6741844,1.75574974 12.1771711,3.70478418 C13.9107218,3.99533956 15.1352245,5.6113735 14.9880145,7.4143868 C14.8408044,9.2174001 13.3714727,10.6000077 11.6151664,10.5881597 L11.5525941,10.5881597 L11.5525941,9.68122738 L11.5964329,9.68109808 C12.4888104,9.71384902 13.3303615,9.25365832 13.8040821,8.47387535 C14.2778026,7.69409239 14.3117231,6.71318475 13.8930661,5.90065085 C13.4744092,5.08811695 12.6667786,4.56740002 11.7744011,4.53464908 L11.4621762,4.51213337 L11.3997313,4.1904803 C11.0706846,2.4807448 9.72928238,1.17160096 8.05430581,0.925506607 C6.37932925,0.679412256 4.7361642,1.55005136 3.95629115,3.09685989 L3.8501347,3.30593438 L3.62221057,3.33166663 C1.99609499,3.53101612 0.800142372,4.99766193 0.890110859,6.68215272 C0.980079347,8.3666435 2.32500627,9.68926151 3.96253565,9.7036138 L4.05864772,9.70333032 L4.05864772,10.5881597 Z'/%3E %3Cpath d='M6.8034056 12.0588235L6.8034056 7.94117647 5.54953561 7.94117647 5.54953561 12.0588235 4.85294118 12.0588235 6.17647059 14.7058824 7.5 12.0588235 6.8034056 12.0588235zM8.63777091 8.82352941L9.89164089 8.82352941 9.89164089 13.2352941 8.63777091 13.2352941 8.63777091 8.82352941zM9.26470588 6.17647059L10.5882353 8.82352941 7.94117647 8.82352941 9.26470588 6.17647059z'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E")}.chart_template-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='20' height='20' fill='none'/%3E %3Cg fill='white' transform='translate(3 3)'%3E %3Cpath d='M4.05864772,10.5881597 L3.96565789,10.5881597 C1.90358816,10.5916328 0.184234309,8.96390779 0.0137311841,6.84684145 C-0.156771941,4.7297751 1.27867882,2.83239362 3.31310798,2.48571907 C4.29476577,0.740866197 6.20012412,-0.222868908 8.14053573,0.0439938228 C10.0809473,0.310856554 11.6741844,1.75574974 12.1771711,3.70478418 C13.9107218,3.99533956 15.1352245,5.6113735 14.9880145,7.4143868 C14.8408044,9.2174001 13.3714727,10.6000077 11.6151664,10.5881597 L11.5525941,10.5881597 L11.5525941,9.68122738 L11.5964329,9.68109808 C12.4888104,9.71384902 13.3303615,9.25365832 13.8040821,8.47387535 C14.2778026,7.69409239 14.3117231,6.71318475 13.8930661,5.90065085 C13.4744092,5.08811695 12.6667786,4.56740002 11.7744011,4.53464908 L11.4621762,4.51213337 L11.3997313,4.1904803 C11.0706846,2.4807448 9.72928238,1.17160096 8.05430581,0.925506607 C6.37932925,0.679412256 4.7361642,1.55005136 3.95629115,3.09685989 L3.8501347,3.30593438 L3.62221057,3.33166663 C1.99609499,3.53101612 0.800142372,4.99766193 0.890110859,6.68215272 C0.980079347,8.3666435 2.32500627,9.68926151 3.96253565,9.7036138 L4.05864772,9.70333032 L4.05864772,10.5881597 Z'/%3E %3Cpath d='M6.8034056 12.0588235L6.8034056 7.94117647 5.54953561 7.94117647 5.54953561 12.0588235 4.85294118 12.0588235 6.17647059 14.7058824 7.5 12.0588235 6.8034056 12.0588235zM8.63777091 8.82352941L9.89164089 8.82352941 9.89164089 13.2352941 8.63777091 13.2352941 8.63777091 8.82352941zM9.26470588 6.17647059L10.5882353 8.82352941 7.94117647 8.82352941 9.26470588 6.17647059z'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E")}.comparison-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='8.5' y1='12.65' x2='41.5' y2='12.65'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='16.69' y1='39.35' x2='33.31' y2='39.35'/%3E %3Ccircle fill='%23f2f2f2' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' cx='25' cy='12.65' r='2'/%3E %3Cpath fill='%232a3052' d='M14,17.78l3.43,8.15a3.47,3.47,0,0,1-6.9,0L14,17.78m0-5.13L8.52,25.57A5.47,5.47,0,0,0,14,31h0a5.47,5.47,0,0,0,5.47-5.47L14,12.65Z'/%3E %3Cpath fill='%232a3052' d='M19.46,25.57A5.47,5.47,0,0,1,14,31h0a5.47,5.47,0,0,1-5.47-5.47Z'/%3E %3Cpath fill='%232a3052' d='M36,17.78l3.43,8.15a3.47,3.47,0,0,1-6.9,0L36,17.78m0-5.13-5.5,12.92A5.47,5.47,0,0,0,36,31h0a5.47,5.47,0,0,0,5.47-5.47L36,12.65Z'/%3E %3Cpath fill='%232a3052' d='M41.48,25.57A5.47,5.47,0,0,1,36,31h0a5.47,5.47,0,0,1-5.47-5.47Z'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='14.65' x2='25' y2='39.35'/%3E %3C/svg%3E")}.crosshair-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='8.5' y1='25' x2='20.095' y2='25'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='29.905' y1='25' x2='41.5' y2='25'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='8.5' x2='25' y2='20.095'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='29.905' x2='25' y2='41.5'/%3E%3C/svg%3E")}.dot-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Ccircle fill='%232a3052' cx='25' cy='25' r='3.234'/%3E %3Ccircle fill='%232a3052' cx='38.266' cy='25' r='3.234'/%3E %3Ccircle fill='%232a3052' cx='11.734' cy='25' r='3.234'/%3E%3C/svg%3E")}.dot-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Ccircle fill='white' cx='25' cy='25' r='3.234'/%3E %3Ccircle fill='white' cx='38.266' cy='25' r='3.234'/%3E %3Ccircle fill='white' cx='11.734' cy='25' r='3.234'/%3E%3C/svg%3E")}.drawing-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='20' height='20' fill='none'/%3E %3Cpath fill='%232a3052' d='M4,13.4995206 L4,15.9995133 L6.49999276,15.9995133 L13.8724714,8.62703469 L11.3724786,6.12704193 L4,13.4995206 Z M15.8049658,6.69454028 C16.0643625,6.43489417 16.0643625,6.01418912 15.8049658,5.75454301 L14.2499703,4.19454753 C13.9903242,3.93515082 13.5696191,3.93515082 13.309973,4.19454753 L12.0849766,5.41454399 L14.5849693,7.91453675 L15.8049658,6.69454028 Z'/%3E %3C/g%3E %3C/svg%3E")}.drawing-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='20' height='20' fill='none'/%3E %3Cpath fill='white' d='M4,13.4995206 L4,15.9995133 L6.49999276,15.9995133 L13.8724714,8.62703469 L11.3724786,6.12704193 L4,13.4995206 Z M15.8049658,6.69454028 C16.0643625,6.43489417 16.0643625,6.01418912 15.8049658,5.75454301 L14.2499703,4.19454753 C13.9903242,3.93515082 13.5696191,3.93515082 13.309973,4.19454753 L12.0849766,5.41454399 L14.5849693,7.91453675 L15.8049658,6.69454028 Z'/%3E %3C/g%3E %3C/svg%3E")}.indicator-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cpolyline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' points='7.14 16.68 18.02 7.5 31.84 19.3 42.86 10.75'/%3E %3Crect fill='%232a3052' x='7.14' y='23.37' width='3.88' height='19.13'/%3E %3Crect fill='%232a3052' x='15.1' y='15.67' width='3.88' height='26.83'/%3E %3Crect fill='%232a3052' x='23.06' y='22.3' width='3.88' height='20.2'/%3E %3Crect fill='%232a3052' x='31.02' y='26.8' width='3.88' height='15.7'/%3E %3Crect fill='%232a3052' x='38.98' y='18.83' width='3.88' height='23.67'/%3E%3C/svg%3E")}.line-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='7.14' y1='25' x2='42.86' y2='25'/%3E%3C/svg%3E")}.line-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='7.14' y1='25' x2='42.86' y2='25'/%3E%3C/svg%3E")}.linedot-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Ccircle fill='%232a3052' cx='25' cy='25' r='3.234'/%3E %3Ccircle fill='%232a3052' cx='38.266' cy='25' r='3.234'/%3E %3Ccircle fill='%232a3052' cx='11.734' cy='25' r='3.234'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='11.734' y1='25' x2='38.266' y2='25'/%3E%3C/svg%3E")}.linedot-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Ccircle fill='white' cx='25' cy='25' r='3.234'/%3E %3Ccircle fill='white' cx='38.266' cy='25' r='3.234'/%3E %3Ccircle fill='white' cx='11.734' cy='25' r='3.234'/%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='11.734' y1='25' x2='38.266' y2='25'/%3E%3C/svg%3E")}.ohlc-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='8.5' x2='25' y2='41.5'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='13.912' y1='14.403' x2='25' y2='14.403'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='25' y1='35.597' x2='36.088' y2='35.597'/%3E%3C/svg%3E")}.ohlc-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='25' y1='8.5' x2='25' y2='41.5'/%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='13.912' y1='14.403' x2='25' y2='14.403'/%3E %3Cline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' x1='25' y1='35.597' x2='36.088' y2='35.597'/%3E%3C/svg%3E")}.share-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cpolyline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' points='34.17 35.82 15.83 25 34.17 14.18'/%3E %3Ccircle fill='%232a3052' cx='15.83' cy='25' r='3.5'/%3E %3Ccircle fill='%232a3052' cx='34.17' cy='14.18' r='3.5'/%3E %3Ccircle fill='%232a3052' cx='34.17' cy='35.82' r='3.5'/%3E%3C/svg%3E")}.share-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cpolyline fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' points='34.17 35.82 15.83 25 34.17 14.18'/%3E %3Ccircle fill='white' cx='15.83' cy='25' r='3.5'/%3E %3Ccircle fill='white' cx='34.17' cy='14.18' r='3.5'/%3E %3Ccircle fill='white' cx='34.17' cy='35.82' r='3.5'/%3E%3C/svg%3E")}.spline-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cpath fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' d='M8.5,23.733l3-3.559a6.468,6.468,0,0,1,10.52.9l4.619,7.862a6.468,6.468,0,0,0,10.858.458l4-5.656'/%3E%3C/svg%3E")}.spline-w-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Cpath fill='none' stroke='white' stroke-miterlimit='10' stroke-width='2' d='M8.5,23.733l3-3.559a6.468,6.468,0,0,1,10.52.9l4.619,7.862a6.468,6.468,0,0,0,10.858.458l4-5.656'/%3E%3C/svg%3E")}.table-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E %3Crect fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x='8.5' y='8.5' width='33' height='33'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='8.5' y1='19.5' x2='41.5' y2='19.5'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='8.5' y1='30.5' x2='41.5' y2='30.5'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='19.5' y1='41.5' x2='19.5' y2='8.5'/%3E %3Cline fill='none' stroke='%232a3052' stroke-miterlimit='10' stroke-width='2' x1='30.5' y1='41.5' x2='30.5' y2='8.5'/%3E %3C/svg%3E")}.contract-type.CALLE{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='13.53 26.93 5.34 18.75 0 18.75 0 36 36 36 36 18.75 21.71 18.75 13.53 26.93'/%3E%3Cpolygon fill='%2329abe2' points='17.79 18.75 9.27 18.75 13.53 23.01 17.79 18.75'/%3E%3Cpolygon fill='%2329abe2' points='0 0 0 17.25 4.47 17.25 6.12 15.6 7.77 17.25 19.29 17.25 27.06 9.48 22.67 9.48 25.45 6.7 31.77 6.7 31.77 13.08 28.99 15.86 28.99 11.47 23.21 17.25 36 17.25 36 0 0 0'/%3E%3C/svg%3E")}.contract-type.CALLE.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%23cc0033' points='13.53 26.93 5.34 18.75 0 18.75 0 36 36 36 36 18.75 21.71 18.75 13.53 26.93'/%3E%3Cpolygon fill='%23cc0033' points='17.79 18.75 9.27 18.75 13.53 23.01 17.79 18.75'/%3E%3Cpolygon fill='%23cc0033' points='0 0 0 17.25 4.47 17.25 6.12 15.6 7.77 17.25 19.29 17.25 27.06 9.48 22.67 9.48 25.45 6.7 31.77 6.7 31.77 13.08 28.99 15.86 28.99 11.47 23.21 17.25 36 17.25 36 0 0 0'/%3E%3C/svg%3E")}.contract-type.PUT{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='13.53 9.06 5.34 17.25 0 17.25 0 0 36 0 36 17.25 21.71 17.25 13.53 9.06'/%3E%3Cpolygon fill='%2329abe2' points='17.79 17.25 9.27 17.25 13.53 12.99 17.79 17.25'/%3E%3Cpolygon fill='%2329abe2' points='0 36 0 18.75 4.47 18.75 6.12 20.4 7.77 18.75 19.29 18.75 27.06 26.52 22.67 26.52 25.45 29.3 31.77 29.3 31.77 22.92 28.99 20.14 28.99 24.53 23.21 18.75 36 18.75 36 36 0 36'/%3E%3C/svg%3E")}.contract-type.PUT.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%23cc0033' points='13.53 9.06 5.34 17.25 0 17.25 0 0 36 0 36 17.25 21.71 17.25 13.53 9.06'/%3E%3Cpolygon fill='%23cc0033' points='17.79 17.25 9.27 17.25 13.53 12.99 17.79 17.25'/%3E%3Cpolygon fill='%23cc0033' points='0 36 0 18.75 4.47 18.75 6.12 20.4 7.77 18.75 19.29 18.75 27.06 26.52 22.67 26.52 25.45 29.3 31.77 29.3 31.77 22.92 28.99 20.14 28.99 24.53 23.21 18.75 36 18.75 36 36 0 36'/%3E%3C/svg%3E")}.contract-type.ONETOUCH{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='12.63 29.18 8.45 25.01 14.71 18.75 16.21 17.25 23.82 9.64 18.79 9.64 21.41 7.02 0 7.02 0 17.25 0 18.75 0 36 9.54 36 7.68 34.13 12.63 29.18'/%3E%3Cpolygon fill='%2329abe2' points='28.32 14.05 25.68 16.69 25.68 11.51 19.94 17.25 18.44 18.75 12.18 25.01 16.36 29.18 9.54 36 36 36 36 18.75 36 17.25 36 7.02 28.32 7.02 28.32 14.05'/%3E%3Crect fill='%2329abe2' width='36' height='5.52'/%3E%3C/svg%3E")}.contract-type.NOTOUCH{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Crect fill='%2329abe2' y='31.75' width='36' height='4.25'/%3E%3Cpath fill='%2329abe2' d='M0,0V30.25H36V0ZM34.17,24.27l-2.45,2.45v-4.5l-6,6L10.76,13.32,8.13,15.95,2.42,10.23,4.15,8.5l4,4,2.63-2.63L25.69,24.79l4.47-4.47h-5l2.45-2.45h6.55Z'/%3E%3C/svg%3E")}.contract-type.NOTOUCH.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Crect fill='%23cc0033' y='31.75' width='36' height='4.25'/%3E%3Cpath fill='%23cc0033' d='M0,0V30.25H36V0ZM34.17,24.27l-2.45,2.45v-4.5l-6,6L10.76,13.32,8.13,15.95,2.42,10.23,4.15,8.5l4,4,2.63-2.63L25.69,24.79l4.47-4.47h-5l2.45-2.45h6.55Z'/%3E%3C/svg%3E")}.contract-type.EXPIRYRANGEE{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Crect fill='%2329abe2' y='26.46' width='36' height='9.54'/%3E%3Crect fill='%2329abe2' width='36' height='10.21'/%3E%3Cpolygon fill='%2329abe2' points='31.61 22.95 28.22 22.95 31.44 19.73 27.49 19.73 27.46 17.75 27.49 17.33 31.67 17.33 28.32 13.97 31.72 13.97 36 18.26 36 11.81 0 11.81 0 24.86 36 24.86 36 18.56 31.61 22.95'/%3E%3C/svg%3E")}.contract-type.EXPIRYMISS{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Crect fill='%2329abe2' y='11.81' width='36' height='13.05'/%3E%3Crect fill='%2329abe2' y='26.46' width='36' height='9.54'/%3E%3Cpolygon fill='%2329abe2' points='31.61 9.7 28.22 9.7 31.44 6.47 27.49 6.47 27.46 4.5 27.49 4.08 31.67 4.08 28.32 0.72 31.72 0.72 36 5.01 36 0 0 0 0 10.21 36 10.21 36 5.31 31.61 9.7'/%3E%3C/svg%3E")}.contract-type.EXPIRYMISS.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Crect fill='%23cc0033' y='11.81' width='36' height='13.05'/%3E%3Crect fill='%23cc0033' y='26.46' width='36' height='9.54'/%3E%3Cpolygon fill='%23cc0033' points='31.61 9.7 28.22 9.7 31.44 6.47 27.49 6.47 27.46 4.5 27.49 4.08 31.67 4.08 28.32 0.72 31.72 0.72 36 5.01 36 0 0 0 0 10.21 36 10.21 36 5.31 31.61 9.7'/%3E%3C/svg%3E")}.contract-type.RANGE{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpath fill='%2329abe2' d='M0,24.86H36v-13H0Zm1.72-6H5.58L10,12.12l5.25,7.76L20.64,13l4.72,5.33h4.19L26.2,15h3.39L34,19.41l-4.54,4.54H26.1l3.22-3.22h-5l-3.52-4L15.16,24l-5.1-7.54L6.87,21.25H1.72Z'/%3E%3Crect fill='%2329abe2' y='26.46' width='36' height='9.54'/%3E%3Crect fill='%2329abe2' width='36' height='10.21'/%3E%3C/svg%3E")}.contract-type.UPORDOWN{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='23.62 11.81 12.62 11.81 17.98 21.96 23.62 11.81'/%3E%3Cpolygon fill='%2329abe2' points='29.57 6.07 27.3 10.14 30.87 10.14 29.57 6.07'/%3E%3Cpolygon fill='%2329abe2' points='10.85 8.45 11.74 10.14 24.56 10.14 27.32 5.17 23.13 6.51 24.69 3.49 30.66 1.59 32.61 7.7 31.35 10.14 36 10.14 36 0 0 0 0 10.14 9.92 10.14 10.85 8.45'/%3E%3Cpolygon fill='%2329abe2' points='17.92 26.99 17.12 25.48 0 25.48 0 36 36 36 36 25.48 18.77 25.48 17.92 26.99'/%3E%3Cpolygon fill='%2329abe2' points='36 11.81 26.37 11.81 19.69 23.81 36 23.81 36 11.81'/%3E%3Cpolygon fill='%2329abe2' points='10.8 13.5 6.81 20.73 1.6 20.73 1.6 18.32 5.39 18.32 8.99 11.81 0 11.81 0 23.81 16.25 23.81 10.8 13.5'/%3E%3C/svg%3E")}.contract-type.UPORDOWN.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' width='36' height='36'%3E%3Cpolygon fill='%23cc0033' points='23.62 11.81 12.62 11.81 17.98 21.96 23.62 11.81'/%3E%3Cpolygon fill='%23cc0033' points='29.57 6.07 27.3 10.14 30.87 10.14 29.57 6.07'/%3E%3Cpolygon fill='%23cc0033' points='10.85 8.45 11.74 10.14 24.56 10.14 27.32 5.17 23.13 6.51 24.69 3.49 30.66 1.59 32.61 7.7 31.35 10.14 36 10.14 36 0 0 0 0 10.14 9.92 10.14 10.85 8.45'/%3E%3Cpolygon fill='%23cc0033' points='17.92 26.99 17.12 25.48 0 25.48 0 36 36 36 36 25.48 18.77 25.48 17.92 26.99'/%3E%3Cpolygon fill='%23cc0033' points='36 11.81 26.37 11.81 19.69 23.81 36 23.81 36 11.81'/%3E%3Cpolygon fill='%23cc0033' points='10.8 13.5 6.81 20.73 1.6 20.73 1.6 18.32 5.39 18.32 8.99 11.81 0 11.81 0 23.81 16.25 23.81 10.8 13.5'/%3E%3C/svg%3E")}.mb-trading-wrapper .contract-type.CALLE{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='6.28 27.11 4.64 25.47 13.45 16.67 0 16.67 0 32 32 32 32 16.67 16.72 16.67 6.28 27.11'/%3E%3Cpolygon fill='%2329abe2' points='0 0 0 15.33 14.78 15.33 22.91 7.21 18.55 7.21 20.86 4.89 26.92 4.89 26.92 11.08 24.61 13.4 24.61 8.78 18.05 15.33 32 15.33 32 0 0 0'/%3E%3C/svg%3E")}.mb-trading-wrapper .contract-type.CALLE.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='36' height='36'%3E%3Cpolygon fill='%23cc0033' points='6.28 27.11 4.64 25.47 13.45 16.67 0 16.67 0 32 32 32 32 16.67 16.72 16.67 6.28 27.11'/%3E%3Cpolygon fill='%23cc0033' points='0 0 0 15.33 14.78 15.33 22.91 7.21 18.55 7.21 20.86 4.89 26.92 4.89 26.92 11.08 24.61 13.4 24.61 8.78 18.05 15.33 32 15.33 32 0 0 0'/%3E%3C/svg%3E")}.mb-trading-wrapper .contract-type.PUT{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='36' height='36'%3E%3Cpolygon fill='%2329abe2' points='6.28 4.89 4.64 6.53 13.45 15.33 0 15.33 0 0 32 0 32 15.33 16.72 15.33 6.28 4.89'/%3E%3Cpolygon fill='%2329abe2' points='0 32 0 16.67 14.78 16.67 22.91 24.79 18.55 24.79 20.86 27.11 26.92 27.11 26.92 20.92 24.6 18.6 24.6 23.22 18.05 16.67 32 16.67 32 32 0 32'/%3E%3C/svg%3E")}.mb-trading-wrapper .contract-type.PUT.negative-color{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='36' height='36'%3E%3Cpolygon fill='%23cc0033' points='6.28 4.89 4.64 6.53 13.45 15.33 0 15.33 0 0 32 0 32 15.33 16.72 15.33 6.28 4.89'/%3E%3Cpolygon fill='%23cc0033' points='0 32 0 16.67 14.78 16.67 22.91 24.79 18.55 24.79 20.86 27.11 26.92 27.11 26.92 20.92 24.6 18.6 24.6 23.22 18.05 16.67 32 16.67 32 32 0 32'/%3E%3C/svg%3E")}.steps{display:-ms-flexbox;display:flex}.steps .step{-ms-flex:1;flex:1}.steps .step .circle{width:40px;height:40px;border-radius:50%;background-color:#e98024;margin:auto;margin-top:-20px;text-align:center;line-height:40px;color:#fff}.ui-datepicker .ui-datepicker-month,.ui-datepicker .ui-datepicker-year{margin-right:5px!important}.ui-datepicker .ui-datepicker-next:hover,.ui-datepicker .ui-datepicker-prev:hover{opacity:.75;background:0 0;border:none}.ui-datepicker .ui-datepicker-next.ui-state-disabled:hover,.ui-datepicker .ui-datepicker-prev.ui-state-disabled:hover{opacity:.35}@font-face{font-family:BinarySymbols;font-style:normal;font-weight:400;src:url(data:application/font-woff;base64,d09GRgABAAAAAAxEAAsAAAAAC/gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgD24EEmNtYXAAAAFoAAAAjAAAAIzqmiLFZ2FzcAAAAfQAAAAIAAAACAAAABBnbHlmAAAB/AAABmAAAAZgOy3mpGhlYWQAAAhcAAAANgAAADYPeU/NaGhlYQAACJQAAAAkAAAAJAdkA7ZobXR4AAAIuAAAADgAAAA4IJ0C8GxvY2EAAAjwAAAAHgAAAB4JEAc4bWF4cAAACRAAAAAgAAAAIAATAKluYW1lAAAJMAAAAvQAAAL04PCRznBvc3QAAAwkAAAAIAAAACAAAwAAAAMCmgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAAxAAAAIAAAAAAAAAAAAAAAAAQAAA6QEDZv9nAJkDZgCZAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAHAAAAAYABAAAwAIAAEAIAAkAEIARQBMAKMApSCs6QH//f//AAAAAAAgACQAQQBFAEwAowClIKzpAP/9//8AAf/j/+D/xP/C/7z/Zv9l318XDAADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABACD/oAHjAyAAUwAAJTQmJy4BJy4BJy4BNTQ2Nz4BNzUzFR4BFx4BFSM0JicuASMiBgcOARUUFhceARceARceARceARUUBgcOAQcVIzUuAScuATUzFBYXHgEzMjY3PgE1AYkPEBA0JTRLGBcYFxgXPylIKEAWFxZZEBAQLBwcLBAPDxAQEDUlJTkVFR4KCgoZGBlFLEgtRhoZGloREhIyICAyEhISuBYlDw8cDA8pGRlAJydAGhkeBVlaBSIdHE0yIjYUFBQPDw8pGhknDg8aDAwaDg4iExItGSlBGRkdBFxcBCAbHEswIjMSEhIPDw8qGgAAAgDe//ADYgLQAAgADAAAJSEXMwEjATM3NxsBIQGCATxHXf7nUv7nXkYcgoP++7LCAuD9IMJKAWj+mAAAAwAq/6ACfAMgAC0AOgBKAAAXIzUzESM1MzUzFTM1MxUeARceARUUBgcOAQceARceARUUBgcOAQcVIzUjFSM1ExUzMjY3PgE1NCYrATUzMjY3PgE1NCYnLgErARWbcXFxcV1SXixDGB0dDg4OJhkdLREREB4fHEswXlJdXZsgNBITE0VGnI0fMRITEhERETQiiwJOAilNXl5eXwMYExhHLhksExMeCggfFhc1IC9LGxkbAl9eXl4BTP4RERAvHUBASRAPDyoaHSsNDQ7iAAAAAAIAAP9gAlADYAAEAAkAAC0BCQEFEQEFJQEBKAEo/tj+2AEoASf+2f7YAShWsf5ZAaexAwr+DrKyAfIAAAEAZ//oAo4C2AAOAAA3ByE3IT8CBxMjAw8BN/ArAbsO/qYq9hj6N2JEhxWJ4PhR8ql2rAE6/nldcl4AAAEAZf/xAmUC0AA1AAA/AT4BNSczNSM1JzQ2Nz4BMzIWFx4BFzMuAScuASMiBgcOARUXIxUzFRcVFAYHDgEHIxUhNSHsBw8PBJ+hBRESES4cHS8REBEBVAEbGxtKLzFPHx4eBVFTBAcHBxIMIgH+/oc0ChY8JnZDBoQhNRQVFRERDyoaKUIZGhodHh1OMYpDBnAFGCoSEhUCQ0MAAAEAYv/rAm8C2AAWAAABCwEjEyMVMxUjFTMVMzUzNSM1MzUjEwIbsrZRwI6mpqZYqqqqjcAC2P6cAWT+hzRkNKioNGQ0AXkAAAEAVv/sAi8C1wA4AAAFDgEjIiYnLgEnNSM1MzUjNTM3PgE3PgEzMhYXBy4BIyIGBw4BBxUzFSMVMxUjFR4BFx4BMzI2NxcCLx05HT5gJCMlAVtbW1oBAiYjJF89GTogCBs1GitDFxgZAcPExMQBGRgYQyscNRkIBgcHJCQlZ0MGMlMyB0FlIyQjBwdFCAgbGxtLMQcyUzIHMk4cHBwICEQAAAAAAwAA/2ACUANgAAQACQAOAAATJQUJARcFJQkBJQ0BLQELAR8BF/7p/uEBAR8BJf7d/t8BIAEj/t3+1AEsAap5fQG6/kq1p6f+awGV3IKjpn8AAAAABABE/6AD/AMgAFsAiQCWAKYAAAE+ATc+ATc1MxUeARceARUjNCYnLgEjIgYHDgEVFBYXHgEXHgEXHgEXHgEVFAYHDgEHFSM1LgEnPgE3PgE3FBYzHgEzMjY3PgE1NCYnLgEnLgEnLgEnPgE1NCYnASM1MxEjNTM1MxUzNTMVHgEXHgEVFAYHDgEHHgEXHgEVFAYHDgEHFSM1IxUjNRMVMzI2Nz4BNTQmKwE1MzI2Nz4BNTQmJy4BKwEVAn0BAwIXQChIKT8XFhdZEBARKxwdLA8PEBAREDUlJDoVFB8KCgkYGRhFLEgnQBgFCwUMEgcBAREyIR8yEhMSEA8QNSUzSxgDBgIWFhQU/jdwcHBwXlJeK0QYHR0ODg4nGB0tERARHx8bTC9eUl5emiEzExMTRkWcjR8xEhITERERNCOKAoMCBAIZHgVZWgUiHRxNMiI2FBQUDw8PKRoZJw4PGgwMGg4OIhMTLBkpQRkZHQRcXAMZFgMIBAsXDgEBEhIPDw8qGhYlDw8cDA8pGQMHBBY6JCc8FP17TgIpTV5eXl8DGBMYRy4ZLBMTHgoIHxYXNSAvSxsZGwJfXl5eAUz+EREQLx1AQEkQDw8qGh0rDQ0O4gABAAAAAQAAkKfvAV8PPPUACwQAAAAAANYvBggAAAAA1i8GCAAA/2AD/ANgAAAACAACAAAAAAAAAAEAAANm/2cAAARAAAAAAAP8AAEAAAAAAAAAAAAAAAAAAAAOBAAAAAAAAAAAAAAAADMAAAIDACADgwDeAqcAKgJ9AAAC9ABnAswAZQLPAGIChgBWAmsAAARAAEQAAAAAAAoAFAAeAJgAtgEeATwBWgGoAcwCHgJIAzAAAAABAAAADgCnAAQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAFAD2AAEAAAAAAAAACgELAAEAAAAAAAEADgAAAAEAAAAAAAIABwG/AAEAAAAAAAMADgFrAAEAAAAAAAQADgHUAAEAAAAAAAUACwFKAAEAAAAAAAYADgGVAAEAAAAAAAoAMgB1AAEAAAAAAAsAGQAqAAEAAAAAAA0ACwEpAAMAAQQJAAAAFAEVAAMAAQQJAAEAHAAOAAMAAQQJAAIADgHGAAMAAQQJAAMAHAF5AAMAAQQJAAQAHAHiAAMAAQQJAAUAFgFVAAMAAQQJAAYAHAGjAAMAAQQJAAoAZACnAAMAAQQJAAsAMgBDAAMAAQQJAA0AFgE0YmluYXJ5X3N5bWJvbHMAYgBpAG4AYQByAHkAXwBzAHkAbQBiAG8AbABzaHR0cHM6Ly9zdHlsZS5iaW5hcnkuY29tLwBoAHQAdABwAHMAOgAvAC8AcwB0AHkAbABlAC4AYgBpAG4AYQByAHkALgBjAG8AbQAvQmluYXJ5LmNvbSBzeW1ib2xzIGZvbnQKRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4AQgBpAG4AYQByAHkALgBjAG8AbQAgAHMAeQBtAGIAbwBsAHMAIABmAG8AbgB0AAoARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuQmluYXJ5LmNvbQBCAGkAbgBhAHIAeQAuAGMAbwBtTUlUIExpY2Vuc2UATQBJAFQAIABMAGkAYwBlAG4AcwBlVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwYmluYXJ5X3N5bWJvbHMAYgBpAG4AYQByAHkAXwBzAHkAbQBiAG8AbABzYmluYXJ5X3N5bWJvbHMAYgBpAG4AYQByAHkAXwBzAHkAbQBiAG8AbABzUmVndWxhcgBSAGUAZwB1AGwAYQByYmluYXJ5X3N5bWJvbHMAYgBpAG4AYQByAHkAXwBzAHkAbQBiAG8AbABzAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("woff")}.symbols:before{font-family:BinarySymbols;margin-right:2px}.symbols,.symbols:before{transition:none;animation:none}.symbols.aud:before{content:'\0041\0024'}.symbols.eur:before{content:'\20AC'}.symbols.gbp:before{content:'\00A3'}.symbols.jpy:before{content:'\00A5'}.symbols.usd:before{content:'\0024'}.symbols.btc:before{content:'\0042'}.symbols.bch:before{content:'\e901'}.symbols.eth:before{content:'\0045'}.symbols.etc:before{content:'\e900'}.symbols.ltc:before{content:'\004c'} \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css b/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css new file mode 100644 index 0000000000000..f2a38d56379a2 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css @@ -0,0 +1,2908 @@ +@charset "UTF-8"; +@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@700&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Inconsolata&family=Montserrat:ital,wght@0,900;1,700&family=Poppins&family=Sura&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Inconsolata&family=Montserrat:ital,wght@0,900;1,700&family=Poppins&family=Sura&display=swap"); +.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done, .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active { + transform: translateX(-40%) translateY(0em); } + +.ciq-list .ciq-list-item { + font-size: 0.8em; } + +.cq-categorical-display .cq-item, +.cq-categorical-display .cq-active-item, +.cq-categorical-display .empty-category, +.cq-categorical-display .cq-filter, +.cq-categorical-display .cq-lookup-input > input, +.cq-categorical-display .category-title, +.cq-categorical-display .empty-category { + font-size: 0.8em; } + +.cq-categorical-display .category-title { + font-weight: bold; } + +.cq-categorical-display .empty-category { + padding: 0 0.8em 0.8em; } + +.cq-categorical-display .category.category-has-subtitle { + padding-top: 4em; } + +.notification-banner { + background-color: #f2f2f2; + display: flex; + flex-direction: row; + max-width: 940px; + width: 100%; + align-items: center; + align-items: center; + position: relative; + margin: 1rem auto; + left: 0; + transform: none; + z-index: 100 !important; } + .notification-banner__orange-hexagon { + display: none; + border-bottom: 130px solid #e98024; + border-left: 0 solid transparent; + border-right: 45px solid transparent; + height: 0; + width: 26rem; } + .notification-banner__content { + max-width: 425px; + width: 100%; + margin: auto 86px auto 9px; } + .notification-banner__content_header { + font-weight: 700; + margin: 0; + margin-bottom: 4px; + line-height: 24px; + font-size: 16px; } + .notification-banner__content_text { + margin: 0; + font-weight: 400; + line-height: 24px; + font-size: 16px; } + .notification-banner__content_button { + text-decoration: none; + text-align: center; + line-height: 100%; + padding: 8px 25px; + display: inline-block; + font-weight: 400; + font-family: inherit; + border-radius: 4px; + cursor: pointer; + font-size: 18px; + border: 0; + background: #2e8836; + color: #ffffff !important; + min-height: auto; } + @media (max-width: 1234px) { + .notification-banner__content { + margin-right: 20px; } } + @media (max-width: 1024px) { + .notification-banner__content { + position: absolute; + max-width: 400px; + color: #ffffff; } } + @media (max-width: 590px) { + .notification-banner__content { + max-width: 300px; } } + @media (max-width: 440px) { + .notification-banner__content { + max-width: 13rem; } } + @media (max-width: 1234px) { + .notification-banner { + max-width: 880px; } } + @media (max-width: 1024px) { + .notification-banner { + max-width: 700px; + padding: 0 10px 0 0; + transform: none; } + .notification-banner > img { + display: none; } + .notification-banner__orange-hexagon { + display: inline-block; } } + @media (max-width: 769px) { + .notification-banner { + max-width: 520px; + padding: 0 10px 0 0; + transform: none; } } + +.moving-banner { + display: flex; + position: relative; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: antialiased; + float: left; + height: calc(100% - 20px); + margin: 1rem 2rem 0; } + .moving-banner__text { + position: absolute; + left: 6rem; + font-weight: 700; + font-size: 14px; } + .moving-banner__button { + position: absolute; + right: 1.2rem; + transform: translate(0, 24%); + text-decoration: none; + text-align: center; + line-height: 24px; + padding: 4px 17.5px; + display: inline-block; + font-weight: 700; + font-family: inherit; + border-radius: 4px; + cursor: pointer; + font-size: 12px; + background: #ff444f; + color: #ffffff; + max-height: 2.4rem; } + .moving-banner__separator { + position: absolute; + left: -2rem; + top: 0.4rem; + width: 2px; + height: 38px; + background-color: #17212c; } + @media only screen and (max-width: 922px) { + .moving-banner__separator { + display: none; } } + @media only screen and (max-width: 520px) { + .moving-banner { + display: none; } } + +.dbot-banner { + font-family: 'IBM Plex Sans', sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: antialiased; + align-items: center; + align-self: center; + display: flex; + float: left; + height: calc(100% - 20px); + margin: 10px 0; } + .dbot-banner__icon { + margin-right: 8px; + margin-left: 32px; } + .dbot-banner__ad { + color: #fff; + margin-right: 16px; + display: flex; + justify-content: center; } + .dbot-banner__ad-text { + font-size: 16px; + font-weight: bold; + line-height: 1.5; } + .dbot-banner__button { + font-size: 14px; + background-color: #ff444f; + font-weight: bold; + vertical-align: middle; + align-items: center; + justify-content: center; + touch-action: manipulation; + cursor: pointer; + white-space: nowrap; + padding: 0 16px; + display: inline-flex; + border: 0; + height: 32px; + border-radius: 4px; + transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1); + outline: 0; + position: relative; + text-decoration: none; + text-transform: none !important; } + .dbot-banner__button:hover { + background: #eb3e48; } + .dbot-banner__button:focus { + outline: none; } + .dbot-banner__separator { + width: 2px; + height: 36px; + background-color: #17212c; } + +@media only screen and (max-width: 520px) { + .dbot-banner { + display: none; } } + +@media only screen and (max-width: 700px) { + .dbot-banner__separator { + display: none; } } + +@font-face { + font-family: 'binarybot'; + src: url("../font/binarybot.eot?61837987"); + src: url("../font/binarybot.eot?61837987#iefix") format("embedded-opentype"), url("../font/binarybot.woff2?61837987") format("woff2"), url("../font/binarybot.woff?61837987") format("woff"), url("../font/binarybot.ttf?61837987") format("truetype"), url("../font/binarybot.svg?61837987#binarybot") format("svg"); + font-weight: normal; + font-style: normal; } + +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ +/* +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: 'binarybot'; + src: url('../font/binarybot.svg?61837987#binarybot') format('svg'); + } +} +*/ +[class^="icon-"]:before, [class*=" icon-"]:before { + font-family: "binarybot"; + font-style: normal; + font-weight: normal; + speak: none; + display: inline-block; + text-decoration: inherit; + width: 1em; + margin-right: .2em; + text-align: center; + /* opacity: .8; */ + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + margin-left: .2em; + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } + +.icon-zoom-in:before { + content: '\e800'; } + +/* '' */ +.icon-redo:before { + content: '\e801'; } + +/* '' */ +.icon-browse:before { + content: '\e802'; } + +/* '' */ +.icon-undo:before { + content: '\e803'; } + +/* '' */ +.icon-summary:before { + content: '\e804'; } + +/* '' */ +.icon-stop:before { + content: '\e805'; } + +/* '' */ +.icon-run:before { + content: '\e806'; } + +/* '' */ +.icon-close:before { + content: '\e807'; } + +/* '' */ +.icon-reset:before { + content: '\e808'; } + +/* '' */ +.icon-zoom-out:before { + content: '\e809'; } + +/* '' */ +.icon-menu:before { + content: '\e80a'; } + +/* '' */ +.icon-save:before { + content: '\e80b'; } + +/* '' */ +.icon-trading-view:before { + content: '\e810'; } + +/* '' */ +.icon-info:before { + content: '\f129'; } + +/* '' */ +.icon-sort:before { + content: '\f160'; } + +/* '' */ +.icon-chart-line:before { + content: '\f201'; } + +/* '' */ +.icon-hide-header { + background: url("../image/expand_less.svg") no-repeat center; } + .icon-hide-header:before { + content: ' '; } + .icon-hide-header.enabled { + background: url("../image/expand_more.svg") no-repeat center; } + +.icon-clear { + background: url("../image/clear.svg") no-repeat center; } + .icon-clear:before { + content: ' '; } + .icon-clear:disabled { + background: url("../image/clear-disabled.svg") no-repeat center; } + +.icon-integrations { + background: url("../image/google_drive.svg") no-repeat center; } + .icon-integrations:before { + content: ' '; } + +#toolbox { + background-color: #f2f2f2; + border-bottom: 1px solid #dedede; + padding: 2px 3px; + z-index: 0; + overflow: auto; } + #toolbox #runButton[disabled], #toolbox #runButton[disabled]:hover, #toolbox #stopButton[disabled], #toolbox #stopButton[disabled] { + background-color: #f2f2f2; + color: #dedede; } + #toolbox .toolbox-button { + background-color: #f2f2f2; + color: #000000; + padding: 0em; + width: 40px; + height: 40px; + font-size: 1.500em; } + #toolbox .toolbox-button:hover { + background-color: #dddddd; } + #toolbox .toolbox-button:focus { + outline: none; } + #toolbox .box.is-dragover { + background-color: grey; } + #toolbox .toolbox-separator { + background-color: #dedede; + display: inline-block; + height: 15px; + margin: 0 5px; + user-select: none; + width: 2px; } + +#toolbox-login { + margin-top: 1px; + margin-right: 20px; } + +#toolbox-account { + display: table; + height: 40px; } + +#toolbox-account-list { + position: relative; + user-select: none; + display: table-cell; + vertical-align: middle; + padding-right: 20px; } + #toolbox-account-list > a { + color: #000000; } + #toolbox-account-list > a:hover, #toolbox-account-list > a:visited { + text-decoration: none; } + +#toolbox-main-account { + display: inline; + padding-inline-start: 0; } + #toolbox-main-account > li { + display: inline; + margin: 0 2px; } + #toolbox-main-account > li:not(:first-child):not(:last-child):before { + content: '\2022'; + margin-right: 7px; } + #toolbox-main-account > .nav-caret { + display: inline-block; } + +#toolbox-all-accounts { + border: 0; + z-index: 100; + margin-top: -1px; + background: none; + right: 20px; } + #toolbox-all-accounts li { + height: 100%; } + #toolbox-all-accounts li a { + margin-top: 0; } + +button > .barspinner.white { + position: relative; + margin: 3px auto; + height: 13px; + top: initial; + left: initial; } + +@keyframes animate-circle { + 0% { + transform: translate(-50%, -50%) scale(0); } + 50% { + transform: translate(-50%, -50%) scale(1); } + 100% { + transform: translate(-50%, -50%) scale(0); } } + +@keyframes animate-progress { + 0% { + width: 0%; } + 100% { + width: 50%; } } + +@keyframes animate-progress-complete { + 0% { + width: 50%; } + 100% { + width: 100%; } } + +@keyframes slide-tooltip { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } + +#summaryPanel { + border-radius: 4px; + border: 1px solid #f2f2f2; + box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1); } + #summaryPanel .content-row { + margin-bottom: 1em; } + #summaryPanel p { + margin: 0em; } + #summaryPanel #sync-warning { + font-size: 11px; + color: lightgray; } + #summaryPanel #current-trade-status { + margin-top: 3.5em; } + #summaryPanel .stage { + display: inline-block; + margin: 0 8.68% 0 8.68%; + vertical-align: top; + max-width: 120px; } + #summaryPanel .stage .stage-tooltip .triangle { + margin-top: 0.7em; + margin-left: 50%; + transform: translate(-50%, -50%); + height: 10px; + width: 10px; + border: 10px solid #fef1cf; + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; } + #summaryPanel .stage .stage-tooltip.top { + margin-bottom: 0.5em; + margin-top: -2.5em; + position: absolute; } + #summaryPanel .stage .stage-tooltip p { + font-size: 11px; + text-align: center; + margin-top: -0.91em; + padding: 0.5em; + border-radius: 0.5em; + background-color: #fef1cf; + width: 120px; } + #summaryPanel .stage .stage-tooltip.running p { + color: #468847; + background-color: #DFF0D8; + border-color: #D6E9C6; } + #summaryPanel .stage-tooltip { + visibility: hidden; } + #summaryPanel .stage-tooltip.active { + visibility: visible; + animation: slide-tooltip 0.8s 1; } + #summaryPanel .stage-label { + text-align: center; + font-size: 11px; + min-height: 24px; } + #summaryPanel .circle-wrapper { + width: 1em; + height: 1em; + display: inline-block; + transform: translate(-50%, 50%); + margin-left: 50%; } + #summaryPanel .circle-wrapper .static-circle { + width: 1em; + height: 1em; + border-radius: 100%; + border: 0.25em solid #F2F2F2; + display: inline-block; + position: relative; + background-color: #F2F2F2; } + #summaryPanel .circle-wrapper.active .static-circle { + width: 1em; + height: 1em; + border-radius: 100%; + border: 0.25em solid #E98024; + display: inline-block; + position: relative; + background-color: #FFF; + z-index: 2; } + #summaryPanel .circle-wrapper.active .dynamic-circle { + position: absolute; + width: 1.5em; + height: 1.5em; + background-color: #E98024; + border-radius: 100%; + opacity: 0.32; + animation: animate-circle 0.8s infinite; + transform: translate(-50%, -50%); + margin-top: 50%; + margin-left: -50%; + animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); + z-index: 1; } + #summaryPanel .circle-wrapper.complete .static-circle { + width: 1em; + height: 1em; + border-radius: 100%; + border: 0.25em solid #E98024; + display: inline-block; + position: relative; + background-color: #FFF; + z-index: 2; } + #summaryPanel .line { + position: absolute; + display: inline-block; + top: 37.5%; + width: 3050%; + height: 0.25em; + background-color: #F2F2F2; } + #summaryPanel .line.active .progress-bar { + float: left; + box-shadow: none; + height: 100%; + background-color: #E98024; + display: inline-block; + animation: animate-progress 0.5s 1; + animation-fill-mode: forwards; } + #summaryPanel .line.complete .progress-bar { + box-shadow: none; + height: 100%; + background-color: #E98024; + display: inline-block; + animation: animate-progress-complete 0.5s 1; + animation-fill-mode: forwards; } + #summaryPanel .summary-toolbox { + text-align: center; + position: relative; } + #summaryPanel .summary-toolbox .toolbox-button { + border-radius: 50%; + margin: 0 auto 0.313em; + background-color: #f2f2f2; + color: #000000; + padding: 0em; + width: 40px; + height: 40px; + font-size: 1.500em; } + #summaryPanel .summary-toolbox .toolbox-button:hover { + background-color: #dddddd; } + #summaryPanel .summary-toolbox .toolbox-button[disabled], #summaryPanel .summary-toolbox .toolbox-button[disabled]:hover { + background-color: #f2f2f2; + color: #dedede; } + #summaryPanel .summary-toolbox .toolbox-button:focus { + outline: none; } + #summaryPanel .summary-toolbox #summaryClearButton { + position: absolute; + right: 10px; } + +#fileBrowser { + width: 388px; + height: 76px; + margin-left: -194px; + margin-top: -38px; } + +.draggable-dialog { + display: none; } + .draggable-dialog .content { + padding: 0 5px; + background: #ffffff; + cursor: default; } + .draggable-dialog .content table { + border: 1px solid #f2f2f2; } + .draggable-dialog table { + overflow: auto; + width: 100%; } + .draggable-dialog table, + .draggable-dialog td, + .draggable-dialog th { + border-collapse: collapse; } + .draggable-dialog td, + .draggable-dialog th { + text-align: center !important; + padding: 3px !important; + height: 2em; + font-size: 11px; } + .draggable-dialog #chart { + width: 100%; + height: 20em; + border: 1px solid #f2f2f2; + border-radius: 3px; } + +.dialog-content { + padding: 0 15px 15px 15px; + background: white; + cursor: default; } + +.warn .react-grid-Cell { + background: #fbeed5; } + +.success .react-grid-Cell { + background: #dff0d8; } + +.error .react-grid-Cell { + background: #f2dede; } + +.info .react-grid-Cell { + background: #d9edf7; } + +.ui-widget .react-grid-Main { + outline: none; } + +.ui-widget .react-grid-Grid { + border: 1px solid #f2f2f2; } + +.ui-widget .react-grid-Cell { + border-bottom: 1px solid #f2f2f2; + border-right: 1px solid #f2f2f2; } + +.ui-widget .react-grid-HeaderCell { + font-size: 11px; + border-bottom: 1px solid #f2f2f2; + border-right: 1px solid #f2f2f2; + padding-left: 8px !important; + display: flex !important; + align-items: center; } + +.ui-widget .react-grid-Row { + font-size: 11px; } + +#summaryPanel .react-grid-Row .react-grid-Cell:last-child, +#summaryPanel .react-grid-Row .react-grid-Cell:nth-last-child(2) { + text-align: right; } + +#tradeInfo { + margin-bottom: 10px; } + +#chart-dialog-component { + width: 100% !important; } + +.sc-search-input .searchInputClassName { + font-size: 1rem; + height: 1.85rem !important; + margin-top: 0.25rem; + font-family: "IBM Plex Sans",sans-serif; } + +.form--sc-views__input .sc-input { + font-size: 1rem; + font-weight: 400; } + +.sc-btn.sc-btn--sm { + font-size: 0.8rem; + font-weight: 700; + font-style: normal; } + +#trading-view-dialog-component { + width: 100% !important; } + +.icon-close { + width: 1.5em !important; + height: 1.5em !important; } + +.ui-dialog-content { + padding: 0px !important; } + .ui-dialog-content.ui-widget-content input[type=text] { + height: 40px; + width: 100%; } + .ui-dialog-content.ui-widget-content .description { + font-size: 75%; + margin: 0.5em 0; } + .ui-dialog-content.ui-widget-content .input-row { + margin: 1em 0; } + .ui-dialog-content.ui-widget-content .input-row.last { + margin-bottom: 0; } + +#load-dialog .integration-option, #save-dialog .integration-option { + margin: 0.5em; } + +#save-dialog #collection { + padding: 1.2em; + border: 1px solid #f2f2f2; + border-radius: 10px; } + #save-dialog #collection .description { + margin-left: 21px; + margin-top: 0.2em; + margin-bottom: 0; } + +#integrations-dialog .integration { + display: table; + width: 100%; } + #integrations-dialog .integration h2 { + color: #000000; + font-size: 20px; + margin: 0 0 0.2em 0; } + #integrations-dialog .integration .left { + width: 60%; + display: table-cell; + vertical-align: top; } + #integrations-dialog .integration .right { + width: 39%; + display: table-cell; + text-align: right; } + #integrations-dialog .integration .right > a { + display: block; } + #integrations-dialog .integration .integration-user { + color: #b9b9b9; + font-size: 75%; } + +.blocklyTreeRow { + box-shadow: inset 0 -0.063em 0 0 #dedede; } + +.blocklyText { + fill: #000000 !important; } + +.blocklyTreeSelected .blocklyTreeLabel { + color: #ffffff !important; } + +.blocklyTreeRow.blocklyTreeSelected .blocklyTreeIcon.blocklyTreeIconOpen, +.blocklyTreeRow.blocklyTreeSelected .blocklyTreeIcon.blocklyTreeIconClosedLtr { + filter: invert(100%); } + +.blocklyTreeIcon.blocklyTreeIconOpen { + background-image: url(../image/down-arrow.svg) !important; + background-position: -0.188em -0.375em !important; } + +.blocklyTreeIcon.blocklyTreeIconClosedLtr { + background-image: url(../image/down-arrow.svg) !important; + background-position: -0.188em -0.375em !important; } + +.blocklyTreeRow.blocklyTreeSelected { + background-color: #2a3052 !important; } + +.blocklyTreeRow:not(.blocklyTreeSelected):hover { + background-color: #dedede !important; } + +.blocklyToolboxDiv .blocklyTreeRow { + color: #000000; } + +.blocklyEditableText tspan { + fill: #000000 !important; } + +.blocklyEditableText rect { + fill-opacity: 1 !important; } + +.blocklyFlyoutBackground { + fill: #ffffff !important; + fill-opacity: 1 !important; + stroke: #dedede; + stroke-width: 0.063em; } + +.blocklyToolboxDiv { + background-color: #f2f2f2 !important; + border-width: thin; + color: #dedede; + border-right: 0.063em solid; + min-width: 11em; } + +.blocklyIconShape { + fill: #2a3052 !important; } + +.blocklyIconGroup:not(:hover), +.blocklyIconGroupReadonly { + opacity: 1 !important; } + +.blocklyScrollbarVertical, +.blocklyScrollbarHorizontal { + display: none; } + +.blocklyTreeRow { + margin-bottom: 0px !important; + height: 1.9em !important; + padding-top: 0.250em; } + +.blocklyToolboxDiv { + z-index: 99 !important; + left: -100%; + overflow-x: hidden !important; } + +.blocklySvg { + position: absolute; } + +.blocklyMainBackground { + stroke: none; } + +#toolbox { + background-color: #f2f2f2; + border-bottom: 1px solid #dedede; + padding: 2px 3px; + z-index: 0; + overflow: auto; } + #toolbox #runButton[disabled], #toolbox #runButton[disabled]:hover, #toolbox #stopButton[disabled], #toolbox #stopButton[disabled] { + background-color: #f2f2f2; + color: #dedede; } + #toolbox .toolbox-button { + background-color: #f2f2f2; + color: #000000; + padding: 0em; + width: 40px; + height: 40px; + font-size: 1.500em; } + #toolbox .toolbox-button:hover { + background-color: #dddddd; } + #toolbox .toolbox-button:focus { + outline: none; } + #toolbox .box.is-dragover { + background-color: grey; } + #toolbox .toolbox-separator { + background-color: #dedede; + display: inline-block; + height: 15px; + margin: 0 5px; + user-select: none; + width: 2px; } + +#toolbox-login { + margin-top: 1px; + margin-right: 20px; } + +#toolbox-account { + display: table; + height: 40px; } + +#toolbox-account-list { + position: relative; + user-select: none; + display: table-cell; + vertical-align: middle; + padding-right: 20px; } + #toolbox-account-list > a { + color: #000000; } + #toolbox-account-list > a:hover, #toolbox-account-list > a:visited { + text-decoration: none; } + +#toolbox-main-account { + display: inline; + padding-inline-start: 0; } + #toolbox-main-account > li { + display: inline; + margin: 0 2px; } + #toolbox-main-account > li:not(:first-child):not(:last-child):before { + content: '\2022'; + margin-right: 7px; } + #toolbox-main-account > .nav-caret { + display: inline-block; } + +#toolbox-all-accounts { + border: 0; + z-index: 100; + margin-top: -1px; + background: none; + right: 20px; } + #toolbox-all-accounts li { + height: 100%; } + #toolbox-all-accounts li a { + margin-top: 0; } + +button > .barspinner.white { + position: relative; + margin: 3px auto; + height: 13px; + top: initial; + left: initial; } + +.reality-check { + position: fixed; + display: none; + top: calc(50% - 7em); + width: 96%; + padding-bottom: 0.5em; + left: 2%; + background-color: white; + z-index: 9999; + border-radius: 0.1em; } + .reality-check p { + font-size: 1.2em; + margin: 0.4em; } + .reality-check h1 { + margin: 0.2em; } + .reality-check #realityDuration { + margin-left: 0.2em; } + .reality-check button, + .reality-check a { + float: right; + margin-bottom: 0em; + margin-right: 0.5em; + position: relative; } + .reality-check .error-msg { + font-size: 0.8em; + left: 50%; } + +.joyride-beacon { + appearance: none; + background-color: transparent; + border: 0; + cursor: pointer; + display: inline-block; + line-height: 1; + padding: 0; + height: 36px; + position: relative; + width: 36px; + z-index: 1500; } + .joyride-beacon:active, .joyride-beacon:focus, .joyride-beacon:hover { + outline: none; } + .joyride-beacon__inner { + animation: joyride-beacon-inner 1.2s infinite ease-in-out; + background-color: #e98024; + border-radius: 50%; + display: block; + height: 50%; + left: 50%; + opacity: 0.7; + position: absolute; + top: 50%; + transform: translate(-50%, -50%); + width: 50%; } + .joyride-beacon__outer { + animation: joyride-beacon-outer 1.2s infinite ease-in-out; + background-color: rgba(233, 128, 36, 0.2); + border: 2px solid #e98024; + border-radius: 50%; + box-sizing: border-box; + display: block; + height: 100%; + left: 0; + opacity: 0.9; + position: absolute; + top: 0; + transform: translateY(-50%); + transform-origin: center; + width: 100%; } + +.joyride-overlay { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; + z-index: 1500; } + +.joyride-hole { + border-radius: 4px; + box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5); + position: absolute; } + .joyride-hole.safari { + box-shadow: 0 0 999px 9999px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5); } + +.joyride-tooltip { + background-color: #fff; + border-radius: 4px; + color: #555; + cursor: default; + filter: drop-shadow(-1px -2px 3px rgba(0, 0, 0, 0.3)) drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.3)); + opacity: 0; + padding: 20px; + pointer-events: auto; + transform: translate3d(0, 0, 0); + width: 15em; + z-index: 1510; } + .joyride-tooltip--animate { + animation: joyride-tooltip 0.4s forwards; + animation-timing-function: cubic-bezier(0, 1.05, 0.55, 1.18); } + .joyride-tooltip__triangle { + background-repeat: no-repeat; + position: absolute; } + .joyride-tooltip.bottom, .joyride-tooltip.bottom-left, .joyride-tooltip.bottom-right { + margin-top: 18px; } + .joyride-tooltip.bottom .joyride-tooltip__triangle, .joyride-tooltip.bottom-left .joyride-tooltip__triangle, .joyride-tooltip.bottom-right .joyride-tooltip__triangle { + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2236px%22%20height%3D%2218px%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20points%3D%220%2C%200%208%2C%208%2016%2C0%22%20fill%3D%22%23fff%22%20transform%3D%22scale%282.25%29%20rotate%28180 8 4%29%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E"); + height: 18px; + left: 50%; + top: -16px; + transform: translateX(-50%); + width: 36px; } + .joyride-tooltip.top, .joyride-tooltip.top-left, .joyride-tooltip.top-right { + margin-bottom: 18px; } + .joyride-tooltip.top .joyride-tooltip__triangle, .joyride-tooltip.top-left .joyride-tooltip__triangle, .joyride-tooltip.top-right .joyride-tooltip__triangle { + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2236px%22%20height%3D%2218px%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20points%3D%220%2C%200%208%2C%208%2016%2C0%22%20fill%3D%22%23fff%22%20transform%3D%22scale%282.25%29%20rotate%280%29%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E"); + bottom: -16px; + height: 18px; + left: 50%; + transform: translateX(-50%); + width: 36px; } + .joyride-tooltip.bottom-left .joyride-tooltip__triangle, .joyride-tooltip.top-left .joyride-tooltip__triangle { + left: 3%; + transform: translateX(0); } + @media screen and (min-width: 480px) { + .joyride-tooltip.bottom-left .joyride-tooltip__triangle, .joyride-tooltip.top-left .joyride-tooltip__triangle { + left: 2%; } } + .joyride-tooltip.bottom-right .joyride-tooltip__triangle, .joyride-tooltip.top-right .joyride-tooltip__triangle { + left: auto; + right: 3%; + transform: translateX(0); } + @media screen and (min-width: 480px) { + .joyride-tooltip.bottom-right .joyride-tooltip__triangle, .joyride-tooltip.top-right .joyride-tooltip__triangle { + right: 2%; } } + .joyride-tooltip.left { + margin-right: 18px; } + .joyride-tooltip.left .joyride-tooltip__triangle { + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218px%22%20height%3D%2236px%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20points%3D%220%2C%200%208%2C%208%2016%2C0%22%20fill%3D%22%23fff%22%20transform%3D%22scale%282.25%29%20rotate%28270 8 8%29%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E"); + height: 36px; + right: -16px; + width: 18px; } + .joyride-tooltip.right { + margin-left: 18px; } + .joyride-tooltip.right .joyride-tooltip__triangle { + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218px%22%20height%3D%2236px%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20points%3D%220%2C%200%208%2C%208%2016%2C0%22%20fill%3D%22%23fff%22%20transform%3D%22scale%282.25%29%20rotate%2890 4 4%29%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E"); + height: 36px; + left: -16px; + width: 18px; } + .joyride-tooltip__close { + appearance: none; + background-color: transparent; + border: 0; + cursor: pointer; + display: inline-block; + line-height: 1; + padding: 0; + background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2212px%22%20height%3D%2212px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.117.323l-6.073%206.075-5.449-6.075c-.431-.431-1.131-.431-1.562%200-.431.431-.431%201.131%200%201.562l5.449%206.075-6.159%206.159c-.431.431-.431%201.134%200%201.562.431.431%201.131.431%201.562%200l6.075-6.073%205.449%206.073c.429.431%201.131.431%201.56%200%20.431-.429.431-1.131%200-1.562l-5.452-6.073%206.159-6.161c.431-.431.431-1.131%200-1.562-.431-.431-1.129-.431-1.56%200z%22%20fill%3D%22rgba(85, 85, 85, 0.5)%22%2F%3E%3C%2Fsvg%3E"); + background-repeat: no-repeat; + background-size: contain; + height: 12px; + position: absolute; + right: 10px; + text-decoration: none; + top: 10px; + width: 12px; + z-index: 10; + display: block; } + .joyride-tooltip__close:active, .joyride-tooltip__close:focus, .joyride-tooltip__close:hover { + outline: none; } + .joyride-tooltip__close:hover, .joyride-tooltip__close:focus { + color: rgba(60, 60, 60, 0.5); + outline: none; } + .joyride-tooltip__close--header { + right: 20px; + top: 20px; } + .joyride-tooltip__header { + border-bottom: 1px solid #e98024; + color: #555; + font-size: 20px; + padding-bottom: 6px; + padding-right: 18px; + position: relative; } + .joyride-tooltip__header ~ .joyride-tooltip__main { + padding: 12px 0 18px; } + .joyride-tooltip__main { + font-size: 16px; + padding-bottom: 18px; + padding-right: 18px; } + .joyride-tooltip__footer { + text-align: right; } + .joyride-tooltip__button { + appearance: none; + background-color: transparent; + border: 0; + cursor: pointer; + display: inline-block; + line-height: 1; + padding: 0; } + .joyride-tooltip__button:active, .joyride-tooltip__button:focus, .joyride-tooltip__button:hover { + outline: none; } + .joyride-tooltip__button--primary { + background-color: #2e8836; + border-radius: 4px; + color: #fff; + padding: 6px 12px; + transition: background-color 0.2s ease-in-out; } + .joyride-tooltip__button--primary:active, .joyride-tooltip__button--primary:focus, .joyride-tooltip__button--primary:hover { + background-color: #369f3f; + color: #fff; } + .joyride-tooltip__button--secondary { + color: #e98024; + margin-right: 10px; } + .joyride-tooltip__button--skip { + color: #ccc; + float: left; + margin-right: 10px; } + .joyride-tooltip--standalone .joyride-tooltip__main { + padding-bottom: 0; } + .joyride-tooltip--standalone .joyride-tooltip__footer { + display: none; } + @media screen and (min-width: 480px) { + .joyride-tooltip { + width: 20em; } } + @media screen and (min-width: 960px) { + .joyride-tooltip { + width: 20em; } } + +@keyframes joyride-tooltip { + 0% { + transform: scale(0.1); } + 100% { + opacity: 1; + transform: perspective(1px) scale(1); } } + +@keyframes joyride-beacon-inner { + 20% { + opacity: 0.9; } + 90% { + opacity: 0.7; } } + +@keyframes joyride-beacon-outer { + 0% { + transform: scale(1); } + 45% { + opacity: 0.7; + transform: scale(0.75); } + 100% { + opacity: 0.9; + transform: scale(1); } } + +#tour { + position: absolute; + display: inline; + bottom: 1em; + right: 1em; + z-index: 999 !important; } + +.tour-first-pop-up .joyride-tooltip { + position: fixed !important; } + .tour-first-pop-up .joyride-tooltip__main { + padding-bottom: 0; } + +.tour-custom-buttons { + text-align: center; + margin-top: 1em; + button-margin-left: 0.1em; } + +.joyride-tooltip__button { + padding: 10px 25px; } + .joyride-tooltip__button--primary { + color: #ffffff; + background-color: #2e8836; } + .joyride-tooltip__button--primary:hover { + color: #ffffff; + background-color: #14602b; } + .joyride-tooltip__button--secondary { + color: #000000; + background-color: #f2f2f2; } + .joyride-tooltip__button--secondary:hover { + background-color: #dedede; } + +#elevio-shell { + height: 60px; + min-width: 60px; + display: flex; + justify-content: center; + align-items: center; + background-color: #e98024; + position: fixed; + right: 20px !important; + bottom: 20px !important; + border-radius: 100px; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15); + transition: box-shadow 0.3s ease-in-out; + cursor: pointer; + z-index: 10000 !important; } + #elevio-shell:hover .text { + max-width: 1000px; + padding: 0 25px; } + #elevio-shell .icon { + float: right; + padding: 0 15px; + transform: translateY(2px); } + #elevio-shell .icon svg { + fill: #ffffff; + height: 30px !important; + width: 30px !important; } + #elevio-shell .text { + float: left; + display: inline-block; + padding: 0; + line-height: 60px; + overflow: hidden; + white-space: nowrap; + max-width: 0; + transition: max-width 0.1s ease, padding 0.1s ease; + color: #ffffff; + font-size: 13px; } + +.navigation-to-deriv { + z-index: 100; } + +.navigation { + display: block; + background: #16212d; + position: absolute; + top: 0; + left: 0; + right: 0; + background: transparent; } + .navigation-container { + display: flex; + align-items: center; + justify-content: space-between; + padding: 2rem 3rem; + max-width: 1440px; + margin: 0px auto; } + @media (max-width: 1024px) { + .navigation-container { + padding: 16px; } } + .navigation-logo { + width: 138px; } + .navigation-logo img { + width: 100%; } + .navigation .right-btn { + padding: 10px 16px; + font: 700 0.9rem "IBM Plex Sans", sans-serif; + text-transform: none; + border-radius: 6px; + margin-left: 22px; } + @media (max-width: 1024px) { + .navigation .right-btn { + display: none; } } + +.binary-section-container { + margin: 0 auto; + max-width: 1400px; } + +.l-btn-binary { + height: 2.5rem; + border-radius: 0.25rem; + font: 700 0.875rem "IBM Plex Sans", sans-serif; + background-color: #fff !important; + color: #000; + outline: none; + border: none; + padding: 0 1rem; + cursor: pointer; + text-transform: none; } + .l-btn-binary.primary { + background-color: #2E8836 !important; + color: #fff; } + .l-btn-binary.primary:hover { + background-color: #246d2a !important; + color: #fff; } + .l-btn-binary.danger { + background: #FF444F !important; + color: #fff; } + .l-btn-binary.danger:hover { + background-color: #cd353e !important; + color: #fff; } + .l-btn-binary:hover { + background-color: #C2C2C2 !important; + color: #000; } + .l-btn-binary.transparent { + background-color: transparent !important; + border: solid 2px #999999; + text-transform: none; } + .l-btn-binary.transparent:hover { + background-color: #C2C2C2 !important; } + +.btn-group-binary { + display: flex; + flex-wrap: wrap; + gap: 24px; } + .btn-group-binary button { + min-width: max-content; } + @media (max-width: 1024px) { + .btn-group-binary { + text-align: center; + margin-bottom: 2.4rem; + gap: 16px; } + .btn-group-binary button { + flex: 1; } } + +.switch { + background: url(../image/sectionTwoLandingBackground.png) no-repeat; + background-size: cover; } + .switch-inner { + display: flex; + align-items: center; } + @media (max-width: 1080px) { + .switch-inner { + padding: 0 2rem; } } + @media (max-width: 1024px) { + .switch-inner { + padding: 0; + flex-direction: column; } } + @media (max-width: 1024px) { + .switch-inner__placeholder img { + object-fit: contain; + width: 100%; } } + .switch-inner__content h1 { + margin-bottom: 1.5rem; + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + color: #333333; } + @media (max-width: 1024px) { + .switch-inner__content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; } } + .switch-inner__content h2 { + margin-bottom: 1.5rem; + font: 400 2rem "IBM Plex Sans", sans-serif; + line-height: 3rem; + color: #333333; } + @media (max-width: 1024px) { + .switch-inner__content h2 { + font: 400 1.2rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; } } + @media (max-width: 1024px) { + .switch-inner__content .btn-group-binary { + padding: 0 1rem 0 1rem; } } + +.landing_carousel { + display: flex !important; + align-items: center; + justify-content: center; + display: flex !important; + margin: 0px auto; + padding: 5rem 0; } + @media (max-width: 1024px) { + .landing_carousel { + display: flex !important; + flex-direction: column-reverse; + text-align: center; } } + .landing_carousel_content h1 { + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + margin-bottom: 2rem; + color: #333333; } + @media (max-width: 1024px) { + .landing_carousel_content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + margin-bottom: 1rem; } } + .landing_carousel_content h2 { + font: 400 2rem "IBM Plex Sans", sans-serif; + line-height: 3rem; + margin-bottom: 2rem; + color: #333333; } + @media (max-width: 1024px) { + .landing_carousel_content h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 1rem; } } + .landing_carousel_placeholder { + width: 100%; + align-items: center; + justify-content: center; + display: flex; } + @media (max-width: 1024px) { + .landing_carousel_placeholder { + display: flex; + /* align-items: center; */ + justify-content: center; } } + @media (max-width: 1024px) { + .landing_carousel_placeholder img { + object-fit: contain; + width: 100%; } } + +@media (max-width: 800px) { + .binary-choose-wrapper { + padding-top: 40px; } } + +.binary-choose-wrapper-inner { + padding: 3rem 0; } + .binary-choose-wrapper-inner-description { + max-width: 406px; } + .binary-choose-wrapper-inner-title { + color: #333333; + text-align: center; + font: 700 2rem "IBM Plex Sans", sans-serif; + line-height: 2rem; + margin-bottom: 4rem; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-title { + margin-bottom: 1.5rem; + font-size: 1.3em; } } + .binary-choose-wrapper-inner-section-content { + display: flex; + color: #333333; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-section-content { + flex-direction: column; + padding: 0 2rem; } } + .binary-choose-wrapper-inner-placeholder { + margin-right: 2rem; } + .binary-choose-wrapper-inner-right, .binary-choose-wrapper-inner-left { + width: 50%; + padding: 0 10rem; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-right, .binary-choose-wrapper-inner-left { + width: 100%; + padding: unset; } } + .binary-choose-wrapper-inner-right-content, .binary-choose-wrapper-inner-left-content { + display: flex; + margin-right: 2rem; + min-height: 108px; + margin-bottom: 1rem; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-right-content, .binary-choose-wrapper-inner-left-content { + margin-right: 1rem; + min-height: unset; + margin-bottom: 1.3rem; } } + .binary-choose-wrapper-inner-right-content h1, .binary-choose-wrapper-inner-left-content h1 { + margin-top: 0; + font: 700 1.6rem "IBM Plex Sans", sans-serif; + color: #333333; + margin-bottom: 8px; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-right-content h1, .binary-choose-wrapper-inner-left-content h1 { + font: 700 1.3rem "IBM Plex Sans", sans-serif; + margin-bottom: 8px; } } + .binary-choose-wrapper-inner-right-content h2, .binary-choose-wrapper-inner-left-content h2 { + margin-top: 0; + font: 400 1rem "IBM Plex Sans", sans-serif; + color: #333333; } + @media (max-width: 1024px) { + .binary-choose-wrapper-inner-right-content h2, .binary-choose-wrapper-inner-left-content h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 0; } } + .binary-choose-wrapper-inner-right { + padding-left: 0; } + .binary-choose-wrapper-inner-left { + padding-right: 0; } + .binary-choose-wrapper-inner_btn { + display: flex; + justify-content: center; } + +.carousel-wrapper { + margin: 0 auto; } + .carousel-wrapper .slick-slider { + padding: 0 2rem; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-slider { + padding: 0 3rem; } } + .carousel-wrapper .slick-slider .slick-arrow.slick-next { + transform: rotate(180deg); + top: 56%; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-slider .slick-arrow.slick-next { + top: 54%; } + .carousel-wrapper .slick-slider .slick-arrow.slick-next .slick-next { + right: 0; } + .carousel-wrapper .slick-slider .slick-arrow.slick-next .slick-prev { + left: 0; } } + .carousel-wrapper .slick-dots { + bottom: 0; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-dots { + left: 0; } } + .carousel-wrapper .placeholder-outer { + position: relative; + width: 100%; + height: 20rem; + display: flex; + justify-content: center; + align-items: center; } + @media (max-width: 1024px) { + .carousel-wrapper .placeholder-outer { + height: 15rem; } } + .carousel-wrapper .placeholder-outer .caousel_laptop { + position: absolute; + top: 0; + z-index: 1; } + .carousel-wrapper .placeholder-outer .caousel_laptop_holder { + position: absolute; + top: 0; + z-index: 2; + width: 56%; + top: 45px; + height: 200px; } + @media (max-width: 1024px) { + .carousel-wrapper .placeholder-outer .caousel_laptop_holder { + top: -10px; + width: 72%; } } + +.arrow.right { + transform: rotate(180deg); } + +.binary-wait-wrapper { + background: url("../image/pattern.png") no-repeat right; + background-size: 60% 100%; + min-height: 18.75rem; + position: relative; } + @media (max-width: 1024px) { + .binary-wait-wrapper { + min-height: 43.75rem; + background-image: none; } } + .binary-wait-wrapper-inner { + display: flex; + margin: 0px auto; + justify-content: space-between; + padding: 0; } + @media (max-width: 1024px) { + .binary-wait-wrapper-inner { + justify-content: center; + text-align: center; + flex-direction: column; + box-shadow: inset 0px 1px 0px #f2f3f4; + margin-top: 2rem; } } + .binary-wait-wrapper-inner-content h1 { + font: 700 3rem "IBM Plex Sans", sans-serif; + color: #333333; + margin-bottom: 0.5rem; } + @media (max-width: 400px) { + .binary-wait-wrapper-inner-content h1 { + font-size: 2rem; } } + .binary-wait-wrapper-inner-content h2 { + margin-top: 0.5rem; + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 2rem; + color: #333333; } + .binary-wait-wrapper-inner-placeholder-binary { + display: flex; + justify-content: center; + align-items: center; + width: 300px; + height: 300px; } + .binary-wait-wrapper-inner-placeholder-binary h1 { + font: 700 2rem "IBM Plex Sans", sans-serif; + color: #fff; } + @media (max-width: 1024px) { + .binary-wait-wrapper-inner-placeholder-binary { + background: url("../image/Dont_Wait_Mobile.png") no-repeat right; + background-size: 100% 100%; + min-height: 28.125rem; + width: unset; + height: unset; + padding: 1rem; + flex-direction: column; } } + .binary-wait-wrapper-inner-placeholder-binary img { + position: absolute; + right: 36%; + bottom: 0; + width: 100%; + height: 100%; } + @media (max-width: 1024px) { + .binary-wait-wrapper-inner-placeholder-binary img { + position: unset; + width: 100%; + height: unset; } } + .binary-wait-wrapper-inner-placeholder-binary-desktop { + display: block; + padding-top: 2rem; } + @media (max-width: 1024px) { + .binary-wait-wrapper-inner-placeholder-binary-desktop { + display: none; } } + .binary-wait-wrapper-inner-placeholder-binary-mobile { + display: none; } + @media (max-width: 1024px) { + .binary-wait-wrapper-inner-placeholder-binary-mobile { + display: block; } } + +.about-trade-wrapper { + background-color: #F8FAFB; + padding: 0; } + .about-trade-wrapper-inner { + padding: 3rem 0; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner { + padding: 2rem; } } + .about-trade-wrapper-inner-social-icons-wrapper { + display: flex; + justify-content: space-between; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-social-icons-wrapper { + text-align: center; + flex-direction: column; } } + .about-trade-wrapper-inner img { + margin-right: 1rem; } + .about-trade-wrapper-inner .social-media-icons-footer img { + margin-right: 1rem; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner .social-media-icons-footer img { + margin-top: 1rem; } } + .about-trade-wrapper-inner-social-icons-mobile { + display: none; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-social-icons-mobile { + display: flex; + justify-content: center; + align-items: center; + padding: 1.4rem 0; } + .about-trade-wrapper-inner-social-icons-mobile img { + margin-right: 1rem; } } + .about-trade-wrapper-deriv-icons { + text-align: left; + padding-bottom: 2.4rem; } + @media (max-width: 1024px) { + .about-trade-wrapper-deriv-icons { + box-shadow: inset 0px -2px 0px rgba(51, 51, 51, 0.08); } } + .about-trade-wrapper-social-icons { + display: block; } + @media (max-width: 1024px) { + .about-trade-wrapper-social-icons { + display: none; } } + @media (max-width: 1024px) { + .about-trade-wrapper-social-icons { + text-align: left; } } + .about-trade-wrapper-location-info { + font: 400 1rem "IBM Plex Sans", sans-serif; } + .about-trade-wrapper-trade-info { + padding: 1rem; + background: rgba(87, 122, 146, 0.04); + font: 400 1rem "IBM Plex Sans", sans-serif; + box-shadow: inset 4px 0px 0px rgba(255, 68, 79, 0.64); } + @media (max-width: 1024px) { + .about-trade-wrapper-trade-info { + box-shadow: inset 0px 4px 0px rgba(255, 68, 79, 0.64); } } + +.bot-gif-placeholder { + display: flex; + align-items: center; + justify-content: center; + flex: 1 1 50%; + height: 100%; } + .bot-gif-placeholder__background { + width: 84%; + position: relative; } + .bot-gif-placeholder__background img { + height: 100%; + width: 100%; + object-fit: contain; } + .bot-gif-placeholder__background__overlay { + position: absolute; + top: 0; + width: 72%; + transform: translate(20.7%, 16%); } + .bot-gif-placeholder__background__overlay video { + height: 100%; + width: 100%; + object-fit: contain; } + +.hidden { + display: none !important; } + +.card-container { + padding: 2rem 0rem 3rem 0rem; + margin: 0 auto; + max-width: 1400px; } + @media (max-width: 700px) { + .card-container { + padding: 2rem 0rem 0rem 0rem; } } + +.card-wrapper-holder-header h1, .card-wrapper-holder-header h2 { + font: 700 3rem "IBM Plex Sans", sans-serif; + color: #333333; + text-align: center; + line-height: 2.3rem; } + +.card-wrapper-holder-header h2 { + font: 400 1.4rem "IBM Plex Sans", sans-serif; + line-height: 0.8rem; } + +@media (max-width: 1024px) { + .card-wrapper-holder-header h1 { + font: 700 2rem "IBM Plex Sans", sans-serif; } } + @media (max-width: 1024px) and (max-width: 1024px) { + .card-wrapper-holder-header h1 { + margin-bottom: 1rem; } } + +@media (max-width: 1024px) { + .card-wrapper-holder-header h2 { + line-height: 1.625rem; } } + @media (max-width: 1024px) and (max-width: 1024px) { + .card-wrapper-holder-header h2 { + margin-bottom: 0.2rem; } } + +@media (max-width: 1024px) and (max-width: 1024px) { + .card-wrapper-holder-header h2:last-child { + margin-top: 0; } } + +.card-wrapper-holder-container { + display: flex; } + @media (max-width: 1024px) { + .card-wrapper-holder-container { + flex-direction: column; + align-items: center; } } + .card-wrapper-holder-container-content { + box-shadow: 0 4px 8px rgba(14, 14, 14, 0.1); + border-radius: 0.5rem; + margin: 0 1.5rem; + max-width: 282px; + max-height: 520px; } + @media (max-width: 1024px) { + .card-wrapper-holder-container-content { + margin-bottom: 1.5rem; } } + .card-wrapper-holder-container-content img { + width: 100%; } + .card-wrapper-holder-container-content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + color: #333333; + padding: 24px 32px 0; + text-align: center; } + .card-wrapper-holder-container-content h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + color: #333333; + padding: 0 2rem; + margin-top: 0; + text-align: center; } + +.hero-wrapper { + display: flex; + justify-content: center; + align-items: center; + background: #08223d url(../image/hero_desktop.png) no-repeat; + background-size: cover; } + @media (max-width: 1024px) { + .hero-wrapper { + background: #08223d url(../image/hero_mobile.png) no-repeat; + background-size: cover; } } + .hero-wrapper-container { + height: 100vh; + width: 100%; + max-width: 1440px; + display: flex; + flex: 1; + flex-direction: row; + padding: 0px 3rem; + gap: 2.4rem; } + @media (max-width: 1024px) { + .hero-wrapper-container { + flex-direction: column-reverse; + padding: 1rem 1.4rem 0px 1.4rem; + gap: unset; } } + .hero-wrapper-container_box-binary { + display: flex; + flex: 1; + flex-direction: column; + justify-content: center; } + .hero-wrapper-container_box-binary h1 { + color: #FFF; + margin: 2rem 2rem 2rem 0; + font: 700 5rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .hero-wrapper-container_box-binary h1 { + font: 700 2rem "IBM Plex Sans", sans-serif; + margin: 0 0 1rem 0; } } + .hero-wrapper-container_box-binary h2 { + color: #fff; + line-height: 40px; + margin-bottom: 2rem; + font: 400 2rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .hero-wrapper-container_box-binary h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin: 0 0 1.5rem 0; } } + .hero-wrapper-container-left-binary { + align-items: start; } + @media (max-width: 1024px) { + .hero-wrapper-container-left-binary { + flex: 0; } } + .hero-wrapper-container-right-binary { + align-items: end; + min-width: 0px; } + @media (max-width: 1024px) { + .hero-wrapper-container-right-binary { + margin: 0 10%; } } + +.slick-slider { + width: 100%; } + +.slick-track { + display: flex !important; + justify-content: center; + align-items: center; } + +.language-selector { + position: relative; } + .language-selector-button { + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + transition: all 200ms; } + .language-selector-button:hover { + opacity: 0.5; } + .language-selector-button-name { + font: 700 16px "IBM Plex Sans", sans-serif; + color: #fff; + margin: 4px !important; } + .language-selector-button-arrow { + width: 16px; + height: 16px; + background-image: url(../image/dropdown-arrow.svg) !important; + transition: all 200ms; } + .language-selector-button-arrow.up { + rotate: -180deg; } + .language-selector-button-arrow.down { + rotate: 0deg; } + .language-selector-container { + background-color: #fff; + padding: 8px; + display: flex; + flex-direction: column; + align-items: stretch; + gap: 8px; + position: absolute; + z-index: 9999; + top: 40px; + right: 0; + transition: all 200ms; + box-shadow: 0px 20px 24px -4px rgba(14, 14, 14, 0.08), 0px 8px 8px -4px rgba(14, 14, 14, 0.03); + border-radius: 8px; } + .language-selector-container.open { + opacity: 1; + top: 40px; + pointer-events: 'unset'; } + .language-selector-container.close { + opacity: 0; + top: 30px; + pointer-events: none; } + .language-selector-item-container { + display: flex; + align-items: center; + justify-content: flex-start; + padding: 8px; + cursor: pointer; + border-radius: 4px; + transition: all 200ms; } + .language-selector-item-container:hover { + background-color: #F0F5F8; } + .language-selector-item-name { + font: 400 14px "IBM Plex Sans", sans-serif; + color: #333333; + margin: 0 !important; } + .language-selector-item-name.selected { + font: 700 14px "IBM Plex Sans", sans-serif; + color: #ff444f; } + +.section-container { + padding: 0 2rem; + margin: 0 auto; + max-width: 1400px; } + +.hero { + background: #08223d url(../image/BG-1.webp) no-repeat; + background-size: cover; + padding: 0 2rem; } + @media (max-width: 1024px) { + .hero { + padding: 0; } } + @media (max-width: 1024px) { + .hero { + background: #08223d url(../image/MBG1.png) no-repeat; + background-size: cover; } } + .hero-inner { + display: flex; + align-items: center; + padding: calc(7rem + 5rem) 0px; } + @media (max-width: 1080px) { + .hero-inner { + padding: calc(7rem + 5rem) 2rem; } } + @media (max-width: 1024px) { + .hero-inner { + flex-direction: column-reverse; + padding: 4rem 2rem; } + .hero-inner .btn-group { + text-align: center; } } + .hero-inner__content { + flex: 1 1 50%; } + .hero-inner__content h1 { + color: #fff; + margin: 2rem 2rem 2rem 0; + font: 700 5rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .hero-inner__content h1 { + font: 700 3rem "IBM Plex Sans", sans-serif; + margin: 0 0 2rem 0; } } + .hero-inner__content h2 { + color: #fff; + line-height: 40px; + margin-bottom: 2rem; + font: 400 2rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .hero-inner__content h2 { + font: 400 1.5rem "IBM Plex Sans", sans-serif; + margin: 0 0 2.5rem 0; } } + .hero-inner__placeholder { + flex: 1 1 50%; + display: flex; + align-items: center; + justify-content: center; } + @media (max-width: 1024px) { + .hero-inner__placeholder { + flex-direction: column; } } + @media (max-width: 1024px) { + .hero-inner__placeholder img { + object-fit: contain; + width: 100%; } } + .hero-inner__binary_logo { + display: none; + width: 14.75rem !important; + margin-bottom: 3rem; } + @media (max-width: 1024px) { + .hero-inner__binary_logo { + display: block; } } + +.l-btn { + height: 2.5rem; + border-radius: 0.25rem; + font: 700 0.875rem "IBM Plex Sans", sans-serif; + background-color: #c2c2c2; + color: #000; + outline: none; + border: none; + padding: 0 1rem; + cursor: pointer; + text-transform: none; } + .l-btn.primary { + background-color: #2e8836; + color: #fff; } + @media (max-width: 1024px) { + .l-btn.primary { + margin-bottom: 1rem; } } + .l-btn.primary:hover { + background-color: #246d2a; + color: #fff; } + .l-btn.danger { + background: #ff444f; + color: #fff; } + @media (max-width: 1024px) { + .l-btn.danger { + margin-bottom: 1rem; } } + .l-btn.danger:hover { + background-color: #cd353e; + color: #fff; } + .l-btn:hover { + background-color: #979797; + color: #000; } + +.btn-group button { + margin-right: 1rem; } + +@media (max-width: 1024px) { + .btn-group { + text-align: center; + margin-bottom: 2.4rem; } } + +.switch { + background: url(../image/sectionTwoLandingBackground.png) no-repeat; + background-size: cover; } + .switch-inner { + display: flex; } + @media (max-width: 1080px) { + .switch-inner { + padding: 0 2rem; } } + @media (max-width: 1024px) { + .switch-inner { + padding: 0; + flex-direction: column; } } + @media (max-width: 1024px) { + .switch-inner__placeholder img { + object-fit: contain; + width: 100%; } } + .switch-inner__content { + display: flex; + flex-direction: column; + justify-content: center; + margin: 2rem 0; } + .switch-inner__content h1 { + margin-bottom: 1.5rem; + margin: 0; + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + color: #333333; } + @media (max-width: 1024px) { + .switch-inner__content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; } } + .switch-inner__content h2 { + margin-bottom: 1.5rem; + margin-top: 1rem; + font: 400 2rem "IBM Plex Sans", sans-serif; + line-height: 3rem; + color: #333333; } + @media (max-width: 1024px) { + .switch-inner__content h2 { + font: 400 1.2rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; } } + .switch-inner__content .l-btn.transparent { + background-color: transparent; + border: solid 2px #999999; + text-transform: none; } + .switch-inner__content .l-btn.transparent:hover { + background-color: #c2c2c2; } + +.landing_carousel { + display: flex !important; + align-items: center; + justify-content: center; + display: flex !important; + margin: 0px auto; + padding: 5rem 0; } + @media (max-width: 1024px) { + .landing_carousel { + display: flex !important; + flex-direction: column-reverse; + text-align: center; } } + .landing_carousel_content h1 { + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + margin-bottom: 2rem; + color: #333333; } + @media (max-width: 1024px) { + .landing_carousel_content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + margin-bottom: 1rem; } } + .landing_carousel_content h2 { + font: 400 2rem "IBM Plex Sans", sans-serif; + line-height: 3rem; + margin-bottom: 2rem; + color: #333333; } + @media (max-width: 1024px) { + .landing_carousel_content h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 1rem; } } + .landing_carousel_placeholder { + width: 100%; + align-items: center; + justify-content: center; + display: flex; } + @media (max-width: 1024px) { + .landing_carousel_placeholder { + display: flex; + /* align-items: center; */ + justify-content: center; } } + @media (max-width: 1024px) { + .landing_carousel_placeholder img { + object-fit: contain; + width: 100%; } } + +.choose-wrapper { + background: #f2f3f4; } + .choose-wrapper-inner { + padding: 7.5rem 0; } + @media (max-width: 1024px) { + .choose-wrapper-inner { + padding: 2.5rem 0; } } + .choose-wrapper-inner-title { + font: 700 2rem "IBM Plex Sans", sans-serif; + color: #333; + text-align: center; + margin-bottom: 2.5rem; } + .choose-wrapper-inner-section-content { + display: flex; + color: #333333; + padding: 0 15rem; + flex-direction: column; } + @media (max-width: 1024px) { + .choose-wrapper-inner-section-content { + flex-direction: column; + padding: 0 2rem; } } + .choose-wrapper-inner-section-content-row { + display: flex; + width: 100%; } + @media (max-width: 1024px) { + .choose-wrapper-inner-section-content-row { + flex-direction: column; } } + .choose-wrapper-inner-section-content-row-inner { + display: flex; + width: 50%; } + .choose-wrapper-inner-section-content-row-inner:first-child { + margin-right: 1rem; } + @media (max-width: 1024px) { + .choose-wrapper-inner-section-content-row-inner { + width: 100%; } } + .choose-wrapper-inner-section-content-row-inner-placeholder { + margin-right: 1rem; } + .choose-wrapper-inner-section-content-row-inner-description h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + color: #333; + margin-top: 0; + line-height: 36px; + margin-bottom: 0.5rem; } + .choose-wrapper-inner-section-content-row-inner-description h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + color: #333; + line-height: 24px; + margin-bottom: 1.5rem; } + .choose-wrapper-inner-right, .choose-wrapper-inner-left { + width: 50%; + padding: 0 10rem; } + .choose-wrapper-inner-right .mobilecontent, .choose-wrapper-inner-left .mobilecontent { + display: none; } + .choose-wrapper-inner-right .desktopcontent, .choose-wrapper-inner-left .desktopcontent { + display: block; } + @media (max-width: 1024px) { + .choose-wrapper-inner-right, .choose-wrapper-inner-left { + width: 100%; + padding: unset; } + .choose-wrapper-inner-right .desktopcontent, .choose-wrapper-inner-left .desktopcontent { + display: none; } + .choose-wrapper-inner-right .mobilecontent, .choose-wrapper-inner-left .mobilecontent { + display: block; } } + .choose-wrapper-inner-right-content, .choose-wrapper-inner-left-content { + display: flex; + margin-right: 2rem; + min-height: 11.25rem; + margin-bottom: 1rem; } + .choose-wrapper-inner-right-content-placeholder, .choose-wrapper-inner-left-content-placeholder { + margin-right: 2rem; } + .choose-wrapper-inner-right-content-description, .choose-wrapper-inner-left-content-description { + margin-right: 2rem; } + @media (max-width: 1024px) { + .choose-wrapper-inner-right-content, .choose-wrapper-inner-left-content { + min-height: unset; + margin-bottom: 1.3rem; } } + .choose-wrapper-inner-right-content h1, .choose-wrapper-inner-left-content h1 { + margin-top: 0; + font: 700 1.6rem "IBM Plex Sans", sans-serif; + color: #333333; } + @media (max-width: 1024px) { + .choose-wrapper-inner-right-content h1, .choose-wrapper-inner-left-content h1 { + font: 700 1.3rem "IBM Plex Sans", sans-serif; + margin-bottom: 0; } } + .choose-wrapper-inner-right-content h2, .choose-wrapper-inner-left-content h2 { + font: 400 1.2rem "IBM Plex Sans", sans-serif; + color: #333333; } + @media (max-width: 1024px) { + .choose-wrapper-inner-right-content h2, .choose-wrapper-inner-left-content h2 { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 0; } } + .choose-wrapper-inner-right { + padding-left: 0; } + .choose-wrapper-inner-left { + padding-right: 0; } + +.carousel-wrapper { + margin: 0 auto; } + .carousel-wrapper .slick-slider { + padding: 0 2rem; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-slider { + padding: 0; } } + .carousel-wrapper .slick-slider .slick-arrow.slick-next { + transform: rotate(180deg); + top: 56%; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-slider .slick-arrow.slick-next { + top: 54%; } + .carousel-wrapper .slick-slider .slick-arrow.slick-next .slick-next { + right: 0; } + .carousel-wrapper .slick-slider .slick-arrow.slick-next .slick-prev { + left: 0; } } + .carousel-wrapper .slick-dots { + bottom: 0; } + @media (max-width: 1024px) { + .carousel-wrapper .slick-dots { + left: 0; } } + .carousel-wrapper .placeholder-outer { + position: relative; + width: 100%; + height: 20rem; + display: flex; + justify-content: center; + align-items: center; } + @media (max-width: 1024px) { + .carousel-wrapper .placeholder-outer { + height: 15rem; } } + .carousel-wrapper .placeholder-outer .caousel_laptop { + position: absolute; + top: 0; + z-index: 1; } + .carousel-wrapper .placeholder-outer .caousel_laptop_holder { + position: absolute; + top: 0; + z-index: 2; + width: 56%; + top: 45px; + height: 200px; } + @media (max-width: 1024px) { + .carousel-wrapper .placeholder-outer .caousel_laptop_holder { + top: -10px; + width: 72%; } } + +.arrow.right { + transform: rotate(180deg); } + +.wait-wrapper { + background: url("../image/pattern.png") no-repeat right; + background-size: 65% 100%; + min-height: 18.75rem; + position: relative; + padding: 0 2rem; } + @media (max-width: 1024px) { + .wait-wrapper { + padding: 0; } } + @media (max-width: 1024px) { + .wait-wrapper { + min-height: 43.75rem; + background-image: none; } } + .wait-wrapper-inner { + display: flex; + margin: 0px auto; + justify-content: space-between; + padding: 0; } + @media (max-width: 1024px) { + .wait-wrapper-inner { + justify-content: center; + text-align: center; + flex-direction: column; } } + .wait-wrapper-inner-content h1 { + font: 700 3rem "IBM Plex Sans", sans-serif; + color: #333333; + margin-bottom: 0.5rem; } + .wait-wrapper-inner-content h2 { + margin-top: 0.5rem; + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 2rem; + color: #333333; } + @media (max-width: 1024px) { + .wait-wrapper-inner-placeholder { + background: url("../image/Dont_Wait_Mobile.png") no-repeat right; + background-size: 100% 100%; + min-height: 28.125rem; } } + .wait-wrapper-inner-placeholder img { + position: absolute; + right: 20%; + bottom: 0; } + @media (max-width: 1024px) { + .wait-wrapper-inner-placeholder img { + bottom: 0; + left: 0; + right: 0; + top: unset; + margin: 0 auto; } } + +.about-trade-wrapper { + background-color: #f8fafb; + padding: 0; + padding: 0 2rem; } + @media (max-width: 1024px) { + .about-trade-wrapper { + padding: 0; } } + .about-trade-wrapper-inner { + padding: 3rem 0; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner { + padding: 2rem; } } + .about-trade-wrapper-inner-social-icons-wrapper { + display: flex; + justify-content: space-between; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-social-icons-wrapper { + text-align: center; + flex-direction: column; } } + .about-trade-wrapper-inner img { + margin-right: 1rem; } + .about-trade-wrapper-inner .social-media-icons-footer img { + margin-right: 1rem; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner .social-media-icons-footer img { + margin-top: 1rem; } } + .about-trade-wrapper-inner-social-icons-mobile { + display: none; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-social-icons-mobile { + display: flex; + justify-content: center; + align-items: center; + padding: 1.4rem 0; + flex-wrap: wrap; + gap: 8px; } + .about-trade-wrapper-inner-social-icons-mobile img { + margin-right: 1rem; } } + .about-trade-wrapper-inner-info-location { + font: 400 1rem "IBM Plex Sans", sans-serif; + color: #333; } + .about-trade-wrapper-inner-info-location a { + color: #333333 !important; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-info-location { + margin-bottom: 1.5rem; } } + .about-trade-wrapper-inner-info-trade { + padding: 1rem; + background: rgba(87, 122, 146, 0.04); + font: 400 1rem "IBM Plex Sans", sans-serif; + box-shadow: inset 4px 0px 0px rgba(255, 68, 79, 0.64); + color: #333; } + .about-trade-wrapper-inner-info-trade a { + color: #333333; } + @media (max-width: 1024px) { + .about-trade-wrapper-inner-info-trade { + box-shadow: inset 0px 4px 0px rgba(255, 68, 79, 0.64); } } + .about-trade-wrapper-deriv-icons { + text-align: left; + padding-bottom: 2.4rem; } + @media (max-width: 1024px) { + .about-trade-wrapper-deriv-icons { + box-shadow: inset 0px -2px 0px rgba(51, 51, 51, 0.08); } } + .about-trade-wrapper-social-icons { + display: block; } + @media (max-width: 1024px) { + .about-trade-wrapper-social-icons { + display: none; } } + @media (max-width: 1024px) { + .about-trade-wrapper-social-icons { + text-align: left; } } + +.bot-gif-placeholder { + display: flex; + align-items: center; + justify-content: center; + flex: 1 1 50%; + height: 100%; } + .bot-gif-placeholder__background { + width: 84%; + position: relative; } + .bot-gif-placeholder__background img { + height: 100%; + width: 100%; + object-fit: contain; } + .bot-gif-placeholder__background__overlay { + position: absolute; + top: 0; + width: 72%; + transform: translate(20.7%, 16%); } + .bot-gif-placeholder__background__overlay video { + height: 100%; + width: 100%; + object-fit: contain; } + +.hidden { + display: none !important; } + +.bot-landing-alert-popup { + display: none; + position: fixed; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.72); + top: 0; + z-index: 1000; } + .bot-landing-alert-popup.open { + display: block !important; } + +.bot-landing-alert-header { + text-align: end; + margin-bottom: 1rem; } + .bot-landing-alert-header img { + cursor: pointer; } + +.bot-landing-alert-para { + margin-bottom: 1.5rem; } + +.bot-landing-alert-title { + margin-top: 0; + margin-bottom: 1rem; } + +.bot-landing-alert-draggable-dialog { + border-radius: 8px; + min-height: 250px; + background: white; + position: absolute; + width: 42rem; + margin: 0 auto; + padding: 2rem; + z-index: 1000; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } + .bot-landing-alert-draggable-dialog.open { + display: block !important; } + +.bot-landing-alert-btn-group { + text-align: center; } + .bot-landing-alert-btn-group .default { + background: #c2c2c2; + margin-right: 1rem; } + .bot-landing-alert-btn-group .default :hover { + background-color: #d8d6d6; } + +.mobilecontent { + display: none; } + +.desktopcontent { + display: block; } + +@media (max-width: 1024px) { + .desktopcontent { + display: none; } + .mobilecontent { + display: block; } } + +.carousel-title { + display: flex; + align-items: center; + flex-direction: column; } + .carousel-title__content { + max-width: 62rem; } + .carousel-title h1 { + text-align: center; + margin-top: 5rem; + margin-bottom: 2.5rem; + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + color: #333333; } + @media (max-width: 1024px) { + .carousel-title h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; + margin-top: 2.5rem; } } + +.carousel_section .slick-list { + margin: 0 0 0 7.5rem; } + @media (max-width: 1024px) { + .carousel_section .slick-list { + margin: 0 0 0 2em; } } + +@media (max-width: 768px) { + .carousel_section__desktop { + display: none; } } + +.carousel_section__mobile { + display: flex; + flex-direction: column; + align-items: center; + margin-top: -4.625rem; } + @media (min-width: 768px) { + .carousel_section__mobile { + display: none; } } + +.carousel_section__content { + max-width: 62.25rem; + display: flex; + justify-content: center; } + .carousel_section__content h1 { + text-align: center; + margin-bottom: 1.5rem; + font: 700 3rem "IBM Plex Sans", sans-serif; + line-height: 4rem; + color: #333333; } + @media (max-width: 1024px) { + .carousel_section__content h1 { + font: 700 1.5rem "IBM Plex Sans", sans-serif; + text-align: center; + padding: 0 2rem; } } + +.carousel_section__slide_img { + max-width: 24rem; } + @media (max-width: 1024px) { + .carousel_section__slide_img { + max-width: 19.875rem; } } + +.carousel_section__arrow-btn { + text-transform: none; + padding: 0.625rem 0.75rem 0.625rem 1rem; + font-size: 0.875rem; + font-weight: 700; + min-width: 8.18rem; + color: #FF444F; + background: #FFFFFF; + border-radius: 6.25rem; + filter: drop-shadow(0px 0px 1.5rem rgba(0, 0, 0, 0.08)) drop-shadow(0px 1.5rem 1.5rem rgba(0, 0, 0, 0.08)); + transform: translate(0px, -1.25rem); } + +.carousel_section__arrow-btn:hover { + background: #FFFFFF; + color: #FF444F; } + +.carousel_section__slide_card { + max-width: 24rem; + max-height: 36.563rem; + display: flex; + text-align: center; + outline: none; } + +.carousel_section__btn_inner { + display: flex; + align-items: center; + justify-content: center; + height: 20px; } + .carousel_section__btn_inner img { + margin-left: 0.5rem; } + +.carousel_section__mobile .carousel_section__slide_card { + flex-direction: column; + max-width: 20.5rem; + max-height: 27rem; + display: flex; + text-align: center; + outline: none; } + +.carousel_section .slick-slide { + max-width: 24rem; } + +.carousel_section .slick-slide { + margin: 0 0.781rem; } + +.carousel_slide_info_wrapper { + max-height: 5.75rem; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + position: relative; + top: 12.375rem; } + @media (max-width: 1024px) { + .carousel_slide_info_wrapper { + top: 10.375rem; + margin-bottom: 0.2rem; } } + +.platform_title { + margin-top: 0; + font: 700 1.6rem "IBM Plex Sans", sans-serif; + color: #333333; + margin-bottom: 0.5rem; } + @media (max-width: 1024px) { + .platform_title { + font: 700 1.3rem "IBM Plex Sans", sans-serif; + margin: 0.5rem; } } + +.platform_description { + min-height: 2.62rem; + max-width: 21rem; + margin-top: 0; + font: 400 1rem "IBM Plex Sans", sans-serif; + color: #333333; } + @media (max-width: 1024px) { + .platform_description { + font: 400 1rem "IBM Plex Sans", sans-serif; + margin-bottom: 0; + max-width: 17.5rem; } } + +.take-deriv { + display: flex; + justify-content: center; } + .take-deriv_background { + padding: 0 110px 0 110px; + display: flex; + justify-content: space-between; + width: 1200px; + height: 330px; + background-image: url("../image/bg-take-deriv.png"); + border-radius: 20px; + background-repeat: no-repeat; + background-size: cover; } + @media (max-width: 1024px) { + .take-deriv_background { + padding: 0 24px 0 24px; + align-items: center; + height: 487px; + flex-direction: column-reverse; + height: fit-content; + border-radius: 0; } } + .take-deriv_qr-code { + padding-top: 33px; + max-width: 424px; } + @media (max-width: 1113px) { + .take-deriv_qr-code { + padding-top: 15px; } } + @media (max-width: 1024px) { + .take-deriv_qr-code { + padding-top: 24px; + display: flex; + flex-direction: column; + text-align: center; } } + .take-deriv_qr-code img { + width: 96px; } + .take-deriv_qr-code h1 { + margin: 0; + color: #fff; + font: 700 2rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .take-deriv_qr-code h1 { + font: 700 24px "IBM Plex Sans", sans-serif; } } + .take-deriv_qr-code h2 { + color: #fff; + font: 400 1.25rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .take-deriv_qr-code h2 { + font: 400 16px "IBM Plex Sans", sans-serif; } } + .take-deriv_qr-code h3 { + color: #fff; + font: 400 1rem "IBM Plex Sans", sans-serif; } + @media (max-width: 1024px) { + .take-deriv_qr-code h3 { + font: 400 14px "IBM Plex Sans", sans-serif; } } + .take-deriv_iphone { + padding-top: 33px; } + .take-deriv_iphone img { + height: 297px; } + @media (max-width: 1024px) { + .take-deriv_iphone img { + height: 200px; } } + +#movetoderiv_language_switcher { + position: absolute !important; + top: 60px; + right: 190px; } + @media only screen and (max-width: 1534px) and (min-width: 1025px) { + #movetoderiv_language_switcher { + right: 200px; } } + @media (max-width: 1024px) { + #movetoderiv_language_switcher { + top: 1px; + right: -38px; } } + @media (min-width: 1534px) { + #movetoderiv_language_switcher { + right: 20%; } } + @media (min-width: 1800px) { + #movetoderiv_language_switcher { + right: 25%; } } + @media (min-width: 2270px) { + #movetoderiv_language_switcher { + right: 28%; } } + +.movetoderiv_topbar_hide { + position: absolute; + top: -20px; + display: none; } + @media (max-width: 1024px) { + .movetoderiv_topbar_hide { + position: relative; + top: 0; + display: block; } } + +.border_hide_mtd { + border: none !important; } + +.language_list { + padding-top: 26px !important; + display: flex !important; + flex-direction: column; + align-items: center; + width: 176px !important; + height: 216px; + margin-top: 36px !important; + border-radius: 8px; } + @media (max-width: 1024px) { + .language_list { + margin-top: 30px !important; + margin-right: 52px !important; } } + +.language_list::before { + content: ' '; + position: absolute; + width: 0; + height: 0; + left: 91px; + top: 2px; + border: 12px solid #f2f2f2; + transform: rotate(45deg); } + @media (max-width: 1024px) { + .language_list::before { + left: 133px; } } + +.hide_lang { + display: none !important; } + +#show_lang { + padding-bottom: 18px !important; + display: inline-block !important; + width: 144px !important; } + +.language_flag { + max-width: 24px; + height: 16px; } + +.language_text { + text-align: left; + box-sizing: border-box; + display: inline-block; + margin: 0; + font-size: 14px !important; + width: 80px !important; + padding-left: 8px; } + +.actual_flag { + text-transform: uppercase; + font-weight: 600; + font-size: 16px; } + +.displaying_language_mtd { + display: flex !important; + align-items: center; + max-width: 76px; } + +.language_background_flag { + display: inline-block; + width: 30px; + height: 20px; } + +.en_flag_mtd { + background-size: cover; + background-image: url(../image/english-flag.png); } + +.id_flag_mtd { + background-size: cover; + background-image: url(../image/indonesia-flag.png); } + +.es_flag_mtd { + background-size: cover; + background-image: url(../image/spain-flag.png); } + +.pt_flag_mtd { + background-size: cover; + background-image: url(../image/portugal-flag.png); } + +* { + box-sizing: border-box; } + +html, +body { + height: 100%; + margin: 0em; + max-width: 100%; + max-height: 100%; + font-size: 1em; } + +#server-status .online { + background-color: green; } + +#server-status .connecting { + background-color: yellow; } + +#server-status .offline { + background-color: red; } + +#server-status span { + display: inline-block; + width: 1em; + height: 1em; + border-radius: 100%; } + +#contact-us, #server-time, #server-status { + margin-right: 3em; + margin-top: 0.2em; } + +.blocklyWidgetDiv { + z-index: 100; } + +#blocklyDiv { + position: absolute; + height: 100%; + width: 100%; } + +#blocklyArea { + height: 88%; } + +#errorArea { + display: flex; + justify-content: center; + align-items: center; + height: calc(100vh - 84px); } + +@media only screen and (max-height: 723px) { + #blocklyArea { + height: 86%; } } + +#center, #workspace_center { + position: fixed; + width: 1em; + height: 1em; + top: 50%; + left: 50%; } + +.barspinner { + position: fixed; + left: 50%; + top: 50%; + margin-left: -5rem; + z-index: 9999; } + +.icon-remove:before { + content: 'X'; } + +#header select, +#topbar select { + color: #000; + font-size: 1em; } + +#header { + height: 81px; + width: 100%; + background-color: #2a3052; + border-top: 2px solid #15212d; + border-bottom: 4px solid #e98024; + font-size: 18px; + padding: 0 20px; + z-index: 0; } + +#topbar { + background-color: #15212d; + width: 100%; + color: #fff; + line-height: 1; + font-size: 70%; + text-align: right; + padding: 3px 20px; + display: table; } + @media (max-width: 1024px) { + #topbar { + min-height: 25px !important; } } + +#all-accounts.main-nav > li > ul, #toolbox-all-accounts.main-nav > li > ul { + width: 165px; } + +.left-header { + float: left; } + +.right-header { + float: right; } + +#client-logged-in { + display: none; } + +#login { + display: none; + margin: 0.6em 0; } + +.account { + font-size: 16px; } + +#account-list { + margin-right: 2em; } + +.btn-primary { + color: #fff !important; + text-decoration: none !important; + background: #2e8836 !important; + border-color: #2e8836 !important; } + +.btn-primary:active, +.btn-primary:hover { + color: #fff !important; + text-decoration: none !important; + background-color: #14602b !important; + border-color: #14602b !important; } + +.blocker { + position: fixed; + width: 100%; + height: 100%; + z-index: 1000; + display: none; + top: 0em; + opacity: 0.1; + left: 0em; + background: black; } + +#stopButton, #summaryStopButton { + display: none; } + +.languages { + z-index: 100; + right: 1.5em; } + +#select_language { + top: -3px; } + +#display_language li { + cursor: pointer; + line-height: 0; } + +#container { + position: fixed; + height: calc(100% - 96px); + width: 100%; + left: 0px; + transition: 0.5s; } + +.show-on-load { + display: none; } + +.react-grid-HeaderCell { + padding: 0px !important; } + +label { + margin-bottom: 0px; } + +.ui-icon { + background-image: none !important; } + +#_elev_io ._1g6cj { + z-index: 10000 !important; } + +.notifyjs-corner { + z-index: 998 !important; } + +/*# sourceMappingURL=bot-ad35859479.css.map */ diff --git a/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css.map b/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css.map new file mode 100644 index 0000000000000..73441847b9212 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/bot-ad35859479.css.map @@ -0,0 +1 @@ +{"version":3,"file":"bot-ad35859479.css","sources":["bot.scss","_color.scss","_chart.scss","_notification-banner.scss","_moving-banner.scss","_dbot-banner.scss","_fontello.scss","_panel.scss","_toolbox.scss","_blockly-toolbox.scss","_reality-check.scss","_tour.scss","../../node_modules/react-joyride/lib/react-joyride.scss","_elevio.scss","_landing-binary.scss","_landing.scss","_carousel.scss","_take-deriv.scss","_mtd-langbar.scss"],"sourcesContent":["@import 'color';\n@import 'chart';\n@import 'notification-banner';\n@import 'moving-banner';\n@import 'dbot-banner';\n@import 'fontello';\n@import 'panel';\n@import 'blockly-toolbox';\n@import 'toolbox';\n@import 'reality-check';\n@import 'tour';\n@import 'elevio';\n@import 'landing-binary';\n@import 'landing';\n@import 'carousel';\n@import 'take-deriv';\n@import 'mtd-langbar';\n\n\n* {\n box-sizing: border-box;\n}\n\n\nhtml,\nbody {\n height: 100%;\n margin: 0em;\n max-width: 100%;\n max-height: 100%;\n font-size: 1em;\n}\n\n#server-status .online {\n background-color: green;\n}\n\n#server-status .connecting {\n background-color: yellow;\n}\n\n#server-status .offline {\n background-color: red;\n}\n\n#server-status span {\n display: inline-block;\n width: 1em;\n height: 1em;\n border-radius: 100%;\n}\n\n#contact-us, #server-time, #server-status {\n margin-right: 3em;\n margin-top: 0.2em;\n}\n.blocklyWidgetDiv {\n z-index: 100;\n}\n\n#blocklyDiv {\n position: absolute;\n height: 100%;\n width: 100%;\n}\n\n#blocklyArea {\n height: 88%;\n}\n\n#errorArea {\n display: flex;\n justify-content: center;\n align-items: center;\n height: calc(100vh - 84px);\n}\n\n@media only screen and (max-height: 723px) {\n #blocklyArea {\n height: 86%;\n }\n}\n\n#center, #workspace_center {\n position: fixed;\n width: 1em;\n height: 1em;\n top: 50%;\n left: 50%;\n}\n\n.barspinner {\n position: fixed;\n left: 50%;\n top: 50%;\n margin-left: -5rem;\n z-index: 9999;\n}\n\n.icon-remove:before {\n content: 'X';\n}\n\n#header select,\n#topbar select {\n color: #000;\n font-size: 1em;\n}\n\n#header {\n height: 81px;\n width: 100%;\n background-color: $brand-blue;\n border-top: 2px solid $brand-dark-blue;\n border-bottom: 4px solid $brand-orange;\n font-size: 18px;\n padding: 0 20px;\n z-index: 0;\n}\n\n#topbar {\n background-color: $brand-primary-dark;\n width: 100%;\n color: $white;\n line-height: 1;\n font-size: 70%;\n text-align: right;\n padding: 3px 20px;\n display: table;\n @media (max-width: 1024px) {\n min-height: 25px !important;\n } \n}\n\n#all-accounts.main-nav, #toolbox-all-accounts.main-nav {\n >li {\n >ul {\n width: 165px;\n }\n }\n}\n\n.left-header {\n float: left;\n}\n\n.right-header {\n float: right;\n}\n\n#client-logged-in {\n display: none;\n}\n\n#login {\n display: none;\n margin: 0.6em 0;\n}\n\n.account {\n font-size: 16px;\n}\n\n#account-list {\n margin-right: 2em;\n}\n\n.btn-primary {\n color: $white !important;\n text-decoration: none !important;\n background: $brand-btn !important;\n border-color: $brand-btn !important;\n}\n\n.btn-primary:active,\n.btn-primary:hover {\n color: $white !important;\n text-decoration: none !important;\n background-color: $brand-btn-active !important;\n border-color: $brand-btn-active !important;\n}\n\n.blocker {\n position: fixed;\n width: 100%;\n height: 100%;\n z-index: 1000;\n display: none;\n top: 0em;\n opacity: 0.1;\n left: 0em;\n background: black;\n}\n\n#stopButton, #summaryStopButton {\n display: none;\n}\n\n.languages {\n z-index: 100;\n right: 1.5em;\n}\n\n#select_language {\n top: -3px;\n}\n#display_language li {\n cursor: pointer;\n line-height: 0;\n}\n#container {\n position: fixed;\n height: calc(100% - 96px);\n width: 100%;\n left: 0px;\n transition: 0.5s;\n}\n\n.show-on-load {\n display: none;\n}\n\n.react-grid-HeaderCell {\n padding: 0px !important;\n}\n\nlabel {\n margin-bottom: 0px;\n}\n\n.ui-icon {\n background-image: none !important;\n}\n\n#_elev_io ._1g6cj {\n z-index: 10000 !important;\n}\n\n.notifyjs-corner {\n z-index: 998 !important;\n}\n","$brand-gray: #f2f2f2;\n$brand-dark-gray: #dedede;\n$brand-blue: #2a3052;\n$brand-dark-blue: #15212d;\n$brand-orange: #e98024;\n$brand-btn: #2e8836;\n$brand-red: #ff444f;\n$brand-btn-active: #14602b;\n$brand-primary-dark: #15212d;\n$white: #ffffff;\n$black: #000000;\n$toolbox-btn-active: #dddddd;\n",".cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done, .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active {\n transform: translateX(-40%) translateY(0em);\n}\n\n.ciq-list .ciq-list-item {\n font-size: 0.8em;\n}\n\n.cq-categorical-display {\n .cq-item, \n .cq-active-item,\n .empty-category,\n .cq-filter,\n .cq-lookup-input>input,\n .category-title,\n .empty-category {\n font-size: 0.8em;\n }\n .category-title {\n font-weight: bold;\n }\n .empty-category {\n padding: 0 0.8em 0.8em;\n }\n .category.category-has-subtitle {\n padding-top: 4em\n }\n}","@import \"color\";\n\n.notification-banner {\n background-color: $brand-gray;\n display: flex;\n flex-direction: row;\n max-width: 940px;\n width: 100%;\n align-items: center;\n align-items: center;\n position: relative;\n margin: 1rem auto;\n left: 0;\n transform: none;\n z-index: 100 !important;\n\n &__orange-hexagon {\n display: none;\n border-bottom: 130px solid $brand-orange;\n border-left: 0 solid transparent;\n border-right: 45px solid transparent;\n height: 0;\n width: 26rem;\n }\n\n &__content {\n max-width: 425px;\n width: 100%;\n margin: auto 86px auto 9px;\n\n &_header {\n font-weight: 700;\n margin: 0;\n margin-bottom: 4px;\n line-height: 24px;\n font-size: 16px;\n }\n &_text {\n margin: 0;\n font-weight: 400;\n line-height: 24px;\n font-size: 16px;\n }\n &_button {\n text-decoration: none;\n text-align: center;\n line-height: 100%;\n padding: 8px 25px;\n display: inline-block;\n font-weight: 400;\n font-family: inherit;\n border-radius: 4px;\n cursor: pointer;\n font-size: 18px;\n border: 0;\n background: $brand-btn;\n color: $white !important;\n min-height: auto;\n }\n\n @media (max-width: 1234px) {\n margin-right: 20px;\n }\n @media (max-width: 1024px) {\n position: absolute;\n max-width: 400px;\n color: $white;\n }\n @media (max-width: 590px) {\n max-width: 300px;\n }\n @media (max-width: 440px) {\n max-width: 13rem;\n }\n }\n @media (max-width: 1234px) {\n max-width: 880px;\n }\n @media (max-width: 1024px) {\n max-width: 700px;\n padding: 0 10px 0 0;\n transform: none;\n\n > img {\n display: none;\n }\n &__orange-hexagon {\n display: inline-block;\n }\n }\n @media (max-width: 769px) {\n max-width: 520px;\n padding: 0 10px 0 0;\n transform: none;\n }\n}\n",".moving-banner {\n display: flex;\n position: relative;\n -webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: antialiased;\n float: left;\n height: calc(100% - 20px);\n margin: 1rem 2rem 0;\n\n &__text {\n position: absolute;\n left: 6rem;\n font-weight: 700;\n font-size: 14px;\n }\n &__button {\n position: absolute;\n right: 1.2rem;\n transform: translate(0, 24%);\n text-decoration: none;\n text-align: center;\n line-height: 24px;\n padding: 4px 17.5px;\n display: inline-block;\n font-weight: 700;\n font-family: inherit;\n border-radius: 4px;\n cursor: pointer;\n font-size: 12px;\n background: $brand-red;\n color: $white;\n max-height: 2.4rem;\n }\n &__separator {\n position: absolute;\n left: -2rem;\n top: 0.4rem;\n width: 2px;\n height: 38px;\n background-color: #17212c;\n\n @media only screen and (max-width: 922px) {\n display: none;\n }\n }\n\n @media only screen and (max-width: 520px) {\n display: none;\n }\n}\n",".dbot-banner {\n @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@700&display=swap');\n font-family: 'IBM Plex Sans', sans-serif;\n -webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: antialiased;\n align-items: center;\n align-self: center;\n display: flex;\n float: left;\n height: calc(100% - 20px);\n margin: 10px 0;\n\n &__icon {\n margin-right: 8px;\n margin-left: 32px;\n }\n &__ad {\n color: #fff;\n margin-right: 16px;\n display: flex;\n justify-content: center;\n\n &-text {\n font-size: 16px;\n font-weight: bold;\n line-height: 1.5;\n }\n }\n &__button {\n font-size: 14px;\n background-color: #ff444f;\n font-weight: bold;\n vertical-align: middle;\n align-items: center;\n justify-content: center;\n touch-action: manipulation;\n cursor: pointer;\n white-space: nowrap;\n padding: 0 16px;\n display: inline-flex;\n border: 0;\n height: 32px;\n border-radius: 4px;\n transition: all .2s cubic-bezier(.65,.05,.36,1);\n outline: 0;\n position: relative;\n text-decoration: none;\n text-transform: none!important;\n\n &:hover {\n background: #eb3e48;\n }\n\n &:focus {\n outline: none;\n }\n }\n &__separator {\n width: 2px;\n height: 36px;\n background-color: #17212c;\n }\n}\n\n@media only screen and (max-width: 520px) {\n .dbot-banner {\n display: none;\n }\n}\n\n@media only screen and (max-width: 700px) {\n .dbot-banner {\n &__separator {\n display: none;\n }\n }\n}","@font-face {\n font-family: 'binarybot';\n src: url('../font/binarybot.eot?61837987');\n src: url('../font/binarybot.eot?61837987#iefix') format('embedded-opentype'),\n url('../font/binarybot.woff2?61837987') format('woff2'),\n url('../font/binarybot.woff?61837987') format('woff'),\n url('../font/binarybot.ttf?61837987') format('truetype'),\n url('../font/binarybot.svg?61837987#binarybot') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\n/*\n@media screen and (-webkit-min-device-pixel-ratio:0) {\n @font-face {\n font-family: 'binarybot';\n src: url('../font/binarybot.svg?61837987#binarybot') format('svg');\n }\n}\n*/\n \n [class^=\"icon-\"]:before, [class*=\" icon-\"]:before {\n font-family: \"binarybot\";\n font-style: normal;\n font-weight: normal;\n speak: none;\n \n display: inline-block;\n text-decoration: inherit;\n width: 1em;\n margin-right: .2em;\n text-align: center;\n /* opacity: .8; */\n \n /* For safety - reset parent styles, that can break glyph codes*/\n font-variant: normal;\n text-transform: none;\n \n /* fix buttons height, for twitter bootstrap */\n line-height: 1em;\n \n /* Animation center compensation - margins should be symmetric */\n /* remove if not needed */\n margin-left: .2em;\n \n /* you can be more comfortable with increased icons size */\n /* font-size: 120%; */\n \n /* Font smoothing. That was taken from TWBS */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n \n /* Uncomment for 3D effect */\n /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\n}\n \n.icon-zoom-in:before { content: '\\e800'; } /* '' */\n.icon-redo:before { content: '\\e801'; } /* '' */\n.icon-browse:before { content: '\\e802'; } /* '' */\n.icon-undo:before { content: '\\e803'; } /* '' */\n.icon-summary:before { content: '\\e804'; } /* '' */\n.icon-stop:before { content: '\\e805'; } /* '' */\n.icon-run:before { content: '\\e806'; } /* '' */\n.icon-close:before { content: '\\e807'; } /* '' */\n.icon-reset:before { content: '\\e808'; } /* '' */\n.icon-zoom-out:before { content: '\\e809'; } /* '' */\n.icon-menu:before { content: '\\e80a'; } /* '' */\n.icon-save:before { content: '\\e80b'; } /* '' */\n.icon-trading-view:before { content: '\\e810'; } /* '' */\n.icon-info:before { content: '\\f129'; } /* '' */\n.icon-sort:before { content: '\\f160'; } /* '' */\n.icon-chart-line:before { content: '\\f201'; } /* '' */\n.icon-hide-header {\n &:before {\n content: ' ';\n }\n background: url(\"../image/expand_less.svg\") no-repeat center;\n &.enabled {\n background: url(\"../image/expand_more.svg\") no-repeat center;\n }\n}\n.icon-clear {\n &:before {\n content: ' ';\n }\n background: url(\"../image/clear.svg\") no-repeat center;\n &:disabled {\n background: url(\"../image/clear-disabled.svg\") no-repeat center;\n }\n}\n.icon-integrations {\n &:before {\n content: ' ';\n }\n background: url(\"../image/google_drive.svg\") no-repeat center;\n}\n","@import 'color';\n@import 'toolbox';\n\n$static-circle-diameter: 1em;\n$dynamic-circle-diameter: 1.5em;\n$circle-color: #E98024;\n$disabled-color: #F2F2F2;\n\n@keyframes animate-circle {\n 0% { \n transform: translate(-50%, -50%) scale(0);\n }\n 50% { \n transform: translate(-50%, -50%) scale(1);\n }\n 100% { \n transform: translate(-50%, -50%) scale(0);\n }\n}\n\n@keyframes animate-progress {\n 0% {\n width: 0%;\n }\n 100% {\n width: 50%;\n }\n}\n\n@keyframes animate-progress-complete {\n 0% {\n width: 50%;\n }\n 100% {\n width: 100%;\n }\n}\n\n@keyframes slide-tooltip {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n#summaryPanel {\n border-radius: 4px;\n border: 1px solid $brand-gray;\n box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);\n .content-row {\n margin-bottom: 1em;\n }\n p {\n margin: 0em;\n }\n #sync-warning {\n font-size: 11px;\n color: lightgray;\n }\n #current-trade-status{\n margin-top: 3.5em;\n }\n .stage {\n display: inline-block;\n margin: 0 8.68% 0 8.68%;\n vertical-align: top;\n max-width: 120px;\n .stage-tooltip .triangle {\n margin-top: 0.7em;\n margin-left: 50%;\n transform: translate(-50%, -50%);\n height: 10px;\n width: 10px;\n border: 10px solid #fef1cf;\n border-top-color: transparent;\n border-left-color: transparent;\n border-right-color: transparent;\n }\n .stage-tooltip.top {\n margin-bottom: 0.5em;\n margin-top: -2.5em;\n position: absolute;\n }\n .stage-tooltip p {\n font-size: 11px;\n text-align: center;\n margin-top: -0.91em;\n padding: 0.5em;\n border-radius: 0.5em;\n background-color: #fef1cf;\n width: 120px;\n }\n .stage-tooltip.running p {\n color: #468847;\n background-color: #DFF0D8;\n border-color: #D6E9C6;\n }\n }\n .stage-tooltip {\n visibility: hidden;\n }\n .stage-tooltip.active {\n visibility: visible;\n animation: slide-tooltip 0.8s 1;\n }\n .stage-label {\n text-align: center;\n font-size: 11px;\n min-height: 24px;\n }\n .circle-wrapper {\n width: $static-circle-diameter;\n height: $static-circle-diameter;\n display: inline-block;\n transform: translate(-50%, 50%);\n margin-left: 50%;\n .static-circle {\n width: $static-circle-diameter;\n height: $static-circle-diameter;\n border-radius: 100%;\n border: 0.25em solid $disabled-color;\n display: inline-block;\n position: relative;\n background-color: $disabled-color;\n }\n }\n .circle-wrapper.active {\n .static-circle {\n width: $static-circle-diameter;\n height: $static-circle-diameter;\n border-radius: 100%;\n border: 0.25em solid $circle-color;\n display: inline-block;\n position: relative;\n background-color: #FFF;\n z-index: 2;\n }\n .dynamic-circle {\n position: absolute;\n width: $dynamic-circle-diameter;\n height: $dynamic-circle-diameter;\n background-color: $circle-color;\n border-radius: 100%;\n opacity: 0.32;\n animation: animate-circle 0.8s infinite;\n transform: translate(-50%, -50%);\n margin-top: 50%;\n margin-left: -50%;\n animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);\n z-index: 1;\n }\n }\n .circle-wrapper.complete {\n .static-circle {\n width: $static-circle-diameter;\n height: $static-circle-diameter;\n border-radius: 100%;\n border: 0.25em solid $circle-color;\n display: inline-block;\n position: relative;\n background-color: #FFF;\n z-index: 2;\n }\n }\n .line {\n position: absolute;\n display: inline-block;\n top: 37.5%;\n width: 3050%;\n height: 0.25em;\n background-color: $disabled-color;\n }\n .line.active {\n .progress-bar {\n float: left;\n box-shadow: none;\n height: 100%;\n background-color: $circle-color;\n display: inline-block;\n animation: animate-progress 0.5s 1;\n animation-fill-mode: forwards;\n } \n }\n .line.complete {\n .progress-bar {\n box-shadow: none;\n height: 100%;\n background-color: $circle-color;\n display: inline-block;\n animation: animate-progress-complete 0.5s 1;\n animation-fill-mode: forwards;\n }\n }\n .summary-toolbox {\n text-align: center;\n position: relative;\n\n .toolbox-button {\n border-radius: 50%;\n margin: 0 auto 0.313em;\n @include toolbox-button-base;\n &:hover {\n @include toolbox-runButton-hover;\n }\n &[disabled], &[disabled]:hover {\n @include toolbox-runButton-disabled;\n }\n }\n .toolbox-button:focus {\n @include toolbox-button-focus;\n }\n #summaryClearButton {\n position: absolute;\n right: 10px;\n }\n }\n}\n\n#fileBrowser {\n width: 388px;\n height: 76px;\n margin-left: -194px;\n margin-top: -38px;\n}\n\n.draggable-dialog {\n display: none;\n\n .content {\n padding: 0 5px;\n background: $white;\n cursor: default;\n table {\n border: 1px solid $brand-gray;\n }\n }\n\n table {\n overflow: auto;\n width: 100%;\n }\n\n table,\n td,\n th {\n border-collapse: collapse;\n }\n\n td,\n th {\n text-align: center !important;\n padding: 3px !important;\n height: 2em;\n font-size: 11px;\n }\n\n #chart {\n width: 100%;\n height: 20em;\n border: 1px solid $brand-gray;\n border-radius: 3px;\n }\n}\n\n.dialog-content {\n padding: 0 15px 15px 15px;\n background: white;\n cursor: default;\n}\n\n.warn .react-grid-Cell {\n background: #fbeed5;\n}\n.success .react-grid-Cell {\n background: #dff0d8;\n}\n.error .react-grid-Cell {\n background: #f2dede;\n}\n.info .react-grid-Cell {\n background: #d9edf7;\n}\n\n// ReactGrid\n.ui-widget {\n .react-grid-Main {\n outline: none;\n }\n .react-grid-Grid {\n border: 1px solid #f2f2f2;\n }\n .react-grid-Cell {\n border-bottom: 1px solid #f2f2f2;\n border-right: 1px solid #f2f2f2;\n }\n .react-grid-HeaderCell {\n font-size: 11px;\n border-bottom: 1px solid #f2f2f2;\n border-right: 1px solid #f2f2f2;\n padding-left: 8px !important;\n display: flex !important;\n align-items: center;\n }\n .react-grid-Row {\n font-size: 11px;\n }\n}\n\n#summaryPanel {\n .react-grid-Row .react-grid-Cell:last-child, \n .react-grid-Row .react-grid-Cell:nth-last-child(2) {\n text-align: right;\n }\n}\n\n#tradeInfo {\n margin-bottom: 10px;\n}\n\n#chart-dialog-component {\n width: 100% !important;\n}\n\n.sc-search-input .searchInputClassName {\n font-size: 1rem;\n height: 1.85rem !important;\n margin-top: 0.25rem;\n font-family: \"IBM Plex Sans\",sans-serif;\n}\n\n.form--sc-views__input .sc-input {\n font-size: 1rem;\n font-weight: 400;\n}\n\n.sc-btn.sc-btn--sm {\n font-size: 0.8rem;\n font-weight: 700;\n font-style: normal;\n}\n\n#trading-view-dialog-component {\n width: 100% !important;\n}\n\n.icon-close {\n width: 1.5em !important;\n height: 1.5em !important;\n}\n\n.ui-dialog-content {\n padding: 0px !important;\n\n &.ui-widget-content {\n input[type=text] {\n height: 40px;\n width: 100%;\n }\n .description {\n font-size: 75%;\n margin: 0.5em 0;\n }\n .input-row {\n margin: 1em 0;\n \n &.last {\n margin-bottom: 0;\n }\n }\n }\n}\n\n#load-dialog, #save-dialog {\n .integration-option {\n margin: 0.5em;\n }\n}\n\n#save-dialog {\n #collection {\n padding: 1.2em;\n border: 1px solid $brand-gray;\n border-radius: 10px;\n & .description {\n margin-left: 21px;\n margin-top: 0.2em;\n margin-bottom: 0;\n }\n }\n}\n\n#integrations-dialog {\n .integration {\n display: table;\n width: 100%;\n\n h2 {\n color: $black;\n font-size: 20px;\n margin: 0 0 0.2em 0;\n }\n .left {\n width: 60%;\n display: table-cell;\n vertical-align: top;\n }\n .right {\n width: 39%;\n display: table-cell;\n text-align: right;\n & > a {\n display: block;\n }\n }\n .integration-user {\n color: #b9b9b9;\n font-size: 75%;\n }\n }\n}\n","@mixin toolbox-button-base {\n background-color: $brand-gray;\n color: $black;\n padding: 0em;\n width: 40px;\n height: 40px;\n font-size: 1.500em;\n}\n\n@mixin toolbox-button-focus {\n outline: none;\n}\n\n@mixin toolbox-runButton-disabled {\n background-color: $brand-gray;\n color: $brand-dark-gray;\n}\n\n@mixin toolbox-runButton-hover {\n background-color: $toolbox-btn-active;\n}\n\n#toolbox {\n background-color: $brand-gray;\n border-bottom: 1px solid $brand-dark-gray;\n padding: 2px 3px;\n z-index: 0;\n overflow: auto;\n\n #runButton[disabled], #runButton[disabled]:hover, #stopButton[disabled], #stopButton[disabled] {\n @include toolbox-runButton-disabled;\n }\n\n .toolbox-button {\n @include toolbox-button-base;\n }\n\n .toolbox-button:hover {\n @include toolbox-runButton-hover;\n }\n\n .toolbox-button:focus {\n @include toolbox-button-focus;\n }\n\n .box.is-dragover {\n background-color: grey;\n }\n\n .toolbox-separator {\n background-color: $brand-dark-gray;\n display: inline-block;\n height: 15px;\n margin: 0 5px;\n user-select: none;\n width: 2px; \n }\n}\n\n#toolbox-login {\n margin-top: 1px;\n margin-right: 20px;\n}\n\n#toolbox-account {\n display: table;\n height: 40px;\n}\n\n#toolbox-account-list {\n position: relative;\n user-select: none;\n display: table-cell;\n vertical-align: middle;\n padding-right: 20px;\n &>a {\n color: $black;\n &:hover, &:visited {\n text-decoration: none;\n }\n }\n}\n\n#toolbox-main-account {\n display: inline;\n padding-inline-start: 0;\n &>li {\n display: inline;\n margin: 0 2px;\n }\n &>li:not(:first-child):not(:last-child):before {\n content: '\\2022';\n margin-right: 7px;\n }\n &>.nav-caret {\n display: inline-block;\n }\n}\n\n#toolbox-all-accounts {\n border: 0;\n z-index: 100;\n margin-top: -1px;\n background: none;\n right: 20px;\n & li {\n height: 100%;\n & a {\n margin-top: 0;\n }\n }\n}\n\nbutton {\n & > .barspinner.white {\n position: relative;\n margin: 3px auto;\n height: 13px;\n top: initial;\n left: initial; \n }\n}\n","@import 'color';\n\n.blocklyTreeRow {\n box-shadow: inset 0 -0.063em 0 0 #dedede;\n}\n\n.blocklyText {\n fill: $black !important;\n}\n\n.blocklyTreeSelected .blocklyTreeLabel {\n color: $white !important;\n}\n\n.blocklyTreeRow.blocklyTreeSelected .blocklyTreeIcon.blocklyTreeIconOpen, \n.blocklyTreeRow.blocklyTreeSelected .blocklyTreeIcon.blocklyTreeIconClosedLtr {\n filter: invert(100%);\n}\n\n.blocklyTreeIcon.blocklyTreeIconOpen {\n background-image: url(../image/down-arrow.svg) !important;\n background-position: -0.188em -0.375em !important;\n}\n\n.blocklyTreeIcon.blocklyTreeIconClosedLtr {\n background-image: url(../image/down-arrow.svg) !important;\n background-position: -0.188em -0.375em !important;\n}\n\n.blocklyTreeRow.blocklyTreeSelected {\n background-color: #2a3052 !important;\n}\n\n.blocklyTreeRow:not(.blocklyTreeSelected):hover {\n background-color: $brand-dark-gray !important;\n}\n\n.blocklyToolboxDiv .blocklyTreeRow {\n color: $black;\n}\n\n.blocklyEditableText tspan {\n fill: $black !important;\n}\n\n.blocklyEditableText rect {\n fill-opacity: 1 !important;\n}\n\n.blocklyFlyoutBackground {\n fill: $white !important;\n fill-opacity: 1 !important;\n stroke: $brand-dark-gray;\n stroke-width: 0.063em;\n}\n\n.blocklyToolboxDiv {\n background-color: $brand-gray !important;\n border-width: thin;\n color: $brand-dark-gray;\n border-right: 0.063em solid;\n min-width: 11em;\n}\n\n.blocklyIconShape {\n fill: #2a3052 !important;\n}\n\n.blocklyIconGroup:not(:hover),\n.blocklyIconGroupReadonly {\n opacity: 1 !important;\n}\n\n.blocklyScrollbarVertical,\n.blocklyScrollbarHorizontal {\n display: none;\n}\n\n.blocklyTreeRow {\n margin-bottom: 0px !important;\n height: 1.9em !important;\n padding-top: 0.250em;\n}\n\n.blocklyToolboxDiv {\n z-index: 99 !important;\n left: -100%;\n overflow-x: hidden !important;\n}\n\n.blocklySvg {\n position: absolute;\n}\n\n.blocklyMainBackground {\n stroke: none;\n}\n",".reality-check {\n position: fixed;\n display: none;\n top: calc(50% - 7em);\n width: 96%;\n padding-bottom: 0.5em;\n left: 2%;\n background-color: white;\n z-index: 9999;\n border-radius: 0.1em;\n\n p {\n font-size: 1.2em;\n margin: 0.4em;\n }\n\n h1 {\n margin: 0.2em;\n }\n\n #realityDuration {\n margin-left: 0.2em;\n }\n\n button,\n a {\n float: right;\n margin-bottom: 0em;\n margin-right: 0.5em;\n position: relative;\n }\n\n .error-msg {\n font-size: 0.8em;\n left: 50%;\n }\n}\n","@import 'color';\n\n$joyride-color: $brand-orange;\n$joyride-button-bg-color: $brand-btn;\n$joyride-tooltip-width: (15em, 20em, 20em);\n\n@import '../../node_modules/react-joyride/lib/react-joyride';\n\n#tour {\n position: absolute;\n display: inline;\n bottom: 1em;\n right: 1em;\n z-index: 999 !important;\n}\n\n.tour-first-pop-up {\n .joyride-tooltip {\n position: fixed !important;\n &__main {\n padding-bottom: 0;\n }\n }\n}\n\n.tour-custom-buttons {\n text-align: center;\n margin-top: 1em;\n button: {\n margin-left: 0.1em;\n }\n}\n\n.joyride-tooltip__button {\n padding: 10px 25px;\n &--primary {\n color: $white;\n background-color: $brand-btn;\n }\n &--primary:hover {\n color: $white;\n background-color: $brand-btn-active;\n }\n &--secondary {\n color: $black;\n background-color: $brand-gray;\n }\n &--secondary:hover {\n background-color: #dedede;\n }\n}","$joyride-color: #f04 !default;\n$joyride-zindex: 1500 !default;\n$joyride-overlay-color: rgba(#000, 0.5) !default;\n\n$joyride-beacon-color: $joyride-color !default;\n$joyride-beacon-size: 36px !default;\n\n$joyride-hole-border-radius: 4px !default;\n$joyride-hole-shadow: 0 0 15px rgba(#000, 0.5) !default;\n\n$joyride-tooltip-animation: joyride-tooltip 0.4s forwards !default;\n$joyride-tooltip-animation-timing: cubic-bezier(0, 1.05, 0.55, 1.18) !default;\n\n$joyride-tooltip-arrow-size: 36px !default;\n$joyride-tooltip-bg-color: #fff !default;\n$joyride-tooltip-border-radius: 4px !default;\n$joyride-tooltip-color: #555 !default;\n$joyride-tooltip-font-size: 16px !default;\n$joyride-tooltip-padding: 20px !default;\n$joyride-tooltip-shadow: (x: 1px, y: 2px, blur: 3px, color: rgba(#000, 0.3)) !default;\n$joyride-tooltip-width: (290px, 360px, 450px) !default;\n\n$joyride-close: (color: rgba($joyride-tooltip-color, 0.5), size: 12px, top: 10px, right: 10px) !default;\n$joyride-close-visible: true !default;\n$joyride-close-image: 'data:image/svg+xml,%3Csvg%20width%3D%22#{map-get($joyride-close, 'size')}%22%20height%3D%22#{map-get($joyride-close, 'size')}%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.117.323l-6.073%206.075-5.449-6.075c-.431-.431-1.131-.431-1.562%200-.431.431-.431%201.131%200%201.562l5.449%206.075-6.159%206.159c-.431.431-.431%201.134%200%201.562.431.431%201.131.431%201.562%200l6.075-6.073%205.449%206.073c.429.431%201.131.431%201.56%200%20.431-.429.431-1.131%200-1.562l-5.452-6.073%206.159-6.161c.431-.431.431-1.131%200-1.562-.431-.431-1.129-.431-1.56%200z%22%20fill%3D%22#{map-get($joyride-close, 'color')}%22%2F%3E%3C%2Fsvg%3E';\n\n$joyride-header-color: $joyride-tooltip-color !default;\n$joyride-header-font-size: 20px !default;\n$joyride-header-border-color: $joyride-color !default;\n$joyride-header-border-width: 1px !default;\n\n$joyride-button-bg-color: $joyride-color !default;\n$joyride-button-color: #fff !default;\n$joyride-button-border-radius: 4px !default;\n\n$joyride-back-button-color: $joyride-color !default;\n$joyride-skip-button-color: #ccc !default;\n\n$joyride-tooltip-arrow-height: $joyride-tooltip-arrow-size / 2;\n$joyride-tooltip-arrow-scale: ($joyride-tooltip-arrow-size / ($joyride-tooltip-arrow-size * 0 + 1)) / 16; // strip-units crazy hack\n\n@function joyride-arrow($location: top, $bg-color: $joyride-tooltip-bg-color) {\n $height: $joyride-tooltip-arrow-height;\n $width: $joyride-tooltip-arrow-size;\n $rotate: '0';\n $arrow-color: '%23' + str-slice(#{$bg-color}, 2);\n\n @if $location == bottom {\n $rotate: '180 8 4';\n } @else if $location == left {\n $height: $joyride-tooltip-arrow-size;\n $width: $joyride-tooltip-arrow-height;\n $rotate: '270 8 8';\n } @else if $location == right {\n $height: $joyride-tooltip-arrow-size;\n $width: $joyride-tooltip-arrow-height;\n $rotate: '90 4 4';\n }\n\n @return 'data:image/svg+xml,%3Csvg%20width%3D%22#{$width}%22%20height%3D%22#{$height}%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20points%3D%220%2C%200%208%2C%208%2016%2C0%22%20fill%3D%22#{$arrow-color}%22%20transform%3D%22scale%28#{$joyride-tooltip-arrow-scale}%29%20rotate%28#{$rotate}%29%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E';\n}\n\n@mixin reset-button() {\n appearance: none;\n background-color: transparent;\n border: 0;\n cursor: pointer;\n display: inline-block;\n line-height: 1;\n padding: 0;\n\n &:active,\n &:focus,\n &:hover {\n outline: none;\n }\n}\n\n.joyride {\n &-beacon {\n @include reset-button();\n height: $joyride-beacon-size;\n position: relative;\n width: $joyride-beacon-size;\n z-index: $joyride-zindex;\n\n &__inner {\n animation: joyride-beacon-inner 1.2s infinite ease-in-out;\n background-color: $joyride-beacon-color;\n border-radius: 50%;\n display: block;\n height: 50%;\n left: 50%;\n opacity: 0.7;\n position: absolute;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 50%;\n }\n\n &__outer {\n animation: joyride-beacon-outer 1.2s infinite ease-in-out;\n background-color: rgba($joyride-beacon-color, 0.2);\n border: ($joyride-beacon-size / 18) solid $joyride-beacon-color;\n border-radius: 50%;\n box-sizing: border-box;\n display: block;\n height: 100%;\n left: 0;\n opacity: 0.9;\n position: absolute;\n top: 0;\n transform: translateY(-50%);\n transform-origin: center;\n width: 100%;\n }\n }\n\n &-overlay {\n bottom: 0;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n z-index: $joyride-zindex;\n }\n\n &-hole {\n border-radius: $joyride-hole-border-radius;\n box-shadow: 0 0 0 9999px $joyride-overlay-color, $joyride-hole-shadow;\n position: absolute;\n\n &.safari {\n box-shadow: 0 0 999px 9999px $joyride-overlay-color, $joyride-hole-shadow;\n }\n }\n\n &-tooltip {\n background-color: $joyride-tooltip-bg-color;\n border-radius: $joyride-tooltip-border-radius;\n color: $joyride-tooltip-color;\n cursor: default;\n filter: drop-shadow(#{-(map-get($joyride-tooltip-shadow, 'x'))} #{-(map-get($joyride-tooltip-shadow, 'y'))} #{map-get($joyride-tooltip-shadow, 'blur')} #{map-get($joyride-tooltip-shadow, 'color')}) drop-shadow(#{map-get($joyride-tooltip-shadow, 'x')} #{map-get($joyride-tooltip-shadow, 'y')} #{map-get($joyride-tooltip-shadow, 'blur')} #{map-get($joyride-tooltip-shadow, 'color')});\n opacity: 0;\n padding: $joyride-tooltip-padding;\n pointer-events: auto;\n transform: translate3d(0, 0, 0);\n width: nth($joyride-tooltip-width, 1);\n z-index: $joyride-zindex + 10;\n\n &--animate {\n animation: $joyride-tooltip-animation;\n animation-timing-function: $joyride-tooltip-animation-timing;\n }\n\n &__triangle {\n background-repeat: no-repeat;\n // overflow: hidden;\n position: absolute;\n }\n\n &.bottom,\n &.bottom-left,\n &.bottom-right {\n margin-top: $joyride-tooltip-arrow-height;\n\n .joyride-tooltip__triangle {\n background-image: url('#{joyride-arrow(bottom)}');\n height: $joyride-tooltip-arrow-height;\n left: 50%;\n top: -($joyride-tooltip-arrow-height - 2);\n transform: translateX(-50%);\n width: $joyride-tooltip-arrow-size;\n }\n }\n\n &.top,\n &.top-left,\n &.top-right {\n margin-bottom: $joyride-tooltip-arrow-height;\n\n .joyride-tooltip__triangle {\n background-image: url('#{joyride-arrow(top)}');\n bottom: -($joyride-tooltip-arrow-height - 2);\n height: $joyride-tooltip-arrow-height;\n left: 50%;\n transform: translateX(-50%);\n width: $joyride-tooltip-arrow-size;\n }\n }\n\n &.bottom-left,\n &.top-left {\n .joyride-tooltip__triangle {\n left: 3%;\n transform: translateX(0);\n\n @media screen and (min-width: 480px) {\n left: 2%;\n }\n }\n }\n\n &.bottom-right,\n &.top-right {\n .joyride-tooltip__triangle {\n left: auto;\n right: 3%;\n transform: translateX(0);\n\n @media screen and (min-width: 480px) {\n right: 2%;\n }\n }\n }\n\n &.left {\n margin-right: $joyride-tooltip-arrow-height;\n\n .joyride-tooltip__triangle {\n background-image: url('#{joyride-arrow(left)}');\n height: $joyride-tooltip-arrow-size;\n right: -($joyride-tooltip-arrow-height - 2);\n width: $joyride-tooltip-arrow-height;\n }\n }\n\n &.right {\n margin-left: $joyride-tooltip-arrow-height;\n\n .joyride-tooltip__triangle {\n background-image: url('#{joyride-arrow(right)}');\n height: $joyride-tooltip-arrow-size;\n left: -($joyride-tooltip-arrow-height - 2);\n width: $joyride-tooltip-arrow-height;\n }\n }\n\n &__close {\n @include reset-button();\n background-image: url($joyride-close-image);\n background-repeat: no-repeat;\n background-size: contain;\n height: map-get($joyride-close, 'size');\n position: absolute;\n right: map-get($joyride-close, 'right');\n text-decoration: none;\n top: map-get($joyride-close, 'top');\n width: map-get($joyride-close, 'size');\n z-index: 10;\n\n &:hover,\n &:focus {\n color: darken(map-get($joyride-close, 'color'), 10);\n outline: none;\n }\n\n &--header {\n right: $joyride-tooltip-padding;\n top: $joyride-tooltip-padding;\n }\n\n @if $joyride-close-visible {\n display: block;\n } @else {\n display: none;\n }\n }\n\n &__header {\n border-bottom: $joyride-header-border-width solid $joyride-header-border-color;\n color: $joyride-header-color;\n font-size: $joyride-header-font-size;\n padding-bottom: 6px;\n padding-right: 18px;\n position: relative;\n\n ~ .joyride-tooltip__main {\n padding: 12px 0 18px;\n }\n }\n\n &__main {\n font-size: $joyride-tooltip-font-size;\n padding-bottom: 18px;\n padding-right: 18px;\n }\n\n &__footer {\n text-align: right;\n }\n\n &__button {\n @include reset-button();\n\n &--primary {\n background-color: $joyride-button-bg-color;\n border-radius: $joyride-button-border-radius;\n color: $joyride-button-color;\n padding: 6px 12px;\n transition: background-color 0.2s ease-in-out;\n\n &:active,\n &:focus,\n &:hover {\n background-color: lighten($joyride-button-bg-color, 6);\n color: $joyride-button-color;\n }\n }\n\n &--secondary {\n color: $joyride-back-button-color;\n margin-right: 10px;\n }\n\n &--skip {\n color: $joyride-skip-button-color;\n float: left;\n margin-right: 10px;\n }\n }\n\n &--standalone {\n .joyride-tooltip__main {\n padding-bottom: 0;\n }\n\n .joyride-tooltip__footer {\n display: none;\n }\n }\n\n @media screen and (min-width: 480px) {\n width: nth($joyride-tooltip-width, 2);\n }\n\n @media screen and (min-width: 960px) {\n width: nth($joyride-tooltip-width, 3);\n }\n }\n}\n\n@keyframes joyride-tooltip {\n 0% {\n transform: scale(0.1);\n }\n\n 100% {\n opacity: 1;\n transform: perspective(1px) scale(1);\n }\n}\n\n@keyframes joyride-beacon-inner {\n 20% {\n opacity: 0.9;\n }\n\n 90% {\n opacity: 0.7;\n }\n}\n\n@keyframes joyride-beacon-outer {\n 0% {\n transform: scale(1);\n }\n\n 45% {\n opacity: 0.7;\n transform: scale(0.75);\n }\n\n 100% {\n opacity: 0.9;\n transform: scale(1);\n }\n}\n","#elevio-shell {\n height: 60px;\n min-width: 60px;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: $brand-orange;\n position: fixed;\n right: 20px !important;\n bottom: 20px !important;\n border-radius: 100px;\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);\n transition: box-shadow 0.3s ease-in-out;\n cursor: pointer;\n z-index: 10000 !important;\n\n &:hover {\n .text {\n max-width: 1000px;\n padding: 0 25px;\n }\n }\n .icon {\n float: right;\n padding: 0 15px;\n transform: translateY(2px);\n\n svg {\n fill: $white;\n height: 30px !important;\n width: 30px !important;\n }\n }\n .text {\n float: left;\n display: inline-block;\n padding: 0;\n line-height: 60px;\n overflow: hidden;\n white-space: nowrap;\n max-width: 0;\n transition: max-width 0.1s ease, padding 0.1s ease;\n color: $white;\n font-size: 13px;\n }\n}","@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Inconsolata&family=Montserrat:ital,wght@0,900;1,700&family=Poppins&family=Sura&display=swap');\n\n$font-IBM: 'IBM Plex Sans', sans-serif;\n$hero-BG : #08223d;\n$white :#fff;\n$header-color : #333333;\n\n//mixin setup\n@mixin for-size($size) {\n @if $size==mobile {\n @media (max-width: 1024px) {\n @content;\n }\n }\n\n @else if $size==desktop {\n @media (max-width: 1080px) {\n @content;\n }\n }\n}\n\n.navigation-to-deriv {\n z-index: 100;\n}\n\n.navigation {\n display: block;\n background: #16212d; \n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n background: transparent;\n\n &-container{\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 2rem 3rem;\n max-width: 1440px;\n margin: 0px auto;\n\n @include for-size(mobile) {\n padding: 16px;\n }\n }\n\n &-logo {\n width: 138px;\n\n img{\n width: 100%;\n }\n\n }\n .right-btn{\n padding: 10px 16px;\n font: 700 0.9rem $font-IBM;\n text-transform: none;\n border-radius: 6px;\n margin-left: 22px;\n\n @include for-size(mobile) {\n display: none;\n }\n }\n}\n\n.binary-section-container {\n margin: 0 auto;\n max-width: 1400px;\n\n}\n\n.l-btn-binary {\n height: 2.5rem;\n border-radius: 0.25rem;\n font: 700 0.875rem $font-IBM;\n background-color: $white !important;\n color: #000;\n outline: none;\n border: none;\n padding: 0 1rem;\n cursor: pointer;\n text-transform: none;\n &.primary {\n background-color: #2E8836 !important;\n color: $white;\n\n &:hover {\n background-color: #246d2a !important;\n color: $white;\n }\n }\n\n &.danger {\n background: #FF444F !important;\n color: $white;\n\n &:hover {\n background-color: #cd353e !important;\n color: $white;\n }\n }\n\n &:hover {\n background-color: #C2C2C2 !important;\n color: #000;\n } \n\n &.transparent {\n background-color: transparent !important;\n border: solid 2px #999999;\n text-transform: none;\n &:hover {\n background-color: #C2C2C2 !important;\n }\n }\n}\n\n.btn-group-binary {\n display: flex;\n flex-wrap: wrap;\n gap: 24px;\n\n button {\n min-width: max-content;\n }\n\n @include for-size(mobile) {\n text-align: center;\n margin-bottom: 2.4rem;\n gap: 16px;\n\n button {\n flex: 1;\n }\n }\n}\n\n.switch {\n background: url(../image/sectionTwoLandingBackground.png) no-repeat;\n background-size: cover;\n &-inner {\n display: flex;\n align-items: center;\n \n\n @include for-size(desktop) {\n padding: 0 2rem;\n }\n\n @include for-size(mobile) {\n padding: 0;\n flex-direction: column;\n }\n\n &__placeholder {\n img {\n @include for-size(mobile) {\n object-fit: contain;\n width: 100%;\n }\n }\n }\n\n &__content {\n h1 {\n margin-bottom: 1.5rem;\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n }\n }\n\n h2 {\n margin-bottom: 1.5rem;\n font: 400 2rem $font-IBM;\n line-height: 3rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1.2rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n }\n }\n \n .btn-group-binary {\n @include for-size(mobile) {\n padding: 0 1rem 0 1rem;\n }\n }\n }\n }\n }\n\n\n.landing_carousel {\n display: flex !important;\n align-items: center;\n justify-content: center;\n display: flex !important;\n margin: 0px auto;\n padding: 5rem 0;\n\n @include for-size(mobile) {\n display: flex !important;\n flex-direction: column-reverse;\n text-align: center;\n }\n\n &_content {\n h1 {\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n margin-bottom: 2rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n margin-bottom: 1rem;\n }\n }\n\n h2 {\n font: 400 2rem $font-IBM;\n line-height: 3rem;\n margin-bottom: 2rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin-bottom: 1rem;\n }\n }\n }\n\n &_placeholder {\n width: 100%;\n align-items: center;\n justify-content: center;\n display: flex;\n\n @include for-size(mobile) {\n display: flex;\n /* align-items: center; */\n justify-content: center;\n }\n\n img {\n @include for-size(mobile) {\n object-fit: contain;\n width: 100%;\n }\n\n }\n }\n}\n\n.binary-choose-wrapper {\n\n @media (max-width: 800px) {\n padding-top: 40px;\n }\n\n &-inner {\n padding: 3rem 0;\n\n &-description {\n max-width: 406px;\n }\n\n &-title {\n color: $header-color;\n text-align: center;\n font: 700 2rem $font-IBM;\n line-height: 2rem;\n margin-bottom: 4rem;\n\n @include for-size(mobile) {\n margin-bottom: 1.5rem;\n font-size: 1.3em;\n }\n }\n\n &-section-content {\n display: flex;\n color: $header-color;\n\n @include for-size(mobile) {\n flex-direction: column;\n padding: 0 2rem;\n }\n }\n\n &-placeholder {\n margin-right: 2rem;\n }\n \n &-right,\n &-left {\n width: 50%;\n padding: 0 10rem;\n @include for-size(mobile) {\n width: 100%;\n padding: unset;\n }\n\n &-content {\n display: flex;\n margin-right: 2rem;\n min-height: 108px;\n margin-bottom: 1rem;\n @include for-size(mobile) {\n margin-right: 1rem;\n min-height: unset;\n margin-bottom: 1.3rem;\n }\n\n h1 {\n margin-top: 0;\n font: 700 1.6rem $font-IBM;\n color: $header-color;\n margin-bottom: 8px;\n @include for-size(mobile) {\n font: 700 1.3rem $font-IBM;\n margin-bottom: 8px;\n }\n }\n\n h2 {\n margin-top: 0;\n font: 400 1rem $font-IBM;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin-bottom: 0;\n }\n }\n\n }\n }\n &-right {\n padding-left: 0;\n }\n \n &-left {\n padding-right: 0;\n }\n\n &_btn {\n display: flex;\n justify-content: center;\n }\n }\n}\n\n.carousel-wrapper {\n margin: 0 auto;\n\n .slick-slider {\n padding: 0 2rem;\n @include for-size(mobile) {\n padding: 0 3rem;\n }\n .slick-arrow {\n &.slick-next {\n transform: rotate(180deg);\n top: 56%;\n\n @include for-size(mobile) {\n top: 54%;\n\n .slick-next {\n right: 0;\n }\n\n .slick-prev {\n left: 0;\n }\n }\n }\n }\n }\n\n .slick-dots {\n bottom: 0;\n\n @include for-size(mobile) {\n left: 0;\n }\n\n }\n\n .placeholder-outer {\n position: relative;\n width: 100%;\n height: 20rem;\n\n @include for-size(mobile) {\n height: 15rem;\n }\n\n display: flex;\n justify-content: center;\n align-items: center;\n\n .caousel_laptop {\n position: absolute;\n top: 0;\n z-index: 1;\n\n &_holder {\n position: absolute;\n top: 0;\n z-index: 2;\n width: 56%;\n top: 45px;\n height: 200px;\n\n @include for-size(mobile) {\n top: -10px;\n width: 72%;\n }\n }\n }\n\n }\n}\n\n.arrow {\n &.right {\n transform: rotate(180deg);\n }\n}\n\n.binary-wait-wrapper {\n background: url('../image/pattern.png') no-repeat right;\n background-size: 60% 100%;\n min-height: 18.75rem;\n position: relative;\n\n @include for-size(mobile) {\n min-height: 43.75rem;\n background-image: none;\n }\n\n &-inner {\n display: flex;\n margin: 0px auto;\n justify-content: space-between;\n padding: 0;\n\n @include for-size(mobile) {\n justify-content: center;\n text-align: center;\n flex-direction: column;\n box-shadow: inset 0px 1px 0px #f2f3f4;\n margin-top: 2rem;\n }\n\n &-content {\n h1 {\n font: 700 3rem $font-IBM;\n color: $header-color;\n margin-bottom: 0.5rem;\n\n @media (max-width: 400px) {\n font-size: 2rem;\n }\n\n }\n\n h2 {\n margin-top: 0.5rem;\n font: 400 1rem $font-IBM;\n margin-bottom: 2rem;\n color: $header-color;\n }\n }\n\n &-placeholder-binary {\n display: flex;\n justify-content: center;\n align-items: center;\n width: 300px;\n height: 300px;\n h1{\n font: 700 2rem $font-IBM;\n color:#fff\n }\n @include for-size(mobile) {\n background: url('../image/Dont_Wait_Mobile.png') no-repeat right;\n background-size: 100% 100%;\n min-height: 28.125rem;\n width: unset;\n height: unset;\n padding: 1rem;\n flex-direction: column;\n }\n\n img {\n position: absolute;\n right: 36%;\n bottom: 0;\n width: 100%;\n height: 100%;\n\n @include for-size(mobile) {\n position: unset;\n width: 100%;\n height: unset;\n }\n }\n &-desktop {\n display: block;\n padding-top: 2rem;\n @include for-size(mobile) {\n display: none;\n }\n\n }\n &-mobile {\n display: none;\n @include for-size(mobile) {\n display: block;\n }\n }\n }\n }\n}\n\n.about-trade-wrapper {\n background-color: #F8FAFB;\n padding: 0;\n &-inner {\n padding: 3rem 0;\n\n @include for-size(mobile) {\n padding: 2rem;\n }\n\n &-social-icons-wrapper {\n display: flex;\n justify-content: space-between;\n\n @include for-size(mobile) {\n text-align: center;\n flex-direction: column;\n }\n }\n\n\n img {\n margin-right: 1rem;\n }\n\n .social-media-icons-footer img {\n margin-right: 1rem;\n\n @include for-size(mobile) {\n margin-top: 1rem\n }\n }\n\n &-social-icons-mobile {\n display: none;\n\n @include for-size(mobile) {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 1.4rem 0;\n\n img {\n margin-right: 1rem;\n }\n }\n\n }\n\n }\n\n\n\n &-deriv-icons {\n text-align: left;\n padding-bottom: 2.4rem;\n\n @include for-size(mobile) {\n box-shadow: inset 0px -2px 0px rgba(51, 51, 51, 0.08);\n }\n }\n\n &-social-icons {\n display: block;\n\n @include for-size(mobile) {\n display: none;\n }\n\n @include for-size(mobile) {\n text-align: left;\n }\n }\n\n &-location-info {\n font: 400 1rem $font-IBM;\n }\n\n &-trade-info {\n padding: 1rem;\n background: rgba(87, 122, 146, 0.04);\n font: 400 1rem $font-IBM;\n box-shadow: inset 4px 0px 0px rgba(255, 68, 79, 0.64);\n\n @include for-size(mobile) {\n box-shadow: inset 0px 4px 0px rgba(255, 68, 79, 0.64);\n }\n }\n}\n\n.bot-gif-placeholder {\n display: flex;\n align-items: center;\n justify-content: center;\n flex: 1 1 50%;\n height: 100%;\n\n &__background {\n width: 84%;\n position: relative;\n\n img {\n height: 100%;\n width: 100%;\n object-fit: contain;\n }\n\n &__overlay {\n position: absolute;\n top: 0;\n width: 72%;\n transform: translate(20.7%, 16%);\n\n video {\n height: 100%;\n width: 100%;\n object-fit: contain;\n }\n }\n }\n}\n\n.hidden{\n display: none !important;\n}\n\n.card-container{\n padding: 2rem 0rem 3rem 0rem;\n margin: 0 auto;\n max-width: 1400px;\n\n @media (max-width: 700px) {\n padding: 2rem 0rem 0rem 0rem;\n\n }\n}\n\n.card-wrapper {\n &-holder{\n \n &-header{\n h1,h2 {\n font: 700 3rem $font-IBM;\n color: $header-color;\n text-align: center;\n line-height: 2.3rem;\n }\n h2 {\n font: 400 1.4rem $font-IBM;\n line-height: 0.8rem;\n }\n @include for-size(mobile) {\n h1 {\n font: 700 2rem $font-IBM;\n @include for-size(mobile) {\n margin-bottom: 1rem;\n }\n }\n h2 {\n line-height: 1.625rem;\n @include for-size(mobile) {\n margin-bottom: 0.2rem;\n }\n }\n h2:last-child{\n @include for-size(mobile) {\n margin-top: 0;\n }\n }\n }\n }\n &-container{\n display: flex;\n @include for-size(mobile) {\n flex-direction: column;\n align-items: center;\n }\n &-content\n {\n box-shadow: 0 4px 8px rgba(14, 14, 14, 0.1);\n border-radius: 0.5rem;\n margin: 0 1.5rem;\n max-width: 282px;\n max-height: 520px;\n\n @include for-size(mobile) {\n margin-bottom: 1.5rem;\n }\n img{\n width: 100%;\n } \n \n h1 {\n font: 700 1.5rem $font-IBM;\n color: $header-color;\n padding: 24px 32px 0;\n text-align: center;\n }\n h2 {\n font: 400 1rem $font-IBM;\n color: $header-color;\n padding: 0 2rem;\n margin-top: 0;\n text-align: center;\n }\n\n }\n }\n }\n\n}\n\n.hero-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n background: $hero-BG url(../image/hero_desktop.png) no-repeat;\n background-size: cover;\n\n @include for-size(mobile) {\n background: $hero-BG url(../image/hero_mobile.png) no-repeat;\n background-size: cover;\n }\n &-container{\n height: 100vh;\n width: 100%;\n max-width: 1440px;\n display: flex;\n flex: 1;\n flex-direction: row;\n padding: 0px 3rem;\n gap: 2.4rem;\n @include for-size(mobile) {\n flex-direction: column-reverse;\n padding: 1rem 1.4rem 0px 1.4rem;\n gap: unset;\n }\n &_box-binary {\n display: flex;\n flex: 1;\n flex-direction: column;\n justify-content: center;\n h1 {\n color: #FFF;\n margin: 2rem 2rem 2rem 0;\n font: 700 5rem $font-IBM;\n \n @include for-size(mobile) {\n font: 700 2rem $font-IBM;\n margin: 0 0 1rem 0;\n }\n }\n \n h2 {\n color: $white;\n line-height: 40px;\n margin-bottom: 2rem;\n font: 400 2rem $font-IBM;\n \n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin: 0 0 1.5rem 0;\n }\n }\n }\n &-left-binary {\n align-items: start;\n \n @include for-size(mobile) {\n flex: 0;\n }\n }\n \n &-right-binary {\n align-items: end;\n min-width: 0px;\n \n @include for-size(mobile) {\n margin: 0 10%;\n }\n }\n }\n}\n\n// To make the slider responsive, we need to override the default slider style.\n.slick-slider {\n width: 100%;\n}\n\n.slick-track {\n display: flex !important;\n justify-content: center;\n align-items: center;\n}\n\n.language-selector {\n position: relative;\n\n &-button {\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n transition: all 200ms;\n\n &:hover {\n opacity: 0.5;\n }\n\n &-name {\n font: 700 16px $font-IBM;\n color: $white;\n margin: 4px !important;\n }\n\n &-arrow {\n width: 16px;\n height: 16px;\n background-image: url(../image/dropdown-arrow.svg) !important;\n transition: all 200ms;\n\n &.up {\n rotate: -180deg;\n }\n\n &.down {\n rotate: 0deg;\n }\n }\n }\n\n &-container {\n background-color: $white;\n padding: 8px;\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: 8px;\n position: absolute;\n z-index: 9999;\n top: 40px;\n right: 0;\n transition: all 200ms;\n box-shadow: 0px 20px 24px -4px rgba(14, 14, 14, 0.08), 0px 8px 8px -4px rgba(14, 14, 14, 0.03);\n border-radius: 8px;\n\n &.open {\n opacity: 1;\n top: 40px;\n pointer-events: 'unset';\n }\n\n &.close {\n opacity: 0;\n top: 30px;\n pointer-events: none;\n }\n }\n\n &-item-container {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n padding: 8px;\n cursor: pointer;\n border-radius: 4px;\n transition: all 200ms;\n\n &:hover {\n background-color: #F0F5F8;\n }\n }\n\n &-item-name {\n font: 400 14px $font-IBM;\n color: #333333;\n margin: 0 !important;\n\n &.selected {\n font: 700 14px $font-IBM;\n color: $brand-red;\n }\n }\n}","@import url(\"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Inconsolata&family=Montserrat:ital,wght@0,900;1,700&family=Poppins&family=Sura&display=swap\");\n\n$font-IBM: \"IBM Plex Sans\", sans-serif;\n$hero-BG: #08223d;\n$white: #fff;\n$header-color: #333333;\n\n//mixin setup\n@mixin for-size($size) {\n @if $size==mobile {\n @media (max-width: 1024px) {\n @content;\n }\n } @else if $size==desktop {\n @media (max-width: 1080px) {\n @content;\n }\n }\n}\n\n.section-container {\n padding: 0 2rem;\n margin: 0 auto;\n max-width: 1400px;\n}\n\n.hero {\n background: $hero-BG url(../image/BG-1.webp) no-repeat;\n background-size: cover;\n padding: 0 2rem;\n @include for-size(mobile) {\n padding: 0;\n }\n @include for-size(mobile) {\n background: $hero-BG url(../image/MBG1.png) no-repeat;\n background-size: cover;\n }\n\n &-inner {\n display: flex;\n align-items: center;\n padding: calc(7rem + 5rem) 0px;\n\n @include for-size(desktop) {\n padding: calc(7rem + 5rem) 2rem;\n }\n\n @include for-size(mobile) {\n flex-direction: column-reverse;\n padding: 4rem 2rem;\n\n .btn-group {\n text-align: center;\n }\n }\n\n &__content {\n flex: 1 1 50%;\n\n h1 {\n color: #fff;\n margin: 2rem 2rem 2rem 0;\n font: 700 5rem $font-IBM;\n\n @include for-size(mobile) {\n font: 700 3rem $font-IBM;\n margin: 0 0 2rem 0;\n }\n }\n\n h2 {\n color: $white;\n line-height: 40px;\n margin-bottom: 2rem;\n font: 400 2rem $font-IBM;\n\n @include for-size(mobile) {\n font: 400 1.5rem $font-IBM;\n margin: 0 0 2.5rem 0;\n }\n }\n }\n\n &__placeholder {\n flex: 1 1 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n\n @include for-size(mobile) {\n flex-direction: column;\n }\n\n img {\n @include for-size(mobile) {\n object-fit: contain;\n width: 100%;\n }\n }\n }\n\n &__binary_logo {\n display: none;\n width: 14.75rem !important;\n margin-bottom: 3rem;\n\n @include for-size(mobile) {\n display: block;\n }\n }\n }\n}\n\n.l-btn {\n height: 2.5rem;\n border-radius: 0.25rem;\n font: 700 0.875rem $font-IBM;\n background-color: #c2c2c2;\n color: #000;\n outline: none;\n border: none;\n padding: 0 1rem;\n cursor: pointer;\n text-transform: none;\n\n &.primary {\n background-color: #2e8836;\n color: $white;\n @include for-size(mobile) {\n margin-bottom: 1rem;\n }\n &:hover {\n background-color: #246d2a;\n color: $white;\n }\n }\n\n &.danger {\n background: #ff444f;\n color: $white;\n @include for-size(mobile) {\n margin-bottom: 1rem;\n }\n &:hover {\n background-color: #cd353e;\n color: $white;\n }\n }\n\n &:hover {\n background-color: #979797;\n color: #000;\n }\n}\n\n.btn-group {\n button {\n margin-right: 1rem;\n }\n\n @include for-size(mobile) {\n text-align: center;\n margin-bottom: 2.4rem;\n }\n}\n\n.switch {\n background: url(../image/sectionTwoLandingBackground.png) no-repeat;\n background-size: cover;\n\n &-inner {\n display: flex;\n @include for-size(desktop) {\n padding: 0 2rem;\n }\n\n @include for-size(mobile) {\n padding: 0;\n flex-direction: column;\n }\n\n &__placeholder {\n img {\n @include for-size(mobile) {\n object-fit: contain;\n width: 100%;\n }\n }\n }\n\n &__content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n margin: 2rem 0;\n h1 {\n margin-bottom: 1.5rem;\n margin: 0;\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n }\n }\n\n h2 {\n margin-bottom: 1.5rem;\n margin-top: 1rem;\n font: 400 2rem $font-IBM;\n line-height: 3rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1.2rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n }\n }\n\n .l-btn.transparent {\n background-color: transparent;\n border: solid 2px #999999;\n text-transform: none;\n\n &:hover {\n background-color: #c2c2c2;\n }\n }\n }\n }\n}\n\n.landing_carousel {\n display: flex !important;\n align-items: center;\n justify-content: center;\n display: flex !important;\n margin: 0px auto;\n padding: 5rem 0;\n\n @include for-size(mobile) {\n display: flex !important;\n flex-direction: column-reverse;\n text-align: center;\n }\n\n &_content {\n h1 {\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n margin-bottom: 2rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n margin-bottom: 1rem;\n }\n }\n\n h2 {\n font: 400 2rem $font-IBM;\n line-height: 3rem;\n margin-bottom: 2rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin-bottom: 1rem;\n }\n }\n }\n\n &_placeholder {\n width: 100%;\n align-items: center;\n justify-content: center;\n display: flex;\n\n @include for-size(mobile) {\n display: flex;\n /* align-items: center; */\n justify-content: center;\n }\n\n img {\n @include for-size(mobile) {\n object-fit: contain;\n width: 100%;\n }\n }\n }\n}\n\n.choose-wrapper {\n background: #f2f3f4;\n\n &-inner {\n padding: 7.5rem 0;\n @include for-size(mobile) {\n padding: 2.5rem 0;\n }\n &-title {\n font: 700 2rem $font-IBM;\n color: #333;\n text-align: center;\n margin-bottom: 2.5rem;\n }\n\n &-section-content {\n display: flex;\n color: $header-color;\n padding: 0 15rem;\n flex-direction: column;\n @include for-size(mobile) {\n flex-direction: column;\n padding: 0 2rem;\n }\n &-row {\n display: flex;\n width: 100%;\n @include for-size(mobile) {\n flex-direction: column;\n }\n &-inner {\n display: flex;\n width: 50%;\n &:first-child {\n margin-right: 1rem;\n }\n @include for-size(mobile) {\n width: 100%;\n }\n &-placeholder {\n margin-right: 1rem;\n }\n &-description {\n h1 {\n font: 700 1.5rem $font-IBM;\n color: #333;\n margin-top: 0;\n line-height: 36px;\n margin-bottom: 0.5rem;\n }\n h2 {\n font: 400 1rem $font-IBM;\n color: #333;\n line-height: 24px;\n margin-bottom: 1.5rem;\n }\n }\n }\n }\n }\n\n &-right,\n &-left {\n .mobilecontent {\n display: none;\n }\n\n .desktopcontent {\n display: block;\n }\n\n width: 50%;\n padding: 0 10rem;\n\n @include for-size(mobile) {\n width: 100%;\n padding: unset;\n\n .desktopcontent {\n display: none;\n }\n\n .mobilecontent {\n display: block;\n }\n }\n\n &-content {\n display: flex;\n margin-right: 2rem;\n min-height: 11.25rem;\n margin-bottom: 1rem;\n\n &-placeholder {\n margin-right: 2rem;\n }\n\n &-description {\n margin-right: 2rem;\n }\n\n @include for-size(mobile) {\n min-height: unset;\n margin-bottom: 1.3rem;\n }\n\n h1 {\n margin-top: 0;\n font: 700 1.6rem $font-IBM;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.3rem $font-IBM;\n margin-bottom: 0;\n }\n }\n\n h2 {\n font: 400 1.2rem $font-IBM;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin-bottom: 0;\n }\n }\n }\n }\n\n &-right {\n padding-left: 0;\n }\n\n &-left {\n padding-right: 0;\n }\n }\n}\n\n.carousel-wrapper {\n margin: 0 auto;\n\n .slick-slider {\n padding: 0 2rem;\n\n @include for-size(mobile) {\n padding: 0;\n }\n\n .slick-arrow {\n &.slick-next {\n transform: rotate(180deg);\n top: 56%;\n\n @include for-size(mobile) {\n top: 54%;\n\n .slick-next {\n right: 0;\n }\n\n .slick-prev {\n left: 0;\n }\n }\n }\n }\n }\n\n .slick-dots {\n bottom: 0;\n\n @include for-size(mobile) {\n left: 0;\n }\n }\n\n .placeholder-outer {\n position: relative;\n width: 100%;\n height: 20rem;\n\n @include for-size(mobile) {\n height: 15rem;\n }\n\n display: flex;\n justify-content: center;\n align-items: center;\n\n .caousel_laptop {\n position: absolute;\n top: 0;\n z-index: 1;\n\n &_holder {\n position: absolute;\n top: 0;\n z-index: 2;\n width: 56%;\n top: 45px;\n height: 200px;\n\n @include for-size(mobile) {\n top: -10px;\n width: 72%;\n }\n }\n }\n }\n}\n\n.arrow {\n &.right {\n transform: rotate(180deg);\n }\n}\n\n.wait-wrapper {\n background: url(\"../image/pattern.png\") no-repeat right;\n background-size: 65% 100%;\n min-height: 18.75rem;\n position: relative;\n padding: 0 2rem;\n @include for-size(mobile) {\n padding: 0;\n }\n @include for-size(mobile) {\n min-height: 43.75rem;\n background-image: none;\n }\n\n &-inner {\n display: flex;\n margin: 0px auto;\n justify-content: space-between;\n padding: 0;\n\n @include for-size(mobile) {\n justify-content: center;\n text-align: center;\n flex-direction: column;\n }\n\n &-content {\n h1 {\n font: 700 3rem $font-IBM;\n color: $header-color;\n margin-bottom: 0.5rem;\n }\n\n h2 {\n margin-top: 0.5rem;\n font: 400 1rem $font-IBM;\n margin-bottom: 2rem;\n color: $header-color;\n }\n }\n\n &-placeholder {\n @include for-size(mobile) {\n background: url(\"../image/Dont_Wait_Mobile.png\") no-repeat right;\n background-size: 100% 100%;\n min-height: 28.125rem;\n }\n\n img {\n position: absolute;\n right: 20%;\n bottom: 0;\n\n @include for-size(mobile) {\n bottom: 0;\n left: 0;\n right: 0;\n top: unset;\n margin: 0 auto;\n }\n }\n }\n }\n}\n\n.about-trade-wrapper {\n background-color: #f8fafb;\n padding: 0;\n padding: 0 2rem;\n @include for-size(mobile) {\n padding: 0;\n }\n &-inner {\n padding: 3rem 0;\n\n @include for-size(mobile) {\n padding: 2rem;\n }\n\n &-social-icons-wrapper {\n display: flex;\n justify-content: space-between;\n\n @include for-size(mobile) {\n text-align: center;\n flex-direction: column;\n }\n }\n\n img {\n margin-right: 1rem;\n }\n\n .social-media-icons-footer img {\n margin-right: 1rem;\n\n @include for-size(mobile) {\n margin-top: 1rem;\n }\n }\n\n &-social-icons-mobile {\n display: none;\n\n @include for-size(mobile) {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 1.4rem 0;\n flex-wrap: wrap;\n gap: 8px;\n\n img {\n margin-right: 1rem;\n }\n }\n }\n\n &-info {\n &-location {\n font: 400 1rem $font-IBM;\n color: #333;\n\n a {\n color: #333333 !important;\n }\n\n @include for-size(mobile) {\n margin-bottom: 1.5rem;\n }\n }\n\n &-trade {\n padding: 1rem;\n background: rgba(87, 122, 146, 0.04);\n font: 400 1rem $font-IBM;\n box-shadow: inset 4px 0px 0px rgba(255, 68, 79, 0.64);\n color: #333;\n\n a {\n color: #333333;\n }\n\n @include for-size(mobile) {\n box-shadow: inset 0px 4px 0px rgba(255, 68, 79, 0.64);\n }\n }\n }\n }\n\n &-deriv-icons {\n text-align: left;\n padding-bottom: 2.4rem;\n\n @include for-size(mobile) {\n box-shadow: inset 0px -2px 0px rgba(51, 51, 51, 0.08);\n }\n }\n\n &-social-icons {\n display: block;\n\n @include for-size(mobile) {\n display: none;\n }\n\n @include for-size(mobile) {\n text-align: left;\n }\n }\n}\n\n.bot-gif-placeholder {\n display: flex;\n align-items: center;\n justify-content: center;\n flex: 1 1 50%;\n height: 100%;\n\n &__background {\n width: 84%;\n position: relative;\n\n img {\n height: 100%;\n width: 100%;\n object-fit: contain;\n }\n\n &__overlay {\n position: absolute;\n top: 0;\n width: 72%;\n transform: translate(20.7%, 16%);\n\n video {\n height: 100%;\n width: 100%;\n object-fit: contain;\n }\n }\n }\n}\n\n.hidden {\n display: none !important;\n}\n\n.bot-landing-alert {\n &-popup {\n display: none;\n position: fixed;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.72);\n top: 0;\n z-index: 1000;\n\n &.open {\n display: block !important;\n }\n }\n\n &-header {\n text-align: end;\n margin-bottom: 1rem;\n\n img {\n cursor: pointer;\n }\n }\n\n &-para {\n margin-bottom: 1.5rem;\n }\n\n &-title {\n margin-top: 0;\n margin-bottom: 1rem;\n }\n\n &-draggable-dialog {\n border-radius: 8px;\n min-height: 250px;\n background: white;\n position: absolute;\n width: 42rem;\n margin: 0 auto;\n padding: 2rem;\n z-index: 1000;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n\n &.open {\n display: block !important;\n }\n }\n\n &-btn-group {\n text-align: center;\n\n .default {\n background: #c2c2c2;\n margin-right: 1rem;\n\n :hover {\n background-color: #d8d6d6;\n }\n }\n }\n}\n\n.mobilecontent {\n display: none;\n}\n\n.desktopcontent {\n display: block;\n}\n\n@include for-size(mobile) {\n .desktopcontent {\n display: none;\n }\n\n .mobilecontent {\n display: block;\n }\n}\n",".carousel-title {\n display: flex;\n align-items: center;\n flex-direction: column;\n\n &__content {\n max-width: 62rem;\n }\n\n h1 {\n text-align: center;\n margin-top: 5rem;\n margin-bottom: 2.5rem;\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n margin-top: 2.5rem;\n }\n }\n}\n\n.carousel_section .slick-list {\n margin: 0 0 0 7.5rem;\n\n @media (max-width: 1024px) {\n margin: 0 0 0 2em; \n }\n }\n\n.carousel_section {\n\n &__desktop {\n @media (max-width: 768px) {\n display: none;\n }\n }\n\n &__mobile {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin-top: -4.625rem;\n\n\n @media (min-width: 768px) {\n display: none;\n }\n }\n\n &__content {\n max-width: 62.25rem;\n display: flex;\n justify-content: center;\n\n h1 {\n text-align: center;\n margin-bottom: 1.5rem;\n font: 700 3rem $font-IBM;\n line-height: 4rem;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 700 1.5rem $font-IBM;\n text-align: center;\n padding: 0 2rem;\n }\n }\n\n }\n\n &__slide_img {\n max-width: 24rem;\n\n @include for-size(mobile) {\n max-width: 19.875rem;\n \n }\n }\n\n &__arrow-btn {\n text-transform: none;\n padding: 0.625rem 0.75rem 0.625rem 1rem;\n font-size: 0.875rem;\n font-weight: 700;\n min-width: 8.18rem;\n color: #FF444F;\n background: #FFFFFF;\n border-radius: 6.25rem;\n filter: drop-shadow(0px 0px 1.5rem rgba(0, 0, 0, 0.08)) drop-shadow(0px 1.5rem 1.5rem rgba(0, 0, 0, 0.08));\n transform: translate(0px, -1.25rem);\n }\n\n &__arrow-btn:hover {\n background: #FFFFFF;\n color: #FF444F;\n\n }\n\n &__slide_card {\n max-width: 24rem;\n max-height: 36.563rem;\n display: flex;\n text-align: center;\n outline: none;\n\n }\n\n &__btn_inner {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 20px;\n img {\n margin-left: 0.5rem;\n }\n }\n}\n\n.carousel_section__mobile .carousel_section__slide_card {\n flex-direction: column;\n max-width: 20.5rem;\n max-height: 27rem;\n display: flex;\n text-align: center;\n outline: none;\n}\n\n.carousel_section .slick-slide {\n max-width: 24rem;\n}\n\n.carousel_section .slick-slide {\n margin: 0 0.781rem;\n}\n\n\n.carousel_slide_info_wrapper {\n max-height: 5.75rem;\n display: flex; \n flex-direction: column;\n justify-content: center;\n align-items: center;\n \n position: relative;\n top: 12.375rem;\n\n @include for-size(mobile) {\n top: 10.375rem;\n margin-bottom: 0.2rem;\n }\n\n}\n\n.platform_title {\n margin-top: 0;\n font: 700 1.6rem $font-IBM;\n color: $header-color; \n margin-bottom: 0.5rem;\n @include for-size(mobile) {\n font: 700 1.3rem $font-IBM;\n margin: 0.5rem;\n }\n\n }\n\n.platform_description {\n min-height: 2.62rem; \n max-width: 21rem;\n margin-top: 0;\n font: 400 1rem $font-IBM;\n color: $header-color;\n\n @include for-size(mobile) {\n font: 400 1rem $font-IBM;\n margin-bottom: 0;\n max-width: 17.5rem;\n\n }\n\n @media (max-width: 768px) {\n }\n }","\n$font-IBM: 'IBM Plex Sans',\nsans-serif;\n$white :#fff;\n\n@mixin for-size($size) {\n @if $size==mobile {\n @media (max-width: 1024px) {\n @content;\n }\n }\n \n @else if $size==desktop {\n @media (max-width: 1080px) {\n @content;\n }\n }\n }\n\n.take-deriv {\n display: flex;\n justify-content: center;\n\n &_background {\n padding: 0 110px 0 110px;\n display: flex;\n justify-content: space-between;\n width: 1200px;\n height: 330px;\n background-image: url('../image/bg-take-deriv.png');\n border-radius: 20px;\n background-repeat: no-repeat;\n background-size: cover;\n\n @include for-size(mobile) {\n padding: 0 24px 0 24px;\n align-items: center;\n height: 487px;\n flex-direction: column-reverse;\n height: fit-content;\n border-radius: 0;\n }\n }\n\n &_qr-code{\n padding-top: 33px;\n max-width: 424px;\n\n @media (max-width: 1113px) {\n padding-top: 15px;\n }\n\n @include for-size(mobile) {\n padding-top: 24px;\n display: flex;\n flex-direction: column;\n text-align: center;\n }\n\n img {\n width: 96px;\n }\n\n h1 {\n margin: 0;\n color: $white;\n font: 700 2rem $font-IBM;\n\n @include for-size(mobile) {\n font: 700 24px $font-IBM;\n }\n\n }\n h2 {\n color: $white;\n font: 400 1.25rem $font-IBM;\n\n @include for-size(mobile) {\n font: 400 16px $font-IBM;\n }\n }\n h3 {\n color: $white;\n font: 400 1rem $font-IBM;\n\n @include for-size(mobile) {\n font: 400 14px $font-IBM;\n }\n }\n }\n \n &_iphone {\n padding-top: 33px;\n img {\n height: 297px;\n\n @include for-size(mobile) {\n height: 200px;\n\n }\n }\n }\n}\n","#movetoderiv_language_switcher {\n position: absolute!important;\n top: 60px;\n right: 190px;\n\n @media only screen and (max-width: 1534px) and (min-width: 1025px){\n right: 200px;\n }\n @media (max-width: 1024px) {\n top: 1px;\n right: -38px;\n \n }\n @media (min-width: 1534px) {\n right: 20%;\n }\n \n @media (min-width: 1800px) {\n right: 25%;\n }\n\n @media (min-width: 2270px) {\n right: 28%;\n }\n}\n\n.movetoderiv_topbar_hide {\n position: absolute;\n top: -20px;\n display: none;\n\n \n @media (max-width: 1024px) {\n position: relative;\n top: 0;\n display: block;\n }\n}\n\n\n.border_hide_mtd {\n border: none !important;\n}\n\n\n.language_list {\n padding-top: 26px !important;\n display: flex !important;\n flex-direction: column;\n align-items: center;\n width: 176px !important;\n height: 216px;\n margin-top: 36px !important;\n border-radius: 8px;\n\n @media (max-width: 1024px) {\n margin-top: 30px !important;\n margin-right: 52px!important;\n }\n}\n\n.language_list::before {\n content: ' ';\n position: absolute;\n width: 0;\n height: 0;\n left: 91px;\n top: 2px;\n border: 12px solid #f2f2f2;\n transform: rotate(45deg);\n\n @media (max-width: 1024px) {\n left: 133px;\n }\n}\n\n.hide_lang {\n display: none !important;\n}\n\n#show_lang {\n padding-bottom: 18px !important;\n display: inline-block !important;\n width: 144px !important;\n}\n\n.language_flag {\n max-width: 24px;\n height: 16px;\n}\n\n.language_text {\n text-align: left;\n box-sizing: border-box;\n display: inline-block;\n margin: 0;\n font-size: 14px !important;\n width: 80px !important;\n padding-left: 8px;\n\n}\n\n.actual_flag {\n text-transform: uppercase;\n font-weight: 600;\n font-size: 16px;\n}\n\n.displaying_language_mtd {\n display: flex !important;\n align-items: center;\n max-width: 76px;\n}\n.language_background_flag {\n display: inline-block;\n width: 30px;\n height: 20px;\n}\n\n.en_flag_mtd {\n background-size: cover;\n background-image: url(../image/english-flag.png);\n}\n\n.id_flag_mtd {\n background-size: cover;\n background-image: url(../image/indonesia-flag.png);\n}\n\n.es_flag_mtd {\n background-size: cover;\n background-image: url(../image/spain-flag.png);\n}\n\n.pt_flag_mtd {\n background-size: cover;\n background-image: url(../image/portugal-flag.png);\n}\n"],"names":[],"mappings":";AKCI,OAAO,CAAC,mFAAI;ASDhB,OAAO,CAAC,gKAAI;ACAZ,OAAO,CAAC,gKAAI;AbAZ,AAAA,wBAAwB,CAAC,kBAAkB,CAAC,SAAS,CAAC,iBAAiB,AAAA,4BAA4B,EAAE,wBAAwB,CAAC,kBAAkB,CAAC,SAAS,CAAC,iBAAiB,AAAA,8BAA8B,CAAC;EACvM,SAAS,EAAE,gBAAgB,CAAC,eAAe,GAC9C;;AAED,AAAA,SAAS,CAAC,cAAc,CAAC;EACrB,SAAS,EAAE,KAAK,GACnB;;AAED,AACI,uBADmB,CACnB,QAAQ;AADZ,uBAAuB,CAEnB,eAAe;AAFnB,uBAAuB,CAGnB,eAAe;AAHnB,uBAAuB,CAInB,UAAU;AAJd,uBAAuB,CAKnB,gBAAgB,GAAC,KAAK;AAL1B,uBAAuB,CAMnB,eAAe;AANnB,uBAAuB,CAOnB,eAAe,CAAC;EACZ,SAAS,EAAE,KAAK,GACnB;;AATL,AAUI,uBAVmB,CAUnB,eAAe,CAAC;EACZ,WAAW,EAAE,IAAI,GACpB;;AAZL,AAaI,uBAbmB,CAanB,eAAe,CAAC;EACZ,OAAO,EAAE,aAAa,GACzB;;AAfL,AAgBI,uBAhBmB,CAgBnB,SAAS,AAAA,sBAAsB,CAAC;EAC5B,WAAW,EAAE,GACjB,GAAC;;ACxBL,AAAA,oBAAoB,CAAC;EACnB,gBAAgB,EFHL,OAAO;EEIlB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,KAAK;EAChB,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,SAAS;EACjB,IAAI,EAAE,CAAC;EACP,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,cAAc,GAiFxB;EA/EE,AAAD,oCAAiB,CAAC;IAChB,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,KAAK,CAAC,KAAK,CFdf,OAAO;IEelB,WAAW,EAAE,mBAAmB;IAChC,YAAY,EAAE,sBAAsB;IACpC,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,KAAK,GACb;EAEA,AAAD,6BAAU,CAAC;IACT,SAAS,EAAE,KAAK;IAChB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,kBAAkB,GA8C3B;IA5CE,AAAD,oCAAQ,CAAC;MACP,WAAW,EAAE,GAAG;MAChB,MAAM,EAAE,CAAC;MACT,aAAa,EAAE,GAAG;MAClB,WAAW,EAAE,IAAI;MACjB,SAAS,EAAE,IAAI,GAChB;IACA,AAAD,kCAAM,CAAC;MACL,MAAM,EAAE,CAAC;MACT,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,IAAI;MACjB,SAAS,EAAE,IAAI,GAChB;IACA,AAAD,oCAAQ,CAAC;MACP,eAAe,EAAE,IAAI;MACrB,UAAU,EAAE,MAAM;MAClB,WAAW,EAAE,IAAI;MACjB,OAAO,EAAE,QAAQ;MACjB,OAAO,EAAE,YAAY;MACrB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,OAAO;MACpB,aAAa,EAAE,GAAG;MAClB,MAAM,EAAE,OAAO;MACf,SAAS,EAAE,IAAI;MACf,MAAM,EAAE,CAAC;MACT,UAAU,EFlDJ,OAAO;MEmDb,KAAK,EF/CH,OAAO,CE+CK,UAAU;MACxB,UAAU,EAAE,IAAI,GACjB;IAED,MAAM,EAAE,SAAS,EAAE,MAAM;MAnC1B,AAAD,6BAAU,CAAC;QAoCP,YAAY,EAAE,IAAI,GAarB;IAXC,MAAM,EAAE,SAAS,EAAE,MAAM;MAtC1B,AAAD,6BAAU,CAAC;QAuCP,QAAQ,EAAE,QAAQ;QAClB,SAAS,EAAE,KAAK;QAChB,KAAK,EFzDH,OAAO,GEiEZ;IANC,MAAM,EAAE,SAAS,EAAE,KAAK;MA3CzB,AAAD,6BAAU,CAAC;QA4CP,SAAS,EAAE,KAAK,GAKnB;IAHC,MAAM,EAAE,SAAS,EAAE,KAAK;MA9CzB,AAAD,6BAAU,CAAC;QA+CP,SAAS,EAAE,KAAK,GAEnB;EACD,MAAM,EAAE,SAAS,EAAE,MAAM;IAzE3B,AAAA,oBAAoB,CAAC;MA0EjB,SAAS,EAAE,KAAK,GAmBnB;EAjBC,MAAM,EAAE,SAAS,EAAE,MAAM;IA5E3B,AAAA,oBAAoB,CAAC;MA6Ef,SAAS,EAAE,KAAK;MAChB,OAAO,EAAE,UAAU;MACnB,SAAS,EAAE,IAAI,GAcpB;MA7FD,AAiFI,oBAjFgB,GAiFd,GAAG,CAAC;QACJ,OAAO,EAAE,IAAI,GACd;MACA,AAAD,oCAAiB,CAAC;QAChB,OAAO,EAAE,YAAY,GACtB;EAEH,MAAM,EAAE,SAAS,EAAE,KAAK;IAxF1B,AAAA,oBAAoB,CAAC;MAyFf,SAAS,EAAE,KAAK;MAChB,OAAO,EAAE,UAAU;MACnB,SAAS,EAAE,IAAI,GAEpB;;AC/FD,AAAA,cAAc,CAAC;EACb,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,QAAQ;EAClB,sBAAsB,EAAE,WAAW;EACpC,uBAAuB,EAAE,WAAW;EACnC,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,iBAAiB;EACzB,MAAM,EAAE,WAAW,GA0CpB;EAxCE,AAAD,oBAAO,CAAC;IACN,QAAQ,EAAE,QAAQ;IAClB,IAAI,EAAE,IAAI;IACV,WAAW,EAAE,GAAG;IAChB,SAAS,EAAE,IAAI,GAChB;EACA,AAAD,sBAAS,CAAC;IACN,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,MAAM;IACb,SAAS,EAAE,iBAAiB;IAC5B,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,MAAM;IAClB,WAAW,EAAE,IAAI;IACjB,OAAO,EAAE,UAAU;IACnB,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,OAAO;IACpB,aAAa,EAAE,GAAG;IAClB,MAAM,EAAE,OAAO;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EHvBJ,OAAO;IGwBb,KAAK,EHrBH,OAAO;IGsBT,UAAU,EAAE,MAAM,GACrB;EACA,AAAD,yBAAY,CAAC;IACX,QAAQ,EAAE,QAAQ;IAClB,IAAI,EAAE,KAAK;IACX,GAAG,EAAE,MAAM;IACX,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,IAAI;IACZ,gBAAgB,EAAE,OAAO,GAK1B;IAHC,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;MARzC,AAAD,yBAAY,CAAC;QAST,OAAO,EAAE,IAAI,GAEhB;EAED,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;IA9C1C,AAAA,cAAc,CAAC;MA+CP,OAAO,EAAE,IAAI,GAEpB;;ACjDD,AAAA,YAAY,CAAC;EAET,WAAW,EAAE,2BAA2B;EACxC,sBAAsB,EAAE,WAAW;EACtC,uBAAuB,EAAE,WAAW;EACjC,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,iBAAiB;EACzB,MAAM,EAAE,MAAM,GAoDjB;EAlDI,AAAD,kBAAO,CAAC;IACJ,YAAY,EAAE,GAAG;IACjB,WAAW,EAAE,IAAI,GACpB;EACA,AAAD,gBAAK,CAAC;IACF,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,IAAI;IAClB,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM,GAO1B;IALI,AAAD,qBAAM,CAAC;MACH,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI;MACjB,WAAW,EAAE,GAAG,GACnB;EAEJ,AAAD,oBAAS,CAAC;IACN,SAAS,EAAE,IAAI;IACf,gBAAgB,EAAE,OAAO;IACzB,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,MAAM;IACtB,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,MAAM;IACvB,YAAY,EAAE,YAAY;IAC1B,MAAM,EAAE,OAAO;IACf,WAAW,EAAE,MAAM;IACnB,OAAO,EAAE,MAAM;IACf,OAAO,EAAE,WAAW;IACpB,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,IAAI;IACZ,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,GAAG,CAAC,IAAG,CAAC,iCAA2B;IAC/C,OAAO,EAAE,CAAC;IACV,QAAQ,EAAE,QAAQ;IAClB,eAAe,EAAE,IAAI;IACrB,cAAc,EAAE,IAAI,CAAA,UAAU,GASjC;IA5BA,AAqBG,oBArBK,AAqBJ,MAAM,CAAC;MACJ,UAAU,EAAE,OAAO,GACtB;IAvBJ,AAyBG,oBAzBK,AAyBJ,MAAM,CAAC;MACJ,OAAO,EAAE,IAAI,GAChB;EAEJ,AAAD,uBAAY,CAAC;IACT,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,IAAI;IACZ,gBAAgB,EAAE,OAAO,GAC5B;;AAGL,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EACpC,AAAA,YAAY,CAAC;IACT,OAAO,EAAE,IAAI,GAChB;;AAGL,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EAE/B,AAAD,uBAAY,CAAC;IACT,OAAO,EAAE,IAAI,GAChB;;AC1ET,UAAU;EACR,WAAW,EAAE,WAAW;EACxB,GAAG,EAAE,qCAAqC;EAC1C,GAAG,EAAE,2CAA2C,CAAC,2BAA2B,EACvE,uCAAuC,CAAC,eAAe,EACvD,sCAAsC,CAAC,cAAc,EACrD,qCAAqC,CAAC,kBAAkB,EACxD,+CAA+C,CAAC,aAAa;EAClE,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;;AAEpB,iGAAiG;AACjG,4FAA4F;AAC5F;;;;;;;EAOE;CAED,AAAA,AAAA,KAAC,EAAO,OAAO,AAAd,CAAe,OAAO,GAAE,AAAA,KAAC,EAAO,QAAQ,AAAf,CAAgB,OAAO,CAAC;EACjD,WAAW,EAAE,WAAW;EACxB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EAEX,OAAO,EAAE,YAAY;EACrB,eAAe,EAAE,OAAO;EACxB,KAAK,EAAE,GAAG;EACV,YAAY,EAAE,IAAI;EAClB,UAAU,EAAE,MAAM;EAClB,kBAAkB;EAElB,iEAAiE;EACjE,YAAY,EAAE,MAAM;EACpB,cAAc,EAAE,IAAI;EAEpB,+CAA+C;EAC/C,WAAW,EAAE,GAAG;EAEhB,iEAAiE;EACjE,0BAA0B;EAC1B,WAAW,EAAE,IAAI;EAEjB,2DAA2D;EAC3D,sBAAsB;EAEtB,8CAA8C;EAC9C,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EAElC,6BAA6B;EAC7B,wDAAwD,EACzD;;AAED,AAAA,aAAa,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACrD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,YAAY,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACpD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,aAAa,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACrD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,SAAS,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACjD,AAAA,WAAW,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACnD,AAAA,WAAW,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACnD,AAAA,cAAc,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACtD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,kBAAkB,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAC1D,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,UAAU,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AAClD,AAAA,gBAAgB,AAAA,OAAO,CAAC;EAAE,OAAO,EAAE,OAAO,GAAI;;AAAA,UAAU;AACxD,AAAA,iBAAiB,CAAC;EAId,UAAU,EAAE,+BAA+B,CAAC,SAAS,CAAC,MAAM,GAI/D;EARD,AACI,iBADa,AACZ,OAAO,CAAC;IACL,OAAO,EAAE,GAAG,GACf;EAHL,AAKI,iBALa,AAKZ,QAAQ,CAAC;IACN,UAAU,EAAE,+BAA+B,CAAC,SAAS,CAAC,MAAM,GAC/D;;AAEL,AAAA,WAAW,CAAC;EAIR,UAAU,EAAE,yBAAyB,CAAC,SAAS,CAAC,MAAM,GAIzD;EARD,AACI,WADO,AACN,OAAO,CAAC;IACL,OAAO,EAAE,GAAG,GACf;EAHL,AAKI,WALO,AAKN,SAAS,CAAC;IACP,UAAU,EAAE,kCAAkC,CAAC,SAAS,CAAC,MAAM,GAClE;;AAEL,AAAA,kBAAkB,CAAC;EAIf,UAAU,EAAE,gCAAgC,CAAC,SAAS,CAAC,MAAM,GAChE;EALD,AACI,kBADc,AACb,OAAO,CAAC;IACL,OAAO,EAAE,GAAG,GACf;;AExEL,AAAA,QAAQ,CAAC;EACL,gBAAgB,EPvBP,OAAO;EOwBhB,aAAa,EAAE,GAAG,CAAC,KAAK,CPvBV,OAAO;EOwBrB,OAAO,EAAE,OAAO;EAChB,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,IAAI,GA8BjB;EAnCD,AAOI,QAPI,CAOJ,UAAU,CAAA,AAAA,QAAC,AAAA,GAPf,QAAQ,CAOkB,UAAU,CAAA,AAAA,QAAC,AAAA,CAAS,MAAM,EAPpD,QAAQ,CAO8C,WAAW,CAAA,AAAA,QAAC,AAAA,GAPlE,QAAQ,CAOqE,WAAW,CAAA,AAAA,QAAC,AAAA,EAAU;IAf/F,gBAAgB,EPdP,OAAO;IOehB,KAAK,EPdS,OAAO,GO8BpB;EATL,AAWI,QAXI,CAWJ,eAAe,CAAC;IAhChB,gBAAgB,EPDP,OAAO;IOEhB,KAAK,EPQD,OAAO;IOPX,OAAO,EAAE,GAAG;IACZ,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,OAAO,GA6BjB;EAbL,AAeI,QAfI,CAeJ,eAAe,AAAA,MAAM,CAAC;IAlBtB,gBAAgB,EPRC,OAAO,GO4BvB;EAjBL,AAmBI,QAnBI,CAmBJ,eAAe,AAAA,MAAM,CAAC;IA/BtB,OAAO,EAAE,IAAI,GAiCZ;EArBL,AAuBI,QAvBI,CAuBJ,IAAI,AAAA,YAAY,CAAC;IACb,gBAAgB,EAAE,IAAI,GACzB;EAzBL,AA2BI,QA3BI,CA2BJ,kBAAkB,CAAC;IACf,gBAAgB,EPjDN,OAAO;IOkDjB,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,KAAK;IACb,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,GAAG,GACb;;AAGL,AAAA,cAAc,CAAC;EACX,UAAU,EAAE,GAAG;EACf,YAAY,EAAE,IAAI,GACrB;;AAED,AAAA,gBAAgB,CAAC;EACb,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,IAAI,GACf;;AAED,AAAA,qBAAqB,CAAC;EAClB,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,UAAU;EACnB,cAAc,EAAE,MAAM;EACtB,aAAa,EAAE,IAAI,GAOtB;EAZD,AAMI,qBANiB,GAMf,CAAC,CAAC;IACA,KAAK,EPlEL,OAAO,GOsEV;IAXL,AAQQ,qBARa,GAMf,CAAC,AAEE,MAAM,EARf,qBAAqB,GAMf,CAAC,AAEW,QAAQ,CAAC;MACf,eAAe,EAAE,IAAI,GACxB;;AAIT,AAAA,qBAAqB,CAAC;EAClB,OAAO,EAAE,MAAM;EACf,oBAAoB,EAAE,CAAC,GAY1B;EAdD,AAGI,qBAHiB,GAGf,EAAE,CAAC;IACD,OAAO,EAAE,MAAM;IACf,MAAM,EAAE,KAAK,GAChB;EANL,AAOI,qBAPiB,GAOf,EAAE,AAAA,IAAK,CAAA,YAAY,CAAC,IAAK,CAAA,WAAW,CAAC,OAAO,CAAC;IAC3C,OAAO,EAAE,OAAO;IAChB,YAAY,EAAE,GAAG,GACpB;EAVL,AAWI,qBAXiB,GAWf,UAAU,CAAC;IACT,OAAO,EAAE,YAAY,GACxB;;AAGL,AAAA,qBAAqB,CAAC;EAClB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI,GAOd;EAZD,AAMI,qBANiB,CAMf,EAAE,CAAC;IACD,MAAM,EAAE,IAAI,GAIf;IAXL,AAQQ,qBARa,CAMf,EAAE,CAEE,CAAC,CAAC;MACA,UAAU,EAAE,CAAC,GAChB;;AAIT,AACI,MADE,GACE,WAAW,AAAA,MAAM,CAAC;EAClB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,QAAQ;EAChB,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,OAAO;EACZ,IAAI,EAAE,OAAO,GAChB;;ADhHL,UAAU,CAAV,cAAU;EACN,EAAE;IACE,SAAS,EAAE,qBAAqB,CAAC,QAAQ;EAE7C,GAAG;IACC,SAAS,EAAE,qBAAqB,CAAC,QAAQ;EAE7C,IAAI;IACA,SAAS,EAAE,qBAAqB,CAAC,QAAQ;;AAIjD,UAAU,CAAV,gBAAU;EACN,EAAE;IACE,KAAK,EAAE,EAAE;EAEb,IAAI;IACA,KAAK,EAAE,GAAG;;AAIlB,UAAU,CAAV,yBAAU;EACN,EAAE;IACE,KAAK,EAAE,GAAG;EAEd,IAAI;IACA,KAAK,EAAE,IAAI;;AAInB,UAAU,CAAV,aAAU;EACN,EAAE;IACE,OAAO,EAAE,CAAC;EAEd,IAAI;IACA,OAAO,EAAE,CAAC;;AAIlB,AAAA,aAAa,CAAC;EACV,aAAa,EAAE,GAAG;EAClB,MAAM,EAAE,GAAG,CAAC,KAAK,CNjDR,OAAO;EMkDhB,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAkB,GAwK3C;EA3KD,AAII,aAJS,CAIT,YAAY,CAAC;IACT,aAAa,EAAE,GAAG,GACrB;EANL,AAOI,aAPS,CAOT,CAAC,CAAC;IACE,MAAM,EAAE,GAAG,GACd;EATL,AAUI,aAVS,CAUT,aAAa,CAAC;IACV,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,SAAS,GACnB;EAbL,AAcI,aAdS,CAcT,qBAAqB,CAAA;IACjB,UAAU,EAAE,KAAK,GACpB;EAhBL,AAiBI,aAjBS,CAiBT,MAAM,CAAC;IACH,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE,eAAe;IACvB,cAAc,EAAE,GAAG;IACnB,SAAS,EAAE,KAAK,GA+BnB;IApDL,AAsBQ,aAtBK,CAiBT,MAAM,CAKF,cAAc,CAAC,SAAS,CAAC;MACrB,UAAU,EAAE,KAAK;MACjB,WAAW,EAAE,GAAG;MAChB,SAAS,EAAE,qBAAqB;MAChC,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI;MACX,MAAM,EAAE,kBAAkB;MAC1B,gBAAgB,EAAE,WAAW;MAC7B,iBAAiB,EAAE,WAAW;MAC9B,kBAAkB,EAAE,WAAW,GAClC;IAhCT,AAiCQ,aAjCK,CAiBT,MAAM,CAgBF,cAAc,AAAA,IAAI,CAAC;MACf,aAAa,EAAE,KAAK;MACpB,UAAU,EAAE,MAAM;MAClB,QAAQ,EAAE,QAAQ,GACrB;IArCT,AAsCQ,aAtCK,CAiBT,MAAM,CAqBF,cAAc,CAAC,CAAC,CAAC;MACb,SAAS,EAAE,IAAI;MACf,UAAU,EAAE,MAAM;MAClB,UAAU,EAAE,OAAO;MACnB,OAAO,EAAE,KAAK;MACd,aAAa,EAAE,KAAK;MACpB,gBAAgB,EAAE,OAAO;MACzB,KAAK,EAAE,KAAK,GACf;IA9CT,AA+CQ,aA/CK,CAiBT,MAAM,CA8BF,cAAc,AAAA,QAAQ,CAAC,CAAC,CAAC;MACrB,KAAK,EAAE,OAAO;MACd,gBAAgB,EAAE,OAAO;MACzB,YAAY,EAAE,OAAO,GACxB;EAnDT,AAqDI,aArDS,CAqDT,cAAc,CAAC;IACX,UAAU,EAAE,MAAM,GACrB;EAvDL,AAwDI,aAxDS,CAwDT,cAAc,AAAA,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO;IACnB,SAAS,EAAE,oBAAoB,GAClC;EA3DL,AA4DI,aA5DS,CA4DT,YAAY,CAAC;IACT,UAAU,EAAE,MAAM;IAClB,SAAS,EAAE,IAAI;IACf,UAAU,EAAE,IAAI,GACnB;EAhEL,AAiEI,aAjES,CAiET,eAAe,CAAC;IACZ,KAAK,EA9GY,GAAG;IA+GpB,MAAM,EA/GW,GAAG;IAgHpB,OAAO,EAAE,YAAY;IACrB,SAAS,EAAE,oBAAoB;IAC/B,WAAW,EAAE,GAAG,GAUnB;IAhFL,AAuEQ,aAvEK,CAiET,eAAe,CAMX,cAAc,CAAC;MACX,KAAK,EApHQ,GAAG;MAqHhB,MAAM,EArHO,GAAG;MAsHhB,aAAa,EAAE,IAAI;MACnB,MAAM,EAAE,MAAM,CAAC,KAAK,CApHf,OAAO;MAqHZ,OAAO,EAAE,YAAY;MACrB,QAAQ,EAAE,QAAQ;MAClB,gBAAgB,EAvHX,OAAO,GAwHf;EA/ET,AAkFS,aAlFI,CAiFT,eAAe,AAAA,OAAO,CACjB,cAAc,CAAC;IACZ,KAAK,EA/HQ,GAAG;IAgIhB,MAAM,EAhIO,GAAG;IAiIhB,aAAa,EAAE,IAAI;IACnB,MAAM,EAAE,MAAM,CAAC,KAAK,CAhIjB,OAAO;IAiIV,OAAO,EAAE,YAAY;IACrB,QAAQ,EAAE,QAAQ;IAClB,gBAAgB,EAAE,IAAI;IACtB,OAAO,EAAE,CAAC,GACb;EA3FT,AA4FQ,aA5FK,CAiFT,eAAe,AAAA,OAAO,CAWlB,eAAe,CAAC;IACZ,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAzIS,KAAK;IA0InB,MAAM,EA1IQ,KAAK;IA2InB,gBAAgB,EA1Ib,OAAO;IA2IV,aAAa,EAAE,IAAI;IACnB,OAAO,EAAE,IAAI;IACb,SAAS,EAAE,4BAA4B;IACvC,SAAS,EAAE,qBAAqB;IAChC,UAAU,EAAE,GAAG;IACf,WAAW,EAAE,IAAI;IACjB,yBAAyB,EAAE,gCAAgC;IAC3D,OAAO,EAAE,CAAC,GACb;EAzGT,AA4GS,aA5GI,CA2GT,eAAe,AAAA,SAAS,CACnB,cAAc,CAAC;IACZ,KAAK,EAzJQ,GAAG;IA0JhB,MAAM,EA1JO,GAAG;IA2JhB,aAAa,EAAE,IAAI;IACnB,MAAM,EAAE,MAAM,CAAC,KAAK,CA1JjB,OAAO;IA2JV,OAAO,EAAE,YAAY;IACrB,QAAQ,EAAE,QAAQ;IAClB,gBAAgB,EAAE,IAAI;IACtB,OAAO,EAAE,CAAC,GACb;EArHT,AAuHI,aAvHS,CAuHT,KAAK,CAAC;IACF,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,YAAY;IACrB,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,MAAM;IACd,gBAAgB,EAtKP,OAAO,GAuKnB;EA9HL,AAgIS,aAhII,CA+HT,KAAK,AAAA,OAAO,CACP,aAAa,CAAC;IACX,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,IAAI;IACZ,gBAAgB,EA9Kb,OAAO;IA+KV,OAAO,EAAE,YAAY;IACrB,SAAS,EAAE,uBAAuB;IAClC,mBAAmB,EAAE,QAAQ,GAChC;EAxIT,AA2IS,aA3II,CA0IT,KAAK,AAAA,SAAS,CACT,aAAa,CAAC;IACX,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,IAAI;IACZ,gBAAgB,EAxLb,OAAO;IAyLV,OAAO,EAAE,YAAY;IACrB,SAAS,EAAE,gCAAgC;IAC3C,mBAAmB,EAAE,QAAQ,GAChC;EAlJT,AAoJI,aApJS,CAoJT,gBAAgB,CAAC;IACb,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,QAAQ,GAoBrB;IA1KL,AAwJQ,aAxJK,CAoJT,gBAAgB,CAIZ,eAAe,CAAC;MACZ,aAAa,EAAE,GAAG;MAClB,MAAM,EAAE,cAAc;MCxM9B,gBAAgB,EPDP,OAAO;MOEhB,KAAK,EPQD,OAAO;MOPX,OAAO,EAAE,GAAG;MACZ,KAAK,EAAE,IAAI;MACX,MAAM,EAAE,IAAI;MACZ,SAAS,EAAE,OAAO,GD2Mb;MAlKT,AA4JY,aA5JC,CAoJT,gBAAgB,CAIZ,eAAe,AAIV,MAAM,CAAC;QCxLhB,gBAAgB,EPRC,OAAO,GMkMf;MA9Jb,AA+JY,aA/JC,CAoJT,gBAAgB,CAIZ,eAAe,CAOV,AAAA,QAAC,AAAA,GA/Jd,aAAa,CAoJT,gBAAgB,CAIZ,eAAe,CAOG,AAAA,QAAC,AAAA,CAAS,MAAM,CAAC;QChMvC,gBAAgB,EPdP,OAAO;QOehB,KAAK,EPdS,OAAO,GM+MZ;IAjKb,AAmKQ,aAnKK,CAoJT,gBAAgB,CAeZ,eAAe,AAAA,MAAM,CAAC;MCxM1B,OAAO,EAAE,IAAI,GD0MR;IArKT,AAsKQ,aAtKK,CAoJT,gBAAgB,CAkBZ,mBAAmB,CAAC;MAChB,QAAQ,EAAE,QAAQ;MAClB,KAAK,EAAE,IAAI,GACd;;AAIT,AAAA,YAAY,CAAC;EACT,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,KAAK,GACpB;;AAED,AAAA,iBAAiB,CAAC;EACd,OAAO,EAAE,IAAI,GAoChB;EArCD,AAGI,iBAHa,CAGb,QAAQ,CAAC;IACL,OAAO,EAAE,KAAK;IACd,UAAU,EN/NV,OAAO;IMgOP,MAAM,EAAE,OAAO,GAIlB;IAVL,AAOQ,iBAPS,CAGb,QAAQ,CAIJ,KAAK,CAAC;MACF,MAAM,EAAE,GAAG,CAAC,KAAK,CN3OhB,OAAO,GM4OX;EATT,AAYI,iBAZa,CAYb,KAAK,CAAC;IACF,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE,IAAI,GACd;EAfL,AAiBI,iBAjBa,CAiBb,KAAK;EAjBT,iBAAiB,CAkBb,EAAE;EAlBN,iBAAiB,CAmBb,EAAE,CAAC;IACC,eAAe,EAAE,QAAQ,GAC5B;EArBL,AAuBI,iBAvBa,CAuBb,EAAE;EAvBN,iBAAiB,CAwBb,EAAE,CAAC;IACC,UAAU,EAAE,iBAAiB;IAC7B,OAAO,EAAE,cAAc;IACvB,MAAM,EAAE,GAAG;IACX,SAAS,EAAE,IAAI,GAClB;EA7BL,AA+BI,iBA/Ba,CA+Bb,MAAM,CAAC;IACH,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,GAAG,CAAC,KAAK,CNrQZ,OAAO;IMsQZ,aAAa,EAAE,GAAG,GACrB;;AAGL,AAAA,eAAe,CAAC;EACZ,OAAO,EAAE,gBAAgB;EACzB,UAAU,EAAE,KAAK;EACjB,MAAM,EAAE,OAAO,GAClB;;AAED,AAAA,KAAK,CAAC,gBAAgB,CAAC;EACnB,UAAU,EAAE,OAAO,GACtB;;AACD,AAAA,QAAQ,CAAC,gBAAgB,CAAC;EACtB,UAAU,EAAE,OAAO,GACtB;;AACD,AAAA,MAAM,CAAC,gBAAgB,CAAC;EACpB,UAAU,EAAE,OAAO,GACtB;;AACD,AAAA,KAAK,CAAC,gBAAgB,CAAC;EACnB,UAAU,EAAE,OAAO,GACtB;;AAGD,AACI,UADM,CACN,gBAAgB,CAAC;EACb,OAAO,EAAE,IAAI,GAChB;;AAHL,AAII,UAJM,CAIN,gBAAgB,CAAC;EACb,MAAM,EAAE,iBAAiB,GAC5B;;AANL,AAOI,UAPM,CAON,gBAAgB,CAAC;EACb,aAAa,EAAE,iBAAiB;EAChC,YAAY,EAAE,iBAAiB,GAClC;;AAVL,AAWI,UAXM,CAWN,sBAAsB,CAAC;EACnB,SAAS,EAAE,IAAI;EACf,aAAa,EAAE,iBAAiB;EAChC,YAAY,EAAE,iBAAiB;EAC/B,YAAY,EAAE,cAAc;EAC5B,OAAO,EAAE,eAAe;EACxB,WAAW,EAAE,MAAM,GACtB;;AAlBL,AAmBI,UAnBM,CAmBN,eAAe,CAAC;EACZ,SAAS,EAAE,IAAI,GAClB;;AAGL,AACI,aADS,CACT,eAAe,CAAC,gBAAgB,AAAA,WAAW;AAD/C,aAAa,CAET,eAAe,CAAC,gBAAgB,AAAA,eAAgB,CAAA,CAAC,EAAE;EAC/C,UAAU,EAAE,KAAK,GACpB;;AAGL,AAAA,UAAU,CAAC;EACP,aAAa,EAAE,IAAI,GACtB;;AAED,AAAA,uBAAuB,CAAC;EACpB,KAAK,EAAE,eAAe,GACzB;;AAED,AAAA,gBAAgB,CAAC,qBAAqB,CAAC;EACnC,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,kBAAkB;EAC1B,UAAU,EAAE,OAAO;EACnB,WAAW,EAAE,0BAA0B,GAC1C;;AAED,AAAA,sBAAsB,CAAC,SAAS,CAAC;EAC7B,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG,GACnB;;AAED,AAAA,OAAO,AAAA,WAAW,CAAC;EACf,SAAS,EAAE,MAAM;EACjB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM,GACrB;;AAED,AAAA,8BAA8B,CAAC;EAC3B,KAAK,EAAE,eAAe,GACzB;;AAED,AAAA,WAAW,CAAC;EACR,KAAK,EAAE,gBAAgB;EACvB,MAAM,EAAE,gBAAgB,GAC3B;;AAED,AAAA,kBAAkB,CAAC;EACf,OAAO,EAAE,cAAc,GAmB1B;EApBD,AAIQ,kBAJU,AAGb,kBAAkB,CACf,KAAK,CAAA,AAAA,IAAC,CAAD,IAAC,AAAA,EAAW;IACb,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI,GACd;EAPT,AAQQ,kBARU,AAGb,kBAAkB,CAKf,YAAY,CAAC;IACT,SAAS,EAAE,GAAG;IACd,MAAM,EAAE,OAAO,GAClB;EAXT,AAYQ,kBAZU,AAGb,kBAAkB,CASf,UAAU,CAAC;IACP,MAAM,EAAE,KAAK,GAKhB;IAlBT,AAeY,kBAfM,AAGb,kBAAkB,CASf,UAAU,AAGL,KAAK,CAAC;MACH,aAAa,EAAE,CAAC,GACnB;;AAKb,AACI,YADQ,CACR,mBAAmB,EADT,YAAY,CACtB,mBAAmB,CAAC;EAChB,MAAM,EAAE,KAAK,GAChB;;AAGL,AACI,YADQ,CACR,WAAW,CAAC;EACR,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,GAAG,CAAC,KAAK,CN/XZ,OAAO;EMgYZ,aAAa,EAAE,IAAI,GAMtB;EAVL,AAKQ,YALI,CACR,WAAW,CAIL,YAAY,CAAC;IACX,WAAW,EAAE,IAAI;IACjB,UAAU,EAAE,KAAK;IACjB,aAAa,EAAE,CAAC,GACnB;;AAIT,AACI,oBADgB,CAChB,YAAY,CAAC;EACT,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI,GAwBd;EA3BL,AAKQ,oBALY,CAChB,YAAY,CAIR,EAAE,CAAC;IACC,KAAK,ENrYT,OAAO;IMsYH,SAAS,EAAE,IAAI;IACf,MAAM,EAAE,WAAW,GACtB;EATT,AAUQ,oBAVY,CAChB,YAAY,CASR,KAAK,CAAC;IACF,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,UAAU;IACnB,cAAc,EAAE,GAAG,GACtB;EAdT,AAeQ,oBAfY,CAChB,YAAY,CAcR,MAAM,CAAC;IACH,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,UAAU;IACnB,UAAU,EAAE,KAAK,GAIpB;IAtBT,AAmBY,oBAnBQ,CAChB,YAAY,CAcR,MAAM,GAIE,CAAC,CAAC;MACF,OAAO,EAAE,KAAK,GACjB;EArBb,AAuBQ,oBAvBY,CAChB,YAAY,CAsBR,iBAAiB,CAAC;IACd,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,GAAG,GACjB;;AEjaT,AAAA,eAAe,CAAC;EACZ,UAAU,EAAE,4BAA4B,GAC3C;;AAED,AAAA,YAAY,CAAC;EACT,IAAI,ERGA,OAAO,CQHE,UAAU,GAC1B;;AAED,AAAA,oBAAoB,CAAC,iBAAiB,CAAC;EACnC,KAAK,ERFD,OAAO,CQEG,UAAU,GAC3B;;AAED,AAAA,eAAe,AAAA,oBAAoB,CAAC,gBAAgB,AAAA,oBAAoB;AACxE,eAAe,AAAA,oBAAoB,CAAC,gBAAgB,AAAA,yBAAyB,CAAC;EAC1E,MAAM,EAAE,YAAY,GACvB;;AAED,AAAA,gBAAgB,AAAA,oBAAoB,CAAC;EACjC,gBAAgB,EAAE,4BAA4B,CAAC,UAAU;EACzD,mBAAmB,EAAE,4BAA4B,GACpD;;AAED,AAAA,gBAAgB,AAAA,yBAAyB,CAAC;EACtC,gBAAgB,EAAE,4BAA4B,CAAC,UAAU;EACzD,mBAAmB,EAAE,4BAA4B,GACpD;;AAED,AAAA,eAAe,AAAA,oBAAoB,CAAC;EAChC,gBAAgB,EAAE,kBAAkB,GACvC;;AAED,AAAA,eAAe,AAAA,IAAK,CAAA,oBAAoB,CAAC,MAAM,CAAC;EAC5C,gBAAgB,ERjCF,OAAO,CQiCc,UAAU,GAChD;;AAED,AAAA,kBAAkB,CAAC,eAAe,CAAC;EAC/B,KAAK,ER5BD,OAAO,GQ6Bd;;AAED,AAAA,oBAAoB,CAAC,KAAK,CAAC;EACvB,IAAI,ERhCA,OAAO,CQgCE,UAAU,GAC1B;;AAED,AAAA,oBAAoB,CAAC,IAAI,CAAC;EACtB,YAAY,EAAE,YAAY,GAC7B;;AAED,AAAA,wBAAwB,CAAC;EACrB,IAAI,ERzCA,OAAO,CQyCE,UAAU;EACvB,YAAY,EAAE,YAAY;EAC1B,MAAM,ERnDQ,OAAO;EQoDrB,YAAY,EAAE,OAAO,GACxB;;AAED,AAAA,kBAAkB,CAAC;EACf,gBAAgB,ERzDP,OAAO,CQyDc,UAAU;EACxC,YAAY,EAAE,IAAI;EAClB,KAAK,ER1DS,OAAO;EQ2DrB,YAAY,EAAE,aAAa;EAC3B,SAAS,EAAE,IAAI,GAClB;;AAED,AAAA,iBAAiB,CAAC;EACd,IAAI,EAAE,kBAAkB,GAC3B;;AAED,AAAA,iBAAiB,AAAA,IAAK,CAAA,MAAM;AAC5B,yBAAyB,CAAC;EACtB,OAAO,EAAE,YAAY,GACxB;;AAED,AAAA,yBAAyB;AACzB,2BAA2B,CAAC;EACxB,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,eAAe,CAAC;EACZ,aAAa,EAAE,cAAc;EAC7B,MAAM,EAAE,gBAAgB;EACxB,WAAW,EAAE,OAAO,GACvB;;AAED,AAAA,kBAAkB,CAAC;EACf,OAAO,EAAE,aAAa;EACtB,IAAI,EAAE,KAAK;EACX,UAAU,EAAE,iBAAiB,GAChC;;AAED,AAAA,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ,GACrB;;AAED,AAAA,sBAAsB,CAAC;EACnB,MAAM,EAAE,IAAI,GACf;;AD1ED,AAAA,QAAQ,CAAC;EACL,gBAAgB,EPvBP,OAAO;EOwBhB,aAAa,EAAE,GAAG,CAAC,KAAK,CPvBV,OAAO;EOwBrB,OAAO,EAAE,OAAO;EAChB,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,IAAI,GA8BjB;EAnCD,AAOI,QAPI,CAOJ,UAAU,CAAA,AAAA,QAAC,AAAA,GAPf,QAAQ,CAOkB,UAAU,CAAA,AAAA,QAAC,AAAA,CAAS,MAAM,EAPpD,QAAQ,CAO8C,WAAW,CAAA,AAAA,QAAC,AAAA,GAPlE,QAAQ,CAOqE,WAAW,CAAA,AAAA,QAAC,AAAA,EAAU;IAf/F,gBAAgB,EPdP,OAAO;IOehB,KAAK,EPdS,OAAO,GO8BpB;EATL,AAWI,QAXI,CAWJ,eAAe,CAAC;IAhChB,gBAAgB,EPDP,OAAO;IOEhB,KAAK,EPQD,OAAO;IOPX,OAAO,EAAE,GAAG;IACZ,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,OAAO,GA6BjB;EAbL,AAeI,QAfI,CAeJ,eAAe,AAAA,MAAM,CAAC;IAlBtB,gBAAgB,EPRC,OAAO,GO4BvB;EAjBL,AAmBI,QAnBI,CAmBJ,eAAe,AAAA,MAAM,CAAC;IA/BtB,OAAO,EAAE,IAAI,GAiCZ;EArBL,AAuBI,QAvBI,CAuBJ,IAAI,AAAA,YAAY,CAAC;IACb,gBAAgB,EAAE,IAAI,GACzB;EAzBL,AA2BI,QA3BI,CA2BJ,kBAAkB,CAAC;IACf,gBAAgB,EPjDN,OAAO;IOkDjB,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE,IAAI;IACZ,MAAM,EAAE,KAAK;IACb,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,GAAG,GACb;;AAGL,AAAA,cAAc,CAAC;EACX,UAAU,EAAE,GAAG;EACf,YAAY,EAAE,IAAI,GACrB;;AAED,AAAA,gBAAgB,CAAC;EACb,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,IAAI,GACf;;AAED,AAAA,qBAAqB,CAAC;EAClB,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,UAAU;EACnB,cAAc,EAAE,MAAM;EACtB,aAAa,EAAE,IAAI,GAOtB;EAZD,AAMI,qBANiB,GAMf,CAAC,CAAC;IACA,KAAK,EPlEL,OAAO,GOsEV;IAXL,AAQQ,qBARa,GAMf,CAAC,AAEE,MAAM,EARf,qBAAqB,GAMf,CAAC,AAEW,QAAQ,CAAC;MACf,eAAe,EAAE,IAAI,GACxB;;AAIT,AAAA,qBAAqB,CAAC;EAClB,OAAO,EAAE,MAAM;EACf,oBAAoB,EAAE,CAAC,GAY1B;EAdD,AAGI,qBAHiB,GAGf,EAAE,CAAC;IACD,OAAO,EAAE,MAAM;IACf,MAAM,EAAE,KAAK,GAChB;EANL,AAOI,qBAPiB,GAOf,EAAE,AAAA,IAAK,CAAA,YAAY,CAAC,IAAK,CAAA,WAAW,CAAC,OAAO,CAAC;IAC3C,OAAO,EAAE,OAAO;IAChB,YAAY,EAAE,GAAG,GACpB;EAVL,AAWI,qBAXiB,GAWf,UAAU,CAAC;IACT,OAAO,EAAE,YAAY,GACxB;;AAGL,AAAA,qBAAqB,CAAC;EAClB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI,GAOd;EAZD,AAMI,qBANiB,CAMf,EAAE,CAAC;IACD,MAAM,EAAE,IAAI,GAIf;IAXL,AAQQ,qBARa,CAMf,EAAE,CAEE,CAAC,CAAC;MACA,UAAU,EAAE,CAAC,GAChB;;AAIT,AACI,MADE,GACE,WAAW,AAAA,MAAM,CAAC;EAClB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,QAAQ;EAChB,MAAM,EAAE,IAAI;EACZ,GAAG,EAAE,OAAO;EACZ,IAAI,EAAE,OAAO,GAChB;;AExHL,AAAA,cAAc,CAAC;EACX,QAAQ,EAAE,KAAK;EACf,OAAO,EAAE,IAAI;EACb,GAAG,EAAE,eAAe;EACpB,KAAK,EAAE,GAAG;EACV,cAAc,EAAE,KAAK;EACrB,IAAI,EAAE,EAAE;EACR,gBAAgB,EAAE,KAAK;EACvB,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,KAAK,GA2BvB;EApCD,AAWI,cAXU,CAWV,CAAC,CAAC;IACE,SAAS,EAAE,KAAK;IAChB,MAAM,EAAE,KAAK,GAChB;EAdL,AAgBI,cAhBU,CAgBV,EAAE,CAAC;IACC,MAAM,EAAE,KAAK,GAChB;EAlBL,AAoBI,cApBU,CAoBV,gBAAgB,CAAC;IACb,WAAW,EAAE,KAAK,GACrB;EAtBL,AAwBI,cAxBU,CAwBV,MAAM;EAxBV,cAAc,CAyBV,CAAC,CAAC;IACE,KAAK,EAAE,KAAK;IACZ,aAAa,EAAE,GAAG;IAClB,YAAY,EAAE,KAAK;IACnB,QAAQ,EAAE,QAAQ,GACrB;EA9BL,AAgCI,cAhCU,CAgCV,UAAU,CAAC;IACP,SAAS,EAAE,KAAK;IAChB,IAAI,EAAE,GAAG,GACZ;;AE4CF,AAAD,eAAQ,CAAC;EAhBT,UAAU,EAAE,IAAI;EAChB,gBAAgB,EAAE,WAAW;EAC7B,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,YAAY;EACrB,WAAW,EAAE,CAAC;EACd,OAAO,EAAE,CAAC;EAYR,MAAM,EA5EY,IAAI;EA6EtB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EA9Ea,IAAI;EA+EtB,OAAO,EAnFM,IAAI,GAmHlB;EArCA,AARD,eAQQ,AARP,OAAO,EAQP,eAAO,AAPP,MAAM,EAON,eAAO,AANP,MAAM,CAAC;IACN,OAAO,EAAE,IAAI,GACd;EAWE,AAAD,sBAAQ,CAAC;IACP,SAAS,EAAE,8CAA8C;IACzD,gBAAgB,EXpFP,OAAO;IWqFhB,aAAa,EAAE,GAAG;IAClB,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,GAAG;IACX,IAAI,EAAE,GAAG;IACT,OAAO,EAAE,GAAG;IACZ,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,GAAG;IACR,SAAS,EAAE,qBAAqB;IAChC,KAAK,EAAE,GAAG,GACX;EAEA,AAAD,sBAAQ,CAAC;IACP,SAAS,EAAE,8CAA8C;IACzD,gBAAgB,EXlGP,uBAAO;IWmGhB,MAAM,EAAE,GAA2B,CAAC,KAAK,CXnGhC,OAAO;IWoGhB,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,UAAU;IACtB,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,IAAI;IACZ,IAAI,EAAE,CAAC;IACP,OAAO,EAAE,GAAG;IACZ,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,CAAC;IACN,SAAS,EAAE,gBAAgB;IAC3B,gBAAgB,EAAE,MAAM;IACxB,KAAK,EAAE,IAAI,GACZ;;AAGF,AAAD,gBAAS,CAAC;EACR,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,GAAG,EAAE,CAAC;EACN,OAAO,EA3HM,IAAI,GA4HlB;;AAEA,AAAD,aAAM,CAAC;EACL,aAAa,EAzHY,GAAG;EA0H5B,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CA/HC,kBAAI,EAMX,CAAC,CAAC,CAAC,CAAC,IAAI,CAAM,kBAAI;EA0HpC,QAAQ,EAAE,QAAQ,GAKnB;EARA,AAKC,aALI,AAKH,OAAO,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAnIL,kBAAI,EAMX,CAAC,CAAC,CAAC,CAAC,IAAI,CAAM,kBAAI,GA8HnC;;AAGF,AAAD,gBAAS,CAAC;EACR,gBAAgB,EA5HO,IAAI;EA6H3B,aAAa,EA5He,GAAG;EA6H/B,KAAK,EA5He,IAAI;EA6HxB,MAAM,EAAE,OAAO;EACf,MAAM,EAAE,6CAA6L,CAAC,2CAAuL;EAC7X,OAAO,EAAE,CAAC;EACV,OAAO,EA9He,IAAI;EA+H1B,cAAc,EAAE,IAAI;EACpB,SAAS,EAAE,oBAAoB;EAC/B,KAAK,ED/IgB,IAAI;ECgJzB,OAAO,EAnJM,IAAI,GAkVlB;EA7LE,AAAD,yBAAU,CAAC;IACT,SAAS,EA7Ia,eAAe,CAAC,IAAI,CAAC,QAAQ;IA8InD,yBAAyB,EA7II,iCAAiC,GA8I/D;EAEA,AAAD,0BAAW,CAAC;IACV,iBAAiB,EAAE,SAAS;IAE5B,QAAQ,EAAE,QAAQ,GACnB;EAtBF,AAwBC,gBAxBO,AAwBN,OAAO,EAxBT,gBAAQ,AAyBN,YAAY,EAzBd,gBAAQ,AA0BN,aAAa,CAAC;IACb,UAAU,EA9He,IAA+B,GAwIzD;IArCF,AA6BG,gBA7BK,AAwBN,OAAO,CAKN,0BAA0B,EA7B7B,gBAAQ,AAyBN,YAAY,CAIX,0BAA0B,EA7B7B,gBAAQ,AA0BN,aAAa,CAGZ,0BAA0B,CAAC;MACzB,gBAAgB,EAAE,gUAA+B;MACjD,MAAM,EAlIiB,IAA+B;MAmItD,IAAI,EAAE,GAAG;MACT,GAAG,EAAI,KAAiC;MACxC,SAAS,EAAE,gBAAgB;MAC3B,KAAK,EA/JgB,IAAI,GAgK1B;EApCJ,AAuCC,gBAvCO,AAuCN,IAAI,EAvCN,gBAAQ,AAwCN,SAAS,EAxCX,gBAAQ,AAyCN,UAAU,CAAC;IACV,aAAa,EA7IY,IAA+B,GAuJzD;IApDF,AA4CG,gBA5CK,AAuCN,IAAI,CAKH,0BAA0B,EA5C7B,gBAAQ,AAwCN,SAAS,CAIR,0BAA0B,EA5C7B,gBAAQ,AAyCN,UAAU,CAGT,0BAA0B,CAAC;MACzB,gBAAgB,EAAE,0TAA4B;MAC9C,MAAM,EAAI,KAAiC;MAC3C,MAAM,EAlJiB,IAA+B;MAmJtD,IAAI,EAAE,GAAG;MACT,SAAS,EAAE,gBAAgB;MAC3B,KAAK,EA9KgB,IAAI,GA+K1B;EAnDJ,AAwDG,gBAxDK,AAsDN,YAAY,CAEX,0BAA0B,EAxD7B,gBAAQ,AAuDN,SAAS,CACR,0BAA0B,CAAC;IACzB,IAAI,EAAE,EAAE;IACR,SAAS,EAAE,aAAa,GAKzB;IAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;MA5DxC,AAwDG,gBAxDK,AAsDN,YAAY,CAEX,0BAA0B,EAxD7B,gBAAQ,AAuDN,SAAS,CACR,0BAA0B,CAAC;QAKvB,IAAI,EAAE,EAAE,GAEX;EA/DJ,AAoEG,gBApEK,AAkEN,aAAa,CAEZ,0BAA0B,EApE7B,gBAAQ,AAmEN,UAAU,CACT,0BAA0B,CAAC;IACzB,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,EAAE;IACT,SAAS,EAAE,aAAa,GAKzB;IAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;MAzExC,AAoEG,gBApEK,AAkEN,aAAa,CAEZ,0BAA0B,EApE7B,gBAAQ,AAmEN,UAAU,CACT,0BAA0B,CAAC;QAMvB,KAAK,EAAE,EAAE,GAEZ;EA5EJ,AA+EC,gBA/EO,AA+EN,KAAK,CAAC;IACL,YAAY,EAnLa,IAA+B,GA2LzD;IAxFF,AAkFG,gBAlFK,AA+EN,KAAK,CAGJ,0BAA0B,CAAC;MACzB,gBAAgB,EAAE,gUAA6B;MAC/C,MAAM,EAhNe,IAAI;MAiNzB,KAAK,EAAI,KAAiC;MAC1C,KAAK,EAzLkB,IAA+B,GA0LvD;EAvFJ,AA0FC,gBA1FO,AA0FN,MAAM,CAAC;IACN,WAAW,EA9Lc,IAA+B,GAsMzD;IAnGF,AA6FG,gBA7FK,AA0FN,MAAM,CAGL,0BAA0B,CAAC;MACzB,gBAAgB,EAAE,+TAA8B;MAChD,MAAM,EA3Ne,IAAI;MA4NzB,IAAI,EAAI,KAAiC;MACzC,KAAK,EApMkB,IAA+B,GAqMvD;EAGF,AAAD,uBAAQ,CAAC;IA/KX,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,OAAO;IACf,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,CAAC;IACd,OAAO,EAAE,CAAC;IA2KN,gBAAgB,EAAE,ooBAAyB;IAC3C,iBAAiB,EAAE,SAAS;IAC5B,eAAe,EAAE,OAAO;IACxB,MAAM,EA7NqD,IAAI;IA8N/D,QAAQ,EAAE,QAAQ;IAClB,KAAK,EA/N8E,IAAI;IAgOvF,eAAe,EAAE,IAAI;IACrB,GAAG,EAjOmE,IAAI;IAkO1E,KAAK,EAlOsD,IAAI;IAmO/D,OAAO,EAAE,EAAE;IAcT,OAAO,EAAE,KAAK,GAIjB;IA7BA,AAvKH,uBAuKU,AAvKT,OAAO,EAuKL,uBAAO,AAtKT,MAAM,EAsKJ,uBAAO,AArKT,MAAM,CAAC;MACN,OAAO,EAAE,IAAI,GACd;IAmKE,AAaC,uBAbM,AAaL,MAAM,EAbR,uBAAO,AAcL,MAAM,CAAC;MACN,KAAK,EAAE,qBAA4C;MACnD,OAAO,EAAE,IAAI,GACd;IAEA,AAAD,+BAAS,CAAC;MACR,KAAK,EAhPa,IAAI;MAiPtB,GAAG,EAjPe,IAAI,GAkPvB;EASF,AAAD,wBAAS,CAAC;IACR,aAAa,EAjPW,GAAG,CAiPiB,KAAK,CX1QxC,OAAO;IW2QhB,KAAK,EA/Pa,IAAI;IAgQtB,SAAS,EArPY,IAAI;IAsPzB,cAAc,EAAE,GAAG;IACnB,aAAa,EAAE,IAAI;IACnB,QAAQ,EAAE,QAAQ,GAKnB;IAXA,AAQC,wBARO,GAQL,sBAAsB,CAAC;MACvB,OAAO,EAAE,WAAW,GACrB;EAGF,AAAD,sBAAO,CAAC;IACN,SAAS,EA1Qa,IAAI;IA2Q1B,cAAc,EAAE,IAAI;IACpB,aAAa,EAAE,IAAI,GACpB;EAEA,AAAD,wBAAS,CAAC;IACR,UAAU,EAAE,KAAK,GAClB;EAEA,AAAD,wBAAS,CAAC;IArOZ,UAAU,EAAE,IAAI;IAChB,gBAAgB,EAAE,WAAW;IAC7B,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,OAAO;IACf,OAAO,EAAE,YAAY;IACrB,WAAW,EAAE,CAAC;IACd,OAAO,EAAE,CAAC,GA2PP;IA5BA,AA7NH,wBA6NW,AA7NV,OAAO,EA6NL,wBAAQ,AA5NV,MAAM,EA4NJ,wBAAQ,AA3NV,MAAM,CAAC;MACN,OAAO,EAAE,IAAI,GACd;IA4NI,AAAD,iCAAU,CAAC;MACT,gBAAgB,EXnSZ,OAAO;MWoSX,aAAa,EAxQU,GAAG;MAyQ1B,KAAK,EA1QU,IAAI;MA2QnB,OAAO,EAAE,QAAQ;MACjB,UAAU,EAAE,iCAAiC,GAQ9C;MAbA,AAOC,iCAPQ,AAOP,OAAO,EAPT,iCAAS,AAQP,MAAM,EARR,iCAAS,AASP,MAAM,CAAC;QACN,gBAAgB,EAAE,OAAoC;QACtD,KAAK,EAlRQ,IAAI,GAmRlB;IAGF,AAAD,mCAAY,CAAC;MACX,KAAK,EXnTE,OAAO;MWoTd,YAAY,EAAE,IAAI,GACnB;IAEA,AAAD,8BAAO,CAAC;MACN,KAAK,EAxRe,IAAI;MAyRxB,KAAK,EAAE,IAAI;MACX,YAAY,EAAE,IAAI,GACnB;EAGF,AACC,4BADW,CACX,sBAAsB,CAAC;IACrB,cAAc,EAAE,CAAC,GAClB;EAHF,AAKC,4BALW,CAKX,wBAAwB,CAAC;IACvB,OAAO,EAAE,IAAI,GACd;EAGH,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;IAnMpC,AAAD,gBAAS,CAAC;MAoMN,KAAK,EDzUoB,IAAI,GC+UhC;EAHC,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;IAvMpC,AAAD,gBAAS,CAAC;MAwMN,KAAK,ED7U0B,IAAI,GC+UtC;;AAGH,UAAU,CAAV,eAAU;EACR,EAAE;IACA,SAAS,EAAE,UAAU;EAGvB,IAAI;IACF,OAAO,EAAE,CAAC;IACV,SAAS,EAAE,gBAAgB,CAAC,QAAQ;;AAIxC,UAAU,CAAV,oBAAU;EACR,GAAG;IACD,OAAO,EAAE,GAAG;EAGd,GAAG;IACD,OAAO,EAAE,GAAG;;AAIhB,UAAU,CAAV,oBAAU;EACR,EAAE;IACA,SAAS,EAAE,QAAQ;EAGrB,GAAG;IACD,OAAO,EAAE,GAAG;IACZ,SAAS,EAAE,WAAW;EAGxB,IAAI;IACF,OAAO,EAAE,GAAG;IACZ,SAAS,EAAE,QAAQ;;AD/WvB,AAAA,KAAK,CAAC;EACF,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,OAAO,EAAE,cAAc,GAC1B;;AAED,AACI,kBADc,CACd,gBAAgB,CAAC;EACb,QAAQ,EAAE,gBAAgB,GAI7B;EANL,AAGQ,kBAHU,CAGT,sBAAM,CAAC;IACJ,cAAc,EAAE,CAAC,GACpB;;AAIT,AAAA,oBAAoB,CAAC;EACjB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,GAAG;EAEX,kBAAW,EAAE,KAAK,GAEzB;;AAED,AAAA,wBAAwB,CAAC;EACrB,OAAO,EAAE,SAAS,GAgBrB;EAfI,AAAD,iCAAU,CAAC;IACP,KAAK,EV3BL,OAAO;IU4BP,gBAAgB,EVhCZ,OAAO,GUiCd;EACA,AAAD,iCAAU,AAAA,MAAM,CAAC;IACb,KAAK,EV/BL,OAAO;IUgCP,gBAAgB,EVlCL,OAAO,GUmCrB;EACA,AAAD,mCAAY,CAAC;IACT,KAAK,EVlCL,OAAO;IUmCP,gBAAgB,EV7CX,OAAO,GU8Cf;EACA,AAAD,mCAAY,AAAA,MAAM,CAAC;IACf,gBAAgB,EAAE,OAAO,GAC5B;;AEjDL,AAAA,aAAa,CAAC;EACV,MAAM,EAAE,IAAI;EACZ,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,gBAAgB,EZFL,OAAO;EYGlB,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,eAAe;EACtB,MAAM,EAAE,eAAe;EACvB,aAAa,EAAE,KAAK;EACpB,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,mBAAmB;EAC3C,UAAU,EAAE,2BAA2B;EACvC,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,gBAAgB,GA+B5B;EA7CD,AAiBQ,aAjBK,AAgBR,MAAM,CACH,KAAK,CAAC;IACF,SAAS,EAAE,MAAM;IACjB,OAAO,EAAE,MAAM,GAClB;EApBT,AAsBI,aAtBS,CAsBT,KAAK,CAAC;IACF,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,MAAM;IACf,SAAS,EAAE,eAAe,GAO7B;IAhCL,AA2BQ,aA3BK,CAsBT,KAAK,CAKD,GAAG,CAAC;MACA,IAAI,EZnBR,OAAO;MYoBH,MAAM,EAAE,eAAe;MACvB,KAAK,EAAE,eAAe,GACzB;EA/BT,AAiCI,aAjCS,CAiCT,KAAK,CAAC;IACF,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,YAAY;IACrB,OAAO,EAAE,CAAC;IACV,WAAW,EAAE,IAAI;IACjB,QAAQ,EAAE,MAAM;IAChB,WAAW,EAAE,MAAM;IACnB,SAAS,EAAE,CAAC;IACZ,UAAU,EAAE,sCAAsC;IAClD,KAAK,EZjCL,OAAO;IYkCP,SAAS,EAAE,IAAI,GAClB;;ACtBL,AAAA,oBAAoB,CAAC;EACnB,OAAO,EAAE,GAAG,GACb;;AAED,AAAA,WAAW,CAAC;EACV,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,OAAO;EACnB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,UAAU,EAAE,WAAW,GAkCxB;EAhCE,AAAD,qBAAW,CAAA;IACT,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,aAAa;IAC9B,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,MAAM;IACjB,MAAM,EAAE,QAAQ,GAKjB;IApCC,MAAM,EAAE,SAAS,EAAE,MAAM;MAyB1B,AAAD,qBAAW,CAAA;QASP,OAAO,EAAE,IAAI,GAEhB;EAEA,AAAD,gBAAM,CAAC;IACL,KAAK,EAAE,KAAK,GAMb;IAPA,AAGC,gBAHI,CAGJ,GAAG,CAAA;MACD,KAAK,EAAE,IAAI,GACZ;EA3BL,AA8BE,WA9BS,CA8BT,UAAU,CAAA;IACR,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,GAAG,CAAC,MAAM,CAxDT,eAAe,EAAE,UAAU;IAyDlC,cAAc,EAAE,IAAI;IACpB,aAAa,EAAE,GAAG;IAClB,WAAW,EAAE,IAAI,GAKlB;IAxDC,MAAM,EAAE,SAAS,EAAE,MAAM;MAgB7B,AA8BE,WA9BS,CA8BT,UAAU,CAAA;QAQN,OAAO,EAAE,IAAI,GAEhB;;AAGH,AAAA,yBAAyB,CAAC;EACxB,MAAM,EAAE,MAAM;EACd,SAAS,EAAE,MAAM,GAElB;;AAED,AAAA,aAAa,CAAC;EACZ,MAAM,EAAE,MAAM;EACd,aAAa,EAAE,OAAO;EACtB,IAAI,EAAE,GAAG,CAAC,QAAQ,CA5ET,eAAe,EAAE,UAAU;EA6EpC,gBAAgB,EA3EV,IAAI,CA2Ee,UAAU;EACnC,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,OAAO;EACf,cAAc,EAAE,IAAI,GAkCrB;EA5CD,AAWE,aAXW,AAWV,QAAQ,CAAC;IACR,gBAAgB,EAAE,kBAAkB;IACpC,KAAK,EApFD,IAAI,GA0FT;IAnBH,AAeI,aAfS,AAWV,QAAQ,AAIN,MAAM,CAAC;MACN,gBAAgB,EAAE,kBAAkB;MACpC,KAAK,EAxFH,IAAI,GAyFP;EAlBL,AAqBE,aArBW,AAqBV,OAAO,CAAC;IACP,UAAU,EAAE,kBAAkB;IAC9B,KAAK,EA9FD,IAAI,GAoGT;IA7BH,AAyBI,aAzBS,AAqBV,OAAO,AAIL,MAAM,CAAC;MACN,gBAAgB,EAAE,kBAAkB;MACpC,KAAK,EAlGH,IAAI,GAmGP;EA5BL,AA+BE,aA/BW,AA+BV,MAAM,CAAC;IACN,gBAAgB,EAAE,kBAAkB;IACpC,KAAK,EAAE,IAAI,GACZ;EAlCH,AAoCE,aApCW,AAoCV,YAAY,CAAC;IACZ,gBAAgB,EAAE,sBAAsB;IACxC,MAAM,EAAE,iBAAiB;IACzB,cAAc,EAAE,IAAI,GAIrB;IA3CH,AAwCI,aAxCS,AAoCV,YAAY,AAIV,MAAM,CAAC;MACN,gBAAgB,EAAE,kBAAkB,GACrC;;AAIL,AAAA,iBAAiB,CAAC;EAChB,OAAO,EAAE,IAAI;EACb,SAAS,EAAE,IAAI;EACf,GAAG,EAAE,IAAI,GAeV;EAlBD,AAKE,iBALe,CAKf,MAAM,CAAC;IACL,SAAS,EAAE,WAAW,GACvB;EAtHC,MAAM,EAAE,SAAS,EAAE,MAAM;IA+G7B,AAAA,iBAAiB,CAAC;MAUd,UAAU,EAAE,MAAM;MAClB,aAAa,EAAE,MAAM;MACrB,GAAG,EAAE,IAAI,GAMZ;MAlBD,AAcI,iBAda,CAcb,MAAM,CAAC;QACL,IAAI,EAAE,CAAC,GACR;;AAIL,AAAA,OAAO,CAAC;EACN,UAAU,EAAE,6CAA6C,CAAC,SAAS;EACnE,eAAe,EAAE,KAAK,GA0DrB;EAzDA,AAAD,aAAO,CAAC;IACN,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,MAAM,GAsDlB;IAxLD,MAAM,EAAE,SAAS,EAAE,MAAM;MAgI1B,AAAD,aAAO,CAAC;QAMJ,OAAO,EAAE,MAAM,GAkDhB;IA9LD,MAAM,EAAE,SAAS,EAAE,MAAM;MAsI1B,AAAD,aAAO,CAAC;QAUJ,OAAO,EAAE,CAAC;QACV,cAAc,EAAE,MAAM,GA6CvB;IA9LD,MAAM,EAAE,SAAS,EAAE,MAAM;MAoJxB,AACC,0BADY,CACZ,GAAG,CAAC;QAEA,UAAU,EAAE,OAAO;QACnB,KAAK,EAAE,IAAI,GAEd;IAGF,AACC,sBADQ,CACR,EAAE,CAAC;MACD,aAAa,EAAE,MAAM;MACrB,IAAI,EAAE,GAAG,CAAC,IAAI,CAxKX,eAAe,EAAE,UAAU;MAyK9B,WAAW,EAAE,IAAI;MACjB,KAAK,EAvKG,OAAO,GA8KhB;MAzKH,MAAM,EAAE,SAAS,EAAE,MAAM;QA6JxB,AACC,sBADQ,CACR,EAAE,CAAC;UAOC,IAAI,EAAE,GAAG,CAAC,MAAM,CA7Kf,eAAe,EAAE,UAAU;UA8K5B,UAAU,EAAE,MAAM;UAClB,OAAO,EAAE,MAAM,GAElB;IAZF,AAcC,sBAdQ,CAcR,EAAE,CAAC;MACD,aAAa,EAAE,MAAM;MACrB,IAAI,EAAE,GAAG,CAAC,IAAI,CArLX,eAAe,EAAE,UAAU;MAsL9B,WAAW,EAAE,IAAI;MACjB,KAAK,EApLG,OAAO,GA2LhB;MAtLH,MAAM,EAAE,SAAS,EAAE,MAAM;QA6JxB,AAcC,sBAdQ,CAcR,EAAE,CAAC;UAOC,IAAI,EAAE,GAAG,CAAC,MAAM,CA1Lf,eAAe,EAAE,UAAU;UA2L5B,UAAU,EAAE,MAAM;UAClB,OAAO,EAAE,MAAM,GAElB;IAtLH,MAAM,EAAE,SAAS,EAAE,MAAM;MA6JxB,AA2BG,sBA3BM,CA2BN,iBAAiB,CAAC;QAEd,OAAO,EAAE,aAAa,GAEvB;;AAMX,AAAA,iBAAiB,CAAC;EAChB,OAAO,EAAE,eAAe;EACxB,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,OAAO,EAAE,eAAe;EACxB,MAAM,EAAE,QAAQ;EAChB,OAAO,EAAE,MAAM,GAsDhB;EA9PG,MAAM,EAAE,SAAS,EAAE,MAAM;IAkM7B,AAAA,iBAAiB,CAAC;MASd,OAAO,EAAE,eAAe;MACxB,cAAc,EAAE,cAAc;MAC9B,UAAU,EAAE,MAAM,GAiDrB;EA9CE,AACC,yBADO,CACP,EAAE,CAAC;IACD,IAAI,EAAE,GAAG,CAAC,IAAI,CA1NT,eAAe,EAAE,UAAU;IA2NhC,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,KAAK,EA1NK,OAAO,GAgOlB;IA3ND,MAAM,EAAE,SAAS,EAAE,MAAM;MAgN1B,AACC,yBADO,CACP,EAAE,CAAC;QAOC,IAAI,EAAE,GAAG,CAAC,MAAM,CAhOb,eAAe,EAAE,UAAU;QAiO9B,aAAa,EAAE,IAAI,GAEtB;EAXF,AAaC,yBAbO,CAaP,EAAE,CAAC;IACD,IAAI,EAAE,GAAG,CAAC,IAAI,CAtOT,eAAe,EAAE,UAAU;IAuOhC,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,KAAK,EAtOK,OAAO,GA4OlB;IAvOD,MAAM,EAAE,SAAS,EAAE,MAAM;MAgN1B,AAaC,yBAbO,CAaP,EAAE,CAAC;QAOC,IAAI,EAAE,GAAG,CAAC,IAAI,CA5OX,eAAe,EAAE,UAAU;QA6O9B,aAAa,EAAE,IAAI,GAEtB;EAGF,AAAD,6BAAa,CAAC;IACZ,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,MAAM;IACvB,OAAO,EAAE,IAAI,GAed;IA7PC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0O1B,AAAD,6BAAa,CAAC;QAOV,OAAO,EAAE,IAAI;QACb,0BAA0B;QAC1B,eAAe,EAAE,MAAM,GAU1B;IA7PC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0O1B,AAYC,6BAZW,CAYX,GAAG,CAAC;QAEA,UAAU,EAAE,OAAO;QACnB,KAAK,EAAE,IAAI,GAGd;;AAMH,MAAM,EAAE,SAAS,EAAE,KAAK;EAF1B,AAAA,sBAAsB,CAAC;IAGnB,WAAW,EAAE,IAAI,GA8FpB;;AA3FE,AAAD,4BAAO,CAAC;EACN,OAAO,EAAE,MAAM,GAyFhB;EAvFE,AAAD,wCAAa,CAAC;IACZ,SAAS,EAAE,KAAK,GACjB;EAEA,AAAD,kCAAO,CAAC;IACN,KAAK,EAnRK,OAAO;IAoRjB,UAAU,EAAE,MAAM;IAClB,IAAI,EAAE,GAAG,CAAC,IAAI,CAxRT,eAAe,EAAE,UAAU;IAyRhC,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI,GAMpB;IAxRD,MAAM,EAAE,SAAS,EAAE,MAAM;MA6QxB,AAAD,kCAAO,CAAC;QAQJ,aAAa,EAAE,MAAM;QACrB,SAAS,EAAE,KAAK,GAEnB;EAEA,AAAD,4CAAiB,CAAC;IAChB,OAAO,EAAE,IAAI;IACb,KAAK,EAjSK,OAAO,GAuSlB;IAlSD,MAAM,EAAE,SAAS,EAAE,MAAM;MA0RxB,AAAD,4CAAiB,CAAC;QAKd,cAAc,EAAE,MAAM;QACtB,OAAO,EAAE,MAAM,GAElB;EAEA,AAAD,wCAAa,CAAC;IACZ,YAAY,EAAE,IAAI,GACnB;EAEA,AAAD,kCAAO,EACN,iCAAK,CAAC;IACL,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,OAAO,GAwCjB;IAnVD,MAAM,EAAE,SAAS,EAAE,MAAM;MAwSxB,AAAD,kCAAO,EACN,iCAAK,CAAC;QAIH,KAAK,EAAE,IAAI;QACX,OAAO,EAAE,KAAK,GAqCjB;IAlCE,AAAD,0CAAS,EAAR,yCAAQ,CAAC;MACR,OAAO,EAAE,IAAI;MACb,YAAY,EAAE,IAAI;MAClB,UAAU,EAAE,KAAK;MACjB,aAAa,EAAE,IAAI,GA6BpB;MAlVH,MAAM,EAAE,SAAS,EAAE,MAAM;QAiTtB,AAAD,0CAAS,EAAR,yCAAQ,CAAC;UAMN,YAAY,EAAE,IAAI;UAClB,UAAU,EAAE,KAAK;UACjB,aAAa,EAAE,MAAM,GAyBxB;MAjCA,AAWC,0CAXO,CAWP,EAAE,EAXH,yCAAQ,CAWP,EAAE,CAAC;QACD,UAAU,EAAE,CAAC;QACb,IAAI,EAAE,GAAG,CAAC,MAAM,CAtUf,eAAe,EAAE,UAAU;QAuU5B,KAAK,EApUC,OAAO;QAqUb,aAAa,EAAE,GAAG,GAKnB;QArUL,MAAM,EAAE,SAAS,EAAE,MAAM;UAiTtB,AAWC,0CAXO,CAWP,EAAE,EAXH,yCAAQ,CAWP,EAAE,CAAC;YAMC,IAAI,EAAE,GAAG,CAAC,MAAM,CA1UjB,eAAe,EAAE,UAAU;YA2U1B,aAAa,EAAE,GAAG,GAErB;MApBF,AAsBC,0CAtBO,CAsBP,EAAE,EAtBH,yCAAQ,CAsBP,EAAE,CAAC;QACD,UAAU,EAAE,CAAC;QACb,IAAI,EAAE,GAAG,CAAC,IAAI,CAjVb,eAAe,EAAE,UAAU;QAkV5B,KAAK,EA/UC,OAAO,GAqVd;QAhVL,MAAM,EAAE,SAAS,EAAE,MAAM;UAiTtB,AAsBC,0CAtBO,CAsBP,EAAE,EAtBH,yCAAQ,CAsBP,EAAE,CAAC;YAMC,IAAI,EAAE,GAAG,CAAC,IAAI,CArVf,eAAe,EAAE,UAAU;YAsV1B,aAAa,EAAE,CAAC,GAEnB;EAIJ,AAAD,kCAAO,CAAC;IACN,YAAY,EAAE,CAAC,GAChB;EAEA,AAAD,iCAAM,CAAC;IACL,aAAa,EAAE,CAAC,GACjB;EAEA,AAAD,gCAAK,CAAC;IACJ,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM,GACxB;;AAIL,AAAA,iBAAiB,CAAC;EAChB,MAAM,EAAE,MAAM,GAsEf;EAvED,AAGE,iBAHe,CAGf,aAAa,CAAC;IACZ,OAAO,EAAE,MAAM,GAsBhB;IA7XC,MAAM,EAAE,SAAS,EAAE,MAAM;MAmW7B,AAGE,iBAHe,CAGf,aAAa,CAAC;QAGV,OAAO,EAAE,MAAM,GAoBlB;IA1BH,AASM,iBATW,CAGf,aAAa,CAKX,YAAY,AACT,WAAW,CAAC;MACX,SAAS,EAAE,cAAc;MACzB,GAAG,EAAE,GAAG,GAaT;MA3XH,MAAM,EAAE,SAAS,EAAE,MAAM;QAmW7B,AASM,iBATW,CAGf,aAAa,CAKX,YAAY,AACT,WAAW,CAAC;UAKT,GAAG,EAAE,GAAG,GAUX;UAxBP,AAgBU,iBAhBO,CAGf,aAAa,CAKX,YAAY,AACT,WAAW,CAOR,WAAW,CAAC;YACV,KAAK,EAAE,CAAC,GACT;UAlBX,AAoBU,iBApBO,CAGf,aAAa,CAKX,YAAY,AACT,WAAW,CAWR,WAAW,CAAC;YACV,IAAI,EAAE,CAAC,GACR;EAtBX,AA4BE,iBA5Be,CA4Bf,WAAW,CAAC;IACV,MAAM,EAAE,CAAC,GAMV;IAtYC,MAAM,EAAE,SAAS,EAAE,MAAM;MAmW7B,AA4BE,iBA5Be,CA4Bf,WAAW,CAAC;QAIR,IAAI,EAAE,CAAC,GAGV;EAnCH,AAqCE,iBArCe,CAqCf,kBAAkB,CAAC;IACjB,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,KAAK;IAMb,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM,GAsBpB;IAzaC,MAAM,EAAE,SAAS,EAAE,MAAM;MAmW7B,AAqCE,iBArCe,CAqCf,kBAAkB,CAAC;QAMf,MAAM,EAAE,KAAK,GA2BhB;IAtEH,AAkDI,iBAlDa,CAqCf,kBAAkB,CAahB,eAAe,CAAC;MACd,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC;MACN,OAAO,EAAE,CAAC,GAeX;MApEL,AAuDM,iBAvDW,CAqCf,kBAAkB,CAkBb,sBAAO,CAAC;QACP,QAAQ,EAAE,QAAQ;QAClB,GAAG,EAAE,CAAC;QACN,OAAO,EAAE,CAAC;QACV,KAAK,EAAE,GAAG;QACV,GAAG,EAAE,IAAI;QACT,MAAM,EAAE,KAAK,GAMd;QAtaH,MAAM,EAAE,SAAS,EAAE,MAAM;UAmW7B,AAuDM,iBAvDW,CAqCf,kBAAkB,CAkBb,sBAAO,CAAC;YASL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,GAAG,GAEb;;AAMP,AACE,MADI,AACH,MAAM,CAAC;EACN,SAAS,EAAE,cAAc,GAC1B;;AAGH,AAAA,oBAAoB,CAAC;EACnB,UAAU,EAAE,2BAA2B,CAAC,SAAS,CAAC,KAAK;EACvD,eAAe,EAAE,QAAQ;EACzB,UAAU,EAAE,QAAQ;EACpB,QAAQ,EAAE,QAAQ,GA0FnB;EAhhBG,MAAM,EAAE,SAAS,EAAE,MAAM;IAkb7B,AAAA,oBAAoB,CAAC;MAOjB,UAAU,EAAE,QAAQ;MACpB,gBAAgB,EAAE,IAAI,GAsFzB;EAnFE,AAAD,0BAAO,CAAC;IACN,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,QAAQ;IAChB,eAAe,EAAE,aAAa;IAC9B,OAAO,EAAE,CAAC,GA8EX;IA/gBC,MAAM,EAAE,SAAS,EAAE,MAAM;MA6b1B,AAAD,0BAAO,CAAC;QAOJ,eAAe,EAAE,MAAM;QACvB,UAAU,EAAE,MAAM;QAClB,cAAc,EAAE,MAAM;QACtB,UAAU,EAAE,yBAAyB;QACrC,UAAU,EAAE,IAAI,GAuEnB;IApEE,AACC,kCADO,CACP,EAAE,CAAC;MACD,IAAI,EAAE,GAAG,CAAC,IAAI,CArdX,eAAe,EAAE,UAAU;MAsd9B,KAAK,EAndG,OAAO;MAodf,aAAa,EAAE,MAAM,GAMtB;MAJC,MAAM,EAAE,SAAS,EAAE,KAAK;QAN3B,AACC,kCADO,CACP,EAAE,CAAC;UAMC,SAAS,EAAE,IAAI,GAGlB;IAVF,AAYC,kCAZO,CAYP,EAAE,CAAC;MACD,UAAU,EAAE,MAAM;MAClB,IAAI,EAAE,GAAG,CAAC,IAAI,CAjeX,eAAe,EAAE,UAAU;MAke9B,aAAa,EAAE,IAAI;MACnB,KAAK,EAheG,OAAO,GAiehB;IAGF,AAAD,6CAAoB,CAAC;MACnB,OAAO,EAAE,IAAI;MACb,eAAe,EAAE,MAAM;MACvB,WAAW,EAAE,MAAM;MACnB,KAAK,EAAE,KAAK;MACZ,MAAM,EAAE,KAAK,GA0Cd;MA/CA,AAMC,6CANkB,CAMlB,EAAE,CAAA;QACA,IAAI,EAAE,GAAG,CAAC,IAAI,CA9eX,eAAe,EAAE,UAAU;QA+e9B,KAAK,EAAC,IACR,GAAC;MAxeH,MAAM,EAAE,SAAS,EAAE,MAAM;QA+dxB,AAAD,6CAAoB,CAAC;UAWjB,UAAU,EAAE,oCAAoC,CAAC,SAAS,CAAC,KAAK;UAChE,eAAe,EAAE,SAAS;UAC1B,UAAU,EAAE,SAAS;UACrB,KAAK,EAAE,KAAK;UACZ,MAAM,EAAE,KAAK;UACb,OAAO,EAAE,IAAI;UACb,cAAc,EAAE,MAAM,GA8BzB;MA/CA,AAoBC,6CApBkB,CAoBlB,GAAG,CAAC;QACF,QAAQ,EAAE,QAAQ;QAClB,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,CAAC;QACT,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,IAAI,GAOb;QA/fH,MAAM,EAAE,SAAS,EAAE,MAAM;UA+dxB,AAoBC,6CApBkB,CAoBlB,GAAG,CAAC;YAQA,QAAQ,EAAE,KAAK;YACf,KAAK,EAAE,IAAI;YACX,MAAM,EAAE,KAAK,GAEhB;MACA,AAAD,qDAAS,CAAC;QACR,OAAO,EAAE,KAAK;QACd,WAAW,EAAE,IAAI,GAKlB;QAvgBH,MAAM,EAAE,SAAS,EAAE,MAAM;UAggBtB,AAAD,qDAAS,CAAC;YAIN,OAAO,EAAE,IAAI,GAGhB;MACA,AAAD,oDAAQ,CAAC;QACP,OAAO,EAAE,IAAI,GAId;QA7gBH,MAAM,EAAE,SAAS,EAAE,MAAM;UAwgBtB,AAAD,oDAAQ,CAAC;YAGL,OAAO,EAAE,KAAK,GAEjB;;AAKP,AAAA,oBAAoB,CAAC;EACnB,gBAAgB,EAAE,OAAO;EACzB,OAAO,EAAE,CAAC,GAsFX;EArFE,AAAD,0BAAO,CAAC;IACN,OAAO,EAAE,MAAM,GA6ChB;IAnkBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAqhB1B,AAAD,0BAAO,CAAC;QAIJ,OAAO,EAAE,IAAI,GA0ChB;IAvCE,AAAD,+CAAsB,CAAC;MACrB,OAAO,EAAE,IAAI;MACb,eAAe,EAAE,aAAa,GAM/B;MApiBD,MAAM,EAAE,SAAS,EAAE,MAAM;QA4hBxB,AAAD,+CAAsB,CAAC;UAKnB,UAAU,EAAE,MAAM;UAClB,cAAc,EAAE,MAAM,GAEzB;IAfF,AAkBC,0BAlBK,CAkBL,GAAG,CAAC;MACF,YAAY,EAAE,IAAI,GACnB;IApBF,AAsBC,0BAtBK,CAsBL,0BAA0B,CAAC,GAAG,CAAC;MAC7B,YAAY,EAAE,IAAI,GAKnB;MAjjBD,MAAM,EAAE,SAAS,EAAE,MAAM;QAqhB1B,AAsBC,0BAtBK,CAsBL,0BAA0B,CAAC,GAAG,CAAC;UAI3B,UAAU,EAAE,IACd,GACD;IAEA,AAAD,8CAAqB,CAAC;MACpB,OAAO,EAAE,IAAI,GAad;MAjkBD,MAAM,EAAE,SAAS,EAAE,MAAM;QAmjBxB,AAAD,8CAAqB,CAAC;UAIlB,OAAO,EAAE,IAAI;UACb,eAAe,EAAE,MAAM;UACvB,WAAW,EAAE,MAAM;UACnB,OAAO,EAAE,QAAQ,GAOpB;UAdA,AASG,8CATiB,CASjB,GAAG,CAAC;YACF,YAAY,EAAE,IAAI,GACnB;EASN,AAAD,gCAAa,CAAC;IACZ,UAAU,EAAE,IAAI;IAChB,cAAc,EAAE,MAAM,GAKvB;IA9kBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAukB1B,AAAD,gCAAa,CAAC;QAKV,UAAU,EAAE,KAAK,CAAC,GAAG,CAAE,IAAG,CAAC,GAAG,CAAC,sBAAsB,GAExD;EAEA,AAAD,iCAAc,CAAC;IACb,OAAO,EAAE,KAAK,GASf;IA1lBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAglB1B,AAAD,iCAAc,CAAC;QAIX,OAAO,EAAE,IAAI,GAMhB;IA1lBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAglB1B,AAAD,iCAAc,CAAC;QAQX,UAAU,EAAE,IAAI,GAEnB;EAEA,AAAD,kCAAe,CAAC;IACd,IAAI,EAAE,GAAG,CAAC,IAAI,CArmBP,eAAe,EAAE,UAAU,GAsmBnC;EAEA,AAAD,+BAAY,CAAC;IACX,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,wBAAwB;IACpC,IAAI,EAAE,GAAG,CAAC,IAAI,CA3mBP,eAAe,EAAE,UAAU;IA4mBlC,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,uBAAuB,GAKtD;IAzmBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAgmB1B,AAAD,+BAAY,CAAC;QAOT,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,uBAAuB,GAExD;;AAGH,AAAA,oBAAoB,CAAC;EACnB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,IAAI,EAAE,OAAO;EACb,MAAM,EAAE,IAAI,GAyBb;EAvBE,AAAD,gCAAa,CAAC;IACZ,KAAK,EAAE,GAAG;IACV,QAAQ,EAAE,QAAQ,GAoBnB;IAtBA,AAIC,gCAJW,CAIX,GAAG,CAAC;MACF,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI;MACX,UAAU,EAAE,OAAO,GACpB;IAEA,AAAD,yCAAU,CAAC;MACT,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC;MACN,KAAK,EAAE,GAAG;MACV,SAAS,EAAE,qBAAqB,GAOjC;MAXA,AAMC,yCANQ,CAMR,KAAK,CAAC;QACJ,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,IAAI;QACX,UAAU,EAAE,OAAO,GACpB;;AAKP,AAAA,OAAO,CAAA;EACL,OAAO,EAAE,eAAe,GACzB;;AAED,AAAA,eAAe,CAAA;EACb,OAAO,EAAE,mBAAmB;EAC5B,MAAM,EAAE,MAAM;EACd,SAAS,EAAE,MAAM,GAMlB;EAJC,MAAM,EAAE,SAAS,EAAE,KAAK;IAL1B,AAAA,eAAe,CAAA;MAMX,OAAO,EAAE,mBAAmB,GAG/B;;AAKI,AACC,2BADM,CACN,EAAE,EADH,2BAAO,CACH,EAAE,CAAC;EACJ,IAAI,EAAE,GAAG,CAAC,IAAI,CAxqBX,eAAe,EAAE,UAAU;EAyqB9B,KAAK,EAtqBG,OAAO;EAuqBf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM,GACpB;;AANF,AAOC,2BAPM,CAON,EAAE,CAAC;EACD,IAAI,EAAE,GAAG,CAAC,MAAM,CA9qBb,eAAe,EAAE,UAAU;EA+qB9B,WAAW,EAAE,MAAM,GACpB;;AAxqBH,MAAM,EAAE,SAAS,EAAE,MAAM;EA8pBxB,AAYC,2BAZM,CAYN,EAAE,CAAC;IACD,IAAI,EAAE,GAAG,CAAC,IAAI,CAnrBX,eAAe,EAAE,UAAU,GAurB/B;EA/qBH,MAAM,EAAE,SAAS,EAAE,MAAM,OAAjB,SAAS,EAAE,MAAM;IA8pBxB,AAYC,2BAZM,CAYN,EAAE,CAAC;MAGC,aAAa,EAAE,IAAI,GAEtB;;AA/qBH,MAAM,EAAE,SAAS,EAAE,MAAM;EA8pBxB,AAkBC,2BAlBM,CAkBN,EAAE,CAAC;IACD,WAAW,EAAE,QAAQ,GAItB;EArrBH,MAAM,EAAE,SAAS,EAAE,MAAM,OAAjB,SAAS,EAAE,MAAM;IA8pBxB,AAkBC,2BAlBM,CAkBN,EAAE,CAAC;MAGC,aAAa,EAAE,MAAM,GAExB;;AArrBH,MAAM,EAAE,SAAS,EAAE,MAAM,OAAjB,SAAS,EAAE,MAAM;EA8pBxB,AAwBC,2BAxBM,CAwBN,EAAE,AAAA,WAAW,CAAA;IAET,UAAU,EAAE,CAAC,GAEhB;;AAGF,AAAD,8BAAW,CAAA;EACT,OAAO,EAAE,IAAI,GAmCd;EAjuBD,MAAM,EAAE,SAAS,EAAE,MAAM;IA6rBxB,AAAD,8BAAW,CAAA;MAGP,cAAc,EAAE,MAAM;MACtB,WAAW,EAAE,MAAM,GAgCtB;EA9BE,AAAD,sCAAS,CACT;IACE,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,qBAAqB;IAC3C,aAAa,EAAE,MAAM;IACrB,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,KAAK;IAChB,UAAU,EAAE,KAAK,GAuBlB;IAhuBH,MAAM,EAAE,SAAS,EAAE,MAAM;MAmsBtB,AAAD,sCAAS,CACT;QAQI,aAAa,EAAE,MAAM,GAoBxB;IA7BA,AAWC,sCAXO,CAWP,GAAG,CAAA;MACD,KAAK,EAAE,IAAI,GACZ;IAbF,AAeC,sCAfO,CAeP,EAAE,CAAC;MACD,IAAI,EAAE,GAAG,CAAC,MAAM,CA3tBf,eAAe,EAAE,UAAU;MA4tB5B,KAAK,EAztBC,OAAO;MA0tBb,OAAO,EAAE,WAAW;MACpB,UAAU,EAAE,MAAM,GACnB;IApBF,AAqBC,sCArBO,CAqBP,EAAE,CAAC;MACD,IAAI,EAAE,GAAG,CAAC,IAAI,CAjuBb,eAAe,EAAE,UAAU;MAkuB5B,KAAK,EA/tBC,OAAO;MAguBb,OAAO,EAAE,MAAM;MACf,UAAU,EAAE,CAAC;MACb,UAAU,EAAE,MAAM,GACrB;;AAQP,AAAA,aAAa,CAAC;EACZ,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,UAAU,EAjvBD,OAAO,CAivBK,8BAA8B,CAAC,SAAS;EAC7D,eAAe,EAAE,KAAK,GAiEvB;EA5yBG,MAAM,EAAE,SAAS,EAAE,MAAM;IAsuB7B,AAAA,aAAa,CAAC;MAQV,UAAU,EArvBH,OAAO,CAqvBO,6BAA6B,CAAC,SAAS;MAC5D,eAAe,EAAE,KAAK,GA6DzB;EA3DE,AAAD,uBAAW,CAAA;IACT,MAAM,EAAE,KAAK;IACb,KAAK,EAAE,IAAI;IACX,SAAS,EAAE,MAAM;IACjB,OAAO,EAAE,IAAI;IACb,IAAI,EAAE,CAAC;IACP,cAAc,EAAE,GAAG;IACnB,OAAO,EAAE,QAAQ;IACjB,GAAG,EAAE,MAAM,GAkDZ;IA3yBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAivB1B,AAAD,uBAAW,CAAA;QAUP,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,sBAAsB;QAC/B,GAAG,EAAE,KAAK,GA8Cb;IA5CE,AAAD,kCAAY,CAAC;MACX,OAAO,EAAE,IAAI;MACb,IAAI,EAAE,CAAC;MACP,cAAc,EAAE,MAAM;MACtB,eAAe,EAAE,MAAM,GAuBxB;MA3BA,AAKC,kCALU,CAKV,EAAE,CAAC;QACD,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,gBAAgB;QACxB,IAAI,EAAE,GAAG,CAAC,IAAI,CA/wBX,eAAe,EAAE,UAAU,GAqxB/B;QA7wBH,MAAM,EAAE,SAAS,EAAE,MAAM;UA+vBxB,AAKC,kCALU,CAKV,EAAE,CAAC;YAMC,IAAI,EAAE,GAAG,CAAC,IAAI,CAlxBb,eAAe,EAAE,UAAU;YAmxB5B,MAAM,EAAE,UAAU,GAErB;MAdF,AAgBC,kCAhBU,CAgBV,EAAE,CAAC;QACD,KAAK,EAtxBL,IAAI;QAuxBJ,WAAW,EAAE,IAAI;QACjB,aAAa,EAAE,IAAI;QACnB,IAAI,EAAE,GAAG,CAAC,IAAI,CA3xBX,eAAe,EAAE,UAAU,GAiyB/B;QAzxBH,MAAM,EAAE,SAAS,EAAE,MAAM;UA+vBxB,AAgBC,kCAhBU,CAgBV,EAAE,CAAC;YAOC,IAAI,EAAE,GAAG,CAAC,IAAI,CA9xBb,eAAe,EAAE,UAAU;YA+xB5B,MAAM,EAAE,YAAY,GAEvB;IAEF,AAAD,mCAAa,CAAC;MACZ,WAAW,EAAE,KAAK,GAKnB;MAjyBD,MAAM,EAAE,SAAS,EAAE,MAAM;QA2xBxB,AAAD,mCAAa,CAAC;UAIV,IAAI,EAAE,CAAC,GAEV;IAEA,AAAD,oCAAc,CAAC;MACb,WAAW,EAAE,GAAG;MAChB,SAAS,EAAE,GAAG,GAKf;MA1yBD,MAAM,EAAE,SAAS,EAAE,MAAM;QAmyBxB,AAAD,oCAAc,CAAC;UAKX,MAAM,EAAE,KAAK,GAEhB;;AAKL,AAAA,aAAa,CAAC;EACZ,KAAK,EAAE,IAAI,GACZ;;AAED,AAAA,YAAY,CAAC;EACX,OAAO,EAAE,eAAe;EACxB,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM,GACpB;;AAED,AAAA,kBAAkB,CAAC;EACjB,QAAQ,EAAE,QAAQ,GAuFnB;EArFE,AAAD,yBAAQ,CAAC;IACP,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM;IACnB,MAAM,EAAE,OAAO;IACf,UAAU,EAAE,SAAS,GA0BtB;IA/BA,AAOC,yBAPM,AAOL,MAAM,CAAC;MACN,OAAO,EAAE,GAAG,GACb;IAEA,AAAD,8BAAM,CAAC;MACL,IAAI,EAAE,GAAG,CAAC,IAAI,CAh1BT,eAAe,EAAE,UAAU;MAi1BhC,KAAK,EA/0BH,IAAI;MAg1BN,MAAM,EAAE,cAAc,GACvB;IAEA,AAAD,+BAAO,CAAC;MACN,KAAK,EAAE,IAAI;MACX,MAAM,EAAE,IAAI;MACZ,gBAAgB,EAAE,gCAAgC,CAAC,UAAU;MAC7D,UAAU,EAAE,SAAS,GAStB;MAbA,AAMC,+BANK,AAMJ,GAAG,CAAC;QACH,MAAM,EAAE,OAAO,GAChB;MARF,AAUC,+BAVK,AAUJ,KAAK,CAAC;QACL,MAAM,EAAE,IAAI,GACb;EAIJ,AAAD,4BAAW,CAAC;IACV,gBAAgB,EAp2BZ,IAAI;IAq2BR,OAAO,EAAE,GAAG;IACZ,OAAO,EAAE,IAAI;IACb,cAAc,EAAE,MAAM;IACtB,WAAW,EAAE,OAAO;IACpB,GAAG,EAAE,GAAG;IACR,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,IAAI;IACb,GAAG,EAAE,IAAI;IACT,KAAK,EAAE,CAAC;IACR,UAAU,EAAE,SAAS;IACrB,UAAU,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,CAAE,IAAG,CAAC,sBAAsB,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,CAAE,IAAG,CAAC,sBAAsB;IAC9F,aAAa,EAAE,GAAG,GAanB;IA1BA,AAeC,4BAfS,AAeR,KAAK,CAAC;MACL,OAAO,EAAE,CAAC;MACV,GAAG,EAAE,IAAI;MACT,cAAc,EAAE,OAAO,GACxB;IAnBF,AAqBC,4BArBS,AAqBR,MAAM,CAAC;MACN,OAAO,EAAE,CAAC;MACV,GAAG,EAAE,IAAI;MACT,cAAc,EAAE,IAAI,GACrB;EAGF,AAAD,iCAAgB,CAAC;IACf,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,UAAU;IAC3B,OAAO,EAAE,GAAG;IACZ,MAAM,EAAE,OAAO;IACf,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,SAAS,GAKtB;IAZA,AASC,iCATc,AASb,MAAM,CAAC;MACN,gBAAgB,EAAE,OAAO,GAC1B;EAGF,AAAD,4BAAW,CAAC;IACV,IAAI,EAAE,GAAG,CAAC,IAAI,CAh5BP,eAAe,EAAE,UAAU;IAi5BlC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,YAAY,GAMrB;IATA,AAKC,4BALS,AAKR,SAAS,CAAC;MACT,IAAI,EAAE,GAAG,CAAC,IAAI,CAr5BT,eAAe,EAAE,UAAU;MAs5BhC,KAAK,Ebl5BC,OAAO,Gam5Bd;;ACr4BL,AAAA,kBAAkB,CAAC;EACjB,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,MAAM;EACd,SAAS,EAAE,MAAM,GAClB;;AAED,AAAA,KAAK,CAAC;EACJ,UAAU,EAxBF,OAAO,CAwBM,uBAAuB,CAAC,SAAS;EACtD,eAAe,EAAE,KAAK;EACtB,OAAO,EAAE,MAAM,GAkFhB;EArGG,MAAM,EAAE,SAAS,EAAE,MAAM;IAgB7B,AAAA,KAAK,CAAC;MAKF,OAAO,EAAE,CAAC,GAgFb;EArGG,MAAM,EAAE,SAAS,EAAE,MAAM;IAgB7B,AAAA,KAAK,CAAC;MAQF,UAAU,EA/BJ,OAAO,CA+BQ,sBAAsB,CAAC,SAAS;MACrD,eAAe,EAAE,KAAK,GA4EzB;EAzEE,AAAD,WAAO,CAAC;IACN,OAAO,EAAE,IAAI;IACb,WAAW,EAAE,MAAM;IACnB,OAAO,EAAE,iBAAiB,CAAC,GAAG,GAqE/B;IAhGC,MAAM,EAAE,SAAS,EAAE,MAAM;MAwB1B,AAAD,WAAO,CAAC;QAMJ,OAAO,EAAE,iBAAiB,CAAC,IAAI,GAkElC;IApGC,MAAM,EAAE,SAAS,EAAE,MAAM;MA4B1B,AAAD,WAAO,CAAC;QAUJ,cAAc,EAAE,cAAc;QAC9B,OAAO,EAAE,SAAS,GA6DrB;QAxEA,AAaG,WAbG,CAaH,UAAU,CAAC;UACT,UAAU,EAAE,MAAM,GACnB;IAGF,AAAD,oBAAU,CAAC;MACT,IAAI,EAAE,OAAO,GAwBd;MAzBA,AAGC,oBAHQ,CAGR,EAAE,CAAC;QACD,KAAK,EAAE,IAAI;QACX,MAAM,EAAE,gBAAgB;QACxB,IAAI,EAAE,GAAG,CAAC,IAAI,CA5DX,eAAe,EAAE,UAAU,GAkE/B;QA1DH,MAAM,EAAE,SAAS,EAAE,MAAM;UA8CxB,AAGC,oBAHQ,CAGR,EAAE,CAAC;YAMC,IAAI,EAAE,GAAG,CAAC,IAAI,CA/Db,eAAe,EAAE,UAAU;YAgE5B,MAAM,EAAE,UAAU,GAErB;MAZF,AAcC,oBAdQ,CAcR,EAAE,CAAC;QACD,KAAK,EAnEL,IAAI;QAoEJ,WAAW,EAAE,IAAI;QACjB,aAAa,EAAE,IAAI;QACnB,IAAI,EAAE,GAAG,CAAC,IAAI,CAxEX,eAAe,EAAE,UAAU,GA8E/B;QAtEH,MAAM,EAAE,SAAS,EAAE,MAAM;UA8CxB,AAcC,oBAdQ,CAcR,EAAE,CAAC;YAOC,IAAI,EAAE,GAAG,CAAC,MAAM,CA3Ef,eAAe,EAAE,UAAU;YA4E5B,MAAM,EAAE,YAAY,GAEvB;IAGF,AAAD,wBAAc,CAAC;MACb,IAAI,EAAE,OAAO;MACb,OAAO,EAAE,IAAI;MACb,WAAW,EAAE,MAAM;MACnB,eAAe,EAAE,MAAM,GAYxB;MAzFD,MAAM,EAAE,SAAS,EAAE,MAAM;QAyExB,AAAD,wBAAc,CAAC;UAOX,cAAc,EAAE,MAAM,GASzB;MAzFD,MAAM,EAAE,SAAS,EAAE,MAAM;QAyExB,AAUC,wBAVY,CAUZ,GAAG,CAAC;UAEA,UAAU,EAAE,OAAO;UACnB,KAAK,EAAE,IAAI,GAEd;IAGF,AAAD,wBAAc,CAAC;MACb,OAAO,EAAE,IAAI;MACb,KAAK,EAAE,mBAAmB;MAC1B,aAAa,EAAE,IAAI,GAKpB;MAnGD,MAAM,EAAE,SAAS,EAAE,MAAM;QA2FxB,AAAD,wBAAc,CAAC;UAMX,OAAO,EAAE,KAAK,GAEjB;;AAIL,AAAA,MAAM,CAAC;EACL,MAAM,EAAE,MAAM;EACd,aAAa,EAAE,OAAO;EACtB,IAAI,EAAE,GAAG,CAAC,QAAQ,CAlHT,eAAe,EAAE,UAAU;EAmHpC,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,OAAO;EACf,cAAc,EAAE,IAAI,GA8BrB;EAxCD,AAYE,MAZI,AAYH,QAAQ,CAAC;IACR,gBAAgB,EAAE,OAAO;IACzB,KAAK,EA3HD,IAAI,GAmIT;IA7HC,MAAM,EAAE,SAAS,EAAE,MAAM;MAuG7B,AAYE,MAZI,AAYH,QAAQ,CAAC;QAIN,aAAa,EAAE,IAAI,GAMtB;IAtBH,AAkBI,MAlBE,AAYH,QAAQ,AAMN,MAAM,CAAC;MACN,gBAAgB,EAAE,OAAO;MACzB,KAAK,EAjIH,IAAI,GAkIP;EArBL,AAwBE,MAxBI,AAwBH,OAAO,CAAC;IACP,UAAU,EAAE,OAAO;IACnB,KAAK,EAvID,IAAI,GA+IT;IAzIC,MAAM,EAAE,SAAS,EAAE,MAAM;MAuG7B,AAwBE,MAxBI,AAwBH,OAAO,CAAC;QAIL,aAAa,EAAE,IAAI,GAMtB;IAlCH,AA8BI,MA9BE,AAwBH,OAAO,AAML,MAAM,CAAC;MACN,gBAAgB,EAAE,OAAO;MACzB,KAAK,EA7IH,IAAI,GA8IP;EAjCL,AAoCE,MApCI,AAoCH,MAAM,CAAC;IACN,gBAAgB,EAAE,OAAO;IACzB,KAAK,EAAE,IAAI,GACZ;;AAGH,AACE,UADQ,CACR,MAAM,CAAC;EACL,YAAY,EAAE,IAAI,GACnB;;AApJC,MAAM,EAAE,SAAS,EAAE,MAAM;EAiJ7B,AAAA,UAAU,CAAC;IAMP,UAAU,EAAE,MAAM;IAClB,aAAa,EAAE,MAAM,GAExB;;AAED,AAAA,OAAO,CAAC;EACN,UAAU,EAAE,6CAA6C,CAAC,SAAS;EACnE,eAAe,EAAE,KAAK,GAkEvB;EAhEE,AAAD,aAAO,CAAC;IACN,OAAO,EAAE,IAAI,GA8Dd;IA3NC,MAAM,EAAE,SAAS,EAAE,MAAM;MA4J1B,AAAD,aAAO,CAAC;QAGJ,OAAO,EAAE,MAAM,GA4DlB;IA/NC,MAAM,EAAE,SAAS,EAAE,MAAM;MAgK1B,AAAD,aAAO,CAAC;QAOJ,OAAO,EAAE,CAAC;QACV,cAAc,EAAE,MAAM,GAuDzB;IA/NC,MAAM,EAAE,SAAS,EAAE,MAAM;MA2KxB,AACC,0BADY,CACZ,GAAG,CAAC;QAEA,UAAU,EAAE,OAAO;QACnB,KAAK,EAAE,IAAI,GAEd;IAGF,AAAD,sBAAU,CAAC;MACT,OAAO,EAAE,IAAI;MACb,cAAc,EAAE,MAAM;MACtB,eAAe,EAAE,MAAM;MACvB,MAAM,EAAE,MAAM,GAsCf;MA1CA,AAKC,sBALQ,CAKR,EAAE,CAAC;QACD,aAAa,EAAE,MAAM;QACrB,MAAM,EAAE,CAAC;QACT,IAAI,EAAE,GAAG,CAAC,IAAI,CApMX,eAAe,EAAE,UAAU;QAqM9B,WAAW,EAAE,IAAI;QACjB,KAAK,EAnME,OAAO,GA0Mf;QArMH,MAAM,EAAE,SAAS,EAAE,MAAM;UAoLxB,AAKC,sBALQ,CAKR,EAAE,CAAC;YAQC,IAAI,EAAE,GAAG,CAAC,MAAM,CAzMf,eAAe,EAAE,UAAU;YA0M5B,UAAU,EAAE,MAAM;YAClB,OAAO,EAAE,MAAM,GAElB;MAjBF,AAmBC,sBAnBQ,CAmBR,EAAE,CAAC;QACD,aAAa,EAAE,MAAM;QACrB,UAAU,EAAE,IAAI;QAChB,IAAI,EAAE,GAAG,CAAC,IAAI,CAlNX,eAAe,EAAE,UAAU;QAmN9B,WAAW,EAAE,IAAI;QACjB,KAAK,EAjNE,OAAO,GAwNf;QAnNH,MAAM,EAAE,SAAS,EAAE,MAAM;UAoLxB,AAmBC,sBAnBQ,CAmBR,EAAE,CAAC;YAQC,IAAI,EAAE,GAAG,CAAC,MAAM,CAvNf,eAAe,EAAE,UAAU;YAwN5B,UAAU,EAAE,MAAM;YAClB,OAAO,EAAE,MAAM,GAElB;MA/BF,AAiCC,sBAjCQ,CAiCR,MAAM,AAAA,YAAY,CAAC;QACjB,gBAAgB,EAAE,WAAW;QAC7B,MAAM,EAAE,iBAAiB;QACzB,cAAc,EAAE,IAAI,GAKrB;QAzCF,AAsCG,sBAtCM,CAiCR,MAAM,AAAA,YAAY,AAKf,MAAM,CAAC;UACN,gBAAgB,EAAE,OAAO,GAC1B;;AAMT,AAAA,iBAAiB,CAAC;EAChB,OAAO,EAAE,eAAe;EACxB,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,OAAO,EAAE,eAAe;EACxB,MAAM,EAAE,QAAQ;EAChB,OAAO,EAAE,MAAM,GAqDhB;EA7RG,MAAM,EAAE,SAAS,EAAE,MAAM;IAkO7B,AAAA,iBAAiB,CAAC;MASd,OAAO,EAAE,eAAe;MACxB,cAAc,EAAE,cAAc;MAC9B,UAAU,EAAE,MAAM,GAgDrB;EA7CE,AACC,yBADO,CACP,EAAE,CAAC;IACD,IAAI,EAAE,GAAG,CAAC,IAAI,CA1PT,eAAe,EAAE,UAAU;IA2PhC,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,KAAK,EA1PI,OAAO,GAgQjB;IA3PD,MAAM,EAAE,SAAS,EAAE,MAAM;MAgP1B,AACC,yBADO,CACP,EAAE,CAAC;QAOC,IAAI,EAAE,GAAG,CAAC,MAAM,CAhQb,eAAe,EAAE,UAAU;QAiQ9B,aAAa,EAAE,IAAI,GAEtB;EAXF,AAaC,yBAbO,CAaP,EAAE,CAAC;IACD,IAAI,EAAE,GAAG,CAAC,IAAI,CAtQT,eAAe,EAAE,UAAU;IAuQhC,WAAW,EAAE,IAAI;IACjB,aAAa,EAAE,IAAI;IACnB,KAAK,EAtQI,OAAO,GA4QjB;IAvQD,MAAM,EAAE,SAAS,EAAE,MAAM;MAgP1B,AAaC,yBAbO,CAaP,EAAE,CAAC;QAOC,IAAI,EAAE,GAAG,CAAC,IAAI,CA5QX,eAAe,EAAE,UAAU;QA6Q9B,aAAa,EAAE,IAAI,GAEtB;EAGF,AAAD,6BAAa,CAAC;IACZ,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,MAAM;IACvB,OAAO,EAAE,IAAI,GAcd;IA5RC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0Q1B,AAAD,6BAAa,CAAC;QAOV,OAAO,EAAE,IAAI;QACb,0BAA0B;QAC1B,eAAe,EAAE,MAAM,GAS1B;IA5RC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0Q1B,AAYC,6BAZW,CAYX,GAAG,CAAC;QAEA,UAAU,EAAE,OAAO;QACnB,KAAK,EAAE,IAAI,GAEd;;AAIL,AAAA,eAAe,CAAC;EACd,UAAU,EAAE,OAAO,GAwIpB;EAtIE,AAAD,qBAAO,CAAC;IACN,OAAO,EAAE,QAAQ,GAoIlB;IAvaC,MAAM,EAAE,SAAS,EAAE,MAAM;MAkS1B,AAAD,qBAAO,CAAC;QAGJ,OAAO,EAAE,QAAQ,GAkIpB;IAhIE,AAAD,2BAAO,CAAC;MACN,IAAI,EAAE,GAAG,CAAC,IAAI,CAhTT,eAAe,EAAE,UAAU;MAiThC,KAAK,EAAE,IAAI;MACX,UAAU,EAAE,MAAM;MAClB,aAAa,EAAE,MAAM,GACtB;IAEA,AAAD,qCAAiB,CAAC;MAChB,OAAO,EAAE,IAAI;MACb,KAAK,EArTI,OAAO;MAsThB,OAAO,EAAE,OAAO;MAChB,cAAc,EAAE,MAAM,GAwCvB;MA1VD,MAAM,EAAE,SAAS,EAAE,MAAM;QA8SxB,AAAD,qCAAiB,CAAC;UAMd,cAAc,EAAE,MAAM;UACtB,OAAO,EAAE,MAAM,GAqClB;MAnCE,AAAD,yCAAK,CAAC;QACJ,OAAO,EAAE,IAAI;QACb,KAAK,EAAE,IAAI,GAgCZ;QAzVH,MAAM,EAAE,SAAS,EAAE,MAAM;UAuTtB,AAAD,yCAAK,CAAC;YAIF,cAAc,EAAE,MAAM,GA8BzB;QA5BE,AAAD,+CAAO,CAAC;UACN,OAAO,EAAE,IAAI;UACb,KAAK,EAAE,GAAG,GAyBX;UA3BA,AAGC,+CAHK,AAGJ,YAAY,CAAC;YACZ,YAAY,EAAE,IAAI,GACnB;UAlUP,MAAM,EAAE,SAAS,EAAE,MAAM;YA6TpB,AAAD,+CAAO,CAAC;cAOJ,KAAK,EAAE,IAAI,GAoBd;UAlBE,AAAD,2DAAa,CAAC;YACZ,YAAY,EAAE,IAAI,GACnB;UACA,AACC,2DADW,CACX,EAAE,CAAC;YACD,IAAI,EAAE,GAAG,CAAC,MAAM,CAnVnB,eAAe,EAAE,UAAU;YAoVxB,KAAK,EAAE,IAAI;YACX,UAAU,EAAE,CAAC;YACb,WAAW,EAAE,IAAI;YACjB,aAAa,EAAE,MAAM,GACtB;UAPF,AAQC,2DARW,CAQX,EAAE,CAAC;YACD,IAAI,EAAE,GAAG,CAAC,IAAI,CA1VjB,eAAe,EAAE,UAAU;YA2VxB,KAAK,EAAE,IAAI;YACX,WAAW,EAAE,IAAI;YACjB,aAAa,EAAE,MAAM,GACtB;IAMR,AAAD,2BAAO,EACN,0BAAK,CAAC;MASL,KAAK,EAAE,GAAG;MACV,OAAO,EAAE,OAAO,GAuDjB;MAlEA,AAEC,2BAFK,CAEL,cAAc,EADf,0BAAK,CACJ,cAAc,CAAC;QACb,OAAO,EAAE,IAAI,GACd;MAJF,AAMC,2BANK,CAML,eAAe,EALhB,0BAAK,CAKJ,eAAe,CAAC;QACd,OAAO,EAAE,KAAK,GACf;MApWH,MAAM,EAAE,SAAS,EAAE,MAAM;QA4VxB,AAAD,2BAAO,EACN,0BAAK,CAAC;UAaH,KAAK,EAAE,IAAI;UACX,OAAO,EAAE,KAAK,GAmDjB;UAlEA,AAiBG,2BAjBG,CAiBH,eAAe,EAhBlB,0BAAK,CAgBF,eAAe,CAAC;YACd,OAAO,EAAE,IAAI,GACd;UAnBJ,AAqBG,2BArBG,CAqBH,cAAc,EApBjB,0BAAK,CAoBF,cAAc,CAAC;YACb,OAAO,EAAE,KAAK,GACf;MAGF,AAAD,mCAAS,EAAR,kCAAQ,CAAC;QACR,OAAO,EAAE,IAAI;QACb,YAAY,EAAE,IAAI;QAClB,UAAU,EAAE,QAAQ;QACpB,aAAa,EAAE,IAAI,GAmCpB;QAjCE,AAAD,+CAAa,EAAZ,8CAAY,CAAC;UACZ,YAAY,EAAE,IAAI,GACnB;QAEA,AAAD,+CAAa,EAAZ,8CAAY,CAAC;UACZ,YAAY,EAAE,IAAI,GACnB;QAlYL,MAAM,EAAE,SAAS,EAAE,MAAM;UAsXtB,AAAD,mCAAS,EAAR,kCAAQ,CAAC;YAeN,UAAU,EAAE,KAAK;YACjB,aAAa,EAAE,MAAM,GAuBxB;QAvCA,AAmBC,mCAnBO,CAmBP,EAAE,EAnBH,kCAAQ,CAmBP,EAAE,CAAC;UACD,UAAU,EAAE,CAAC;UACb,IAAI,EAAE,GAAG,CAAC,MAAM,CAnZf,eAAe,EAAE,UAAU;UAoZ5B,KAAK,EAjZA,OAAO,GAuZb;UAlZL,MAAM,EAAE,SAAS,EAAE,MAAM;YAsXtB,AAmBC,mCAnBO,CAmBP,EAAE,EAnBH,kCAAQ,CAmBP,EAAE,CAAC;cAMC,IAAI,EAAE,GAAG,CAAC,MAAM,CAvZjB,eAAe,EAAE,UAAU;cAwZ1B,aAAa,EAAE,CAAC,GAEnB;QA5BF,AA8BC,mCA9BO,CA8BP,EAAE,EA9BH,kCAAQ,CA8BP,EAAE,CAAC;UACD,IAAI,EAAE,GAAG,CAAC,MAAM,CA7Zf,eAAe,EAAE,UAAU;UA8Z5B,KAAK,EA3ZA,OAAO,GAiab;UA5ZL,MAAM,EAAE,SAAS,EAAE,MAAM;YAsXtB,AA8BC,mCA9BO,CA8BP,EAAE,EA9BH,kCAAQ,CA8BP,EAAE,CAAC;cAKC,IAAI,EAAE,GAAG,CAAC,IAAI,CAjaf,eAAe,EAAE,UAAU;cAka1B,aAAa,EAAE,CAAC,GAEnB;IAIJ,AAAD,2BAAO,CAAC;MACN,YAAY,EAAE,CAAC,GAChB;IAEA,AAAD,0BAAM,CAAC;MACL,aAAa,EAAE,CAAC,GACjB;;AAIL,AAAA,iBAAiB,CAAC;EAChB,MAAM,EAAE,MAAM,GAsEf;EAvED,AAGE,iBAHe,CAGf,aAAa,CAAC;IACZ,OAAO,EAAE,MAAM,GAwBhB;IAtcC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0a7B,AAGE,iBAHe,CAGf,aAAa,CAAC;QAIV,OAAO,EAAE,CAAC,GAqBb;IA5BH,AAWM,iBAXW,CAGf,aAAa,CAOX,YAAY,AACT,WAAW,CAAC;MACX,SAAS,EAAE,cAAc;MACzB,GAAG,EAAE,GAAG,GAaT;MApcH,MAAM,EAAE,SAAS,EAAE,MAAM;QA0a7B,AAWM,iBAXW,CAGf,aAAa,CAOX,YAAY,AACT,WAAW,CAAC;UAKT,GAAG,EAAE,GAAG,GAUX;UA1BP,AAkBU,iBAlBO,CAGf,aAAa,CAOX,YAAY,AACT,WAAW,CAOR,WAAW,CAAC;YACV,KAAK,EAAE,CAAC,GACT;UApBX,AAsBU,iBAtBO,CAGf,aAAa,CAOX,YAAY,AACT,WAAW,CAWR,WAAW,CAAC;YACV,IAAI,EAAE,CAAC,GACR;EAxBX,AA8BE,iBA9Be,CA8Bf,WAAW,CAAC;IACV,MAAM,EAAE,CAAC,GAKV;IA9cC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0a7B,AA8BE,iBA9Be,CA8Bf,WAAW,CAAC;QAIR,IAAI,EAAE,CAAC,GAEV;EApCH,AAsCE,iBAtCe,CAsCf,kBAAkB,CAAC;IACjB,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,KAAK;IAMb,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM;IACvB,WAAW,EAAE,MAAM,GAqBpB;IAhfC,MAAM,EAAE,SAAS,EAAE,MAAM;MA0a7B,AAsCE,iBAtCe,CAsCf,kBAAkB,CAAC;QAMf,MAAM,EAAE,KAAK,GA0BhB;IAtEH,AAmDI,iBAnDa,CAsCf,kBAAkB,CAahB,eAAe,CAAC;MACd,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC;MACN,OAAO,EAAE,CAAC,GAeX;MArEL,AAwDM,iBAxDW,CAsCf,kBAAkB,CAkBb,sBAAO,CAAC;QACP,QAAQ,EAAE,QAAQ;QAClB,GAAG,EAAE,CAAC;QACN,OAAO,EAAE,CAAC;QACV,KAAK,EAAE,GAAG;QACV,GAAG,EAAE,IAAI;QACT,MAAM,EAAE,KAAK,GAMd;QA9eH,MAAM,EAAE,SAAS,EAAE,MAAM;UA0a7B,AAwDM,iBAxDW,CAsCf,kBAAkB,CAkBb,sBAAO,CAAC;YASL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,GAAG,GAEb;;AAKP,AACE,MADI,AACH,MAAM,CAAC;EACN,SAAS,EAAE,cAAc,GAC1B;;AAGH,AAAA,aAAa,CAAC;EACZ,UAAU,EAAE,2BAA2B,CAAC,SAAS,CAAC,KAAK;EACvD,eAAe,EAAE,QAAQ;EACzB,UAAU,EAAE,QAAQ;EACpB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,MAAM,GA0DhB;EAxjBG,MAAM,EAAE,SAAS,EAAE,MAAM;IAyf7B,AAAA,aAAa,CAAC;MAOV,OAAO,EAAE,CAAC,GAwDb;EAxjBG,MAAM,EAAE,SAAS,EAAE,MAAM;IAyf7B,AAAA,aAAa,CAAC;MAUV,UAAU,EAAE,QAAQ;MACpB,gBAAgB,EAAE,IAAI,GAoDzB;EAjDE,AAAD,mBAAO,CAAC;IACN,OAAO,EAAE,IAAI;IACb,MAAM,EAAE,QAAQ;IAChB,eAAe,EAAE,aAAa;IAC9B,OAAO,EAAE,CAAC,GA4CX;IAvjBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAugB1B,AAAD,mBAAO,CAAC;QAOJ,eAAe,EAAE,MAAM;QACvB,UAAU,EAAE,MAAM;QAClB,cAAc,EAAE,MAAM,GAuCzB;IApCE,AACC,2BADO,CACP,EAAE,CAAC;MACD,IAAI,EAAE,GAAG,CAAC,IAAI,CA7hBX,eAAe,EAAE,UAAU;MA8hB9B,KAAK,EA3hBE,OAAO;MA4hBd,aAAa,EAAE,MAAM,GACtB;IALF,AAOC,2BAPO,CAOP,EAAE,CAAC;MACD,UAAU,EAAE,MAAM;MAClB,IAAI,EAAE,GAAG,CAAC,IAAI,CApiBX,eAAe,EAAE,UAAU;MAqiB9B,aAAa,EAAE,IAAI;MACnB,KAAK,EAniBE,OAAO,GAoiBf;IA/hBH,MAAM,EAAE,SAAS,EAAE,MAAM;MAkiBxB,AAAD,+BAAa,CAAC;QAEV,UAAU,EAAE,oCAAoC,CAAC,SAAS,CAAC,KAAK;QAChE,eAAe,EAAE,SAAS;QAC1B,UAAU,EAAE,SAAS,GAgBxB;IApBA,AAOC,+BAPW,CAOX,GAAG,CAAC;MACF,QAAQ,EAAE,QAAQ;MAClB,KAAK,EAAE,GAAG;MACV,MAAM,EAAE,CAAC,GASV;MArjBH,MAAM,EAAE,SAAS,EAAE,MAAM;QAkiBxB,AAOC,+BAPW,CAOX,GAAG,CAAC;UAMA,MAAM,EAAE,CAAC;UACT,IAAI,EAAE,CAAC;UACP,KAAK,EAAE,CAAC;UACR,GAAG,EAAE,KAAK;UACV,MAAM,EAAE,MAAM,GAEjB;;AAKP,AAAA,oBAAoB,CAAC;EACnB,gBAAgB,EAAE,OAAO;EACzB,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,MAAM,GAsGhB;EAnqBG,MAAM,EAAE,SAAS,EAAE,MAAM;IA0jB7B,AAAA,oBAAoB,CAAC;MAKjB,OAAO,EAAE,CAAC,GAoGb;EAlGE,AAAD,0BAAO,CAAC;IACN,OAAO,EAAE,MAAM,GA2EhB;IA7oBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAikB1B,AAAD,0BAAO,CAAC;QAIJ,OAAO,EAAE,IAAI,GAwEhB;IArEE,AAAD,+CAAsB,CAAC;MACrB,OAAO,EAAE,IAAI;MACb,eAAe,EAAE,aAAa,GAM/B;MAhlBD,MAAM,EAAE,SAAS,EAAE,MAAM;QAwkBxB,AAAD,+CAAsB,CAAC;UAKnB,UAAU,EAAE,MAAM;UAClB,cAAc,EAAE,MAAM,GAEzB;IAfF,AAiBC,0BAjBK,CAiBL,GAAG,CAAC;MACF,YAAY,EAAE,IAAI,GACnB;IAnBF,AAqBC,0BArBK,CAqBL,0BAA0B,CAAC,GAAG,CAAC;MAC7B,YAAY,EAAE,IAAI,GAKnB;MA5lBD,MAAM,EAAE,SAAS,EAAE,MAAM;QAikB1B,AAqBC,0BArBK,CAqBL,0BAA0B,CAAC,GAAG,CAAC;UAI3B,UAAU,EAAE,IAAI,GAEnB;IAEA,AAAD,8CAAqB,CAAC;MACpB,OAAO,EAAE,IAAI,GAcd;MA7mBD,MAAM,EAAE,SAAS,EAAE,MAAM;QA8lBxB,AAAD,8CAAqB,CAAC;UAIlB,OAAO,EAAE,IAAI;UACb,eAAe,EAAE,MAAM;UACvB,WAAW,EAAE,MAAM;UACnB,OAAO,EAAE,QAAQ;UACjB,SAAS,EAAE,IAAI;UACf,GAAG,EAAE,GAAG,GAMX;UAfA,AAWG,8CAXiB,CAWjB,GAAG,CAAC;YACF,YAAY,EAAE,IAAI,GACnB;IAKF,AAAD,wCAAU,CAAC;MACT,IAAI,EAAE,GAAG,CAAC,IAAI,CAznBX,eAAe,EAAE,UAAU;MA0nB9B,KAAK,EAAE,IAAI,GASZ;MAXA,AAIC,wCAJQ,CAIR,CAAC,CAAC;QACA,KAAK,EAAE,kBAAkB,GAC1B;MAtnBL,MAAM,EAAE,SAAS,EAAE,MAAM;QAgnBtB,AAAD,wCAAU,CAAC;UASP,aAAa,EAAE,MAAM,GAExB;IAEA,AAAD,qCAAO,CAAC;MACN,OAAO,EAAE,IAAI;MACb,UAAU,EAAE,wBAAwB;MACpC,IAAI,EAAE,GAAG,CAAC,IAAI,CAxoBX,eAAe,EAAE,UAAU;MAyoB9B,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,uBAAuB;MACrD,KAAK,EAAE,IAAI,GASZ;MAdA,AAOC,qCAPK,CAOL,CAAC,CAAC;QACA,KAAK,EAAE,OAAO,GACf;MAtoBL,MAAM,EAAE,SAAS,EAAE,MAAM;QA6nBtB,AAAD,qCAAO,CAAC;UAYJ,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,uBAAuB,GAExD;EAIJ,AAAD,gCAAa,CAAC;IACZ,UAAU,EAAE,IAAI;IAChB,cAAc,EAAE,MAAM,GAKvB;IAtpBC,MAAM,EAAE,SAAS,EAAE,MAAM;MA+oB1B,AAAD,gCAAa,CAAC;QAKV,UAAU,EAAE,KAAK,CAAC,GAAG,CAAE,IAAG,CAAC,GAAG,CAAC,sBAAsB,GAExD;EAEA,AAAD,iCAAc,CAAC;IACb,OAAO,EAAE,KAAK,GASf;IAlqBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAwpB1B,AAAD,iCAAc,CAAC;QAIX,OAAO,EAAE,IAAI,GAMhB;IAlqBC,MAAM,EAAE,SAAS,EAAE,MAAM;MAwpB1B,AAAD,iCAAc,CAAC;QAQX,UAAU,EAAE,IAAI,GAEnB;;AAGH,AAAA,oBAAoB,CAAC;EACnB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,IAAI,EAAE,OAAO;EACb,MAAM,EAAE,IAAI,GAyBb;EAvBE,AAAD,gCAAa,CAAC;IACZ,KAAK,EAAE,GAAG;IACV,QAAQ,EAAE,QAAQ,GAoBnB;IAtBA,AAIC,gCAJW,CAIX,GAAG,CAAC;MACF,MAAM,EAAE,IAAI;MACZ,KAAK,EAAE,IAAI;MACX,UAAU,EAAE,OAAO,GACpB;IAEA,AAAD,yCAAU,CAAC;MACT,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC;MACN,KAAK,EAAE,GAAG;MACV,SAAS,EAAE,qBAAqB,GAOjC;MAXA,AAMC,yCANQ,CAMR,KAAK,CAAC;QACJ,MAAM,EAAE,IAAI;QACZ,KAAK,EAAE,IAAI;QACX,UAAU,EAAE,OAAO,GACpB;;AAKP,AAAA,OAAO,CAAC;EACN,OAAO,EAAE,eAAe,GACzB;;AAGE,AAAD,wBAAO,CAAC;EACN,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,mBAAmB;EAC/B,GAAG,EAAE,CAAC;EACN,OAAO,EAAE,IAAI,GAKd;EAZA,AASC,wBATK,AASJ,KAAK,CAAC;IACL,OAAO,EAAE,gBAAgB,GAC1B;;AAGF,AAAD,yBAAQ,CAAC;EACP,UAAU,EAAE,GAAG;EACf,aAAa,EAAE,IAAI,GAKpB;EAPA,AAIC,yBAJM,CAIN,GAAG,CAAC;IACF,MAAM,EAAE,OAAO,GAChB;;AAGF,AAAD,uBAAM,CAAC;EACL,aAAa,EAAE,MAAM,GACtB;;AAEA,AAAD,wBAAO,CAAC;EACN,UAAU,EAAE,CAAC;EACb,aAAa,EAAE,IAAI,GACpB;;AAEA,AAAD,mCAAkB,CAAC;EACjB,aAAa,EAAE,GAAG;EAClB,UAAU,EAAE,KAAK;EACjB,UAAU,EAAE,KAAK;EACjB,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,MAAM;EACd,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,IAAI;EACb,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB,GAKjC;EAhBA,AAaC,mCAbgB,AAaf,KAAK,CAAC;IACL,OAAO,EAAE,gBAAgB,GAC1B;;AAGF,AAAD,4BAAW,CAAC;EACV,UAAU,EAAE,MAAM,GAUnB;EAXA,AAGC,4BAHS,CAGT,QAAQ,CAAC;IACP,UAAU,EAAE,OAAO;IACnB,YAAY,EAAE,IAAI,GAKnB;IAVF,AAOG,4BAPO,CAGT,QAAQ,CAIN,MAAM,CAAC;MACL,gBAAgB,EAAE,OAAO,GAC1B;;AAKP,AAAA,cAAc,CAAC;EACb,OAAO,EAAE,IAAI,GACd;;AAED,AAAA,eAAe,CAAC;EACd,OAAO,EAAE,KAAK,GACf;;AAhxBG,MAAM,EAAE,SAAS,EAAE,MAAM;EAmxB3B,AAAA,eAAe,CAAC;IACd,OAAO,EAAE,IAAI,GACd;EAED,AAAA,cAAc,CAAC;IACb,OAAO,EAAE,KAAK,GACf;;ACnyBH,AAAA,eAAe,CAAC;EACZ,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,cAAc,EAAE,MAAM,GAqBzB;EAnBI,AAAD,wBAAU,CAAC;IACP,SAAS,EAAE,KAAK,GACnB;EAPL,AASI,eATW,CASX,EAAE,CAAC;IACC,UAAU,EAAE,MAAM;IAClB,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,MAAM;IACrB,IAAI,EAAE,GAAG,CAAC,IAAI,CDXX,eAAe,EAAE,UAAU;ICY9B,WAAW,EAAE,IAAI;IACjB,KAAK,EDVE,OAAO,GCkBjB;IDbD,MAAM,EAAE,SAAS,EAAE,MAAM;MCV7B,AASI,eATW,CASX,EAAE,CAAC;QASK,IAAI,EAAE,GAAG,CAAC,MAAM,CDhBjB,eAAe,EAAE,UAAU;QCiB1B,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,MAAM;QACf,UAAU,EAAE,MAAM,GAEzB;;AAGL,AAAA,iBAAiB,CAAC,WAAW,CAAC;EAC1B,MAAM,EAAE,YAAY,GAKrB;EAHC,MAAM,EAAE,SAAS,EAAE,MAAM;IAH7B,AAAA,iBAAiB,CAAC,WAAW,CAAC;MAItB,MAAM,EAAE,SAAS,GAEtB;;AAKK,MAAM,EAAE,SAAS,EAAE,KAAK;EAD3B,AAAD,0BAAU,CAAC;IAEH,OAAO,EAAE,IAAI,GAEpB;;AAEA,AAAD,yBAAS,CAAC;EACN,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,SAAS,GAMxB;EAHG,MAAM,EAAE,SAAS,EAAE,KAAK;IAP3B,AAAD,yBAAS,CAAC;MAQF,OAAO,EAAE,IAAI,GAEpB;;AAEA,AAAD,0BAAU,CAAC;EACP,SAAS,EAAE,QAAQ;EACnB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM,GAgB1B;EAnBA,AAKG,0BALM,CAKN,EAAE,CAAC;IACC,UAAU,EAAE,MAAM;IAClB,aAAa,EAAE,MAAM;IACrB,IAAI,EAAE,GAAG,CAAC,IAAI,CD5Df,eAAe,EAAE,UAAU;IC6D1B,WAAW,EAAE,IAAI;IACjB,KAAK,ED3DF,OAAO,GCkEb;ID7DL,MAAM,EAAE,SAAS,EAAE,MAAM;MC4CxB,AAKG,0BALM,CAKN,EAAE,CAAC;QAQK,IAAI,EAAE,GAAG,CAAC,MAAM,CDjErB,eAAe,EAAE,UAAU;QCkEtB,UAAU,EAAE,MAAM;QAClB,OAAO,EAAE,MAAM,GAEtB;;AAIJ,AAAD,4BAAY,CAAC;EACT,SAAS,EAAE,KAAK,GAMnB;EDxED,MAAM,EAAE,SAAS,EAAE,MAAM;ICiExB,AAAD,4BAAY,CAAC;MAIL,SAAS,EAAE,SAAS,GAG3B;;AAEA,AAAD,4BAAY,CAAC;EACT,cAAc,EAAE,IAAI;EACpB,OAAO,EAAE,8BAA8B;EACvC,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,OAAO;EAClB,KAAK,EAAE,OAAO;EACd,UAAU,EAAE,OAAO;EACnB,aAAa,EAAE,OAAO;EACtB,MAAM,EAAE,+CAA+C,CAAC,kDAAkD;EAC1G,SAAS,EAAE,wBAAwB,GACtC;;AAEA,AAAD,4BAAY,AAAA,MAAM,CAAC;EACf,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,OAAO,GAEjB;;AAEA,AAAD,6BAAa,CAAC;EACV,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,SAAS;EACrB,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI,GAEhB;;AAEA,AAAD,4BAAY,CAAC;EACT,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,eAAe,EAAE,MAAM;EACvB,MAAM,EAAE,IAAI,GAIf;EARA,AAKG,4BALQ,CAKR,GAAG,CAAC;IACA,WAAW,EAAE,MAAM,GACtB;;AAIT,AAAA,yBAAyB,CAAC,6BAA6B,CAAC;EACpD,cAAc,EAAE,MAAM;EACtB,SAAS,EAAE,OAAO;EAClB,UAAU,EAAE,KAAK;EACjB,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,iBAAiB,CAAC,YAAY,CAAC;EAC3B,SAAS,EAAE,KAAK,GACnB;;AAED,AAAA,iBAAiB,CAAC,YAAY,CAAC;EAC3B,MAAM,EAAE,UAAU,GACrB;;AAGD,AAAA,4BAA4B,CAAC;EACzB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,MAAM;EACtB,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EAEnB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,SAAS,GAOjB;EDlJG,MAAM,EAAE,SAAS,EAAE,MAAM;ICmI7B,AAAA,4BAA4B,CAAC;MAWrB,GAAG,EAAE,SAAS;MACd,aAAa,EAAE,MAAM,GAG5B;;AAED,AAAA,eAAe,CAAC;EACZ,UAAU,EAAE,CAAC;EACb,IAAI,EAAE,GAAG,CAAC,MAAM,CD9JT,eAAe,EAAE,UAAU;EC+JlC,KAAK,ED5JM,OAAO;EC6JlB,aAAa,EAAE,MAAM,GAMtB;ED9JC,MAAM,EAAE,SAAS,EAAE,MAAM;ICoJ7B,AAAA,eAAe,CAAC;MAMV,IAAI,EAAE,GAAG,CAAC,MAAM,CDlKX,eAAe,EAAE,UAAU;MCmKhC,MAAM,EAAE,MAAM,GAGjB;;AAEH,AAAA,qBAAqB,CAAC;EAClB,UAAU,EAAE,OAAO;EACnB,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,CAAC;EACb,IAAI,EAAE,GAAG,CAAC,IAAI,CD5KP,eAAe,EAAE,UAAU;EC6KlC,KAAK,ED1KM,OAAO,GCqLnB;EDhLC,MAAM,EAAE,SAAS,EAAE,MAAM;ICgK7B,AAAA,qBAAqB,CAAC;MAQhB,IAAI,EAAE,GAAG,CAAC,IAAI,CDhLT,eAAe,EAAE,UAAU;MCiLhC,aAAa,EAAE,CAAC;MAChB,SAAS,EAAE,OAAO,GAMrB;;ACvKH,AAAA,WAAW,CAAC;EACR,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM,GAiF1B;EA/EI,AAAD,sBAAY,CAAC;IACT,OAAO,EAAE,eAAe;IACxB,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,aAAa;IAC9B,KAAK,EAAE,MAAM;IACb,MAAM,EAAE,KAAK;IACb,gBAAgB,EAAE,iCAAiC;IACnD,aAAa,EAAE,IAAI;IACnB,iBAAiB,EAAE,SAAS;IAC5B,eAAe,EAAE,KAAK,GAUzB;IAnCC,MAAM,EAAE,SAAS,EAAE,MAAM;MAgB1B,AAAD,sBAAY,CAAC;QAYL,OAAO,EAAE,aAAa;QACtB,WAAW,EAAE,MAAM;QACnB,MAAM,EAAE,KAAK;QACb,cAAc,EAAE,cAAc;QAC9B,MAAM,EAAE,WAAW;QACnB,aAAa,EAAE,CAAC,GAEvB;EAEA,AAAD,mBAAS,CAAA;IACL,WAAW,EAAE,IAAI;IACjB,SAAS,EAAE,KAAK,GA2CnB;IAzCG,MAAM,EAAE,SAAS,EAAE,MAAM;MAJ5B,AAAD,mBAAS,CAAA;QAKD,WAAW,EAAE,IAAI,GAwCxB;IAlFC,MAAM,EAAE,SAAS,EAAE,MAAM;MAqC1B,AAAD,mBAAS,CAAA;QASD,WAAW,EAAE,IAAI;QACjB,OAAO,EAAE,IAAI;QACb,cAAc,EAAE,MAAM;QACtB,UAAU,EAAE,MAAM,GAiCzB;IA7CA,AAeG,mBAfK,CAeL,GAAG,CAAC;MACA,KAAK,EAAE,IAAI,GACd;IAjBJ,AAmBG,mBAnBK,CAmBL,EAAE,CAAC;MACC,MAAM,EAAE,CAAC;MACT,KAAK,EA9DT,IAAI;MA+DA,IAAI,EAAE,GAAG,CAAC,IAAI,CAjEf,eAAe,EAC1B,UAAU,GAsED;MAjEH,MAAM,EAAE,SAAS,EAAE,MAAM;QAqC1B,AAmBG,mBAnBK,CAmBL,EAAE,CAAC;UAMK,IAAI,EAAE,GAAG,CAAC,IAAI,CApEnB,eAAe,EAC1B,UAAU,GAsED;IA5BJ,AA6BG,mBA7BK,CA6BL,EAAE,CAAC;MACC,KAAK,EAvET,IAAI;MAwEA,IAAI,EAAE,GAAG,CAAC,OAAO,CA1ElB,eAAe,EAC1B,UAAU,GA8ED;MAzEH,MAAM,EAAE,SAAS,EAAE,MAAM;QAqC1B,AA6BG,mBA7BK,CA6BL,EAAE,CAAC;UAKK,IAAI,EAAE,GAAG,CAAC,IAAI,CA7EnB,eAAe,EAC1B,UAAU,GA8ED;IApCJ,AAqCG,mBArCK,CAqCL,EAAE,CAAC;MACC,KAAK,EA/ET,IAAI;MAgFA,IAAI,EAAE,GAAG,CAAC,IAAI,CAlFf,eAAe,EAC1B,UAAU,GAsFD;MAjFH,MAAM,EAAE,SAAS,EAAE,MAAM;QAqC1B,AAqCG,mBArCK,CAqCL,EAAE,CAAC;UAKK,IAAI,EAAE,GAAG,CAAC,IAAI,CArFnB,eAAe,EAC1B,UAAU,GAsFD;EAGJ,AAAD,kBAAQ,CAAC;IACL,WAAW,EAAE,IAAI,GASpB;IAVA,AAEG,kBAFI,CAEJ,GAAG,CAAC;MACA,MAAM,EAAE,KAAK,GAMhB;MA7FH,MAAM,EAAE,SAAS,EAAE,MAAM;QAoF1B,AAEG,kBAFI,CAEJ,GAAG,CAAC;UAII,MAAM,EAAE,KAAK,GAGpB;;ACpGT,AAAA,8BAA8B,CAAC;EAC3B,QAAQ,EAAE,QAAQ,CAAA,UAAU;EAC5B,GAAG,EAAE,IAAI;EACT,KAAK,EAAE,KAAK,GAqBf;EAnBG,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,MAAM,OAAO,SAAS,EAAE,MAAM;IALrE,AAAA,8BAA8B,CAAC;MAMvB,KAAK,EAAE,KAAK,GAkBnB;EAhBG,MAAM,EAAE,SAAS,EAAE,MAAM;IAR7B,AAAA,8BAA8B,CAAC;MASvB,GAAG,EAAE,GAAG;MACR,KAAK,EAAE,KAAK,GAcnB;EAXG,MAAM,EAAE,SAAS,EAAE,MAAM;IAb7B,AAAA,8BAA8B,CAAC;MAcvB,KAAK,EAAE,GAAG,GAUjB;EAPG,MAAM,EAAE,SAAS,EAAE,MAAM;IAjB7B,AAAA,8BAA8B,CAAC;MAkBvB,KAAK,EAAE,GAAG,GAMjB;EAHG,MAAM,EAAE,SAAS,EAAE,MAAM;IArB7B,AAAA,8BAA8B,CAAC;MAsBvB,KAAK,EAAE,GAAG,GAEjB;;AAED,AAAA,wBAAwB,CAAC;EACrB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,OAAO,EAAE,IAAI,GAQhB;EALG,MAAM,EAAE,SAAS,EAAE,MAAM;IAN7B,AAAA,wBAAwB,CAAC;MAOjB,QAAQ,EAAE,QAAQ;MAClB,GAAG,EAAE,CAAC;MACN,OAAO,EAAE,KAAK,GAErB;;AAGD,AAAA,gBAAgB,CAAC;EACb,MAAM,EAAE,eAAe,GAC1B;;AAGD,AAAA,cAAc,CAAC;EACX,WAAW,EAAE,eAAe;EAC5B,OAAO,EAAE,eAAe;EACxB,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,gBAAgB;EACvB,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,eAAe;EAC3B,aAAa,EAAE,GAAG,GAMrB;EAJG,MAAM,EAAE,SAAS,EAAE,MAAM;IAV7B,AAAA,cAAc,CAAC;MAWP,UAAU,EAAE,eAAe;MAC3B,YAAY,EAAE,IAAI,CAAA,UAAU,GAEnC;;AAED,AAAA,cAAc,AAAA,QAAQ,CAAC;EACnB,OAAO,EAAE,GAAG;EACZ,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,IAAI;EACV,GAAG,EAAE,GAAG;EACR,MAAM,EAAE,kBAAkB;EAC1B,SAAS,EAAE,aAAa,GAK3B;EAHG,MAAM,EAAE,SAAS,EAAE,MAAM;IAV7B,AAAA,cAAc,AAAA,QAAQ,CAAC;MAWf,IAAI,EAAE,KAAK,GAElB;;AAED,AAAA,UAAU,CAAC;EACP,OAAO,EAAE,eAAe,GAC3B;;AAED,AAAA,UAAU,CAAC;EACP,cAAc,EAAE,eAAe;EAC/B,OAAO,EAAE,uBAAuB;EAChC,KAAK,EAAE,gBAAgB,GAC1B;;AAED,AAAA,cAAc,CAAC;EACX,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI,GACf;;AAED,AAAA,cAAc,CAAC;EACX,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,UAAU;EACtB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,eAAe;EAC1B,KAAK,EAAE,eAAe;EACtB,YAAY,EAAE,GAAG,GAEpB;;AAED,AAAA,YAAY,CAAC;EACT,cAAc,EAAE,SAAS;EACzB,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI,GAClB;;AAED,AAAA,wBAAwB,CAAC;EACrB,OAAO,EAAE,eAAe;EACxB,WAAW,EAAE,MAAM;EACnB,SAAS,EAAE,IAAI,GAClB;;AACD,AAAA,yBAAyB,CAAC;EACtB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI,GACf;;AAED,AAAA,YAAY,CAAC;EACT,eAAe,EAAE,KAAK;EACtB,gBAAgB,EAAE,8BAA8B,GACnD;;AAED,AAAA,YAAY,CAAC;EACT,eAAe,EAAE,KAAK;EACtB,gBAAgB,EAAE,gCAAgC,GACrD;;AAED,AAAA,YAAY,CAAC;EACT,eAAe,EAAE,KAAK;EACtB,gBAAgB,EAAE,4BAA4B,GACjD;;AAED,AAAA,YAAY,CAAC;EACT,eAAe,EAAE,KAAK;EACtB,gBAAgB,EAAE,+BAA+B,GACpD;;AlBtHD,AAAA,CAAC,CAAC;EACE,UAAU,EAAE,UAAU,GACzB;;AAGD,AAAA,IAAI;AACJ,IAAI,CAAC;EACD,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,GAAG;EACX,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,GAAG,GACjB;;AAED,AAAA,cAAc,CAAC,OAAO,CAAC;EACnB,gBAAgB,EAAE,KAAK,GAC1B;;AAED,AAAA,cAAc,CAAC,WAAW,CAAC;EACvB,gBAAgB,EAAE,MAAM,GAC3B;;AAED,AAAA,cAAc,CAAC,QAAQ,CAAC;EACpB,gBAAgB,EAAE,GAAG,GACxB;;AAED,AAAA,cAAc,CAAC,IAAI,CAAC;EAChB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,aAAa,EAAE,IAAI,GACtB;;AAED,AAAA,WAAW,EAAE,YAAY,EAAE,cAAc,CAAC;EACtC,YAAY,EAAE,GAAG;EACjB,UAAU,EAAE,KAAK,GACpB;;AACD,AAAA,iBAAiB,CAAC;EACd,OAAO,EAAE,GAAG,GACf;;AAED,AAAA,WAAW,CAAC;EACR,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI,GACd;;AAED,AAAA,YAAY,CAAC;EACT,MAAM,EAAE,GAAG,GACd;;AAED,AAAA,UAAU,CAAC;EACP,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,MAAM;EACnB,MAAM,EAAE,kBAAkB,GAC7B;;AAED,MAAM,MAAM,MAAM,MAAM,UAAU,EAAE,KAAK;EACrC,AAAA,YAAY,CAAC;IACT,MAAM,EAAE,GAAG,GACd;;AAGL,AAAA,OAAO,EAAE,iBAAiB,CAAC;EACvB,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG,GACZ;;AAED,AAAA,WAAW,CAAC;EACR,QAAQ,EAAE,KAAK;EACf,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,KAAK;EAClB,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,YAAY,AAAA,OAAO,CAAC;EAChB,OAAO,EAAE,GAAG,GACf;;AAED,AAAA,OAAO,CAAC,MAAM;AACd,OAAO,CAAC,MAAM,CAAC;EACX,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,GAAG,GACjB;;AAED,AAAA,OAAO,CAAC;EACJ,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EC9GP,OAAO;ED+GhB,UAAU,EAAE,GAAG,CAAC,KAAK,CC9GP,OAAO;ED+GrB,aAAa,EAAE,GAAG,CAAC,KAAK,CC9Gb,OAAO;ED+GlB,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,MAAM;EACf,OAAO,EAAE,CAAC,GACb;;AAED,AAAA,OAAO,CAAC;EACJ,gBAAgB,ECjHC,OAAO;EDkHxB,KAAK,EAAE,IAAI;EACX,KAAK,EiBxHD,IAAI;EjByHR,WAAW,EAAE,CAAC;EACd,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,KAAK;EACjB,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,KAAK,GAIjB;EAHG,MAAM,EAAE,SAAS,EAAE,MAAM;IAT7B,AAAA,OAAO,CAAC;MAUA,UAAU,EAAE,eAAe,GAElC;;AAED,AAEQ,aAFK,AAAA,SAAS,GACjB,EAAE,GACE,EAAE,EAFa,qBAAqB,AAAA,SAAS,GACjD,EAAE,GACE,EAAE,CAAC;EACA,KAAK,EAAE,KAAK,GACf;;AAIT,AAAA,YAAY,CAAC;EACT,KAAK,EAAE,IAAI,GACd;;AAED,AAAA,aAAa,CAAC;EACV,KAAK,EAAE,KAAK,GACf;;AAED,AAAA,iBAAiB,CAAC;EACd,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,MAAM,CAAC;EACH,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,OAAO,GAClB;;AAED,AAAA,QAAQ,CAAC;EACL,SAAS,EAAE,IAAI,GAClB;;AAED,AAAA,aAAa,CAAC;EACV,YAAY,EAAE,GAAG,GACpB;;AAED,AAAA,YAAY,CAAC;EACT,KAAK,EiBrKD,IAAI,CjBqKM,UAAU;EACxB,eAAe,EAAE,eAAe;EAChC,UAAU,ECrKF,OAAO,CDqKQ,UAAU;EACjC,YAAY,ECtKJ,OAAO,CDsKU,UAAU,GACtC;;AAED,AAAA,YAAY,AAAA,OAAO;AACnB,YAAY,AAAA,MAAM,CAAC;EACf,KAAK,EiB7KD,IAAI,CjB6KM,UAAU;EACxB,eAAe,EAAE,eAAe;EAChC,gBAAgB,EC3KD,OAAO,CD2Kc,UAAU;EAC9C,YAAY,EC5KG,OAAO,CD4KU,UAAU,GAC7C;;AAED,AAAA,QAAQ,CAAC;EACL,QAAQ,EAAE,KAAK;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,OAAO,EAAE,IAAI;EACb,GAAG,EAAE,GAAG;EACR,OAAO,EAAE,GAAG;EACZ,IAAI,EAAE,GAAG;EACT,UAAU,EAAE,KAAK,GACpB;;AAED,AAAA,WAAW,EAAE,kBAAkB,CAAC;EAC5B,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,UAAU,CAAC;EACP,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,KAAK,GACf;;AAED,AAAA,gBAAgB,CAAC;EACb,GAAG,EAAE,IAAI,GACZ;;AACD,AAAA,iBAAiB,CAAC,EAAE,CAAC;EACjB,MAAM,EAAE,OAAO;EACf,WAAW,EAAE,CAAC,GACjB;;AACD,AAAA,UAAU,CAAC;EACP,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,iBAAiB;EACzB,KAAK,EAAE,IAAI;EACX,IAAI,EAAE,GAAG;EACT,UAAU,EAAE,IAAI,GACnB;;AAED,AAAA,aAAa,CAAC;EACV,OAAO,EAAE,IAAI,GAChB;;AAED,AAAA,sBAAsB,CAAC;EACnB,OAAO,EAAE,cAAc,GAC1B;;AAED,AAAA,KAAK,CAAC;EACF,aAAa,EAAE,GAAG,GACrB;;AAED,AAAA,QAAQ,CAAC;EACL,gBAAgB,EAAE,eAAe,GACpC;;AAED,AAAA,SAAS,CAAC,OAAO,CAAC;EACd,OAAO,EAAE,gBAAgB,GAC5B;;AAED,AAAA,gBAAgB,CAAC;EACb,OAAO,EAAE,cAAc,GAC1B"} \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/css/bundle-bfd9aa3ef3.css b/src/root_files/_common/binary-to-deriv/css/bundle-bfd9aa3ef3.css new file mode 100644 index 0000000000000..a22a3ca365b59 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/bundle-bfd9aa3ef3.css @@ -0,0 +1,10176 @@ +@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,400,500,700&display=swap&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese); +/*! jQuery UI - v1.11.4 - 2017-02-07 +* http://jqueryui.com +* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px +* Copyright jQuery Foundation and other contributors; Licensed MIT */ + +.ui-helper-hidden { + display: none; +} + +.ui-helper-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.ui-helper-reset { + margin: 0; + padding: 0; + border: 0; + outline: 0; + line-height: 1.3; + text-decoration: none; + font-size: 100%; + list-style: none; +} + +.ui-helper-clearfix:before, +.ui-helper-clearfix:after { + content: ""; + display: table; + border-collapse: collapse; +} + +.ui-helper-clearfix:after { + clear: both; +} + +.ui-helper-clearfix { + min-height: 0; +} + +.ui-helper-zfix { + width: 100%; + height: 100%; + top: 0; + left: 0; + position: absolute; + opacity: 0; + filter: Alpha(Opacity=0); +} + +.ui-front { + z-index: 100; +} + +.ui-state-disabled { + cursor: default!important; +} + +.ui-icon { + display: block; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; +} + +.ui-widget-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.ui-draggable-handle { + -ms-touch-action: none; + touch-action: none; +} + +.ui-resizable { + position: relative; +} + +.ui-resizable-handle { + position: absolute; + font-size: 0.1px; + display: block; + -ms-touch-action: none; + touch-action: none; +} + +.ui-resizable-disabled .ui-resizable-handle, +.ui-resizable-autohide .ui-resizable-handle { + display: none; +} + +.ui-resizable-n { + cursor: n-resize; + height: 7px; + width: 100%; + top: -5px; + left: 0; +} + +.ui-resizable-s { + cursor: s-resize; + height: 7px; + width: 100%; + bottom: -5px; + left: 0; +} + +.ui-resizable-e { + cursor: e-resize; + width: 7px; + right: -5px; + top: 0; + height: 100%; +} + +.ui-resizable-w { + cursor: w-resize; + width: 7px; + left: -5px; + top: 0; + height: 100%; +} + +.ui-resizable-se { + cursor: se-resize; + width: 12px; + height: 12px; + right: 1px; + bottom: 1px; +} + +.ui-resizable-sw { + cursor: sw-resize; + width: 9px; + height: 9px; + left: -5px; + bottom: -5px; +} + +.ui-resizable-nw { + cursor: nw-resize; + width: 9px; + height: 9px; + left: -5px; + top: -5px; +} + +.ui-resizable-ne { + cursor: ne-resize; + width: 9px; + height: 9px; + right: -5px; + top: -5px; +} + +.ui-selectable { + -ms-touch-action: none; + touch-action: none; +} + +.ui-selectable-helper { + position: absolute; + z-index: 100; + border: 1px dotted black; +} + +.ui-sortable-handle { + -ms-touch-action: none; + touch-action: none; +} + +.ui-accordion .ui-accordion-header { + display: block; + cursor: pointer; + position: relative; + margin: 2px 0 0 0; + padding: .5em .5em .5em .7em; + min-height: 0; + font-size: 100%; +} + +.ui-accordion .ui-accordion-icons { + padding-left: 2.2em; +} + +.ui-accordion .ui-accordion-icons .ui-accordion-icons { + padding-left: 2.2em; +} + +.ui-accordion .ui-accordion-header .ui-accordion-header-icon { + position: absolute; + left: .5em; + top: 50%; + margin-top: -8px; +} + +.ui-accordion .ui-accordion-content { + padding: 1em 2.2em; + border-top: 0; + overflow: auto; +} + +.ui-autocomplete { + position: absolute; + top: 0; + left: 0; + cursor: default; +} + +.ui-button { + display: inline-block; + position: relative; + padding: 0; + line-height: normal; + margin-right: .1em; + cursor: pointer; + vertical-align: middle; + text-align: center; + overflow: visible; +} + +.ui-button, +.ui-button:link, +.ui-button:visited, +.ui-button:hover, +.ui-button:active { + text-decoration: none; +} + +.ui-button-icon-only { + width: 2.2em; +} + +button.ui-button-icon-only { + width: 2.4em; +} + +.ui-button-icons-only { + width: 3.4em; +} + +button.ui-button-icons-only { + width: 3.7em; +} + +.ui-button .ui-button-text { + display: block; + line-height: normal; +} + +.ui-button-text-only .ui-button-text { + padding: .4em 1em; +} + +.ui-button-icon-only .ui-button-text, +.ui-button-icons-only .ui-button-text { + padding: .4em; + text-indent: -9999999px; +} + +.ui-button-text-icon-primary .ui-button-text, +.ui-button-text-icons .ui-button-text { + padding: .4em 1em .4em 2.1em; +} + +.ui-button-text-icon-secondary .ui-button-text, +.ui-button-text-icons .ui-button-text { + padding: .4em 2.1em .4em 1em; +} + +.ui-button-text-icons .ui-button-text { + padding-left: 2.1em; + padding-right: 2.1em; +} + +input.ui-button { + padding: .4em 1em; +} + +.ui-button-icon-only .ui-icon, +.ui-button-text-icon-primary .ui-icon, +.ui-button-text-icon-secondary .ui-icon, +.ui-button-text-icons .ui-icon, +.ui-button-icons-only .ui-icon { + position: absolute; + top: 50%; + margin-top: -8px; +} + +.ui-button-icon-only .ui-icon { + left: 50%; + margin-left: -8px; +} + +.ui-button-text-icon-primary .ui-button-icon-primary, +.ui-button-text-icons .ui-button-icon-primary, +.ui-button-icons-only .ui-button-icon-primary { + left: .5em; +} + +.ui-button-text-icon-secondary .ui-button-icon-secondary, +.ui-button-text-icons .ui-button-icon-secondary, +.ui-button-icons-only .ui-button-icon-secondary { + right: .5em; +} + +.ui-buttonset { + margin-right: 7px; +} + +.ui-buttonset .ui-button { + margin-left: 0; + margin-right: -.3em; +} + +input.ui-button::-moz-focus-inner, +button.ui-button::-moz-focus-inner { + border: 0; + padding: 0; +} + +.ui-datepicker { + width: 17em; + padding: .2em .2em 0; + display: none; +} + +.ui-datepicker .ui-datepicker-header { + position: relative; + padding: .2em 0; +} + +.ui-datepicker .ui-datepicker-prev, +.ui-datepicker .ui-datepicker-next { + position: absolute; + top: 2px; + width: 1.8em; + height: 1.8em; +} + +.ui-datepicker .ui-datepicker-prev-hover, +.ui-datepicker .ui-datepicker-next-hover { + top: 1px; +} + +.ui-datepicker .ui-datepicker-prev { + left: 2px; +} + +.ui-datepicker .ui-datepicker-next { + right: 2px; +} + +.ui-datepicker .ui-datepicker-prev-hover { + left: 1px; +} + +.ui-datepicker .ui-datepicker-next-hover { + right: 1px; +} + +.ui-datepicker .ui-datepicker-prev span, +.ui-datepicker .ui-datepicker-next span { + display: block; + position: absolute; + left: 50%; + margin-left: -8px; + top: 50%; + margin-top: -8px; +} + +.ui-datepicker .ui-datepicker-title { + margin: 0 2.3em; + line-height: 1.8em; + text-align: center; +} + +.ui-datepicker .ui-datepicker-title select { + font-size: 1em; + margin: 1px 0; +} + +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { + width: 45%; +} + +.ui-datepicker table { + width: 100%; + font-size: .9em; + border-collapse: collapse; + margin: 0 0 .4em; +} + +.ui-datepicker th { + padding: .7em .3em; + text-align: center; + font-weight: bold; + border: 0; +} + +.ui-datepicker td { + border: 0; + padding: 1px; +} + +.ui-datepicker td span, +.ui-datepicker td a { + display: block; + padding: .2em; + text-align: right; + text-decoration: none; +} + +.ui-datepicker .ui-datepicker-buttonpane { + background-image: none; + margin: .7em 0 0 0; + padding: 0 .2em; + border-left: 0; + border-right: 0; + border-bottom: 0; +} + +.ui-datepicker .ui-datepicker-buttonpane button { + float: right; + margin: .5em .2em .4em; + cursor: pointer; + padding: .2em .6em .3em .6em; + width: auto; + overflow: visible; +} + +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { + float: left; +} + +.ui-datepicker.ui-datepicker-multi { + width: auto; +} + +.ui-datepicker-multi .ui-datepicker-group { + float: left; +} + +.ui-datepicker-multi .ui-datepicker-group table { + width: 95%; + margin: 0 auto .4em; +} + +.ui-datepicker-multi-2 .ui-datepicker-group { + width: 50%; +} + +.ui-datepicker-multi-3 .ui-datepicker-group { + width: 33.3%; +} + +.ui-datepicker-multi-4 .ui-datepicker-group { + width: 25%; +} + +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { + border-left-width: 0; +} + +.ui-datepicker-multi .ui-datepicker-buttonpane { + clear: left; +} + +.ui-datepicker-row-break { + clear: both; + width: 100%; + font-size: 0; +} + +.ui-datepicker-rtl { + direction: rtl; +} + +.ui-datepicker-rtl .ui-datepicker-prev { + right: 2px; + left: auto; +} + +.ui-datepicker-rtl .ui-datepicker-next { + left: 2px; + right: auto; +} + +.ui-datepicker-rtl .ui-datepicker-prev:hover { + right: 1px; + left: auto; +} + +.ui-datepicker-rtl .ui-datepicker-next:hover { + left: 1px; + right: auto; +} + +.ui-datepicker-rtl .ui-datepicker-buttonpane { + clear: right; +} + +.ui-datepicker-rtl .ui-datepicker-buttonpane button { + float: left; +} + +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, +.ui-datepicker-rtl .ui-datepicker-group { + float: right; +} + +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { + border-right-width: 0; + border-left-width: 1px; +} + +.ui-dialog { + overflow: hidden; + position: absolute; + top: 0; + left: 0; + padding: .2em; + outline: 0; +} + +.ui-dialog .ui-dialog-titlebar { + padding: .4em 1em; + position: relative; +} + +.ui-dialog .ui-dialog-title { + float: left; + margin: .1em 0; + white-space: nowrap; + width: 90%; + overflow: hidden; + text-overflow: ellipsis; +} + +.ui-dialog .ui-dialog-titlebar-close { + position: absolute; + right: .3em; + top: 50%; + width: 20px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; +} + +.ui-dialog .ui-dialog-content { + position: relative; + border: 0; + padding: .5em 1em; + background: none; + overflow: auto; +} + +.ui-dialog .ui-dialog-buttonpane { + text-align: left; + border-width: 1px 0 0 0; + background-image: none; + margin-top: .5em; + padding: .3em 1em .5em .4em; +} + +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; +} + +.ui-dialog .ui-dialog-buttonpane button { + margin: .5em .4em .5em 0; + cursor: pointer; +} + +.ui-dialog .ui-resizable-se { + width: 12px; + height: 12px; + right: -5px; + bottom: -5px; + background-position: 16px 16px; +} + +.ui-draggable .ui-dialog-titlebar { + cursor: move; +} + +.ui-menu { + list-style: none; + padding: 0; + margin: 0; + display: block; + outline: none; +} + +.ui-menu .ui-menu { + position: absolute; +} + +.ui-menu .ui-menu-item { + position: relative; + margin: 0; + padding: 3px 1em 3px .4em; + cursor: pointer; + min-height: 0; + list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); +} + +.ui-menu .ui-menu-divider { + margin: 5px 0; + height: 0; + font-size: 0; + line-height: 0; + border-width: 1px 0 0 0; +} + +.ui-menu .ui-state-focus, +.ui-menu .ui-state-active { + margin: -1px; +} + +.ui-menu-icons { + position: relative; +} + +.ui-menu-icons .ui-menu-item { + padding-left: 2em; +} + +.ui-menu .ui-icon { + position: absolute; + top: 0; + bottom: 0; + left: .2em; + margin: auto 0; +} + +.ui-menu .ui-menu-icon { + left: auto; + right: 0; +} + +.ui-progressbar { + height: 2em; + text-align: left; + overflow: hidden; +} + +.ui-progressbar .ui-progressbar-value { + margin: -1px; + height: 100%; +} + +.ui-progressbar .ui-progressbar-overlay { + background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); + height: 100%; + filter: alpha(opacity=25); + opacity: 0.25; +} + +.ui-progressbar-indeterminate .ui-progressbar-value { + background-image: none; +} + +.ui-selectmenu-menu { + padding: 0; + margin: 0; + position: absolute; + top: 0; + left: 0; + display: none; +} + +.ui-selectmenu-menu .ui-menu { + overflow: auto; + overflow-x: hidden; + padding-bottom: 1px; +} + +.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { + font-size: 1em; + font-weight: bold; + line-height: 1.5; + padding: 2px 0.4em; + margin: 0.5em 0 0 0; + height: auto; + border: 0; +} + +.ui-selectmenu-open { + display: block; +} + +.ui-selectmenu-button { + display: inline-block; + overflow: hidden; + position: relative; + text-decoration: none; + cursor: pointer; +} + +.ui-selectmenu-button span.ui-icon { + right: 0.5em; + left: auto; + margin-top: -8px; + position: absolute; + top: 50%; +} + +.ui-selectmenu-button span.ui-selectmenu-text { + text-align: left; + padding: 0.4em 2.1em 0.4em 1em; + display: block; + line-height: 1.4; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.ui-slider { + position: relative; + text-align: left; +} + +.ui-slider .ui-slider-handle { + position: absolute; + z-index: 2; + width: 1.2em; + height: 1.2em; + cursor: default; + -ms-touch-action: none; + touch-action: none; +} + +.ui-slider .ui-slider-range { + position: absolute; + z-index: 1; + font-size: .7em; + display: block; + border: 0; + background-position: 0 0; +} + +.ui-slider.ui-state-disabled .ui-slider-handle, +.ui-slider.ui-state-disabled .ui-slider-range { + filter: inherit; +} + +.ui-slider-horizontal { + height: .8em; +} + +.ui-slider-horizontal .ui-slider-handle { + top: -.3em; + margin-left: -.6em; +} + +.ui-slider-horizontal .ui-slider-range { + top: 0; + height: 100%; +} + +.ui-slider-horizontal .ui-slider-range-min { + left: 0; +} + +.ui-slider-horizontal .ui-slider-range-max { + right: 0; +} + +.ui-slider-vertical { + width: .8em; + height: 100px; +} + +.ui-slider-vertical .ui-slider-handle { + left: -.3em; + margin-left: 0; + margin-bottom: -.6em; +} + +.ui-slider-vertical .ui-slider-range { + left: 0; + width: 100%; +} + +.ui-slider-vertical .ui-slider-range-min { + bottom: 0; +} + +.ui-slider-vertical .ui-slider-range-max { + top: 0; +} + +.ui-spinner { + position: relative; + display: inline-block; + overflow: hidden; + padding: 0; + vertical-align: middle; +} + +.ui-spinner-input { + border: none; + background: none; + color: inherit; + padding: 0; + margin: .2em 0; + vertical-align: middle; + margin-left: .4em; + margin-right: 22px; +} + +.ui-spinner-button { + width: 16px; + height: 50%; + font-size: .5em; + padding: 0; + margin: 0; + text-align: center; + position: absolute; + cursor: default; + display: block; + overflow: hidden; + right: 0; +} + +.ui-spinner a.ui-spinner-button { + border-top: none; + border-bottom: none; + border-right: none; +} + +.ui-spinner .ui-icon { + position: absolute; + margin-top: -8px; + top: 50%; + left: 0; +} + +.ui-spinner-up { + top: 0; +} + +.ui-spinner-down { + bottom: 0; +} + +.ui-spinner .ui-icon-triangle-1-s { + background-position: -65px -16px; +} + +.ui-tabs { + position: relative; + padding: .2em; +} + +.ui-tabs .ui-tabs-nav { + margin: 0; + padding: .2em .2em 0; +} + +.ui-tabs .ui-tabs-nav li { + list-style: none; + float: left; + position: relative; + top: 0; + margin: 1px .2em 0 0; + border-bottom-width: 0; + padding: 0; + white-space: nowrap; +} + +.ui-tabs .ui-tabs-nav .ui-tabs-anchor { + float: left; + padding: .5em 1em; + text-decoration: none; +} + +.ui-tabs .ui-tabs-nav li.ui-tabs-active { + margin-bottom: -1px; + padding-bottom: 1px; +} + +.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, +.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, +.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { + cursor: text; +} + +.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { + cursor: pointer; +} + +.ui-tabs .ui-tabs-panel { + display: block; + border-width: 0; + padding: 1em 1.4em; + background: none; +} + +.ui-tooltip { + padding: 8px; + position: absolute; + z-index: 9999; + max-width: 300px; + -webkit-box-shadow: 0 0 5px #aaa; + box-shadow: 0 0 5px #aaa; +} + +body .ui-tooltip { + border-width: 2px; +} + +.ui-widget { + font-family: Arial,Helvetica,sans-serif; + font-size: 1em; +} + +.ui-widget .ui-widget { + font-size: 1em; +} + +.ui-widget input, +.ui-widget select, +.ui-widget textarea, +.ui-widget button { + font-family: Arial,Helvetica,sans-serif; + font-size: 1em; +} + +.ui-widget-content { + border: 1px solid #ddd; + background: #fff; + color: #333; +} + +.ui-widget-content a { + color: #333; +} + +.ui-widget-header { + border: 1px solid #ddd; + background: #e9e9e9; + color: #333; + font-weight: bold; +} + +.ui-widget-header a { + color: #333; +} + +.ui-state-default, +.ui-widget-content .ui-state-default, +.ui-widget-header .ui-state-default { + border: 1px solid #c5c5c5; + background: #f6f6f6; + font-weight: normal; + color: #454545; +} + +.ui-state-default a, +.ui-state-default a:link, +.ui-state-default a:visited { + color: #454545; + text-decoration: none; +} + +.ui-state-hover, +.ui-widget-content .ui-state-hover, +.ui-widget-header .ui-state-hover, +.ui-state-focus, +.ui-widget-content .ui-state-focus, +.ui-widget-header .ui-state-focus { + border: 1px solid #ccc; + background: #ededed; + font-weight: normal; + color: #2b2b2b; +} + +.ui-state-hover a, +.ui-state-hover a:hover, +.ui-state-hover a:link, +.ui-state-hover a:visited, +.ui-state-focus a, +.ui-state-focus a:hover, +.ui-state-focus a:link, +.ui-state-focus a:visited { + color: #2b2b2b; + text-decoration: none; +} + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active { + border: 1px solid #003eff; + background: #007fff; + font-weight: normal; + color: #fff; +} + +.ui-state-active a, +.ui-state-active a:link, +.ui-state-active a:visited { + color: #fff; + text-decoration: none; +} + +.ui-state-highlight, +.ui-widget-content .ui-state-highlight, +.ui-widget-header .ui-state-highlight { + border: 1px solid #dad55e; + background: #fffa90; + color: #777620; +} + +.ui-state-highlight a, +.ui-widget-content .ui-state-highlight a, +.ui-widget-header .ui-state-highlight a { + color: #777620; +} + +.ui-state-error, +.ui-widget-content .ui-state-error, +.ui-widget-header .ui-state-error { + border: 1px solid #f1a899; + background: #fddfdf; + color: #5f3f3f; +} + +.ui-state-error a, +.ui-widget-content .ui-state-error a, +.ui-widget-header .ui-state-error a { + color: #5f3f3f; +} + +.ui-state-error-text, +.ui-widget-content .ui-state-error-text, +.ui-widget-header .ui-state-error-text { + color: #5f3f3f; +} + +.ui-priority-primary, +.ui-widget-content .ui-priority-primary, +.ui-widget-header .ui-priority-primary { + font-weight: bold; +} + +.ui-priority-secondary, +.ui-widget-content .ui-priority-secondary, +.ui-widget-header .ui-priority-secondary { + opacity: .7; + filter: Alpha(Opacity=70); + font-weight: normal; +} + +.ui-state-disabled, +.ui-widget-content .ui-state-disabled, +.ui-widget-header .ui-state-disabled { + opacity: .35; + filter: Alpha(Opacity=35); + background-image: none; +} + +.ui-state-disabled .ui-icon { + filter: Alpha(Opacity=35); +} + +.ui-icon { + width: 16px; + height: 16px; +} + +.ui-icon, +.ui-widget-content .ui-icon { + background-image: url("images/ui-icons_444444_256x240.png"); +} + +.ui-widget-header .ui-icon { + background-image: url("images/ui-icons_444444_256x240.png"); +} + +.ui-state-default .ui-icon { + background-image: url("images/ui-icons_777777_256x240.png"); +} + +.ui-state-hover .ui-icon, +.ui-state-focus .ui-icon { + background-image: url("images/ui-icons_555555_256x240.png"); +} + +.ui-state-active .ui-icon { + background-image: url("images/ui-icons_ffffff_256x240.png"); +} + +.ui-state-highlight .ui-icon { + background-image: url("images/ui-icons_777620_256x240.png"); +} + +.ui-state-error .ui-icon, +.ui-state-error-text .ui-icon { + background-image: url("images/ui-icons_cc0000_256x240.png"); +} + +.ui-icon-blank { + background-position: 16px 16px; +} + +.ui-icon-carat-1-n { + background-position: 0 0; +} + +.ui-icon-carat-1-ne { + background-position: -16px 0; +} + +.ui-icon-carat-1-e { + background-position: -32px 0; +} + +.ui-icon-carat-1-se { + background-position: -48px 0; +} + +.ui-icon-carat-1-s { + background-position: -64px 0; +} + +.ui-icon-carat-1-sw { + background-position: -80px 0; +} + +.ui-icon-carat-1-w { + background-position: -96px 0; +} + +.ui-icon-carat-1-nw { + background-position: -112px 0; +} + +.ui-icon-carat-2-n-s { + background-position: -128px 0; +} + +.ui-icon-carat-2-e-w { + background-position: -144px 0; +} + +.ui-icon-triangle-1-n { + background-position: 0 -16px; +} + +.ui-icon-triangle-1-ne { + background-position: -16px -16px; +} + +.ui-icon-triangle-1-e { + background-position: -32px -16px; +} + +.ui-icon-triangle-1-se { + background-position: -48px -16px; +} + +.ui-icon-triangle-1-s { + background-position: -64px -16px; +} + +.ui-icon-triangle-1-sw { + background-position: -80px -16px; +} + +.ui-icon-triangle-1-w { + background-position: -96px -16px; +} + +.ui-icon-triangle-1-nw { + background-position: -112px -16px; +} + +.ui-icon-triangle-2-n-s { + background-position: -128px -16px; +} + +.ui-icon-triangle-2-e-w { + background-position: -144px -16px; +} + +.ui-icon-arrow-1-n { + background-position: 0 -32px; +} + +.ui-icon-arrow-1-ne { + background-position: -16px -32px; +} + +.ui-icon-arrow-1-e { + background-position: -32px -32px; +} + +.ui-icon-arrow-1-se { + background-position: -48px -32px; +} + +.ui-icon-arrow-1-s { + background-position: -64px -32px; +} + +.ui-icon-arrow-1-sw { + background-position: -80px -32px; +} + +.ui-icon-arrow-1-w { + background-position: -96px -32px; +} + +.ui-icon-arrow-1-nw { + background-position: -112px -32px; +} + +.ui-icon-arrow-2-n-s { + background-position: -128px -32px; +} + +.ui-icon-arrow-2-ne-sw { + background-position: -144px -32px; +} + +.ui-icon-arrow-2-e-w { + background-position: -160px -32px; +} + +.ui-icon-arrow-2-se-nw { + background-position: -176px -32px; +} + +.ui-icon-arrowstop-1-n { + background-position: -192px -32px; +} + +.ui-icon-arrowstop-1-e { + background-position: -208px -32px; +} + +.ui-icon-arrowstop-1-s { + background-position: -224px -32px; +} + +.ui-icon-arrowstop-1-w { + background-position: -240px -32px; +} + +.ui-icon-arrowthick-1-n { + background-position: 0 -48px; +} + +.ui-icon-arrowthick-1-ne { + background-position: -16px -48px; +} + +.ui-icon-arrowthick-1-e { + background-position: -32px -48px; +} + +.ui-icon-arrowthick-1-se { + background-position: -48px -48px; +} + +.ui-icon-arrowthick-1-s { + background-position: -64px -48px; +} + +.ui-icon-arrowthick-1-sw { + background-position: -80px -48px; +} + +.ui-icon-arrowthick-1-w { + background-position: -96px -48px; +} + +.ui-icon-arrowthick-1-nw { + background-position: -112px -48px; +} + +.ui-icon-arrowthick-2-n-s { + background-position: -128px -48px; +} + +.ui-icon-arrowthick-2-ne-sw { + background-position: -144px -48px; +} + +.ui-icon-arrowthick-2-e-w { + background-position: -160px -48px; +} + +.ui-icon-arrowthick-2-se-nw { + background-position: -176px -48px; +} + +.ui-icon-arrowthickstop-1-n { + background-position: -192px -48px; +} + +.ui-icon-arrowthickstop-1-e { + background-position: -208px -48px; +} + +.ui-icon-arrowthickstop-1-s { + background-position: -224px -48px; +} + +.ui-icon-arrowthickstop-1-w { + background-position: -240px -48px; +} + +.ui-icon-arrowreturnthick-1-w { + background-position: 0 -64px; +} + +.ui-icon-arrowreturnthick-1-n { + background-position: -16px -64px; +} + +.ui-icon-arrowreturnthick-1-e { + background-position: -32px -64px; +} + +.ui-icon-arrowreturnthick-1-s { + background-position: -48px -64px; +} + +.ui-icon-arrowreturn-1-w { + background-position: -64px -64px; +} + +.ui-icon-arrowreturn-1-n { + background-position: -80px -64px; +} + +.ui-icon-arrowreturn-1-e { + background-position: -96px -64px; +} + +.ui-icon-arrowreturn-1-s { + background-position: -112px -64px; +} + +.ui-icon-arrowrefresh-1-w { + background-position: -128px -64px; +} + +.ui-icon-arrowrefresh-1-n { + background-position: -144px -64px; +} + +.ui-icon-arrowrefresh-1-e { + background-position: -160px -64px; +} + +.ui-icon-arrowrefresh-1-s { + background-position: -176px -64px; +} + +.ui-icon-arrow-4 { + background-position: 0 -80px; +} + +.ui-icon-arrow-4-diag { + background-position: -16px -80px; +} + +.ui-icon-extlink { + background-position: -32px -80px; +} + +.ui-icon-newwin { + background-position: -48px -80px; +} + +.ui-icon-refresh { + background-position: -64px -80px; +} + +.ui-icon-shuffle { + background-position: -80px -80px; +} + +.ui-icon-transfer-e-w { + background-position: -96px -80px; +} + +.ui-icon-transferthick-e-w { + background-position: -112px -80px; +} + +.ui-icon-folder-collapsed { + background-position: 0 -96px; +} + +.ui-icon-folder-open { + background-position: -16px -96px; +} + +.ui-icon-document { + background-position: -32px -96px; +} + +.ui-icon-document-b { + background-position: -48px -96px; +} + +.ui-icon-note { + background-position: -64px -96px; +} + +.ui-icon-mail-closed { + background-position: -80px -96px; +} + +.ui-icon-mail-open { + background-position: -96px -96px; +} + +.ui-icon-suitcase { + background-position: -112px -96px; +} + +.ui-icon-comment { + background-position: -128px -96px; +} + +.ui-icon-person { + background-position: -144px -96px; +} + +.ui-icon-print { + background-position: -160px -96px; +} + +.ui-icon-trash { + background-position: -176px -96px; +} + +.ui-icon-locked { + background-position: -192px -96px; +} + +.ui-icon-unlocked { + background-position: -208px -96px; +} + +.ui-icon-bookmark { + background-position: -224px -96px; +} + +.ui-icon-tag { + background-position: -240px -96px; +} + +.ui-icon-home { + background-position: 0 -112px; +} + +.ui-icon-flag { + background-position: -16px -112px; +} + +.ui-icon-calendar { + background-position: -32px -112px; +} + +.ui-icon-cart { + background-position: -48px -112px; +} + +.ui-icon-pencil { + background-position: -64px -112px; +} + +.ui-icon-clock { + background-position: -80px -112px; +} + +.ui-icon-disk { + background-position: -96px -112px; +} + +.ui-icon-calculator { + background-position: -112px -112px; +} + +.ui-icon-zoomin { + background-position: -128px -112px; +} + +.ui-icon-zoomout { + background-position: -144px -112px; +} + +.ui-icon-search { + background-position: -160px -112px; +} + +.ui-icon-wrench { + background-position: -176px -112px; +} + +.ui-icon-gear { + background-position: -192px -112px; +} + +.ui-icon-heart { + background-position: -208px -112px; +} + +.ui-icon-star { + background-position: -224px -112px; +} + +.ui-icon-link { + background-position: -240px -112px; +} + +.ui-icon-cancel { + background-position: 0 -128px; +} + +.ui-icon-plus { + background-position: -16px -128px; +} + +.ui-icon-plusthick { + background-position: -32px -128px; +} + +.ui-icon-minus { + background-position: -48px -128px; +} + +.ui-icon-minusthick { + background-position: -64px -128px; +} + +.ui-icon-close { + background-position: -80px -128px; +} + +.ui-icon-closethick { + background-position: -96px -128px; +} + +.ui-icon-key { + background-position: -112px -128px; +} + +.ui-icon-lightbulb { + background-position: -128px -128px; +} + +.ui-icon-scissors { + background-position: -144px -128px; +} + +.ui-icon-clipboard { + background-position: -160px -128px; +} + +.ui-icon-copy { + background-position: -176px -128px; +} + +.ui-icon-contact { + background-position: -192px -128px; +} + +.ui-icon-image { + background-position: -208px -128px; +} + +.ui-icon-video { + background-position: -224px -128px; +} + +.ui-icon-script { + background-position: -240px -128px; +} + +.ui-icon-alert { + background-position: 0 -144px; +} + +.ui-icon-info { + background-position: -16px -144px; +} + +.ui-icon-notice { + background-position: -32px -144px; +} + +.ui-icon-help { + background-position: -48px -144px; +} + +.ui-icon-check { + background-position: -64px -144px; +} + +.ui-icon-bullet { + background-position: -80px -144px; +} + +.ui-icon-radio-on { + background-position: -96px -144px; +} + +.ui-icon-radio-off { + background-position: -112px -144px; +} + +.ui-icon-pin-w { + background-position: -128px -144px; +} + +.ui-icon-pin-s { + background-position: -144px -144px; +} + +.ui-icon-play { + background-position: 0 -160px; +} + +.ui-icon-pause { + background-position: -16px -160px; +} + +.ui-icon-seek-next { + background-position: -32px -160px; +} + +.ui-icon-seek-prev { + background-position: -48px -160px; +} + +.ui-icon-seek-end { + background-position: -64px -160px; +} + +.ui-icon-seek-start { + background-position: -80px -160px; +} + +.ui-icon-seek-first { + background-position: -80px -160px; +} + +.ui-icon-stop { + background-position: -96px -160px; +} + +.ui-icon-eject { + background-position: -112px -160px; +} + +.ui-icon-volume-off { + background-position: -128px -160px; +} + +.ui-icon-volume-on { + background-position: -144px -160px; +} + +.ui-icon-power { + background-position: 0 -176px; +} + +.ui-icon-signal-diag { + background-position: -16px -176px; +} + +.ui-icon-signal { + background-position: -32px -176px; +} + +.ui-icon-battery-0 { + background-position: -48px -176px; +} + +.ui-icon-battery-1 { + background-position: -64px -176px; +} + +.ui-icon-battery-2 { + background-position: -80px -176px; +} + +.ui-icon-battery-3 { + background-position: -96px -176px; +} + +.ui-icon-circle-plus { + background-position: 0 -192px; +} + +.ui-icon-circle-minus { + background-position: -16px -192px; +} + +.ui-icon-circle-close { + background-position: -32px -192px; +} + +.ui-icon-circle-triangle-e { + background-position: -48px -192px; +} + +.ui-icon-circle-triangle-s { + background-position: -64px -192px; +} + +.ui-icon-circle-triangle-w { + background-position: -80px -192px; +} + +.ui-icon-circle-triangle-n { + background-position: -96px -192px; +} + +.ui-icon-circle-arrow-e { + background-position: -112px -192px; +} + +.ui-icon-circle-arrow-s { + background-position: -128px -192px; +} + +.ui-icon-circle-arrow-w { + background-position: -144px -192px; +} + +.ui-icon-circle-arrow-n { + background-position: -160px -192px; +} + +.ui-icon-circle-zoomin { + background-position: -176px -192px; +} + +.ui-icon-circle-zoomout { + background-position: -192px -192px; +} + +.ui-icon-circle-check { + background-position: -208px -192px; +} + +.ui-icon-circlesmall-plus { + background-position: 0 -208px; +} + +.ui-icon-circlesmall-minus { + background-position: -16px -208px; +} + +.ui-icon-circlesmall-close { + background-position: -32px -208px; +} + +.ui-icon-squaresmall-plus { + background-position: -48px -208px; +} + +.ui-icon-squaresmall-minus { + background-position: -64px -208px; +} + +.ui-icon-squaresmall-close { + background-position: -80px -208px; +} + +.ui-icon-grip-dotted-vertical { + background-position: 0 -224px; +} + +.ui-icon-grip-dotted-horizontal { + background-position: -16px -224px; +} + +.ui-icon-grip-solid-vertical { + background-position: -32px -224px; +} + +.ui-icon-grip-solid-horizontal { + background-position: -48px -224px; +} + +.ui-icon-gripsmall-diagonal-se { + background-position: -64px -224px; +} + +.ui-icon-grip-diagonal-se { + background-position: -80px -224px; +} + +.ui-corner-all, +.ui-corner-top, +.ui-corner-left, +.ui-corner-tl { + border-top-left-radius: 3px; +} + +.ui-corner-all, +.ui-corner-top, +.ui-corner-right, +.ui-corner-tr { + border-top-right-radius: 3px; +} + +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-left, +.ui-corner-bl { + border-bottom-left-radius: 3px; +} + +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-right, +.ui-corner-br { + border-bottom-right-radius: 3px; +} + +.ui-widget-overlay { + background: #aaa; + opacity: .3; + filter: Alpha(Opacity=30); +} + +.ui-widget-shadow { + margin: 0 0 0 0; + padding: 5px; + background: #666; + opacity: .3; + filter: Alpha(Opacity=30); + border-radius: 8px; +} +.ic-icon, +.cq-text-icon { + display: block; + height: 24px; + width: 24px; + line-height: 32px; + transition: all 0.2s 0.15s; + border-radius: 2px; + box-sizing: border-box; + text-align: center; +} + +.ic-icon.ciq-favorite svg, +.ic-icon.ic-favorite svg, +.cq-text-icon.ciq-favorite svg, +.cq-text-icon.ic-favorite svg { + fill: none !important; +} + +.smartcharts-light .ic-icon.ciq-favorite svg, +.smartcharts-light .ic-icon.ic-favorite svg, +.smartcharts-light .cq-text-icon.ciq-favorite svg, +.smartcharts-light .cq-text-icon.ic-favorite svg { + stroke: rgba(0,0,0,0.8); +} + +.smartcharts-dark .ic-icon.ciq-favorite svg, +.smartcharts-dark .ic-icon.ic-favorite svg, +.smartcharts-dark .cq-text-icon.ciq-favorite svg, +.smartcharts-dark .cq-text-icon.ic-favorite svg { + stroke: #999; +} + +.smartcharts-light .ic-icon.ciq-active-favorite svg, +.smartcharts-light .cq-text-icon.ciq-active-favorite svg { + fill: #f93 !important; + stroke: #f93 !important; +} + +.smartcharts-dark .ic-icon.ciq-active-favorite svg, +.smartcharts-dark .cq-text-icon.ciq-active-favorite svg { + fill: #f93 !important; + stroke: #f93 !important; +} + +.ic-icon.margin, +.cq-text-icon.margin { + margin: 0 5px; +} + +.ic-icon svg, +.cq-text-icon svg { + position: relative; +} + +.ic-icon br, +.ic-icon .ic-subtitle, +.cq-text-icon br, +.cq-text-icon .ic-subtitle { + display: none; +} + +.ic-icon-with-sub { + height: auto !important; + width: auto !important; + line-height: 15px; +} + +.ic-icon-with-sub br, +.ic-icon-with-sub .ic-subtitle { + display: inline; +} + +.smartcharts-light .cq-chart-controls .cq-menu-btn .ic-icon>svg, +.smartcharts-light .sc-filter .ic-icon>svg, +.smartcharts-light .cq-active-options .ic-icon>svg, +.smartcharts-light .titlebar>.icons .ic-icon>svg, +.smartcharts-light .cq-draw-button .ic-icon>svg, +.smartcharts-light .cq-lookup-input .ic-icon>svg, +.smartcharts-light .template-name .ic-icon>svg, +.smartcharts-light .ciq-views .ciq-list-item .ic-icon>svg, +.smartcharts-light .ciq-chart-dialog .ic-icon>svg, +.smartcharts-light .cq-menu-dropdown .title .ic-icon>svg, +.smartcharts-light .ciq-chart-types .ciq-list-item .ic-icon>svg, +.smartcharts-light .sc-mcd__filter .ic-icon>svg, +.smartcharts-light .sc-mcd__category__head .category-title-left .ic-icon>svg, +.smartcharts-light .sc-mcd__category__head .ic-icon>svg { + fill: rgba(0,0,0,0.8); + stroke: rgba(0,0,0,0.8); +} + +.smartcharts-dark .cq-chart-controls .cq-menu-btn .ic-icon>svg, +.smartcharts-dark .sc-filter .ic-icon>svg, +.smartcharts-dark .cq-active-options .ic-icon>svg, +.smartcharts-dark .titlebar>.icons .ic-icon>svg, +.smartcharts-dark .cq-draw-button .ic-icon>svg, +.smartcharts-dark .cq-lookup-input .ic-icon>svg, +.smartcharts-dark .template-name .ic-icon>svg, +.smartcharts-dark .ciq-views .ciq-list-item .ic-icon>svg, +.smartcharts-dark .ciq-chart-dialog .ic-icon>svg, +.smartcharts-dark .cq-menu-dropdown .title .ic-icon>svg, +.smartcharts-dark .ciq-chart-types .ciq-list-item .ic-icon>svg, +.smartcharts-dark .sc-mcd__filter .ic-icon>svg, +.smartcharts-dark .sc-mcd__category__head .category-title-left .ic-icon>svg, +.smartcharts-dark .sc-mcd__category__head .ic-icon>svg { + fill: #999; + stroke: #999; +} + +.stx-ico-up { + transform: rotate(180deg); +} + +.smartcharts-light .cq-chart-controls .stxMenuActive .cq-menu-btn .ic-icon svg, +.smartcharts-light .ciq-aggregate-setting>.ic-icon:hover svg, +.smartcharts-light .cq-active-options .ic-icon:hover svg, +.smartcharts-light .ciq-chart-types .ciq-list-item .active.ic-icon svg { + fill: #2a3052; + stroke: #2a3052; +} + +.smartcharts-dark .cq-chart-controls .stxMenuActive .cq-menu-btn .ic-icon svg, +.smartcharts-dark .ciq-aggregate-setting>.ic-icon:hover svg, +.smartcharts-dark .cq-active-options .ic-icon:hover svg, +.smartcharts-dark .ciq-chart-types .ciq-list-item .active.ic-icon svg { + fill: #fff; + stroke: #fff; +} + +.ic-frx, +.ic-otc, +.ic-wld { + width: 32px; + min-width: 32px; + height: 32px; + position: relative; + display: inline-block; + vertical-align: top; +} + +.ic-frx>span, +.ic-otc>span, +.ic-wld>span { + position: absolute; +} + +.ic-frx>span:last-child { + top: 8px; + left: 8px; +} + +.ic-otc>span { + top: 5px; +} + +.ic-otc>span:last-child { + top: -8px; + left: 9px; +} + +.ic-wld>span:last-child { + top: -9px; + left: 11px; +} + +.ic-wld>span:last-child>svg { + width: 12px; + height: 8px; +} + +.ic-icon.ic-frxXAUUSD>svg { + fill: #ffd700; +} + +.ic-icon.ic-frxXPDUSD>svg { + fill: #e9eaf0; +} + +.ic-icon.ic-frxXPTUSD>svg { + fill: #f4f3f3; +} + +.ic-icon.ic-frxXAGUSD>svg { + fill: #e1e1e1; +} + +.smartcharts .ic-cryptocurrency>svg { + stroke: none !important; +} + +.smartcharts-dark .ic-cryptocurrency>svg { + -webkit-filter: brightness(3); + filter: brightness(3); +} + +.smartcharts-dark .sc-mcd__filter__item--selected .ic-cryptocurrency>svg { + -webkit-filter: brightness(6); + filter: brightness(6); +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu { + padding: 0px; +} + +.smartcharts-mobile br, +.smartcharts-mobile .ic-subtitle { + display: none; +} + +.ciq-chart-types .cq-menu-dropdown { + width: 424px; + height: 174px; + box-sizing: border-box; +} + +.ciq-chart-types .cq-menu-dropdown .body { + padding: 0 7px 0 16px; +} + +.ciq-chart-types .ciq-list { + padding-right: 9px; +} + +.ciq-chart-types .ciq-list .ciq-list-item { + padding: 0; + justify-content: space-between; +} + +.ciq-chart-types .ciq-list .ciq-list-item>.left { + display: inline-flex; + align-items: center; +} + +.ciq-chart-types .ciq-list .ciq-list-item>.ciq-aggregate-setting { + margin-right: 5px; +} + +.ciq-chart-types .ciq-list .ciq-list-item :last-child .ic-icon>svg { + stroke: none; +} + +.sc-chart-type { + display: flex; + padding: 24px; + justify-content: space-between; +} + +.smartcharts-light .sc-chart-type { + background: #fff; +} + +.smartcharts-dark .sc-chart-type { + background: #151717; +} + +.sc-chart-type__item { + width: 25%; + height: 88px; + margin-right: 8px; + cursor: pointer; + border: 1px solid transparent; + border-radius: 4px; + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.sc-chart-type__item .ic-icon { + margin: 0 auto 12px; +} + +.sc-chart-type__item .text { + display: block; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .sc-chart-type__item .text { + color: #333; +} + +.smartcharts-dark .sc-chart-type__item .text { + color: #c2c2c2; +} + +.sc-chart-type__item:last-child { + margin-right: 0px; +} + +.smartcharts-light .sc-chart-type__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-chart-type__item:hover { + background: #242828; +} + +.sc-chart-type__item--active { + background: transparent !important; +} + +.smartcharts-light .sc-chart-type__item--active { + border-color: #85acb0; +} + +.smartcharts-dark .sc-chart-type__item--active { + border-color: #85acb0; +} + +.sc-chart-type__item--active .text { + font-weight: bold; +} + +.smartcharts-dark .sc-chart-type__item--active .text { + color: #fff; +} + +.sc-chart-type__item--disabled { + cursor: auto; + cursor: initial; + background: transparent !important; +} + +.sc-chart-type__item--disabled>span { + opacity: 0.32; + background: transparent !important; + pointer-events: none; +} + +.smartcharts-mobile .sc-chart-type { + padding: 8px 10px 24px; +} + +.smartcharts-mobile .sc-chart-type__item { + height: 64px; + width: 64px; +} + +.smartcharts-mobile .sc-chart-type__item .ic-icon { + margin-bottom: 2px; +} + +.ciq-period { + padding: 0; + line-height: 1.5em !important; +} + +.ciq-period>.cq-menu-btn { + padding: 0 5px; +} + +.ciq-period>.cq-menu-btn>.bt-priod { + display: block; + height: auto; + line-height: 2em; + border-radius: 2px; + box-sizing: border-box; + text-align: center; + font-size: 1em; +} + +.ciq-period>.cq-menu-btn>.bt-priod .ic-priod { + font-size: 1.2em; + border-radius: 4px; + padding: 3px 5px; +} + +.ciq-period.stxMenuActive .bt-priod { + font-weight: 500; +} + +.smartcharts-light .ciq-period.stxMenuActive .ic-subtitle, +.smartcharts-light .ciq-period.stxMenuActive .ic-priod span { + color: #7f8397; +} + +.smartcharts-dark .ciq-period.stxMenuActive .ic-subtitle, +.smartcharts-dark .ciq-period.stxMenuActive .ic-priod span { + color: #fff; +} + +.ciq-period:after { + display: none; +} + +.ciq-period .unit_display { + text-transform: capitalize; +} + +.ciq-period .interval_display { + margin: 0 5px 0 0; +} + +.ciq-period .cq-menu-dropdown { + width: 424px; + height: 216px; + font-size: 1.2em; + font-weight: normal; +} + +.sc-interval { + display: flex; + padding: 24px; + flex-direction: column; + box-sizing: border-box; + border-radius: 4px; +} + +.smartcharts-light .sc-interval { + background: #fff; + color: #333; +} + +.smartcharts-dark .sc-interval { + background: #151717; + color: #c2c2c2; +} + +.sc-interval__head { + display: flex; +} + +.sc-interval__head strong { + font-size: 16px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; +} + +.smartcharts-dark .sc-interval__head strong { + color: #fff; +} + +.sc-interval__info { + display: none; +} + +.sc-interval__content { + display: flex; + flex-wrap: wrap; + padding-top: 16px; +} + +.sc-interval__content .sc-interval__item { + width: 23.9%; + height: 32px; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; + display: flex; + justify-content: center; + align-items: center; + margin: 0 4px 8px 0px; + cursor: pointer; + border-radius: 4px; + border: 1px solid transparent; + box-sizing: border-box; + position: relative; +} + +.smartcharts-light .sc-interval__content .sc-interval__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-interval__content .sc-interval__item:hover { + background: #242828; +} + +.sc-interval__content .sc-interval__item--active { + background: transparent !important; +} + +.smartcharts-light .sc-interval__content .sc-interval__item--active { + color: #333; + border-color: #85acb0; + font-weight: bold; +} + +.smartcharts-dark .sc-interval__content .sc-interval__item--active { + color: #fff; + border-color: #85acb0; + font-weight: bold; +} + +.sc-interval__content .sc-interval__item--disabled { + cursor: auto; + cursor: initial; + background: transparent !important; +} + +.sc-interval__content .sc-interval__item--disabled span { + opacity: 0.32; + pointer-events: none; +} + +.smartcharts-mobile .sc-interval { + padding: 8px 10px 24px; +} + +.smartcharts-mobile .sc-interval__info { + display: block; +} + +.smartcharts-mobile .sc-interval__content .sc-interval__item { + width: 31.9% !important; + margin: 0 4px 8px 0px; +} + +.sc-chart-mode .sc-dialog { + width: 424px; +} + +.sc-chart-mode__menu { + position: relative; +} + +.sc-chart-mode__menu .ic-icon { + margin: auto; + width: 16px; + height: 16px; + top: -4px; + position: relative; +} + +.sc-chart-mode__menu .ic-icon svg { + stroke: none !important; + width: 16px !important; + height: 16px !important; +} + +.smartcharts-light .sc-chart-mode__menu .ic-icon svg { + fill: #333 !important; +} + +.smartcharts-dark .sc-chart-mode__menu .ic-icon svg { + fill: #c2c2c2 !important; +} + +.sc-chart-mode__menu__timeperiod { + position: absolute; + top: -9px; + left: 4px; + font-size: 8px; + font-weight: bold; +} + +.smartcharts-light .sc-chart-mode__menu__timeperiod { + color: #333 !important; +} + +.smartcharts-dark .sc-chart-mode__menu__timeperiod { + color: #c2c2c2 !important; +} + +.sc-chart-mode__section { + border-radius: 4px; +} + +.smartcharts-light .sc-chart-mode__section { + background: #fff; +} + +.smartcharts-dark .sc-chart-mode__section { + background: #151717; +} + +.smartcharts-light .sc-chart-mode__section__item:first-child { + border-bottom: 4px solid #f2f3f4; +} + +.smartcharts-dark .sc-chart-mode__section__item:first-child { + border-bottom: 4px solid #0e0e0e; +} + +.sc-toolbar-widget .sc-chart-mode__menu { + padding: 8px; +} + +.sc-toolbar-widget .sc-chart-mode__menu__timeperiod { + top: 3px; + left: 8px; +} + +.smartcharts-mobile .sc-chart-mode .sc-dialog { + width: 300px; + left: auto; +} + +.sc-scrollbar { + overflow-y: auto; + overflow-x: hidden; + position: relative; + margin-right: 4px; + z-index: 1; + scrollbar-width: thin; +} + +.smartcharts-light .sc-scrollbar { + scrollbar-color: #d6dadb transparent; +} + +.smartcharts-dark .sc-scrollbar { + scrollbar-color: #323738 transparent; +} + +.sc-scrollbar::-webkit-scrollbar { + width: 4px; +} + +.sc-scrollbar::-webkit-scrollbar-track { + -webkit-box-shadow: transparent; + border-radius: 2px; +} + +.sc-scrollbar::-webkit-scrollbar-thumb { + border-radius: 2px; + -webkit-box-shadow: transparent; +} + +.smartcharts-light .sc-scrollbar::-webkit-scrollbar-thumb { + background: #d6dadb; +} + +.smartcharts-dark .sc-scrollbar::-webkit-scrollbar-thumb { + background: #323738; +} + +.sc-scrollbar::-webkit-scrollbar-button, +.sc-scrollbar::-webkit-scrollbar-corner { + display: none; +} + +.sc-scrollbar--auto-hide { + scrollbar-color: transparent transparent !important; +} + +.sc-scrollbar--auto-hide::-webkit-scrollbar-thumb { + display: none; +} + +.sc-scrollbar--freeze { + overflow: hidden !important; +} + +.smartcharts-light .sc-scrollbar:hover { + scrollbar-color: #d6dadb transparent !important; +} + +.smartcharts-dark .sc-scrollbar:hover { + scrollbar-color: #323738 transparent !important; +} + +.sc-scrollbar:hover::-webkit-scrollbar-thumb { + display: inherit !important; +} + +.smartcharts-mobile .sc-scrollbar--auto-hide::-webkit-scrollbar-thumb { + display: inherit !important; +} + +.sc-studies .react-tabs__tab-list .react-tabs__tab { + box-shadow: none !important; + outline: none !important; +} + +.sc-studies .react-tabs__tab-list .react-tabs__tab:after { + display: none; +} + +.sc-studies .hidden { + display: none; +} + +.sc-studies .cq-dialog__body { + position: relative; +} + +.sc-studies__panel { + width: 360px; + height: 392px; + padding: 8px 0px 8px 8px; + box-sizing: border-box; +} + +.sc-studies__panel>h3 { + font-size: 14px; + color: #999999; + font-weight: normal; + padding: 0 8px; + margin: 18px 0; + display: none; +} + +.sc-studies__panel__head { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 16px; +} + +.sc-studies__panel__head p { + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 0.1; + letter-spacing: normal; + padding: 0 8px; +} + +.smartcharts-light .sc-studies__panel__head p { + color: #333; +} + +.smartcharts-dark .sc-studies__panel__head p { + color: #c2c2c2; +} + +.sc-studies__panel__content { + width: 100%; +} + +.sc-studies__panel__content--active .sc-studies__list__item { + height: 48px; + padding: 4px 16px; + cursor: auto; + cursor: initial; +} + +.sc-studies__panel--active { + padding-right: 8px; +} + +.sc-studies--empty { + display: flex; + flex-direction: column; + padding: 8px; + justify-content: center; + align-content: center; + text-align: center; +} + +.sc-studies--empty>.ic-icon { + width: 130px; + height: 130px; + margin: 60px auto 24px; +} + +.sc-studies--empty strong { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; + margin-bottom: 8px; +} + +.smartcharts-light .sc-studies--empty strong { + color: #333; +} + +.smartcharts-dark .sc-studies--empty strong { + color: #fff; +} + +.sc-studies--empty p { + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; + margin: 0px; +} + +.smartcharts-light .sc-studies--empty p { + color: #999; +} + +.smartcharts-dark .sc-studies--empty p { + color: #6e6e6e; +} + +.sc-studies__list__item { + height: 40px; + display: flex; + margin-right: 4px; + border-radius: 4px; + box-sizing: border-box; + justify-content: space-between; + align-items: center; + cursor: pointer; + position: relative; +} + +.smartcharts-light .sc-studies__list__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-studies__list__item:hover { + background: #242828; +} + +.sc-studies__list__item:hover .ic-info { + opacity: 1; +} + +.sc-studies__list__item .info { + display: flex; + justify-content: start; + align-items: center; + width: 100%; + padding: 8px 0 8px 16px; +} + +.sc-studies__list__item .info .ic-icon { + margin-right: 16px; +} + +.sc-studies__list__item .info .text { + display: flex; + flex-direction: column; + padding-left: 16px; +} + +.sc-studies__list__item .info .text span { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin-right: 16px; +} + +.smartcharts-light .sc-studies__list__item .info .text span { + color: #333; +} + +.smartcharts-dark .sc-studies__list__item .info .text span { + color: #c2c2c2; +} + +.sc-studies__list__item .info .text small { + display: block; + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + margin-top: 2px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + max-width: 170px; +} + +.smartcharts-light .sc-studies__list__item .info .text small { + color: #999; +} + +.smartcharts-dark .sc-studies__list__item .info .text small { + color: #6e6e6e; +} + +.sc-studies__list__item .detail { + display: flex; + justify-content: flex-end; + align-items: center; + padding: 0px; +} + +.sc-studies__list__item .detail span { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: right; + margin-left: 8px; +} + +.sc-studies__list__item .detail .ic-icon { + width: 16px; + height: 16px; + cursor: pointer; + transition: none; +} + +.sc-studies__list__item .detail .ic-icon svg { + width: 16px; + height: 16px; +} + +.smartcharts-light .sc-studies__list__item .detail .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-studies__list__item .detail .ic-icon svg { + fill: #c2c2c2; +} + +.sc-studies__list__item .detail .ic-icon.ic-info { + margin-right: 16px; +} + +.sc-studies__list__item .ic-info { + opacity: 0; +} + +.sc-studies__list__item .sc-tooltip__inner { + width: 280px; + height: auto; + white-space: break-spaces; + text-align: center; +} + +.sc-studies__list__item--disabled { + opacity: 0.3; + pointer-events: none; +} + +.sc-studies__category__head { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + padding: 8px; +} + +.smartcharts-light .sc-studies__category__head { + color: #999; +} + +.smartcharts-dark .sc-studies__category__head { + color: #6e6e6e; +} + +.sc-studies__category__body { + width: 100%; +} + +.sc-studies__info { + width: 360px; + right: 0px; + z-index: 2; + height: 100%; + display: flex; + position: absolute; + padding: 16px 24px; + align-items: center; + box-sizing: border-box; + flex-direction: column; + justify-content: space-between; +} + +.smartcharts-light .sc-studies__info { + color: #333; + background: #fff; +} + +.smartcharts-dark .sc-studies__info { + color: #c2c2c2; + background: #0e0e0e; +} + +.sc-studies__info__content { + margin: -20px -20px 0; + padding: 0; +} + +.sc-studies__info p { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin: 0px; +} + +.sc-studies__info .btn { + width: 100%; +} + +.smartcharts-mobile .stx-panel-control { + left: 5px; +} + +.smartcharts-mobile .sc-studies .react-tabs__tab-panel { + height: 425px !important; +} + +.smartcharts-mobile .sc-studies .sc-dialog { + overflow-y: scroll; + max-height: calc(100vh - 90px); +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-list { + width: 50px; + min-width: 50px; +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab span:not(.sc-notification-badge):not(.ic-icon) { + display: none; +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .sc-notification-badge { + position: absolute; + top: 2px; + left: 19px; +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon { + width: 22px; + height: 22px; +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg { + width: 22px; + height: 22px; +} + +.smartcharts-mobile .tabs--vertical .react-tabs__tab-panel { + width: calc(100% - 50px); +} + +.smartcharts-mobile .sc-studies__panel { + width: 100%; +} + +.smartcharts-mobile .sc-studies__panel>h3 { + display: block; +} + +.smartcharts-mobile .sc-studies__panel__content--active .sc-studies__list__item { + padding: 4px; +} + +.smartcharts-mobile .sc-studies__list__item .info { + padding: 8px 0 8px 8px; +} + +.smartcharts-mobile .sc-studies__list__item .info .text { + padding-left: 0px; +} + +.smartcharts-mobile .sc-studies__list__item .ic-info { + opacity: 1; +} + +.smartcharts-mobile .sc-studies__list__item .detail span { + margin-left: 16px; +} + +.smartcharts-mobile .sc-studies__info { + width: calc(100% - 50px); +} + +.smartcharts-mobile .sc-studies__info>p { + max-height: 360px; + height: 360px; + overflow-y: scroll; +} + +.sc-views-menu .sc-dialog { + width: 320px; +} + +.form--sc-views { + overflow-y: hidden !important; +} + +.form--sc-views__input { + height: 40px; + position: relative; + display: flex; +} + +.form--sc-views__input .sc-input { + width: calc(100% - 40px); + border-radius: 4px 0 0 4px; + height: 40px; + text-align: left; +} + +.form--sc-views__input .subtitle { + position: absolute; + top: -6px; + left: 10px; + z-index: 1; + opacity: 0; + font-size: 10px; + font-weight: normal; + font-style: normal; + line-height: 1.4; + letter-spacing: normal; +} + +.form--sc-views__input .subtitle span { + padding: 0 4px; +} + +.smartcharts-light .form--sc-views__input .subtitle span { + background: #fff; +} + +.smartcharts-dark .form--sc-views__input .subtitle span { + background: #151717; +} + +.form--sc-views__input button { + width: 40px; + height: 40px; + border-radius: 0 4px 4px 0; + padding: 8px 7px; + border: none !important; +} + +.smartcharts-light .form--sc-views__input button svg { + fill: #fff; +} + +.smartcharts-dark .form--sc-views__input button svg { + fill: #fff; +} + +.form--sc-views__input--active .subtitle { + opacity: 1; +} + +.smartcharts-light .form--sc-views__input--active .subtitle { + color: #85acb0; +} + +.smartcharts-dark .form--sc-views__input--active .subtitle { + color: #85acb0; +} + +.smartcharts-light .form--sc-views__input--active input { + border-color: #85acb0; + color: #333; +} + +.smartcharts-dark .form--sc-views__input--active input { + border-color: #85acb0; + color: #fff; +} + +.smartcharts-light .form--sc-views__input--active button { + background: #ff444f; +} + +.smartcharts-dark .form--sc-views__input--active button { + background: #ff444f; +} + +.sc-views { + height: 304px; + position: relative; + border-radius: 0 0 4px 4px; +} + +.smartcharts-light .sc-views { + background: #fff; +} + +.smartcharts-dark .sc-views { + background: #151717; +} + +.sc-views__menu { + position: relative; +} + +.sc-views__menu .ic-icon { + margin: auto; + width: 16px; + height: 16px; + top: -4px; + position: relative; +} + +.sc-views__menu .ic-icon svg { + stroke: none !important; + width: 16px !important; + height: 16px !important; +} + +.smartcharts-light .sc-views__menu .ic-icon svg { + fill: #333 !important; +} + +.smartcharts-dark .sc-views__menu .ic-icon svg { + fill: #c2c2c2 !important; +} + +.sc-views--empty { + display: flex; + flex-direction: column; + padding: 24px; + justify-content: center; + align-content: center; + text-align: center; +} + +.sc-views--empty>.ic-icon { + width: 130px; + height: 130px; + margin: 0 auto 24px; +} + +.sc-views--empty p { + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; + margin: 0 0 46px; +} + +.smartcharts-light .sc-views--empty p { + color: #999; +} + +.smartcharts-dark .sc-views--empty p { + color: #6e6e6e; +} + +.sc-views--empty button { + background: transparent; + display: flex; + justify-content: center; + align-items: center; + font-weight: bold; + outline: none; + padding: 10px 16px; +} + +.sc-views--empty button>.ic-icon { + width: 16px; + height: 16px; + line-height: 16px; + margin-right: 6px; +} + +.smartcharts-light .sc-views--empty button>.ic-icon { + fill: #ff444f; +} + +.smartcharts-dark .sc-views--empty button>.ic-icon { + fill: #ff444f; +} + +.sc-views__views { + padding: 16px 8px 0; +} + +.smartcharts-light .sc-views__views { + border-top: 1px solid #f2f3f4; +} + +.smartcharts-dark .sc-views__views { + border-top: 1px solid #0e0e0e; +} + +.sc-views__views__head { + display: flex; + justify-content: space-between; + padding: 8px 16px; +} + +.sc-views__views__head h5 { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin: 0px; +} + +.smartcharts-light .sc-views__views__head h5 { + color: #999; +} + +.smartcharts-dark .sc-views__views__head h5 { + color: #6e6e6e; +} + +.sc-views__views__head button { + height: 24px; + border-radius: 4px; + cursor: pointer; + background: transparent; + outline: none !important; + font-weight: bold; +} + +.smartcharts-light .sc-views__views__head button { + border: 1px solid #999; + color: #333; +} + +.smartcharts-dark .sc-views__views__head button { + border: 1px solid #6e6e6e; + color: #fff; +} + +.sc-views__views__list__item { + height: 40px; + border-radius: 4px; + display: flex; + padding: 10px 16px; + justify-content: space-between; + box-sizing: border-box; + align-items: center; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + cursor: pointer; + position: relative; +} + +.smartcharts-light .sc-views__views__list__item { + color: #333; +} + +.smartcharts-dark .sc-views__views__list__item { + color: #c2c2c2; +} + +.sc-views__views__list__item .text { + max-width: 240px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.smartcharts-light .sc-views__views__list__item .ic-icon { + fill: #333; +} + +.smartcharts-dark .sc-views__views__list__item .ic-icon { + fill: #c2c2c2; +} + +.sc-views__views__list__item .sc-tooltip__inner { + max-width: 304px; + height: auto; + white-space: break-spaces; + text-align: center; +} + +.smartcharts-light .sc-views__views__list__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-views__views__list__item:hover { + background: #242828; +} + +.sc-views--overwrite { + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 100%; + z-index: 40; +} + +.smartcharts-light .sc-views--overwrite { + background: #fff; +} + +.smartcharts-dark .sc-views--overwrite { + background: #151717; +} + +.sc-views--overwrite__content { + height: 230px; + padding: 24px 16px 16px; + box-sizing: border-box; + text-align: center; +} + +.sc-views--overwrite__content .ic-icon { + margin: auto; + width: 128px; + height: 128px; +} + +.sc-views--overwrite__content p { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .sc-views--overwrite__content p { + color: #333; +} + +.smartcharts-dark .sc-views--overwrite__content p { + color: #c2c2c2; +} + +.sc-views--overwrite__footer { + height: 72px; + padding: 16px 24px; + text-align: right; + box-sizing: border-box; +} + +.smartcharts-light .sc-views--overwrite__footer { + border-top: 2px solid #f2f3f4; +} + +.smartcharts-dark .sc-views--overwrite__footer { + border-top: 2px solid #0e0e0e; +} + +.sc-views--overwrite__footer button { + margin-left: 8px; +} + +.smartcharts-mobile .sc-views-menu .sc-dialog { + left: auto; + width: 300px; +} + +.form { + padding: 8px 0px; + flex-grow: 1; + overflow-y: scroll; + box-sizing: border-box; +} + +.form .form__label { + display: flex; + justify-content: space-between; + align-items: center; + font-size: 10px; + font-weight: normal; + font-style: normal; + line-height: 1.4; + letter-spacing: normal; +} + +.smartcharts-light .form .form__label { + color: #333; +} + +.smartcharts-dark .form .form__label { + color: #c2c2c2; +} + +.form .form__control { + display: block; +} + +.form__group { + box-sizing: border-box; + padding: 0; + margin-bottom: 16px; + display: flex; + flex-direction: column; + justify-content: space-around; +} + +.form__group--select, +.form__group--colorpicker { + position: relative; + height: 40px; +} + +.form__group--select .form__label, +.form__group--colorpicker .form__label { + margin-bottom: -8px; + margin-left: 10px; +} + +.form__group--select .form__label span, +.form__group--colorpicker .form__label span { + padding-left: 2px; + padding-right: 2px; + z-index: 1; +} + +.smartcharts-light .form__group--select .form__label span, +.smartcharts-light .form__group--colorpicker .form__label span { + background: #fff; +} + +.smartcharts-dark .form__group--select .form__label span, +.smartcharts-dark .form__group--colorpicker .form__label span { + background: #151717; +} + +.form__group--switch { + flex-direction: row; + justify-content: flex-start; +} + +.form__group--switch .form__label { + width: auto; + min-width: 70px; + font-size: 14px; +} + +.form__group--switch .form__control { + padding-left: 16px; + width: auto; +} + +.form__group--end { + height: 20px; + margin-bottom: 0px; +} + +.form__input-group { + padding: 16px 24px; +} + +.smartcharts-light .form__input-group { + border-top: 4px solid #f2f3f4; +} + +.smartcharts-dark .form__input-group { + border-top: 4px solid #0e0e0e; +} + +.form__input-group h4 { + font-size: 14px; + font-weight: bold; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin: 0 0 16px; +} + +.smartcharts-light .form__input-group h4 { + color: #333; +} + +.smartcharts-dark .form__input-group h4 { + color: #fff; +} + +.form__input-group:first-child { + border-top: none; +} + +.form__input-group--show-zones { + margin-bottom: 30px; +} + +.form__input-group--show-zones .form__label { + font-size: 14px; +} + +.form--indicator-setting { + min-width: 320px; + max-width: 320px; + min-height: 280px; + max-height: 280px; + overflow: hidden; +} + +.smartcharts-light .form--indicator-setting { + background: #fff; +} + +.smartcharts-dark .form--indicator-setting { + background: #151717; +} + +.form--indicator-setting .form__input-group { + width: 320px !important; + box-sizing: border-box; +} + +.form--indicator-setting .form__input-group--result:last-child { + height: 280px; +} + +.form--indicator-setting .sc-scrollbar { + height: 282px; +} + +.form--fractal-chaos-bands .form__group--switch { + margin-bottom: 98px; +} + +.form--drawing-tool .sc-scrollbar { + height: 280px; +} + +.sc-slider { + width: 100%; + height: 12px; + display: flex; + align-items: center; + position: relative; +} + +.sc-slider .sc-slider-range { + position: relative; + width: calc(100% - 38px); + margin-top: 9px; + padding-right: 8px; + height: 12px; +} + +.sc-slider .sc-slider-range>input, +.sc-slider .sc-slider-range div { + position: absolute; + left: 0px; + top: 0px; +} + +.sc-slider .sc-slider-range input[type='range'] { + -webkit-appearance: none; + width: 100%; + margin: 0; + background: transparent; + height: 12px; + top: -5px; +} + +.sc-slider .sc-slider-range input[type='range']:focus { + outline: none; +} + +.sc-slider .sc-slider-range input[type='range']::-webkit-slider-runnable-track { + width: 100%; + height: 12px; + cursor: pointer; + border-radius: 0px; + background: transparent; + border: 0px solid #010101; +} + +.sc-slider .sc-slider-range input[type='range']::-moz-range-track { + width: 100%; + height: 12px; + cursor: pointer; + border-radius: 0px; + background: transparent; + border: 0px solid #010101; + height: 14px; + margin-top: -3px; + top: -3px; +} + +.sc-slider .sc-slider-range input[type='range']::-ms-track { + width: 100%; + height: 12px; + cursor: pointer; + border-radius: 0px; + background: transparent; + border: 0px solid #010101; + color: transparent; +} + +.sc-slider .sc-slider-range input[type='range']::-ms-thumb { + cursor: pointer; + width: 10px; + height: 10px; + box-sizing: border-box; + border-radius: 7px; + margin-top: 0px; + margin-top: 0px; +} + +.smartcharts-light .sc-slider .sc-slider-range input[type='range']::-ms-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.smartcharts-dark .sc-slider .sc-slider-range input[type='range']::-ms-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.sc-slider .sc-slider-range input[type='range']::-moz-range-thumb { + cursor: pointer; + width: 10px; + height: 10px; + box-sizing: border-box; + border-radius: 7px; + margin-top: 0px; + margin-top: 0px; +} + +.smartcharts-light .sc-slider .sc-slider-range input[type='range']::-moz-range-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.smartcharts-dark .sc-slider .sc-slider-range input[type='range']::-moz-range-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.sc-slider .sc-slider-range input[type='range']::-webkit-slider-thumb { + -webkit-appearance: none; + cursor: pointer; + width: 10px; + height: 10px; + box-sizing: border-box; + border-radius: 7px; + margin-top: 0px; + margin-top: 1px; +} + +.smartcharts-light .sc-slider .sc-slider-range input[type='range']::-webkit-slider-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.smartcharts-dark .sc-slider .sc-slider-range input[type='range']::-webkit-slider-thumb { + background-color: #ff444f; + border: 2px solid #ff444f; +} + +.sc-slider .sc-slider-range input[type='range']::-moz-focus-outer { + border: 0; +} + +.sc-slider .sc-slider-range .sc-slider-bar { + width: 100%; + outline: none; + height: 2px; +} + +.smartcharts-light .sc-slider .sc-slider-range .sc-slider-bar { + background: #eaeced; +} + +.smartcharts-dark .sc-slider .sc-slider-range .sc-slider-bar { + background: #1d1f20; +} + +.sc-slider .sc-slider-range .sc-slider-active-bar { + height: 2px; + min-width: 10px; +} + +.smartcharts-light .sc-slider .sc-slider-range .sc-slider-active-bar { + background: #ff444f; +} + +.smartcharts-dark .sc-slider .sc-slider-range .sc-slider-active-bar { + background: #ff444f; +} + +.sc-slider>div:last-child { + text-align: right; + flex-grow: 1; + font-weight: bold; + font-size: 14px; + width: 26px; +} + +.smartcharts-light .sc-slider>div:last-child { + color: #333; +} + +.smartcharts-dark .sc-slider>div:last-child { + color: #fff; +} + +.sc-dropdown { + position: relative; + height: 40px; + width: 100%; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.smartcharts-light .sc-dropdown { + background: #fff; +} + +.smartcharts-dark .sc-dropdown { + background: #151717; +} + +.sc-dropdown .subtitle { + position: absolute; + margin-left: 10px; + top: -6px; +} + +.sc-dropdown .subtitle span { + padding-left: 4px; + padding-right: 4px; + z-index: 1; + font-size: 10px; + font-weight: normal; + font-style: normal; + line-height: 1.4; + letter-spacing: normal; +} + +.smartcharts-light .sc-dropdown .subtitle span { + background: #fff; + color: #333; +} + +.smartcharts-dark .sc-dropdown .subtitle span { + background: #151717; + color: #c2c2c2; +} + +.sc-dropdown .value { + height: 40px; + padding: 10px 12px; + cursor: pointer; + border-radius: 4px; + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-transform: capitalize; +} + +.smartcharts-light .sc-dropdown .value { + color: #333 !important; + border: 1px solid #d6dadb; +} + +.smartcharts-dark .sc-dropdown .value { + color: #c2c2c2 !important; + border: 1px solid #323738; +} + +.sc-dropdown .value .ic-icon { + line-height: 35px; +} + +.sc-dropdown .value .ic-icon svg { + pointer-events: none; + transition: transform 0.6s; +} + +.smartcharts-light .sc-dropdown .value .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-dropdown .value .ic-icon svg { + fill: #c2c2c2; +} + +.sc-dropdown .value .text { + text-overflow: ellipsis; + white-space: nowrap; + max-width: 220px; + min-width: 210px; + overflow: hidden; +} + +.sc-dropdown .value:after { + content: ' '; + position: absolute; + left: 0px; + top: 0px; + width: 100%; + height: 100%; +} + +.smartcharts-light .sc-dropdown .value:hover { + border-color: #999; +} + +.smartcharts-dark .sc-dropdown .value:hover { + border-color: #6e6e6e; +} + +.smartcharts-light .sc-dropdown .value.active { + border-color: #85acb0; +} + +.smartcharts-dark .sc-dropdown .value.active { + border-color: #85acb0; +} + +.sc-dropdown .value.active svg { + transform: scaleY(-1); +} + +.sc-dropdown .dropdown { + position: absolute; + right: -4px; + opacity: 0; + pointer-events: none; + z-index: 2; + max-height: 2px; + overflow: scroll; + box-shadow: 0 2px 8px 0 rgba(42,48,82,0.14); + box-sizing: border-box; + border-radius: 4px; + font-size: 14px; + width: 272px; + transform: translateY(-8px); + transition: opacity 0.2s, transform 0.2s; +} + +.smartcharts-light .sc-dropdown .dropdown { + background: #fff; +} + +.smartcharts-dark .sc-dropdown .dropdown { + background: #151717; +} + +.sc-dropdown .dropdown.active { + opacity: 1; + max-height: 200px; + pointer-events: all; + transform: translateY(8px); +} + +.smartcharts-light .sc-dropdown .dropdown.active { + box-shadow: 0 16px 16px 0 rgba(0,0,0,0.08),0 0 16px 0 rgba(0,0,0,0.08); +} + +.smartcharts-dark .sc-dropdown .dropdown.active { + box-shadow: 0 16px 16px 0 rgba(0,0,0,0.64),0 0 16px 0 rgba(0,0,0,0.64); +} + +.sc-dropdown .dropdown .row { + cursor: pointer; + padding: 10px 16px 9px; + text-transform: capitalize; +} + +.smartcharts-light .sc-dropdown .dropdown .row { + color: #333; +} + +.smartcharts-dark .sc-dropdown .dropdown .row { + color: #c2c2c2; +} + +.smartcharts-light .sc-dropdown .dropdown .row:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-dropdown .dropdown .row:hover { + background: #242828; +} + +.sc-dropdown .dropdown .row--selected { + font-weight: bold; +} + +.smartcharts-light .sc-dropdown .dropdown .row--selected { + background: #d6dadb !important; + color: #333 !important; +} + +.smartcharts-dark .sc-dropdown .dropdown .row--selected { + background: #323738 !important; + color: #fff !important; +} + +.sc-dropdown .option { + display: inline-block; + width: 100%; + pointer-events: none; + margin-right: 16px; +} + +.sc-dropdown .solid-1 { + border-top-style: solid; + border-top-width: 1px; +} + +.sc-dropdown .dotted-1 { + border-top-style: dotted; + border-top-width: 1px; +} + +.sc-dropdown .dashed-1 { + border-top-style: dashed; + border-top-width: 1px; +} + +.sc-dropdown .solid-3 { + border-top-style: solid; + border-top-width: 2px; +} + +.sc-dropdown .dotted-3 { + border-top-style: dotted; + border-top-width: 2px; +} + +.sc-dropdown .dashed-3 { + border-top-style: dashed; + border-top-width: 2px; +} + +.sc-dropdown .solid-5 { + border-top-style: solid; + border-top-width: 3px; +} + +.sc-dropdown .dotted-5 { + border-top-style: dotted; + border-top-width: 3px; +} + +.sc-dropdown .dashed-5 { + border-top-style: dashed; + border-top-width: 3px; +} + +.sc-dropdown.active { + position: fixed; + z-index: 2; +} + +.smartcharts-light .sc-dropdown.active .subtitle span { + color: #85acb0; +} + +.smartcharts-dark .sc-dropdown.active .subtitle span { + color: #85acb0; +} + +.sc-color-picker { + position: relative; + height: 40px; + width: 100%; +} + +.smartcharts-light .sc-color-picker { + background: #fff; +} + +.smartcharts-dark .sc-color-picker { + background: #151717; +} + +.sc-color-picker .subtitle { + position: absolute; + margin-left: 10px; + top: -6px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: 1; +} + +.sc-color-picker .subtitle span { + padding-left: 4px; + padding-right: 4px; + z-index: 1; + font-size: 10px; + font-weight: normal; + font-style: normal; + line-height: 1.4; + letter-spacing: normal; +} + +.smartcharts-light .sc-color-picker .subtitle span { + background: #fff; + color: #333; +} + +.smartcharts-dark .sc-color-picker .subtitle span { + background: #151717; + color: #c2c2c2; +} + +.sc-color-picker .value { + width: 100%; + height: 40px; + line-height: 40px; + padding: 10px 12px; + cursor: pointer; + border-radius: 4px; + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + position: relative; +} + +.smartcharts-light .sc-color-picker .value { + background-color: #fff; + color: #333 !important; + border: 1px solid #d6dadb; +} + +.smartcharts-dark .sc-color-picker .value { + background-color: #151717; + color: #c2c2c2 !important; + border: 1px solid #323738; +} + +.sc-color-picker .value:before { + position: absolute; + content: ' '; + width: 100%; + height: 100%; + left: 0px; + top: 0px; +} + +.sc-color-picker .value .sc-input-color { + height: 100%; + width: 100%; + border-radius: 4px; + margin-right: 16px; +} + +.sc-color-picker .value .ic-icon { + line-height: 35px; +} + +.sc-color-picker .value .ic-icon svg { + pointer-events: none; + transition: transform 0.6s; +} + +.smartcharts-light .sc-color-picker .value .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-color-picker .value .ic-icon svg { + fill: #c2c2c2; +} + +.smartcharts-light .sc-color-picker .value:hover { + border-color: #999; +} + +.smartcharts-dark .sc-color-picker .value:hover { + border-color: #6e6e6e; +} + +.sc-color-picker .dropdown { + position: absolute; + right: 0px; + opacity: 0; + pointer-events: none; + z-index: 2; + width: 266px; + padding: 8px; + border-radius: 4px; + transform: translateY(-8px); + box-sizing: border-box; + transition: opacity 0.2s, transform 0.2s; +} + +.smartcharts-light .sc-color-picker .dropdown { + box-shadow: 0 16px 16px 0 rgba(0,0,0,0.08),0 0 16px 0 rgba(0,0,0,0.08); + background: #fff; +} + +.smartcharts-dark .sc-color-picker .dropdown { + box-shadow: 0 16px 16px 0 rgba(0,0,0,0.64),0 0 16px 0 rgba(0,0,0,0.64); + background: #151717; +} + +.sc-color-picker .dropdown.open { + opacity: 1; + pointer-events: initial; + transform: translateY(8px); +} + +.sc-color-picker .dropdown .row { + height: 18px; + width: 100%; + display: flex; + justify-content: space-between; + margin-top: 2px; + align-items: center; +} + +.sc-color-picker .dropdown .row .tile-color { + width: 15px; + height: 15px; + cursor: pointer; +} + +.sc-color-picker.active { + position: fixed; + z-index: 2; +} + +.smartcharts-light .sc-color-picker.active .subtitle span { + color: #85acb0; +} + +.smartcharts-dark .sc-color-picker.active .subtitle span { + color: #85acb0; +} + +.smartcharts-light .sc-color-picker.active .value { + border-color: #85acb0; +} + +.smartcharts-dark .sc-color-picker.active .value { + border-color: #85acb0; +} + +.sc-color-picker.active .value svg { + transform: scaleY(-1); +} + +.sc-color-picker .sc-color-picker, +.sc-color-picker .sc-numeric-input { + min-width: 124px; + max-width: 124px; +} + +.sc-switch { + width: 32px; + height: 18px; + position: relative; + cursor: pointer; + border-radius: 9px; +} + +.sc-switch .handle { + position: absolute; + top: 2px; + width: 14px; + height: 14px; + transition: left 0.2s; + border-radius: 7px; +} + +.smartcharts-light .sc-switch .handle { + background: #fff; +} + +.smartcharts-dark .sc-switch .handle { + background: #fff; +} + +.sc-switch.on .handle { + left: 16px; +} + +.smartcharts-light .sc-switch.on { + background: #4bb4b3; +} + +.smartcharts-dark .sc-switch.on { + background: #00a79e; +} + +.sc-switch.off .handle { + left: 2px; +} + +.smartcharts-light .sc-switch.off { + background: #eaeced; +} + +.smartcharts-dark .sc-switch.off { + background: #1d1f20; +} + +.sc-checkbox { + display: flex; + align-items: center; + cursor: pointer; +} + +.sc-checkbox__input { + display: none; +} + +.sc-checkbox__label { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; +} + +.sc-checkbox__box { + border-radius: 2px; +} + +.sc-checkbox__box svg { + border-radius: 2px; +} + +.smartcharts-light .sc-checkbox__box svg { + fill: #999; +} + +.smartcharts-dark .sc-checkbox__box svg { + fill: #6e6e6e; +} + +.smartcharts-light .sc-checkbox--checked .sc-checkbox__box svg { + background: #ff444f; + fill: #ff444f; +} + +.smartcharts-dark .sc-checkbox--checked .sc-checkbox__box svg { + background: #ff444f; + fill: #ff444f; +} + +.sc-switch-icon { + display: flex; +} + +.sc-switch-icon__icon { + width: 160px; + height: 120px; +} + +.sc-switch-icon__description { + padding-left: 16px; +} + +.sc-numbercolorpicker, +.sc-fontsetting { + display: inline-flex; +} + +.sc-numbercolorpicker { + display: flex; +} + +.sc-numbercolorpicker input { + box-shadow: none !important; +} + +.smartcharts-light .sc-numbercolorpicker input { + background: #fff; + border: 1px solid #d6dadb; + color: #333; +} + +.smartcharts-dark .sc-numbercolorpicker input { + background: #151717; + border: 1px solid rgba(127,131,151,0.3); + color: #fff; +} + +.smartcharts-light .sc-numbercolorpicker input:hover { + border-color: #999 !important; +} + +.smartcharts-dark .sc-numbercolorpicker input:hover { + border-color: #6e6e6e !important; +} + +.smartcharts-light .sc-numbercolorpicker input:focus { + border-color: #85acb0 !important; +} + +.smartcharts-dark .sc-numbercolorpicker input:focus { + border-color: #85acb0 !important; +} + +.sc-numbercolorpicker .field { + width: 50%; +} + +.sc-numbercolorpicker .sc-numeric-input { + width: 124px; + min-width: 124px; +} + +.sc-numbercolorpicker .sc-color-picker { + width: 124px; +} + +.sc-numeric-input { + position: relative; + height: 40px; + width: 100%; + margin-right: 25px; +} + +.sc-numeric-input .subtitle { + position: absolute; + margin-left: 10px; + top: -6px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.sc-numeric-input .subtitle span { + padding-left: 4px; + padding-right: 4px; + z-index: 1; + font-size: 10px; + font-weight: normal; + font-style: normal; + line-height: 1.4; + letter-spacing: normal; +} + +.smartcharts-light .sc-numeric-input .subtitle span { + color: #333; + background: #fff; +} + +.smartcharts-dark .sc-numeric-input .subtitle span { + color: #c2c2c2; + background: #151717; +} + +.sc-numeric-input input[type='number'] { + -moz-appearance: textfield; + height: 40px; + line-height: 40px; + cursor: pointer; + border-radius: 4px; + box-sizing: border-box; + padding: 10px 12px; + width: 100% !important; + box-shadow: none !important; + outline: none; +} + +.smartcharts-light .sc-numeric-input input[type='number'] { + color: #333 !important; + border: 1px solid #d6dadb; +} + +.smartcharts-dark .sc-numeric-input input[type='number'] { + color: #c2c2c2 !important; + border: 1px solid #323738; +} + +.sc-numeric-input input[type='number']::-webkit-outer-spin-button, +.sc-numeric-input input[type='number']::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.sc-numeric-input input[type='number']:hover, +.sc-numeric-input input[type='number']:focus { + -moz-appearance: textfield; +} + +.smartcharts-light .sc-numeric-input input[type='number']:hover { + border-color: #999 !important; +} + +.smartcharts-dark .sc-numeric-input input[type='number']:hover { + border-color: #6e6e6e !important; +} + +.smartcharts-light .sc-numeric-input input[type='number']:focus { + color: #333 !important; + border-color: #85acb0 !important; +} + +.smartcharts-dark .sc-numeric-input input[type='number']:focus { + color: #fff !important; + border-color: #85acb0 !important; +} + +.smartcharts-light .sc-numeric-input input[type='number']:focus+.subtitle>span { + color: #85acb0 !important; +} + +.smartcharts-dark .sc-numeric-input input[type='number']:focus+.subtitle>span { + color: #85acb0 !important; +} + +.sc-numeric-input .sc-numeric-input-buttons { + display: flex; + flex-direction: column; + position: absolute; + top: 1px; + right: 1px; + border-radius: 0 3px 3px 0; +} + +.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons { + background: #fff; +} + +.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons { + background: #151717; +} + +.sc-numeric-input .sc-numeric-input-buttons .ic-icon { + width: 24px; + height: 19px; + line-height: 19px; + cursor: pointer; +} + +.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons .ic-icon svg { + fill: #c2c2c2; +} + +.sc-numeric-input .sc-numeric-input-buttons .ic-icon:first-child { + border-radius: 0 3px 0 0; +} + +.sc-numeric-input .sc-numeric-input-buttons .ic-icon:last-child { + border-radius: 0 0 3px; +} + +.smartcharts-light .sc-numeric-input .sc-numeric-input-buttons .ic-icon:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-numeric-input .sc-numeric-input-buttons .ic-icon:hover { + background: #242828; +} + +.smartcharts-light .sc-numeric-input:hover input[type='number'] { + border-color: #999; +} + +.smartcharts-dark .sc-numeric-input:hover input[type='number'] { + border-color: #6e6e6e; +} + +.sc-fontsetting .cq-text-icon { + margin-right: 5px; +} + +.cq-text-icon { + justify-content: space-around; + align-items: center; + vertical-align: middle; + display: inline-flex; + font-family: serif; + font-size: 1.5em; +} + +.sc-changefontsize { + width: 56px; + margin-right: 5px; +} + +.sc-changefontfamily { + width: 138px; +} + +.sc-toggle { + display: flex; + justify-content: space-around; + align-items: center; +} + +.sc-toggle>.ic-icon, +.sc-chart-controls .ic-icon-with-sub { + width: 24px; + height: 24px; +} + +.sc-chart-size { + display: flex !important; + height: auto; + width: auto !important; +} + +.sc-chart-size:after { + display: none; +} + +.sc-chart-size>span { + opacity: 1; + position: relative; + cursor: pointer; + transition: scale 0.25s; +} + +.sc-chart-size .cq-menu-btn { + cursor: pointer; + padding: 5px 0px; +} + +.smartcharts-light .sc-chart-size .cq-menu-btn:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-chart-size .cq-menu-btn:hover { + background: #242828; +} + +.sc-chart-size .interval-title { + white-space: nowrap; + width: auto; + line-height: 25px; + display: none; +} + +.sc-dtools .tabs--vertical .react-tabs__tab-list { + padding-top: 0px !important; +} + +.sc-dtools--empty { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + height: 100%; +} + +.sc-dtools--empty>.ic-icon { + width: 130px; + height: 130px; + margin: 0 auto 24px; +} + +.sc-dtools--empty p { + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; + margin: 0 0 46px; +} + +.smartcharts-light .sc-dtools--empty p { + color: #6e6e6e; +} + +.smartcharts-dark .sc-dtools--empty p { + color: #999; +} + +.sc-dtools__panel { + width: 360px; + height: 392px; + padding: 16px 0 16px 8px; + box-sizing: border-box; + display: flex; + flex-direction: column; +} + +.sc-dtools__panel__head { + text-align: right; + padding: 0 16px 16px; +} + +.sc-dtools__panel__head .sc-btn { + cursor: pointer; +} + +.sc-dtools__panel__content { + box-sizing: border-box; +} + +.sc-dtools__panel__content--active .sc-dtools__list__item { + height: 48px; + padding: 4px 16px; + cursor: auto; + cursor: initial; +} + +.sc-dtools__list__item { + height: 40px; + padding: 10px 16px; + display: flex; + margin-right: 8px; + border-radius: 4px; + box-sizing: border-box; + justify-content: space-between; + align-items: center; + cursor: pointer; +} + +.smartcharts-light .sc-dtools__list__item { + color: #333; +} + +.smartcharts-dark .sc-dtools__list__item { + color: #c2c2c2; +} + +.smartcharts-light .sc-dtools__list__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-dtools__list__item:hover { + background: #242828; +} + +.sc-dtools__list__item .info { + display: flex; + align-items: center; +} + +.sc-dtools__list__item .info .text { + display: flex; + flex-direction: column; + padding-left: 16px; +} + +.sc-dtools__list__item .info .text span { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin-right: 16px; +} + +.sc-dtools__list__item .info .text small { + display: block; + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + margin-top: 2px; +} + +.smartcharts-light .sc-dtools__list__item .info .text small { + color: #999; +} + +.smartcharts-dark .sc-dtools__list__item .info .text small { + color: #6e6e6e; +} + +.sc-dtools__list__item .actions { + display: flex; + justify-content: space-between; +} + +.sc-dtools__list__item .actions small { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: right; +} + +.sc-dtools__list__item .actions .ic-icon { + cursor: pointer; +} + +.smartcharts-light .sc-dtools__list__item .actions .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-dtools__list__item .actions .ic-icon svg { + fill: #c2c2c2; +} + +.sc-dtools__category { + margin-top: 16px; +} + +.sc-dtools__category__head { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin-bottom: 8px; +} + +.smartcharts-light .sc-dtools__category__head { + color: #999; +} + +.smartcharts-dark .sc-dtools__category__head { + color: #6e6e6e; +} + +.sc-dtools .cq-menu-dropdown { + width: 200px; + box-sizing: border-box; + overflow: visible !important; +} + +.sc-dtools .cq-menu-dropdown .body { + padding: 0 7px 0 16px; + overflow: visible; +} + +.sc-dtools .cq-menu-dropdown .body .cq-draw-buttons { + display: flex; + margin-top: 18px; +} + +.sc-dtools .cq-menu-dropdown .body .cq-draw-buttons+div { + border-radius: 4px 4px 0 0; +} + +.sc-dtools .cq-menu-dropdown .body .cq-draw-button { + flex: 1; + display: flex; + justify-content: center; + cursor: pointer; + margin: 0 0 8px; + border-radius: 3px; + font-weight: bold; +} + +.smartcharts-light .sc-dtools .cq-menu-dropdown .body .cq-draw-button { + border: solid #d6dadb 1px; +} + +.smartcharts-dark .sc-dtools .cq-menu-dropdown .body .cq-draw-button { + border: solid #323738 1px; +} + +.sc-dtools .cq-menu-dropdown .body .ciq-list { + padding-right: 9px; +} + +.sc-chart-setting .tabs--vertical .react-tabs__tab-list { + padding-top: 0px !important; +} + +.sc-chart-setting__panel { + width: 536px; + height: 564px; + padding: 24px; + box-sizing: border-box; +} + +.sc-chart-setting__list__item { + height: 40px; + display: flex; + border-radius: 4px; + box-sizing: border-box; + cursor: pointer; + justify-content: space-between; + align-items: center; +} + +.smartcharts-light .sc-chart-setting__list__item { + color: #333; +} + +.smartcharts-dark .sc-chart-setting__list__item { + color: #eaeced; +} + +.sc-chart-setting__list__item .text { + display: flex; + justify-content: start; + align-items: center; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin-right: 16px; + width: 100%; + padding: 8px 0 8px 16px; +} + +.sc-chart-setting__list__item .action { + margin-right: 20px; +} + +.sc-chart-setting__list__item .action--position { + display: flex; +} + +.sc-chart-setting__list__item .action--position .ic-icon { + opacity: 0.6; +} + +.smartcharts-light .sc-chart-setting__list__item .action--position .ic-icon { + fill: #333; + stroke: #333; +} + +.smartcharts-dark .sc-chart-setting__list__item .action--position .ic-icon { + fill: #eaeced; + stroke: #eaeced; +} + +.sc-chart-setting__list__item .action--position .ic-icon svg { + height: 20px; + width: 20px; +} + +.sc-chart-setting__list__item .action--position .ic-icon.active { + opacity: 1; +} + +.sc-chart-setting .form__group { + margin-bottom: 24px; +} + +.sc-chart-setting .form__group .form__label { + font-size: 14px; + font-weight: bold; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + margin-bottom: 16px; +} + +.smartcharts-light .sc-chart-setting .form__group .form__label { + color: #333; +} + +.smartcharts-dark .sc-chart-setting .form__group .form__label { + color: #fff; +} + +.smartcharts-light .sc-chart-setting .form__group .sc-checkbox .sc-checkbox__label { + color: #333; +} + +.smartcharts-dark .sc-chart-setting .form__group .sc-checkbox .sc-checkbox__label { + color: #eaeced; +} + +.sc-chart-setting .form__group--theme .form__control { + display: flex; + justify-content: space-between; +} + +.sc-chart-setting .form__group--theme .form__group__item { + cursor: pointer; + border-radius: 4px; + text-align: center; +} + +.sc-chart-setting .form__group--theme .form__group__item .ic-icon { + border-radius: 4px; + border: 1px solid transparent; + width: 238px; + height: 182px; + cursor: pointer; +} + +.sc-chart-setting .form__group--theme .form__group__item .text { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; + padding-top: 8px; +} + +.smartcharts-light .sc-chart-setting .form__group--theme .form__group__item .text { + color: #333; +} + +.smartcharts-dark .sc-chart-setting .form__group--theme .form__group__item .text { + color: #eaeced; +} + +.smartcharts-light .sc-chart-setting .form__group--theme .form__group__item--active .ic-icon { + border-color: #85acb0; +} + +.smartcharts-dark .sc-chart-setting .form__group--theme .form__group__item--active .ic-icon { + border-color: #85acb0; +} + +.sc-chart-setting .form__group--theme .form__group__item--active .text { + font-weight: bold; +} + +.sc-chart-setting .form__group--language .form__control { + display: flex; + flex-wrap: wrap; +} + +.sc-chart-setting .form__group--language .form__group__item { + width: 80px; + height: 84px; + text-align: center; + border-radius: 4px; + border: 1px solid transparent; + cursor: pointer; + box-sizing: border-box; + margin: 0 16px 16px 0; +} + +.sc-chart-setting .form__group--language .form__group__item .ic-icon { + margin: 16px auto 8px; + width: 36px; + height: 24px; +} + +.sc-chart-setting .form__group--language .form__group__item .ic-icon svg { + width: 36px; + height: 24px; +} + +.sc-chart-setting .form__group--language .form__group__item .text { + display: block; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .sc-chart-setting .form__group--language .form__group__item .text { + color: #333; +} + +.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item .text { + color: #eaeced; +} + +.smartcharts-light .sc-chart-setting .form__group--language .form__group__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item:hover { + background: #242828; +} + +.sc-chart-setting .form__group--language .form__group__item--active { + background: transparent !important; +} + +.smartcharts-light .sc-chart-setting .form__group--language .form__group__item--active { + border-color: #85acb0; +} + +.smartcharts-dark .sc-chart-setting .form__group--language .form__group__item--active { + border-color: #85acb0; +} + +.sc-download-menu .sc-dialog { + width: 320px; +} + +.sc-download { + padding: 24px; + display: flex; + border-radius: 4px; +} + +.smartcharts-light .sc-download { + background: #fff; + color: #333; +} + +.smartcharts-dark .sc-download { + background: #151717; + color: #c2c2c2; +} + +.sc-download__item { + width: 88px; + height: 88px; + padding: 16px; + box-sizing: border-box; + border-radius: 4px; + text-align: center; + cursor: pointer; + position: relative; + margin-right: 8px; +} + +.sc-download__item .ic-icon { + width: 32px; + height: 32px; + margin: 0 auto 4px; +} + +.smartcharts-light .sc-download__item:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-download__item:hover { + background: #242828; +} + +.sc-download__item__label { + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + display: block; +} + +.sc-download__item--loading>.sc-download__item__label, +.sc-download__item--loading>.ic-icon { + opacity: 0.32; +} + +.smartcharts-mobile .sc-download { + justify-content: space-around; +} + +.smartcharts-mobile .sc-download__item { + margin: 0px; +} + +.smartcharts-mobile .sc-download-menu .sc-dialog { + left: auto; + width: 300px; +} + +.sc-dialog { + width: auto; + top: auto; + border-radius: 4px; + position: absolute; + opacity: 0; + box-shadow: 0 0 0.63em 0.03em rgba(0,0,0,0.14); + z-index: -3; + pointer-events: none; + transform: translateY(3em); + transition: pointer-events 0.2s cubic-bezier(0.64, 0.04, 0.35, 1),transform 0.25s cubic-bezier(0.64, 0.04, 0.35, 1),opacity 0.17s cubic-bezier(0.64, 0.04, 0.35, 1),z-index 0.17s cubic-bezier(0.64, 0.04, 0.35, 1); +} + +.smartcharts-light .sc-dialog { + background: #f2f3f4; +} + +.smartcharts-dark .sc-dialog { + background: #0e0e0e; +} + +.sc-dialog.sc-dialog-enter-done, +.sc-dialog.sc-dialog-enter-active { + opacity: 1; + transform: none; + z-index: 3; +} + +.sc-dialog.sc-dialog-enter-done { + pointer-events: initial; +} + +.sc-dialog__head { + display: flex; + justify-content: space-between; + border-radius: 4px 4px 0 0; + height: 56px; + box-sizing: border-box; + border-bottom: 2px solid; +} + +.smartcharts-light .sc-dialog__head { + color: #333; + background: #fff; + border-color: #f4f4f6; +} + +.smartcharts-dark .sc-dialog__head { + color: #fff; + background: #151717; + border-color: #0e0e0e; +} + +.sc-dialog__head--title { + font-size: 16px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + min-width: 240px; + padding: 16px; + border-radius: 5px 0 0; + position: relative; + box-sizing: border-box; +} + +.sc-dialog__head--custom { + width: 100%; +} + +.sc-dialog__head--info { + display: flex; + justify-content: flex-start; + align-items: center; + font-size: 16px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + padding: 10px 8px 10px 16px; +} + +.sc-dialog__head--info .ic-icon { + width: 32px; + height: 32px; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + margin-right: 4px; +} + +.smartcharts-light .sc-dialog__head--info .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-dialog__head--info .ic-icon svg { + fill: #c2c2c2; +} + +.smartcharts-light .sc-dialog__head--info .ic-icon:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-dialog__head--info .ic-icon:hover { + background: #242828; +} + +.sc-dialog__head--search { + padding: 10px 0px 10px 12px; +} + +.sc-dialog__head--action { + padding: 16px; + border-radius: 0 5px 0 0; +} + +.sc-dialog__head--action .ic-icon { + width: 32px; + height: 32px; + line-height: 34px; + cursor: pointer; + border-radius: 4px; + padding: 4px; + position: relative; + top: -6px; +} + +.smartcharts-light .sc-dialog__head--action .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-dialog__head--action .ic-icon svg { + fill: #c2c2c2; +} + +.smartcharts-light .sc-dialog__head--action .ic-icon:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-dialog__head--action .ic-icon:hover { + background: #242828; +} + +.sc-dialog__body { + border-radius: 0 0 4px 4px; + position: relative; +} + +.smartcharts-light .sc-dialog--tabular .sc-dialog__head { + background: #fff; + border-color: #f2f3f4; +} + +.smartcharts-dark .sc-dialog--tabular .sc-dialog__head { + background: #0e0e0e; + border-color: #151717; +} + +.sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + width: 200px; +} + +.smartcharts-light .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + background: #f2f3f4; +} + +.smartcharts-dark .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + background: #151717; +} + +.tabs--vertical { + display: flex; + border-radius: 0 0 4px 4px; +} + +.tabs--vertical .react-tabs__tab-list { + margin: 0px; + width: 240px; + min-width: 240px; + border-radius: 0 0 0 5px; + border-bottom: none; + padding: 0; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list { + background: #f2f3f4; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list { + background: #151717; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab { + width: 100%; + display: flex; + box-sizing: border-box; + padding: 10px 12px; + border: none; + border-radius: 0px; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + align-items: center; + outline: none !important; + box-shadow: none !important; + cursor: pointer; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab { + color: #333; + border-left: 4px solid #f2f3f4; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab { + color: #c2c2c2; + border-left: 4px solid #151717; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon { + width: 16px; + height: 16px; + line-height: 27px; + margin-right: 16px; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon { + fill: #333; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon { + fill: #c2c2c2; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg { + width: 16px; + height: 16px; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab .ic-icon svg { + fill: #c2c2c2; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab .sc-notification-badge { + position: relative; + margin-left: 5px; + top: 0px; + left: 0px; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab:hover { + border-left-color: #e6e9e9; + background: #e6e9e9; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab:hover { + border-left-color: #242828; + background: #242828; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab:after { + display: none !important; +} + +.tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected { + border-radius: 0px; + font-weight: bold; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected { + color: !important; + background: #fff !important; + border-left-color: #ff444f !important; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected { + color: #fff !important; + background: #0e0e0e !important; + border-left-color: #ff444f !important; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-list .react-tabs__tab--selected .ic-icon { + fill: #fff; +} + +.tabs--vertical .react-tabs__tab-panel { + width: calc(100% - 200px); + border-radius: 0 0 4px; +} + +.smartcharts-light .tabs--vertical .react-tabs__tab-panel { + background: #fff; +} + +.smartcharts-dark .tabs--vertical .react-tabs__tab-panel { + background: #0e0e0e; +} + +.tabs--vertical .react-tabs__tab-panel .items { + border-radius: 0 0 4px; +} + +.smartcharts-mobile .sc-dialog { + left: 10px; + width: calc(100% - 20px); +} + +.smartcharts-mobile .sc-dialog .react-tabs__tab-panel { + height: 430px; +} + +.smartcharts-mobile .sc-dialog .cq-titlebar { + height: 40px; + display: flex; + align-items: center; + padding: 0 15px; +} + +.smartcharts-light .smartcharts-mobile .sc-dialog .cq-titlebar { + color: #333; + border-bottom: 2px solid #f2f3f4; +} + +.smartcharts-dark .smartcharts-mobile .sc-dialog .cq-titlebar { + color: #fff; + border-bottom: 2px solid #0e0e0e; +} + +.smartcharts-mobile .sc-dialog .cq-titlebar :last-child { + margin-left: auto; +} + +.smartcharts-mobile .sc-dialog .cq-titlebar .cq-title { + font-size: 1.4em; + font-weight: bold; + padding-left: 10px; +} + +.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head { + background: #fff; + border-color: #f2f3f4; +} + +.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head { + background: #0e0e0e; + border-color: #151717; +} + +.smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + width: 150px; + min-width: 150px; + padding: 16px 8px; +} + +.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + border-left: 50px solid #f2f3f4; + background: transparent; +} + +.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--title { + border-left: 50px solid #151717; + background: transparent; +} + +.smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info { + position: absolute; + left: 50px; + width: calc(100% - 90px); + padding: 10px 8px; + font-size: 14px; +} + +.smartcharts-light .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info { + background: #fff; +} + +.smartcharts-dark .smartcharts-mobile .sc-dialog--tabular .sc-dialog__head .sc-dialog__head--info { + background: #0e0e0e; +} + +.smartcharts-mobile .cq-modal--settings .sc-dialog { + width: 320px; + left: calc(50% - 160px); +} + +@media (max-width: 767px) and (min-width: 320px) { + .smartcharts-portal { + opacity: 0; + pointer-events: none; + display: none; + } + + .smartcharts-portal--open { + display: block; + pointer-events: auto; + opacity: 1; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-modal-dropdown.stxMenuActive { + z-index: 9999; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown { + width: 100%; + height: auto; + left: 0px; + bottom: auto; + transform: translateX(0) translateY(-3em); + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.open { + margin: 0px; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done, + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-active { + opacity: 1; + transform: translateX(0) translateY(0em); + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done { + z-index: 6; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown .cq-dialog__body { + height: 100% !important; + box-shadow: none; + display: flex; + flex-direction: column; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown .cq-categorical-display { + flex: 1; + box-shadow: none; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown .category-title.sticky-top { + top: unset; + } + + .smartcharts-portal .smartcharts .smartcharts-mobile .cq-menu-dropdown .cq-scroll-panel .category:last-child { + padding-bottom: 8em; + } +} + +.ciq-list { + position: relative; + box-sizing: border-box; +} + +.ciq-list.ps { + padding-right: 11px; +} + +.ciq-list.scrollbar-container .ciq-list-item:first-child { + margin-top: 16px; +} + +.ciq-list.scrollbar-container .ciq-list-item:nth-last-child(-n+3) { + margin-bottom: 16px; +} + +.ciq-list .ciq-list-item { + cursor: pointer; + line-height: normal; + font-size: 1.2em; + height: auto; + padding: 8px 16px; + display: flex; + align-items: center; + justify-content: flex-start; + border-bottom: none; + box-sizing: border-box; +} + +.smartcharts-light .ciq-list .ciq-list-item { + color: #333; + background: #fff; + border: 1px solid #eaeced; + border-top: none; +} + +.smartcharts-dark .ciq-list .ciq-list-item { + color: #c2c2c2; + background: #0e0e0e; + border: 1px solid #1d1f20; + border-top: none; +} + +.ciq-list .ciq-list-item:first-child { + margin-top: 18px; + border-radius: 4px 4px 0 0; +} + +.smartcharts-light .ciq-list .ciq-list-item:first-child { + border-top: 1px solid #eaeced; +} + +.smartcharts-dark .ciq-list .ciq-list-item:first-child { + border-top: 1px solid #1d1f20; +} + +.ciq-list .ciq-list-item:last-child { + border-radius: 0 0 4px 4px; + margin-bottom: 18px; +} + +.smartcharts-light .ciq-list .ciq-list-item:hover { + background-color: #e6e9e9; +} + +.smartcharts-dark .ciq-list .ciq-list-item:hover { + background-color: #242828; +} + +.ciq-list .ciq-list-item.active { + font-weight: bold; +} + +.smartcharts-light .ciq-list .ciq-list-item.active { + color: #2a3052; + background-color: rgba(0,0,0,0.16); +} + +.smartcharts-dark .ciq-list .ciq-list-item.active { + color: #fff; + background-color: #323738; +} + +.ciq-list .ciq-list-item.disabled { + pointer-events: none; +} + +.ciq-list .ciq-list-item.disabled>* { + opacity: 0.2; + cursor: auto; +} + +.ciq-list>div:nth-child(3)>div { + opacity: 0.16; +} + +.smartcharts-light .ciq-list>div:nth-child(3)>div { + background-color: #333 !important; +} + +.smartcharts-dark .ciq-list>div:nth-child(3)>div { + background-color: #c2c2c2 !important; +} + +.react-tabs { + -webkit-tap-highlight-color: transparent; +} + +.react-tabs__tab-list { + border-bottom: 1px solid #aaa; + margin: 0 0 10px; + padding: 0; +} + +.react-tabs__tab { + display: inline-block; + border: 1px solid transparent; + border-bottom: none; + bottom: -1px; + position: relative; + list-style: none; + padding: 6px 12px; + cursor: pointer; +} + +.react-tabs__tab--selected { + background: #fff; + border-color: #aaa; + color: black; + border-radius: 5px 5px 0 0; +} + +.react-tabs__tab--disabled { + color: GrayText; + cursor: default; +} + +.react-tabs__tab:focus { + box-shadow: 0 0 5px #0188fe; + border-color: #0188fe; + outline: none; +} + +.react-tabs__tab:focus:after { + content: ""; + position: absolute; + height: 5px; + left: -4px; + right: -4px; + bottom: -5px; + background: #fff; +} + +.react-tabs__tab-panel { + display: none; +} + +.react-tabs__tab-panel--selected { + display: block; +} + +.cq-chart-settings { + display: flex; + flex-direction: column; + height: auto !important; +} + +.cq-chart-settings .ciq-num-input>input[type=number] { + width: 5.5em; +} + +.cq-chart-settings .titlebar { + height: 40px; + display: flex; + justify-content: space-between; + align-items: center; +} + +.smartcharts-light .cq-chart-settings .titlebar { + color: #000; +} + +.smartcharts-dark .cq-chart-settings .titlebar { + color: #fff; +} + +.cq-chart-settings .titlebar .title { + font-size: 1.4em; + padding-left: 16px; + font-weight: bold; +} + +.cq-chart-settings .titlebar .icons { + display: flex; + align-items: center; + height: 50px; + cursor: pointer; +} + +.smartcharts-light .cq-chart-settings .titlebar .icons svg { + fill: #000; +} + +.smartcharts-dark .cq-chart-settings .titlebar .icons svg { + fill: #fff; +} + +.smartcharts-light .cq-chart-settings .titlebar.no-tabs { + border-bottom: 1px solid #f4f4f6; +} + +.smartcharts-dark .cq-chart-settings .titlebar.no-tabs { + border-bottom: 1px solid #0e0e0e; +} + +.cq-chart-settings .tabs { + height: 40px; + align-items: stretch; + display: flex; + position: relative; + box-sizing: border-box; +} + +.smartcharts-light .cq-chart-settings .tabs { + border-bottom: 1px solid #f4f4f6; +} + +.smartcharts-dark .cq-chart-settings .tabs { + border-bottom: 1px solid #0e0e0e; +} + +.cq-chart-settings .tabs>div { + text-align: center; + line-height: 40px; + width: 50%; + cursor: pointer; + font-size: 1.4em; +} + +.cq-chart-settings .tabs>div.active { + font-weight: bold; +} + +.cq-chart-settings .tabs .active-border { + position: absolute; + height: 2px; + width: calc(50% + 1px); + bottom: -1px; + left: 0; + transition: left linear 0.1s; +} + +.smartcharts-light .cq-chart-settings .tabs .active-border { + background: #7f8397; +} + +.smartcharts-dark .cq-chart-settings .tabs .active-border { + background: #191c31; +} + +.cq-chart-settings .tabs .active-border.second { + left: 50%; +} + +.cq-chart-settings .buttons { + display: flex; + justify-content: space-between; + padding: 16px 24px 24px; + border-radius: 0 0 4px 4px; + height: 72px; + box-sizing: border-box; +} + +.smartcharts-light .cq-chart-settings .buttons { + background: #fff; + border-top: 1px solid #f2f3f4; +} + +.smartcharts-dark .cq-chart-settings .buttons { + background: #151717; + border-top: 1px solid #0e0e0e; +} + +.cq-chart-settings .buttons .sc-btn--delete { + cursor: pointer; + padding: 5px; + width: 32px; + height: 32px; + border-radius: 4px; +} + +.smartcharts-light .cq-chart-settings .buttons .sc-btn--delete svg { + fill: #333; +} + +.smartcharts-dark .cq-chart-settings .buttons .sc-btn--delete svg { + fill: #c2c2c2; +} + +.smartcharts-light .cq-chart-settings .buttons .sc-btn--delete:hover { + background: #e6e9e9; +} + +.smartcharts-dark .cq-chart-settings .buttons .sc-btn--delete:hover { + background: #242828; +} + +.cq-chart-settings .buttons .sc-btn--reset { + margin-right: 8px; + padding: 5px 12px; +} + +.cq-chart-settings .description { + flex-grow: 1; + padding: 16px; + font-size: 1.2em; + line-height: 18px; +} + +.cq-chart-settings input[type=number] { + display: inline-block; + width: 3.2em; + line-height: 1.6em; + margin-right: 5px; + padding-left: 6px; + border-radius: 3px; + font-size: 14px; +} + +.smartcharts-mobile .cq-dialog-active { + visibility: visible; + z-index: 1; +} + +.smartcharts-mobile .cq-settings-dialog .items { + padding: 5px 0; +} + +.smartcharts-mobile .cq-settings-dialog .items .item { + height: 28px; +} + +.sc-search-input { + width: 100%; + padding: 0px; + box-sizing: border-box; + position: relative; +} + +.sc-search-input>input { + padding-left: 32px; + line-height: 2; + font-size: 1.4rem; + border: none; + outline: 0; + background-color: transparent; + border-radius: 4px; + width: 100%; + box-sizing: border-box; + transition: border-color 0.2s ease-in-out; +} + +.smartcharts-light .sc-search-input>input::-webkit-input-placeholder { + color: #d6d6d6; +} + +.smartcharts-dark .sc-search-input>input::-webkit-input-placeholder { + color: #3e3e3e; +} + +.smartcharts-light .sc-search-input>input:-moz-placeholder { + color: #d6d6d6; +} + +.smartcharts-dark .sc-search-input>input:-moz-placeholder { + color: #3e3e3e; +} + +.smartcharts-light .sc-search-input>input::-moz-placeholder { + color: #d6d6d6; +} + +.smartcharts-dark .sc-search-input>input::-moz-placeholder { + color: #3e3e3e; +} + +.smartcharts-light .sc-search-input>input:-ms-input-placeholder { + color: #d6d6d6; +} + +.smartcharts-dark .sc-search-input>input:-ms-input-placeholder { + color: #3e3e3e; +} + +.smartcharts-light .sc-search-input>input { + color: #333; + border: 1px solid #d6dadb; + background: #fff; +} + +.smartcharts-dark .sc-search-input>input { + color: #fff; + border: 1px solid #323738; + background: #0e0e0e; +} + +.smartcharts-light .sc-search-input>input:hover { + border-color: #999; +} + +.smartcharts-dark .sc-search-input>input:hover { + border-color: #999; +} + +.smartcharts-light .sc-search-input>input:focus { + border-color: #85acb0; +} + +.smartcharts-dark .sc-search-input>input:focus { + border-color: #85acb0; +} + +.sc-search-input .ic-icon { + position: absolute; + top: 6px; + left: 8px; + width: 16px; + height: 16px; +} + +.sc-search-input .ic-icon svg { + width: 16px; + height: 16px; + top: -1px; +} + +.smartcharts-light .sc-search-input .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-search-input .ic-icon svg { + fill: #c2c2c2; +} + +.sc-search-input .ic-icon.icon-reset { + left: auto; + right: 8px; + opacity: 0; + top: 5px; + pointer-events: none; + cursor: pointer; +} + +.sc-search-input .ic-icon.icon-reset svg { + stroke: none; +} + +.smartcharts-light .sc-search-input .ic-icon.icon-reset svg { + fill: #999; +} + +.smartcharts-dark .sc-search-input .ic-icon.icon-reset svg { + fill: #333; +} + +.smartcharts-light .sc-search-input.active>input { + color: #333 !important; + border-color: #85acb0 !important; +} + +.smartcharts-dark .sc-search-input.active>input { + color: #fff !important; + border-color: #85acb0 !important; +} + +.sc-search-input.active .ic-icon.icon-reset { + opacity: 1; + pointer-events: initial; +} + +.sc-mcd { + width: 560px; + display: flex; + height: 100%; +} + +.smartcharts-light .sc-mcd { + color: #333; + background: #fff; + box-shadow: 0 2px 8px 0 #999cac; +} + +.smartcharts-dark .sc-mcd { + color: #c2c2c2; + background: #0e0e0e; + box-shadow: 0 2px 8px 0 #191c31; +} + +.sc-mcd__tabs { + width: 240px; + box-sizing: border-box; +} + +.smartcharts-light .sc-mcd__tabs { + background: #f2f3f4; +} + +.smartcharts-dark .sc-mcd__tabs { + background: #151717; +} + +.sc-mcd__tabs__head { + height: 56px; + padding: 16px 24px; + box-sizing: border-box; + font-size: 16px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; +} + +.sc-mcd__content { + width: 320px; + display: flex; + flex-direction: column; +} + +.sc-mcd__content__head { + height: 56px; + padding: 12px 16px 10px; + box-sizing: border-box; +} + +.smartcharts-light .sc-mcd__content__head { + border-bottom: 2px solid #f2f3f4; +} + +.smartcharts-dark .sc-mcd__content__head { + border-bottom: 2px solid #151717; +} + +.sc-mcd__content__body { + height: calc(100% - 56px); + transform: translateZ(0); + position: relative; +} + +.sc-mcd__content__body__scroll { + overflow-y: auto; + position: relative; + height: 100%; +} + +.sc-mcd__filter { + margin: 0px; + width: 240px; + min-width: 240px; + border-radius: 0 0 0 5px; + border-bottom: none; + padding: 0; +} + +.sc-mcd__filter__item { + width: 100%; + display: flex; + box-sizing: border-box; + padding: 10px 12px; + border-radius: 0px; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + align-items: center; + outline: none !important; + box-shadow: none !important; + cursor: pointer; +} + +.smartcharts-light .sc-mcd__filter__item { + border-left: 4px solid #f2f3f4; +} + +.smartcharts-dark .sc-mcd__filter__item { + border-left: 4px solid #0e0e0e; +} + +.sc-mcd__filter__item .ic-icon { + display: inline-flex; + vertical-align: middle; + width: 16px; + height: 16px; + margin-right: 1.3em; + position: relative; + top: 2px; +} + +.smartcharts-light .sc-mcd__filter__item:hover { + background-color: #e6e9e9; + border-left-color: #e6e9e9; +} + +.smartcharts-dark .sc-mcd__filter__item:hover { + background-color: #242828; + border-left-color: #242828; +} + +.sc-mcd__filter__item--selected { + font-weight: 800; +} + +.smartcharts-light .sc-mcd__filter__item--selected { + color: #333; + background-color: #fff !important; + border-left-color: #e31c4b !important; +} + +.smartcharts-dark .sc-mcd__filter__item--selected { + color: #fff; + background-color: #0e0e0e !important; + border-left-color: #ff444f !important; +} + +.smartcharts-light .sc-mcd__filter__item--selected .ic-icon svg { + fill: #333; + stroke: #333; +} + +.smartcharts-dark .sc-mcd__filter__item--selected .ic-icon svg { + fill: #fff; + stroke: #fff; +} + +.sc-mcd__list { + width: 100%; +} + +.sc-mcd__category { + padding-bottom: 12px; + position: relative; +} + +.smartcharts-light .sc-mcd__category { + border-bottom: 4px solid #f2f3f4; +} + +.smartcharts-dark .sc-mcd__category { + border-bottom: 4px solid #151717; +} + +.sc-mcd__category .empty-category { + padding: 0.9em 1.2em; + border-radius: 4px; + font-size: 14px; +} + +.smartcharts-light .sc-mcd__category .empty-category { + background-color: #fff; +} + +.smartcharts-dark .sc-mcd__category .empty-category { + background-color: #0e0e0e; +} + +.sc-mcd__category:last-child { + margin-bottom: 10px !important; + border-bottom: none; +} + +.sc-mcd__category--has-subtitle { + padding-top: 6.5em; +} + +.sc-mcd__category--favorite .sc-mcd__category__content { + margin: 0 3px 4px 8px; +} + +.sc-mcd__category__head { + display: block; + font-size: 1.4em; + font-weight: bold; + padding: 0 20px; + line-height: 40px; + position: relative; + top: 0; + transform: translate3d(0, 0, 0); +} + +.smartcharts-light .sc-mcd__category__head { + color: #333; +} + +.smartcharts-dark .sc-mcd__category__head { + color: #fff; +} + +.sc-mcd__category__head.sticky-top, +.sc-mcd__category__head.sticky-bottom { + z-index: 8; + padding-top: 0px; + height: 40px; +} + +.smartcharts-light .sc-mcd__category__head.sticky-top, +.smartcharts-light .sc-mcd__category__head.sticky-bottom { + background-color: #fff; + border-bottom: 1px solid #fff; +} + +.smartcharts-dark .sc-mcd__category__head.sticky-top, +.smartcharts-dark .sc-mcd__category__head.sticky-bottom { + background-color: #0e0e0e; + border-bottom: 1px solid #0e0e0e; +} + +.sc-mcd__category__head.sticky-top.has-subtitle, +.sc-mcd__category__head.sticky-bottom.has-subtitle { + height: 60px; +} + +.sc-mcd__category__head.sticky-bottom { + position: absolute; + top: auto !important; + bottom: 0px !important; +} + +.sc-mcd__category__head.sticky-top { + position: fixed; + top: 0px; + z-index: 9; + padding-right: 25px; +} + +.sc-mcd__category__head .category-name-postfix { + margin-left: 5px; +} + +.sc-mcd__category__head .category-subtitle { + font-weight: normal; + line-height: normal; +} + +.smartcharts-light .sc-mcd__category__head .category-subtitle { + color: #7f8397; +} + +.smartcharts-dark .sc-mcd__category__head .category-subtitle { + color: #eaeced; +} + +.sc-mcd__category__content--has-subcategory { + margin: 0 3px 4px 8px; + border-radius: 4px; +} + +.smartcharts-light .sc-mcd__category__content--has-subcategory { + border: 1px solid #fff; +} + +.smartcharts-dark .sc-mcd__category__content--has-subcategory { + border: 1px solid #0e0e0e; +} + +.sc-mcd__category__content--has-subcategory.has-subcategory>div:nth-child(2) { + border-radius: 4px 4px 0 0; +} + +.sc-mcd__category__content--has-subcategory:last-child { + margin-bottom: 0px; +} + +.sc-mcd__category__content .subcategory { + padding: 0 20px; + font-size: 1.4em; + border-radius: 4px 4px 0 0; + display: flex; + height: 40px; + font-weight: bold; + align-items: center; +} + +.smartcharts-light .sc-mcd__category__content .subcategory { + color: #333; + background-color: #fff; +} + +.smartcharts-dark .sc-mcd__category__content .subcategory { + color: #fff; + background-color: #0e0e0e; +} + +.sc-mcd__item { + padding-left: 20px; + padding-right: 20px; + display: flex; + height: 40px; + align-items: center; + justify-content: space-between; + line-height: normal; + line-height: initial; + font-size: 1.4em; + cursor: pointer; +} + +.smartcharts-light .sc-mcd__item { + border-bottom: 1px solid #fff; + background-color: #fff; +} + +.smartcharts-dark .sc-mcd__item { + border-bottom: 1px solid #0e0e0e; + background-color: #0e0e0e; +} + +.sc-mcd__item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.sc-mcd__item:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-bottom: none; +} + +.sc-mcd__item:not(:first-child):not(:last-child) { + border-radius: 4px; +} + +.sc-mcd__item__name { + display: flex; + align-items: center; +} + +.sc-mcd__item__name>span { + margin-right: 16px; +} + +.sc-mcd__item__detail { + display: flex; + align-items: center; +} + +.smartcharts-light .sc-mcd__item__detail .ic-icon svg { + fill: #333; + stroke: #333; +} + +.smartcharts-dark .sc-mcd__item__detail .ic-icon svg { + fill: #999; + stroke: #999; +} + +.sc-mcd__item .closed-market { + border: 1px solid #f44336; + color: #f44336; + padding: 3px 6px; + font-size: 0.64em; + border-radius: 4px; +} + +.smartcharts-light .sc-mcd__item:hover { + color: #333; + background: #e6e9e9; +} + +.smartcharts-dark .sc-mcd__item:hover { + color: #fff; + background: #242828; +} + +.smartcharts-light .sc-mcd__item:hover .sc-mcd__item__detail .ic-icon svg { + fill: #333; + stroke: #333; +} + +.smartcharts-dark .sc-mcd__item:hover .sc-mcd__item__detail .ic-icon svg { + fill: #fff; + stroke: #fff; +} + +.smartcharts-light .sc-mcd__item--selected { + color: #333 !important; + background: #d6dadb !important; +} + +.smartcharts-dark .sc-mcd__item--selected { + color: #fff !important; + background: #323738 !important; +} + +.sc-mcd__item--selected .sc-mcd__item__name { + font-weight: bold; +} + +.smartcharts-light .sc-mcd__item--selected .sc-mcd__item__detail .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-mcd__item--selected .sc-mcd__item__detail .ic-icon svg { + fill: #999; +} + +.sc-mcd--nested .sc-mcd__category { + width: 100%; + padding: 0px; + max-height: 40px; + overflow-y: hidden; + border-bottom: none; + transition: max-height 0.5s ease-in-out; +} + +.sc-mcd--nested .sc-mcd__category__head { + display: flex; + justify-content: space-between; + box-sizing: border-box; + align-items: center; + position: relative; + padding-left: 17px; + padding-right: 20px; + cursor: pointer; +} + +.sc-mcd--nested .sc-mcd__category__head.sticky-top { + position: relative; + top: 0px !important; +} + +.sc-mcd--nested .sc-mcd__category__head .category-title-left { + display: flex; + align-items: center; +} + +.sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon { + margin-right: 16px; + position: relative; + top: -1px; +} + +.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon { + color: #333; +} + +.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon { + color: #c2c2c2; +} + +.sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg { + width: 24px; + height: 24px; +} + +.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .category-title-left .ic-icon svg { + fill: #c2c2c2; +} + +.sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow { + transition: transform 0.3s ease-in-out; +} + +.smartcharts-light .sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow { + fill: #333; +} + +.smartcharts-dark .sc-mcd--nested .sc-mcd__category__head .ic-icon.arrow { + fill: #c2c2c2; +} + +.sc-mcd--nested .sc-mcd__category__content .subcategory { + font-weight: normal; +} + +.smartcharts-light .sc-mcd--nested .sc-mcd__category__content .subcategory { + color: #999; +} + +.smartcharts-dark .sc-mcd--nested .sc-mcd__category__content .subcategory { + color: #6e6e6e; +} + +.sc-mcd--nested .sc-mcd__category--active { + max-height: 1500px; +} + +.sc-mcd--nested .sc-mcd__category--active .sc-mcd__category__head>.ic-icon.arrow { + transform: rotate(180deg); +} + +.smartcharts-mobile .sc-mcd { + flex-direction: column; + width: 100%; + height: 100%; + box-shadow: none; +} + +.smartcharts-mobile .sc-mcd__content { + width: 100%; + height: 100%; +} + +.smartcharts-mobile .sc-mcd__content__head { + border-bottom: none; +} + +.smartcharts-mobile .sc-mcd__category--favorite .sc-mcd__category__content { + margin: 0 8px 4px; +} + +.smartcharts-mobile .sc-mcd__category__content--has-subcategory { + margin: 0 8px 4px; +} + +.smartcharts-mobile .sc-mcd--nested { + min-height: calc(100% - 38px); +} + +.cq-chart-title { + display: inline-block; + top: 1em; + z-index: 41; + margin: 0.2em 0.8em; +} + +.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn>.cq-symbol-select-btn { + cursor: pointer; +} + +.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown { + display: block; + margin-right: 0px; + margin-left: 10px; + width: 12px; +} + +.cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + width: 12px; +} + +.smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + fill: #333; +} + +.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled .cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + fill: #999; +} + +.smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive>.cq-menu-btn>.cq-symbol-select-btn { + border: solid 1px #85acb0; +} + +.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive>.cq-menu-btn>.cq-symbol-select-btn { + border: solid 1px #85acb0; +} + +.cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive>.cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + transform: rotate(180deg); +} + +.smartcharts-light .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive>.cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + fill: rgba(0,0,0,0.8); +} + +.smartcharts-dark .cq-chart-title.ciq-menu.ciq-enabled.stxMenuActive>.cq-menu-btn>.cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + fill: #999; +} + +.smartcharts-light .cq-chart-title.ciq-enabled .cq-symbol-select-btn { + background: #fff; + border: solid 1px #fff; +} + +.smartcharts-dark .cq-chart-title.ciq-enabled .cq-symbol-select-btn { + background: #0e0e0e; + border: solid 1px #151717; +} + +.cq-chart-title .cq-menu-btn { + padding: 8px; + border-radius: 4px; +} + +.smartcharts-light .cq-chart-title .cq-menu-btn { + background: #f2f3f4; +} + +.smartcharts-dark .cq-chart-title .cq-menu-btn { + background: #151717; +} + +.cq-chart-title .cq-symbol-select-btn { + font-family: "IBM Plex Sans",sans-serif; + padding: 0.58em 1em; + position: relative; + display: flex; + align-items: center; + border-radius: 4px; +} + +.smartcharts-light .cq-chart-title .cq-symbol-select-btn { + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn { + color: #fff; +} + +.smartcharts-light .cq-chart-title .cq-symbol-select-btn:hover { + border: solid 1px #999; +} + +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn:hover { + border: solid 1px #999; +} + +.cq-chart-title .cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown { + display: none; + position: relative; +} + +.cq-chart-title .cq-symbol-select-btn>.ic-icon.cq-symbol-dropdown svg { + transition: transform 0.2s ease-in-out; +} + +.cq-chart-title .cq-symbol-select-btn>.ic-icon, +.cq-chart-title .cq-symbol-select-btn>.ic-frx, +.cq-chart-title .cq-symbol-select-btn>.ic-wld, +.cq-chart-title .cq-symbol-select-btn>.ic-otc { + height: 32px; + width: 32px; + transform: scale(1.3); +} + +.cq-chart-title .cq-symbol-select-btn>.ic-icon>svg, +.cq-chart-title .cq-symbol-select-btn>.ic-frx>svg, +.cq-chart-title .cq-symbol-select-btn>.ic-wld>svg, +.cq-chart-title .cq-symbol-select-btn>.ic-otc>svg { + height: 32px; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol-info { + display: flex; + flex-direction: column; + margin: 0 10px 0 20px; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol-info .cq-market { + font-size: 1em; + line-height: 1.5; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol, +.cq-chart-title .cq-symbol-select-btn .cq-chart-price { + line-height: 22px; + font-size: 1.2em; + text-align: left; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol .cq-animated-price, +.cq-chart-title .cq-symbol-select-btn .cq-chart-price .cq-animated-price { + transition: color 300ms ease-out; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol .divider, +.cq-chart-title .cq-symbol-select-btn .cq-chart-price .divider { + padding: 0 3px; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol>div, +.cq-chart-title .cq-symbol-select-btn .cq-chart-price>div { + line-height: 1.5; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol { + font-weight: bold; + font-size: 1.6em; + text-align: left; + line-height: 24px; +} + +.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-symbol { + color: #333; +} + +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-symbol { + color: #fff; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol.closed-no-opentime { + line-height: calc(24px + 1.13em); +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-icon { + width: 12px; + margin-right: 5px; + height: 12px; + margin-top: 3px; +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-icon svg { + left: 0; + position: absolute; +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening { + font-size: 1.2em; + text-align: left; + line-height: 1.5; +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time { + font-weight: bold; +} + +.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time { + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-closed .cq-closed-opening .cq-closed-opening-time { + color: #fff; +} + +.cq-chart-title .cq-symbol-select-btn .cq-symbol-closed-text { + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; + width: auto; + padding: 0 5px; + height: 20px; + border: 2px solid #e31c4b; + color: #e31c4b; + border-radius: 4px; + text-transform: uppercase; +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-price>*, +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed>* { + position: relative; +} + +.cq-chart-title .cq-symbol-select-btn .cq-chart-price, +.cq-chart-title .cq-symbol-select-btn .cq-chart-closed { + display: flex; + vertical-align: text-bottom; +} + +.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-price, +.smartcharts-light .cq-chart-title .cq-symbol-select-btn .cq-chart-closed { + color: #999; +} + +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-price, +.smartcharts-dark .cq-chart-title .cq-symbol-select-btn .cq-chart-closed { + color: #999; +} + +.cq-chart-title .cq-menu-dropdown { + left: 0px; + bottom: auto; + transform: translateX(0) translateY(-3em); +} + +.cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-done, +.cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-active { + opacity: 1; + transform: translateX(0) translateY(0em); +} + +.cq-chart-title .cq-menu-dropdown.cq-menu-dropdown-enter-done { + z-index: 6; +} + +.smartcharts-mobile .cq-top-ui-widgets { + width: 100%; + padding: 0px; + margin: 0 !important; + z-index: 3; +} + +.smartcharts-mobile .cq-chart-title { + width: 100%; + display: block; + top: 0em; + margin: 0px; +} + +.smartcharts-mobile .cq-chart-title .cq-symbol-select-btn { + margin: 0.3em 0.4em; +} + +.smartcharts-mobile .cq-chart-title .cq-menu-dropdown { + width: 100%; + top: 0px; + margin: 0px; +} + +.cq-last-digits { + position: absolute; + bottom: 45px; + left: calc(50% - 150px); + visibility: hidden; +} + +.cq-last-digits.show { + visibility: visible; +} + +.cq-last-digits .cq-bars { + height: 70px; +} + +.smartcharts-light .cq-last-digits .cq-bars { + color: #7f8397; +} + +.smartcharts-dark .cq-last-digits .cq-bars { + color: #7f8397; +} + +.smartcharts-light .cq-last-digits .cq-bars .min { + color: #e31c4b; +} + +.smartcharts-dark .cq-last-digits .cq-bars .min { + color: #e31c4b; +} + +.smartcharts-light .cq-last-digits .cq-bars .max { + color: #2d9f93; +} + +.smartcharts-dark .cq-last-digits .cq-bars .max { + color: #39b19d; +} + +.cq-last-digits .cq-bars .cq-bar-value { + margin: -16px 0 0 -6px; + transition: opacity 0.8s linear; + font-size: 12px; + opacity: 0; +} + +.cq-last-digits .cq-bars .cq-bar-value.show { + opacity: 1; +} + +.cq-last-digits .cq-bars .cq-bar { + width: 10px; + position: absolute; + bottom: 40px; + transition: height 0.8s ease-in-out; + border-radius: 16px; +} + +.smartcharts-light .cq-last-digits .cq-bars .cq-bar { + background-color: #999cac; +} + +.smartcharts-dark .cq-last-digits .cq-bars .cq-bar { + background-color: #555975; +} + +.cq-last-digits .cq-bars .cq-bar .cq-bar-title { + position: absolute; + bottom: -20px; + width: 10px; + text-align: center; + font-size: 14px; +} + +.smartcharts-light .cq-last-digits .cq-bars .cq-bar.min { + background-color: #e31c4b; +} + +.smartcharts-dark .cq-last-digits .cq-bars .cq-bar.min { + background-color: #e31c4b; +} + +.smartcharts-light .cq-last-digits .cq-bars .cq-bar.max { + background-color: #2d9f93; +} + +.smartcharts-dark .cq-last-digits .cq-bars .cq-bar.max { + background-color: #39b19d; +} + +.cq-last-digits .cq-bar-footer { + text-align: center; + width: 475px; + font-size: 12px; + top: 60px; + position: absolute; + left: -75px; +} + +.smartcharts-light .cq-last-digits .cq-bar-footer { + color: #000; +} + +.smartcharts-dark .cq-last-digits .cq-bar-footer { + color: #fff; +} + +.cq-last-digits.minimised { + bottom: 10px; +} + +.cq-last-digits.minimised .cq-bars { + height: 25px; +} + +.cq-last-digits.minimised .cq-bar-footer { + top: 8px; +} + +.cq-bottom-ui-widgets { + position: absolute; + width: 100%; +} + +.sc-navigation-widget { + width: 32px; + position: absolute; + bottom: 80px; + left: 13px; + z-index: 4; +} + +.sc-navigation-widget__item--scale { + margin-bottom: 8px; +} + +.sc-navigation-widget__item--zoom .ic-icon:first-child { + margin-bottom: 2px; +} + +.sc-navigation-widget__item--hidden { + display: none; +} + +.sc-navigation-widget__item--disabled { + opacity: 0.5; + pointer-events: none; +} + +.sc-navigation-widget__item .ic-icon { + width: 32px; + height: 32px; + border-radius: 4px; + cursor: pointer; + margin: auto; + line-height: 41px; + transition: none; +} + +.smartcharts-light .sc-navigation-widget__item .ic-icon { + background-color: #f2f3f4; +} + +.smartcharts-dark .sc-navigation-widget__item .ic-icon { + background-color: #151717; +} + +.smartcharts-light .sc-navigation-widget__item .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-navigation-widget__item .ic-icon svg { + fill: #c2c2c2; +} + +.sc-highlow { + width: 160px; + height: 160px; +} + +.spot__shape-circule { + border-radius: 100%; + width: 6px; + height: 6px; + margin-left: 77px; + margin-top: 77px; + line-height: 1px; + position: absolute; +} + +.smartcharts-light .spot__fill-red { + background-color: #e31c4b; +} + +.smartcharts-dark .spot__fill-red { + background-color: #e31c4b; +} + +.smartcharts-light .spot__fill-blue { + background-color: #39b19d; +} + +.smartcharts-dark .spot__fill-blue { + background-color: #39b19d; +} + +.spot__label { + text-align: center; + padding: 4px; + white-space: nowrap; + position: absolute; + z-index: 1; + margin-left: 0px; + line-height: 1.5; +} + +.smartcharts-light .spot__label { + background-color: rgba(0,0,0,0.16); + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .spot__label { + background-color: #303342; + color: #fff; +} + +.spot__label:after { + content: ''; + position: absolute; + left: 0; + margin-left: 0px; + border-width: 4px; + border-style: solid; +} + +.spot__label[data-label-pos='top'] { + border-radius: 3px 3px 3px 0px; + margin-top: 42px; + margin-left: 79px; +} + +.spot__label[data-label-pos='top']:after { + top: 100%; +} + +.smartcharts-light .spot__label[data-label-pos='top']:after { + border-color: rgba(0,0,0,0.16) transparent transparent rgba(0,0,0,0.16); +} + +.smartcharts-dark .spot__label[data-label-pos='top']:after { + border-color: #303342 transparent transparent #303342; +} + +.spot__label[data-label-pos='bottom'] { + border-radius: 0px 3px 3px; + margin-top: 91px; + margin-left: 79px; +} + +.spot__label[data-label-pos='bottom']:after { + bottom: 100%; +} + +.smartcharts-light .spot__label[data-label-pos='bottom']:after { + border-color: transparent transparent rgba(0,0,0,0.16) rgba(0,0,0,0.16); +} + +.smartcharts-dark .spot__label[data-label-pos='bottom']:after { + border-color: transparent transparent #303342 #303342; +} + +html, +body { + -ms-touch-action: none; + margin: 0px; +} + +.chartContainer { + display: block; + font-family: "IBM Plex Sans",sans-serif; + font-size: 12px; + position: relative; + transition: height 0.4s ease-in-out; +} + +.smartcharts-light .chartContainer { + background: #fff; + color: #555975; +} + +.smartcharts-dark .chartContainer { + background: #0e0e0e; + color: #999; +} + +.chartContainer.ciq-draw-mode { + cursor: none; +} + +.chartContainer .stx-panel-study .stx-subholder:after { + position: absolute; + content: ' '; + width: 100%; + height: 1px; + top: 0px; + left: 0px; +} + +.smartcharts-light .chartContainer .stx-panel-study .stx-subholder:after { + background: #d6d6d6; + background-image: linear-gradient(to left, #d6d6d6 95%, #fff 100%); +} + +.smartcharts-dark .chartContainer .stx-panel-study .stx-subholder:after { + background: #3e3e3e; + background-image: linear-gradient(to left, #3e3e3e 95%, #0e0e0e 100%); +} + +.chartContainer :last-child { + z-index: 1; +} + +.ciq-chart { + height: auto; + width: 100%; + z-index: 4; +} + +.smartcharts-light .ciq-chart { + background: #fff; +} + +.smartcharts-dark .ciq-chart { + background: #0e0e0e; +} + +.ciq-chart--screenshot .cq-symbol-select-btn .ic-icon, +.ciq-chart--screenshot .cq-menu-dropdown, +.ciq-chart--screenshot .sc-toolbar-widget, +.ciq-chart--screenshot .sc-navigation-widget, +.ciq-chart--screenshot .stx_jump_today.home, +.ciq-chart--screenshot .stx-panel-control .stx-btn-panel { + display: none !important; +} + +.ciq-chart--screenshot .stx-panel-control { + left: 5px; +} + +.ciq-chart--screenshot .cq-symbol-select-btn .cq-symbol-info { + margin: 0 !important; +} + +.ciq-chart--screenshot .sc-studies-list .stx-btn-panel { + display: none !important; +} + +.cq-chart-control-left .stx-panel-control { + left: 10px; +} + +.cq-chart-control-left .chartContainer { + width: calc(100% - 100px); + margin-left: 100px; +} + +.sharing .ciq-no-share { + display: none !important; + left: -9999px !important; +} + +.stx-btn { + display: inline-block; + cursor: pointer; + padding: 0px 8px; + border: solid 1px #ddd; + font-weight: bold; + line-height: 27px; + color: #7e7e7e; + text-align: center; + overflow: visible; + background-repeat: no-repeat; + border-radius: 3px; + transition: color 0.25s, border 0.25s, box-shadow 0.25s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.stx-btn:hover { + color: #444444; + border: solid 1px #c5c5c5; + box-shadow: 0px 1px 1px rgba(0,0,0,0.1),inset 0px -8px 6px rgba(100,100,100,0.03); +} + +.stx-btn:active { + color: #333; + box-shadow: inset 0px 8px 6px rgba(100,100,100,0.03); +} + +.stx-btn-panel, +.stx-btn-panel span { + display: inline-block; + width: 20px; + height: 20px; + cursor: pointer; + transition: transform 0.2s; +} + +.stx-btn-panel { + margin: 2px; + opacity: 0; + transition: opacity 0.5s; + display: none; +} + +.smartcharts-light .stx-btn-panel { + background-color: #fff; +} + +.smartcharts-dark .stx-btn-panel { + background-color: #0e0e0e; +} + +.stx-btn-panel>span { + display: flex; + justify-content: center; + align-items: center; + background: no-repeat center; +} + +.stx-btn-panel:hover span, +.stx-btn-panel:active span { + opacity: 1; +} + +.stx-btn-panel:active svg { + transform: scale(1.2, 1.2); +} + +.stx-btn-panel.stx-show { + display: flex; + justify-content: center; + align-items: center; +} + +.stx-btn-panel .stx-ico-close { + width: 16px; + height: 16px; +} + +.cq-change:after { + float: right; + margin-top: 5px; + margin-right: 5px; + content: ''; + width: 0px; + height: 0px; + display: block; + border-left: 6px solid transparent; + border-right: 6px solid transparent; +} + +.cq-change.up:after { + border-bottom: 8px solid #39b19d; +} + +.cq-change.down:after { + border-top: 8px solid #e31c4b; +} + +.cq-change .cq-todays-change-percent { + padding-left: 3px; +} + +.stx_chart_controls { + position: absolute; + display: block; + bottom: 60px; + left: 50%; + margin-left: -55px; + height: 27px; + margin-bottom: 15px; + width: auto; + text-align: center; + z-index: 30; +} + +.stx_jump_today:hover, +.stx_jump_today:active { + opacity: 1; +} + +.stx_jump_today { + color: #fff; + overflow: hidden; + position: absolute; + bottom: 12px; + right: 10px; + line-height: 0px; + height: 32px; + width: 32px; + padding: 0px; + margin-bottom: 17px; + border-radius: 4px; + z-index: 15; + cursor: pointer; +} + +.smartcharts-light .stx_jump_today { + background: #f2f3f4; +} + +.smartcharts-dark .stx_jump_today { + background: #151717; +} + +.stx_jump_today svg { + position: relative; + left: 8px; + top: 8px; +} + +.smartcharts-light .stx_jump_today svg { + fill: #333; +} + +.smartcharts-dark .stx_jump_today svg { + fill: #c2c2c2; +} + +.stx-baseline-handle { + cursor: ns-resize; + display: none; + opacity: 0.5; + position: absolute; + z-index: 30; + height: 20px; + width: 20px; +} + +.stx-baseline-handle svg { + height: inherit; + width: inherit; +} + +.stx-baseline-handle:hover { + opacity: 1; +} + +.stx-drag-chart { + cursor: -webkit-grabbing; + cursor: grabbing; +} + +.stx-panel-control { + position: absolute; + top: 4px; + left: 80px; + overflow: hidden; + z-index: 30; + display: none; + border-radius: 4px; + height: 24px; +} + +.smartcharts-light .stx-panel-control { + background: #f2f3f4; +} + +.smartcharts-dark .stx-panel-control { + background: #151717; +} + +.stx-panel-control .stx-btn-panel { + opacity: 1; + background: transparent; +} + +.smartcharts-light .stx-panel-control .stx-btn-panel svg { + fill: #333; + stroke: #333; +} + +.smartcharts-dark .stx-panel-control .stx-btn-panel svg { + fill: #c2c2c2; + stroke: #c2c2c2; +} + +.stx-panel-control .stx-btn-panel.stx_solo_lit svg { + stroke: transparent !important; +} + +.stx-panel-control * { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.stx-panel-control.stx-show { + display: inline-flex; +} + +.stx-panel-control .stx-btn { + float: left; +} + +.stx-panel-control .stx-panel-title { + box-shadow: none; + margin: 0px 4px; + float: left; + display: inline-block; + padding: 0; + text-align: left; + text-transform: uppercase; + font-size: 10px; + font-weight: bold; + font-style: normal; + line-height: 2.6; + letter-spacing: normal; +} + +.smartcharts-light .stx-panel-control .stx-panel-title { + color: #333; +} + +.smartcharts-dark .stx-panel-control .stx-panel-title { + color: #c2c2c2; +} + +.stx-panel-control .stx-panel-title .bars { + font-weight: normal; +} + +.mSticky { + position: absolute; + display: none; + z-index: 44; + white-space: nowrap; + border-radius: 4px; + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .mSticky { + color: #333; + background: #f2f3f4; +} + +.smartcharts-dark .mSticky { + color: #c2c2c2; + background: #151717; +} + +.mSticky .mStickyInterior { + padding: 8px; + position: relative; + width: 100%; + border-radius: 4px 4px 0px 0px; + border: none; + box-sizing: border-box; + font-size: 12px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .mSticky .mStickyInterior { + background: #d6dadb; + color: #333; +} + +.smartcharts-dark .mSticky .mStickyInterior { + background: #323738; + color: #fff; +} + +.mSticky .mStickyRightClick { + position: relative; +} + +.stx_draw_ok { + display: none !important; +} + +.vectorTrashCan, +.overlayEdit { + position: absolute; + z-index: 40; +} + +.sMeasure { + margin: 0px; + padding: 5px 10px; + display: inline-block; + float: left; +} + +.overlayEdit.stx-btn, +.vectorTrashCan.stx-btn { + cursor: pointer; + display: inline-block; + text-align: center; + width: 30px; + height: 30px; + padding: 0; + border: none; + border-radius: 3px; +} + +.smartcharts-light .overlayEdit.stx-btn, +.smartcharts-light .vectorTrashCan.stx-btn { + background: #d6dadb !important; +} + +.smartcharts-dark .overlayEdit.stx-btn, +.smartcharts-dark .vectorTrashCan.stx-btn { + background: #323738 !important; +} + +.overlayEdit.stx-btn span, +.vectorTrashCan.stx-btn span { + align-items: center; + justify-content: center; + height: 30px; + width: 30px !important; +} + +.overlayEdit.stx-btn span svg, +.vectorTrashCan.stx-btn span svg { + fill: #555975; +} + +.overlayEdit.stx-btn span.ic-delete, +.vectorTrashCan.stx-btn span.ic-delete { + display: none; +} + +.overlayEdit.stx-btn span.ic-edit, +.vectorTrashCan.stx-btn span.ic-edit { + display: flex; +} + +.rightclick_study .overlayEdit { + margin: 0px !important; +} + +.rightclick_series .overlayEdit.stx-btn>.ic-delete, +.rightclick_series .vectorTrashCan.stx-btn>.ic-delete { + display: flex; +} + +.rightclick_series .overlayEdit.stx-btn>.ic-edit, +.rightclick_series .vectorTrashCan.stx-btn>.ic-edit { + display: none; +} + +.overlayTrashCan { + display: none !important; +} + +.mouseDeleteInstructions { + margin: 8px; + background: transparent; + display: block; +} + +.mouseDeleteText, +.mouseManageText { + display: none; +} + +.rightclick_drawing .mouseManageText { + display: inline; +} + +.rightclick_series .mouseDeleteText { + display: inline; +} + +.stx-loader { + position: absolute; + top: 280px; + left: 50%; + margin-left: -20px; + width: 40px; + height: 40px; + z-index: 50; +} + +.stx_current_hr_up, +.stx_current_hr_down { + font-weight: bold; + font-size: 12px; + font-family: "IBM Plex Sans",sans-serif; +} + +.smartcharts-light .stx_current_hr_up, +.smartcharts-light .stx_current_hr_down { + color: #fff; + background-color: #ff444f; +} + +.smartcharts-dark .stx_current_hr_up, +.smartcharts-dark .stx_current_hr_down { + color: #fff; + background-color: #ff444f; +} + +.stx-float-price, +.stx-float-date { + border-radius: 4px; + font-weight: normal; +} + +.smartcharts-light .stx-float-price, +.smartcharts-light .stx-float-date { + background-color: #d6dadb; + color: #333 !important; +} + +.smartcharts-dark .stx-float-price, +.smartcharts-dark .stx-float-date { + background-color: #323738; + color: #fff !important; +} + +.stx-float-date { + position: absolute; + font-size: 12px; + font-family: 'Helvetica'; + z-index: 3; + padding: 0 8px; + text-align: center; + width: auto; + height: 30px; + line-height: 31px; + box-size: content-box; +} + +.stx_crosshair { + position: absolute; + z-index: 1; +} + +.smartcharts-light .stx_crosshair { + background-color: #d6dadb; +} + +.smartcharts-dark .stx_crosshair { + background-color: #323738; +} + +.stx_crosshair_drawing { + position: absolute; + z-index: 10; + pointer-events: none; +} + +.smartcharts-light .stx_crosshair_drawing { + background-color: #d6dadb; +} + +.smartcharts-dark .stx_crosshair_drawing { + background-color: #323738; +} + +.crossY, +.stx_crosshair_y { + left: 0px; + height: 1px; + width: 98%; + margin-top: 0; +} + +.crossX, +.stx_crosshair_x { + top: 0px; + width: 1px; + height: 100%; +} + +.stx-crosshair-on { + cursor: crosshair; +} + +.stx_panels { + font-family: 'Helvetica'; + font-size: 12px; + color: #fff; +} + +.stx_panel_background { + color: #7c878b; +} + +.stx_panel_border { + width: 1px; + color: #cccccc; +} + +.stx_grid { + width: 1px; + opacity: 1; + border: none; +} + +.smartcharts-light .stx_grid { + background: #fff; + color: #f2f3f4; +} + +.smartcharts-dark .stx_grid { + background: #0e0e0e; + color: #1d1f20; +} + +.stx_grid_border { + opacity: 0.2; + border-style: solid; +} + +.smartcharts-light .stx_grid_border { + border-color: rgba(153,156,172,0.32); +} + +.smartcharts-dark .stx_grid_border { + border-color: rgba(127,131,151,0.3); +} + +.stx_line_chart { + width: 1px; + border-top-style: dotted; +} + +.stx_bar_chart, +.stx_bar_up, +.stx_bar_down, +.stx_bar_even { + width: 1px; +} + +.smartcharts-light .stx_line_chart, +.smartcharts-light .stx_bar_chart { + color: #7f8397; +} + +.smartcharts-dark .stx_line_chart, +.smartcharts-dark .stx_bar_chart { + color: #fff; +} + +.stx_bar_down { + color: #f95454; +} + +.stx_bar_up { + color: #4caf50; +} + +.stx_baseline_delta_mountain { + background-color: rgba(163,102,255,0.5); + color: rgba(163,102,255,0.01); + padding: 3px; +} + +.stx_colored_mountain_chart { + background-color: rgba(163,102,255,0.5); + color: rgba(163,102,255,0.01); + width: 2px; + padding: 4px; +} + +.stx_mountain_chart { + width: 1px; +} + +.smartcharts-light .stx_mountain_chart { + border: #85acb0; + background-color: rgba(133,172,176,0.16); + color: rgba(255,255,255,0); +} + +.smartcharts-dark .stx_mountain_chart { + border: #fff; + background-color: rgba(255,255,255,0.36); + color: rgba(16,19,32,0); +} + +.stx_histogram_down { + color: #f95454; +} + +.smartcharts-light .stx_histogram_down { + border-left-color: #999cac; +} + +.smartcharts-dark .stx_histogram_down { + border-left-color: #fff; +} + +.stx_histogram_up { + color: #4caf50; +} + +.smartcharts-light .stx_histogram_up { + border-left-color: #999cac; +} + +.smartcharts-dark .stx_histogram_up { + border-left-color: #fff; +} + +.stx_histogram_even { + color: #999999; +} + +.smartcharts-light .stx_histogram_even { + border-left-color: #999cac; +} + +.smartcharts-dark .stx_histogram_even { + border-left-color: #fff; +} + +.stx_highlight_vector { + color: #ff0000; + width: 3px; +} + +.stx_candle_shadow, +.stx_bar_even { + color: #2e383b; +} + +.stx_candle_down, +.stx_line_down { + color: #f95454; + border-left-color: transparent; +} + +.stx_candle_up, +.stx_line_up { + color: #4caf50; + border-left-color: transparent; +} + +.stx_hollow_candle_down { + color: #f95454; +} + +.stx_hollow_candle_up { + color: #4caf50; +} + +.stx_hollow_candle_even { + color: #888888; +} + +.stx_baseline { + color: #2e383b; +} + +.stx_baseline_down { + color: #f95454; + width: 2px; +} + +.stx_baseline_up { + color: #4caf50; + width: 2px; +} + +.stx_kagi_down { + color: #f95454; + width: 1px; +} + +.stx_kagi_up { + color: #4caf50; + width: 3px; +} + +.stx_pandf_down { + color: #f95454; + padding: 2px 0px; + width: 2px; +} + +.stx_pandf_up { + color: #4caf50; + padding: 2px 0px; + width: 2px; +} + +.stx_volume_up { + color: #4caf50; +} + +.smartcharts-light .stx_volume_up { + border: #999cac; +} + +.smartcharts-dark .stx_volume_up { + border: #fff; +} + +.stx_volume_down { + color: #f95454; +} + +.smartcharts-light .stx_volume_down { + border: #999cac; +} + +.smartcharts-dark .stx_volume_down { + border: #fff; +} + +.stx_volume_underlay_up { + color: #8cc176; + opacity: 0.3; + border-left-color: #000; +} + +.stx_volume_underlay_down { + color: #b82d0c; + opacity: 0.3; + border-left-color: #000; +} + +.stx_volume_profile { + opacity: 0.3; + border-color: #000; +} + +.stx_projection_new { + color: #0000ff; +} + +.stx_gaps { + color: #b1b7b8; + opacity: 0.3; +} + +.stx_histogram { + opacity: 0.2; +} + +.smartcharts-light .stx_histogram { + color: #555975; +} + +.smartcharts-dark .stx_histogram { + color: #999; +} + +.stx_annotation { + font-size: 13px; + font-family: 'Helvetica'; + background: transparent; + box-shadow: none; + padding: 0px 6px; + outline: none; + color: #333; + resize: none; + z-index: 1000; +} + +.smartcharts-light .stx_annotation { + border: 1px solid #999cac; +} + +.smartcharts-dark .stx_annotation { + border: 1px solid #fff; +} + +.stx_annotation_bg { + color: #f5f5f5; +} + +.stx_annotation_highlight { + color: #fff; +} + +.stx_annotation_highlight_bg { + color: #3d4447; +} + +.annotationSave, +.annotationCancel, +.stx-btn.stx_annotation_save, +.stx-btn.stx_annotation_cancel { + position: absolute; + display: none; + font-size: 11px; + box-shadow: 0px 1px 2px rgba(0,0,0,0.2); + z-index: 50; +} + +.annotationCancel, +.stx_annotation_cancel { + margin-left: 10px; +} + +.stx_watermark { + font-size: 16px; + font-family: 'Helvetica'; +} + +.stx_fib_levels { + font-size: 12px; + font-family: 'Helvetica'; + color: transparent; +} + +.stx-holder { + display: block; + position: absolute; + overflow: hidden; + z-index: 4; +} + +.stx-subholder { + position: absolute; + overflow: hidden; +} + +.stx-subholder:before { + content: ' '; + display: none; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + z-index: 1; + background-image: url("https://static.cdnpub.info/traderoom/map.png"); + background-repeat: no-repeat; + background-position: 50% 0; + -ms-background-size: cover; + background-size: cover; +} + +.smartcharts-light .stx-subholder:before { + opacity: .05; +} + +.smartcharts-dark .stx-subholder:before { + opacity: .4; +} + +.stx_market_session.divider { + background-color: rgba(0,255,0,0.8); + width: 1px; +} + +.stx_market_session.pre { + background-color: rgba(255,255,0,0.1); +} + +.stx_market_session.post { + background-color: rgba(0,0,255,0.2); +} + +.stx_grid_dark { + opacity: 1; + opacity: 0.95; + border-style: solid; + border: none; +} + +.smartcharts-light .stx_grid_dark { + color: #555975; +} + +.smartcharts-dark .stx_grid_dark { + color: #999; +} + +.stx_yaxis, +.stx_xaxis, +.stx_xaxis_dark { + font-size: 10px; + font-family: "IBM Plex Sans",sans-serif; +} + +.smartcharts-light .stx_yaxis, +.smartcharts-light .stx_xaxis, +.smartcharts-light .stx_xaxis_dark { + color: #555975; +} + +.smartcharts-dark .stx_yaxis, +.smartcharts-dark .stx_xaxis, +.smartcharts-dark .stx_xaxis_dark { + color: #999; +} + +.stx_price_label { + font-weight: normal; + font-size: 12px; + font-family: "IBM Plex Sans",sans-serif; +} + +.smartcharts-light .stx_price_label { + color: #555975; +} + +.smartcharts-dark .stx_price_label { + color: #999; +} + +.stx-holder:hover .stx-btn-panel { + opacity: 1; + transition: opacity 0.5s, height 0.3s; +} + +.stx-ico-handle { + opacity: 1; + position: absolute; + left: 0%; + height: 1px; + width: 100%; + overflow: hidden; + cursor: ns-resize; + z-index: 1; +} + +.smartcharts-light .stx-ico-handle { + box-shadow: 0 0 0px 2px #fff; + background: #fff; +} + +.smartcharts-dark .stx-ico-handle { + box-shadow: 0 0 0px 2px #0e0e0e; + background: #0e0e0e; +} + +.stx-ico-handle span { + padding: 100%; +} + +.smartcharts-light .stx-ico-handle span { + background: #d6dadb; +} + +.smartcharts-dark .stx-ico-handle span { + background: #323738; +} + +.stx-ico-handle:hover { + opacity: 0.3; +} + +.stx-ico-handle:active { + cursor: ns-resize; +} + +.stx-ico-handle.stx-grab { + opacity: 0.3; + height: 2px; +} + +.smartcharts-light .stx-ico-handle.stx-grab { + background-color: #999cac; +} + +.smartcharts-dark .stx-ico-handle.stx-grab { + background-color: #fff; +} + +.stx_panel_drag { + color: transparent; +} + +.stx_xaxis, +.stx_yaxis, +.stx_watermark { + font-family: "IBM Plex Sans",sans-serif; +} + +.ciq-menu>span.icons-on { + margin-top: -3px; +} + +.stx_range_slider.shading { + background-color: rgba(128,128,128,0.3); + border: solid 2px #0090b7; + width: 5px; +} + +.stx-chart-panel.stx-show { + display: none; +} + +.ps--active-x>.ps__rail-x, +.ps--active-y>.ps__rail-y { + background-color: transparent !important; +} + +.cq-spot { + width: 6px; + height: 6px; + padding: 0px; + line-height: 1px; + border-radius: 100%; + cursor: pointer; + position: absolute; + background: transparent; + -webkit-animation: pulse 1.6s infinite; + animation: pulse 1.6s infinite; + margin-left: -3px; + margin-top: -3px; + box-shadow: 0 0 0 rgba(255,153,51,0.6); + z-index: -2 !important; +} + +.cq-spot:before { + content: '\25CF'; + font-size: 18px; + color: #f93; + position: relative; + left: -2.3px; + line-height: 5px; +} + +.cq-spot.cq-endpoint { + position: absolute; + text-align: center; + width: 1px; + height: 100%; + line-height: 20px; + color: #ffffff; + bottom: 0px !important; + top: 0px !important; + -webkit-animation: none; + animation: none; +} + +.smartcharts-light .cq-spot.cq-endpoint { + border-left: 2px dashed #ff444f; +} + +.smartcharts-dark .cq-spot.cq-endpoint { + border-left: 2px dashed #ff444f; +} + +.cq-spot.cq-endpoint:before { + content: '\25CF'; + font-size: 18px; + color: #0298d3; + position: relative; + left: -2.3px; + line-height: 5px; + display: none; +} + +.cq-spot.cq-endpoint .cq-endpoint-label { + width: 145px; + padding: 1px 9px; + border-radius: 4px; + position: absolute; + top: calc(100% - 22px); + transform: translateX(-50%); +} + +.smartcharts-light .cq-spot.cq-endpoint .cq-endpoint-label { + background-color: #ff444f; + color: #fff; +} + +.smartcharts-dark .cq-spot.cq-endpoint .cq-endpoint-label { + background-color: #ff444f; + color: #fff; +} + +.closed-chart .cq-spot { + -webkit-animation: none; + animation: none; +} + +.smartcharts-light .closed-chart .cq-spot:before { + color: #d6d6d6; +} + +.smartcharts-dark .closed-chart .cq-spot:before { + color: #303342; +} + +@-webkit-keyframes pulse { + 0% { + box-shadow: 0 0 0 0 rgba(255,153,51,0.6); + } + + 70% { + box-shadow: 0 0 0 10px rgba(255,153,51,0); + } + + 100% { + box-shadow: 0 0 0 0 rgba(255,153,51,0); + } +} + +@keyframes pulse { + 0% { + box-shadow: 0 0 0 0 rgba(255,153,51,0.6); + } + + 70% { + box-shadow: 0 0 0 10px rgba(255,153,51,0); + } + + 100% { + box-shadow: 0 0 0 0 rgba(255,153,51,0); + } +} + +.smartcharts-mobile .mSticky { + background: none; +} + +.smartcharts-mobile .mSticky .mStickyInterior { + margin: 0px; + padding: 0px 8px 0 !important; + line-height: 30px; + border-radius: 3px 0px 0px 3px; + width: auto; + z-index: 99; +} + +.smartcharts-mobile .mSticky .mStickyRightClick { + margin-left: -2px !important; +} + +.smartcharts-mobile .stx-panel-control .stx-panel-title { + font-size: 13px; + line-height: 2; +} + +.smartcharts-mobile .stx-panel-control .stx-btn-panel .stx-ico-edit { + width: 22px; + height: 22px; +} + +.smartcharts-mobile .stx-panel-control .stx-btn-panel .stx-ico-edit svg { + width: 22px; + height: 22px; +} + +.stx-textarea { + padding: 0 5px 0 10px; + box-sizing: border-box; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.smartcharts-light .stx-textarea { + border-left: 1px solid #7f8397; +} + +.smartcharts-dark .stx-textarea { + border-left: 1px solid #fff; +} + +.annotationCancel, +.annotationSave { + font-weight: 700; + text-transform: uppercase; + display: inline-block; + position: absolute; + line-height: 27px; + height: 27px; + padding: 0 10px; + cursor: pointer; + border: none; + transition: all 0.2s 0s, opacity 0.2s 0s; + box-sizing: border-box; + box-shadow: 0 1px 2px rgba(0,0,0,0.2); +} + +.smartcharts-light .annotationCancel, +.smartcharts-light .annotationSave { + background: #fff; + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .annotationCancel, +.smartcharts-dark .annotationSave { + background: #0e0e0e; + color: #999; +} + +.annotationCancel:hover, +.annotationSave:hover { + border: none; + box-shadow: 0 1px 2px rgba(0,0,0,0.3); +} + +.annotationCancel:active, +.annotationSave:active { + border: none; + transition: all 0s 0s; + box-shadow: inset 0 1px 2px rgba(0,0,0,0.2); +} + +.cq-menu-dropdown .ps-scrollbar-y-rail { + z-index: 1000000; +} + +.ciq-chart-area, +.ciq-chart, +.stx-panel-side { + box-sizing: border-box; +} + +.ciq-chart-area { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + margin: 0px; + z-index: 1; + padding: 0px; +} + +.smartcharts-light .ciq-chart-area { + background: #fff; +} + +.smartcharts-dark .ciq-chart-area { + background: #0e0e0e; +} + +.smartcharts { + position: absolute; + height: 100%; + width: 100%; + font-family: "IBM Plex Sans",sans-serif; + font-size: 1em; + overflow: hidden; + top: 0; +} + +.smartcharts-light .smartcharts { + background: #fff; +} + +.smartcharts-dark .smartcharts { + background: #0e0e0e; +} + +.smartcharts input { + font-weight: 300; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.smartcharts-light .smartcharts input { + color: #7f8397; + background-color: #fff; +} + +.smartcharts-dark .smartcharts input { + color: #fff; + background-color: #0e0e0e; +} + +.smartcharts-light .smartcharts input::-moz-placeholder { + color: #7f8397; +} + +.smartcharts-light .smartcharts input::placeholder, +.smartcharts-light .smartcharts input::-moz-placeholder { + color: #7f8397; +} + +.smartcharts-dark .smartcharts input::-moz-placeholder { + color: #fff; +} + +.smartcharts-dark .smartcharts input::placeholder, +.smartcharts-dark .smartcharts input::-moz-placeholder { + color: #fff; +} + +.smartcharts div, +.smartcharts li, +.smartcharts span, +.smartcharts a { + -webkit-tap-highlight-color: rgba(0,0,0,0); + -webkit-tap-highlight-color: transparent; +} + +.smartcharts .cq-top-ui-widgets { + position: absolute; + z-index: 5; + margin: 0.2em 0.5em; + width: 100%; + pointer-events: none; +} + +.smartcharts .cq-top-ui-widgets>div { + pointer-events: initial; +} + +.smartcharts .ciq-menu { + display: inline-block; + position: relative; + box-sizing: border-box; +} + +.smartcharts .ciq-menu-section { + float: right; +} + +.smartcharts .smartcharts-mobile, +.smartcharts .smartcharts-desktop { + position: absolute; + height: 100%; + width: 100%; +} + +.smartcharts .cq-chart-control-left .cq-top-ui-widgets { + left: 90px; +} + +.smartcharts .cq-chart-control-left .cq-notifications { + right: 100px; +} + +.smartcharts--has-markers .stx-subholder { + z-index: 108 !important; +} + +.smartcharts--loading .cq-menu-btn, +.smartcharts--loading .sc-toolbar-widget, +.smartcharts--loading .ciq-navigation-widget, +.smartcharts--loading .sc-chart-footer { + opacity: 0.24; +} + +.smartcharts .smartcharts-mobile { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.smartcharts .smartcharts-mobile .cq-top-ui-widgets { + z-index: 13; +} + +.cq-modal__overlay { + display: flex; + width: 100%; + height: 100%; + align-items: center; + justify-content: center; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow: hidden; +} + +.ciq-modal .cq-modal__overlay { + z-index: 9999; + position: absolute; +} + +.smartcharts-light .ciq-modal .cq-modal__overlay { + background: rgba(0,0,0,0.72); +} + +.smartcharts-dark .ciq-modal .cq-modal__overlay { + background: rgba(0,0,0,0.72); +} + +.ciq-menu { + position: relative; +} + +.smartcharts-light .ciq-menu { + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .ciq-menu { + color: #999; +} + +.ciq-menu>span { + padding: 0 12px 0 0; + position: relative; + font-weight: 400; +} + +.ciq-menu .cq-menu-btn { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.ciq-menu.ciq-enabled>.cq-menu-btn { + cursor: pointer; +} + +.cq-menu-dropdown { + display: block; + line-height: 2.1em; + position: absolute; + overflow: hidden; + height: auto; + border-radius: 3px; + bottom: 5em; + pointer-events: none; + opacity: 0; + z-index: 3; + transition: transform 300ms,opacity 300ms; + box-shadow: 0px 2px 4px rgba(0,0,0,0.2); + margin-top: 5px; +} + +.smartcharts-light .cq-menu-dropdown { + color: #333; + background-color: #f2f3f4; +} + +.smartcharts-dark .cq-menu-dropdown { + color: #c2c2c2; + background-color: #0e0e0e; +} + +.cq-menu-dropdown.cq-menu-dropdown-enter-done, +.cq-menu-dropdown.cq-menu-dropdown-enter-active { + opacity: 1; +} + +.cq-menu-dropdown.cq-menu-dropdown-enter-done { + pointer-events: initial; +} + +.cq-menu-dropdown .title { + display: block; + height: 20px; + line-height: 20px; + padding: 9px 16px; + box-sizing: content-box; +} + +.smartcharts-light .cq-menu-dropdown .title { + background: #fff; + color: #333; +} + +.smartcharts-dark .cq-menu-dropdown .title { + background: #151717; + color: #fff; +} + +.cq-menu-dropdown .title .title-text { + display: inline-block; + font-size: 1.2em; + font-weight: bold; +} + +.smartcharts-light .cq-menu-dropdown .title>.ic-icon { + color: #333; +} + +.smartcharts-dark .cq-menu-dropdown .title>.ic-icon { + color: #c2c2c2; +} + +.cq-menu-dropdown .icon-close-menu { + cursor: pointer; + position: absolute; + top: 5px; + right: 5px; + height: 30px; + width: 30px; + pointer-events: none; + opacity: 0; +} + +.smartcharts-light .cq-menu-dropdown .cq-categorical-display .cq-lookup-filters { + background: #f2f3f4; +} + +.smartcharts-dark .cq-menu-dropdown .cq-categorical-display .cq-lookup-filters { + background: #151717; +} + +.smartcharts-mobile .ciq-menu.stxMenuActive { + z-index: 9; +} + +.smartcharts-mobile .ciq-menu .cq-menu-btn:hover>.ic-icon svg, +.smartcharts-mobile .ciq-menu .cq-menu-btn:hover>.cq-toggle svg { + background: transparent; +} + +.smartcharts-mobile .cq-modal-dropdown.stxMenuActive { + z-index: 2; + width: 100%; + height: 100%; + position: absolute; +} + +.smartcharts-mobile .cq-modal-dropdown.ciq-studies .cq-modal__overlay .cq-menu-dropdown, +.smartcharts-mobile .cq-modal-dropdown.cq-comparison-new .cq-modal__overlay .cq-menu-dropdown, +.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-modal__overlay .cq-menu-dropdown { + height: 100%; +} + +.smartcharts-mobile .cq-modal-dropdown.ciq-studies .cq-modal__overlay .cq-menu-dropdown .title, +.smartcharts-mobile .cq-modal-dropdown.cq-comparison-new .cq-modal__overlay .cq-menu-dropdown .title, +.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-modal__overlay .cq-menu-dropdown .title { + border-bottom: none !important; +} + +.smartcharts-mobile .cq-modal-dropdown .cq-modal__overlay { + position: relative; + transition: opacity 300ms; + height: inherit; + width: 100%; + padding: 0; + opacity: 0; +} + +.smartcharts-mobile .cq-modal-dropdown.stxMenuActive .cq-modal__overlay { + opacity: 1; + pointer-events: initial; + visibility: visible; +} + +.smartcharts-mobile .cq-modal-dropdown.cq-chart-title .cq-menu-dropdown { + transform: translateY(-3em); +} + +.smartcharts-mobile .cq-modal-dropdown .cq-scroll-panel { + border-left: none; +} + +.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown { + height: auto; + bottom: 0; + box-shadow: none; + border-radius: 0; + width: 100%; + position: absolute; + transform: translateY(3em); + border: none; +} + +.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown.cq-menu-dropdown-enter-done, +.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown.cq-menu-dropdown-enter-active { + transform: translateY(0em); +} + +.smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .title-text { + font-size: 14px; +} + +.smartcharts-light .smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .icon-close-menu svg { + fill: #333; +} + +.smartcharts-dark .smartcharts-mobile .cq-modal-dropdown .cq-menu-dropdown .title .icon-close-menu svg { + fill: #fff; +} + +.smartcharts-mobile .cq-menu-dropdown.open .icon-close-menu, +.smartcharts-mobile .cq-menu-dropdown.cq-menu-dropdown-enter-done .icon-close-menu { + pointer-events: initial; + opacity: 1; +} + +.cq-chart-unavailable { + position: absolute; + text-align: center; + width: 100%; + top: 50%; + z-index: 1; + font-size: 1.7em; + color: #878787; +} + +.sc-tooltip__inner { + position: absolute; + top: 0px; + left: 50%; + border-radius: 4px; + height: 34px; + width: auto; + white-space: nowrap; + padding: 8px; + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + opacity: 0; + box-sizing: border-box; + transform: translateX(-50%) translateY(calc(-100% - 8px)); + pointer-events: none; +} + +.smartcharts-light .sc-tooltip__inner { + background: #d6dadb; + color: #333; +} + +.smartcharts-dark .sc-tooltip__inner { + background: #323738; + color: #fff; +} + +.sc-tooltip__inner:before { + position: absolute; + width: 0; + height: 0; + content: ' '; + bottom: 0px; + left: calc(50% - 6px); + background: transparent; + border-right: 6px solid transparent; + border-left: 6px solid transparent; + transform: translateY(100%); +} + +.smartcharts-light .sc-tooltip__inner:before { + border-top: 6px solid #d6dadb; +} + +.smartcharts-dark .sc-tooltip__inner:before { + border-top: 6px solid #323738; +} + +.sc-tooltip--right .sc-tooltip__inner { + left: calc(100% + 10px); + top: calc(50% - 17px); + transform: none; +} + +.sc-tooltip--right .sc-tooltip__inner:before { + left: -6px; + bottom: calc(50% - 6px); + border-top: 6px solid transparent !important; + border-bottom: 6px solid transparent !important; + border-left: none; + transform: translateY(0); +} + +.smartcharts-light .sc-tooltip--right .sc-tooltip__inner:before { + border-right: 6px solid #d6dadb; +} + +.smartcharts-dark .sc-tooltip--right .sc-tooltip__inner:before { + border-right: 6px solid #323738; +} + +.sc-tooltip--enable:hover .sc-tooltip__inner { + opacity: 1; + z-index: 3; +} + +.sc-notification-badge { + width: 16px; + height: 16px; + border-radius: 8px; + position: absolute; + top: 3px; + right: 3px; + font-size: 10px; + font-weight: bold; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: center; +} + +.smartcharts-light .sc-notification-badge { + background: #ec3f3f; + color: #fff; +} + +.smartcharts-dark .sc-notification-badge { + background: #ec3f3f; + color: #fff; +} + +.sc-btn { + padding: 5px 16px; + font-size: 14px; + font-weight: bold; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + text-align: center; + border-radius: 4px; + outline: none !important; + border: 1px solid; +} + +.smartcharts-light .sc-btn { + border-color: rgba(0,0,0,0); + background: rgba(0,0,0,0); + color: #ff444f; +} + +.smartcharts-dark .sc-btn { + border-color: rgba(0,0,0,0); + background: rgba(0,0,0,0); + color: #ff444f; +} + +.sc-btn[type='button'] { + cursor: pointer; +} + +.smartcharts-light .sc-btn:hover { + background: rgba(255,68,79,0.08); +} + +.smartcharts-dark .sc-btn:hover { + background: rgba(255,68,79,0.08); +} + +.sc-btn--sm { + padding: 3px 12px; + font-size: 12px; +} + +.sc-btn--w100 { + width: 100%; +} + +.smartcharts-light .sc-btn--primary { + border-color: #ff444f; + background: #ff444f; + color: #fff; +} + +.smartcharts-dark .sc-btn--primary { + border-color: #ff444f; + background: #ff444f; + color: #fff; +} + +.smartcharts-light .sc-btn--primary:hover { + border-color: #eb3e48; + background: #eb3e48; +} + +.smartcharts-dark .sc-btn--primary:hover { + border-color: #ff525c; + background: #ff525c; +} + +.sc-btn--primary--disabled { + opacity: 0.32; +} + +.smartcharts-light .sc-btn--primary--disabled { + border-color: #ff444f; + background: #ff444f; +} + +.smartcharts-dark .sc-btn--primary--disabled { + border-color: #ff444f; + background: #ff444f; +} + +.smartcharts-light .sc-btn--primary--disabled:hover { + border-color: #ff444f; + background: #ff444f; +} + +.smartcharts-dark .sc-btn--primary--disabled:hover { + border-color: #ff444f; + background: #ff444f; +} + +.sc-btn--outline-secondary { + background: transparent; +} + +.smartcharts-light .sc-btn--outline-secondary { + border-color: #999; + color: #333; +} + +.smartcharts-dark .sc-btn--outline-secondary { + border-color: #6e6e6e; + color: #fff; +} + +.smartcharts-light .sc-btn--outline-secondary:hover { + background: rgba(0,0,0,0.08) !important; +} + +.smartcharts-dark .sc-btn--outline-secondary:hover { + background: rgba(255,255,255,0.08) !important; +} + +.sc-chart__status { + width: 8px; + height: 8px; + border-radius: 4px; + margin: 4px 0; + opacity: 1; +} + +.smartcharts-light .sc-chart__status { + background: #f2f3f4; +} + +.smartcharts-dark .sc-chart__status { + background: #f2f3f4; +} + +.smartcharts-light .sc-chart__status--online { + background: #4bb4b3; +} + +.smartcharts-dark .sc-chart__status--online { + background: #4bb4b3; +} + +.sc-chart__status--blinker { + -webkit-animation: blinking-network-status 0.4s infinite alternate; + animation: blinking-network-status 0.4s infinite alternate; +} + +.smartcharts-light .sc-chart__status--blinker { + background: #4bb4b3; +} + +.smartcharts-dark .sc-chart__status--blinker { + background: #4bb4b3; +} + +.smartcharts-light .sc-chart__status--offline { + background: #cc2e3d; +} + +.smartcharts-dark .sc-chart__status--offline { + background: #cc2e3d; +} + +.sc-input { + border-radius: 4px 0 0 4px; + height: 40px; + box-sizing: border-box; + border-right: none !important; + position: relative; + outline: none !important; + padding: 10px 12px; + font-size: 14px; + font-weight: normal; + font-style: normal; + line-height: 1.43; + letter-spacing: normal; + background: transparent; +} + +.smartcharts-light .sc-input { + border: 1px solid #d6dadb; +} + +.smartcharts-dark .sc-input { + border: 1px solid #323738; +} + +.sc-input::-moz-placeholder { + font-size: 14px; +} + +.sc-input::placeholder, +.sc-input::-moz-placeholder { + font-size: 14px; +} + +.smartcharts-light .sc-input::-moz-placeholder { + color: #999; +} + +.smartcharts-light .sc-input::placeholder, +.smartcharts-light .sc-input::-moz-placeholder { + color: #999; +} + +.smartcharts-light .sc-input:hover { + border-color: #999; +} + +.smartcharts-dark .sc-input:hover { + border-color: #6e6e6e; +} + +.smartcharts-light .sc-input--active { + border-color: #85acb0 !important; +} + +.smartcharts-dark .sc-input--active { + border-color: #85acb0 !important; +} + +@-webkit-keyframes blinking-network-status { + 40% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes blinking-network-status { + 40% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.barrier-area { + padding: 13px 0; + position: absolute; + width: 100%; +} + +.chart-line { + position: absolute; + z-index: 35; +} + +.chart-line.horizontal { + width: 100%; + left: 0; + font-size: 1em; +} + +.chart-line.horizontal:hover { + z-index: 105; +} + +.chart-line.horizontal.draggable>.draggable-area { + height: 20px; + top: -8px; + position: absolute; + width: 100%; +} + +.chart-line.horizontal.draggable>.draggable-area:hover { + background: rgba(0,0,0,0.05); +} + +.chart-line.horizontal .drag-line { + height: 1px; + float: left; + width: 100%; + margin-left: -10px; + position: relative; + border-top-width: 0; +} + +.chart-line.horizontal .title-wrapper { + position: absolute; + height: 24px; + background-image: linear-gradient(rgba(255,255,255,0.001) 30%, var(--general-main-1) 50%, rgba(255,255,255,0.001) 75%); + top: -11px; + display: flex; + align-items: center; + justify-content: center; + font-size: 11px; + padding: 3px 10px; + font-weight: bold; +} + +.chart-line.horizontal .title-wrapper .title { + white-space: pre-wrap; +} + +.draggable.chart-line:hover.horizontal { + cursor: ns-resize; +} + +.draggable.chart-line:hover.vertical { + cursor: ew-resize; +} + +.hide-pricelines>.chart-line.horizontal, +.hide-pricelines>.barrier-area { + display: none; +} + +.drag-price { + display: block; + height: 24px; + top: -11px; + position: absolute; + right: -1px; + border: 1px solid inherit; +} + +.drag-price .arrow-icon { + height: 39px; + padding: 4px 0px; + position: absolute; + transition: none; + left: 2px; + background: var(--general-main-1); + width: calc(100% - 2px); +} + +.no-touch .price-arrow span { + position: absolute; + top: 4px; + left: 6px; + display: block; + width: 15px; + height: 15px; + background-position: -4px -488px; + opacity: 0; + transition: opacity 0.2s; +} + +.no-touch .chart-line:hover .price-arrow { + width: 20px; + height: 23px; +} + +.no-touch .chart-line:hover .price-arrow span { + opacity: 1; +} + +.price { + font-size: 12px; + display: block; + padding: 3px 1px; + line-height: 18px; + overflow: hidden; + text-align: center; +} + +.draggable .price { + padding-left: 16px; +} + +.draggable .price:after { + font-weight: normal; + content: '≡'; + font-size: 25px; + position: absolute; + left: 1px; + top: 1px; + transform: scaleX(0.8); +} + +.shade.hidden { + opacity: 0; +} + +.shade { + position: absolute; + width: 100%; + top: -120px; + left: 0; + right: 0; + height: 120px !important; + opacity: 0.3; + transition: opacity 0.1s ease-out; +} + +.top-shade { + background-image: linear-gradient(to bottom, transparent, var(--shade-color)); +} + +.between-shade { + opacity: 0.2; + background-color: var(--shade-color); +} + +.bottom-shade { + background-image: linear-gradient(to bottom, var(--shade-color), transparent); +} + +.sc-loader .sc-loader-spin, +.cq-comparison-loader, +.cq-loading { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=http://www.w3.org/2000/svg width=32 height=32%3E%3Cpath d=M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0m0 4c6.627 0 12 5.373 12 12s-5.373 12-12 12S4 22.627 4 16 9.373 4 16 4 opacity=.25/%3E%3Cpath d=M16 0c8.837 0 16 7.163 16 16h-4c0-6.627-5.373-12-12-12V0z%3E%3CanimateTransform type=rotate repeatCount=indefinite calcMode=linear to=360 16 16 attributeName=transform dur=0.8s from=0 16 16/%3E%3C/path%3E%3C/svg%3E"); + background-size: cover; +} + +.smartcharts-dark .sc-loader .sc-loader-spin, +.smartcharts-dark .cq-comparison-loader, +.smartcharts-dark .cq-loading { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=http://www.w3.org/2000/svg width=32 height=32 fill=%23fff%3E%3Cpath opacity=.25 d=M16 0a16 16 0 000 32 16 16 0 000-32m0 4a12 12 0 010 24 12 12 0 010-24/%3E%3Cpath d=M16 0a16 16 0 0116 16h-4A12 12 0 0016 4z%3E%3CanimateTransform attributeName=transform type=rotate from=0 16 16 to=360 16 16 dur=0.8s repeatCount=indefinite/%3E%3C/path%3E%3C/svg%3E"); +} + +.sc-loader { + display: none; + position: absolute; + height: 100%; + width: 100%; + top: 0px; + left: 0px; +} + +.sc-loader.show { + display: block; + z-index: 9; +} + +.sc-loader .sc-loader-spin { + position: absolute; + height: 50px; + width: 50px; + left: 50%; + top: 50%; + margin-left: -25px; + margin-top: -45px; + z-index: 1; +} + +.smartcharts-light .sc-loader .sc-loader-spin { + stroke: #000; +} + +.smartcharts-dark .sc-loader .sc-loader-spin { + stroke: #fff; +} + +.sc-loader .sc-loader-status { + padding-top: 5px; + position: absolute; + height: 20px; + width: 200px; + left: 50%; + top: 50%; + margin-left: -100px; + margin-top: 10px; + text-align: center; +} + +.smartcharts-light .sc-loader .sc-loader-status { + color: #000; +} + +.smartcharts-dark .sc-loader .sc-loader-status { + color: #fff; +} + +.cq-loading { + height: 12px; + width: 12px; + display: inline-block; + vertical-align: middle; + background-size: contain; + margin-bottom: 2px; + margin-left: 1px; +} + +.sc-inline-loader { + position: relative; +} + +.sc-inline-loader:after { + border-radius: 3px; + position: absolute; + content: ' '; + left: 0px; + top: 0px; + width: 100%; + height: 100%; +} + +.sc-inline-loader__inner { + width: 50px; + height: 14px; + position: absolute; + top: calc(50% - 7px); + left: calc(50% - 25px); + opacity: 1 !important; +} + +.sc-inline-loader__inner__bullet { + height: 100%; + width: 4px; + margin: 0 2px; + display: inline-block; + border-radius: 3px; + -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; + animation: sk-stretchdelay 1.2s infinite ease-in-out; +} + +.smartcharts-light .sc-inline-loader__inner__bullet { + background-color: #85acb0; +} + +.smartcharts-dark .sc-inline-loader__inner__bullet { + background-color: #85acb0; +} + +.sc-inline-loader__inner__bullet:nth-child(2) { + -webkit-animation-delay: -1.1s; + animation-delay: -1.1s; +} + +.sc-inline-loader__inner__bullet:nth-child(3) { + -webkit-animation-delay: -1s; + animation-delay: -1s; +} + +.sc-inline-loader__inner__bullet:nth-child(4) { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} + +.sc-inline-loader--enable>span, +.sc-inline-loader--enable>div { + opacity: 0.32; +} + +@-webkit-keyframes sk-stretchdelay { + 0%, 40%, 100% { + -webkit-transform: scaleY(0.4); + } + + 20% { + -webkit-transform: scaleY(1); + } +} + +@keyframes sk-stretchdelay { + 0%, 40%, 100% { + transform: scaleY(0.4); + -webkit-transform: scaleY(0.4); + } + + 20% { + transform: scaleY(1); + -webkit-transform: scaleY(1); + } +} + +.rightclick_study .mouseManageText { + display: inline; +} + +.rightclick_study .mouseDeleteText { + display: none; +} + +.rightclick_study .overlayEdit { + margin-top: -4px; + margin-left: 5px; + opacity: 1; +} + +.rightclick_study .overlayEdit.stx-btn span { + border: none; + background-position: -301px -26px; + width: 23px; +} + +.ciq-sleeping .chartContainer { + opacity: 0.5; +} + +.cq-chart-controls { + position: absolute; + display: flex; + box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12); + z-index: 9; + justify-content: center; + align-items: stretch; + box-sizing: border-box; + border-radius: 2px; + transition: z-index 0.3s linear; +} + +.smartcharts-light .cq-chart-controls { + background: #fff; + box-shadow: inset 0 1px 0 0 #f2f3f4; +} + +.smartcharts-dark .cq-chart-controls { + background: #0e0e0e; + box-shadow: inset 0 1px 0 0 #151717; +} + +.cq-chart-controls.active { + z-index: 5; +} + +.cq-chart-controls .ciq-menu { + width: auto; +} + +.cq-chart-controls .ciq-menu>span { + margin: 0; + padding: 0; +} + +.cq-chart-controls .ciq-menu:after { + right: 5px; + top: 11px; + transform: rotate(225deg); + display: none; +} + +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive { + box-shadow: 0px -2px 0px 0 #ff444f; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive { + box-shadow: 0px -2px 0px 0 #ff444f; +} + +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn { + background: #fff; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn { + background: #0e0e0e; +} + +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.ic-icon, +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.cq-toggle { + color: #7f8397; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.ic-icon, +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.cq-toggle { + color: #fff; +} + +.cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.ic-icon .ic-subtitle, +.cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.cq-toggle .ic-subtitle { + display: none; + font-weight: bold; +} + +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.ic-icon .ic-subtitle, +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.cq-toggle .ic-subtitle { + color: #7f8397; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.ic-icon .ic-subtitle, +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled.stxMenuActive .cq-menu-btn>.cq-toggle .ic-subtitle { + color: #fff; +} + +.smartcharts-light .cq-chart-controls .ciq-menu.ciq-enabled .cq-menu-btn:hover { + background: #e6e9e9; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu.ciq-enabled .cq-menu-btn:hover { + background: #242828; +} + +.cq-chart-controls .ciq-menu .cq-menu-btn { + position: relative; + padding: 3px 5px; + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} + +.cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon { + padding: 0.35em 0.5em; +} + +.cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon.active .ic-subtitle, +.cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle.active .ic-subtitle { + font-weight: bold; +} + +.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon.active .ic-subtitle, +.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle.active .ic-subtitle { + color: #7f8397; +} + +.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon.active .ic-subtitle, +.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle.active .ic-subtitle { + color: #fff; +} + +.cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon .ic-subtitle, +.cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle .ic-subtitle { + display: none; + font-weight: normal; + line-height: normal; + text-align: center; + font-size: 1em; +} + +.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon .ic-subtitle, +.smartcharts-light .cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle .ic-subtitle { + color: rgba(0,0,0,0.8); +} + +.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon .ic-subtitle, +.smartcharts-dark .cq-chart-controls .ciq-menu .cq-menu-btn>.cq-toggle .ic-subtitle { + color: #999; +} + +.cq-chart-controls .ciq-menu .notification-badge { + background: #e9e9e9; + color: #2a3052; + border-radius: 100px; + font-size: 1em; + position: absolute; + top: 1px; + line-height: 18px; + left: 55px; + width: 16px; + height: 16px; + font-family: "IBM Plex Sans",sans-serif; + font-weight: bold; + text-align: center; + z-index: 1; +} + +.cq-chart-controls .ciq-menu .notification-badge.x2 { + width: 24px; +} + +.cq-chart-controls .ciq-menu .sc-tooltip__inner { + display: none !important; +} + +.cq-chart-controls .ciq-icon { + width: 24px; + height: 24px; + display: inline-block; + box-sizing: border-box; +} + +.cq-chart-controls .cq-toggle { + cursor: pointer; + color: #575757; +} + +.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown { + transform: translateX(-50%) translateY(3em); + left: 50%; +} + +.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done, +.cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active { + transform: translateX(-50%) translateY(0em); +} + +.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown { + bottom: auto; + left: 9em; + top: -1em; + transform: translateX(-3em); +} + +.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done, +.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active { + transform: translateX(0em); +} + +.cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-exit-active { + opacity: 0; + z-index: -3; +} + +.cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-done, +.cq-chart-controls .ciq-menu .cq-menu-dropdown.cq-menu-dropdown-enter-active { + opacity: 1; + z-index: 6; +} + +.cq-chart-control-bottom .cq-chart-controls { + bottom: 0px; + height: 40px; + width: 100%; + padding: 0 5px; +} + +.cq-chart-control-left .cq-chart-controls { + left: 0px; + top: 0; + height: 100%; + width: 100px; + padding: 5px 0; + flex-flow: column; +} + +.cq-chart-control-left .cq-chart-controls .ciq-menu { + min-height: 45px; + height: auto; +} + +.smartcharts-light .cq-chart-control-left .cq-chart-controls .ciq-menu .stxMenuActive { + box-shadow: 2px 0.3px 0px 0 #ff444f; +} + +.smartcharts-dark .cq-chart-control-left .cq-chart-controls .ciq-menu .stxMenuActive { + box-shadow: 2px 0.3px 0px 0 #ff444f; +} + +.cq-chart-control-left .cq-chart-controls .ciq-menu .cq-menu-btn { + padding: 0 5px; +} + +.smartcharts-mobile .cq-chart-controls { + justify-content: space-around; + padding: 0 0.7em; + height: 40px; +} + +.smartcharts-light .smartcharts-mobile .cq-chart-controls { + box-shadow: inset 0 1px 0 0 #f2f3f4; +} + +.smartcharts-dark .smartcharts-mobile .cq-chart-controls { + box-shadow: inset 0 1px 0 0 #151717; +} + +.smartcharts-mobile .cq-chart-controls.active { + z-index: 5; +} + +.smartcharts-mobile .cq-chart-controls .cq-menu-btn { + padding: 0; +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu { + padding: 0em; + width: auto; +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon { + padding: 0.35em 0em; +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu .cq-menu-btn>.bt-priod { + padding: 0.7em 0.5em !important; +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu .cq-menu-dropdown { + height: auto; + left: -1px; + padding: 0; + border: none; + box-shadow: none; +} + +.smartcharts-mobile .cq-chart-controls .ciq-menu .notification-badge { + left: 15px; + top: 0px; +} + +.smartcharts-mobile .cq-chart-controls .bt-priod, +.smartcharts-mobile .cq-chart-controls .cq-toggle, +.smartcharts-mobile .cq-chart-controls .cq-menu-btn, +.smartcharts-mobile .cq-chart-controls .sc-chart-size>span { + padding: 0 !important; +} + +.smartcharts-mobile .cq-chart-controls .ic-priod { + padding: 6px 0px !important; +} + +.smartcharts-mobile .cq-chart-controls .ic-icon-with-sub>svg { + padding: 5px 10px; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .cq-toggle { + padding: 0.35em 0.6em; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu { + width: 50px; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon { + padding: 0.35em 0em; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle { + display: none; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .notification-badge { + left: 28px; +} + +.smartcharts-480 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ic-priod { + padding: 0 !important; +} + +.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu { + width: auto; + min-width: 45px; +} + +.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon { + padding: 0.35em 0em; +} + +.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle { + display: none; +} + +.smartcharts-900 .smartcharts-desktop .cq-chart-control-bottom .cq-chart-controls .ciq-menu .notification-badge { + left: 30px; +} + +.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu { + width: auto; + min-width: 70px; +} + +.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu .cq-menu-btn>.ic-icon { + padding: 0.35em 0.5em; +} + +.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu .cq-menu-btn .ic-subtitle { + display: none; +} + +.smartcharts-1280 .smartcharts-desktop .cq-chart-controls .ciq-menu .notification-badge { + left: 55px; +} + +.sc-chart-footer { + display: flex; + height: 31px; + width: 100%; + position: absolute; + bottom: 0px; + left: 0px; + justify-content: flex-end; + z-index: 9; +} + +.smartcharts-light .sc-chart-footer { + color: #333; + background: #fff; + border-top: 1px solid #f2f3f4; +} + +.smartcharts-dark .sc-chart-footer { + color: #c2c2c2; + background: #0e0e0e; + border-top: 1px solid #151717; +} + +.sc-chart-footer .ciq-menu .cq-menu-btn { + padding: 8px; + cursor: pointer; +} + +.sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon { + width: 16px; + height: 16px; + line-height: 8px; +} + +.smartcharts-light .sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon svg { + fill: #c2c2c2; +} + +.sc-chart-footer .ciq-menu .cq-menu-btn .ic-subtitle { + display: none; +} + +.sc-chart-footer .ciq-menu .cq-menu-btn .ic-icon-with-sub { + line-height: 8px; +} + +.sc-chart-footer .ciq-menu .sc-tooltip__inner { + display: none; +} + +.smartcharts-light .sc-chart-footer .ciq-menu:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-chart-footer .ciq-menu:hover { + background: #242828; +} + +.sc-chart-footer__item { + padding: 8px; + font-size: 12px; + font-weight: normal; + font-style: normal; + line-height: 1.5; + letter-spacing: normal; + text-align: right; + position: relative; +} + +.sc-chart-footer__item--status { + padding-right: 0px; + padding-left: 0px; + margin-right: 16px; +} + +.sc-chart-footer__item--time { + padding-right: 0px; + padding-left: 0px; + margin-right: 8px; +} + +.sc-chart-footer__item--time span { + padding-right: 16px; + padding-left: 16px; +} + +.smartcharts-light .sc-chart-footer__item--time span { + border-right: 1px solid #f2f3f4; + border-left: 1px solid #f2f3f4; +} + +.smartcharts-dark .sc-chart-footer__item--time span { + border-right: 1px solid #151717; + border-left: 1px solid #151717; +} + +.sc-chart-footer__item .sc-tooltip__inner { + top: 9px; +} + +.sc-chart-footer__item .sc-tooltip__inner:before { + display: none; +} + +.smartcharts-light .cq-crosshair-toggle:hover { + background: #e6e9e9; +} + +.smartcharts-dark .cq-crosshair-toggle:hover { + background: #242828; +} + +.cq-crosshair { + display: none; +} + +.stx-crosshair-on .cq-crosshair { + position: relative; + display: block; + opacity: 0; + z-index: 30; + top: 0; + left: 0; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content { + border-radius: 4px; + position: absolute; + pointer-events: none; + padding: 8px; + box-sizing: border-box; + display: flex; + flex-direction: column; +} + +.smartcharts-light .stx-crosshair-on .cq-crosshair .cq-crosshair-content { + color: #333; + background: #d6dadb; +} + +.smartcharts-dark .stx-crosshair-on .cq-crosshair .cq-crosshair-content { + color: #fff; + background: #323738; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content:after, +.stx-crosshair-on .cq-crosshair .cq-crosshair-content:before { + content: ''; + position: absolute; + top: calc(50% - 4px); + width: 0; + height: 0; + border-top: 4px solid transparent; + border-bottom: 4px solid transparent; + display: none; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content:after { + left: -6px; +} + +.smartcharts-light .stx-crosshair-on .cq-crosshair .cq-crosshair-content:after { + border-right: 6px solid #d6dadb; +} + +.smartcharts-dark .stx-crosshair-on .cq-crosshair .cq-crosshair-content:after { + border-right: 6px solid #323738; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content:before { + left: 100%; +} + +.smartcharts-light .stx-crosshair-on .cq-crosshair .cq-crosshair-content:before { + border-left: 6px solid #d6dadb; +} + +.smartcharts-dark .stx-crosshair-on .cq-crosshair .cq-crosshair-content:before { + border-left: 6px solid #323738; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content .row { + font-size: 12px; + line-height: 18px; + margin-bottom: 4px; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content .row span:first-child { + padding-right: 5px; +} + +.stx-crosshair-on .cq-crosshair .cq-crosshair-content .row span:last-child { + font-weight: bold; +} + +.stx-crosshair-on .cq-crosshair.arrow-left .cq-crosshair-content { + transform: translateX(30px) translateY(-50%); +} + +.stx-crosshair-on .cq-crosshair.arrow-right .cq-crosshair-content { + transform: translateX(calc(-100% - 30px)) translateY(-50%); +} + +.stx-crosshair-on .cq-crosshair.arrow-left .cq-crosshair-content:after, +.stx-crosshair-on .cq-crosshair.arrow-right .cq-crosshair-content:before { + display: block; +} + +.stx-crosshair-on .cq-crosshair.active { + pointer-events: initial; + opacity: 1; +} + +@-webkit-keyframes move-background { + from { + -webkit-transform: translateX(0); + } + + to { + -webkit-transform: translateX(46px); + } +} + +@keyframes move-background { + from { + transform: translateX(0); + } + + to { + transform: translateX(46px); + } +} + +.pagination { + top: 0; + bottom: 0 !important; +} + +.pagination__loader { + color: #000; + position: relative; + height: 100%; + text-align: center; + overflow: hidden; + margin-left: -10000px; + opacity: 0.7; +} + +.pagination__loader-background { + position: absolute; + left: -46px; + right: 0; + top: 0; + bottom: 0; + z-index: -1; + -webkit-animation-name: move-background; + -webkit-animation-duration: 0.6s; + -webkit-animation-timing-function: linear; + -webkit-animation-iteration-count: infinite; + animation-name: move-background; + animation-duration: 0.6s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} + +.smartcharts-light .pagination__loader-background { + background: -webkit-repeating-linear-gradient(145deg, rgba(255,0,0,0) 1px, #f4f4f6 2px, #f4f4f6 11px, rgba(255,0,0,0) 12px, rgba(255,0,0,0) 20px); + background: repeating-linear-gradient(-55deg, rgba(255,0,0,0) 1px, #f4f4f6 2px, #f4f4f6 11px, rgba(255,0,0,0) 12px, rgba(255,0,0,0) 20px); +} + +.smartcharts-dark .pagination__loader-background { + background: -webkit-repeating-linear-gradient(145deg, rgba(255,0,0,0) 1px, #333 2px, #333 11px, rgba(255,0,0,0) 12px, rgba(255,0,0,0) 20px); + background: repeating-linear-gradient(-55deg, rgba(255,0,0,0) 1px, #333 2px, #333 11px, rgba(255,0,0,0) 12px, rgba(255,0,0,0) 20px); +} + +.sc-toolbar-widget { + position: absolute; + border-radius: 4px; + width: 40px; + top: 102px; + left: 1.2em; + z-index: 4; + box-sizing: content-box; +} + +.smartcharts-light .sc-toolbar-widget { + background: #fff; + border: 8px solid #f2f3f4; +} + +.smartcharts-dark .sc-toolbar-widget { + background: #0e0e0e; + border: 8px solid #151717; +} + +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu { + width: 40px; + height: 40px; + box-sizing: border-box; + padding: 8px; +} + +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon { + width: 24px !important; + height: 24px !important; + top: 0px; +} + +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg { + width: 24px !important; + height: 24px !important; + position: relative; + bottom: 0px; +} + +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg, +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg { + fill: #333; +} + +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg, +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-views__menu .ic-icon svg, +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-download__menu .ic-icon svg, +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-studies__menu .ic-icon svg, +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-dtools__menu .ic-icon svg { + fill: #c2c2c2; +} + +.sc-toolbar-widget .ciq-menu .cq-menu-btn .sc-chart-mode__menu .ic-icon svg { + width: 20px !important; + height: 20px !important; + bottom: -2px; +} + +.smartcharts-light .sc-toolbar-widget .ciq-menu .cq-menu-btn:hover { + background: #e6e9e9; +} + +.smartcharts-dark .sc-toolbar-widget .ciq-menu .cq-menu-btn:hover { + background: #242828; +} + +.sc-toolbar-widget .sc-tooltip__inner { + left: calc(100% + 15px); +} + +.sc-toolbar-widget--bottom { + top: auto; + bottom: 38px; +} + +.sc-toolbar-widget:hover { + z-index: 5; +} + +/*# sourceMappingURL=smartcharts.css.map*/ \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_444444_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_444444_256x240.png new file mode 100644 index 0000000000000..a802263b58990 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_444444_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_555555_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_555555_256x240.png new file mode 100644 index 0000000000000..7009bf752f54a Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_555555_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777620_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777620_256x240.png new file mode 100644 index 0000000000000..e0a1fdfdc0164 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777620_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777777_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777777_256x240.png new file mode 100644 index 0000000000000..8e26ee4fd8c3d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_777777_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_cc0000_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_cc0000_256x240.png new file mode 100644 index 0000000000000..28154300a6701 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_cc0000_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/images/ui-icons_ffffff_256x240.png b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_ffffff_256x240.png new file mode 100644 index 0000000000000..4d66f596e5967 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/css/images/ui-icons_ffffff_256x240.png differ diff --git a/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css b/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css new file mode 100644 index 0000000000000..3d177fbf8b8e7 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css @@ -0,0 +1,441 @@ +/* stylelint-disable color-no-hex */ +/* stylelint-enable color-no-hex */ +@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@700&display=swap"); +.dbot-banner { + font-family: 'IBM Plex Sans', sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: antialiased; + align-items: center; + align-self: center; + display: flex; + float: left; + height: calc(100% - 20px); + margin: 10px 0; } + .dbot-banner__icon { + margin-right: 8px; + margin-left: 32px; } + .dbot-banner__ad { + color: #fff; + margin-right: 16px; + display: flex; + justify-content: center; } + .dbot-banner__ad-text { + font-size: 16px; + font-weight: bold; + line-height: 1.5; } + .dbot-banner__button { + font-size: 14px; + background-color: #ff444f; + font-weight: bold; + vertical-align: middle; + align-items: center; + justify-content: center; + touch-action: manipulation; + cursor: pointer; + white-space: nowrap; + padding: 0 16px; + display: inline-flex; + border: 0; + height: 32px; + border-radius: 4px; + transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1); + outline: 0; + position: relative; + text-decoration: none; + text-transform: none !important; } + .dbot-banner__button:hover { + background: #eb3e48; } + .dbot-banner__button:focus { + outline: none; } + .dbot-banner__separator { + width: 2px; + height: 36px; + background-color: #17212c; } + +@media only screen and (max-width: 520px) { + .dbot-banner { + display: none; } } + +@media only screen and (max-width: 700px) { + .dbot-banner__separator { + display: none; } } + +#footer .container { + max-width: 1200px; } + +#footer #footer-menu h4 { + font-size: 0.85em; } + +#footer #footer-menu ul { + padding: 0px; } + +#footer #footer-menu li { + line-height: 1; + word-wrap: break-word; + -webkit-hyphens: auto; + -ms-hyphens: auto; + -moz-hyphens: auto; + hyphens: auto; } + +#footer .content-inverse-color a { + text-decoration: underline; } + +#footer #footer-regulatory { + padding-bottom: 0px; } + #footer #footer-regulatory a, #footer #footer-regulatory p, #footer #footer-regulatory .fld-risk-warning legend { + font-size: 13px !important; } + #footer #footer-regulatory a, #footer #footer-regulatory p { + font-weight: 100; } + #footer #footer-regulatory a { + color: #dedede; } + #footer #footer-regulatory p, #footer #footer-regulatory .fld-risk-warning legend { + color: #a8a8a8; + text-align: justify; + margin: 0 0 10px; } + #footer #footer-regulatory .fld-risk-warning { + margin-bottom: 30px; + border-color: #44484c; } + #footer #footer-regulatory .fld-risk-warning legend { + text-transform: uppercase; } + #footer #footer-regulatory .about-binary { + border-top: 1px solid #44484c; + border-bottom: 1px solid #44484c; + padding: 10px 0; + margin-bottom: 10px; } + #footer #footer-regulatory .about-binary p { + margin: 0; } + #footer #footer-regulatory .risk-warning { + margin-bottom: 30px; } + #footer #footer-regulatory .risk-warning p { + font-size: 16px; } + #footer #footer-regulatory #ratelimit-error-message, #footer #footer-regulatory #site-status-message { + position: fixed; + top: 0; + width: 100%; + background-color: #fef1cf; + z-index: 999; } + #footer #footer-regulatory #site-status-message { + z-index: 9999; } + +#footer .iom-icon { + width: 90px; } + +#footer .lga-icon { + width: 100px; } + +#footer .gamstop-icon { + width: 109px; } + +#footer .gamstop-icon.data-show-visible + .lga-icon { + width: 70px; + margin-bottom: 3px; + margin-left: -10px; } + +#footer .flex-row { + display: flex; + flex-direction: row; + align-items: center; } + +#footer .lga-gamstop-icon-container { + display: flex; + align-items: flex-start; + flex-direction: column-reverse; } + +#footer .age-restriction { + width: 50px; } + +#footer .social-icons { + margin-left: auto; } + #footer .social-icons > *:not(:first-child) { + margin-left: 10px; } + #footer .social-icons img { + height: 35px; + width: 35px; } + +#footer .icon-row { + padding-top: 10px; + padding-bottom: 14px; } + +#footer .regulation-logos > * { + margin-right: 20px; } + +#footer .regulation-logos .vanuatu-icon { + width: 160px; + margin-left: -30px; + margin-right: 0; } + +#footer .regulation-logos .bvi-icon { + width: 115px; + margin-left: -30px; + margin-right: 0; } + +#footer .regulation-logos .labuan-icon { + width: 120px; } + +#footer #end-note { + line-height: 25px; + background: #c03; + font-size: 10.41667px; + position: fixed; + bottom: 0; + z-index: 100 !important; + width: 100%; } + +#footer #status_notification { + animation: moveInBottom 0.2s ease-in; + background-color: #e98024; + display: none; + align-items: center; + padding: 10px 7px; + position: fixed; + bottom: 8px; + right: 8px; + left: 8px; + border-radius: 5px; + z-index: 1000; } + #footer #status_notification_text { + color: #ffffff; + font-size: 0.85em; + margin: 0 auto 0 0; } + #footer #status_notification_type { + padding-right: 7px; } + #footer #status_notification_close { + padding-left: 7px; } + #footer #status_notification_close:hover { + cursor: pointer; } + +@media screen and (max-width: 590px) { + #footer .icon-row { + flex-direction: column; } + #footer .icon-row > * { + margin-right: 0; + margin-bottom: 20px; } + #footer .social-icons { + margin-left: 0; } } + +@media screen and (max-width: 400px) { + #footer .regulation-logos .vanuatu-icon { + width: 120px; + margin-left: -30px; + margin-right: 0; } + #footer .regulation-logos .bvi-icon { + width: 100px; + margin-left: -30px; + margin-right: 0; } + #footer .regulation-logos .labuan-icon { + width: 110px; + margin: 0px; } } + +.notification-banner { + background-color: #f2f2f2; + display: flex; + flex-direction: row; + max-width: 940px; + width: 100%; + align-items: center; + align-items: center; + position: relative; + margin: 1rem auto; + left: 0; + transform: none; + z-index: 100 !important; } + .notification-banner__orange-hexagon { + display: none; + border-bottom: 130px solid #e98024; + border-left: 0 solid transparent; + border-right: 45px solid transparent; + height: 0; + width: 26rem; } + .notification-banner__content { + max-width: 425px; + width: 100%; + margin: auto 86px auto 9px; } + .notification-banner__content_header { + font-weight: 700; + margin: 0; + margin-bottom: 4px; + line-height: 24px; + font-size: 16px; } + .notification-banner__content_text { + margin: 0; + font-weight: 400; + line-height: 24px; + font-size: 16px; } + .notification-banner__content_button { + text-decoration: none; + text-align: center; + line-height: 100%; + padding: 8px 25px; + display: inline-block; + font-weight: 400; + font-family: inherit; + border-radius: 4px; + cursor: pointer; + font-size: 18px; + border: 0; + background: #2e8836; + color: #ffffff !important; + min-height: auto; } + @media (max-width: 1234px) { + .notification-banner__content { + margin-right: 20px; } } + @media (max-width: 1024px) { + .notification-banner__content { + position: absolute; + max-width: 400px; + color: #ffffff; } } + @media (max-width: 590px) { + .notification-banner__content { + max-width: 300px; } } + @media (max-width: 440px) { + .notification-banner__content { + max-width: 13rem; } } + @media (max-width: 1234px) { + .notification-banner { + max-width: 880px; } } + @media (max-width: 1024px) { + .notification-banner { + max-width: 700px; + padding: 0 10px 0 0; + transform: none; } + .notification-banner > img { + display: none; } + .notification-banner__orange-hexagon { + display: inline-block; } } + @media (max-width: 769px) { + .notification-banner { + max-width: 520px; + padding: 0 10px 0 0; + transform: none; } } + +html, +body { + height: 100%; + margin: 0px; + max-width: 100%; + overflow-x: hidden; } + +.top-image { + display: none; } + +#header { + height: 81px; + width: 100%; + background-color: #2a3052; + border-top: 2px solid #394171; + border-bottom: 4px solid #e98024; } + +#header .wrapper, +#topbar .wrapper { + max-width: 960px; + margin: 0 auto; } + +#topbar { + background-color: #15212d; + width: 100%; + color: #fff; + line-height: 1; + font-size: 70%; + text-align: right; + padding: 3px 20px; + display: table; } + +#main { + width: 100%; + max-width: 960px; + margin: 0 auto; } + +.left, +.right { + width: 45%; + margin: 20px; + display: inline-block; + vertical-align: top; } + +.right img { + width: 200%; } + +.cta { + margin: 30px auto; + text-align: center; } + +.contact { + text-align: center; } + +ul.bullet { + margin: 0 !important; } + +.barspinner { + position: fixed; + left: 50%; + top: 50%; + margin-left: -5rem; + z-index: 9999; } + +.center { + text-align: center; } + +.half-width { + width: 50%; + float: left; } + +.clear { + clear: both; } + +.button span { + text-transform: inherit !important; } + +.show-on-load { + display: none; } + +#split-container { + display: flex; + flex-direction: row; + width: 100%; } + #split-container .puzzle-logo { + padding-left: 20px; } + +#select_language { + z-index: 101; } + +/* Keep this below since css after this + * will be interfering with small + * screen sizes + */ +@media only screen and (max-width: 980px) { + .half-width { + width: 49%; } + .logo-parent { + margin-left: 21px; } + .half-width p { + padding: 0 20px 0 20px; } } + +@media only screen and (max-width: 480px) { + #split-container { + display: block; + width: auto; } + .top-image { + display: block; } + .half-width { + width: 100%; } + .half-width p, .half-width img { + margin: 1em; } + .bottom-image { + display: none; } + .left, + .right { + width: 100%; + margin: 20px; + display: block; + vertical-align: top; } + .clear { + position: sticky; + padding: 1px 0 1px 0; + bottom: 0; + background-color: #fff; + width: 100%; + box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.2); } + p { + margin: 9px auto !important; } } + +/*# sourceMappingURL=index-0c9d5a10a0.css.map */ diff --git a/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css.map b/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css.map new file mode 100644 index 0000000000000..698a72cc9eb71 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/css/index-0c9d5a10a0.css.map @@ -0,0 +1 @@ +{"version":3,"file":"index-0c9d5a10a0.css","sources":["index.scss","_color.scss","_constants.scss","_dbot-banner.scss","_footer.scss","_notification-banner.scss"],"sourcesContent":["@import 'color';\n@import 'constants';\n@import 'dbot-banner';\n@import 'footer';\n@import 'notification-banner';\n\nhtml,\nbody {\n height: 100%;\n margin: 0px;\n max-width: 100%;\n overflow-x: hidden;\n}\n.top-image {\n display: none;\n}\n#header {\n height: 81px;\n width: 100%;\n background-color: #2a3052;\n border-top: 2px solid #394171;\n border-bottom: 4px solid #e98024;\n}\n#header .wrapper,\n#topbar .wrapper {\n max-width: 960px;\n margin: 0 auto;\n}\n#topbar {\n background-color: #15212d;\n width: 100%;\n color: #fff;\n line-height: 1;\n font-size: 70%;\n text-align: right;\n padding: 3px 20px;\n display: table;\n}\n#main {\n width: 100%;\n max-width: 960px;\n margin: 0 auto;\n}\n.left,\n.right {\n width: 45%;\n margin: 20px;\n display: inline-block;\n vertical-align: top;\n}\n.right img {\n width: 200%;\n}\n.cta {\n margin: 30px auto;\n text-align: center;\n}\n.contact {\n text-align: center;\n}\nul.bullet {\n margin: 0 !important;\n}\n.barspinner {\n position: fixed;\n left: 50%;\n top: 50%;\n margin-left: -5rem;\n z-index: 9999;\n}\n.center {\n text-align: center;\n}\n.half-width {\n width: 50%;\n float: left;\n}\n.clear {\n clear: both;\n}\n.button span {\n text-transform: inherit !important;\n}\n.show-on-load {\n display: none;\n}\n#split-container {\n display: flex;\n flex-direction: row;\n width: 100%;\n .puzzle-logo {\n padding-left: 20px;\n }\n}\n#select_language {\n z-index: 101;\n}\n\n/* Keep this below since css after this \n * will be interfering with small\n * screen sizes\n */\n@media only screen and (max-width: 980px) {\n .half-width {\n width: 49%;\n }\n .logo-parent {\n margin-left: 21px;\n }\n .half-width p {\n padding: 0 20px 0 20px;\n }\n}\n@media only screen and (max-width: 480px) {\n #split-container {\n display: block;\n width: auto;\n }\n .top-image {\n display: block;\n }\n .half-width {\n width: 100%;\n }\n .half-width p, .half-width img {\n margin: 1em; \n }\n .bottom-image {\n display: none;\n }\n .left,\n .right {\n width: 100%;\n margin: 20px;\n display: block;\n vertical-align: top;\n }\n .clear {\n position: sticky;\n padding: 1px 0 1px 0;\n bottom: 0;\n background-color: #fff;\n width: 100%;\n box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.2);\n }\n p {\n margin: 9px auto !important;\n }\n}","$brand-gray: #f2f2f2;\n$brand-dark-gray: #dedede;\n$brand-blue: #2a3052;\n$brand-dark-blue: #15212d;\n$brand-orange: #e98024;\n$brand-btn: #2e8836;\n$brand-red: #ff444f;\n$brand-btn-active: #14602b;\n$brand-primary-dark: #15212d;\n$white: #ffffff;\n$black: #000000;\n$toolbox-btn-active: #dddddd;\n","$CONTENT_WIDTH: 1000px;\n$READABLE_CONTENT_WIDTH: 700px;\n\n$BORDER_RADIUS: 3px;\n$PAGE_PADDING: 0.5em;\n$HEADER_HEIGHT: 3rem;\n$HEADER_HEIGHT_MOBILE: 5rem;\n$BOX_SHADOW: 0 0 50px 0 rgba(0, 0, 0, 0.25);\n\n$FONT_BASE: 15px;\n$FONT_SCALE: 1.2;\n$LINE_HEIGHT: 1.25;\n\n// Use only these font sizes throughout the site\n$FONT_SIZE_S: 0.85em;\n$FONT_SIZE_XS: $FONT_BASE / $FONT_SCALE / $FONT_SCALE; // .75614rem =~ 12px\n\n// Brand colors and derivatives\n/* stylelint-disable color-no-hex */\n$COLOR_ORANGE: #e98024;\n\n// Colors used for secondary purposes. To be used sparingly\n$COLOR_RED : #c03;\n$COLOR_YELLOW : #fef1cf;\n$COLOR_GRAY : #dedede;\n$COLOR_DARK_GRAY : #44484c;\n/* stylelint-enable color-no-hex */",".dbot-banner {\n @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@700&display=swap');\n font-family: 'IBM Plex Sans', sans-serif;\n -webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: antialiased;\n align-items: center;\n align-self: center;\n display: flex;\n float: left;\n height: calc(100% - 20px);\n margin: 10px 0;\n\n &__icon {\n margin-right: 8px;\n margin-left: 32px;\n }\n &__ad {\n color: #fff;\n margin-right: 16px;\n display: flex;\n justify-content: center;\n\n &-text {\n font-size: 16px;\n font-weight: bold;\n line-height: 1.5;\n }\n }\n &__button {\n font-size: 14px;\n background-color: #ff444f;\n font-weight: bold;\n vertical-align: middle;\n align-items: center;\n justify-content: center;\n touch-action: manipulation;\n cursor: pointer;\n white-space: nowrap;\n padding: 0 16px;\n display: inline-flex;\n border: 0;\n height: 32px;\n border-radius: 4px;\n transition: all .2s cubic-bezier(.65,.05,.36,1);\n outline: 0;\n position: relative;\n text-decoration: none;\n text-transform: none!important;\n\n &:hover {\n background: #eb3e48;\n }\n\n &:focus {\n outline: none;\n }\n }\n &__separator {\n width: 2px;\n height: 36px;\n background-color: #17212c;\n }\n}\n\n@media only screen and (max-width: 520px) {\n .dbot-banner {\n display: none;\n }\n}\n\n@media only screen and (max-width: 700px) {\n .dbot-banner {\n &__separator {\n display: none;\n }\n }\n}","\n#footer {\n .container {\n max-width: 1200px;\n }\n #footer-menu {\n h4 {\n font-size: $FONT_SIZE_S;\n }\n ul {\n padding: 0px;\n }\n li {\n line-height: 1;\n word-wrap: break-word;\n -webkit-hyphens: auto;\n -ms-hyphens: auto;\n -moz-hyphens: auto;\n hyphens: auto;\n }\n }\n .content-inverse-color a {\n text-decoration: underline;\n }\n #footer-regulatory {\n padding-bottom: 0px;\n\n a, p, .fld-risk-warning legend {\n font-size: 13px !important;\n }\n a, p {\n font-weight: 100;\n }\n a {\n color: $COLOR_GRAY;\n }\n p, .fld-risk-warning legend {\n color: #a8a8a8; // stylelint-disable color-no-hex\n text-align: justify;\n margin: 0 0 10px;\n }\n .fld-risk-warning {\n margin-bottom: 30px;\n border-color: $COLOR_DARK_GRAY;\n\n legend {\n text-transform: uppercase;\n }\n }\n .about-binary {\n border-top: 1px solid $COLOR_DARK_GRAY;\n border-bottom: 1px solid $COLOR_DARK_GRAY;\n padding: 10px 0;\n margin-bottom: 10px;\n\n p {\n margin: 0;\n }\n }\n .risk-warning {\n margin-bottom: 30px;\n p {\n font-size: 16px;\n }\n }\n #ratelimit-error-message, #site-status-message {\n position: fixed;\n top: 0;\n width: 100%;\n background-color: $COLOR_YELLOW;\n z-index: 999;\n }\n #site-status-message {\n z-index: 9999;\n }\n }\n .iom-icon {\n width: 90px;\n }\n .lga-icon {\n width: 100px;\n }\n .gamstop-icon {\n width: 109px;\n }\n .gamstop-icon.data-show-visible + .lga-icon {\n width: 70px;\n margin-bottom: 3px;\n margin-left: -10px;\n }\n .flex-row {\n display: flex;\n flex-direction: row;\n align-items: center;\n }\n .lga-gamstop-icon-container {\n display: flex;\n align-items: flex-start;\n flex-direction: column-reverse;\n }\n .age-restriction {\n width: 50px;\n }\n .social-icons {\n margin-left: auto;\n\n > *:not(:first-child) {\n margin-left: 10px;\n }\n img {\n height: 35px;\n width: 35px;\n }\n }\n .icon-row {\n padding-top: 10px;\n padding-bottom: 14px;\n }\n .regulation-logos {\n > * {\n margin-right: 20px;\n }\n .vanuatu-icon {\n width: 160px;\n margin-left: -30px;\n margin-right: 0;\n }\n .bvi-icon {\n width: 115px;\n margin-left: -30px;\n margin-right: 0;\n }\n .labuan-icon {\n width: 120px;\n }\n }\n #end-note {\n line-height: 25px;\n background: $COLOR_RED;\n font-size: $FONT_SIZE_XS;\n position: fixed;\n bottom: 0;\n z-index: 100 !important;\n width: 100%;\n }\n #status_notification {\n animation: moveInBottom 0.2s ease-in;\n background-color: $COLOR_ORANGE;\n display: none;\n align-items: center;\n padding: 10px 7px;\n position: fixed;\n bottom: 8px;\n right: 8px;\n left: 8px;\n border-radius: 5px;\n z-index: 1000;\n\n &_text {\n color: $white;\n font-size: $FONT_SIZE_S;\n margin: 0 auto 0 0;\n }\n &_type {\n padding-right: 7px;\n }\n &_close {\n padding-left: 7px;\n\n &:hover {\n cursor: pointer;\n }\n }\n }\n @media screen and (max-width: 590px) {\n .icon-row {\n flex-direction: column;\n\n > * {\n margin-right: 0;\n margin-bottom: 20px;\n }\n }\n .social-icons {\n margin-left: 0;\n }\n }\n @media screen and (max-width: 400px) {\n .regulation-logos {\n .vanuatu-icon {\n width: 120px;\n margin-left: -30px;\n margin-right: 0;\n }\n .bvi-icon {\n width: 100px;\n margin-left: -30px;\n margin-right: 0;\n }\n .labuan-icon {\n width: 110px;\n margin: 0px;\n }\n }\n }\n}\n","@import \"color\";\n\n.notification-banner {\n background-color: $brand-gray;\n display: flex;\n flex-direction: row;\n max-width: 940px;\n width: 100%;\n align-items: center;\n align-items: center;\n position: relative;\n margin: 1rem auto;\n left: 0;\n transform: none;\n z-index: 100 !important;\n\n &__orange-hexagon {\n display: none;\n border-bottom: 130px solid $brand-orange;\n border-left: 0 solid transparent;\n border-right: 45px solid transparent;\n height: 0;\n width: 26rem;\n }\n\n &__content {\n max-width: 425px;\n width: 100%;\n margin: auto 86px auto 9px;\n\n &_header {\n font-weight: 700;\n margin: 0;\n margin-bottom: 4px;\n line-height: 24px;\n font-size: 16px;\n }\n &_text {\n margin: 0;\n font-weight: 400;\n line-height: 24px;\n font-size: 16px;\n }\n &_button {\n text-decoration: none;\n text-align: center;\n line-height: 100%;\n padding: 8px 25px;\n display: inline-block;\n font-weight: 400;\n font-family: inherit;\n border-radius: 4px;\n cursor: pointer;\n font-size: 18px;\n border: 0;\n background: $brand-btn;\n color: $white !important;\n min-height: auto;\n }\n\n @media (max-width: 1234px) {\n margin-right: 20px;\n }\n @media (max-width: 1024px) {\n position: absolute;\n max-width: 400px;\n color: $white;\n }\n @media (max-width: 590px) {\n max-width: 300px;\n }\n @media (max-width: 440px) {\n max-width: 13rem;\n }\n }\n @media (max-width: 1234px) {\n max-width: 880px;\n }\n @media (max-width: 1024px) {\n max-width: 700px;\n padding: 0 10px 0 0;\n transform: none;\n\n > img {\n display: none;\n }\n &__orange-hexagon {\n display: inline-block;\n }\n }\n @media (max-width: 769px) {\n max-width: 520px;\n padding: 0 10px 0 0;\n transform: none;\n }\n}\n"],"names":[],"mappings":"AEkBA,oCAAoC;AAQpC,mCAAmC;ACzB/B,OAAO,CAAC,mFAAI;AADhB,AAAA,YAAY,CAAC;EAET,WAAW,EAAE,2BAA2B;EACxC,sBAAsB,EAAE,WAAW;EACtC,uBAAuB,EAAE,WAAW;EACjC,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,iBAAiB;EACzB,MAAM,EAAE,MAAM,GAoDjB;EAlDI,AAAD,kBAAO,CAAC;IACJ,YAAY,EAAE,GAAG;IACjB,WAAW,EAAE,IAAI,GACpB;EACA,AAAD,gBAAK,CAAC;IACF,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,IAAI;IAClB,OAAO,EAAE,IAAI;IACb,eAAe,EAAE,MAAM,GAO1B;IALI,AAAD,qBAAM,CAAC;MACH,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI;MACjB,WAAW,EAAE,GAAG,GACnB;EAEJ,AAAD,oBAAS,CAAC;IACN,SAAS,EAAE,IAAI;IACf,gBAAgB,EAAE,OAAO;IACzB,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,MAAM;IACtB,WAAW,EAAE,MAAM;IACnB,eAAe,EAAE,MAAM;IACvB,YAAY,EAAE,YAAY;IAC1B,MAAM,EAAE,OAAO;IACf,WAAW,EAAE,MAAM;IACnB,OAAO,EAAE,MAAM;IACf,OAAO,EAAE,WAAW;IACpB,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,IAAI;IACZ,aAAa,EAAE,GAAG;IAClB,UAAU,EAAE,GAAG,CAAC,IAAG,CAAC,iCAA2B;IAC/C,OAAO,EAAE,CAAC;IACV,QAAQ,EAAE,QAAQ;IAClB,eAAe,EAAE,IAAI;IACrB,cAAc,EAAE,IAAI,CAAA,UAAU,GASjC;IA5BA,AAqBG,oBArBK,AAqBJ,MAAM,CAAC;MACJ,UAAU,EAAE,OAAO,GACtB;IAvBJ,AAyBG,oBAzBK,AAyBJ,MAAM,CAAC;MACJ,OAAO,EAAE,IAAI,GAChB;EAEJ,AAAD,uBAAY,CAAC;IACT,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,IAAI;IACZ,gBAAgB,EAAE,OAAO,GAC5B;;AAGL,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EACpC,AAAA,YAAY,CAAC;IACT,OAAO,EAAE,IAAI,GAChB;;AAGL,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EAE/B,AAAD,uBAAY,CAAC;IACT,OAAO,EAAE,IAAI,GAChB;;ACzET,AACI,OADG,CACH,UAAU,CAAC;EACP,SAAS,EAAE,MAAM,GACpB;;AAHL,AAKQ,OALD,CAIH,YAAY,CACR,EAAE,CAAC;EACC,SAAS,EFOP,MAAM,GENX;;AAPT,AAQQ,OARD,CAIH,YAAY,CAIR,EAAE,CAAC;EACC,OAAO,EAAE,GAAG,GACf;;AAVT,AAWQ,OAXD,CAIH,YAAY,CAOR,EAAE,CAAC;EACC,WAAW,EAAE,CAAC;EACd,SAAS,EAAE,UAAU;EACrB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,IAAI,GAChB;;AAlBT,AAoBI,OApBG,CAoBH,sBAAsB,CAAC,CAAC,CAAC;EACrB,eAAe,EAAE,SAAS,GAC7B;;AAtBL,AAuBI,OAvBG,CAuBH,kBAAkB,CAAC;EACf,cAAc,EAAE,GAAG,GAkDtB;EA1EL,AA0BQ,OA1BD,CAuBH,kBAAkB,CAGd,CAAC,EA1BT,OAAO,CAuBH,kBAAkB,CAGX,CAAC,EA1BZ,OAAO,CAuBH,kBAAkB,CAGR,iBAAiB,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,eAAe,GAC7B;EA5BT,AA6BQ,OA7BD,CAuBH,kBAAkB,CAMd,CAAC,EA7BT,OAAO,CAuBH,kBAAkB,CAMX,CAAC,CAAC;IACD,WAAW,EAAE,GAAG,GACnB;EA/BT,AAgCQ,OAhCD,CAuBH,kBAAkB,CASd,CAAC,CAAC;IACE,KAAK,EFVM,OAAO,GEWrB;EAlCT,AAmCQ,OAnCD,CAuBH,kBAAkB,CAYd,CAAC,EAnCT,OAAO,CAuBH,kBAAkB,CAYX,iBAAiB,CAAC,MAAM,CAAC;IACxB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,OAAO;IACnB,MAAM,EAAE,QAAQ,GACnB;EAvCT,AAwCQ,OAxCD,CAuBH,kBAAkB,CAiBd,iBAAiB,CAAC;IACd,aAAa,EAAE,IAAI;IACnB,YAAY,EFlBD,OAAO,GEuBrB;IA/CT,AA4CY,OA5CL,CAuBH,kBAAkB,CAiBd,iBAAiB,CAIb,MAAM,CAAC;MACH,cAAc,EAAE,SAAS,GAC5B;EA9Cb,AAgDQ,OAhDD,CAuBH,kBAAkB,CAyBd,aAAa,CAAC;IACV,UAAU,EAAE,GAAG,CAAC,KAAK,CFzBV,OAAO;IE0BlB,aAAa,EAAE,GAAG,CAAC,KAAK,CF1Bb,OAAO;IE2BlB,OAAO,EAAE,MAAM;IACf,aAAa,EAAE,IAAI,GAKtB;IAzDT,AAsDY,OAtDL,CAuBH,kBAAkB,CAyBd,aAAa,CAMT,CAAC,CAAC;MACE,MAAM,EAAE,CAAC,GACZ;EAxDb,AA0DQ,OA1DD,CAuBH,kBAAkB,CAmCd,aAAa,CAAC;IACV,aAAa,EAAE,IAAI,GAItB;IA/DT,AA4DY,OA5DL,CAuBH,kBAAkB,CAmCd,aAAa,CAET,CAAC,CAAC;MACE,SAAS,EAAE,IAAI,GAClB;EA9Db,AAgEQ,OAhED,CAuBH,kBAAkB,CAyCd,wBAAwB,EAhEhC,OAAO,CAuBH,kBAAkB,CAyCY,oBAAoB,CAAC;IAC3C,QAAQ,EAAE,KAAK;IACf,GAAG,EAAE,CAAC;IACN,KAAK,EAAE,IAAI;IACX,gBAAgB,EF9CL,OAAO;IE+ClB,OAAO,EAAE,GAAG,GACf;EAtET,AAuEQ,OAvED,CAuBH,kBAAkB,CAgDd,oBAAoB,CAAC;IACjB,OAAO,EAAE,IAAI,GAChB;;AAzET,AA2EI,OA3EG,CA2EH,SAAS,CAAC;EACN,KAAK,EAAE,IAAI,GACd;;AA7EL,AA8EI,OA9EG,CA8EH,SAAS,CAAC;EACN,KAAK,EAAE,KAAK,GACf;;AAhFL,AAiFI,OAjFG,CAiFH,aAAa,CAAC;EACV,KAAK,EAAE,KAAK,GACf;;AAnFL,AAoFI,OApFG,CAoFH,aAAa,AAAA,kBAAkB,GAAG,SAAS,CAAC;EACxC,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,WAAW,EAAE,KAAK,GACrB;;AAxFL,AAyFI,OAzFG,CAyFH,SAAS,CAAC;EACN,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,MAAM,GACtB;;AA7FL,AA8FI,OA9FG,CA8FH,2BAA2B,CAAC;EACxB,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,UAAU;EACvB,cAAc,EAAE,cAAc,GACjC;;AAlGL,AAmGI,OAnGG,CAmGH,gBAAgB,CAAC;EACb,KAAK,EAAE,IAAI,GACd;;AArGL,AAsGI,OAtGG,CAsGH,aAAa,CAAC;EACV,WAAW,EAAE,IAAI,GASpB;EAhHL,AAyGQ,OAzGD,CAsGH,aAAa,GAGP,CAAC,AAAA,IAAK,CAAA,YAAY,EAAE;IAClB,WAAW,EAAE,IAAI,GACpB;EA3GT,AA4GQ,OA5GD,CAsGH,aAAa,CAMT,GAAG,CAAC;IACA,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI,GACd;;AA/GT,AAiHI,OAjHG,CAiHH,SAAS,CAAC;EACN,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI,GACvB;;AApHL,AAsHQ,OAtHD,CAqHH,iBAAiB,GACX,CAAC,CAAC;EACA,YAAY,EAAE,IAAI,GACrB;;AAxHT,AAyHQ,OAzHD,CAqHH,iBAAiB,CAIb,aAAa,CAAC;EACV,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,KAAK;EAClB,YAAY,EAAE,CAAC,GAClB;;AA7HT,AA8HQ,OA9HD,CAqHH,iBAAiB,CASb,SAAS,CAAC;EACN,KAAK,EAAE,KAAK;EACZ,WAAW,EAAE,KAAK;EAClB,YAAY,EAAE,CAAC,GAClB;;AAlIT,AAmIQ,OAnID,CAqHH,iBAAiB,CAcb,YAAY,CAAC;EACT,KAAK,EAAE,KAAK,GACf;;AArIT,AAuII,OAvIG,CAuIH,SAAS,CAAC;EACN,WAAW,EAAE,IAAI;EACjB,UAAU,EFpHK,IAAI;EEqHnB,SAAS,EF5HF,UAAsC;EE6H7C,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,cAAc;EACvB,KAAK,EAAE,IAAI,GACd;;AA/IL,AAgJI,OAhJG,CAgJH,oBAAoB,CAAC;EACjB,SAAS,EAAE,yBAAyB;EACpC,gBAAgB,EFhIT,OAAO;EEiId,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,MAAM;EACnB,OAAO,EAAE,QAAQ;EACjB,QAAQ,EAAE,KAAK;EACf,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,IAAI,EAAE,GAAG;EACT,aAAa,EAAE,GAAG;EAClB,OAAO,EAAE,IAAI,GAiBhB;EA5KL,AA6JQ,OA7JD,CA6JE,yBAAK,CAAC;IACH,KAAK,EHtJT,OAAO;IGuJH,SAAS,EFlJP,MAAM;IEmJR,MAAM,EAAE,UAAU,GACrB;EAjKT,AAkKQ,OAlKD,CAkKE,yBAAK,CAAC;IACH,aAAa,EAAE,GAAG,GACrB;EApKT,AAqKQ,OArKD,CAqKE,0BAAM,CAAC;IACJ,YAAY,EAAE,GAAG,GAKpB;IA3KT,AAwKY,OAxKL,CAqKE,0BAAM,AAGF,MAAM,CAAC;MACJ,MAAM,EAAE,OAAO,GAClB;;AAGT,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA7KvC,AA8KQ,OA9KD,CA8KC,SAAS,CAAC;IACN,cAAc,EAAE,MAAM,GAMzB;IArLT,AAiLY,OAjLL,CA8KC,SAAS,GAGH,CAAC,CAAC;MACA,YAAY,EAAE,CAAC;MACf,aAAa,EAAE,IAAI,GACtB;EApLb,AAsLQ,OAtLD,CAsLC,aAAa,CAAC;IACV,WAAW,EAAE,CAAC,GACjB;;AAEL,MAAM,CAAC,MAAM,MAAM,SAAS,EAAE,KAAK;EA1LvC,AA4LY,OA5LL,CA2LC,iBAAiB,CACb,aAAa,CAAC;IACV,KAAK,EAAE,KAAK;IACZ,WAAW,EAAE,KAAK;IAClB,YAAY,EAAE,CAAC,GAClB;EAhMb,AAiMY,OAjML,CA2LC,iBAAiB,CAMb,SAAS,CAAC;IACN,KAAK,EAAE,KAAK;IACZ,WAAW,EAAE,KAAK;IAClB,YAAY,EAAE,CAAC,GAClB;EArMb,AAsMY,OAtML,CA2LC,iBAAiB,CAWb,YAAY,CAAC;IACT,KAAK,EAAE,KAAK;IACZ,MAAM,EAAE,GAAG,GACd;;ACxMb,AAAA,oBAAoB,CAAC;EACnB,gBAAgB,EJHL,OAAO;EIIlB,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,KAAK;EAChB,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,MAAM;EACnB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,SAAS;EACjB,IAAI,EAAE,CAAC;EACP,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,cAAc,GAiFxB;EA/EE,AAAD,oCAAiB,CAAC;IAChB,OAAO,EAAE,IAAI;IACb,aAAa,EAAE,KAAK,CAAC,KAAK,CJdf,OAAO;IIelB,WAAW,EAAE,mBAAmB;IAChC,YAAY,EAAE,sBAAsB;IACpC,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,KAAK,GACb;EAEA,AAAD,6BAAU,CAAC;IACT,SAAS,EAAE,KAAK;IAChB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,kBAAkB,GA8C3B;IA5CE,AAAD,oCAAQ,CAAC;MACP,WAAW,EAAE,GAAG;MAChB,MAAM,EAAE,CAAC;MACT,aAAa,EAAE,GAAG;MAClB,WAAW,EAAE,IAAI;MACjB,SAAS,EAAE,IAAI,GAChB;IACA,AAAD,kCAAM,CAAC;MACL,MAAM,EAAE,CAAC;MACT,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,IAAI;MACjB,SAAS,EAAE,IAAI,GAChB;IACA,AAAD,oCAAQ,CAAC;MACP,eAAe,EAAE,IAAI;MACrB,UAAU,EAAE,MAAM;MAClB,WAAW,EAAE,IAAI;MACjB,OAAO,EAAE,QAAQ;MACjB,OAAO,EAAE,YAAY;MACrB,WAAW,EAAE,GAAG;MAChB,WAAW,EAAE,OAAO;MACpB,aAAa,EAAE,GAAG;MAClB,MAAM,EAAE,OAAO;MACf,SAAS,EAAE,IAAI;MACf,MAAM,EAAE,CAAC;MACT,UAAU,EJlDJ,OAAO;MImDb,KAAK,EJ/CH,OAAO,CI+CK,UAAU;MACxB,UAAU,EAAE,IAAI,GACjB;IAED,MAAM,EAAE,SAAS,EAAE,MAAM;MAnC1B,AAAD,6BAAU,CAAC;QAoCP,YAAY,EAAE,IAAI,GAarB;IAXC,MAAM,EAAE,SAAS,EAAE,MAAM;MAtC1B,AAAD,6BAAU,CAAC;QAuCP,QAAQ,EAAE,QAAQ;QAClB,SAAS,EAAE,KAAK;QAChB,KAAK,EJzDH,OAAO,GIiEZ;IANC,MAAM,EAAE,SAAS,EAAE,KAAK;MA3CzB,AAAD,6BAAU,CAAC;QA4CP,SAAS,EAAE,KAAK,GAKnB;IAHC,MAAM,EAAE,SAAS,EAAE,KAAK;MA9CzB,AAAD,6BAAU,CAAC;QA+CP,SAAS,EAAE,KAAK,GAEnB;EACD,MAAM,EAAE,SAAS,EAAE,MAAM;IAzE3B,AAAA,oBAAoB,CAAC;MA0EjB,SAAS,EAAE,KAAK,GAmBnB;EAjBC,MAAM,EAAE,SAAS,EAAE,MAAM;IA5E3B,AAAA,oBAAoB,CAAC;MA6Ef,SAAS,EAAE,KAAK;MAChB,OAAO,EAAE,UAAU;MACnB,SAAS,EAAE,IAAI,GAcpB;MA7FD,AAiFI,oBAjFgB,GAiFd,GAAG,CAAC;QACJ,OAAO,EAAE,IAAI,GACd;MACA,AAAD,oCAAiB,CAAC;QAChB,OAAO,EAAE,YAAY,GACtB;EAEH,MAAM,EAAE,SAAS,EAAE,KAAK;IAxF1B,AAAA,oBAAoB,CAAC;MAyFf,SAAS,EAAE,KAAK;MAChB,OAAO,EAAE,UAAU;MACnB,SAAS,EAAE,IAAI,GAEpB;;ALzFD,AAAA,IAAI;AACJ,IAAI,CAAC;EACD,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,GAAG;EACX,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM,GACrB;;AACD,AAAA,UAAU,CAAC;EACP,OAAO,EAAE,IAAI,GAChB;;AACD,AAAA,OAAO,CAAC;EACJ,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAO;EACzB,UAAU,EAAE,iBAAiB;EAC7B,aAAa,EAAE,iBAAiB,GACnC;;AACD,AAAA,OAAO,CAAC,QAAQ;AAChB,OAAO,CAAC,QAAQ,CAAC;EACb,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,MAAM,GACjB;;AACD,AAAA,OAAO,CAAC;EACJ,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,CAAC;EACd,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,KAAK;EACjB,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,KAAK,GACjB;;AACD,AAAA,KAAK,CAAC;EACF,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,MAAM,GACjB;;AACD,AAAA,KAAK;AACL,MAAM,CAAC;EACH,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,GAAG,GACtB;;AACD,AAAA,MAAM,CAAC,GAAG,CAAC;EACP,KAAK,EAAE,IAAI,GACd;;AACD,AAAA,IAAI,CAAC;EACD,MAAM,EAAE,SAAS;EACjB,UAAU,EAAE,MAAM,GACrB;;AACD,AAAA,QAAQ,CAAC;EACL,UAAU,EAAE,MAAM,GACrB;;AACD,AAAA,EAAE,AAAA,OAAO,CAAC;EACN,MAAM,EAAE,YAAY,GACvB;;AACD,AAAA,WAAW,CAAC;EACR,QAAQ,EAAE,KAAK;EACf,IAAI,EAAE,GAAG;EACT,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,KAAK;EAClB,OAAO,EAAE,IAAI,GAChB;;AACD,AAAA,OAAO,CAAC;EACJ,UAAU,EAAE,MAAM,GACrB;;AACD,AAAA,WAAW,CAAC;EACR,KAAK,EAAE,GAAG;EACV,KAAK,EAAE,IAAI,GACd;;AACD,AAAA,MAAM,CAAC;EACH,KAAK,EAAE,IAAI,GACd;;AACD,AAAA,OAAO,CAAC,IAAI,CAAC;EACT,cAAc,EAAE,kBAAkB,GACrC;;AACD,AAAA,aAAa,CAAC;EACV,OAAO,EAAE,IAAI,GAChB;;AACD,AAAA,gBAAgB,CAAC;EACb,OAAO,EAAE,IAAI;EACb,cAAc,EAAE,GAAG;EACnB,KAAK,EAAE,IAAI,GAId;EAPD,AAII,gBAJY,CAIZ,YAAY,CAAC;IACT,YAAY,EAAE,IAAI,GACrB;;AAEL,AAAA,gBAAgB,CAAC;EACb,OAAO,EAAE,GAAG,GACf;;AAED;;;GAGG;AACH,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EACpC,AAAA,WAAW,CAAC;IACR,KAAK,EAAE,GAAG,GACb;EACD,AAAA,YAAY,CAAC;IACT,WAAW,EAAE,IAAI,GACpB;EACD,AAAA,WAAW,CAAE,CAAC,CAAC;IACX,OAAO,EAAE,aAAa,GACzB;;AAEL,MAAM,MAAM,MAAM,MAAM,SAAS,EAAE,KAAK;EACpC,AAAA,gBAAgB,CAAC;IACb,OAAO,EAAE,KAAK;IACd,KAAK,EAAE,IAAI,GACd;EACD,AAAA,UAAU,CAAC;IACP,OAAO,EAAE,KAAK,GACjB;EACD,AAAA,WAAW,CAAC;IACR,KAAK,EAAE,IAAI,GACd;EACD,AAAA,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC;IAC3B,MAAM,EAAE,GAAG,GACd;EACD,AAAA,aAAa,CAAC;IACV,OAAO,EAAE,IAAI,GAChB;EACD,AAAA,KAAK;EACL,MAAM,CAAC;IACH,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,OAAO,EAAE,KAAK;IACd,cAAc,EAAE,GAAG,GACtB;EACD,AAAA,MAAM,CAAC;IACH,QAAQ,EAAE,MAAM;IAChB,OAAO,EAAE,WAAW;IACpB,MAAM,EAAE,CAAC;IACT,gBAAgB,EAAE,IAAI;IACtB,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,CAAC,CAAE,IAAG,CAAC,GAAG,CAAC,CAAC,CAAC,kBAAkB,GAC9C;EACD,AAAA,CAAC,CAAC;IACE,MAAM,EAAE,mBAAmB,GAC9B"} \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/endpoint.html b/src/root_files/_common/binary-to-deriv/endpoint.html new file mode 100644 index 0000000000000..e308a97174bdd --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/endpoint.html @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + Binary Bot + + + + + + + +
+
+

Change API Endpoint

+
+
+ + + + +
Server

e.g. frontend.binaryws.com

O Auth App ID

You have to register and get App ID before you can use different OAuth server for authentication. For more information refer to OAuth details on https://developers.binary.com/.

Unable to connect to Connect, fallback to default endpoint.

Connected to the endpoint successfully!

+
+
+
+
+ + + diff --git a/src/root_files/_common/binary-to-deriv/font/IBMPlexSans-Regular.ttf b/src/root_files/_common/binary-to-deriv/font/IBMPlexSans-Regular.ttf new file mode 100644 index 0000000000000..b5819647e1dfa Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/font/IBMPlexSans-Regular.ttf differ diff --git a/src/root_files/_common/binary-to-deriv/font/binarybot.eot b/src/root_files/_common/binary-to-deriv/font/binarybot.eot new file mode 100755 index 0000000000000..f1e9cd1b33971 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/font/binarybot.eot differ diff --git a/src/root_files/_common/binary-to-deriv/font/binarybot.svg b/src/root_files/_common/binary-to-deriv/font/binarybot.svg new file mode 100755 index 0000000000000..d6184c8d4ef3b --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/font/binarybot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/font/binarybot.ttf b/src/root_files/_common/binary-to-deriv/font/binarybot.ttf new file mode 100755 index 0000000000000..bbcda9b6dd8d4 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/font/binarybot.ttf differ diff --git a/src/root_files/_common/binary-to-deriv/font/binarybot.woff b/src/root_files/_common/binary-to-deriv/font/binarybot.woff new file mode 100755 index 0000000000000..b3da1c766e6a4 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/font/binarybot.woff differ diff --git a/src/root_files/_common/binary-to-deriv/font/binarybot.woff2 b/src/root_files/_common/binary-to-deriv/font/binarybot.woff2 new file mode 100755 index 0000000000000..79c28c8168884 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/font/binarybot.woff2 differ diff --git a/src/root_files/_common/binary-to-deriv/image/1.webm b/src/root_files/_common/binary-to-deriv/image/1.webm new file mode 100644 index 0000000000000..9b22a38bf5c06 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/1.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/1a.webm b/src/root_files/_common/binary-to-deriv/image/1a.webm new file mode 100644 index 0000000000000..f807cb5754a16 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/1a.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/2.webm b/src/root_files/_common/binary-to-deriv/image/2.webm new file mode 100644 index 0000000000000..c507402ef8e33 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/2.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/2a.webm b/src/root_files/_common/binary-to-deriv/image/2a.webm new file mode 100644 index 0000000000000..ac4bc3cc34beb Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/2a.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/3.webm b/src/root_files/_common/binary-to-deriv/image/3.webm new file mode 100644 index 0000000000000..7a678aff387e5 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/3.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/3a.webm b/src/root_files/_common/binary-to-deriv/image/3a.webm new file mode 100644 index 0000000000000..034a440b92e6d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/3a.webm differ diff --git a/src/root_files/_common/binary-to-deriv/image/BG-1.webp b/src/root_files/_common/binary-to-deriv/image/BG-1.webp new file mode 100644 index 0000000000000..0901016aa381e Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/BG-1.webp differ diff --git a/src/root_files/_common/binary-to-deriv/image/BG_Bot-to-deriv-1.webp b/src/root_files/_common/binary-to-deriv/image/BG_Bot-to-deriv-1.webp new file mode 100644 index 0000000000000..bf24fbea1656c Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/BG_Bot-to-deriv-1.webp differ diff --git a/src/root_files/_common/binary-to-deriv/image/Dont_Wait_Mobile.png b/src/root_files/_common/binary-to-deriv/image/Dont_Wait_Mobile.png new file mode 100644 index 0000000000000..6e14730fa589d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/Dont_Wait_Mobile.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/MBG1.png b/src/root_files/_common/binary-to-deriv/image/MBG1.png new file mode 100644 index 0000000000000..cc13a619141dd Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/MBG1.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/Mask.svg b/src/root_files/_common/binary-to-deriv/image/Mask.svg new file mode 100644 index 0000000000000..267f4634ed5a3 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/Mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/Vector.svg b/src/root_files/_common/binary-to-deriv/image/Vector.svg new file mode 100644 index 0000000000000..8b4b0c29d72ed --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/Vector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/academy.png b/src/root_files/_common/binary-to-deriv/image/academy.png new file mode 100644 index 0000000000000..d5561e84079b0 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/academy.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-en.svg b/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-en.svg new file mode 100644 index 0000000000000..7a505ded55cfb --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-en.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-pt.svg b/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-pt.svg new file mode 100644 index 0000000000000..eb1f278a543dc --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/bbot-to-deriv-banner-pt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/bg-take-deriv.png b/src/root_files/_common/binary-to-deriv/image/bg-take-deriv.png new file mode 100644 index 0000000000000..5ef4a3e0b112b Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/bg-take-deriv.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-114x114.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-114x114.png new file mode 100644 index 0000000000000..65f85370df0e1 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-114x114.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-120x120.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-120x120.png new file mode 100644 index 0000000000000..d42f029cde493 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-120x120.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-144x144.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-144x144.png new file mode 100644 index 0000000000000..9d764292c58aa Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-144x144.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-152x152.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-152x152.png new file mode 100644 index 0000000000000..ca12846aa56cc Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-152x152.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-180x180.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-180x180.png new file mode 100644 index 0000000000000..6d629f68319a9 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-180x180.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-57x57.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-57x57.png new file mode 100644 index 0000000000000..aceee974e175c Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-57x57.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-60x60.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-60x60.png new file mode 100644 index 0000000000000..804de06c48730 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-60x60.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-72x72.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-72x72.png new file mode 100644 index 0000000000000..35c9146da446d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-72x72.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-76x76.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-76x76.png new file mode 100644 index 0000000000000..23bd66730c45a Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/apple-touch-icon-76x76.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-160x160.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-160x160.png new file mode 100644 index 0000000000000..b727e32bb2d1d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-160x160.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-16x16.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-16x16.png new file mode 100644 index 0000000000000..9afa2b5b255d9 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-16x16.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-192x192.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-192x192.png new file mode 100644 index 0000000000000..245adff62f3f5 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-192x192.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-32x32.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-32x32.png new file mode 100644 index 0000000000000..344bacec10882 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-32x32.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-96x96.png b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-96x96.png new file mode 100644 index 0000000000000..823fca2c0bf3d Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon-96x96.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon.ico b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon.ico new file mode 100644 index 0000000000000..0ea936e9a5170 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/favicons/favicon.ico differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary-logo.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary-logo.svg new file mode 100644 index 0000000000000..3bbd2552bd2d8 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary-logo.svg @@ -0,0 +1 @@ +Binarycom_official_logo_ \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_dark.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_dark.svg new file mode 100644 index 0000000000000..87cb553553fa9 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_dark.svg @@ -0,0 +1 @@ +binary_logo_dark \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_light.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_light.svg new file mode 100644 index 0000000000000..a185544904eff --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/binary_logo_light.svg @@ -0,0 +1 @@ +binary_logo_light \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.jpg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.jpg new file mode 100644 index 0000000000000..3ed0732d9acbe Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.jpg differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.png b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.png new file mode 100644 index 0000000000000..ff08ae6bb155f Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.svg new file mode 100644 index 0000000000000..d550513cfac47 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logomark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_dark.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_dark.svg new file mode 100644 index 0000000000000..766ef90d5935e --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_dark.svg @@ -0,0 +1 @@ +logotype_dark \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_light.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_light.svg new file mode 100644 index 0000000000000..5c578e8ae25d3 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/logotype_light.svg @@ -0,0 +1 @@ +logotype_light \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/symbol.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/symbol.svg new file mode 100644 index 0000000000000..cc12dcface03f --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-style/logo/type.svg b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/type.svg new file mode 100644 index 0000000000000..51609cb6860fa --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-style/logo/type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-symbol-logo.svg b/src/root_files/_common/binary-to-deriv/image/binary-symbol-logo.svg new file mode 100644 index 0000000000000..056890a19c2b6 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-symbol-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary-type-logo.svg b/src/root_files/_common/binary-to-deriv/image/binary-type-logo.svg new file mode 100644 index 0000000000000..8e8a1fb1e1426 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary-type-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary.png b/src/root_files/_common/binary-to-deriv/image/binary.png new file mode 100644 index 0000000000000..949e58f4c05c2 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/binary.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/binary.svg b/src/root_files/_common/binary-to-deriv/image/binary.svg new file mode 100644 index 0000000000000..b26c8b1c6b40d --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binary_logotype.svg b/src/root_files/_common/binary-to-deriv/image/binary_logotype.svg new file mode 100644 index 0000000000000..f2ba0f1e6b08e --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binary_logotype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/binarylogo-puzzle.svg b/src/root_files/_common/binary-to-deriv/image/binarylogo-puzzle.svg new file mode 100644 index 0000000000000..91f9fad0c627e --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/binarylogo-puzzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/carouselGif.gif b/src/root_files/_common/binary-to-deriv/image/carouselGif.gif new file mode 100644 index 0000000000000..68aa0bae98513 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/carouselGif.gif differ diff --git a/src/root_files/_common/binary-to-deriv/image/carousel_arrow.svg b/src/root_files/_common/binary-to-deriv/image/carousel_arrow.svg new file mode 100644 index 0000000000000..a379b17363be8 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/carousel_arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/clear-disabled.svg b/src/root_files/_common/binary-to-deriv/image/clear-disabled.svg new file mode 100644 index 0000000000000..93e2679052a4d --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/clear-disabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/clear.svg b/src/root_files/_common/binary-to-deriv/image/clear.svg new file mode 100644 index 0000000000000..bc750cdf48a0c --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/close_icon.svg b/src/root_files/_common/binary-to-deriv/image/close_icon.svg new file mode 100644 index 0000000000000..e6b4c5a01ff4f --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/close_icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/crashboom.png b/src/root_files/_common/binary-to-deriv/image/crashboom.png new file mode 100644 index 0000000000000..80e34123f2f6f Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/crashboom.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/d-bot.svg b/src/root_files/_common/binary-to-deriv/image/d-bot.svg new file mode 100644 index 0000000000000..107ccf502353a --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/d-bot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/derivLogo.png b/src/root_files/_common/binary-to-deriv/image/derivLogo.png new file mode 100644 index 0000000000000..a2e84baee904a Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/derivLogo.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/deriv_academy.svg b/src/root_files/_common/binary-to-deriv/image/deriv_academy.svg new file mode 100644 index 0000000000000..6e4006890c186 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/deriv_academy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/dont-wait-image.png b/src/root_files/_common/binary-to-deriv/image/dont-wait-image.png new file mode 100644 index 0000000000000..07a8def1307de Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/dont-wait-image.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/dont-wait-image.svg b/src/root_files/_common/binary-to-deriv/image/dont-wait-image.svg new file mode 100644 index 0000000000000..d1ac995e49066 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/dont-wait-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/down-arrow.svg b/src/root_files/_common/binary-to-deriv/image/down-arrow.svg new file mode 100644 index 0000000000000..453ca70a0a85c --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/down-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/dropdown-arrow.svg b/src/root_files/_common/binary-to-deriv/image/dropdown-arrow.svg new file mode 100644 index 0000000000000..84ae9f2f67ff0 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/dropdown-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/dtrader-mobile.png b/src/root_files/_common/binary-to-deriv/image/dtrader-mobile.png new file mode 100644 index 0000000000000..19f008aea8301 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/dtrader-mobile.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/english-flag.png b/src/root_files/_common/binary-to-deriv/image/english-flag.png new file mode 100644 index 0000000000000..2a5da96330e91 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/english-flag.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/expand_less.svg b/src/root_files/_common/binary-to-deriv/image/expand_less.svg new file mode 100644 index 0000000000000..71f8d8791b6b3 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/expand_less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/expand_more.svg b/src/root_files/_common/binary-to-deriv/image/expand_more.svg new file mode 100644 index 0000000000000..232f7481426a4 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/expand_more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/facebook.svg b/src/root_files/_common/binary-to-deriv/image/facebook.svg new file mode 100644 index 0000000000000..53bd59ca73c3a --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/fiat-on-ramp.svg b/src/root_files/_common/binary-to-deriv/image/fiat-on-ramp.svg new file mode 100644 index 0000000000000..720e5cc2e50a3 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/fiat-on-ramp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/18+.svg b/src/root_files/_common/binary-to-deriv/image/footer/18+.svg new file mode 100644 index 0000000000000..b49fe845603fd --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/18+.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/bvi.png b/src/root_files/_common/binary-to-deriv/image/footer/bvi.png new file mode 100644 index 0000000000000..7f87fe3c86f02 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/footer/bvi.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/footer/facebook.svg b/src/root_files/_common/binary-to-deriv/image/footer/facebook.svg new file mode 100644 index 0000000000000..7d48d9e4affae --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/gamstop.svg b/src/root_files/_common/binary-to-deriv/image/footer/gamstop.svg new file mode 100644 index 0000000000000..7cf3b942d7f1a --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/gamstop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/isle-of-man.png b/src/root_files/_common/binary-to-deriv/image/footer/isle-of-man.png new file mode 100644 index 0000000000000..eb2540ccea6a7 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/footer/isle-of-man.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/footer/labuan_FSA.svg b/src/root_files/_common/binary-to-deriv/image/footer/labuan_FSA.svg new file mode 100644 index 0000000000000..919f81ce2d481 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/labuan_FSA.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/mga-logo-footer.svg b/src/root_files/_common/binary-to-deriv/image/footer/mga-logo-footer.svg new file mode 100644 index 0000000000000..227aee76d6358 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/mga-logo-footer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/reddit.svg b/src/root_files/_common/binary-to-deriv/image/footer/reddit.svg new file mode 100644 index 0000000000000..cf6f8c9d9252b --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-close.svg b/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-close.svg new file mode 100644 index 0000000000000..90b41463912d7 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-warning.svg b/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-warning.svg new file mode 100644 index 0000000000000..666ece3f34646 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/server_status/ic-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/telegram.svg b/src/root_files/_common/binary-to-deriv/image/footer/telegram.svg new file mode 100644 index 0000000000000..661d62ff521c5 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/twitter.svg b/src/root_files/_common/binary-to-deriv/image/footer/twitter.svg new file mode 100644 index 0000000000000..7fcdbb74835df --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footer/vanuatu-logo.png b/src/root_files/_common/binary-to-deriv/image/footer/vanuatu-logo.png new file mode 100644 index 0000000000000..b7a348b9ddbac Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/footer/vanuatu-logo.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/footer/youtube.svg b/src/root_files/_common/binary-to-deriv/image/footer/youtube.svg new file mode 100644 index 0000000000000..6d89da36db422 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footer/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/footerLogos.svg b/src/root_files/_common/binary-to-deriv/image/footerLogos.svg new file mode 100644 index 0000000000000..daa57371311c2 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/footerLogos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/google_drive.svg b/src/root_files/_common/binary-to-deriv/image/google_drive.svg new file mode 100644 index 0000000000000..701c73849371b --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/google_drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/hero-derivgo.png b/src/root_files/_common/binary-to-deriv/image/hero-derivgo.png new file mode 100644 index 0000000000000..6d64b43059ec0 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero-derivgo.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/hero-derivx.png b/src/root_files/_common/binary-to-deriv/image/hero-derivx.png new file mode 100644 index 0000000000000..2193c98ee0235 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero-derivx.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/hero-dmt5.png b/src/root_files/_common/binary-to-deriv/image/hero-dmt5.png new file mode 100644 index 0000000000000..0101cd6d6f710 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero-dmt5.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/hero-dtrader.png b/src/root_files/_common/binary-to-deriv/image/hero-dtrader.png new file mode 100644 index 0000000000000..d4958b695ba49 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero-dtrader.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/hero_desktop.png b/src/root_files/_common/binary-to-deriv/image/hero_desktop.png new file mode 100644 index 0000000000000..29528c5da084c Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero_desktop.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/hero_mobile.png b/src/root_files/_common/binary-to-deriv/image/hero_mobile.png new file mode 100644 index 0000000000000..471cf6078d360 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/hero_mobile.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/icon.svg b/src/root_files/_common/binary-to-deriv/image/icon.svg new file mode 100644 index 0000000000000..a379b17363be8 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/indonesia-flag.png b/src/root_files/_common/binary-to-deriv/image/indonesia-flag.png new file mode 100644 index 0000000000000..7bc4e70db13fa Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/indonesia-flag.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/instagram.svg b/src/root_files/_common/binary-to-deriv/image/instagram.svg new file mode 100644 index 0000000000000..8c071d3d6c39a --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/instruments.svg b/src/root_files/_common/binary-to-deriv/image/instruments.svg new file mode 100644 index 0000000000000..572fd3e53a5f9 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/instruments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/arrow.svg b/src/root_files/_common/binary-to-deriv/image/landing-carousel/arrow.svg new file mode 100644 index 0000000000000..6ef66b1f23c2f --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/landing-carousel/arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/binary-bot.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/binary-bot.png new file mode 100644 index 0000000000000..f2cbad865026f Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/binary-bot.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/dbot.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/dbot.png new file mode 100644 index 0000000000000..648f7ebf1096e Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/dbot.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/deriv-go.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/deriv-go.png new file mode 100644 index 0000000000000..237c6ab6031ca Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/deriv-go.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/derivX.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/derivX.png new file mode 100644 index 0000000000000..77a8b624726c2 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/derivX.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/dtrader.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/dtrader.png new file mode 100644 index 0000000000000..6a93426bbe797 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/dtrader.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/mt5.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/mt5.png new file mode 100644 index 0000000000000..66e8d8df4f427 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/mt5.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/landing-carousel/smart-trader.png b/src/root_files/_common/binary-to-deriv/image/landing-carousel/smart-trader.png new file mode 100644 index 0000000000000..39fc83a7b1ecb Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/landing-carousel/smart-trader.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/laptop-1.webp b/src/root_files/_common/binary-to-deriv/image/laptop-1.webp new file mode 100644 index 0000000000000..028356b7db0d6 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/laptop-1.webp differ diff --git a/src/root_files/_common/binary-to-deriv/image/laptop_carousel.webp b/src/root_files/_common/binary-to-deriv/image/laptop_carousel.webp new file mode 100644 index 0000000000000..b21e40d2a6f01 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/laptop_carousel.webp differ diff --git a/src/root_files/_common/binary-to-deriv/image/linkedin.svg b/src/root_files/_common/binary-to-deriv/image/linkedin.svg new file mode 100644 index 0000000000000..dc0bc444bbce1 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/list-circle_1.png b/src/root_files/_common/binary-to-deriv/image/list-circle_1.png new file mode 100644 index 0000000000000..9f428f44664e8 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/list-circle_1.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/market_types.svg b/src/root_files/_common/binary-to-deriv/image/market_types.svg new file mode 100644 index 0000000000000..8344ae6f315d3 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/market_types.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/moving-banner.svg b/src/root_files/_common/binary-to-deriv/image/moving-banner.svg new file mode 100644 index 0000000000000..4f2219931ca08 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/moving-banner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/multiplier.png b/src/root_files/_common/binary-to-deriv/image/multiplier.png new file mode 100644 index 0000000000000..d9547d2627a41 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/multiplier.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/notification-banner-icon-left.svg b/src/root_files/_common/binary-to-deriv/image/notification-banner-icon-left.svg new file mode 100644 index 0000000000000..f1130fb9f0f4a --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/notification-banner-icon-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/number.png b/src/root_files/_common/binary-to-deriv/image/number.png new file mode 100644 index 0000000000000..aed94c09f4820 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/number.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/number_editing.png b/src/root_files/_common/binary-to-deriv/image/number_editing.png new file mode 100644 index 0000000000000..bc4c039ccc0a4 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/number_editing.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/p2p.png b/src/root_files/_common/binary-to-deriv/image/p2p.png new file mode 100644 index 0000000000000..92fcf1256029b Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/p2p.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/pattern.png b/src/root_files/_common/binary-to-deriv/image/pattern.png new file mode 100644 index 0000000000000..601b0f76eb666 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/pattern.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/peer-to-peer.svg b/src/root_files/_common/binary-to-deriv/image/peer-to-peer.svg new file mode 100644 index 0000000000000..8d98c78d84c4b --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/peer-to-peer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/phone-desctop.png b/src/root_files/_common/binary-to-deriv/image/phone-desctop.png new file mode 100644 index 0000000000000..f6209b9abf822 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/phone-desctop.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/photo.jpg b/src/root_files/_common/binary-to-deriv/image/photo.jpg new file mode 100644 index 0000000000000..6237655a0e960 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/photo.jpg differ diff --git a/src/root_files/_common/binary-to-deriv/image/portugal-flag.png b/src/root_files/_common/binary-to-deriv/image/portugal-flag.png new file mode 100644 index 0000000000000..2937205e2914b Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/portugal-flag.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/qr-code.png b/src/root_files/_common/binary-to-deriv/image/qr-code.png new file mode 100644 index 0000000000000..f530d37c78f67 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/qr-code.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/reddit.svg b/src/root_files/_common/binary-to-deriv/image/reddit.svg new file mode 100644 index 0000000000000..498014d854634 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingBackground.png b/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingBackground.png new file mode 100644 index 0000000000000..f5d98482a0ffb Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingBackground.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingImages.png b/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingImages.png new file mode 100644 index 0000000000000..1d3605a8042ad Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/sectionTwoLandingImages.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/spain-flag.png b/src/root_files/_common/binary-to-deriv/image/spain-flag.png new file mode 100644 index 0000000000000..a8a5326e9ee60 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/spain-flag.png differ diff --git a/src/root_files/_common/binary-to-deriv/image/support.svg b/src/root_files/_common/binary-to-deriv/image/support.svg new file mode 100644 index 0000000000000..5df8e48161bbb --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/support.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/symbol.svg b/src/root_files/_common/binary-to-deriv/image/symbol.svg new file mode 100644 index 0000000000000..cc12dcface03f --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/telegram.svg b/src/root_files/_common/binary-to-deriv/image/telegram.svg new file mode 100644 index 0000000000000..0a1436e9ee42e --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/trade-types.svg b/src/root_files/_common/binary-to-deriv/image/trade-types.svg new file mode 100644 index 0000000000000..ea81123328295 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/trade-types.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/trading-platforms.svg b/src/root_files/_common/binary-to-deriv/image/trading-platforms.svg new file mode 100644 index 0000000000000..33c1bad5a6bc4 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/trading-platforms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/twitter.svg b/src/root_files/_common/binary-to-deriv/image/twitter.svg new file mode 100644 index 0000000000000..be77aedbc17ea --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/type.svg b/src/root_files/_common/binary-to-deriv/image/type.svg new file mode 100644 index 0000000000000..231dfeae10d40 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/videoCarousel.mp4 b/src/root_files/_common/binary-to-deriv/image/videoCarousel.mp4 new file mode 100644 index 0000000000000..fac28f11c76ea Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/image/videoCarousel.mp4 differ diff --git a/src/root_files/_common/binary-to-deriv/image/web-banner-english.svg b/src/root_files/_common/binary-to-deriv/image/web-banner-english.svg new file mode 100644 index 0000000000000..9a40dcd6a488e --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/web-banner-english.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/web-banner-portuguese.svg b/src/root_files/_common/binary-to-deriv/image/web-banner-portuguese.svg new file mode 100644 index 0000000000000..6b94bfeb643c5 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/web-banner-portuguese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/image/youtube.svg b/src/root_files/_common/binary-to-deriv/image/youtube.svg new file mode 100644 index 0000000000000..dac336ff86787 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/image/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/index.html b/src/root_files/_common/binary-to-deriv/index.html new file mode 100644 index 0000000000000..a38a75b61fc3c --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/index.html @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + Binary to Deriv + + + + + + + + +
+ + + +
+
+
+
+
+

+

+
+
+ +
+
+

+

+

+
+ +
+
+

+

.

+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/js/bot-c094ba064f.min.js b/src/root_files/_common/binary-to-deriv/js/bot-c094ba064f.min.js new file mode 100644 index 0000000000000..10d6fcad5bfc6 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/js/bot-c094ba064f.min.js @@ -0,0 +1,395 @@ +!function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=542)}([function(e,t,n){var r=n(6),a=n(48),i=n(37),o=n(34),c=n(49),s=function(e,t,n){var u,l,d,f,h=e&s.F,p=e&s.G,b=e&s.S,m=e&s.P,g=e&s.B,y=p?r:b?r[t]||(r[t]={}):(r[t]||{}).prototype,v=p?a:a[t]||(a[t]={}),_=v.prototype||(v.prototype={});p&&(n=t);for(u in n)l=!h&&y&&void 0!==y[u],d=(l?y:n)[u],f=g&&l?c(d,r):m&&"function"==typeof d?c(Function.call,d):d,y&&o(y,u,d,e&s.U),v[u]!=d&&i(v,u,f),m&&_[u]!=d&&(_[u]=d)};r.core=a,s.F=1,s.G=2,s.S=4,s.P=8,s.B=16,s.W=32,s.U=64,s.R=128,e.exports=s},function(e,t,n){(function(e){var t;!function(t,n){e.exports=n()}(0,function(){"use strict";function r(){return ra.apply(null,arguments)}function a(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function i(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function o(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function c(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(o(e,t))return!1;return!0}function s(e){return void 0===e}function u(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function l(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function d(e,t){var n,r=[],a=e.length;for(n=0;n0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}function D(e,t,n,r){var a=r;"string"==typeof r&&(a=function(){return this[r]()}),e&&(pa[e]=a),t&&(pa[t[0]]=function(){return M(a.apply(this,arguments),t[1],t[2])}),n&&(pa[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function L(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function A(e){var t,n,r=e.match(da);for(t=0,n=r.length;t=0&&fa.test(e);)e=e.replace(fa,n),fa.lastIndex=0,r-=1;return e}function I(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(da).map(function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e}).join(""),this._longDateFormat[e])}function R(){return this._invalidDate}function N(e){return this._ordinal.replace("%d",e)}function B(e,t,n,r){var a=this._relativeTime[n];return k(a)?a(e,t,n,r):a.replace(/%d/i,e)}function z(e,t){var n=this._relativeTime[e>0?"future":"past"];return k(n)?n(t):n.replace(/%s/i,t)}function Y(e,t){var n=e.toLowerCase();ya[n]=ya[n+"s"]=ya[t]=e}function H(e){return"string"==typeof e?ya[e]||ya[e.toLowerCase()]:void 0}function F(e){var t,n,r={};for(n in e)o(e,n)&&(t=H(n))&&(r[t]=e[n]);return r}function U(e,t){va[e]=t}function W(e){var t,n=[];for(t in e)o(e,t)&&n.push({unit:t,priority:va[t]});return n.sort(function(e,t){return e.priority-t.priority}),n}function q(e){return e%4==0&&e%100!=0||e%400==0}function G(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function V(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=G(t)),n}function K(e,t){return function(n){return null!=n?(X(this,e,n),r.updateOffset(this,t),this):J(this,e)}}function J(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function X(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&q(e.year())&&1===e.month()&&29===e.date()?(n=V(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),ce(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function $(e){return e=H(e),k(this[e])?this[e]():this}function Q(e,t){if("object"==typeof e){e=F(e);var n,r=W(e),a=r.length;for(n=0;n=0?(c=new Date(e+400,t,n,r,a,i,o),isFinite(c.getFullYear())&&c.setFullYear(e)):c=new Date(e,t,n,r,a,i,o),c}function we(e){var t,n;return e<100&&e>=0?(n=Array.prototype.slice.call(arguments),n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Ee(e,t,n){var r=7+t-n;return-(7+we(e,0,r).getUTCDay()-t)%7+r-1}function Te(e,t,n,r,a){var i,o,c=(7+n-r)%7,s=Ee(e,r,a),u=1+7*(t-1)+c+s;return u<=0?(i=e-1,o=ye(i)+u):u>ye(e)?(i=e+1,o=u-ye(e)):(i=e,o=u),{year:i,dayOfYear:o}}function ke(e,t,n){var r,a,i=Ee(e.year(),t,n),o=Math.floor((e.dayOfYear()-i-1)/7)+1;return o<1?(a=e.year()-1,r=o+Se(a,t,n)):o>Se(e.year(),t,n)?(r=o-Se(e.year(),t,n),a=e.year()+1):(a=e.year(),r=o),{week:r,year:a}}function Se(e,t,n){var r=Ee(e,t,n),a=Ee(e+1,t,n);return(ye(e)-r+a)/7}function Oe(e){return ke(e,this._week.dow,this._week.doy).week}function xe(){return this._week.dow}function Ce(){return this._week.doy}function Me(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function De(e){var t=ke(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Le(e,t){return"string"!=typeof e?e:isNaN(e)?(e=t.weekdaysParse(e),"number"==typeof e?e:null):parseInt(e,10)}function Ae(e,t){return"string"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function je(e,t){return e.slice(t,7).concat(e.slice(0,t))}function Pe(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?je(n,this._week.dow):e?n[e.day()]:n}function Ie(e){return!0===e?je(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Re(e){return!0===e?je(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Ne(e,t,n){var r,a,i,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)i=h([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(i,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(i,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(i,"").toLocaleLowerCase();return n?"dddd"===t?(a=Na.call(this._weekdaysParse,o),-1!==a?a:null):"ddd"===t?(a=Na.call(this._shortWeekdaysParse,o),-1!==a?a:null):(a=Na.call(this._minWeekdaysParse,o),-1!==a?a:null):"dddd"===t?-1!==(a=Na.call(this._weekdaysParse,o))?a:-1!==(a=Na.call(this._shortWeekdaysParse,o))?a:(a=Na.call(this._minWeekdaysParse,o),-1!==a?a:null):"ddd"===t?-1!==(a=Na.call(this._shortWeekdaysParse,o))?a:-1!==(a=Na.call(this._weekdaysParse,o))?a:(a=Na.call(this._minWeekdaysParse,o),-1!==a?a:null):-1!==(a=Na.call(this._minWeekdaysParse,o))?a:-1!==(a=Na.call(this._weekdaysParse,o))?a:(a=Na.call(this._shortWeekdaysParse,o),-1!==a?a:null)}function Be(e,t,n){var r,a,i;if(this._weekdaysParseExact)return Ne.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=h([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(i="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(i.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}}function ze(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Le(e,this.localeData()),this.add(e-t,"d")):t}function Ye(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function He(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Ae(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Fe(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(o(this,"_weekdaysRegex")||(this._weekdaysRegex=ai),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Ue(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(o(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ii),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function We(e){return this._weekdaysParseExact?(o(this,"_weekdaysRegex")||qe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(o(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=oi),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function qe(){function e(e,t){return t.length-e.length}var t,n,r,a,i,o=[],c=[],s=[],u=[];for(t=0;t<7;t++)n=h([2e3,1]).day(t),r=ne(this.weekdaysMin(n,"")),a=ne(this.weekdaysShort(n,"")),i=ne(this.weekdays(n,"")),o.push(r),c.push(a),s.push(i),u.push(r),u.push(a),u.push(i);o.sort(e),c.sort(e),s.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Ge(){return this.hours()%12||12}function Ve(){return this.hours()||24}function Ke(e,t){D(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function Je(e,t){return t._meridiemParse}function Xe(e){return"p"===(e+"").toLowerCase().charAt(0)}function $e(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}function Qe(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=nt(a.slice(0,t).join("-")))return r;if(n&&n.length>=t&&Qe(a,n)>=t-1)break;t--}i++}return ci}function tt(e){return null!=e.match("^[^/\\\\]*$")}function nt(r){var a=null;if(void 0===di[r]&&void 0!==e&&e&&e.exports&&tt(r))try{a=ci._abbr,t,n(910)("./"+r),rt(a)}catch(e){di[r]=null}return di[r]}function rt(e,t){var n;return e&&(n=s(t)?ot(e):at(e,t),n?ci=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),ci._abbr}function at(e,t){if(null!==t){var n,r=li;if(t.abbr=e,null!=di[e])T("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=di[e]._config;else if(null!=t.parentLocale)if(null!=di[t.parentLocale])r=di[t.parentLocale]._config;else{if(null==(n=nt(t.parentLocale)))return fi[t.parentLocale]||(fi[t.parentLocale]=[]),fi[t.parentLocale].push({name:e,config:t}),null;r=n._config}return di[e]=new x(O(r,t)),fi[e]&&fi[e].forEach(function(e){at(e.name,e.config)}),rt(e),di[e]}return delete di[e],null}function it(e,t){if(null!=t){var n,r,a=li;null!=di[e]&&null!=di[e].parentLocale?di[e].set(O(di[e]._config,t)):(r=nt(e),null!=r&&(a=r._config),t=O(a,t),null==r&&(t.abbr=e),n=new x(t),n.parentLocale=di[e],di[e]=n),rt(e)}else null!=di[e]&&(null!=di[e].parentLocale?(di[e]=di[e].parentLocale,e===rt()&&rt(e)):null!=di[e]&&delete di[e]);return di[e]}function ot(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return ci;if(!a(e)){if(t=nt(e))return t;e=[e]}return et(e)}function ct(){return sa(di)}function st(e){var t,n=e._a;return n&&-2===b(e).overflow&&(t=n[Ya]<0||n[Ya]>11?Ya:n[Ha]<1||n[Ha]>ce(n[za],n[Ya])?Ha:n[Fa]<0||n[Fa]>24||24===n[Fa]&&(0!==n[Ua]||0!==n[Wa]||0!==n[qa])?Fa:n[Ua]<0||n[Ua]>59?Ua:n[Wa]<0||n[Wa]>59?Wa:n[qa]<0||n[qa]>999?qa:-1,b(e)._overflowDayOfYear&&(tHa)&&(t=Ha),b(e)._overflowWeeks&&-1===t&&(t=Ga),b(e)._overflowWeekday&&-1===t&&(t=Va),b(e).overflow=t),e}function ut(e){var t,n,r,a,i,o,c=e._i,s=hi.exec(c)||pi.exec(c),u=mi.length,l=gi.length;if(s){for(b(e).iso=!0,t=0,n=u;tye(i)||0===e._dayOfYear)&&(b(e)._overflowDayOfYear=!0),n=we(i,0,e._dayOfYear),e._a[Ya]=n.getUTCMonth(),e._a[Ha]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=o[t]=r[t];for(;t<7;t++)e._a[t]=o[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[Fa]&&0===e._a[Ua]&&0===e._a[Wa]&&0===e._a[qa]&&(e._nextDay=!0,e._a[Fa]=0),e._d=(e._useUTC?we:_e).apply(null,o),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[Fa]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(b(e).weekdayMismatch=!0)}}function _t(e){var t,n,r,a,i,o,c,s,u;t=e._w,null!=t.GG||null!=t.W||null!=t.E?(i=1,o=4,n=gt(t.GG,e._a[za],ke(Mt(),1,4).year),r=gt(t.W,1),((a=gt(t.E,1))<1||a>7)&&(s=!0)):(i=e._locale._week.dow,o=e._locale._week.doy,u=ke(Mt(),i,o),n=gt(t.gg,e._a[za],u.year),r=gt(t.w,u.week),null!=t.d?((a=t.d)<0||a>6)&&(s=!0):null!=t.e?(a=t.e+i,(t.e<0||t.e>6)&&(s=!0)):a=i),r<1||r>Se(n,i,o)?b(e)._overflowWeeks=!0:null!=s?b(e)._overflowWeekday=!0:(c=Te(n,r,a,i,o),e._a[za]=c.year,e._dayOfYear=c.dayOfYear)}function wt(e){if(e._f===r.ISO_8601)return void ut(e);if(e._f===r.RFC_2822)return void bt(e);e._a=[],b(e).empty=!0;var t,n,a,i,o,c,s,u=""+e._i,l=u.length,d=0;for(a=P(e._f,e._locale).match(da)||[],s=a.length,t=0;t0&&b(e).unusedInput.push(o),u=u.slice(u.indexOf(n)+n.length),d+=n.length),pa[i]?(n?b(e).empty=!1:b(e).unusedTokens.push(i),ie(i,n,e)):e._strict&&!n&&b(e).unusedTokens.push(i);b(e).charsLeftOver=l-d,u.length>0&&b(e).unusedInput.push(u),e._a[Fa]<=12&&!0===b(e).bigHour&&e._a[Fa]>0&&(b(e).bigHour=void 0),b(e).parsedDateParts=e._a.slice(0),b(e).meridiem=e._meridiem,e._a[Fa]=Et(e._locale,e._a[Fa],e._meridiem),c=b(e).era,null!==c&&(e._a[za]=e._locale.erasConvertYear(c,e._a[za])),vt(e),st(e)}function Et(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?(r=e.isPM(n),r&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function Tt(e){var t,n,r,a,i,o,c=!1,s=e._f.length;if(0===s)return b(e).invalidFormat=!0,void(e._d=new Date(NaN));for(a=0;athis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function $t(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e,t={};return y(t,this),t=Ot(t),t._a?(e=t._isUTC?h(t._a):Mt(t._a),this._isDSTShifted=this.isValid()&&zt(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function Qt(){return!!this.isValid()&&!this._isUTC}function Zt(){return!!this.isValid()&&this._isUTC}function en(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function tn(e,t){var n,r,a,i=e,c=null;return Nt(e)?i={ms:e._milliseconds,d:e._days,M:e._months}:u(e)||!isNaN(+e)?(i={},t?i[t]=+e:i.milliseconds=+e):(c=Oi.exec(e))?(n="-"===c[1]?-1:1,i={y:0,d:V(c[Ha])*n,h:V(c[Fa])*n,m:V(c[Ua])*n,s:V(c[Wa])*n,ms:V(Bt(1e3*c[qa]))*n}):(c=xi.exec(e))?(n="-"===c[1]?-1:1,i={y:nn(c[2],n),M:nn(c[3],n),w:nn(c[4],n),d:nn(c[5],n),h:nn(c[6],n),m:nn(c[7],n),s:nn(c[8],n)}):null==i?i={}:"object"==typeof i&&("from"in i||"to"in i)&&(a=an(Mt(i.from),Mt(i.to)),i={},i.ms=a.milliseconds,i.M=a.months),r=new Rt(i),Nt(e)&&o(e,"_locale")&&(r._locale=e._locale),Nt(e)&&o(e,"_isValid")&&(r._isValid=e._isValid),r}function nn(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function rn(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function an(e,t){var n;return e.isValid()&&t.isValid()?(t=Ft(t,e),e.isBefore(t)?n=rn(e,t):(n=rn(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function on(e,t){return function(n,r){var a,i;return null===r||isNaN(+r)||(T(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),i=n,n=r,r=i),a=tn(n,r),cn(this,a,e),this}}function cn(e,t,n,a){var i=t._milliseconds,o=Bt(t._days),c=Bt(t._months);e.isValid()&&(a=null==a||a,c&&fe(e,J(e,"Month")+c*n),o&&X(e,"Date",J(e,"Date")+o*n),i&&e._d.setTime(e._d.valueOf()+i*n),a&&r.updateOffset(e,o||c))}function sn(e){return"string"==typeof e||e instanceof String}function un(e){return _(e)||l(e)||sn(e)||u(e)||dn(e)||ln(e)||null===e||void 0===e}function ln(e){var t,n,r=i(e)&&!c(e),a=!1,s=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],u=s.length;for(t=0;tn.valueOf():n.valueOf()9999?j(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):k(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",j(n,"Z")):j(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function On(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r,a="moment",i="";return this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),e="["+a+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",r=i+'[")]',this.format(e+t+n+r)}function xn(e){e||(e=this.isUtc()?r.defaultFormatUtc:r.defaultFormat);var t=j(this,e);return this.localeData().postformat(t)}function Cn(e,t){return this.isValid()&&(_(e)&&e.isValid()||Mt(e).isValid())?tn({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Mn(e){return this.from(Mt(),e)}function Dn(e,t){return this.isValid()&&(_(e)&&e.isValid()||Mt(e).isValid())?tn({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Ln(e){return this.to(Mt(),e)}function An(e){var t;return void 0===e?this._locale._abbr:(t=ot(e),null!=t&&(this._locale=t),this)}function jn(){return this._locale}function Pn(e,t){return(e%t+t)%t}function In(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-Pi:new Date(e,t,n).valueOf()}function Rn(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-Pi:Date.UTC(e,t,n)}function Nn(e){var t,n;if(void 0===(e=H(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?Rn:In,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=Pn(t+(this._isUTC?0:this.utcOffset()*Ai),ji);break;case"minute":t=this._d.valueOf(),t-=Pn(t,Ai);break;case"second":t=this._d.valueOf(),t-=Pn(t,Li)}return this._d.setTime(t),r.updateOffset(this,!0),this}function Bn(e){var t,n;if(void 0===(e=H(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?Rn:In,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=ji-Pn(t+(this._isUTC?0:this.utcOffset()*Ai),ji)-1;break;case"minute":t=this._d.valueOf(),t+=Ai-Pn(t,Ai)-1;break;case"second":t=this._d.valueOf(),t+=Li-Pn(t,Li)-1}return this._d.setTime(t),r.updateOffset(this,!0),this}function zn(){return this._d.valueOf()-6e4*(this._offset||0)}function Yn(){return Math.floor(this.valueOf()/1e3)}function Hn(){return new Date(this.valueOf())}function Fn(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function Un(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function Wn(){return this.isValid()?this.toISOString():null}function qn(){return m(this)}function Gn(){return f({},b(this))}function Vn(){return b(this).overflow}function Kn(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Jn(e,t){var n,a,i,o=this._eras||ot("en")._eras;for(n=0,a=o.length;n=0)return s[r]}function $n(e,t){var n=e.since<=e.until?1:-1;return void 0===t?r(e.since).year():r(e.since).year()+(t-e.offset)*n}function Qn(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;ei&&(t=i),yr.call(this,e,t,n,r,a))}function yr(e,t,n,r,a){var i=Te(e,t,n,r,a),o=we(i.year,0,i.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}function vr(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}function _r(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}function wr(e,t){t[qa]=V(1e3*("0."+e))}function Er(){return this._isUTC?"UTC":""}function Tr(){return this._isUTC?"Coordinated Universal Time":""}function kr(e){return Mt(1e3*e)}function Sr(){return Mt.apply(null,arguments).parseZone()}function Or(e){return e}function xr(e,t,n,r){var a=ot(),i=h().set(r,t);return a[n](i,e)}function Cr(e,t,n){if(u(e)&&(t=e,e=void 0),e=e||"",null!=t)return xr(e,t,n,"month");var r,a=[];for(r=0;r<12;r++)a[r]=xr(e,r,n,"month");return a}function Mr(e,t,n,r){"boolean"==typeof e?(u(t)&&(n=t,t=void 0),t=t||""):(t=e,n=t,e=!1,u(t)&&(n=t,t=void 0),t=t||"");var a,i=ot(),o=e?i._week.dow:0,c=[];if(null!=n)return xr(t,(n+o)%7,r,"day");for(a=0;a<7;a++)c[a]=xr(t,(a+o)%7,r,"day");return c}function Dr(e,t){return Cr(e,t,"months")}function Lr(e,t){return Cr(e,t,"monthsShort")}function Ar(e,t,n){return Mr(e,t,n,"weekdays")}function jr(e,t,n){return Mr(e,t,n,"weekdaysShort")}function Pr(e,t,n){return Mr(e,t,n,"weekdaysMin")}function Ir(){var e=this._data;return this._milliseconds=Fi(this._milliseconds),this._days=Fi(this._days),this._months=Fi(this._months),e.milliseconds=Fi(e.milliseconds),e.seconds=Fi(e.seconds),e.minutes=Fi(e.minutes),e.hours=Fi(e.hours),e.months=Fi(e.months),e.years=Fi(e.years),this}function Rr(e,t,n,r){var a=tn(t,n);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function Nr(e,t){return Rr(this,e,t,1)}function Br(e,t){return Rr(this,e,t,-1)}function zr(e){return e<0?Math.floor(e):Math.ceil(e)}function Yr(){var e,t,n,r,a,i=this._milliseconds,o=this._days,c=this._months,s=this._data;return i>=0&&o>=0&&c>=0||i<=0&&o<=0&&c<=0||(i+=864e5*zr(Fr(c)+o),o=0,c=0),s.milliseconds=i%1e3,e=G(i/1e3),s.seconds=e%60,t=G(e/60),s.minutes=t%60,n=G(t/60),s.hours=n%24,o+=G(n/24),a=G(Hr(o)),c+=a,o-=zr(Fr(a)),r=G(c/12),c%=12,s.days=o,s.months=c,s.years=r,this}function Hr(e){return 4800*e/146097}function Fr(e){return 146097*e/4800}function Ur(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=H(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+Hr(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Fr(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}}function Wr(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*V(this._months/12):NaN}function qr(e){return function(){return this.as(e)}}function Gr(){return tn(this)}function Vr(e){return e=H(e),this.isValid()?this[e+"s"]():NaN}function Kr(e){return function(){return this.isValid()?this._data[e]:NaN}}function Jr(){return G(this.days()/7)}function Xr(e,t,n,r,a){return a.relativeTime(t||1,!!n,e,r)}function $r(e,t,n,r){var a=tn(e).abs(),i=io(a.as("s")),o=io(a.as("m")),c=io(a.as("h")),s=io(a.as("d")),u=io(a.as("M")),l=io(a.as("w")),d=io(a.as("y")),f=i<=n.ss&&["s",i]||i0,f[4]=r,Xr.apply(null,f)}function Qr(e){return void 0===e?io:"function"==typeof e&&(io=e,!0)}function Zr(e,t){return void 0!==oo[e]&&(void 0===t?oo[e]:(oo[e]=t,"s"===e&&(oo.ss=t-1),!0))}function ea(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,a=!1,i=oo;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(a=e),"object"==typeof t&&(i=Object.assign({},oo,t),null!=t.s&&null==t.ss&&(i.ss=t.s-1)),n=this.localeData(),r=$r(this,!a,i,n),a&&(r=n.pastFuture(+this,r)),n.postformat(r)}function ta(e){return(e>0)-(e<0)||+e}function na(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,a,i,o,c,s=co(this._milliseconds)/1e3,u=co(this._days),l=co(this._months),d=this.asSeconds();return d?(e=G(s/60),t=G(e/60),s%=60,e%=60,n=G(l/12),l%=12,r=s?s.toFixed(3).replace(/\.?0+$/,""):"",a=d<0?"-":"",i=ta(this._months)!==ta(d)?"-":"",o=ta(this._days)!==ta(d)?"-":"",c=ta(this._milliseconds)!==ta(d)?"-":"",a+"P"+(n?i+n+"Y":"")+(l?i+l+"M":"")+(u?o+u+"D":"")+(t||e||s?"T":"")+(t?c+t+"H":"")+(e?c+e+"M":"")+(s?c+r+"S":"")):"P0D"}var ra,aa;aa=Array.prototype.some?Array.prototype.some:function(e){var t,n=Object(this),r=n.length>>>0;for(t=0;t68?1900:2e3)};var Za=K("FullYear",!0);D("w",["ww",2],"wo","week"),D("W",["WW",2],"Wo","isoWeek"),Y("week","w"),Y("isoWeek","W"),U("week",5),U("isoWeek",5),Z("w",Sa),Z("ww",Sa,wa),Z("W",Sa),Z("WW",Sa,wa),ae(["w","ww","W","WW"],function(e,t,n,r){t[r.substr(0,1)]=V(e)});var ei={dow:0,doy:6};D("d",0,"do","day"),D("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),D("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),D("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),D("e",0,0,"weekday"),D("E",0,0,"isoWeekday"),Y("day","d"),Y("weekday","e"),Y("isoWeekday","E"),U("day",11),U("weekday",11),U("isoWeekday",11),Z("d",Sa),Z("e",Sa),Z("E",Sa),Z("dd",function(e,t){return t.weekdaysMinRegex(e)}),Z("ddd",function(e,t){return t.weekdaysShortRegex(e)}),Z("dddd",function(e,t){return t.weekdaysRegex(e)}),ae(["dd","ddd","dddd"],function(e,t,n,r){var a=n._locale.weekdaysParse(e,r,n._strict);null!=a?t.d=a:b(n).invalidWeekday=e}),ae(["d","e","E"],function(e,t,n,r){t[r]=V(e)});var ti="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ni="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),ri="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ai=Ra,ii=Ra,oi=Ra;D("H",["HH",2],0,"hour"),D("h",["hh",2],0,Ge),D("k",["kk",2],0,Ve),D("hmm",0,0,function(){return""+Ge.apply(this)+M(this.minutes(),2)}),D("hmmss",0,0,function(){return""+Ge.apply(this)+M(this.minutes(),2)+M(this.seconds(),2)}),D("Hmm",0,0,function(){return""+this.hours()+M(this.minutes(),2)}),D("Hmmss",0,0,function(){return""+this.hours()+M(this.minutes(),2)+M(this.seconds(),2)}),Ke("a",!0),Ke("A",!1),Y("hour","h"),U("hour",13),Z("a",Je),Z("A",Je),Z("H",Sa),Z("h",Sa),Z("k",Sa),Z("HH",Sa,wa),Z("hh",Sa,wa),Z("kk",Sa,wa),Z("hmm",Oa),Z("hmmss",xa),Z("Hmm",Oa),Z("Hmmss",xa),re(["H","HH"],Fa),re(["k","kk"],function(e,t,n){var r=V(e);t[Fa]=24===r?0:r}),re(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),re(["h","hh"],function(e,t,n){t[Fa]=V(e),b(n).bigHour=!0}),re("hmm",function(e,t,n){var r=e.length-2;t[Fa]=V(e.substr(0,r)),t[Ua]=V(e.substr(r)),b(n).bigHour=!0}),re("hmmss",function(e,t,n){var r=e.length-4,a=e.length-2;t[Fa]=V(e.substr(0,r)),t[Ua]=V(e.substr(r,2)),t[Wa]=V(e.substr(a)),b(n).bigHour=!0}),re("Hmm",function(e,t,n){var r=e.length-2;t[Fa]=V(e.substr(0,r)),t[Ua]=V(e.substr(r))}),re("Hmmss",function(e,t,n){var r=e.length-4,a=e.length-2;t[Fa]=V(e.substr(0,r)),t[Ua]=V(e.substr(r,2)),t[Wa]=V(e.substr(a))});var ci,si=/[ap]\.?m?\.?/i,ui=K("Hours",!0),li={calendar:la,longDateFormat:ba,invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:ma,relativeTime:ga,months:Ka,monthsShort:Ja,week:ei,weekdays:ti,weekdaysMin:ri,weekdaysShort:ni,meridiemParse:si},di={},fi={},hi=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,pi=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,bi=/Z|[+-]\d\d(?::?\d\d)?/,mi=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],gi=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],yi=/^\/?Date\((-?\d+)/i,vi=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,_i={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};r.createFromInputFallback=E("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),r.ISO_8601=function(){},r.RFC_2822=function(){};var wi=E("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=Mt.apply(null,arguments);return this.isValid()&&e.isValid()?ethis?this:e:g()}),Ti=function(){return Date.now?Date.now():+new Date},ki=["year","quarter","month","week","day","hour","minute","second","millisecond"];Yt("Z",":"),Yt("ZZ",""),Z("Z",Pa),Z("ZZ",Pa),re(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Ht(Pa,e)});var Si=/([\+\-]|\d\d)/gi;r.updateOffset=function(){};var Oi=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,xi=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;tn.fn=Rt.prototype,tn.invalid=It;var Ci=on(1,"add"),Mi=on(-1,"subtract");r.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",r.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Di=E("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)}),Li=1e3,Ai=60*Li,ji=60*Ai,Pi=3506328*ji;D("N",0,0,"eraAbbr"),D("NN",0,0,"eraAbbr"),D("NNN",0,0,"eraAbbr"),D("NNNN",0,0,"eraName"),D("NNNNN",0,0,"eraNarrow"),D("y",["y",1],"yo","eraYear"),D("y",["yy",2],0,"eraYear"),D("y",["yyy",3],0,"eraYear"),D("y",["yyyy",4],0,"eraYear"),Z("N",ir),Z("NN",ir),Z("NNN",ir),Z("NNNN",or),Z("NNNNN",cr),re(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,r){var a=n._locale.erasParse(e,r,n._strict);a?b(n).era=a:b(n).invalidEra=e}),Z("y",La),Z("yy",La),Z("yyy",La),Z("yyyy",La),Z("yo",sr),re(["y","yy","yyy","yyyy"],za),re(["yo"],function(e,t,n,r){var a;n._locale._eraYearOrdinalRegex&&(a=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[za]=n._locale.eraYearOrdinalParse(e,a):t[za]=parseInt(e,10)}),D(0,["gg",2],0,function(){return this.weekYear()%100}),D(0,["GG",2],0,function(){return this.isoWeekYear()%100}),lr("gggg","weekYear"),lr("ggggg","weekYear"),lr("GGGG","isoWeekYear"),lr("GGGGG","isoWeekYear"),Y("weekYear","gg"),Y("isoWeekYear","GG"),U("weekYear",1),U("isoWeekYear",1),Z("G",Aa),Z("g",Aa),Z("GG",Sa,wa),Z("gg",Sa,wa),Z("GGGG",Ma,Ta),Z("gggg",Ma,Ta),Z("GGGGG",Da,ka),Z("ggggg",Da,ka),ae(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,r){t[r.substr(0,2)]=V(e)}),ae(["gg","GG"],function(e,t,n,a){t[a]=r.parseTwoDigitYear(e)}),D("Q",0,"Qo","quarter"),Y("quarter","Q"),U("quarter",7),Z("Q",_a),re("Q",function(e,t){t[Ya]=3*(V(e)-1)}),D("D",["DD",2],"Do","date"),Y("date","D"),U("date",9),Z("D",Sa),Z("DD",Sa,wa),Z("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),re(["D","DD"],Ha),re("Do",function(e,t){t[Ha]=V(e.match(Sa)[0])});var Ii=K("Date",!0);D("DDD",["DDDD",3],"DDDo","dayOfYear"),Y("dayOfYear","DDD"),U("dayOfYear",4),Z("DDD",Ca),Z("DDDD",Ea),re(["DDD","DDDD"],function(e,t,n){n._dayOfYear=V(e)}),D("m",["mm",2],0,"minute"),Y("minute","m"),U("minute",14),Z("m",Sa),Z("mm",Sa,wa),re(["m","mm"],Ua);var Ri=K("Minutes",!1);D("s",["ss",2],0,"second"),Y("second","s"),U("second",15),Z("s",Sa),Z("ss",Sa,wa),re(["s","ss"],Wa);var Ni=K("Seconds",!1);D("S",0,0,function(){return~~(this.millisecond()/100)}),D(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),D(0,["SSS",3],0,"millisecond"),D(0,["SSSS",4],0,function(){return 10*this.millisecond()}),D(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),D(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),D(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),D(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),D(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),Y("millisecond","ms"),U("millisecond",16),Z("S",Ca,_a),Z("SS",Ca,wa),Z("SSS",Ca,Ea);var Bi,zi;for(Bi="SSSS";Bi.length<=9;Bi+="S")Z(Bi,La);for(Bi="S";Bi.length<=9;Bi+="S")re(Bi,wr);zi=K("Milliseconds",!1),D("z",0,0,"zoneAbbr"),D("zz",0,0,"zoneName");var Yi=v.prototype;Yi.add=Ci,Yi.calendar=pn,Yi.clone=bn,Yi.diff=En,Yi.endOf=Bn,Yi.format=xn,Yi.from=Cn,Yi.fromNow=Mn,Yi.to=Dn,Yi.toNow=Ln,Yi.get=$,Yi.invalidAt=Vn,Yi.isAfter=mn,Yi.isBefore=gn,Yi.isBetween=yn,Yi.isSame=vn,Yi.isSameOrAfter=_n,Yi.isSameOrBefore=wn,Yi.isValid=qn,Yi.lang=Di,Yi.locale=An,Yi.localeData=jn,Yi.max=Ei,Yi.min=wi,Yi.parsingFlags=Gn,Yi.set=Q,Yi.startOf=Nn,Yi.subtract=Mi,Yi.toArray=Fn,Yi.toObject=Un,Yi.toDate=Hn,Yi.toISOString=Sn,Yi.inspect=On,"undefined"!=typeof Symbol&&null!=Symbol.for&&(Yi[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),Yi.toJSON=Wn,Yi.toString=kn,Yi.unix=Yn,Yi.valueOf=zn,Yi.creationData=Kn,Yi.eraName=Qn,Yi.eraNarrow=Zn,Yi.eraAbbr=er,Yi.eraYear=tr,Yi.year=Za,Yi.isLeapYear=ve,Yi.weekYear=dr,Yi.isoWeekYear=fr,Yi.quarter=Yi.quarters=vr,Yi.month=he,Yi.daysInMonth=pe,Yi.week=Yi.weeks=Me,Yi.isoWeek=Yi.isoWeeks=De,Yi.weeksInYear=br,Yi.weeksInWeekYear=mr,Yi.isoWeeksInYear=hr,Yi.isoWeeksInISOWeekYear=pr,Yi.date=Ii,Yi.day=Yi.days=ze,Yi.weekday=Ye,Yi.isoWeekday=He,Yi.dayOfYear=_r,Yi.hour=Yi.hours=ui,Yi.minute=Yi.minutes=Ri,Yi.second=Yi.seconds=Ni,Yi.millisecond=Yi.milliseconds=zi,Yi.utcOffset=Wt,Yi.utc=Gt,Yi.local=Vt,Yi.parseZone=Kt,Yi.hasAlignedHourOffset=Jt,Yi.isDST=Xt,Yi.isLocal=Qt,Yi.isUtcOffset=Zt,Yi.isUtc=en,Yi.isUTC=en,Yi.zoneAbbr=Er,Yi.zoneName=Tr,Yi.dates=E("dates accessor is deprecated. Use date instead.",Ii),Yi.months=E("months accessor is deprecated. Use month instead",he),Yi.years=E("years accessor is deprecated. Use year instead",Za),Yi.zone=E("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",qt),Yi.isDSTShifted=E("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",$t);var Hi=x.prototype;Hi.calendar=C,Hi.longDateFormat=I,Hi.invalidDate=R,Hi.ordinal=N,Hi.preparse=Or,Hi.postformat=Or,Hi.relativeTime=B,Hi.pastFuture=z,Hi.set=S,Hi.eras=Jn,Hi.erasParse=Xn,Hi.erasConvertYear=$n,Hi.erasAbbrRegex=rr,Hi.erasNameRegex=nr,Hi.erasNarrowRegex=ar,Hi.months=se,Hi.monthsShort=ue,Hi.monthsParse=de,Hi.monthsRegex=me,Hi.monthsShortRegex=be,Hi.week=Oe,Hi.firstDayOfYear=Ce,Hi.firstDayOfWeek=xe,Hi.weekdays=Pe,Hi.weekdaysMin=Re,Hi.weekdaysShort=Ie,Hi.weekdaysParse=Be,Hi.weekdaysRegex=Fe,Hi.weekdaysShortRegex=Ue,Hi.weekdaysMinRegex=We,Hi.isPM=Xe,Hi.meridiem=$e,rt("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===V(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),r.lang=E("moment.lang is deprecated. Use moment.locale instead.",rt),r.langData=E("moment.langData is deprecated. Use moment.localeData instead.",ot);var Fi=Math.abs,Ui=qr("ms"),Wi=qr("s"),qi=qr("m"),Gi=qr("h"),Vi=qr("d"),Ki=qr("w"),Ji=qr("M"),Xi=qr("Q"),$i=qr("y"),Qi=Kr("milliseconds"),Zi=Kr("seconds"),eo=Kr("minutes"),to=Kr("hours"),no=Kr("days"),ro=Kr("months"),ao=Kr("years"),io=Math.round,oo={ss:44,s:45,m:45,h:22,d:26,w:null,M:11},co=Math.abs,so=Rt.prototype; +//! moment.js +return so.isValid=Pt,so.abs=Ir,so.add=Nr,so.subtract=Br,so.as=Ur,so.asMilliseconds=Ui,so.asSeconds=Wi,so.asMinutes=qi,so.asHours=Gi,so.asDays=Vi,so.asWeeks=Ki,so.asMonths=Ji,so.asQuarters=Xi,so.asYears=$i,so.valueOf=Wr,so._bubble=Yr,so.clone=Gr,so.get=Vr,so.milliseconds=Qi,so.seconds=Zi,so.minutes=eo,so.hours=to,so.days=no,so.weeks=Jr,so.months=ro,so.years=ao,so.humanize=ea,so.toISOString=na,so.toString=na,so.toJSON=na,so.locale=An,so.localeData=jn,so.toIsoString=E("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",na),so.lang=Di,D("X",0,0,"unix"),D("x",0,0,"valueOf"),Z("x",Aa),Z("X",Ia),re("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e))}),re("x",function(e,t,n){n._d=new Date(V(e))}),r.version="2.29.3",function(e){ra=e}(Mt),r.fn=Yi,r.min=Lt,r.max=At,r.now=Ti,r.utc=h,r.unix=kr,r.months=Dr,r.isDate=l,r.locale=rt,r.invalid=g,r.duration=tn,r.isMoment=_,r.weekdays=Ar,r.parseZone=Sr,r.localeData=ot,r.isDuration=Nt,r.monthsShort=Lr,r.weekdaysMin=Pr,r.defineLocale=at,r.updateLocale=it,r.locales=ct,r.weekdaysShort=jr,r.normalizeUnits=H,r.relativeTimeRounding=Qr,r.relativeTimeThreshold=Zr,r.calendarFormat=hn,r.prototype=Yi,r.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},r})}).call(t,n(398)(e))},function(e,t,n){"use strict";n.d(t,"b",function(){return z}),n.d(t,"a",function(){return U}),n.d(t,"c",function(){return q}),n.d(t,"d",function(){return G}),n.d(t,"e",function(){return V});var r=n(42),a=(n.n(r),n(86)),i=(n.n(a),n(154)),o=(n.n(i),n(16)),c=(n.n(o),n(13)),s=(n.n(c),n(76)),u=(n.n(s),n(26)),l=(n.n(u),n(10)),d=(n.n(l),n(20)),f=(n.n(d),n(24)),h=(n.n(f),n(238)),p=n.n(h),b=n(242),m=n.n(b),g=n(272),y=n.n(g),v=n(273),_=n.n(v),w=n(274),E=n.n(w),T=n(275),k=n.n(T),S=n(276),O=n.n(S),x=n(277),C=n.n(x),M=n(278),D=n.n(M),L=n(279),A=n.n(L),j=n(280),P=n.n(j),I=n(281),R=n.n(I),N=n(282),B=n.n(N),z={zh_tw:y.a,zh_cn:_.a,it:E.a,vi:k.a,pl:O.a,ru:C.a,pt:D.a,es:A.a,fr:P.a,en:R.a,ach:B.a},Y=R.a,H={},F=function(e){return e in H?H[e]:Y[e]},U=function(e){H=z[e]},W=function(e){return e&&F(p()(e))||e},q=function(e,t){if(void 0===t&&(t=[]),t.length){var n=e.replace(/\{\$({0-9])\}/gi,"%$1"),r=W(n);return t.forEach(function(e,t){r&&"string"==typeof r&&(r=r.replaceAll("{$"+t+"}",e))}),m()(r)}return W(e)},G=function(e,t,n){if(z[t]){var r=Object.values(z[t]).findIndex(function(t){return e===t});if(-1!==r){var a=Object.keys(z[t])[r],i=z[n][a];if(i)return i}}return e},V=function e(t){return Array.from(t.getElementsByTagName("category")||[]).forEach(function(t){var n=t.getAttribute("i18n-text");n&&t.setAttribute("name",q(n)),e(t)}),t}},function(e,t,n){"use strict";e.exports=n(232)},function(e,t,n){var r,a;/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +!function(t,n){"use strict";"object"==typeof e&&"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,function(n,i){"use strict";function o(e,t,n){n=n||Se;var r,a,i=n.createElement("script");if(i.text=e,t)for(r in Oe)(a=t[r]||t.getAttribute&&t.getAttribute(r))&&i.setAttribute(r,a);n.head.appendChild(i).parentNode.removeChild(i)}function c(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?ge[ye.call(e)]||"object":typeof e}function s(e){var t=!!e&&"length"in e&&e.length,n=c(e);return!Te(e)&&!ke(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function u(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function l(e,t,n){return Te(t)?xe.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?xe.grep(e,function(e){return e===t!==n}):"string"!=typeof t?xe.grep(e,function(e){return me.call(t,e)>-1!==n}):xe.filter(t,e,n)}function d(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function f(e){var t={};return xe.each(e.match(Ne)||[],function(e,n){t[n]=!0}),t}function h(e){return e}function p(e){throw e}function b(e,t,n,r){var a;try{e&&Te(a=e.promise)?a.call(e).done(t).fail(n):e&&Te(a=e.then)?a.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}function m(){Se.removeEventListener("DOMContentLoaded",m),n.removeEventListener("load",m),xe.ready()}function g(e,t){return t.toUpperCase()}function y(e){return e.replace(He,"ms-").replace(Fe,g)}function v(){this.expando=xe.expando+v.uid++}function _(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Ge.test(e)?JSON.parse(e):e)}function w(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Ve,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=_(n)}catch(e){}qe.set(e,t,n)}else n=void 0;return n}function E(e,t,n,r){var a,i,o=20,c=r?function(){return r.cur()}:function(){return xe.css(e,t,"")},s=c(),u=n&&n[3]||(xe.cssNumber[t]?"":"px"),l=e.nodeType&&(xe.cssNumber[t]||"px"!==u&&+s)&&Je.exec(xe.css(e,t));if(l&&l[3]!==u){for(s/=2,u=u||l[3],l=+s||1;o--;)xe.style(e,t,l+u),(1-i)*(1-(i=c()/s||.5))<=0&&(o=0),l/=i;l*=2,xe.style(e,t,l+u),n=n||[]}return n&&(l=+l||+s||0,a=n[1]?l+(n[1]+1)*n[2]:+n[2],r&&(r.unit=u,r.start=l,r.end=a)),a}function T(e){var t,n=e.ownerDocument,r=e.nodeName,a=tt[r];return a||(t=n.body.appendChild(n.createElement(r)),a=xe.css(t,"display"),t.parentNode.removeChild(t),"none"===a&&(a="block"),tt[r]=a,a)}function k(e,t){for(var n,r,a=[],i=0,o=e.length;i-1)a&&a.push(i);else if(l=Qe(i),o=S(f.appendChild(i),"script"),l&&O(o),n)for(d=0;i=o[d++];)at.test(i.type||"")&&n.push(i);return f}function C(){return!0}function M(){return!1}function D(e,t){return e===L()==("focus"===t)}function L(){try{return Se.activeElement}catch(e){}}function A(e,t,n,r,a,i){var o,c;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(c in t)A(e,c,n,r,t[c],i);return e}if(null==r&&null==a?(a=n,r=n=void 0):null==a&&("string"==typeof n?(a=r,r=void 0):(a=r,r=n,n=void 0)),!1===a)a=M;else if(!a)return e;return 1===i&&(o=a,a=function(e){return xe().off(e),o.apply(this,arguments)},a.guid=o.guid||(o.guid=xe.guid++)),e.each(function(){xe.event.add(this,t,a,r,n)})}function j(e,t,n){if(!n)return void(void 0===We.get(e,t)&&xe.event.add(e,t,C));We.set(e,t,!1),xe.event.add(e,t,{namespace:!1,handler:function(e){var r,a,i=We.get(this,t);if(1&e.isTrigger&&this[t]){if(i.length)(xe.event.special[t]||{}).delegateType&&e.stopPropagation();else if(i=he.call(arguments),We.set(this,t,i),r=n(this,t),this[t](),a=We.get(this,t),i!==a||r?We.set(this,t,!1):a={},i!==a)return e.stopImmediatePropagation(),e.preventDefault(),a&&a.value}else i.length&&(We.set(this,t,{value:xe.event.trigger(xe.extend(i[0],xe.Event.prototype),i.slice(1),this)}),e.stopImmediatePropagation())}})}function P(e,t){return u(e,"table")&&u(11!==t.nodeType?t:t.firstChild,"tr")?xe(e).children("tbody")[0]||e:e}function I(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function R(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function N(e,t){var n,r,a,i,o,c,s;if(1===t.nodeType){if(We.hasData(e)&&(i=We.get(e),s=i.events)){We.remove(t,"handle events");for(a in s)for(n=0,r=s[a].length;n1&&"string"==typeof p&&!Ee.checkClone&&ut.test(p))return e.each(function(a){var i=e.eq(a);b&&(t[0]=p.call(this,a,i.html())),z(i,t,n,r)});if(f&&(a=x(t,e[0].ownerDocument,!1,e,r),i=a.firstChild,1===a.childNodes.length&&(a=i),i||r)){for(c=xe.map(S(a,"script"),I),s=c.length;d=0&&(s+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-i-s-c-.5))||0),s}function V(e,t,n){var r=ft(e),a=!Ee.boxSizingReliable()||n,i=a&&"border-box"===xe.css(e,"boxSizing",!1,r),o=i,c=H(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(dt.test(c)){if(!n)return c;c="auto"}return(!Ee.boxSizingReliable()&&i||!Ee.reliableTrDimensions()&&u(e,"tr")||"auto"===c||!parseFloat(c)&&"inline"===xe.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===xe.css(e,"boxSizing",!1,r),(o=s in e)&&(c=e[s])),(c=parseFloat(c)||0)+G(e,t,n||(i?"border":"content"),o,r,c)+"px"}function K(e,t,n,r,a){return new K.prototype.init(e,t,n,r,a)}function J(){Tt&&(!1===Se.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(J):n.setTimeout(J,xe.fx.interval),xe.fx.tick())}function X(){return n.setTimeout(function(){Et=void 0}),Et=Date.now()}function $(e,t){var n,r=0,a={height:e};for(t=t?1:0;r<4;r+=2-t)n=Xe[r],a["margin"+n]=a["padding"+n]=e;return t&&(a.opacity=a.width=e),a}function Q(e,t,n){for(var r,a=(te.tweeners[t]||[]).concat(te.tweeners["*"]),i=0,o=a.length;i=0&&nw.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[B]=!0,e}function a(e){var t=L.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function i(e,t){for(var n=e.split("|"),r=n.length;r--;)w.attrHandle[n[r]]=t}function o(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function c(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ke(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function s(e){return r(function(t){return t=+t,r(function(n,r){for(var a,i=e([],n.length,t),o=i.length;o--;)n[a=i[o]]&&(n[a]=!(r[a]=n[a]))})})}function u(e){return e&&void 0!==e.getElementsByTagName&&e}function l(){}function d(e){for(var t=0,n=e.length,r="";t1?function(t,n,r){for(var a=e.length;a--;)if(!e[a](t,n,r))return!1;return!0}:e[0]}function p(e,n,r){for(var a=0,i=n.length;a-1&&(r[u]=!(o[u]=d))}}else v=b(v===o?v.splice(m,v.length):v),i?i(null,o,v,s):$.apply(o,v)})}function g(e){for(var t,n,r,a=e.length,i=w.relative[e[0].type],o=i||w.relative[" "],c=i?1:0,s=f(function(e){return e===t},o,!0),u=f(function(e){return Z(t,e)>-1},o,!0),l=[function(e,n,r){var a=!i&&(r||n!==x)||((t=n).nodeType?s(e,n,r):u(e,n,r));return t=null,a}];c1&&h(l),c>1&&d(e.slice(0,c-1).concat({value:" "===e[c-2].type?"*":""})).replace(oe,"$1"),n,c0,i=e.length>0,o=function(r,o,c,s,u){var l,d,f,h=0,p="0",m=r&&[],g=[],y=x,v=r||i&&w.find.TAG("*",u),_=Y+=null==y?1:Math.random()||.1,E=v.length;for(u&&(x=o==L||o||u);p!==E&&null!=(l=v[p]);p++){if(i&&l){for(d=0,o||l.ownerDocument==L||(D(l),c=!j);f=e[d++];)if(f(l,o||L,c)){s.push(l);break}u&&(Y=_)}a&&((l=!f&&l)&&h--,r&&m.push(l))}if(h+=p,a&&p!==h){for(d=0;f=n[d++];)f(m,g,o,c);if(r){if(h>0)for(;p--;)m[p]||g[p]||(g[p]=J.call(s));g=b(g)}$.apply(s,g),u&&!r&&g.length>0&&h+n.length>1&&t.uniqueSort(s)}return u&&(Y=_,x=y),m};return a?r(o):o}var v,_,w,E,T,k,S,O,x,C,M,D,L,A,j,P,I,R,N,B="sizzle"+1*new Date,z=e.document,Y=0,H=0,F=n(),U=n(),W=n(),q=n(),G=function(e,t){return e===t&&(M=!0),0},V={}.hasOwnProperty,K=[],J=K.pop,X=K.push,$=K.push,Q=K.slice,Z=function(e,t){for(var n=0,r=e.length;n+~]|"+te+")"+te+"*"),ue=new RegExp(te+"|>"),le=new RegExp(ae),de=new RegExp("^"+ne+"$"),fe={ID:new RegExp("^#("+ne+")"),CLASS:new RegExp("^\\.("+ne+")"),TAG:new RegExp("^("+ne+"|[*])"),ATTR:new RegExp("^"+re),PSEUDO:new RegExp("^"+ae),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+te+"*(even|odd|(([+-]|)(\\d*)n|)"+te+"*(?:([+-]|)"+te+"*(\\d+)|))"+te+"*\\)|)","i"),bool:new RegExp("^(?:"+ee+")$","i"),needsContext:new RegExp("^"+te+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+te+"*((?:-\\d)?\\d*)"+te+"*\\)|)(?=[^-]|$)","i")},he=/HTML$/i,pe=/^(?:input|select|textarea|button)$/i,be=/^h\d$/i,me=/^[^{]+\{\s*\[native \w/,ge=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ye=/[+~]/,ve=new RegExp("\\\\[\\da-fA-F]{1,6}"+te+"?|\\\\([^\\r\\n\\f])","g"),_e=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},we=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,Ee=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},Te=function(){D()},ke=f(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{$.apply(K=Q.call(z.childNodes),z.childNodes),K[z.childNodes.length].nodeType}catch(e){$={apply:K.length?function(e,t){X.apply(e,Q.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}_=t.support={},T=t.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!he.test(t||n&&n.nodeName||"HTML")},D=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:z;return r!=L&&9===r.nodeType&&r.documentElement?(L=r,A=L.documentElement,j=!T(L),z!=L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",Te,!1):n.attachEvent&&n.attachEvent("onunload",Te)),_.scope=a(function(e){return A.appendChild(e).appendChild(L.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),_.attributes=a(function(e){return e.className="i",!e.getAttribute("className")}),_.getElementsByTagName=a(function(e){return e.appendChild(L.createComment("")),!e.getElementsByTagName("*").length}),_.getElementsByClassName=me.test(L.getElementsByClassName),_.getById=a(function(e){return A.appendChild(e).id=B,!L.getElementsByName||!L.getElementsByName(B).length}),_.getById?(w.filter.ID=function(e){var t=e.replace(ve,_e);return function(e){return e.getAttribute("id")===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&j){var n=t.getElementById(e);return n?[n]:[]}}):(w.filter.ID=function(e){var t=e.replace(ve,_e);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&j){var n,r,a,i=t.getElementById(e);if(i){if((n=i.getAttributeNode("id"))&&n.value===e)return[i];for(a=t.getElementsByName(e),r=0;i=a[r++];)if((n=i.getAttributeNode("id"))&&n.value===e)return[i]}return[]}}),w.find.TAG=_.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):_.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],a=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[a++];)1===n.nodeType&&r.push(n);return r}return i},w.find.CLASS=_.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&j)return t.getElementsByClassName(e)},I=[],P=[],(_.qsa=me.test(L.querySelectorAll))&&(a(function(e){var t;A.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&P.push("[*^$]="+te+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||P.push("\\["+te+"*(?:value|"+ee+")"),e.querySelectorAll("[id~="+B+"-]").length||P.push("~="),t=L.createElement("input"),t.setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||P.push("\\["+te+"*name"+te+"*="+te+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||P.push(":checked"),e.querySelectorAll("a#"+B+"+*").length||P.push(".#.+[+~]"),e.querySelectorAll("\\\f"),P.push("[\\r\\n\\f]")}),a(function(e){e.innerHTML="";var t=L.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&P.push("name"+te+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&P.push(":enabled",":disabled"),A.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&P.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),P.push(",.*:")})),(_.matchesSelector=me.test(R=A.matches||A.webkitMatchesSelector||A.mozMatchesSelector||A.oMatchesSelector||A.msMatchesSelector))&&a(function(e){_.disconnectedMatch=R.call(e,"*"),R.call(e,"[s!='']:x"),I.push("!=",ae)}),P=P.length&&new RegExp(P.join("|")),I=I.length&&new RegExp(I.join("|")),t=me.test(A.compareDocumentPosition),N=t||me.test(A.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},G=t?function(e,t){if(e===t)return M=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!_.sortDetached&&t.compareDocumentPosition(e)===n?e==L||e.ownerDocument==z&&N(z,e)?-1:t==L||t.ownerDocument==z&&N(z,t)?1:C?Z(C,e)-Z(C,t):0:4&n?-1:1)}:function(e,t){if(e===t)return M=!0,0;var n,r=0,a=e.parentNode,i=t.parentNode,c=[e],s=[t];if(!a||!i)return e==L?-1:t==L?1:a?-1:i?1:C?Z(C,e)-Z(C,t):0;if(a===i)return o(e,t);for(n=e;n=n.parentNode;)c.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;c[r]===s[r];)r++;return r?o(c[r],s[r]):c[r]==z?-1:s[r]==z?1:0},L):L},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if(D(e),_.matchesSelector&&j&&!q[n+" "]&&(!I||!I.test(n))&&(!P||!P.test(n)))try{var r=R.call(e,n);if(r||_.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){q(n,!0)}return t(n,L,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!=L&&D(e),N(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!=L&&D(e);var n=w.attrHandle[t.toLowerCase()],r=n&&V.call(w.attrHandle,t.toLowerCase())?n(e,t,!j):void 0;return void 0!==r?r:_.attributes||!j?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(we,Ee)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,a=0;if(M=!_.detectDuplicates,C=!_.sortStable&&e.slice(0),e.sort(G),M){for(;t=e[a++];)t===e[a]&&(r=n.push(a));for(;r--;)e.splice(n[r],1)}return C=null,e},E=t.getText=function(e){var t,n="",r=0,a=e.nodeType;if(a){if(1===a||9===a||11===a){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=E(e)}else if(3===a||4===a)return e.nodeValue}else for(;t=e[r++];)n+=E(t);return n},w=t.selectors={cacheLength:50,createPseudo:r,match:fe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ve,_e),e[3]=(e[3]||e[4]||e[5]||"").replace(ve,_e),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return fe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&le.test(n)&&(t=k(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ve,_e).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=F[e+" "];return t||(t=new RegExp("(^|"+te+")"+e+"("+te+"|$)"))&&F(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(a){var i=t.attr(a,e);return null==i?"!="===n:!n||(i+="","="===n?i===r:"!="===n?i!==r:"^="===n?r&&0===i.indexOf(r):"*="===n?r&&i.indexOf(r)>-1:"$="===n?r&&i.slice(-r.length)===r:"~="===n?(" "+i.replace(ie," ")+" ").indexOf(r)>-1:"|="===n&&(i===r||i.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,a){var i="nth"!==e.slice(0,3),o="last"!==e.slice(-4),c="of-type"===t;return 1===r&&0===a?function(e){return!!e.parentNode}:function(t,n,s){var u,l,d,f,h,p,b=i!==o?"nextSibling":"previousSibling",m=t.parentNode,g=c&&t.nodeName.toLowerCase(),y=!s&&!c,v=!1;if(m){if(i){for(;b;){for(f=t;f=f[b];)if(c?f.nodeName.toLowerCase()===g:1===f.nodeType)return!1;p=b="only"===e&&!p&&"nextSibling"}return!0}if(p=[o?m.firstChild:m.lastChild],o&&y){for(f=m,d=f[B]||(f[B]={}),l=d[f.uniqueID]||(d[f.uniqueID]={}),u=l[e]||[],h=u[0]===Y&&u[1],v=h&&u[2],f=h&&m.childNodes[h];f=++h&&f&&f[b]||(v=h=0)||p.pop();)if(1===f.nodeType&&++v&&f===t){l[e]=[Y,h,v];break}}else if(y&&(f=t,d=f[B]||(f[B]={}),l=d[f.uniqueID]||(d[f.uniqueID]={}),u=l[e]||[],h=u[0]===Y&&u[1],v=h),!1===v)for(;(f=++h&&f&&f[b]||(v=h=0)||p.pop())&&((c?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++v||(y&&(d=f[B]||(f[B]={}),l=d[f.uniqueID]||(d[f.uniqueID]={}),l[e]=[Y,v]),f!==t)););return(v-=a)===r||v%r==0&&v/r>=0}}},PSEUDO:function(e,n){var a,i=w.pseudos[e]||w.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return i[B]?i(n):i.length>1?(a=[e,e,"",n],w.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,a=i(e,n),o=a.length;o--;)r=Z(e,a[o]),e[r]=!(t[r]=a[o])}):function(e){return i(e,0,a)}):i}},pseudos:{not:r(function(e){var t=[],n=[],a=S(e.replace(oe,"$1"));return a[B]?r(function(e,t,n,r){for(var i,o=a(e,null,r,[]),c=e.length;c--;)(i=o[c])&&(e[c]=!(t[c]=i))}):function(e,r,i){return t[0]=e,a(t,null,i,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(ve,_e),function(t){return(t.textContent||E(t)).indexOf(e)>-1}}),lang:r(function(e){return de.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(ve,_e).toLowerCase(),function(t){var n;do{if(n=j?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===A},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:c(!1),disabled:c(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!w.pseudos.empty(e)},header:function(e){return be.test(e.nodeName)},input:function(e){return pe.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:s(function(){return[0]}),last:s(function(e,t){return[t-1]}),eq:s(function(e,t,n){return[n<0?n+t:n]}),even:s(function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e}),gt:s(function(e,t,n){for(var r=n<0?n+t:n;++r2&&"ID"===(o=i[0]).type&&9===t.nodeType&&j&&w.relative[i[1].type]){if(!(t=(w.find.ID(o.matches[0].replace(ve,_e),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(i.shift().value.length)}for(a=fe.needsContext.test(e)?0:i.length;a--&&(o=i[a],!w.relative[c=o.type]);)if((s=w.find[c])&&(r=s(o.matches[0].replace(ve,_e),ye.test(i[0].type)&&u(t.parentNode)||t))){if(i.splice(a,1),!(e=r.length&&d(i)))return $.apply(n,r),n;break}}return(l||S(e,f))(r,t,!j,n,!t||ye.test(e)&&u(t.parentNode)||t),n},_.sortStable=B.split("").sort(G).join("")===B,_.detectDuplicates=!!M,D(),_.sortDetached=a(function(e){return 1&e.compareDocumentPosition(L.createElement("fieldset"))}),a(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||i("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),_.attributes&&a(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||i("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),a(function(e){return null==e.getAttribute("disabled")})||i(ee,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(n);xe.find=Ce,xe.expr=Ce.selectors,xe.expr[":"]=xe.expr.pseudos,xe.uniqueSort=xe.unique=Ce.uniqueSort,xe.text=Ce.getText,xe.isXMLDoc=Ce.isXML,xe.contains=Ce.contains,xe.escapeSelector=Ce.escape;var Me=function(e,t,n){for(var r=[],a=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(a&&xe(e).is(n))break;r.push(e)}return r},De=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Le=xe.expr.match.needsContext,Ae=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;xe.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?xe.find.matchesSelector(r,e)?[r]:[]:xe.find.matches(e,xe.grep(t,function(e){return 1===e.nodeType}))},xe.fn.extend({find:function(e){var t,n,r=this.length,a=this;if("string"!=typeof e)return this.pushStack(xe(e).filter(function(){for(t=0;t1?xe.uniqueSort(n):n},filter:function(e){return this.pushStack(l(this,e||[],!1))},not:function(e){return this.pushStack(l(this,e||[],!0))},is:function(e){return!!l(this,"string"==typeof e&&Le.test(e)?xe(e):e||[],!1).length}});var je,Pe=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(xe.fn.init=function(e,t,n){var r,a;if(!e)return this;if(n=n||je,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Pe.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof xe?t[0]:t,xe.merge(this,xe.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:Se,!0)),Ae.test(r[1])&&xe.isPlainObject(t))for(r in t)Te(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return a=Se.getElementById(r[2]),a&&(this[0]=a,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):Te(e)?void 0!==n.ready?n.ready(e):e(xe):xe.makeArray(e,this)}).prototype=xe.fn,je=xe(Se);var Ie=/^(?:parents|prev(?:Until|All))/,Re={children:!0,contents:!0,next:!0,prev:!0};xe.fn.extend({has:function(e){var t=xe(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&xe.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?xe.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?me.call(xe(e),this[0]):me.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(xe.uniqueSort(xe.merge(this.get(),xe(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),xe.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return Me(e,"parentNode")},parentsUntil:function(e,t,n){return Me(e,"parentNode",n)},next:function(e){return d(e,"nextSibling")},prev:function(e){return d(e,"previousSibling")},nextAll:function(e){return Me(e,"nextSibling")},prevAll:function(e){return Me(e,"previousSibling")},nextUntil:function(e,t,n){return Me(e,"nextSibling",n)},prevUntil:function(e,t,n){return Me(e,"previousSibling",n)},siblings:function(e){return De((e.parentNode||{}).firstChild,e)},children:function(e){return De(e.firstChild)},contents:function(e){return null!=e.contentDocument&&fe(e.contentDocument)?e.contentDocument:(u(e,"template")&&(e=e.content||e),xe.merge([],e.childNodes))}},function(e,t){xe.fn[e]=function(n,r){var a=xe.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(a=xe.filter(r,a)),this.length>1&&(Re[e]||xe.uniqueSort(a),Ie.test(e)&&a.reverse()),this.pushStack(a)}});var Ne=/[^\x20\t\r\n\f]+/g;xe.Callbacks=function(e){e="string"==typeof e?f(e):xe.extend({},e);var t,n,r,a,i=[],o=[],s=-1,u=function(){for(a=a||e.once,r=t=!0;o.length;s=-1)for(n=o.shift();++s-1;)i.splice(n,1),n<=s&&s--}),this},has:function(e){return e?xe.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return a=o=[],i=n="",this},disabled:function(){return!i},lock:function(){return a=o=[],n||t||(i=n=""),this},locked:function(){return!!a},fireWith:function(e,n){return a||(n=n||[],n=[e,n.slice?n.slice():n],o.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},xe.extend({Deferred:function(e){var t=[["notify","progress",xe.Callbacks("memory"),xe.Callbacks("memory"),2],["resolve","done",xe.Callbacks("once memory"),xe.Callbacks("once memory"),0,"resolved"],["reject","fail",xe.Callbacks("once memory"),xe.Callbacks("once memory"),1,"rejected"]],r="pending",a={state:function(){return r},always:function(){return i.done(arguments).fail(arguments),this},catch:function(e){return a.then(null,e)},pipe:function(){var e=arguments;return xe.Deferred(function(n){xe.each(t,function(t,r){var a=Te(e[r[4]])&&e[r[4]];i[r[1]](function(){var e=a&&a.apply(this,arguments);e&&Te(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,a?[e]:arguments)})}),e=null}).promise()},then:function(e,r,a){function i(e,t,r,a){return function(){var c=this,s=arguments,u=function(){var n,u;if(!(e=o&&(r!==p&&(c=void 0,s=[n]),t.rejectWith(c,s))}};e?l():(xe.Deferred.getStackHook&&(l.stackTrace=xe.Deferred.getStackHook()),n.setTimeout(l))}}var o=0;return xe.Deferred(function(n){t[0][3].add(i(0,n,Te(a)?a:h,n.notifyWith)),t[1][3].add(i(0,n,Te(e)?e:h)),t[2][3].add(i(0,n,Te(r)?r:p))}).promise()},promise:function(e){return null!=e?xe.extend(e,a):a}},i={};return xe.each(t,function(e,n){var o=n[2],c=n[5];a[n[1]]=o.add,c&&o.add(function(){r=c},t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),o.add(n[3].fire),i[n[0]]=function(){return i[n[0]+"With"](this===i?void 0:this,arguments),this},i[n[0]+"With"]=o.fireWith}),a.promise(i),e&&e.call(i,i),i},when:function(e){var t=arguments.length,n=t,r=Array(n),a=he.call(arguments),i=xe.Deferred(),o=function(e){return function(n){r[e]=this,a[e]=arguments.length>1?he.call(arguments):n,--t||i.resolveWith(r,a)}};if(t<=1&&(b(e,i.done(o(n)).resolve,i.reject,!t),"pending"===i.state()||Te(a[n]&&a[n].then)))return i.then();for(;n--;)b(a[n],o(n),i.reject);return i.promise()}});var Be=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;xe.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&Be.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},xe.readyException=function(e){n.setTimeout(function(){throw e})};var ze=xe.Deferred();xe.fn.ready=function(e){return ze.then(e).catch(function(e){xe.readyException(e)}),this},xe.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--xe.readyWait:xe.isReady)||(xe.isReady=!0,!0!==e&&--xe.readyWait>0||ze.resolveWith(Se,[xe]))}}),xe.ready.then=ze.then,"complete"===Se.readyState||"loading"!==Se.readyState&&!Se.documentElement.doScroll?n.setTimeout(xe.ready):(Se.addEventListener("DOMContentLoaded",m),n.addEventListener("load",m));var Ye=function(e,t,n,r,a,i,o){var s=0,u=e.length,l=null==n;if("object"===c(n)){a=!0;for(s in n)Ye(e,t,s,n[s],!0,i,o)}else if(void 0!==r&&(a=!0,Te(r)||(o=!0),l&&(o?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(xe(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){qe.remove(this,e)})}}),xe.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=We.get(e,t),n&&(!r||Array.isArray(n)?r=We.access(e,t,xe.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=xe.queue(e,t),r=n.length,a=n.shift(),i=xe._queueHooks(e,t),o=function(){xe.dequeue(e,t)};"inprogress"===a&&(a=n.shift(),r--),a&&("fx"===t&&n.unshift("inprogress"),delete i.stop,a.call(e,o,i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return We.get(e,n)||We.access(e,n,{empty:xe.Callbacks("once memory").add(function(){We.remove(e,[t+"queue",n])})})}}),xe.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,at=/^$|^module$|\/(?:java|ecma)script/i;!function(){var e=Se.createDocumentFragment(),t=e.appendChild(Se.createElement("div")),n=Se.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),Ee.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="",Ee.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue,t.innerHTML="",Ee.option=!!t.lastChild}();var it={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};it.tbody=it.tfoot=it.colgroup=it.caption=it.thead,it.th=it.td,Ee.option||(it.optgroup=it.option=[1,""]);var ot=/<|&#?\w+;/,ct=/^([^.]*)(?:\.(.+)|)/;xe.event={global:{},add:function(e,t,n,r,a){var i,o,c,s,u,l,d,f,h,p,b,m=We.get(e);if(Ue(e))for(n.handler&&(i=n,n=i.handler,a=i.selector),a&&xe.find.matchesSelector($e,a),n.guid||(n.guid=xe.guid++),(s=m.events)||(s=m.events=Object.create(null)),(o=m.handle)||(o=m.handle=function(t){return void 0!==xe&&xe.event.triggered!==t.type?xe.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(Ne)||[""],u=t.length;u--;)c=ct.exec(t[u])||[],h=b=c[1],p=(c[2]||"").split(".").sort(),h&&(d=xe.event.special[h]||{},h=(a?d.delegateType:d.bindType)||h,d=xe.event.special[h]||{},l=xe.extend({type:h,origType:b,data:r,handler:n,guid:n.guid,selector:a,needsContext:a&&xe.expr.match.needsContext.test(a),namespace:p.join(".")},i),(f=s[h])||(f=s[h]=[],f.delegateCount=0,d.setup&&!1!==d.setup.call(e,r,p,o)||e.addEventListener&&e.addEventListener(h,o)),d.add&&(d.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),a?f.splice(f.delegateCount++,0,l):f.push(l),xe.event.global[h]=!0)},remove:function(e,t,n,r,a){var i,o,c,s,u,l,d,f,h,p,b,m=We.hasData(e)&&We.get(e);if(m&&(s=m.events)){for(t=(t||"").match(Ne)||[""],u=t.length;u--;)if(c=ct.exec(t[u])||[],h=b=c[1],p=(c[2]||"").split(".").sort(),h){for(d=xe.event.special[h]||{},h=(r?d.delegateType:d.bindType)||h,f=s[h]||[],c=c[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=i=f.length;i--;)l=f[i],!a&&b!==l.origType||n&&n.guid!==l.guid||c&&!c.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(f.splice(i,1),l.selector&&f.delegateCount--,d.remove&&d.remove.call(e,l));o&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,p,m.handle)||xe.removeEvent(e,h,m.handle),delete s[h])}else for(h in s)xe.event.remove(e,h+t[u],n,r,!0);xe.isEmptyObject(s)&&We.remove(e,"handle events")}},dispatch:function(e){var t,n,r,a,i,o,c=new Array(arguments.length),s=xe.event.fix(e),u=(We.get(this,"events")||Object.create(null))[s.type]||[],l=xe.event.special[s.type]||{};for(c[0]=s,t=1;t=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(i=[],o={},n=0;n-1:xe.find(a,this,null,[u]).length),o[a]&&i.push(r);i.length&&c.push({elem:u,handlers:i})}return u=this,s\s*$/g;xe.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,a,i,o,c=e.cloneNode(!0),s=Qe(e);if(!(Ee.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||xe.isXMLDoc(e)))for(o=S(c),i=S(e),r=0,a=i.length;r0&&O(o,!s&&S(e,"script")),c},cleanData:function(e){for(var t,n,r,a=xe.event.special,i=0;void 0!==(n=e[i]);i++)if(Ue(n)){if(t=n[We.expando]){if(t.events)for(r in t.events)a[r]?xe.event.remove(n,r):xe.removeEvent(n,r,t.handle);n[We.expando]=void 0}n[qe.expando]&&(n[qe.expando]=void 0)}}}),xe.fn.extend({detach:function(e){return Y(this,e,!0)},remove:function(e){return Y(this,e)},text:function(e){return Ye(this,function(e){return void 0===e?xe.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return z(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){P(this,e).appendChild(e)}})},prepend:function(){return z(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=P(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return z(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return z(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(xe.cleanData(S(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return xe.clone(this,e,t)})},html:function(e){return Ye(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!st.test(e)&&!it[(rt.exec(e)||["",""])[1].toLowerCase()]){e=xe.htmlPrefilter(e);try{for(;n1)}}),xe.Tween=K,K.prototype={constructor:K,init:function(e,t,n,r,a,i){this.elem=e,this.prop=n,this.easing=a||xe.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(xe.cssNumber[n]?"":"px")},cur:function(){var e=K.propHooks[this.prop];return e&&e.get?e.get(this):K.propHooks._default.get(this)},run:function(e){var t,n=K.propHooks[this.prop];return this.options.duration?this.pos=t=xe.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):K.propHooks._default.set(this),this}},K.prototype.init.prototype=K.prototype,K.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=xe.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){xe.fx.step[e.prop]?xe.fx.step[e.prop](e):1!==e.elem.nodeType||!xe.cssHooks[e.prop]&&null==e.elem.style[W(e.prop)]?e.elem[e.prop]=e.now:xe.style(e.elem,e.prop,e.now+e.unit)}}},K.propHooks.scrollTop=K.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},xe.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},xe.fx=K.prototype.init,xe.fx.step={};var Et,Tt,kt=/^(?:toggle|show|hide)$/,St=/queueHooks$/;xe.Animation=xe.extend(te,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return E(n.elem,e,Je.exec(t),n),n}]},tweener:function(e,t){Te(e)?(t=e,e=["*"]):e=e.match(Ne);for(var n,r=0,a=e.length;r1)},removeAttr:function(e){return this.each(function(){xe.removeAttr(this,e)})}}),xe.extend({attr:function(e,t,n){var r,a,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?xe.prop(e,t,n):(1===i&&xe.isXMLDoc(e)||(a=xe.attrHooks[t.toLowerCase()]||(xe.expr.match.bool.test(t)?Ot:void 0)),void 0!==n?null===n?void xe.removeAttr(e,t):a&&"set"in a&&void 0!==(r=a.set(e,n,t))?r:(e.setAttribute(t,n+""),n):a&&"get"in a&&null!==(r=a.get(e,t))?r:(r=xe.find.attr(e,t),null==r?void 0:r))},attrHooks:{type:{set:function(e,t){if(!Ee.radioValue&&"radio"===t&&u(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,a=t&&t.match(Ne);if(a&&1===e.nodeType)for(;n=a[r++];)e.removeAttribute(n)}}),Ot={set:function(e,t,n){return!1===t?xe.removeAttr(e,n):e.setAttribute(n,n),n}},xe.each(xe.expr.match.bool.source.match(/\w+/g),function(e,t){var n=xt[t]||xe.find.attr;xt[t]=function(e,t,r){var a,i,o=t.toLowerCase();return r||(i=xt[o],xt[o]=a,a=null!=n(e,t,r)?o:null,xt[o]=i),a}});var Ct=/^(?:input|select|textarea|button)$/i,Mt=/^(?:a|area)$/i;xe.fn.extend({prop:function(e,t){return Ye(this,xe.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[xe.propFix[e]||e]})}}),xe.extend({prop:function(e,t,n){var r,a,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&xe.isXMLDoc(e)||(t=xe.propFix[t]||t,a=xe.propHooks[t]),void 0!==n?a&&"set"in a&&void 0!==(r=a.set(e,n,t))?r:e[t]=n:a&&"get"in a&&null!==(r=a.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=xe.find.attr(e,"tabindex");return t?parseInt(t,10):Ct.test(e.nodeName)||Mt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),Ee.optSelected||(xe.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),xe.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){xe.propFix[this.toLowerCase()]=this}),xe.fn.extend({addClass:function(e){var t,n,r,a,i,o,c,s=0;if(Te(e))return this.each(function(t){xe(this).addClass(e.call(this,t,re(this)))});if(t=ae(e),t.length)for(;n=this[s++];)if(a=re(n),r=1===n.nodeType&&" "+ne(a)+" "){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");c=ne(r),a!==c&&n.setAttribute("class",c)}return this},removeClass:function(e){var t,n,r,a,i,o,c,s=0;if(Te(e))return this.each(function(t){xe(this).removeClass(e.call(this,t,re(this)))});if(!arguments.length)return this.attr("class","");if(t=ae(e),t.length)for(;n=this[s++];)if(a=re(n),r=1===n.nodeType&&" "+ne(a)+" "){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");c=ne(r),a!==c&&n.setAttribute("class",c)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):Te(e)?this.each(function(n){xe(this).toggleClass(e.call(this,n,re(this),t),t)}):this.each(function(){var t,a,i,o;if(r)for(a=0,i=xe(this),o=ae(e);t=o[a++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||(t=re(this),t&&We.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":We.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+ne(re(n))+" ").indexOf(t)>-1)return!0;return!1}});var Dt=/\r/g;xe.fn.extend({val:function(e){var t,n,r,a=this[0];{if(arguments.length)return r=Te(e),this.each(function(n){var a;1===this.nodeType&&(a=r?e.call(this,n,xe(this).val()):e,null==a?a="":"number"==typeof a?a+="":Array.isArray(a)&&(a=xe.map(a,function(e){return null==e?"":e+""})),(t=xe.valHooks[this.type]||xe.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,a,"value")||(this.value=a))});if(a)return(t=xe.valHooks[a.type]||xe.valHooks[a.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(a,"value"))?n:(n=a.value,"string"==typeof n?n.replace(Dt,""):null==n?"":n)}}}),xe.extend({valHooks:{option:{get:function(e){var t=xe.find.attr(e,"value");return null!=t?t:ne(xe.text(e))}},select:{get:function(e){var t,n,r,a=e.options,i=e.selectedIndex,o="select-one"===e.type,c=o?null:[],s=o?i+1:a.length;for(r=i<0?s:o?i:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),xe.each(["radio","checkbox"],function(){xe.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=xe.inArray(xe(e).val(),t)>-1}},Ee.checkOn||(xe.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),Ee.focusin="onfocusin"in n;var Lt=/^(?:focusinfocus|focusoutblur)$/,At=function(e){e.stopPropagation()};xe.extend(xe.event,{trigger:function(e,t,r,a){var i,o,c,s,u,l,d,f,h=[r||Se],p=ve.call(e,"type")?e.type:e,b=ve.call(e,"namespace")?e.namespace.split("."):[];if(o=f=c=r=r||Se,3!==r.nodeType&&8!==r.nodeType&&!Lt.test(p+xe.event.triggered)&&(p.indexOf(".")>-1&&(b=p.split("."),p=b.shift(),b.sort()),u=p.indexOf(":")<0&&"on"+p,e=e[xe.expando]?e:new xe.Event(p,"object"==typeof e&&e),e.isTrigger=a?2:3,e.namespace=b.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:xe.makeArray(t,[e]),d=xe.event.special[p]||{},a||!d.trigger||!1!==d.trigger.apply(r,t))){if(!a&&!d.noBubble&&!ke(r)){for(s=d.delegateType||p,Lt.test(s+p)||(o=o.parentNode);o;o=o.parentNode)h.push(o),c=o;c===(r.ownerDocument||Se)&&h.push(c.defaultView||c.parentWindow||n)}for(i=0;(o=h[i++])&&!e.isPropagationStopped();)f=o,e.type=i>1?s:d.bindType||p,l=(We.get(o,"events")||Object.create(null))[e.type]&&We.get(o,"handle"),l&&l.apply(o,t),(l=u&&o[u])&&l.apply&&Ue(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=p,a||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),t)||!Ue(r)||u&&Te(r[p])&&!ke(r)&&(c=r[u],c&&(r[u]=null),xe.event.triggered=p,e.isPropagationStopped()&&f.addEventListener(p,At),r[p](),e.isPropagationStopped()&&f.removeEventListener(p,At),xe.event.triggered=void 0,c&&(r[u]=c)),e.result}},simulate:function(e,t,n){var r=xe.extend(new xe.Event,n,{type:e,isSimulated:!0});xe.event.trigger(r,null,t)}}),xe.fn.extend({trigger:function(e,t){return this.each(function(){xe.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return xe.event.trigger(e,t,n,!0)}}),Ee.focusin||xe.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){xe.event.simulate(t,e.target,xe.event.fix(e))};xe.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,a=We.access(r,t);a||r.addEventListener(e,n,!0),We.access(r,t,(a||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,a=We.access(r,t)-1;a?We.access(r,t,a):(r.removeEventListener(e,n,!0),We.remove(r,t))}}});var jt=n.location,Pt={guid:Date.now()},It=/\?/;xe.parseXML=function(e){var t,r;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){}return r=t&&t.getElementsByTagName("parsererror")[0],t&&!r||xe.error("Invalid XML: "+(r?xe.map(r.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Rt=/\[\]$/,Nt=/\r?\n/g,Bt=/^(?:submit|button|image|reset|file)$/i,zt=/^(?:input|select|textarea|keygen)/i;xe.param=function(e,t){var n,r=[],a=function(e,t){var n=Te(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!xe.isPlainObject(e))xe.each(e,function(){a(this.name,this.value)});else for(n in e)ie(n,e[n],t,a);return r.join("&")},xe.fn.extend({serialize:function(){return xe.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=xe.prop(this,"elements");return e?xe.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!xe(this).is(":disabled")&&zt.test(this.nodeName)&&!Bt.test(e)&&(this.checked||!nt.test(e))}).map(function(e,t){var n=xe(this).val();return null==n?null:Array.isArray(n)?xe.map(n,function(e){return{name:t.name,value:e.replace(Nt,"\r\n")}}):{name:t.name,value:n.replace(Nt,"\r\n")}}).get()}});var Yt=/%20/g,Ht=/#.*$/,Ft=/([?&])_=[^&]*/,Ut=/^(.*?):[ \t]*([^\r\n]*)$/gm,Wt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,qt=/^(?:GET|HEAD)$/,Gt=/^\/\//,Vt={},Kt={},Jt="*/".concat("*"),Xt=Se.createElement("a");Xt.href=jt.href,xe.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:jt.href,type:"GET",isLocal:Wt.test(jt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":xe.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?se(se(e,xe.ajaxSettings),t):se(xe.ajaxSettings,e)},ajaxPrefilter:oe(Vt),ajaxTransport:oe(Kt),ajax:function(e,t){function r(e,t,r,c){var u,f,h,_,w,E=t;l||(l=!0,s&&n.clearTimeout(s),a=void 0,o=c||"",T.readyState=e>0?4:0,u=e>=200&&e<300||304===e,r&&(_=ue(p,T,r)),!u&&xe.inArray("script",p.dataTypes)>-1&&xe.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),_=le(p,_,T,u),u?(p.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(xe.lastModified[i]=w),(w=T.getResponseHeader("etag"))&&(xe.etag[i]=w)),204===e||"HEAD"===p.type?E="nocontent":304===e?E="notmodified":(E=_.state,f=_.data,h=_.error,u=!h)):(h=E,!e&&E||(E="error",e<0&&(e=0))),T.status=e,T.statusText=(t||E)+"",u?g.resolveWith(b,[f,E,T]):g.rejectWith(b,[T,E,h]),T.statusCode(v),v=void 0,d&&m.trigger(u?"ajaxSuccess":"ajaxError",[T,p,u?f:h]),y.fireWith(b,[T,E]),d&&(m.trigger("ajaxComplete",[T,p]),--xe.active||xe.event.trigger("ajaxStop")))}"object"==typeof e&&(t=e,e=void 0),t=t||{};var a,i,o,c,s,u,l,d,f,h,p=xe.ajaxSetup({},t),b=p.context||p,m=p.context&&(b.nodeType||b.jquery)?xe(b):xe.event,g=xe.Deferred(),y=xe.Callbacks("once memory"),v=p.statusCode||{},_={},w={},E="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(l){if(!c)for(c={};t=Ut.exec(o);)c[t[1].toLowerCase()+" "]=(c[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=c[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,_[e]=t),this},overrideMimeType:function(e){return null==l&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)T.always(e[T.status]);else for(t in e)v[t]=[v[t],e[t]];return this},abort:function(e){var t=e||E;return a&&a.abort(t),r(0,t),this}};if(g.promise(T),p.url=((e||p.url||jt.href)+"").replace(Gt,jt.protocol+"//"),p.type=t.method||t.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(Ne)||[""],null==p.crossDomain){u=Se.createElement("a");try{u.href=p.url,u.href=u.href,p.crossDomain=Xt.protocol+"//"+Xt.host!=u.protocol+"//"+u.host}catch(e){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=xe.param(p.data,p.traditional)),ce(Vt,p,t,T),l)return T;d=xe.event&&p.global,d&&0==xe.active++&&xe.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!qt.test(p.type),i=p.url.replace(Ht,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Yt,"+")):(h=p.url.slice(i.length),p.data&&(p.processData||"string"==typeof p.data)&&(i+=(It.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(Ft,"$1"),h=(It.test(i)?"&":"?")+"_="+Pt.guid+++h),p.url=i+h),p.ifModified&&(xe.lastModified[i]&&T.setRequestHeader("If-Modified-Since",xe.lastModified[i]),xe.etag[i]&&T.setRequestHeader("If-None-Match",xe.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||t.contentType)&&T.setRequestHeader("Content-Type",p.contentType),T.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Jt+"; q=0.01":""):p.accepts["*"]);for(f in p.headers)T.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(b,T,p)||l))return T.abort();if(E="abort",y.add(p.complete),T.done(p.success),T.fail(p.error),a=ce(Kt,p,t,T)){if(T.readyState=1,d&&m.trigger("ajaxSend",[T,p]),l)return T;p.async&&p.timeout>0&&(s=n.setTimeout(function(){T.abort("timeout")},p.timeout));try{l=!1,a.send(_,r)}catch(e){if(l)throw e;r(-1,e)}}else r(-1,"No Transport");return T},getJSON:function(e,t,n){return xe.get(e,t,n,"json")},getScript:function(e,t){return xe.get(e,void 0,t,"script")}}),xe.each(["get","post"],function(e,t){xe[t]=function(e,n,r,a){return Te(n)&&(a=a||r,r=n,n=void 0),xe.ajax(xe.extend({url:e,type:t,dataType:a,data:n,success:r},xe.isPlainObject(e)&&e))}}),xe.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),xe._evalUrl=function(e,t,n){return xe.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){xe.globalEval(e,t,n)}})},xe.fn.extend({wrapAll:function(e){var t;return this[0]&&(Te(e)&&(e=e.call(this[0])),t=xe(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return Te(e)?this.each(function(t){xe(this).wrapInner(e.call(this,t))}):this.each(function(){var t=xe(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=Te(e);return this.each(function(n){xe(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){xe(this).replaceWith(this.childNodes)}),this}}),xe.expr.pseudos.hidden=function(e){return!xe.expr.pseudos.visible(e)},xe.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},xe.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var $t={0:200,1223:204},Qt=xe.ajaxSettings.xhr();Ee.cors=!!Qt&&"withCredentials"in Qt,Ee.ajax=Qt=!!Qt,xe.ajaxTransport(function(e){var t,r;if(Ee.cors||Qt&&!e.crossDomain)return{send:function(a,i){var o,c=e.xhr();if(c.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(o in e.xhrFields)c[o]=e.xhrFields[o];e.mimeType&&c.overrideMimeType&&c.overrideMimeType(e.mimeType),e.crossDomain||a["X-Requested-With"]||(a["X-Requested-With"]="XMLHttpRequest");for(o in a)c.setRequestHeader(o,a[o]);t=function(e){return function(){t&&(t=r=c.onload=c.onerror=c.onabort=c.ontimeout=c.onreadystatechange=null,"abort"===e?c.abort():"error"===e?"number"!=typeof c.status?i(0,"error"):i(c.status,c.statusText):i($t[c.status]||c.status,c.statusText,"text"!==(c.responseType||"text")||"string"!=typeof c.responseText?{binary:c.response}:{text:c.responseText},c.getAllResponseHeaders()))}},c.onload=t(),r=c.onerror=c.ontimeout=t("error"),void 0!==c.onabort?c.onabort=r:c.onreadystatechange=function(){4===c.readyState&&n.setTimeout(function(){t&&r()})},t=t("abort");try{c.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}}),xe.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),xe.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return xe.globalEval(e),e}}}),xe.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),xe.ajaxTransport("script",function(e){if(e.crossDomain||e.scriptAttrs){var t,n;return{send:function(r,a){t=xe(" + + + + + + + + + + + + + + + + + + + + Welcome to the Binary Bot + + + + + + + + +
+ + diff --git a/src/root_files/_common/binary-to-deriv/sound/announcement.mp3 b/src/root_files/_common/binary-to-deriv/sound/announcement.mp3 new file mode 100644 index 0000000000000..e85b1698d70af Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/announcement.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/announcement.ogg b/src/root_files/_common/binary-to-deriv/sound/announcement.ogg new file mode 100644 index 0000000000000..30801d445f22f Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/announcement.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/click.mp3 b/src/root_files/_common/binary-to-deriv/sound/click.mp3 new file mode 100644 index 0000000000000..4534b0ddca742 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/click.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/click.ogg b/src/root_files/_common/binary-to-deriv/sound/click.ogg new file mode 100644 index 0000000000000..e8ae42a6106da Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/click.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/click.wav b/src/root_files/_common/binary-to-deriv/sound/click.wav new file mode 100644 index 0000000000000..41a50cd76f53e Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/click.wav differ diff --git a/src/root_files/_common/binary-to-deriv/sound/coins.mp3 b/src/root_files/_common/binary-to-deriv/sound/coins.mp3 new file mode 100644 index 0000000000000..fdfd6ed89ee51 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/coins.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/coins.ogg b/src/root_files/_common/binary-to-deriv/sound/coins.ogg new file mode 100644 index 0000000000000..c18bdfff56618 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/coins.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/delete.mp3 b/src/root_files/_common/binary-to-deriv/sound/delete.mp3 new file mode 100644 index 0000000000000..442bd9c1f4c9c Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/delete.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/delete.ogg b/src/root_files/_common/binary-to-deriv/sound/delete.ogg new file mode 100644 index 0000000000000..67f84ac19a050 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/delete.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/delete.wav b/src/root_files/_common/binary-to-deriv/sound/delete.wav new file mode 100644 index 0000000000000..18debcf96d6f7 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/delete.wav differ diff --git a/src/root_files/_common/binary-to-deriv/sound/disconnect.mp3 b/src/root_files/_common/binary-to-deriv/sound/disconnect.mp3 new file mode 100644 index 0000000000000..8cfaff6c06253 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/disconnect.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/disconnect.ogg b/src/root_files/_common/binary-to-deriv/sound/disconnect.ogg new file mode 100644 index 0000000000000..467b527b4d051 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/disconnect.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/disconnect.wav b/src/root_files/_common/binary-to-deriv/sound/disconnect.wav new file mode 100644 index 0000000000000..af5c25447cad1 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/disconnect.wav differ diff --git a/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.mp3 b/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.mp3 new file mode 100644 index 0000000000000..689a961d6308c Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.ogg b/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.ogg new file mode 100644 index 0000000000000..bd1722bc76b06 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/i-am-being-serious.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/job-done.mp3 b/src/root_files/_common/binary-to-deriv/sound/job-done.mp3 new file mode 100644 index 0000000000000..2c4562d800423 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/job-done.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/job-done.ogg b/src/root_files/_common/binary-to-deriv/sound/job-done.ogg new file mode 100644 index 0000000000000..c6a23b9098d99 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/job-done.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.mp3 b/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.mp3 new file mode 100644 index 0000000000000..96b32ca6991aa Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.mp3 differ diff --git a/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.ogg b/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.ogg new file mode 100644 index 0000000000000..b0513f4bff5c6 Binary files /dev/null and b/src/root_files/_common/binary-to-deriv/sound/out-of-bounds.ogg differ diff --git a/src/root_files/_common/binary-to-deriv/translations/en.js b/src/root_files/_common/binary-to-deriv/translations/en.js new file mode 100644 index 0000000000000..f6a0304ab4b11 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/en.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Add Comment"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Can't delete the variable '%1' because it's part of the definition of the function '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Change value:"; +Blockly.Msg["CLEAN_UP"] = "Clean up Blocks"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Collapsed blocks contain warnings."; +Blockly.Msg["COLLAPSE_ALL"] = "Collapse Blocks"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Collapse Block"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "colour 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "colour 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; +Blockly.Msg["COLOUR_BLEND_RATIO"] = "ratio"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "blend"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Blends two colours together with a given ratio (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://en.wikipedia.org/wiki/Color"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Choose a colour from the palette."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "random colour"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Choose a colour at random."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "blue"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "green"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; +Blockly.Msg["COLOUR_RGB_RED"] = "red"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "colour with"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Create a colour with the specified amount of red, green, and blue. All values must be between 0 and 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "break out of loop"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "continue with next iteration of loop"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Break out of the containing loop."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Skip the rest of this loop, and continue with the next iteration."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Warning: This block may only be used within a loop."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "for each item %1 in list %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "For each item in a list, set the variable '%1' to the item, and then do some statements."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; +Blockly.Msg["CONTROLS_FOR_TITLE"] = "count with %1 from %2 to %3 by %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Have the variable '%1' take on the values from the start number to the end number, counting by the specified interval, and do the specified blocks."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Add a condition to the if block."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Add a final, catch-all condition to the if block."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Add, remove, or reorder sections to reconfigure this if block."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "else"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "else if"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "if"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "If a value is true, then do some statements."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "If a value is true, then do the first block of statements. Otherwise, do the second block of statements."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements. If none of the values are true, do the last block of statements."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://en.wikipedia.org/wiki/For_loop"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "do"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "repeat %1 times"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Do some statements several times."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "repeat until"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "repeat while"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "While a value is false, then do some statements."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "While a value is true, then do some statements."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Delete all %1 blocks?"; +Blockly.Msg["DELETE_BLOCK"] = "Delete Block"; +Blockly.Msg["DELETE_VARIABLE"] = "Delete the '%1' variable"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Delete %1 uses of the '%2' variable?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Delete %1 Blocks"; +Blockly.Msg["DIALOG_CANCEL"] = "Cancel"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Disable Block"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicate"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicate Comment"; +Blockly.Msg["ENABLE_BLOCK"] = "Enable Block"; +Blockly.Msg["EXPAND_ALL"] = "Expand Blocks"; +Blockly.Msg["EXPAND_BLOCK"] = "Expand Block"; +Blockly.Msg["EXTERNAL_INPUTS"] = "External Inputs"; +Blockly.Msg["HELP"] = "Help"; +Blockly.Msg["INLINE_INPUTS"] = "Inline Inputs"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "create empty list"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Returns a list, of length 0, containing no data records"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "list"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Add, remove, or reorder sections to reconfigure this list block."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "create list with"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Add an item to the list."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Create a list with any number of items."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "first"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# from end"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "get"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "get and remove"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "last"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "random"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "remove"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Returns the first item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Returns the item at the specified position in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Returns the last item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Returns a random item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Removes and returns the first item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Removes and returns the item at the specified position in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Removes and returns the last item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Removes and returns a random item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Removes the first item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Removes the item at the specified position in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Removes the last item in a list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Removes a random item in a list."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "to # from end"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "to #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "to last"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "get sub-list from first"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "get sub-list from # from end"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "get sub-list from #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Creates a copy of the specified portion of a list."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 is the last item."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 is the first item."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "find first occurrence of item"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "find last occurrence of item"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Returns the index of the first/last occurrence of the item in the list. Returns %1 if item is not found."; +Blockly.Msg["LISTS_INLIST"] = "in list"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 is empty"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Returns true if the list is empty."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; +Blockly.Msg["LISTS_LENGTH_TITLE"] = "length of %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Returns the length of a list."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; +Blockly.Msg["LISTS_REPEAT_TITLE"] = "create list with item %1 repeated %2 times"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Creates a list consisting of the given value repeated the specified number of times."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "reverse %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Reverse a copy of a list."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "as"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "insert at"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "set"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Inserts the item at the start of a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Inserts the item at the specified position in a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Append the item to the end of a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Inserts the item randomly in a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Sets the first item in a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Sets the item at the specified position in a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Sets the last item in a list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Sets a random item in a list."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "ascending"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "descending"; +Blockly.Msg["LISTS_SORT_TITLE"] = "sort %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Sort a copy of a list."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alphabetic, ignore case"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numeric"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alphabetic"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "make list from text"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "make text from list"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Join a list of texts into one text, separated by a delimiter."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Split text into a list of texts, breaking at each delimiter."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "with delimiter"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "false"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Returns either true or false."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "true"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://en.wikipedia.org/wiki/Inequality_(mathematics)"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Return true if both inputs equal each other."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Return true if the first input is greater than the second input."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Return true if the first input is greater than or equal to the second input."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Return true if the first input is smaller than the second input."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Return true if the first input is smaller than or equal to the second input."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Return true if both inputs are not equal to each other."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "not %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Returns true if the input is false. Returns false if the input is true."; +Blockly.Msg["LOGIC_NULL"] = "null"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Returns null."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "and"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; +Blockly.Msg["LOGIC_OPERATION_OR"] = "or"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Return true if both inputs are true."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Return true if at least one of the inputs is true."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "if false"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "if true"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Check the condition in 'test'. If the condition is true, returns the 'if true' value; otherwise returns the 'if false' value."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://en.wikipedia.org/wiki/Arithmetic"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Return the sum of the two numbers."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Return the quotient of the two numbers."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Return the difference of the two numbers."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Return the product of the two numbers."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Return the first number raised to the power of the second number."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 of X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Return the arctangent of point (X, Y) in degrees from -180 to 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "change %1 by %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Add a number to variable '%1'."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://en.wikipedia.org/wiki/Mathematical_constant"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Return one of the common constants: π (3.141…), e (2.718…), φ (1.618…), sqrt(2) (1.414…), sqrt(½) (0.707…), or ∞ (infinity)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "constrain %1 low %2 high %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Constrain a number to be between the specified limits (inclusive)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "is divisible by"; +Blockly.Msg["MATH_IS_EVEN"] = "is even"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "is negative"; +Blockly.Msg["MATH_IS_ODD"] = "is odd"; +Blockly.Msg["MATH_IS_POSITIVE"] = "is positive"; +Blockly.Msg["MATH_IS_PRIME"] = "is prime"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Check if a number is an even, odd, prime, whole, positive, negative, or if it is divisible by certain number. Returns true or false."; +Blockly.Msg["MATH_IS_WHOLE"] = "is whole"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://en.wikipedia.org/wiki/Modulo_operation"; +Blockly.Msg["MATH_MODULO_TITLE"] = "remainder of %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Return the remainder from dividing the two numbers."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://en.wikipedia.org/wiki/Number"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "A number."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "average of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "max of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "median of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "min of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "modes of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "random item of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "standard deviation of list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "sum of list"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Return the average (arithmetic mean) of the numeric values in the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Return the largest number in the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Return the median number in the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Return the smallest number in the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Return a list of the most common item(s) in the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Return a random element from the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Return the standard deviation of the list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Return the sum of all the numbers in the list."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "random fraction"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Return a random fraction between 0.0 (inclusive) and 1.0 (exclusive)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "random integer from %1 to %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Return a random integer between the two specified limits, inclusive."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://en.wikipedia.org/wiki/Rounding"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "round"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "round down"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "round up"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Round a number up or down."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://en.wikipedia.org/wiki/Square_root"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "absolute"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "square root"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Return the absolute value of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Return e to the power of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Return the natural logarithm of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Return the base 10 logarithm of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Return the negation of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Return 10 to the power of a number."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Return the square root of a number."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://en.wikipedia.org/wiki/Trigonometric_functions"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Return the arccosine of a number."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Return the arcsine of a number."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Return the arctangent of a number."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Return the cosine of a degree (not radian)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Return the sine of a degree (not radian)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Return the tangent of a degree (not radian)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Create colour variable..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Create number variable..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Create string variable..."; +Blockly.Msg["NEW_VARIABLE"] = "Create variable..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "New variable name:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "New variable type:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "allow statements"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "with:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Run the user-defined function '%1'."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Run the user-defined function '%1' and use its output."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "with:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Create '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Describe this function..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "do something"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "to"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Creates a function with no output."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "return"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Creates a function with an output."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Warning: This function has duplicate parameters."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Highlight function definition"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "If a value is true, then return a second value."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Warning: This block may be used only within a function definition."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "input name:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Add an input to the function."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "inputs"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Add, remove, or reorder inputs to this function."; +Blockly.Msg["REDO"] = "Redo"; +Blockly.Msg["REMOVE_COMMENT"] = "Remove Comment"; +Blockly.Msg["RENAME_VARIABLE"] = "Rename variable..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Rename all '%1' variables to:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; +Blockly.Msg["TEXT_APPEND_TITLE"] = "to %1 append text %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Append some text to variable '%1'."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "to lower case"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "to Title Case"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "to UPPER CASE"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Return a copy of the text in a different case."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "get first letter"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "get letter # from end"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "get letter #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; +Blockly.Msg["TEXT_CHARAT_LAST"] = "get last letter"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "get random letter"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; +Blockly.Msg["TEXT_CHARAT_TITLE"] = "in text %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Returns the letter at the specified position."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "count %1 in %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Count how many times some text occurs within some other text."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Add an item to the text."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "join"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Add, remove, or reorder sections to reconfigure this text block."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "to letter # from end"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "to letter #"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "to last letter"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "in text"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "get substring from first letter"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "get substring from letter # from end"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "get substring from letter #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Returns a specified portion of the text."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "find first occurrence of text"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "find last occurrence of text"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "in text %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Returns the index of the first/last occurrence of the first text in the second text. Returns %1 if text is not found."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 is empty"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Returns true if the provided text is empty."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "create text with"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Create a piece of text by joining together any number of items."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; +Blockly.Msg["TEXT_LENGTH_TITLE"] = "length of %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Returns the number of letters (including spaces) in the provided text."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; +Blockly.Msg["TEXT_PRINT_TITLE"] = "print %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Print the specified text, number or other value."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Prompt for user for a number."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Prompt for user for some text."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "prompt for number with message"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "prompt for text with message"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "replace %1 with %2 in %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Replace all occurances of some text within some other text."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "reverse %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Reverses the order of the characters in the text."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://en.wikipedia.org/wiki/String_(computer_science)"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "A letter, word, or line of text."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "trim spaces from both sides of"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "trim spaces from left side of"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "trim spaces from right side of"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Return a copy of the text with spaces removed from one or both ends."; +Blockly.Msg["TODAY"] = "Today"; +Blockly.Msg["UNDO"] = "Undo"; +Blockly.Msg["UNNAMED_KEY"] = "unnamed"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "item"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Create 'set %1'"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Returns the value of this variable."; +Blockly.Msg["VARIABLES_SET"] = "set %1 to %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Create 'get %1'"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Sets this variable to be equal to the input."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "A variable named '%1' already exists."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "A variable named '%1' already exists for another type: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/es.js b/src/root_files/_common/binary-to-deriv/translations/es.js new file mode 100644 index 0000000000000..dd4cb77ef076d --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/es.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Añadir comentario"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "No se puede eliminar la variable '%1' porque es parte de la definición de la función '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Cambiar el valor:"; +Blockly.Msg["CLEAN_UP"] = "Limpiar los bloques"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Bloques colapsados contienen advertencias."; +Blockly.Msg["COLLAPSE_ALL"] = "Contraer bloques"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Contraer bloque"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "color 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "color 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "proporción"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "combinar"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Combina dos colores con una proporción determinada (0,0 - 1,0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://es.wikipedia.org/wiki/Color"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Elige un color de la paleta."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "color aleatorio"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Elige un color al azar."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "azul"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "verde"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "rojo"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "colorear con"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Crea un color con cantidades específicas de rojo, verde y azul. Todos los valores deben encontrarse entre 0 y 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "romper el bucle"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "continuar con la siguiente iteración del bucle"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Romper el bucle que lo contiene."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Saltar el resto de este bucle, y continuar con la siguiente iteración."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Atención: este bloque puede usarse solamente dentro de un bucle."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://es.wikipedia.org/wiki/Foreach"; +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "para cada elemento %1 en la lista %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Para cada elemento en una lista, establecer la variable '%1' al elemento y luego hacer algunas declaraciones."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "contar con %1 desde %2 hasta %3 de a %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Hacer que la variable \"%1\" tome los valores desde el número de inicio hasta el número final, contando con el intervalo especificado, y hacer los bloques especificados."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Agregar una condición a este bloque."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Agregar una condición general final a este bloque."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Agregar, eliminar o reordenar las secciones para reconfigurar este bloque."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "sino"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "sino si"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "si"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Si un valor es verdadero, entonces hacer algunas declaraciones."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Si un valor es verdadero, entonces hacer el primer bloque de declaraciones. De lo contrario, hacer el segundo bloque de declaraciones."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Si el primer valor es verdadero, entonces hacer el primer bloque de declaraciones. De lo contrario, si el segundo valor es verdadero, hacer el segundo bloque de declaraciones."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Si el primer valor es verdadero, entonces hacer el primer bloque de declaraciones. De lo contrario, si el segundo valor es verdadero, hacer el segundo bloque de declaraciones. Si ninguno de los valores son verdaderos, hacer el último bloque de declaraciones."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://es.wikipedia.org/wiki/Bucle_for"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "hacer"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "repetir %1 veces"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Hacer algunas declaraciones varias veces."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "repetir hasta"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "repetir mientras"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Mientras un valor sea falso, entonces hacer algunas declaraciones."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Mientras un valor sea verdadero, entonces hacer algunas declaraciones."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "¿Eliminar todos los %1 bloques?"; +Blockly.Msg["DELETE_BLOCK"] = "Eliminar bloque"; +Blockly.Msg["DELETE_VARIABLE"] = "Borrar la variable '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "¿Borrar %1 usos de la variable '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Eliminar %1 bloques"; +Blockly.Msg["DIALOG_CANCEL"] = "Cancelar"; +Blockly.Msg["DIALOG_OK"] = "Aceptar"; +Blockly.Msg["DISABLE_BLOCK"] = "Desactivar bloque"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicar"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicar comentario"; +Blockly.Msg["ENABLE_BLOCK"] = "Activar bloque"; +Blockly.Msg["EXPAND_ALL"] = "Expandir bloques"; +Blockly.Msg["EXPAND_BLOCK"] = "Expandir bloque"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Entradas externas"; +Blockly.Msg["HELP"] = "Ayuda"; +Blockly.Msg["INLINE_INPUTS"] = "Entradas en línea"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "crear lista vacía"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Devuelve una lista, de longitud 0, sin ningún dato"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "lista"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Agregar, eliminar o reorganizar las secciones para reconfigurar este bloque de lista."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "crear lista con"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Agregar un elemento a la lista."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Crear una lista con cualquier número de elementos."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "primero"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# del final"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "obtener"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "obtener y eliminar"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "último"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "aleatorio"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "eliminar"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Devuelve el primer elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Devuelve el elemento en la posición especificada en una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Devuelve el último elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Devuelve un elemento aleatorio en una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Elimina y devuelve el primer elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Elimina y devuelve el elemento en la posición especificada en una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Elimina y devuelve el último elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Elimina y devuelve un elemento aleatorio en una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Elimina el primer elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Elimina el elemento en la posición especificada en una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Elimina el último elemento de una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Elimina un elemento aleatorio en una lista."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "hasta # del final"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "hasta #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "hasta el último"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "obtener sublista desde el primero"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "obtener sublista desde # del final"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "obtener sublista desde #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Crea una copia de la parte especificada de una lista."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 es el último elemento."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 es el primer elemento."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "encontrar la primera aparición del elemento"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "encontrar la última aparición del elemento"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Devuelve el índice de la primera/última aparición del elemento en la lista. Devuelve %1 si el elemento no se encuentra."; +Blockly.Msg["LISTS_INLIST"] = "en la lista"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 está vacía"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Devuelve verdadero si la lista está vacía."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "longitud de %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Devuelve la longitud de una lista."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "crear lista con el elemento %1 repetido %2 veces"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Crea una lista que consta de un valor dado repetido el número de veces especificado."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "invertir %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Invertir una copia de una lista."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "como"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "insertar en"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "establecer"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Inserta el elemento al inicio de una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Inserta el elemento en la posición especificada en una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Añade el elemento al final de una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Inserta el elemento aleatoriamente en una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Establece el primer elemento de una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Establece el elemento en la posición especificada en una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Establece el último elemento de una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Establece un elemento aleatorio en una lista."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "ascendente"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "descendente"; +Blockly.Msg["LISTS_SORT_TITLE"] = "orden %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Ordenar una copia de una lista."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alfabético, ignorar mayúscula/minúscula"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numérico"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alfabético"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "hacer lista a partir de texto"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "hacer texto a partir de lista"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Unir una lista de textos en un solo texto, separado por un delimitador."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Dividir el texto en una lista de textos, separando en cada delimitador."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "con delimitador"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "falso"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Devuelve verdadero o falso."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "verdadero"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://es.wikipedia.org/wiki/Desigualdad_matemática"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Devuelve verdadero si ambas entradas son iguales."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Devuelve verdadero si la primera entrada es mayor que la segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Devuelve verdadero si la primera entrada es mayor o igual a la segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Devuelve verdadero si la primera entrada es menor que la segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Devuelve verdadero si la primera entrada es menor que o igual a la segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Devuelve verdadero si ambas entradas son distintas."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "no %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Devuelve verdadero si la entrada es falsa. Devuelve falso si la entrada es verdadera."; +Blockly.Msg["LOGIC_NULL"] = "nulo"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Devuelve nulo."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "y"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "o"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Devuelve verdadero si ambas entradas son verdaderas."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Devuelve verdadero si al menos una de las entradas es verdadera."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "prueba"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; // untranslated +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "si es falso"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "si es verdadero"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Comprueba la condición en \"prueba\". Si la condición es verdadera, devuelve el valor \"si es verdadero\"; de lo contrario, devuelve el valor \"si es falso\"."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://es.wikipedia.org/wiki/Aritmética"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Devuelve la suma de ambos números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Devuelve el cociente de ambos números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Devuelve la diferencia de ambos números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Devuelve el producto de ambos números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Devuelve el primer número elevado a la potencia del segundo."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://es.wikipedia.org/wiki/Arcotangente_de_dos_par%C3%A1metros"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "Arcotangente de X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Regresar el arcotangente del punto (X,Y) en grados de -180 a 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter"; // untranslated +Blockly.Msg["MATH_CHANGE_TITLE"] = "añadir %2 a %1"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Añadir un número a la variable «%1»."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://es.wikipedia.org/wiki/Anexo:Constantes_matemáticas"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Devuelve una de las constantes comunes: π (3.141…), e (2.718…), φ (1.618…), sqrt(2) (1.414…), sqrt(½) (0.707…) o ∞ (infinito)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "limitar %1 entre %2 y %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Limitar un número entre los límites especificados (inclusive)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "es divisible por"; +Blockly.Msg["MATH_IS_EVEN"] = "es par"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "es negativo"; +Blockly.Msg["MATH_IS_ODD"] = "es impar"; +Blockly.Msg["MATH_IS_POSITIVE"] = "es positivo"; +Blockly.Msg["MATH_IS_PRIME"] = "es primo"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Comprueba si un número es par, impar, primo, entero, positivo, negativo, o si es divisible por un número determinado. Devuelve verdadero o falso."; +Blockly.Msg["MATH_IS_WHOLE"] = "es entero"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://en.wikipedia.org/wiki/Modulo_operation"; // untranslated +Blockly.Msg["MATH_MODULO_TITLE"] = "resto de %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Devuelve el resto al dividir los dos números."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://es.wikipedia.org/wiki/Número"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Un número."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "promedio de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "máximo de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "mediana de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "mínimo de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "modas de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "elemento aleatorio de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "desviación estándar de la lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "suma de la lista"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Devuelve el promedio (media aritmética) de los valores numéricos en la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Devuelve el número más grande en la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Devuelve la mediana en la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Devuelve el número más pequeño en la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Devuelve una lista de los elementos más comunes en la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Devuelve un elemento aleatorio de la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Devuelve la desviación estándar de la lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Devuelve la suma de todos los números en la lista."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://es.wikipedia.org/wiki/Generador_de_números_aleatorios"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "fracción aleatoria"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Devuelve una fracción aleatoria entre 0,0 (ambos inclusive) y 1.0 (exclusivo)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://es.wikipedia.org/wiki/Generador_de_números_aleatorios"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "entero aleatorio de %1 a %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Devuelve un entero aleatorio entre los dos límites especificados, inclusive."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://es.wikipedia.org/wiki/Redondeo"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "redondear"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "redondear a la baja"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "redondear al alza"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Redondear un número al alza o a la baja."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://es.wikipedia.org/wiki/Ra%C3%ADz_cuadrada"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "absoluto"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "raíz cuadrada"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Devuelve el valor absoluto de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Devuelve e a la potencia de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Devuelve el logaritmo natural de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Devuelve el logaritmo base 10 de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Devuelve la negación de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Devuelve 10 a la potencia de un número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Devuelve la raíz cuadrada de un número."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://es.wikipedia.org/wiki/Función_trigonométrica"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Devuelve el arcocoseno de un número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Devuelve el arcoseno de un número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Devuelve el arcotangente de un número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Devuelve el coseno de un grado (no radián)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Devuelve el seno de un grado (no radián)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Devuelve la tangente de un grado (no radián)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Crear una variable de color..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Crear una variable de número..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Crear una variable de cadena..."; +Blockly.Msg["NEW_VARIABLE"] = "Crear variable..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nombre de variable nueva:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Nuevo tipo de variable:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "permitir declaraciones"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "con:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://es.wikipedia.org/wiki/Subrutina"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Ejecuta la función definida por el usuario '%1'."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://es.wikipedia.org/wiki/Subrutina"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Ejecuta la función definida por el usuario '%1' y usa su salida."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "con:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Crear '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Describe esta función..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "hacer algo"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "para"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Crea una función sin salida."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "devuelve"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Crea una función con una salida."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Advertencia: Esta función tiene parámetros duplicados."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Destacar definición de la función"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Si un valor es verdadero, entonces devuelve un segundo valor."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Advertencia: Este bloque solo puede ser utilizado dentro de la definición de una función."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nombre de entrada:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Añadir una entrada a la función."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "entradas"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Añadir, eliminar o reordenar entradas para esta función."; +Blockly.Msg["REDO"] = "Rehacer"; +Blockly.Msg["REMOVE_COMMENT"] = "Eliminar comentario"; +Blockly.Msg["RENAME_VARIABLE"] = "Renombrar variable..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Renombrar todas las variables '%1' a:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "a %1 añade el texto %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Añadir texto a la variable '%1'."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "a minúsculas"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "a Mayúsculas Cada Palabra"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "a MAYÚSCULAS"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Devuelve una copia del texto en un tamaño diferente."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "obtener la primera letra"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "obtener la letra # del final"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "obtener la letra #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "obtener la última letra"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "obtener letra aleatoria"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "en el texto %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Devuelve la letra en la posición especificada."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "contar %1 en %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Cuantas veces aparece un texto dentro de otro texto."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Agregar un elemento al texto."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "unir"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Agregar, eliminar o reordenar las secciones para reconfigurar este bloque de texto."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "hasta la letra # del final"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "hasta la letra #"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "hasta la última letra"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "en el texto"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "obtener subcadena desde la primera letra"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "obtener subcadena desde la letra # del final"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "obtener subcadena desde la letra #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Devuelve una porción determinada del texto."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "encontrar la primera aparición del texto"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "encontrar la última aparición del texto"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "en el texto %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Devuelve el índice de la primera/última aparición del primer texto en el segundo texto. Devuelve %1 si el texto no se encuentra."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 está vacío"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Devuelve verdadero si el texto proporcionado está vacío."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "crear texto con"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Crear un fragmento de texto al unir cualquier número de elementos."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "longitud de %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Devuelve el número de letras (espacios incluidos) del texto proporcionado."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "imprimir %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Imprimir el texto, número u otro valor especificado."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Solicitar al usuario un número."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Solicitar al usuario un texto."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "solicitar número con el mensaje"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "solicitar texto con el mensaje"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "reemplazar %1 con %2 en %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Reemplazar todas las veces que un texto dentro de otro texto."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "invertir %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Invierte el orden de los caracteres en el texto."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://es.wikipedia.org/wiki/Cadena_de_caracteres"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Una letra, palabra o línea de texto."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "quitar espacios de ambos lados de"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "quitar espacios iniciales de"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "quitar espacios finales de"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Devuelve una copia del texto sin los espacios de uno o ambos extremos."; +Blockly.Msg["TODAY"] = "Hoy"; +Blockly.Msg["UNDO"] = "Deshacer"; +Blockly.Msg["UNNAMED_KEY"] = "sin nombre"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "elemento"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Crear 'establecer %1'"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Devuelve el valor de esta variable."; +Blockly.Msg["VARIABLES_SET"] = "establecer %1 a %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Crear 'obtener %1'"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Establece esta variable para que sea igual a la entrada."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Ya existe una variable nombrada '%1'."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Ya existe una variable nombrada '%1' para otra variable del tipo: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Espacio de trabajo de Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Di algo…"; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/fr.js b/src/root_files/_common/binary-to-deriv/translations/fr.js new file mode 100644 index 0000000000000..a5e9896483f21 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/fr.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Ajouter un commentaire"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Impossible de supprimer la variable « %1 » parce qu’elle fait partie de la définition de la fonction « %2 »"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Modifier la valeur :"; +Blockly.Msg["CLEAN_UP"] = "Nettoyer les blocs"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Les blocs repliés contiennent des avertissements."; +Blockly.Msg["COLLAPSE_ALL"] = "Réduire les blocs"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Réduire le bloc"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "couleur 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "couleur 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "taux"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "mélanger"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Mélange deux couleurs dans une proportion donnée (de 0.0 à 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://fr.wikipedia.org/wiki/Couleur"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Choisir une couleur dans la palette."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "couleur aléatoire"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Choisir une couleur au hasard."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "bleu"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "vert"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "rouge"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "colorier en"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Créer une couleur avec la quantité spécifiée de rouge, vert et bleu. Les valeurs doivent être comprises entre 0 et 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://fr.wikipedia.org/wiki/Structure_de_contrôle#Commandes_de_sortie_de_boucle"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "quitter la boucle"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "passer à l’itération de boucle suivante"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Sortir de la boucle englobante."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Sauter le reste de cette boucle, et poursuivre avec l’itération suivante."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Attention : ce bloc ne devrait être utilisé que dans une boucle."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://fr.wikipedia.org/wiki/Structure_de_contrôle#Itérateurs"; +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "pour chaque élément %1 dans la liste %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Pour chaque élément d’une liste, assigner la valeur de l’élément à la variable « %1 », puis exécuter des instructions."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://fr.wikipedia.org/wiki/Boucle_for"; +Blockly.Msg["CONTROLS_FOR_TITLE"] = "compter avec %1 de %2 à %3 par %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Faire prendre successivement à la variable « %1 » les valeurs entre deux nombres de début et de fin par incrément du pas spécifié et exécuter les instructions spécifiées."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Ajouter une condition au bloc conditionnel."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Ajouter une condition finale déclenchée dans tous les autres cas au bloc conditionnel."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://fr.wikipedia.org/wiki/Structure_de_contrôle#Alternatives"; +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Ajouter, supprimer ou réordonner les sections pour reconfigurer ce bloc conditionnel."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "sinon"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "sinon si"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "si"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Si une valeur est vraie, alors exécuter certaines instructions."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Si une valeur est vraie, alors exécuter le premier bloc d’instructions. Sinon, exécuter le second bloc d’instructions."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Si la première valeur est vraie, alors exécuter le premier bloc d’instructions. Sinon, si la seconde valeur est vraie, exécuter le second bloc d’instructions."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Si la première valeur est vraie, alors exécuter le premier bloc d’instructions. Sinon, si la seconde valeur est vraie, exécuter le second bloc d’instruction. Si aucune des valeurs n’est vraie, exécuter le dernier bloc d’instruction."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://fr.wikipedia.org/wiki/Boucle_for"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "faire"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "répéter %1 fois"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Exécuter des instructions plusieurs fois."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://fr.wikipedia.org/wiki/Boucle_while"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "répéter jusqu’à ce que"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "répéter tant que"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Tant qu’une valeur est fausse, alors exécuter des instructions."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Tant qu’une valeur est vraie, alors exécuter des instructions."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Supprimer ces %1 blocs ?"; +Blockly.Msg["DELETE_BLOCK"] = "Supprimer le bloc"; +Blockly.Msg["DELETE_VARIABLE"] = "Supprimer la variable « %1 »"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Supprimer %1 utilisations de la variable « %2 » ?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Supprimer %1 blocs"; +Blockly.Msg["DIALOG_CANCEL"] = "Annuler"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Désactiver le bloc"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Dupliquer"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Dupliquer le commentaire"; +Blockly.Msg["ENABLE_BLOCK"] = "Activer le bloc"; +Blockly.Msg["EXPAND_ALL"] = "Développer les blocs"; +Blockly.Msg["EXPAND_BLOCK"] = "Développer le bloc"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Entrées externes"; +Blockly.Msg["HELP"] = "Aide"; +Blockly.Msg["INLINE_INPUTS"] = "Entrées en ligne"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "créer une liste vide"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Renvoyer une liste, de longueur 0, ne contenant aucun enregistrement de données"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "liste"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Ajouter, supprimer, ou réordonner les sections pour reconfigurer ce bloc de liste."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "créer une liste avec"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Ajouter un élément à la liste."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Créer une liste avec un nombre quelconque d’éléments."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "premier"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "n° depuis la fin"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "nº"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "obtenir"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "obtenir et supprimer"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "dernier"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "au hasard"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "retirer"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Renvoie le premier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Renvoie l’élément à la position indiquée dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Renvoie le dernier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Renvoie un élément au hasard dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Supprime et renvoie le premier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Supprime et renvoie l’élément à la position indiquée dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Supprime et renvoie le dernier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Supprime et renvoie un élément au hasard dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Supprime le premier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Supprime l’élément à la position indiquée dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Supprime le dernier élément dans une liste."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Supprime un élément au hasard dans une liste."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "jusqu’au n° depuis la fin"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "jusqu’au n°"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "jusqu’à la fin"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "obtenir la sous-liste depuis le début"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "obtenir la sous-liste depuis le n° depuis la fin"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "obtenir la sous-liste depuis le n°"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Crée une copie de la partie spécifiée d’une liste."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 est le dernier élément."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 est le premier élément."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "trouver la première occurrence de l’élément"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "trouver la dernière occurrence de l’élément"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Renvoie l’index de la première/dernière occurrence de l’élément dans la liste. Renvoie %1 si l’élément n’est pas trouvé."; +Blockly.Msg["LISTS_INLIST"] = "dans la liste"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 est vide"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Renvoie vrai si la liste est vide."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "longueur de %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Renvoie la longueur d’une liste."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "créer une liste avec l’élément %1 répété %2 fois"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Crée une liste consistant en la valeur fournie répétée le nombre de fois indiqué."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "inverser %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Inverser la copie d’une liste."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "comme"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "insérer en"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "mettre"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Insère l’élément au début d’une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Insère l’élément à la position indiquée dans une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Ajoute l’élément à la fin d’une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Insère l’élément au hasard dans une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Définit le premier élément dans une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Définit l’élément à la position indiquée dans une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Définit le dernier élément dans une liste."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Définit un élément au hasard dans une liste."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "croissant"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "décroissant"; +Blockly.Msg["LISTS_SORT_TITLE"] = "trier %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Trier une copie d’une liste."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alphabétique, en ignorant la casse"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numérique"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alphabétique"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "créer une liste depuis le texte"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "créer un texte depuis la liste"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Réunir une liste de textes en un seul, en les joignant par un séparateur."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Couper un texte en une liste de textes, en coupant à chaque séparateur."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "avec séparateur"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "faux"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://fr.wikipedia.org/wiki/Principe_de_bivalence"; +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Renvoie soit vrai soit faux."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "vrai"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://fr.wikipedia.org/wiki/In%C3%A9galit%C3%A9_(math%C3%A9matiques)"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Renvoyer vrai si les deux entrées sont égales."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Renvoyer vrai si la première entrée est plus grande que la seconde."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Renvoyer true si la première entrée est supérieure ou égale à la seconde."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Renvoyer vrai si la première entrée est plus petite que la seconde."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Renvoyer vrai si la première entrée est plus petite ou égale à la seconde."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Renvoyer vrai si les deux entrées sont différentes."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://fr.wikipedia.org/wiki/Négation_logique"; +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "non %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Renvoie vrai si l’entrée est fausse. Renvoie faux si l’entrée est vraie."; +Blockly.Msg["LOGIC_NULL"] = "nul"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Renvoie nul."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "et"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://fr.wikipedia.org/wiki/Connecteur_logique"; +Blockly.Msg["LOGIC_OPERATION_OR"] = "ou"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Renvoyer vrai si les deux entrées sont vraies."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Renvoyer vrai si au moins une des entrées est vraie."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F%3A"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "si faux"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "si vrai"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Vérifie la condition indiquée dans « test ». Si elle est vraie, renvoie la valeur « si vrai » ; sinon renvoie la valeur « si faux »."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://fr.wikipedia.org/wiki/Arithm%C3%A9tique"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Renvoie la somme des deux nombres."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Renvoie le quotient des deux nombres."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Renvoie la différence des deux nombres."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Renvoie le produit des deux nombres."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Renvoie le premier nombre élevé à la puissance du second."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://fr.wikipedia.org/wiki/Atan2"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 de (x : %1 ; y : %2)"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Renvoie l’arc-tangente du point (X, Y) en degrés entre -180 et 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://fr.wikipedia.org/wiki/Idiome_de_programmation"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "incrémenter %1 de %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Ajouter un nombre à la variable « %1 »."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://fr.wikipedia.org/wiki/Table_de_constantes_math%C3%A9matiques"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Renvoie une des constantes courantes : π (3,141...), e (2,718...), φ (nom d’or : ½(1+√5) = 1,618…), √2 (1,414...), √½ (0,707...), ou ∞ (infini)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "contraindre %1 entre %2 et %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Contraindre un nombre à rester entre les limites spécifiées (incluses)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "est divisible par"; +Blockly.Msg["MATH_IS_EVEN"] = "est pair"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "est négatif"; +Blockly.Msg["MATH_IS_ODD"] = "est impair"; +Blockly.Msg["MATH_IS_POSITIVE"] = "est positif"; +Blockly.Msg["MATH_IS_PRIME"] = "est premier"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Vérifier si un nombre est pair, impair, premier, entier, positif, négatif ou s’il est divisible par un certain nombre. Renvoie vrai ou faux."; +Blockly.Msg["MATH_IS_WHOLE"] = "est entier"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://fr.wikipedia.org/wiki/Modulo_(op%C3%A9ration)"; +Blockly.Msg["MATH_MODULO_TITLE"] = "reste de %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Renvoyer le reste de la division euclidienne des deux nombres."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://fr.wikipedia.org/wiki/Nombre"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Un nombre."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = "https://fr.wikipedia.org/wiki/Fonction_d'agrégation"; +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "moyenne de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "maximum de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "médiane de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "minimum de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "majoritaires de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "élément aléatoire de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "écart type de la liste"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "somme de la liste"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Renvoyer la moyenne (arithmétique) des valeurs numériques dans la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Renvoyer le plus grand nombre dans la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Renvoyer le nombre médian de la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Renvoyer le plus petit nombre dans la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Renvoyer une liste d’un ou plusieurs éléments les plus fréquents dans la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Renvoyer un élément au hasard dans la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Renvoyer l’écart type de la liste."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Renvoyer la somme de tous les nombres dans la liste."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://fr.wikipedia.org/wiki/G%C3%A9n%C3%A9rateur_de_nombres_al%C3%A9atoires"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "fraction aléatoire"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Renvoyer une fraction aléatoire entre 0,0 (inclus) et 1,0 (exclus)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://fr.wikipedia.org/wiki/G%C3%A9n%C3%A9rateur_de_nombres_al%C3%A9atoires"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "entier aléatoire entre %1 et %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Renvoyer un entier aléatoire entre les deux limites spécifiées, incluses."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://fr.wikipedia.org/wiki/Arrondi_(math%C3%A9matiques)"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "arrondir"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "arrondir par défaut (à l’entier inférieur le plus proche)"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "arrondir par excès (à l’entier supérieur le plus proche)"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Arrondir un nombre au-dessus ou au-dessous."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://fr.wikipedia.org/wiki/Racine_carr%C3%A9e"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "valeur absolue"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "racine carrée"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Renvoie la valeur absolue d’un nombre."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Renvoie e (la constante d’Euler) élevé à la puissance d’un nombre donné, c’est-à-dire l’exponentielle népérienne ou naturelle de ce nombre."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Renvoie le logarithme naturel d’un nombre."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Renvoie le logarithme décimal d’un nombre."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Renvoie l’opposé d’un nombre"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Renvoie 10 à la puissance d’un nombre."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Renvoie la racine carrée d’un nombre."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "−"; +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://fr.wikipedia.org/wiki/Fonction_trigonom%C3%A9trique"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Renvoie l’arccosinus d’un nombre."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Renvoie l’arcsinus d’un nombre."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Renvoie l’arctangente d’un nombre."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Renvoie le cosinus d’un angle en degrés (pas en radians)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Renvoie le sinus d’un angle en degrés (pas en radians)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Renvoie la tangente d’un angle en degrés (pas en radians)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Créer une variable de couleur..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Créer une variable numérique..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Créer une variable de chaîne..."; +Blockly.Msg["NEW_VARIABLE"] = "Créer une variable..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nom de la nouvelle variable :"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Nouveau type de variable :"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "autoriser les ordres"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "avec :"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://fr.wikipedia.org/wiki/Sous-programme"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Exécuter la fonction « %1 » définie par l’utilisateur."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://fr.wikipedia.org/wiki/Sous-programme"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Exécuter la fonction « %1 » définie par l’utilisateur et utiliser son résultat."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "avec :"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Créer « %1 »"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Décrivez cette fonction..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://fr.wikipedia.org/wiki/Sous-programme"; +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "faire quelque chose"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "pour"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Crée une fonction sans sortie."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://fr.wikipedia.org/wiki/Sous-programme"; +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "retourner"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Crée une fonction avec une sortie."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Attention : cette fonction a des paramètres en doublon."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Surligner la définition de la fonction"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Si une valeur est vraie, alors renvoyer une seconde valeur."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Attention : ce bloc ne peut être utilisé que dans une définition de fonction."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nom de l’entrée :"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Ajouter une entrée à la fonction."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "entrées"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Ajouter, supprimer, ou réarranger les entrées de cette fonction."; +Blockly.Msg["REDO"] = "Refaire"; +Blockly.Msg["REMOVE_COMMENT"] = "Supprimer un commentaire"; +Blockly.Msg["RENAME_VARIABLE"] = "Renommer la variable..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Renommer toutes les variables « %1 » en :"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "ajouter le texte %2 à %1"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Ajouter du texte à la variable « %1 »."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "en minuscules"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "en Capitale Initiale Pour Chaque Mot"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "en MAJUSCULES"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Renvoyer une copie du texte dans une autre casse."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "obtenir la première lettre"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "obtenir la lettre nº (depuis la fin)"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "obtenir la lettre nº"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "obtenir la dernière lettre"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "obtenir une lettre au hasard"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "%2 dans le texte %1"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Renvoie la lettre à la position indiquée."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "nombre %1 sur %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Compter combien de fois un texte donné apparaît dans un autre."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Ajouter un élément au texte."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "joindre"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Ajouter, supprimer, ou réordonner des sections pour reconfigurer ce bloc de texte."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "jusqu’à la lettre nº (depuis la fin)"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "jusqu’à la lettre nº"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "jusqu’à la dernière lettre"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "dans le texte"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "obtenir la sous-chaîne depuis la première lettre"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "obtenir la sous-chaîne depuis la lettre nº (depuis la fin)"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "obtenir la sous-chaîne depuis la lettre nº"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Renvoie une partie indiquée du texte."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "trouver la première occurrence de la chaîne"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "trouver la dernière occurrence du texte"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "%2 %3 dans le texte %1"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Renvoie l’index de la première/dernière occurrence de la première chaîne dans la seconde. Renvoie %1 si la chaîne n’est pas trouvée."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 est vide"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Renvoie vrai si le texte fourni est vide."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "créer un texte avec"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Créer un morceau de texte en joignant bout à bout un nombre quelconque d’éléments dans l’ordre indiqué."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "longueur de %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Renvoie le nombre de lettres (chiffres, ponctuations, symboles et espaces compris) dans le texte fourni."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "afficher %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Afficher le texte, le nombre ou une autre valeur spécifiée."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Demander un nombre à l’utilisateur."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Demander un texte à l’utilisateur."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "demander un nombre avec un message"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "demander un texte avec un message"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "remplacer %1 par %2 dans %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Remplacer toutes les occurrences d’un texte par un autre."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "renverser %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Renverse l’ordre des caractères dans le texte."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://fr.wikipedia.org/wiki/Cha%C3%AEne_de_caract%C3%A8res"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Une lettre, un mot ou une ligne de texte."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "supprimer les espaces des deux côtés de"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "supprimer les espaces du côté gauche de"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "supprimer les espaces du côté droit de"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Renvoyer une copie du texte avec les espaces supprimés d’un ou des deux bouts."; +Blockly.Msg["TODAY"] = "Aujourd'hui"; +Blockly.Msg["UNDO"] = "Annuler"; +Blockly.Msg["UNNAMED_KEY"] = "non nommé"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "élément"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Créer « définir %1 »"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Renvoie la valeur de cette variable."; +Blockly.Msg["VARIABLES_SET"] = "définir %1 à %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Créer « obtenir %1 »"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Définit cette variable pour qu’elle soit égale à la valeur de l’entrée."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Une variable nommée « %1 » existe déjà."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Une variable nommée « %1 » existe déjà pour un autre type : « %2 »."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Espace de travail de Blocky"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Expliquez quelque chose..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/id.js b/src/root_files/_common/binary-to-deriv/translations/id.js new file mode 100644 index 0000000000000..1ecb8d443727f --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/id.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Tambahkan Komentar"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Tidak bisa menghapus variabel '%1' karena variabel ini bagian dari sebuah definisi dari fungsi '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Ubah nilai:"; +Blockly.Msg["CLEAN_UP"] = "Bersihkan Blok"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Blok yang diciutkan memiliki peringatan."; +Blockly.Msg["COLLAPSE_ALL"] = "Ciutkan Blok"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Ciutkan Blok"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "warna 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "warna 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "rasio"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "campur"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Campur dua warna secara bersamaan dengan perbandingan (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://en.wikipedia.org/wiki/Color"; // untranslated +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Pilih warna dari daftar warna."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "Warna acak"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Pilih warna secara acak."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "biru"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "hijau"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "merah"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "Dengan warna"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Buatlah warna dengan jumlah yang ditentukan dari merah, hijau dan biru. Semua nilai harus antarai 0 sampai 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "keluar dari perulangan"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "lanjutkan dengan langkah perulangan berikutnya"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Keluar dari perulangan."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Abaikan sisa dari perulangan ini, dan lanjutkan dengan langkah berikutnya."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Peringatan: Blok ini hanya dapat digunakan dalam perulangan."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "untuk setiap item %1 di dalam list %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Untuk tiap-tiap item di dalam list, tetapkan variabel '%1' ke dalam item, selanjutnya kerjakan beberapa statement."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "Cacah dengan %1 dari %2 ke %3 dengan step / penambahan %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Menggunakan variabel \"%1\" dengan mengambil nilai dari batas awal hingga ke batas akhir, dengan interval tertentu, dan mengerjakan block tertentu."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Tambahkan prasyarat ke dalam blok IF."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Terakhir, tambahkan kondisi tangkap-semua kedalam blok IF."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Tambahkan, hapus, atau susun kembali bagian untuk mengkonfigurasi blok IF ini."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "lainnya"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "atau jika"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "jika"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Jika nilainya benar, maka lakukan beberapa perintah."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Jika nilainya benar, maka kerjakan perintah blok pertama. Jika tidak, kerjakan perintah blok kedua."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Jika nilai pertama benar, maka kerjakan perintah blok pertama. Sebaliknya, jika nilai kedua benar, kerjakan perintah blok kedua."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Jika nilai pertama benar, maka kerjakan perintah blok pertama. Sebaliknya, jika nilai kedua benar, kerjakan perintah blok kedua. Jika dua-duanya tidak benar, kerjakan perintah blok terakhir."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://en.wikipedia.org/wiki/For_loop"; // untranslated +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "kerjakan"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "ulangi %1 kali"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Lakukan beberapa perintah beberapa kali."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "ulangi sampai"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "ulangi jika"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Selagi nilainya salah, maka lakukan beberapa perintah."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Selagi nilainya benar, maka lakukan beberapa perintah."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Hapus semua %1 blok?"; +Blockly.Msg["DELETE_BLOCK"] = "Hapus Blok"; +Blockly.Msg["DELETE_VARIABLE"] = "Hapus variabel '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Hapus %1 yang digunakan pada variabel '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Hapus %1 Blok"; +Blockly.Msg["DIALOG_CANCEL"] = "Batal"; +Blockly.Msg["DIALOG_OK"] = "Oke"; +Blockly.Msg["DISABLE_BLOCK"] = "Nonaktifkan Blok"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplikat"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Duplikat Komentar"; +Blockly.Msg["ENABLE_BLOCK"] = "Aktifkan Blok"; +Blockly.Msg["EXPAND_ALL"] = "Kembangkan Blok"; +Blockly.Msg["EXPAND_BLOCK"] = "Kembangkan Blok"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Input Eksternal"; +Blockly.Msg["HELP"] = "Bantuan"; +Blockly.Msg["INLINE_INPUTS"] = "Input Inline"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "buat list kosong"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Kembalikan list, dengan panjang 0, tidak berisi data"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "list"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Tambahkan, hapus, atau susun ulang bagian untuk mengkonfigurasi blok list ini."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "buat list dengan"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Tambahkan sebuah item ke list."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Buat sebuah list dengan sejumlah item."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "pertama"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# dari akhir"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "dapatkan"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "dapatkan dan hapus"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "terakhir"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "acak"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "Hapus"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Kembalikan item pertama dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Kembalikan item di posisi tertentu dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Kembalikan item terakhir dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Kembalikan item acak dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Hapus dan kembalikan item pertama dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Hapus dan kembalikan item di posisi tertentu dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Hapus dan kembalikan item terakhir dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Hapus dan kembalikan item acak dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Hapus item pertama dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Hapus item di posisi tertentu dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Hapus item terakhir dalam list."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Hapus sebuah item acak dalam list."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "ke # dari akhir"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "ke #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "ke yang paling akhir"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "dapatkan sub-list dari pertama"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "dapatkan sub-list dari nomor # dari akhir"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "dapatkan sub-list dari #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Buat salinan bagian tertentu dari list."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 adalah item terakhir."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 adalah item pertama."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "cari kejadian pertama item"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "cari kejadian terakhir item"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Kembalikan indeks dari item pertama/terakhir kali muncul dalam list. Kembalikan %1 jika item tidak ditemukan."; +Blockly.Msg["LISTS_INLIST"] = "dalam list"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 kosong"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Kembalikan benar jika list kosong."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "panjang dari %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Kembalikan panjang list."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "buat list dengan item %1 diulang %2 kali"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Buat sebuah list yang terdiri dari nilai yang diberikan diulang sebanyak jumlah yang ditentukan."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "balikkan %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Balikkan salinan dari daftar."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "sebagai"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "sisipkan di"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "tetapkan"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Sisipkan item di bagian awal dari list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Sisipkan item ke dalam posisi yang telah ditentukan di dalam list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Tambahkan item ke bagian akhir list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Sisipkan item secara acak ke dalam list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Tetapkan item pertama di dalam list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Tetapkan item ke dalam posisi yang telah ditentukan di dalam list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Menetapkan item terakhir dalam list."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Tetapkan secara acak sebuah item dalam list."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "menaik"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "menurun"; +Blockly.Msg["LISTS_SORT_TITLE"] = "urutkan %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Urutkan salinan dari daftar"; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "sesuai abjad, abaikan kasus"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "sesuai nomor"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "sesuai abjad"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "buat list dari teks"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "buat teks dari list"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Gabung daftar teks menjadi satu teks, yang dipisahkan oleh pembatas."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Membagi teks ke dalam daftar teks, pisahkan pada setiap pembatas."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "dengan pembatas"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "salah"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Kembalikan benar atau salah."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "benar"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://en.wikipedia.org/wiki/Inequality_(mathematics)"; // untranslated +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Kembalikan benar jika kedua input sama satu dengan lainnya."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Kembalikan benar jika input pertama lebih besar dari input kedua."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Kembalikan benar jika input pertama lebih besar dari atau sama dengan input kedua."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Kembalikan benar jika input pertama lebih kecil dari input kedua."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Kembalikan benar jika input pertama lebih kecil atau sama dengan input kedua ."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Kembalikan benar jika kedua input tidak sama satu dengan lainnya."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "bukan (not) %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Kembalikan benar jika input salah. Kembalikan salah jika input benar."; +Blockly.Msg["LOGIC_NULL"] = "null"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Kembalikan null."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "dan"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "atau"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Kembalikan benar jika kedua input adalah benar."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Kembalikan benar jika minimal satu input nilainya benar."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; // untranslated +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "jika salah"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "jika benar"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Periksa kondisi di 'test'. Jika kondisi benar, kembalikan nilai 'if true'; jika sebaliknya kembalikan nilai 'if false'."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://id.wikipedia.org/wiki/Aritmetika"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Kembalikan jumlah dari kedua angka."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Kembalikan hasil bagi dari kedua angka."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Kembalikan selisih dari kedua angka."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Kembalikan perkalian dari kedua angka."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Kembalikan angka pertama pangkat angka kedua."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; // untranslated +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 of X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Kembalikan arctangen titik (X, Y) dalam derajat dari -180 hingga 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter"; // untranslated +Blockly.Msg["MATH_CHANGE_TITLE"] = "ubah %1 oleh %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Tambahkan angka kedalam variabel '%1'."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://en.wikipedia.org/wiki/Mathematical_constant"; // untranslated +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Kembalikan salah satu konstanta: π (3,141…), e (2,718…), φ (1,618…), akar(2) (1,414…), akar(½) (0.707…), atau ∞ (tak terhingga)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "Batasi %1 rendah %2 tinggi %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Batasi angka antara batas yang ditentukan (inklusif)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "dapat dibagi oleh"; +Blockly.Msg["MATH_IS_EVEN"] = "adalah bilangan genap"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "adalah bilangan negatif"; +Blockly.Msg["MATH_IS_ODD"] = "adalah bilangan ganjil"; +Blockly.Msg["MATH_IS_POSITIVE"] = "adalah bilangan positif"; +Blockly.Msg["MATH_IS_PRIME"] = "adalah bilangan pokok"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Periksa apakah angka adalah bilangan genap, bilangan ganjil, bilangan pokok, bilangan bulat, bilangan positif, bilangan negatif, atau apakan bisa dibagi oleh angka tertentu. Kembalikan benar atau salah."; +Blockly.Msg["MATH_IS_WHOLE"] = "adalah bilangan bulat"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://en.wikipedia.org/wiki/Modulo_operation"; // untranslated +Blockly.Msg["MATH_MODULO_TITLE"] = "sisa dari %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Kembalikan sisa dari pembagian ke dua angka."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://en.wikipedia.org/wiki/Number"; // untranslated +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Suatu angka."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "rata-rata dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "maksimum dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "median dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "minimum dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "mode-mode dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "item acak dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "deviasi standar dari list"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "jumlah dari list"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Kembalikan rata-rata (mean aritmetik) dari nilai numerik dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Kembalikan angka terbesar dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Kembalikan median dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Kembalikan angka terkecil dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Kembalikan list berisi item yang paling umum dari dalam list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Kembalikan elemen acak dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Kembalikan standard deviasi dari list."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Kembalikan jumlah dari seluruh bilangan dari list."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "nilai pecahan acak"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Kembalikan nilai pecahan acak antara 0.0 (inklusif) dan 1.0 (eksklusif)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "acak bulat dari %1 sampai %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Kembalikan bilangan acak antara dua batas yang ditentukan, inklusif."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://en.wikipedia.org/wiki/Rounding"; // untranslated +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "membulatkan"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "membulatkan kebawah"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "membulatkan keatas"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Bulatkan suatu bilangan naik atau turun."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://en.wikipedia.org/wiki/Square_root"; // untranslated +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "mutlak"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "akar"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Kembalikan nilai absolut angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Kembalikan 10 pangkat angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Kembalikan logaritma natural dari angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Kembalikan dasar logaritma 10 dari angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Kembalikan penyangkalan terhadap angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Kembalikan 10 pangkat angka."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Kembalikan akar dari angka."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://en.wikipedia.org/wiki/Trigonometric_functions"; // untranslated +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Kembalikan acosine dari angka."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Kembalikan asin dari angka."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Kembalikan atan dari angka."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Kembalikan cosinus dari derajat (bukan radian)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Kembalikan sinus dari derajat (bukan radian)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Kembalikan tangen dari derajat (bukan radian)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Buat variabel warna..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Buat variabel number..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Buat variabel string..."; +Blockly.Msg["NEW_VARIABLE"] = "Buat variabel..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nama variabel baru:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Tipe variabel baru:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "memungkinkan pernyataan"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "dengan:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Menjalankan fungsi '%1' yang ditetapkan pengguna."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Menjalankan fungsi '%1' yang ditetapkan pengguna dan menggunakan outputnya."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "dengan:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Buat '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Jelaskan fungsi ini..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "buat sesuatu"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "untuk"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Buat sebuah fungsi tanpa output."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "kembali"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Buat sebuah fungsi dengan satu output."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Peringatan: Fungsi ini memiliki parameter duplikat."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Sorot definisi fungsi"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Jika nilai yang benar, kemudian kembalikan nilai kedua."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Peringatan: Blok ini dapat digunakan hanya dalam definisi fungsi."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "masukan Nama:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Tambahkan masukan ke fungsi."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "input"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Menambah, menghapus, atau menyusun ulang masukan untuk fungsi ini."; +Blockly.Msg["REDO"] = "Lakukan ulang"; +Blockly.Msg["REMOVE_COMMENT"] = "Hapus Komentar"; +Blockly.Msg["RENAME_VARIABLE"] = "Ubah nama variabel..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Ubah nama semua variabel '%1' menjadi:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "untuk %1 tambahkan teks %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Tambahkan beberapa teks ke variabel '%1'."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "menjadi huruf kecil"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "menjadi huruf pertama kapital"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "menjadi huruf kapital"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Kembalikan kopi dari text dengan kapitalisasi yang berbeda."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "ambil huruf pertama"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "ambil huruf nomor # dari belakang"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "ambil huruf ke #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "ambil huruf terakhir"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "ambil huruf secara acak"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "dalam teks %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Kembalikan karakter dari posisi tertentu."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "hitung %1 dalam %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Hitung berapa banyak teks muncul dalam teks lain."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Tambahkan suatu item ke dalam teks."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "join"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Tambah, ambil, atau susun ulang teks blok."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "pada huruf nomer # dari terakhir"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "pada huruf #"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "pada huruf terakhir"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "in teks"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "ambil bagian teks (substring) dari huruf pertama"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "ambil bagian teks (substring) dari huruf ke # dari terakhir"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "ambil bagian teks (substring) dari huruf no #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Kembalikan spesifik bagian dari teks."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "temukan kejadian pertama dalam teks"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "temukan kejadian terakhir dalam teks"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "dalam teks %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Kembalikan indeks pertama dan terakhir dari kejadian pertama/terakhir dari teks pertama dalam teks kedua. Kembalikan %1 jika teks tidak ditemukan."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 kosong"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Kembalikan benar jika teks yang disediakan kosong."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "buat teks dengan"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Buat teks dengan cara gabungkan sejumlah item."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "panjang dari %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Kembalikan sejumlah huruf (termasuk spasi) dari teks yang disediakan."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "cetak %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Cetak teks yant ditentukan, angka atau ninlai lainnya."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Meminta pengguna untuk memberi sebuah angka."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Meminta pengguna untuk memberi beberapa teks."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "Meminta angka dengan pesan"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "meminta teks dengan pesan"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "ganti %1 dengan %2 dalam %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Ganti semua kemunculan teks dalam teks lain."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "balikkan %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Balikkan urutan huruf dalam teks."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://en.wikipedia.org/wiki/String_(computer_science)"; // untranslated +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Huruf, kata atau baris teks."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "pangkas ruang dari kedua belah sisi"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "pangkas ruang dari sisi kiri"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "pangkas ruang dari sisi kanan"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Kembali salinan teks dengan spasi dihapus dari satu atau kedua ujungnya."; +Blockly.Msg["TODAY"] = "Hari ini"; +Blockly.Msg["UNDO"] = "Urungkan"; +Blockly.Msg["UNNAMED_KEY"] = "tanpa nama"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "item"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Buat 'set %1'"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Kembalikan nilai variabel ini."; +Blockly.Msg["VARIABLES_SET"] = "tetapkan %1 untuk %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Buat 'get %1'"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "tetapkan variabel ini dengan input yang sama."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Sebuah variabel dengan nama '%1' sudah ada."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Variabel yg bernama '%1' sudah ada untuk tipe lain: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Ruang Kerja Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Ucapkan sesuatu..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/it.js b/src/root_files/_common/binary-to-deriv/translations/it.js new file mode 100644 index 0000000000000..05260b15d8950 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/it.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Aggiungi commento"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Non si può cancellare la variabile '%1' perché è parte della definizione della funzione '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Modifica valore:"; +Blockly.Msg["CLEAN_UP"] = "Pulisci i blocchi"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "I blocchi compressi contengono avvertimenti."; +Blockly.Msg["COLLAPSE_ALL"] = "Comprimi blocchi"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Comprimi blocco"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "colore 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "colore 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "rapporto"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "miscela"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Mescola due colori insieme con un determinato rapporto (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://it.wikipedia.org/wiki/Colore"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Scegli un colore dalla tavolozza."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "colore casuale"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Scegli un colore a caso."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "blu"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "verde"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "rosso"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "colora con"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Crea un colore con la quantità specificata di rosso, verde e blu. Tutti i valori devono essere compresi tra 0 e 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "esce dal ciclo"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "prosegui con la successiva iterazione del ciclo"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Esce dal ciclo."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Salta il resto di questo ciclo e prosegue con la successiva iterazione."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Attenzioneː Questo blocco può essere usato solo in un ciclo."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "per ogni elemento %1 nella lista %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Per ogni elemento in una lista, imposta la variabile '%1' pari all'elemento e quindi esegue alcune istruzioni."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "conta con %1 da %2 a %3 per %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Fa sì che la variabile '%1' prenda tutti i valori a partire dal numero di partenza fino a quello di arrivo, con passo pari all'intervallo specificato, ed esegue il blocco indicato."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Aggiungi una condizione al blocco se."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Aggiungi una condizione finale pigliatutto al blocco se."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Aggiungi, elimina o riordina le sezioni per riconfigurare questo blocco se."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "altrimenti"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "altrimenti se"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "se"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Se un valore è vero allora esegue alcune istruzioni."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Se un valore è vero allora esegue il primo blocco di istruzioni. Altrimenti esegue il secondo blocco di istruzioni."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Se il primo valore è vero allora esegue un primo blocco di istruzioni. Altrimenti, se il secondo valore è vero, esegue un secondo blocco di istruzioni."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Se il primo valore è vero allora esegue un primo blocco di istruzioni. Altrimenti, se il secondo valore è vero, esegue un secondo blocco di istruzioni. Se nessuno dei valori è vero esegue l'ultimo blocco di istruzioni."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://it.wikipedia.org/wiki/Ciclo_for"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "fai"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "ripeti %1 volte"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Esegue alcune istruzione diverse volte."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "ripeti fino a che"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "ripeti mentre"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Finché un valore è falso, esegue alcune istruzioni."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Finché un valore è vero, esegue alcune istruzioni."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Cancellare tutti i %1 blocchi?"; +Blockly.Msg["DELETE_BLOCK"] = "Cancella blocco"; +Blockly.Msg["DELETE_VARIABLE"] = "Cancella la variabile '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Cancella %1 usi della variabile '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Cancella %1 blocchi"; +Blockly.Msg["DIALOG_CANCEL"] = "Annulla"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Disattiva blocco"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplica"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Duplica commento"; +Blockly.Msg["ENABLE_BLOCK"] = "Attiva blocco"; +Blockly.Msg["EXPAND_ALL"] = "Espandi blocchi"; +Blockly.Msg["EXPAND_BLOCK"] = "Espandi blocco"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Ingressi esterni"; +Blockly.Msg["HELP"] = "Aiuto"; +Blockly.Msg["INLINE_INPUTS"] = "Ingressi in linea"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "crea lista vuota"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Restituisce una lista, di lunghezza 0, contenente nessun record di dati"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "lista"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Aggiungi, rimuovi o riordina le sezioni per riconfigurare il blocco lista."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "crea lista con"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Aggiunge un elemento alla lista."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Crea una lista con un certo numero di elementi."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "primo"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# dalla fine"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; // untranslated +Blockly.Msg["LISTS_GET_INDEX_GET"] = "prendi"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "prendi e rimuovi"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "ultimo"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "casuale"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "rimuovi"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Restituisce il primo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Restituisce l'elemento nella posizione indicata della lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Restituisce l'ultimo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Restituisce un elemento casuale in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Rimuove e restituisce il primo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Rimuove e restituisce l'elemento nella posizione indicata in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Restituisce e rimuove l'ultimo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Restituisce e rimuove un elemento casuale in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Rimuove il primo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Rimuove l'elemento nella posizione indicata in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Rimuove l'ultimo elemento in una lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Rimuove un elemento casuale in una lista."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "da # dalla fine"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "fino a #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "dagli ultimi"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "prendi sotto-lista dall'inizio"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "prendi sotto-lista da # dalla fine"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "prendi sotto-lista da #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Crea una copia della porzione specificata di una lista."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 corrisponde all'ultimo elemento."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 corrisponde al primo elemento."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "trova la prima occorrenza dell'elemento"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "trova l'ultima occorrenza dell'elemento"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Restituisce l'indice della prima/ultima occorrenza dell'elemento nella lista. Restituisce %1 se l'elemento non viene trovato."; +Blockly.Msg["LISTS_INLIST"] = "nella lista"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 è vuota"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Restituisce vero se la lista è vuota."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "lunghezza di %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Restituisce la lunghezza della lista"; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "crea una lista con l'elemento %1 ripetuto %2 volte"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Crea una lista costituita dal valore indicato ripetuto per il numero di volte specificato."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "inverti %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Inverti una copia di un elenco."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "come"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "inserisci in"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "imposta"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Inserisci l'elemento all'inizio della lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Inserisci un elemento nella posizione indicata in una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Aggiungi un elemento alla fine di una lista"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Inserisce l'elemento casualmente in una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Imposta il primo elemento in una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Imposta l'elemento nella posizione indicata di una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Imposta l'ultimo elemento in una lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Imposta un elemento casuale in una lista."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "crescente"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "decrescente"; +Blockly.Msg["LISTS_SORT_TITLE"] = "ordinamento %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Ordina una copia di un elenco."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alfabetico, ignorare differenze maiuscole e minuscole"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numerico"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alfabetico"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "crea lista da testo"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "crea testo da lista"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Unisci una lista di testi in un unico testo, separato da un delimitatore."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Dividi il testo in un elenco di testi, interrompendo ad ogni delimitatore."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "con delimitatore"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "falso"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Restituisce vero o falso."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "vero"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://it.wikipedia.org/wiki/Disuguaglianza"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Restituisce vero se gli input sono uno uguale all'altro."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Restituisce vero se il primo input è maggiore o uguale al secondo."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Restituisce uguale se il primo input è maggiore o uguale al secondo input."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Restituisce vero se il primo input è minore del secondo."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Restituisce vero se il primo input è minore o uguale al secondo."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Restituisce vero se gli input non sono uno uguale all'altro."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "non %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Restituisce vero se l'input è falso. Restituisce falso se l'input è vero."; +Blockly.Msg["LOGIC_NULL"] = "nullo"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Restituisce valore nullo."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "e"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "o"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Restituisce vero se entrambi gli input sono veri."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Restituisce vero se almeno uno degli input è vero."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; // untranslated +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "se falso"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "se vero"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Verifica la condizione in 'test'. Se questa è vera restituisce il valore 'se vero' altrimenti restituisce il valore 'se falso'."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://it.wikipedia.org/wiki/Aritmetica"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Restituisce la somma dei due numeri."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Restituisce il quoziente dei due numeri."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Restituisce la differenza dei due numeri."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Restituisce il prodotto dei due numeri."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Restituisce il primo numero elevato alla potenza del secondo numero."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://it.wikipedia.org/wiki/Arcotangente2"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 di X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Restituisce l'arcotangente del punto (X, Y) in gradi da -180 a 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://it.wikipedia.org/wiki/Addizione"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "cambia %1 di %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Aggiunge un numero alla variabile '%1'."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://it.wikipedia.org/wiki/Costante_matematica"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Restituisce una delle costanti comuniː π (3.141…), e (2.718…), φ (1.618…), radq(2) (1.414…), radq(½) (0.707…) o ∞ (infinito)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "costringi %1 da %2 a %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Costringe un numero all'interno dei limiti indicati (compresi)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "è divisibile per"; +Blockly.Msg["MATH_IS_EVEN"] = "è pari"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "è negativo"; +Blockly.Msg["MATH_IS_ODD"] = "è dispari"; +Blockly.Msg["MATH_IS_POSITIVE"] = "è positivo"; +Blockly.Msg["MATH_IS_PRIME"] = "è primo"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Verifica se un numero è pari, dispari, primo, intero, positivo, negativo o se è divisibile per un certo numero. Restituisce vero o falso."; +Blockly.Msg["MATH_IS_WHOLE"] = "è intero"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://it.wikipedia.org/wiki/Resto"; +Blockly.Msg["MATH_MODULO_TITLE"] = "resto di %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Restituisce il resto della divisione di due numeri."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://it.wikipedia.org/wiki/Numero"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Un numero."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "media della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "massimo della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "mediana della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "minimo della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "mode della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "elemento casuale della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "deviazione standard della lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "somma la lista"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Restituisce la media (media aritmetica) dei valori numerici nella lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Restituisce il più grande numero della lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Restituisce il valore mediano della lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Restituisce il più piccolo numero della lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Restituisce una lista degli elementi più frequenti nella lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Restituisce un elemento casuale della lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Restituisce la deviazione standard della lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Restituisce la somma si tutti i numeri nella lista."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://it.wikipedia.org/wiki/Numeri_pseudo-casuali"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "frazione casuale"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Restituisce una frazione compresa fra 0.0 (incluso) e 1.0 (escluso)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://it.wikipedia.org/wiki/Numeri_pseudo-casuali"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "intero casuale da %1 a %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Restituisce un numero intero casuale compreso tra i due limiti indicati (inclusi)."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://it.wikipedia.org/wiki/Arrotondamento"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "arrotonda"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "arrotonda verso il basso"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "arrotonda verso l'alto"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Arrotonda un numero verso l'alto o verso il basso."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://it.wikipedia.org/wiki/Radice_quadrata"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "assoluto"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "radice quadrata"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Restituisce il valore assoluto del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Restituisce e elevato alla potenza del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Restituisce il logaritmo naturale del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Restituisce il logaritmo in base 10 del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Restituisce l'opposto del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Restituisce 10 elevato alla potenza del numero."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Restituisce la radice quadrata del numero."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; // untranslated +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; // untranslated +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; // untranslated +Blockly.Msg["MATH_TRIG_COS"] = "cos"; // untranslated +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://it.wikipedia.org/wiki/Funzione_trigonometrica"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; // untranslated +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; // untranslated +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Restituisce l'arco-coseno di un numero."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Restituisce l'arco-seno di un numero."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Restituisce l'arco-tangente di un numero."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Restituisce il coseno di un angolo espresso in gradi (non radianti)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Restituisce il seno di un angolo espresso in gradi (non radianti)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Restituisce la tangente di un angolo espresso in gradi (non radianti)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Crea variabile colore..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Crea variabile numero..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Crea variabile stringa..."; +Blockly.Msg["NEW_VARIABLE"] = "Crea variabile..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nome della nuova variabile:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Tipo della nuova variabile:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "consenti dichiarazioni"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "conː"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://it.wikipedia.org/wiki/Funzione (informatica)"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Esegue la funzione definita dall'utente '%1'."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://it.wikipedia.org/wiki/Funzione (informatica)"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Esegue la funzione definita dall'utente '%1' ed usa il suo output."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "conː"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Crea '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Descrivi questa funzione..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "fai qualcosa"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "per"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Crea una funzione senza output."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "ritorna"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Crea una funzione con un output."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Attenzioneː Questa funzione ha parametri duplicati."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Evidenzia definizione di funzione"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Se un valore è vero allora restituisce un secondo valore."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Attenzioneː Questo blocco può essere usato solo all'interno di una definizione di funzione."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nome inputː"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Aggiungi un input alla funzione."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "input"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Aggiungi, rimuovi o riordina input alla funzione."; +Blockly.Msg["REDO"] = "Ripeti"; +Blockly.Msg["REMOVE_COMMENT"] = "Rimuovi commento"; +Blockly.Msg["RENAME_VARIABLE"] = "Rinomina variabile..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Rinomina tutte le variabili '%1' in:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "a %1 aggiungi il testo %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Aggiunge del testo alla variabile '%1'."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "in minuscolo"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "con Iniziali Maiuscole"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "in MAIUSCOLO"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Restituisce una copia del testo in un diverso formato maiuscole/minuscole."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "prendi la prima lettera"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "prendi la lettera # dalla fine"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "prendi la lettera #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "prendi l'ultima lettera"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "prendi lettera casuale"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "nel testo %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Restituisce la lettera nella posizione indicata."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "conta %1 in %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Contare quante volte una parte di testo si ripete all'interno di qualche altro testo."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Aggiungi un elemento al testo."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "unisci"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Aggiungi, rimuovi o riordina le sezioni per riconfigurare questo blocco testo."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "alla lettera # dalla fine"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "alla lettera #"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "all'ultima lettera"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "nel testo"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "prendi sotto-stringa dalla prima lettera"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "prendi sotto-stringa dalla lettera # dalla fine"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "prendi sotto-stringa dalla lettera #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Restituisce la porzione di testo indicata."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "trova la prima occorrenza del testo"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "trova l'ultima occorrenza del testo"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "nel testo %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Restituisce l'indice della prima occorrenza del primo testo all'interno del secondo testo. Restituisce %1 se il testo non viene trovato."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 è vuoto"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Restituisce vero se il testo fornito è vuoto."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "crea testo con"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Crea un blocco di testo unendo un certo numero di elementi."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "lunghezza di %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Restituisce il numero di lettere (inclusi gli spazi) nel testo fornito."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "scrivi %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Scrive il testo, numero o altro valore indicato."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Richiedi un numero all'utente."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Richiede del testo da parte dell'utente."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "richiedi numero con messaggio"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "richiedi testo con messaggio"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "sostituisci %1 con %2 in %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "sostituisci tutte le occorrenze di un certo testo con qualche altro testo."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "inverti %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Inverte l'ordine dei caratteri nel testo."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://it.wikipedia.org/wiki/Stringa_(informatica)"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Una lettera, una parola o una linea di testo."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "rimuovi spazi da entrambi gli estremi"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "rimuovi spazi a sinistra"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "rimuovi spazi a destra"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Restituisce una copia del testo con gli spazi rimossi ad uno o entrambe le estremità."; +Blockly.Msg["TODAY"] = "Oggi"; +Blockly.Msg["UNDO"] = "Annulla"; +Blockly.Msg["UNNAMED_KEY"] = "senza nome"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "elemento"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Crea 'imposta %1'"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Restituisce il valore di una variabile."; +Blockly.Msg["VARIABLES_SET"] = "imposta %1 a %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Crea 'prendi %1'"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Imposta questa variabile ad essere pari all'input."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Una variabile denominata '%1' esiste già."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Una variabile nominata '%1' esiste già per un altro tipo: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Area di lavoro di Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Scrivi qualcosa..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/pl.js b/src/root_files/_common/binary-to-deriv/translations/pl.js new file mode 100644 index 0000000000000..adcc050b762a9 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/pl.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Dodaj Komentarz"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Nie można usunąć zmiennej '%1', ponieważ jest częścią definicji funkcji '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Zmień wartość:"; +Blockly.Msg["CLEAN_UP"] = "Uporządkuj Bloki"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Zwinięte bloki zawierają ostrzeżenia."; +Blockly.Msg["COLLAPSE_ALL"] = "Zwiń Bloki"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Zwiń Klocek"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "kolor 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "kolor 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "proporcja"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "wymieszaj"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Miesza dwa kolory w danej proporcji (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://en.wikipedia.org/wiki/Color"; // untranslated +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Wybierz kolor z palety."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "losowy kolor"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Wybierz kolor w sposób losowy."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "niebieski"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "zielony"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "czerwony"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "kolor z"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Utwórz kolor składający sie z podanej ilości czerwieni, zieleni i błękitu. Zakres wartości: 0 do 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "przerwij pętlę"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "przejdź do kolejnej iteracji pętli"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Przerwij działanie pętli."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Pomiń resztę pętli i kontynuuj w kolejnej iteracji."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Uwaga: Ten klocek może być użyty tylko wewnątrz pętli."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "dla każdego elementu %1 listy %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Przypisz zmiennej '%1' kolejno wartość każdego elementu listy, a następnie wykonaj kilka instrukcji."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "licz z %1 od %2 do %3 co %4 (wartość kroku)"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Zmiennej '%1' przypisuje wartości z podanego zakresu z podanym interwałem i wykonuje zadane bloki."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Dodaj warunek do klocka „jeśli”."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Dodaj ostatni zawsze prawdziwy warunek do klocka „jeśli”."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Dodaj, usuń lub zmień kolejność czynności, żeby zmodyfikować ten klocek „jeśli”."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "w przeciwnym razie"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "w przeciwnym razie, jeśli"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "jeśli"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Jeśli warunek jest spełniony, wykonaj zadane czynności."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Jeśli warunek jest spełniony, wykonaj pierwszy blok instrukcji. W przeciwnym razie, wykonaj drugi blok instrukcji."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Jeśli pierwszy warunek jest spełniony, wykonaj pierwszy blok instrukcji. W przeciwnym razie, jeśli drugi warunek jest spełniony, wykonaj drugi blok instrukcji."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Jeśli pierwszy warunek jest spełniony, wykonaj pierwszy blok czynności. W przeciwnym razie jeśli drugi warunek jest spełniony, wykonaj drugi blok czynności. Jeżeli żaden z warunków nie zostanie spełniony, wykonaj ostatni blok czynności."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://en.wikipedia.org/wiki/For_loop"; // untranslated +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "wykonaj"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "powtórz %1 razy"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Wykonaj niektóre instrukcje kilka razy."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "powtarzaj aż do"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "powtarzaj dopóki"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Dopóki wyrażenie jest nieprawdziwe, wykonaj zadane czynności."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Dopóki wyrażenie jest prawdziwe, wykonaj zadane czynności."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Usunąć wszystkie klocki z %1?"; +Blockly.Msg["DELETE_BLOCK"] = "Usuń Klocek"; +Blockly.Msg["DELETE_VARIABLE"] = "Usuń zmienną '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Usunąć %1 wystąpień zmiennej '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Usuń %1 Bloki(ów)"; +Blockly.Msg["DIALOG_CANCEL"] = "Anuluj"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Wyłącz Klocek"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplikat"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Zduplikowany komentarz"; +Blockly.Msg["ENABLE_BLOCK"] = "Włącz Blok"; +Blockly.Msg["EXPAND_ALL"] = "Rozwiń Bloki"; +Blockly.Msg["EXPAND_BLOCK"] = "Rozwiń Klocek"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Zewnętrzne Wejścia"; +Blockly.Msg["HELP"] = "Pomoc"; +Blockly.Msg["INLINE_INPUTS"] = "Wbudowane Wejścia"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "utwórz pustą listę"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Zwraca listę o długości 0, nie zawierającą danych"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "lista"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Dodaj, usuń lub zmień kolejność sekcji aby przekonfigurować blok tej listy."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "utwórz listę z"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Dodaj element do listy."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Utwórz listę z dowolną ilością elementów."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "pierwszy"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# od końca"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "pobierz"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "zabierz"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "ostatni"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "losowy"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "usuń"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Zwraca pierwszy element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Zwraca element z konkretnej pozycji na liście."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Zwraca ostatni element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Zwraca losowy element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Usuwa i zwraca pierwszy element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Usuwa i zwraca element z określonej pozycji na liście."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Usuwa i zwraca ostatni element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Usuwa i zwraca losowy element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Usuwa pierwszy element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Usuwa element z określonej pozycji na liście."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Usuwa ostatni element z listy."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Usuwa losowy element z listy."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "do # od końca"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "do #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "do ostatniego"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "utwórz listę podrzędną od pierwszego"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "utwórz listę podrzędną z # od końca"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "utwórz listę podrzędną z #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Tworzy kopię żądanej części listy."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 to ostatni element."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 to pierwszy element."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "znajdź pierwsze wystąpienie elementu"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "znajdź ostatanie wystąpienie elementu"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Zwraca indeks pierwszego/ostatniego wystąpienia elementu z listy. Zwraca %1, jeśli nie zostanie znaleziony."; +Blockly.Msg["LISTS_INLIST"] = "na liście"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 jest pusta"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Zwraca \"prawda\" jeśli lista jest pusta."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "długość %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Zwraca długość listy."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "utwórz listę powtarzając %1 %2 razy."; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Tworzy listę zawierającą podaną wartość powtórzoną żądaną ilość razy."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "odwróć %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Odwraca kolejność danych w kopii listy."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "jako"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "wstaw w"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "ustaw"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Wstawia element na początku listy."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Wstawia element na żądanej pozycji listy."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Dodaj element na koniec listy."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Wstawia element w losowym miejscu na liście."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Ustawia pierwszy element na liście."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Ustawia element w określonym miejscu na liście."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Ustawia ostatni element na liście."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Ustawia losowy element na liście."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "rosnąco"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "malejąco"; +Blockly.Msg["LISTS_SORT_TITLE"] = "sortuj %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Sortuj kopię listy."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alfabetycznie, ignoruj wielkość liter"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numerycznie"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alfabetycznie"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "utwórz listę z tekstu"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "utwórz tekst z listy"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Łączy listę tekstów w jeden tekst, rozdzielany separatorem."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Rozdziela tekst zgodnie z separatorem tworząc listę z powstałych elementów."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "z separatorem"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "fałsz"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Zwraca 'prawda' lub 'fałsz'."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "prawda"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://pl.wikipedia.org/wiki/Nierówność"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Zwraca \"prawda\", jeśli wejścia są identyczne."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Zwraca \"prawda\" jeśli pierwsze wejście jest większe od drugiego."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Zwraca \"prawda\", jeśli pierwsze wejście jest większe lub równe drugiemu."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Zwraca \"prawda\" jeśli pierwsze wejście jest mniejsze od drugiego."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Zwraca \"prawda\", jeśli pierwsze wejście jest mniejsze lub równe drugiemu."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Zwraca \"prawda\", jeśli wejścia nie są identyczne."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "nie %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Zwraca \"prawda\", jeśli wejściu jest \"fałsz\". Zwraca \"fałsz\", jeśli na wejściu jest \"prawda\"."; +Blockly.Msg["LOGIC_NULL"] = "nic"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Zwraca nic."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "i"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "lub"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Zwraca \"prawda\" jeśli na obydwóch wejściach jest \"prawda\"."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Zwraca \"prawda\" jeśli co najmniej na jednyk wejściu jest \"prawda\"."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "test"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; // untranslated +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "jeśli fałsz"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "jeśli prawda"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Sprawdź warunek w „test”. Jeśli warunek jest prawdziwy, to zwróci „jeśli prawda”; jeśli nie jest prawdziwy to zwróci „jeśli fałsz”."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://pl.wikipedia.org/wiki/Arytmetyka"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Zwróć sumę dwóch liczb."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Zwróć iloraz dwóch liczb."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Zwróć różnicę dwóch liczb."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Zwróć iloczyn dwóch liczb."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Zwróć pierwszą liczbę podniesioną do potęgi o wykładniku drugiej liczby."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; // untranslated +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 z %X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Zwraca arcus tangens punktu (X, Y) w stopniach od -180 do 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter"; // untranslated +Blockly.Msg["MATH_CHANGE_TITLE"] = "zmień %1 o %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Dodaj liczbę do zmiennej '%1'."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://pl.wikipedia.org/wiki/Stała_(matematyka)"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Zwróć jedną wspólną stałą: π (3.141), e (2.718...), φ (1.618...), sqrt(2) (1.414...), sqrt(½) (0.707...) lub ∞ (nieskończoność)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "ogranicz %1 z dołu %2 z góry %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Ogranicz liczbę, aby była w określonych granicach (włącznie)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "/"; +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "jest podzielna przez"; +Blockly.Msg["MATH_IS_EVEN"] = "jest parzysta"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "jest ujemna"; +Blockly.Msg["MATH_IS_ODD"] = "jest nieparzysta"; +Blockly.Msg["MATH_IS_POSITIVE"] = "jest dodatnia"; +Blockly.Msg["MATH_IS_PRIME"] = "jest liczbą pierwszą"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Sprawdź, czy liczba jest parzysta, nieparzysta, pierwsza, całkowita, dodatnia, ujemna, lub czy jest podzielna przez podaną liczbę. Zwraca wartość \"prawda\" lub \"fałsz\"."; +Blockly.Msg["MATH_IS_WHOLE"] = "jest liczbą całkowitą"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://pl.wikipedia.org/wiki/Modulo"; +Blockly.Msg["MATH_MODULO_TITLE"] = "reszta z dzielenia %1 przez %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Zwróć resztę z dzielenia dwóch liczb przez siebie."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://en.wikipedia.org/wiki/Number"; // untranslated +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Liczba."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "średnia elementów listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "maksymalna wartość z listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "mediana listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "minimalna wartość z listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "dominanty listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "losowy element z listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "odchylenie standardowe listy"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "suma elementów listy"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Zwróć średnią (średnią arytmetyczną) wartości liczbowych z listy."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Zwróć największą liczbę w liście."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Zwróć medianę listy."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Zwróć najmniejszą liczbę w liście."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Zwróć listę najczęściej występujących elementów w liście."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Zwróć losowy element z listy."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Zwróć odchylenie standardowe listy."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Zwróć sumę wszystkich liczb z listy."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "losowy ułamek"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Zwróć losowy ułamek między 0.0 (włącznie), a 1.0 (wyłącznie)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "losowa liczba całkowita od %1 do %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Zwróć losową liczbę całkowitą w ramach dwóch wyznaczonych granic, włącznie."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://pl.wikipedia.org/wiki/Zaokrąglanie"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "zaokrąglij"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "zaokrąglij w dół"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "zaokrąglij w górę"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Zaokrąglij w górę lub w dół."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://pl.wikipedia.org/wiki/Pierwiastek_kwadratowy"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "wartość bezwzględna"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "pierwiastek kwadratowy"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Zwróć wartość bezwzględną danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Zwróć e do potęgi danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Zwróć logarytm naturalny danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Zwraca logarytm dziesiętny danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Zwróć negację danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Zwróć 10 do potęgi danej liczby."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Zwróć pierwiastek kwadratowy danej liczby."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "arccos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "arcsin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "arctg"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://pl.wikipedia.org/wiki/Funkcje_trygonometryczne"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tg"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Zwróć arcus cosinus danej liczby."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Zwróć arcus sinus danej liczby."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Zwróć arcus tangens danej liczby."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Zwróć wartość cosinusa o stopniu (nie w radianach)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Zwróć wartość sinusa o stopniu (nie w radianach)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Zwróć tangens o stopniu (nie w radianach)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Utwórz zmienną colour"; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Utwórz zmienną typu number"; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Utwórz zmienną typu string"; +Blockly.Msg["NEW_VARIABLE"] = "Utwórz zmienną..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nowa nazwa zmiennej:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Nowy typ zmiennej:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "zezwól na czynności"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "z:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://pl.wikipedia.org/wiki/Podprogram"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Uruchom zdefiniowaną przez użytkownika funkcję '%1'."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://pl.wikipedia.org/wiki/Podprogram"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Uruchom zdefiniowaną przez użytkownika funkcję '%1' i użyj jej wyjścia."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "z:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Utwórz '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Opisz tę funkcję..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "zrób coś"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "do"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Tworzy funkcję nie posiadającą wyjścia."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "zwróć"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Tworzy funkcję posiadającą wyjście."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Uwaga: Ta funkcja ma powtórzone parametry."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Podświetl definicję funkcji"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Jeśli warunek jest spełniony zwróć drugą wartość."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Uwaga: Ten klocek może być używany tylko w definicji funkcji."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nazwa wejścia:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Dodaj wejście do funkcji."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "wejścia"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Dodaj, usuń lub zmień kolejność wejść tej funkcji."; +Blockly.Msg["REDO"] = "Ponów"; +Blockly.Msg["REMOVE_COMMENT"] = "Usuń komentarz"; +Blockly.Msg["RENAME_VARIABLE"] = "Zmień nazwę zmiennej..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Zmień nazwy wszystkich '%1' zmiennych na:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "dodaj tekst %2 do %1"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Dołącz tekst do zmiennej '%1'."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "na małe litery"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "na Pierwsza Duża"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "na WIELKIE LITERY"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Zwraca kopię tekstu z odwruconą wielkością liter."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "pobierz pierwszą literę"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "pobierz literę # od końca"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "pobierz literę #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "pobierz ostatnią literę"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "pobierz losową literę"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "w tekście %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Zwraca literę z określonej pozycji."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "policz %1 w %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Liczy ile razy dany tekst występuje w innym tekście."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Dodaj element do tekstu."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "połącz"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Dodaj, usuń lub zmień kolejność sekcji, aby zmodyfikować klocek tekstowy."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "do # litery od końca"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "do # litery"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "do ostatniej litery"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "w tekście"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "pobierz podciąg od pierwszej litery"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "pobierz podciąg od # litery od końca"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "pobierz podciąg od # litery"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Zwraca określoną część tekstu."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "znajdź pierwsze wystąpienie tekstu"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "znajdź ostatnie wystąpienie tekstu"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "w tekście %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Zwraca indeks pierwszego/ostatniego wystąpienia pierwszego tekstu w drugim tekście. Zwraca wartość %1, jeśli tekst nie został znaleziony."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 jest pusty"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Zwraca prawda (true), jeśli podany tekst jest pusty."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "utwórz tekst z"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Tworzy fragment tekstu, łącząc ze sobą dowolną liczbę tekstów."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "długość %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Zwraca liczbę liter (łącznie ze spacjami) w podanym tekście."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "wydrukuj %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Wyświetl określony tekst, liczbę lub inną wartość."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Zapytaj użytkownika o liczbę."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Zapytaj użytkownika o jakiś tekst."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "poproś o liczbę z tą wiadomością"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "poproś o tekst z tą wiadomością"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "zamień %1 na %2 w %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Zastąp wszystkie wystąpienia danego tekstu innym."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "odwróć %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Odwraca kolejność znaków w tekście."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://pl.wikipedia.org/wiki/Tekstowy_typ_danych"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Litera, wyraz lub linia tekstu."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "usuń spacje po obu stronach"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "usuń spacje z lewej strony"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "usuń spacje z prawej strony"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Zwraca kopię tekstu z usuniętymi spacjami z jednego lub z obu końców tekstu."; +Blockly.Msg["TODAY"] = "Dzisiaj"; +Blockly.Msg["UNDO"] = "Cofnij"; +Blockly.Msg["UNNAMED_KEY"] = "bez nazwy"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "element"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Utwórz klocek 'ustaw %1'"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Zwraca wartość tej zmiennej."; +Blockly.Msg["VARIABLES_SET"] = "przypisz %1 wartość %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Utwórz klocek 'pobierz %1'"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Wartości zmiennej i wejście będą identyczne."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Zmienna o nazwie '%1' już istnieje."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Zmienna o nazwie '%1' już istnieje i jest typu '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Obszar roboczy Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Powiedz coś..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/pt.js b/src/root_files/_common/binary-to-deriv/translations/pt.js new file mode 100644 index 0000000000000..5b92799dfe319 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/pt.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Adicionar Comentário"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Não se pode eliminar a variável '%1' porque faz parte da definição da função '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Alterar valor:"; +Blockly.Msg["CLEAN_UP"] = "Limpar Blocos"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Os blocos ocultados contêm avisos."; +Blockly.Msg["COLLAPSE_ALL"] = "Ocultar Blocos"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Ocultar Bloco"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "cor 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "cor 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "proporção"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "misturar"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Mistura duas cores com a proporção indicada (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "http://pt.wikipedia.org/wiki/Cor"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Escolha uma cor da paleta de cores."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "cor aleatória"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Escolha uma cor aleatoriamente."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "azul"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "verde"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "vermelho"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "pinte com"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Cria uma cor de acordo com a quantidade especificada de vermelho, verde e azul. Todos os valores devem estar entre 0 e 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "sair do ciclo"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "continuar com a próxima iteração do ciclo"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Sair do ciclo que está contido."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Ignorar o resto deste ciclo, e continuar com a próxima iteração."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Aviso: Este bloco só pode ser usado dentro de um ciclo."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "para cada item %1 na lista %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Para cada item numa lista, define a variável \"%1\" para o item e então faz algumas instruções."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "contar com %1 de %2 até %3 por %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Faz com que a variável \"%1\" assuma os valores desde o número inicial até ao número final, contando de acordo com o intervalo especificado e executa os blocos especificados."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Acrescente uma condição ao bloco se."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Acrescente uma condição de excepação final para o bloco se."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Acrescente, remova ou reordene secções para reconfigurar este bloco se."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "senão"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "senão se"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "se"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Se um valor é verdadeiro, então realize alguns passos."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Se um valor é verdadeiro, então realize o primeiro bloco de instruções. Senão, realize o segundo bloco de instruções"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Se o primeiro valor é verdadeiro, então realize o primeiro bloco de instruções. Senão, se o segundo valor é verdadeiro, realize o segundo bloco de instruções."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Se o primeiro valor é verdadeiro, então realize o primeiro bloco de instruções. Senão, se o segundo valor é verdadeiro, realize o segundo bloco de instruções. Se nenhum dos blocos for verdadeiro, realize o último bloco de instruções."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "http://pt.wikipedia.org/wiki/Estrutura_de_repeti%C3%A7%C3%A3o#Repeti.C3.A7.C3.A3o_com_vari.C3.A1vel_de_controle"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "faça"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "repetir %1 vez"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Faça algumas instruções várias vezes."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "repetir até"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "repetir enquanto"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Enquanto um valor for falso, então faça algumas instruções."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Enquanto um valor for verdadeiro, então faça algumas instruções."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Eliminar todos os %1 blocos?"; +Blockly.Msg["DELETE_BLOCK"] = "Eliminar Bloco"; +Blockly.Msg["DELETE_VARIABLE"] = "Eliminar a variável '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Eliminar %1 utilizações da variável '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Eliminar %1 Blocos"; +Blockly.Msg["DIALOG_CANCEL"] = "Cancelar"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Desativar Bloco"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicar"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicar comentário"; +Blockly.Msg["ENABLE_BLOCK"] = "Ativar Bloco"; +Blockly.Msg["EXPAND_ALL"] = "Expandir Blocos"; +Blockly.Msg["EXPAND_BLOCK"] = "Expandir Bloco"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Entradas Externas"; +Blockly.Msg["HELP"] = "Ajuda"; +Blockly.Msg["INLINE_INPUTS"] = "Entradas Em Linhas"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "criar lista vazia"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Retorna uma lista, de tamanho 0, contendo nenhum registo"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "lista"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Acrescente, remova ou reordene as seções para reconfigurar este bloco lista."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "criar lista com"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Acrescenta um item à lista."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Cria uma lista com qualquer número de itens."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "primeiro"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "# a partir do final"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "obter"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "obter e remover"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "último"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "aleatório"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "remover"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Retorna o primeiro item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Retorna o item na posição especificada da lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Retorna o último item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Retorna um item aleatório de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Remove e retorna o primeiro item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Remove e retorna o item na posição especificada de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Remove e retorna o último item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Remove e retorna um item aleatório de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Remove o primeiro item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Remove o item de uma posição especifica da lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Remove o último item de uma lista."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Remove um item aleatório de uma lista."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "até #, a partir do final"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "até #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "para o último"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "obtem sublista da primeira lista"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "obtem sublista de # a partir do final"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "obtem sublista de #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Cria uma cópia da porção especificada de uma lista."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 é o último item."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 é o primeiro item."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "encontre a primeira ocorrência do item"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "encontre a última ocorrência do item"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Retorna a posição da primeira/última ocorrência do item na lista. Retorna %1 se o item não for encontrado."; +Blockly.Msg["LISTS_INLIST"] = "na lista"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 está vazia"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Retona verdadeiro se a lista estiver vazia."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "tamanho de %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Retorna o tamanho de uma lista."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "criar lista com o item %1 repetido %2 vezes"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Cria uma lista constituída por um dado valor repetido o número de vezes especificado."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "inverter %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Inverter uma cópia da lista."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "como"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "inserir em"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "definir"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Insere o item no início da lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Insere o item numa posição especificada numa lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Insere o item no final da lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Insere o item numa posição aleatória de uma lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Define o primeiro item de uma lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Define o item na posição especificada de uma lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Define o último item de uma lista."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Define um item aleatório de uma lista."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "ascendente"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "descendente"; +Blockly.Msg["LISTS_SORT_TITLE"] = "ordenar %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Ordenar uma cópia de uma lista."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "alfabética, ignorar maiúsculas/minúsculas"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "numérica"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "alfabética"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "fazer lista a partir de texto"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "fazer texto a partir da lista"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Juntar uma lista de textos num único texto, separado por um delimitador."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Dividir o texto numa lista de textos, separando-o em cada delimitador."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "com delimitador"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "falso"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Retorna verdadeiro ou falso."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "verdadeiro"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "http://pt.wikipedia.org/wiki/Inequa%C3%A7%C3%A3o"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Retorna verdadeiro se ambas as entradas forem iguais entre si."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Retorna verdadeiro se a primeira entrada for maior que a segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Retorna verdadeiro se a primeira entrada for maior ou igual à segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Retorna verdadeiro se a primeira entrada for menor que a segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Retorna verdadeiro se a primeira entrada for menor ou igual à segunda entrada."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Retorna verdadeiro se ambas as entradas forem diferentes entre si."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "não %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Retorna verdadeiro se a entrada for falsa. Retorna falso se a entrada for verdadeira."; +Blockly.Msg["LOGIC_NULL"] = "nulo"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "http://en.wikipedia.org/wiki/Nullable_type"; +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Retorna nulo."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "e"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "ou"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Retorna verdadeiro se ambas as entradas forem verdadeiras."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Retorna verdadeiro se pelo menos uma das estradas for verdadeira."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "teste"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "http://en.wikipedia.org/wiki/%3F:"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "se falso"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "se verdadeiro"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Avalia a condição em \"teste\". Se a condição for verdadeira retorna o valor \"se verdadeiro\", senão retorna o valor \"se falso\"."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "http://pt.wikipedia.org/wiki/Aritm%C3%A9tica"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Retorna a soma de dois números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Retorna o quociente da divisão de dois números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Retorna a diferença de dois números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Retorna o produto de dois números."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Retorna o primeiro número elevado à potência do segundo número."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; // untranslated +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 de X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Devolver o arco tangente do ponto (X, Y) em graus entre -180 e 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "http://pt.wikipedia.org/wiki/Adi%C3%A7%C3%A3o"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "alterar %1 por %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Soma um número à variável \"%1\"."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "http://pt.wikipedia.org/wiki/Anexo:Lista_de_constantes_matem%C3%A1ticas"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Retorna uma das constantes comuns: π (3.141…), e (2.718…), φ (1.618…), sqrt(2) (1.414…), sqrt(½) (0.707…), ou ∞ (infinito)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "restringe %1 inferior %2 superior %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Restringe um número entre os limites especificados (inclusive)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "é divisível por"; +Blockly.Msg["MATH_IS_EVEN"] = "é par"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "é negativo"; +Blockly.Msg["MATH_IS_ODD"] = "é impar"; +Blockly.Msg["MATH_IS_POSITIVE"] = "é positivo"; +Blockly.Msg["MATH_IS_PRIME"] = "é primo"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Verifica se um número é par, impar, primo, inteiro, positivo, negativo, ou se é divisível por outro número. Retorna verdadeiro ou falso."; +Blockly.Msg["MATH_IS_WHOLE"] = "é inteiro"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "http://pt.wikipedia.org/wiki/Opera%C3%A7%C3%A3o_m%C3%B3dulo"; +Blockly.Msg["MATH_MODULO_TITLE"] = "resto da divisão de %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Retorna o resto da divisão de dois números."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "http://pt.wikipedia.org/wiki/N%C3%BAmero"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Um número."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "média de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "maior de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "mediana de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "menor de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "moda de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "item aleatório de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "desvio padrão de uma lista"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "soma da lista"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Retorna a média aritmética dos valores números da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Retorna o maior número da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Retorna a mediana da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Retorna o menor número da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Retorna a lista de item(ns) mais comum(ns) da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Retorna um elemento aleatório da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Retorna o desvio padrão dos números da lista."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Retorna a soma de todos os números da lista."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "http://pt.wikipedia.org/wiki/N%C3%BAmero_aleat%C3%B3rio"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "fração aleatória"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Insere uma fração aleatória entre 0.0 (inclusive) e 1.0 (exclusive)."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "http://pt.wikipedia.org/wiki/N%C3%BAmero_aleat%C3%B3rio"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "inteiro aleatório entre %1 e %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Retorna um número inteiro entre os dois limites especificados, inclusive."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "http://pt.wikipedia.org/wiki/Arredondamento"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "arredonda"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "arredonda para baixo"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "arredonda para cima"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Arredonda um número para cima ou para baixo."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "http://pt.wikipedia.org/wiki/Raiz_quadrada"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "absoluto"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "raíz quadrada"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Retorna o valor absoluto de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Retorna o número e elevado à potência de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Retorna o logarítmo natural de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Retorna o logarítmo em base 10 de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Retorna o oposto de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Retorna 10 elevado à potência de um número."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Retorna a raiz quadrada de um número."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "http://pt.wikipedia.org/wiki/Fun%C3%A7%C3%A3o_trigonom%C3%A9trica"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Retorna o arco cosseno de um número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Retorna o arco seno de um número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Retorna o arco tangente de um número."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Retorna o cosseno de um grau (não radiano)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Retorna o seno de um grau (não radiano)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Retorna a tangente de um grau (não radiano)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Criar variável colorida..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Criar variável numérica..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Criar variável de segmentos de texto..."; +Blockly.Msg["NEW_VARIABLE"] = "Criar variável…"; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Nome da nova variável:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Tipo da nova variável:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "permitir declarações"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "com:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://pt.wikipedia.org/wiki/Sub-rotina"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Executa a função \"%1\"."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://pt.wikipedia.org/wiki/Sub-rotina"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Executa a função \"%1\" e usa o seu retorno."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "com:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Criar \"%1\""; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Descreva esta função..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "faz algo"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "para"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Cria uma função que não tem retorno."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "retorna"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Cria uma função que possui um valor de retorno."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Aviso: Esta função tem parâmetros duplicados."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Destacar definição da função"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "se o valor é verdadeiro, então retorna um segundo valor."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Aviso: Este bloco só pode ser utilizado dentro da definição de uma função."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "nome da entrada:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Adicionar uma entrada para a função."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "entradas"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Adicionar, remover ou reordenar as entradas para esta função."; +Blockly.Msg["REDO"] = "Refazer"; +Blockly.Msg["REMOVE_COMMENT"] = "Remover Comentário"; +Blockly.Msg["RENAME_VARIABLE"] = "Renomear variável..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Renomear todas as variáveis '%1' para:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "para %1 acrescentar texto %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Acrescentar um pedaço de texto à variável \"%1\"."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "para minúsculas"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "para Iniciais Maiúsculas"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "para MAIÚSCULAS"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Retorna uma cópia do texto em formato diferente."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "obter primeira letra"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "obter letra nº a partir do final"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "obter letra nº"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "obter última letra"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "obter letra aleatória"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "no texto %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Retorna a letra na posição especificada."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "contar %1 em %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Conte quantas vezes um certo texto aparece dentro de algum outro texto."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Acrescentar um item ao texto."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "unir"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Acrescenta, remove ou reordena seções para reconfigurar este bloco de texto."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "até letra nº a partir do final"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "até letra nº"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "até última letra"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "no texto"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "obter subsequência a partir da primeira letra"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "obter subsequência de tamanho # a partir do final"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "obter subsequência de tamanho #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Retorna a parte especificada do texto."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "primeira ocorrência do texto"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "última ocorrência do texto"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "no texto %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Retorna a posição da primeira/última ocorrência do primeiro texto no segundo texto. Retorna %1 se o texto não for encontrado."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 está vazio"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Retorna verdadeiro se o texto fornecido estiver vazio."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "criar texto com"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Criar um pedaço de texto juntando qualquer número de itens."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "tamanho de %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Devolve o número de letras (incluindo espaços) do texto fornecido."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "imprime %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Imprime o texto, número ou outro valor especificado."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Pede ao utilizador um número."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Pede ao utilizador um texto."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "pede um número com a mensagem"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "Pede um texto com a mensagem"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "substituir %1 por %2 em %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Substituir todas as ocorrências de um certo texto dentro de algum outro texto."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "inverter %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Inverte a ordem dos caracteres no texto."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "http://pt.wikipedia.org/wiki/Cadeia_de_caracteres"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Uma letra, palavra ou linha de texto."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "remover espaços de ambos os lados"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "remover espaços à esquerda de"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "remover espaços à direita"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Retorna uma cópia do texto com os espaços removidos de uma ou ambas as extremidades."; +Blockly.Msg["TODAY"] = "Hoje"; +Blockly.Msg["UNDO"] = "Desfazer"; +Blockly.Msg["UNNAMED_KEY"] = "sem nome"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "item"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Criar \"definir %1\""; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Retorna o valor desta variável."; +Blockly.Msg["VARIABLES_SET"] = "definir %1 para %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Criar \"obter %1\""; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Define esta variável para o valor inserido."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Já existe uma variável com o nome de '%1'."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Já existe uma variável chamada '%1' para outra do tipo: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Espaço de trabalho de Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Diz algo..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/ru.js b/src/root_files/_common/binary-to-deriv/translations/ru.js new file mode 100644 index 0000000000000..18115ee58ed07 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/ru.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Добавить комментарий"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Невозможно удалить переменную '%1', поскольку она является частью определения функции '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Измените значение:"; +Blockly.Msg["CLEAN_UP"] = "Упорядочить блоки"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Свёрнутые блоки содержат предупреждения."; +Blockly.Msg["COLLAPSE_ALL"] = "Свернуть блоки"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Свернуть блок"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "цвет 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "цвет 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "доля цвета 1"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "смешать"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Смешивает два цвета в заданном соотношении (0.0 - 1.0)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://ru.wikipedia.org/wiki/Цвет"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Выберите цвет из палитры."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "случайный цвет"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "Выбирает цвет случайным образом."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "синего"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "зелёного"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "красного"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "цвет из"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Создаёт цвет с указанной пропорцией красного, зелёного и синего. Все значения должны быть между 0 и 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "выйти из цикла"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "перейти к следующему шагу цикла"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Прерывает этот цикл."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Пропускает остаток цикла и переходит к следующему шагу."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Предупреждение: этот блок может использоваться только внутри цикла."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "для каждого элемента %1 в списке %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Для каждого элемента в списке, присваивает переменной '%1' значение элемента и выполняет указанные команды."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "цикл по %1 от %2 до %3 с шагом %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Присваивает переменной '%1' значения от начального до конечного с заданным шагом и выполняет указанные команды."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Добавляет условие к блоку \"если\""; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Добавить заключительный подблок для случая, когда все условия ложны."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Добавьте, удалите, переставьте фрагменты для переделки блока \"если\"."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "иначе"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "иначе если"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "если"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Если условие истинно, выполняет команды."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Если условие истинно, выполняет первый блок команд. Иначе выполняется второй блок команд."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Если первое условие истинно, то выполняет первый блок команд. Иначе, если второе условие истинно, выполняет второй блок команд."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Если первое условие истинно, то выполняет первый блок команд. В противном случае, если второе условие истинно, выполняет второй блок команд. Если ни одно из условий не истинно, выполняет последний блок команд."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://ru.wikipedia.org/wiki/Цикл_(программирование)"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "выполнить"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "повторить %1 раз"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Выполняет некоторые команды несколько раз."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "повторять, пока не"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "повторять, пока"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Пока значение ложно, выполняет команды"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Пока значение истинно, выполняет команды."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Удалить все блоки (%1)?"; +Blockly.Msg["DELETE_BLOCK"] = "Удалить блок"; +Blockly.Msg["DELETE_VARIABLE"] = "Удалить переменную '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Удалить %1 использований переменной '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Удалить %1 блоков"; +Blockly.Msg["DIALOG_CANCEL"] = "Отмена"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Отключить блок"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Дублировать"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Дублировать комментарий"; +Blockly.Msg["ENABLE_BLOCK"] = "Включить блок"; +Blockly.Msg["EXPAND_ALL"] = "Развернуть блоки"; +Blockly.Msg["EXPAND_BLOCK"] = "Развернуть блок"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Вставки снаружи"; +Blockly.Msg["HELP"] = "Справка"; +Blockly.Msg["INLINE_INPUTS"] = "Вставки внутри"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "создать пустой список"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Возвращает список длины 0, не содержащий данных"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "список"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Добавьте, удалите, переставьте элементы для переделки блока списка."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "создать список из"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Добавляет элемент к списку."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Создаёт список с любым числом элементов."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "первый"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "№ с конца"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "№"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "взять"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "взять и удалить"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "последний"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "произвольный"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "удалить"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Возвращает первый элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Возвращает элемент в указанной позиции списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Возвращает последний элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Возвращает случайный элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Удаляет и возвращает первый элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Удаляет и возвращает элемент в указанной позиции списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Удаляет и возвращает последний элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Удаляет и возвращает случайный элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Удаляет первый элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Удаляет элемент в указанной позиции списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Удаляет последний элемент списка."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Удаляет случайный элемент списка."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "по № с конца"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "по №"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "по последний"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "взять подсписок с первого"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "взять подсписок с № с конца"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "взять подсписок с №"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Создаёт копию указанной части списка."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 - последний элемент."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 - первый элемент."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "найти первое вхождение элемента"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "найти последнее вхождение элемента"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Возвращает номер позиции первого/последнего вхождения элемента в списке. Возвращает %1, если элемент не найден."; +Blockly.Msg["LISTS_INLIST"] = "в списке"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 пуст"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Возвращает значение истина, если список пуст."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "длина %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Возвращает длину списка."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "создать список из элемента %1, повторяющегося %2 раз"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Создаёт список, состоящий из заданного числа копий элемента."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "изменить порядок на обратный %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Изменить порядок списка на обратный."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "="; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "вставить в"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "присвоить"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Вставляет элемент в начало списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Вставляет элемент в указанной позиции списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Добавляет элемент в конец списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Вставляет элемент в случайное место в списке."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Присваивает значение первому элементу списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Присваивает значение элементу в указанной позиции списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Присваивает значение последнему элементу списка."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Присваивает значение случайному элементу списка."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "по возрастанию"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "по убыванию"; +Blockly.Msg["LISTS_SORT_TITLE"] = "сортировать %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Сортировать копию списка."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "по алфавиту, без учёта регистра"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "числовая"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "по алфавиту"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "сделать список из текста"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "собрать текст из списка"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Соединяет список текстов в один текст с разделителями."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Разбивает текст в список текстов, по разделителям."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "с разделителем"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "ложь"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Возвращает значение истина или ложь."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "истина"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://ru.wikipedia.org/wiki/Неравенство"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Возвращает положительное значение, если вводы равны."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Возвращает значение истина, если первая вставка больше второй."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Возвращает значение истина, если первая вставка больше или равна второй."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Возвращает положительное значение, если первый ввод меньше второго."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Возвращает значение истина, если первая вставка меньше или равна второй."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Возвращает положительное значение, если вводы не равны."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "не %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Возвращает значение истина, если вставка ложна. Возвращает значение ложь, если вставка истинна."; +Blockly.Msg["LOGIC_NULL"] = "ничто"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Возвращает ничто."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "и"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "или"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Возвращает значение истина, если обе вставки истинны."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Возвращает значение истина, если хотя бы одна из вставок истинна."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "выбрать по"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://ru.wikipedia.org/wiki/Тернарная_условная_операция"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "если ложь"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "если истина"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Проверяет условие выбора. Если условие истинно, возвращает первое значение, в противном случае возвращает второе значение."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://ru.wikipedia.org/wiki/Арифметика"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Возвращает сумму двух чисел."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Возвращает частное от деления первого числа на второе."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Возвращает разность двух чисел."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Возвращает произведение двух чисел."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Возвращает первое число, возведённое в степень второго числа."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; // untranslated +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 от X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Возвращает арктангенс точки (X, Y) в градусах от -180 до 180."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://ru.wikipedia.org/wiki/Идиома_(программирование)#Инкремент"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "увеличить %1 на %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Добавляет число к переменной '%1'."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://ru.wikipedia.org/wiki/Математическая_константа"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Возвращает одну из распространённых констант: π (3.141...), e (2.718...), φ (1.618...), sqrt(2) (1.414...), sqrt(½) (0.707...) или ∞ (бесконечность)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "ограничить %1 снизу %2 сверху %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Ограничивает число нижней и верхней границами (включительно)."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "делится на"; +Blockly.Msg["MATH_IS_EVEN"] = "чётное"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "отрицательное"; +Blockly.Msg["MATH_IS_ODD"] = "нечётное"; +Blockly.Msg["MATH_IS_POSITIVE"] = "положительное"; +Blockly.Msg["MATH_IS_PRIME"] = "простое"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Проверяет, является ли число чётным, нечётным, простым, целым, положительным, отрицательным или оно кратно определённому числу. Возвращает значение истина или ложь."; +Blockly.Msg["MATH_IS_WHOLE"] = "целое"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://ru.wikipedia.org/wiki/Деление_с_остатком"; +Blockly.Msg["MATH_MODULO_TITLE"] = "остаток от %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Возвращает остаток от деления двух чисел."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://ru.wikipedia.org/wiki/Число"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Число."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "среднее арифметическое списка"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "наибольшее в списке"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "медиана списка"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "наименьшее в списке"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "моды списка"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "случайный элемент списка"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "стандартное отклонение списка"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "сумма списка"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Возвращает среднее арифметическое списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Возвращает наибольшее число списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Возвращает медиану списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Возвращает наименьшее число списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Возвращает список наиболее часто встречающихся элементов списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Возвращает случайный элемент списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Возвращает стандартное отклонение списка."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Возвращает сумму всех чисел в списке."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://ru.wikipedia.org/wiki/Генератор_псевдослучайных_чисел"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "случайное число от 0.0 до 1.0 (вкл.)"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Возвращает случайное число от 0.0 (включительно) до 1.0."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://ru.wikipedia.org/wiki/Генератор_псевдослучайных_чисел"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "случайное целое число от %1 до %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Возвращает случайное число между двумя заданными пределами (включая и их)."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://ru.wikipedia.org/wiki/Округление"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "округлить"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "округлить к меньшему"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "округлить к большему"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Округляет число до большего или меньшего."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://ru.wikipedia.org/wiki/Квадратный_корень"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "модуль"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "квадратный корень"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Возвращает модуль числа"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Возвращает е в указанной степени."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Возвращает натуральный логарифм числа."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Возвращает десятичный логарифм числа."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Возвращает противоположное число."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Возвращает 10 в указанной степени."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Возвращает квадратный корень числа."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "arccos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "arcsin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "arctan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://ru.wikipedia.org/wiki/Тригонометрические_функции"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Возвращает арккосинус (в градусах)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Возвращает арксинус (в градусах)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Возвращает арктангенс (в градусах)"; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Возвращает косинус угла в градусах."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Возвращает синус угла в градусах."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Возвращает тангенс угла в градусах."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Создать переменную цвета..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Создать числовую переменную..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Создать строковую переменную..."; +Blockly.Msg["NEW_VARIABLE"] = "Создать переменную…"; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Имя новой переменной:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Новый тип переменной:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "разрешить операторы"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "с:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://ru.wikipedia.org/wiki/Подпрограмма"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Исполняет определённую пользователем процедуру '%1'."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://ru.wikipedia.org/wiki/Подпрограмма"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Исполняет определённую пользователем процедуру '%1' и возвращает вычисленное значение."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "с:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Создать вызов '%1'"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Опишите эту функцию…"; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://ru.wikipedia.org/wiki/Подпрограмма"; +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "выполнить что-то"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "чтобы"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Создаёт процедуру, не возвращающую значение."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://ru.wikipedia.org/wiki/Функция_(программирование)"; +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "вернуть"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Создаёт процедуру, возвращающую значение."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Предупреждение: эта функция имеет повторяющиеся параметры."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Выделить определение процедуры"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Если первое значение истинно, возвращает второе значение."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Предупреждение: Этот блок может использоваться только внутри определения функции."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "имя параметра:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Добавить входной параметр в функцию."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "параметры"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Добавить, удалить или изменить порядок входных параметров для этой функции."; +Blockly.Msg["REDO"] = "Повторить"; +Blockly.Msg["REMOVE_COMMENT"] = "Удалить комментарий"; +Blockly.Msg["RENAME_VARIABLE"] = "Переименовать переменную…"; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Переименовать все переменные '%1' в:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "к %1 добавить текст %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Добавить текст к переменной «%1»."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "в строчные буквы"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "в Заглавные Начальные Буквы"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "в ЗАГЛАВНЫЕ БУКВЫ"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Возвращает копию текста с ЗАГЛАВНЫМИ или строчными буквами."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "взять первую букву"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "взять букву № с конца"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "взять букву №"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "взять последнюю букву"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "взять случайную букву"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "в тексте %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Возвращает букву в указанной позиции."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "подсчитать количество %1 в %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Подсчитать, сколько раз отрывок текста появляется в другом тексте."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "Добавить элемент к тексту."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "соединить"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Добавьте, удалите, переставьте фрагменты для переделки текстового блока."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "по букву № с конца"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "по букву №"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "по последнюю букву"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "в тексте"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "взять подстроку с первой буквы"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "взять подстроку с буквы № с конца"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "взять подстроку с буквы №"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Возвращает указанную часть текста."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "найти первое вхождение текста"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "найти последнее вхождение текста"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "в тексте %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Возвращает номер позиции первого/последнего вхождения первого текста во втором. Возвращает %1, если текст не найден."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 пуст"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Возвращает значение истина, если предоставленный текст пуст."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "создать текст из"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Создаёт фрагмент текста, объединяя любое число элементов"; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "длина %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Возвращает число символов (включая пробелы) в заданном тексте."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "напечатать %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "Печатает текст, число или другой объект."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Запросить у пользователя число."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Запросить у пользователя текст."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "запросить число с подсказкой"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "запросить текст с подсказкой"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "заменить %1 на %2 в %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Заменить все вхождения некоторого текста другим текстом."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "изменить порядок на обратный %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Меняет порядок символов в тексте на обратный."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://ru.wikipedia.org/wiki/Строковый_тип"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Буква, слово или строка текста."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "обрезать пробелы с двух сторон"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "обрезать пробелы слева"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "обрезать пробелы справа"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Возвращает копию текста с пробелами, удалёнными с одного или обоих концов."; +Blockly.Msg["TODAY"] = "Сегодня"; +Blockly.Msg["UNDO"] = "Отменить"; +Blockly.Msg["UNNAMED_KEY"] = "без названия"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "элемент"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Создать блок \"присвоить\" для %1"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Возвращает значение этой переменной."; +Blockly.Msg["VARIABLES_SET"] = "присвоить %1 = %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Создать вставку %1"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Присваивает переменной значение вставки."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Переменная с именем '%1' уже существует."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Название переменной '%1' уже используется для другого типа: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Рабочая область Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Напишите здесь что-нибудь..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/vi.js b/src/root_files/_common/binary-to-deriv/translations/vi.js new file mode 100644 index 0000000000000..793ff650ea715 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/vi.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "Thêm Chú Giải"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "Không thể xóa giá trị '%1' vì nó được bao gồm trong định nghĩa của chức năng '%2'"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "Thay giá trị thành:"; +Blockly.Msg["CLEAN_UP"] = "Sắp xếp lại các khối"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "Các khối bị sập có chứa cảnh báo."; +Blockly.Msg["COLLAPSE_ALL"] = "Thu Nhỏ Mọi Mảnh"; +Blockly.Msg["COLLAPSE_BLOCK"] = "Thu Nhỏ Mảnh"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "màu 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "màu 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "tỉ lệ"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "pha"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "Pha hai màu với nhau theo tỉ lệ (0 - 100)."; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://vi.wikipedia.org/wiki/M%C3%A0u_s%E1%BA%AFc"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "Chọn một màu từ bảng màu."; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "màu bất kỳ"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "chọn một màu bất kỳ."; +Blockly.Msg["COLOUR_RGB_BLUE"] = "màu xanh dương"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "màu xanh lá cây"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "màu đỏ"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "tạo màu từ"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "Tạo màu từ ba màu: đỏ, xanh lá cây, xanh dương với số lượng cụ thể. Mỗi số phải có giá trị từ 0 đến 100."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "thoát"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "sang lần lặp tiếp theo"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "Thoát khỏi vòng lặp hiện tại."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "Bỏ qua phần còn lại trong vòng lặp này, và sang lần lặp tiếp theo."; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "Chú ý: Mảnh này chỉ có thế dùng trong các vòng lặp."; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "với mỗi thành phần %1 trong danh sách %2"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "Trong một danh sách, lấy từng thành phần, gán vào biến \"%1\", rồi thực hiện một số lệnh."; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "đếm theo %1 từ %2 đến %3 mỗi lần thêm %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "Cho biến '%1' lấy các giá trị từ số bắt đầu đến số kết thúc, đếm theo khoảng thời gian đã chỉ định và thực hiện các khối được chỉ định."; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "Thêm một điều kiện vào mảnh nếu."; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "Cuối cùng, khi không điều kiện nào đúng."; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "Thêm, bỏ, hoặc đổi thứ tự các mảnh con để tạo cấu trúc mới cho mảnh nếu."; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "nếu không"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "nếu không nếu"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "nếu"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "Nếu điều kiện đúng, thực hiện các lệnh."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "Nếu điều kiện đúng, thực hiện các lệnh đầu. Nếu sai, thực hiện các lệnh sau."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "Nếu điều kiện đúng, thực hiện các lệnh đầu. Nếu không, nếu điều kiện thứ hai đúng, thực hiện các lệnh thứ hai."; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "Nếu điều kiện đúng, thực hiện các lệnh đầu. Nếu không, nếu điều kiện thứ hai đúng, thực hiện các lệnh thứ hai. Nếu không điều kiện nào đúng, thực hiện các lệnh cuối cùng."; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://en.wikipedia.org/wiki/For_loop"; // untranslated +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "thực hiện"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "lặp lại %1 lần"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "Thực hiện các lệnh vài lần."; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "lặp lại cho đến khi"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "lặp lại trong khi"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "Miễn là điều kiện còn sai, thì thực hiện các lệnh. Khi điều kiện đúng thì ngưng."; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "Miễn là điều kiện còn đúng, thì thực hiện các lệnh."; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "Xóa hết %1 mảnh?"; +Blockly.Msg["DELETE_BLOCK"] = "Xóa Mảnh Này"; +Blockly.Msg["DELETE_VARIABLE"] = "Xóa giá trị '%1'"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "Xóa %1 lần dùng của giá trị '%2'?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "Xóa %1 Mảnh"; +Blockly.Msg["DIALOG_CANCEL"] = "Hủy"; +Blockly.Msg["DIALOG_OK"] = "OK"; +Blockly.Msg["DISABLE_BLOCK"] = "Ngưng Tác Dụng"; +Blockly.Msg["DUPLICATE_BLOCK"] = "Tạo Bản Sao"; +Blockly.Msg["DUPLICATE_COMMENT"] = "Bình luận trùng"; +Blockly.Msg["ENABLE_BLOCK"] = "Phục Hồi Tác Dụng"; +Blockly.Msg["EXPAND_ALL"] = "Mở Lớn Mọi Mảnh"; +Blockly.Msg["EXPAND_BLOCK"] = "Mở Lớn Mảnh"; +Blockly.Msg["EXTERNAL_INPUTS"] = "Chỗ Gắn Bên Ngoài"; +Blockly.Msg["HELP"] = "Trợ Giúp"; +Blockly.Msg["INLINE_INPUTS"] = "Chỗ Gắn Cùng Dòng"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "tạo danh sách trống"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "Hoàn trả một danh sách, với độ dài 0, không có thành tố nào cả"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "danh sách"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "Thêm, bỏ, hoặc sắp xếp lại các thành phần để tạo dựng mảnh danh sách này."; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "tạo danh sách gồm"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "Thêm vật vào danh sách."; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "Tạo một danh sách bao gồm nhiều vậts, với một số lượng bất kỳ."; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "đầu tiên"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "(đếm từ cuối) thứ"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "thứ"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "lấy thành tố"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "lấy và xóa thành tố"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "cuối cùng"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "bất kỳ"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "xóa thành tố"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "Hoàn trả thành tố đầu tiên trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "Hoàn trả thành tố trong danh sách ở vị trí ấn định."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "Hoàn trả thành tố cuối cùng trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "Hoàn trả một thành tố bất kỳ trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "Hoàn trả và xóa thành tố đầu tiên trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "Hoàn trả và xóa thành tố trong danh sách ở vị trí ấn định."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "Hoàn trả và xóa thành tố cuối cùng trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "Hoàn trả và xóa mộtthành tố bất kỳ trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "Xóa thành tố đầu tiên trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "Xóa thành tố trong danh sách ở vị trí ấn định."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "Xóa thành tố cuối cùng trong danh sách."; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "Xóa thành tố bất kỳ trong danh sách."; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "đến (đếm từ cuối) thứ"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "đến thứ"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "đến cuối cùng"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "lấy một danh sách con từ đầu tiên"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "lấy một danh sách con từ (đếm từ cuối) từ vị trí thứ"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "lấy một danh sách con từ vị trí thứ"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "Lấy một mảng của danh sách này để tạo danh sách con."; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 là thành tố cuối cùng."; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 là thành tố đầu tiên."; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "tìm sự có mặt đầu tiên của vật"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "tìm sự có mặt cuối cùng của vật"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "Hoàn trả vị trí xuất hiện đầu tiên/cuối cùng của vật trong danh sách. Nếu không tìm thấy thì hoàn trả số %1."; +Blockly.Msg["LISTS_INLIST"] = "trong dánh sách"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 trống rỗng"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "Hoàn trả “đúng\" nếu danh sách không có thành tử nào."; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "độ dài của %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "Hoàn trả độ dài của một danh sách."; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "tạo danh sách gồm một vật %1 lặp lại %2 lần"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "Tạo danh sách gồm một số lượng vật nhất định với mỗi vật đều giống nhau."; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "đảo ngược %1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "Đảo ngược bản sao chép của một danh sách."; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "giá trị"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "chèn vào vị trí"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "đặt"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "Chèn vật vào đầu danh sách."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "Chèn vật vào danh sách theo vị trí ấn định."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "Gắn thêm vật vào cuối danh sách."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "Gắn chèn vật vào danh sách ở vị trí ngẫu nhiên."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "Đặt giá trị của thành tố đầu tiên trong danh sách."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "Đặt giá trị của thành tố ở vị trí ấn định trong một danh sách."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "Đặt giá trị của thành tố cuối cùng trong danh sách."; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "Đặt giá trị của thành tố ngẫu nhiên trong danh sách."; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "tăng dần"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "giảm dần"; +Blockly.Msg["LISTS_SORT_TITLE"] = "sắp xếp %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "Sắp xếp một bản sao của một danh sách."; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "chữ cái, không phân biệt hoa/thường"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "số"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "chữ cái"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "tạo danh sách từ văn bản"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "tạo văn bản từ danh sách"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "Liên kết một danh sách các văn bản vào một văn bản, cách nhau bằng dấu phân cách."; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "Tách văn bản thành một danh sách các văn bản nhỏ, ngắt bởi các ký tự phân cách."; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "với ký tự phân cách"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "sai"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "Hoàn trả \"đúng\" hoặc \"sai\"."; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "đúng"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://vi.wikipedia.org/wiki/B%E1%BA%A5t_%C4%91%E1%BA%B3ng_th%E1%BB%A9c"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "Hoàn trả giá trị \"đúng\" (true) nếu giá trị hai đầu vào bằng nhau."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "Hoàn trả giá trị \"đúng\" (true) nếu đầu vào thứ nhất lớn hơn đầu vào thứ hai."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "Hoàn trả giá trị \"đúng\" (true) nếu đầu vào thứ nhất lớn hơn hoặc bằng đầu vào thứ hai."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "Hoàn trả giá trị \"đúng\" (true) nếu đầu vào thứ nhất nhỏ hơn đầu vào thứ hai."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "Hoàn trả giá trị \"đúng\" (true) nếu đầu vào thứ nhất nhỏ hơn hoặc bằng đầu vào thứ hai."; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "Hoàn trả giá trị \"đúng\" (true) nếu giá trị hai đầu vào không bằng nhau."; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "không %1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "Hoàn trả \"đúng\" (true) nếu đầu vào sai. Hoàn trả \"sai\" (false) nếu đầu vào đúng."; +Blockly.Msg["LOGIC_NULL"] = "trống không"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "Hoàn trả trống không."; +Blockly.Msg["LOGIC_OPERATION_AND"] = "và"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "hoặc"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "Hoàn trả \"đúng\" (true) nếu cả hai đầu vào đều đúng."; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "Hoàn trả \"đúng\" (true) nếu ít nhất một trong hai đầu vào đúng."; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "kiểm tra"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; // untranslated +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "nếu sai"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "nếu đúng"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "Kiểm tra điều kiện. Nếu điều kiện đúng, hoàn trả giá trị từ mệnh đề \"nếu đúng\" nếu không đúng, hoàn trả giá trị từ mệnh đề \"nếu sai\"."; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://vi.wikipedia.org/wiki/S%E1%BB%91_h%E1%BB%8Dc"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "Hoàn trả tổng của hai con số."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "Hoàn trả thương của hai con số."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "Hoàn trả hiệu của hai con số."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "Hoàn trả tích của hai con số."; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "Hoàn trả số lũy thừa với số thứ nhất là cơ số và số thứ hai là số mũ."; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://en.wikipedia.org/wiki/Atan2"; // untranslated +Blockly.Msg["MATH_ATAN2_TITLE"] = "atan2 của X:%1 Y:%2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "Trả về arctangent của điểm (X, Y) trong khoảng từ -180 độ đến 180 độ."; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://vi.wikipedia.org/wiki/Ph%C3%A9p_c%E1%BB%99ng"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "cộng vào %1 giá trị %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "Cộng số đầu vào vào biến \"%1\"."; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://en.wikipedia.org/wiki/Mathematical_constant"; // untranslated +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "Hoàn trả các đẳng số thường gặp: π (3.141…), e (2.718…), φ (1.618…), sqrt(2) (1.414…), sqrt(½) (0.707…), or ∞ (vô cực)."; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "giới hạn %1 không dưới %2 không hơn %3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "Giới hạn số đầu vào để không dưới số thứ nhất và không hơn số thứ hai."; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "chia hết cho"; +Blockly.Msg["MATH_IS_EVEN"] = "là số chẵn"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "là số âm"; +Blockly.Msg["MATH_IS_ODD"] = "là số lẻ"; +Blockly.Msg["MATH_IS_POSITIVE"] = "là số dương"; +Blockly.Msg["MATH_IS_PRIME"] = "là số nguyên tố"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "Kiểm tra con số xem nó có phải là số chẵn, lẻ, nguyên tố, nguyên, dương, âm, hay xem nó có chia hết cho số đầu vào hay không. Hoàn trả đúng hay sai."; +Blockly.Msg["MATH_IS_WHOLE"] = "là số nguyên"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://en.wikipedia.org/wiki/Modulo_operation"; // untranslated +Blockly.Msg["MATH_MODULO_TITLE"] = "số dư của %1 ÷ %2"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "Chia số thứ nhất cho số thứ hai rồi hoàn trả số dư từ."; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://vi.wikipedia.org/wiki/S%E1%BB%91"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "Một con số."; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "giá trị trung bình của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "số lớn nhât của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "số trung vị của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "số nhỏ nhất của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "các mode của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "một số bất kỳ của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "độ lệch chuẩn của một danh sách"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "tổng của một danh sách"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "Hoàn trả giá trị trung bình từ của danh sách số."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "Hoàn trả số lớn nhất trong tất cả các số trong danh sách."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "Hoàn trả số trung vị của danh sách số."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "Hoàn trả số nhỏ nhất trong tất cả các số trong danh sách."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "Hoàn trả các số có mặt nhiều nhất trong danh sách."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "Hoàn trả một số bất kỳ từ các số trong danh sách."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "Hoàn trả độ lệch chuẩn của danh sách số."; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "Hoàn trả tổng số của tất cả các số trong danh sách."; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "phân số bất kỳ"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "Hoàn trả một phân số bất kỳ không nhỏ hơn 0.0 và không lớn hơn 1.0."; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://en.wikipedia.org/wiki/Random_number_generation"; // untranslated +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "Một số nguyên bất kỳ từ %1 đến %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "Hoàn trả một số nguyên bất kỳ lớn hơn hoặc bằng số đầu và nhỏ hơn hoặc bằng số sau."; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://en.wikipedia.org/wiki/Rounding"; // untranslated +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "làm tròn"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "làm tròn xuống"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "làm tròn lên"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "Làm tròn lên hoặc tròn xuống số đầu vào."; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://vi.wikipedia.org/wiki/C%C4%83n_b%E1%BA%ADc_hai"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "giá trị tuyệt đối"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "căn bật hai"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "Hoàn trả giá trị tuyệt đối của số đầu vào."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "Hoàn trả lũy thừa của số e với số mũ đầu vào."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "Hoàn trả lôgarit tự nhiên của số đầu vào."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "Hoàn trả lôgarit cơ số 10 của số đầu vào."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "Đổi dấu của số đầu vào: âm thành dương và dương thành âm, và hoàn trả số mới."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "Hoàn trả lũy thừa của số 10 với số mũ đầu vào."; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "Hoàn trả căn bật hai của số đầu vào."; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; +Blockly.Msg["MATH_TRIG_COS"] = "cos"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://vi.wikipedia.org/wiki/H%C3%A0m_l%C6%B0%E1%BB%A3ng_gi%C3%A1c"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "Hoàn trả Arccos của một góc (theo độ)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "Hoàn trả Arcsin của một góc (theo độ)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "Hoàn trả Arctang của một góc (theo độ)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "Hoàn trả Cos của một góc (theo độ)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "Hoàn trả Sin của một góc (theo độ)."; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "Hoàn trả Tang của một góc (theo độ)."; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "Tạo một giá trị màu sắc..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "Tạo một giá trị số..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "Tạo một giá trị dạng chuỗi..."; +Blockly.Msg["NEW_VARIABLE"] = "Tạo biến..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "Tên của biến mới:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "Kiểu giá trị mới:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "cho phép báo cáo"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "với:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://vi.wikipedia.org/wiki/Ch%C6%B0%C6%A1ng_tr%C3%ACnh_con"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "Chạy một thủ tục không có giá trị hoàn trả."; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://vi.wikipedia.org/wiki/Ch%C6%B0%C6%A1ng_tr%C3%ACnh_con"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "Chạy một thủ tục có giá trị hoàn trả."; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "với:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "Tạo mảnh \"thực hiện %1\""; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "Mô tả hàm này..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "làm gì đó"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "thủ tục để"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "Một thủ tục không có giá trị hoàn trả."; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://en.wikipedia.org/wiki/Subroutine"; // untranslated +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "hoàn trả"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "Một thủ tục có giá trị hoàn trả."; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "Chú ý: Thủ tục này có lặp lại tên các tham số."; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "Làm nổi bật thủ tục"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "Khi điều kiện đúng thì hoàn trả một giá trị."; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "Chú ý: Mảnh này chỉ có thể dùng trong một thủ tục."; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "biến:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "Thêm một đầu vào cho hàm."; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "các tham số"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "Thêm, xóa hoặc sắp xếp lại các đầu vào cho hàm này."; +Blockly.Msg["REDO"] = "Làm lại"; +Blockly.Msg["REMOVE_COMMENT"] = "Xóa Chú Giải"; +Blockly.Msg["RENAME_VARIABLE"] = "Thay tên biến..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "Thay tên tất cả các biến \"%1\" thành:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "ở cuối %1 thêm văn bản %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "Thêm một mảng văn bản vào biến \"%1\"."; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "thành chữ thường"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "thành Chữ In Đầu Mỗi Từ"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "thành CHỮ IN HOA"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "Hoàn trả văn bản sau khi chuyển đổi chữ in hoa hay thường."; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "lấy ký tự đầu tiên"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "lấy từ phía cuối, ký tự thứ"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "lấy ký tự thứ"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "lấy ký tự cuối cùng"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "lấy ký tự bất kỳ"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "trong văn bản %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "Hoàn trả ký tự ở vị trí đặt ra."; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "đến %1 trong %2"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "Đếm số lần một đoạn văn bản xuất hiện trong một đoạn văn bản khác."; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "thêm vật mới vào văn bản."; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "kết nối"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "Thêm, bỏ, hoặc sắp xếp lại các thành phần để tạo dựng mảnh văn bản này."; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "đến từ phía cuối, ký tự thứ"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "đến ký tự thứ"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "đến ký tự cuối cùng"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "trong văn bản"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "lấy từ ký tự đầu tiên"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "lấy từ phía cuối, ký tự thứ"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "lấy từ ký tự thứ"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "Hoàn trả một mảng ký tự ấn định từ trong văn bản."; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "tìm sự có mặt đầu tiên của"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "tìm sự có mặt cuối cùng của"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "trong văn bản %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "Hoàn trả vị trí xuất hiện đầu/cuối của văn bản thứ nhất trong văn bản thứ hai. Nếu không tìm thấy thì hoàn trả số %1."; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 trống không"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "Hoàn trả “đúng nếu văn bản không có ký tự nào."; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "tạo văn bản từ"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "Tạo một văn bản từ các thành phần."; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "độ dài của %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "Hoàn trả số lượng ký tự (kể cả khoảng trắng) trong văn bản đầu vào."; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "in lên màng hình %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "In ra màng hình một văn bản, con số, hay một giá trị đầu vào khác."; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "Xin người dùng nhập vào một con số."; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "Xin người dùng nhập vào một văn bản."; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "Xin người dùng nhập vào con số với dòng hướng dẫn"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "Xin người dùng nhập vào văn bản với dòng hướng dẫn"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "thay thế %1 bằng %2 trong %3"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "Thay thế tất cả các lần xuất hiện của văn bản bằng văn bản khác."; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "đảo ngược %1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "Đảo ngược thứ tự của các chữ cái trong văn bản."; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://en.wikipedia.org/wiki/string_(computer_science)"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "Một ký tự, một từ, hay một dòng."; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "cắt các không gian từ cả hai mặt của"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "cắt các không gian từ bên trái của"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "cắt các không gian từ bên phải của"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "Hoàn trả bản sao của văn bản sau khi xóa khoảng trắng từ một hoặc hai bên."; +Blockly.Msg["TODAY"] = "Hôm nay"; +Blockly.Msg["UNDO"] = "Hoàn tác"; +Blockly.Msg["UNNAMED_KEY"] = "không tên"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "vật"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "Tạo mảnh \"đặt vào %1\""; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "Hoàn trả giá trị của."; +Blockly.Msg["VARIABLES_SET"] = "cho %1 bằng %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "Tạo mảnh \"lấy %1\""; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "Đặt giá trị của biến này thành..."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "Một biến có tên '%1' đã tồn tại."; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "Giá trị '%1' đã tồn tại dưới dạng: '%2'."; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Không gian làm việc Blockly"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Hãy nói gì đó..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/zh-hans.js b/src/root_files/_common/binary-to-deriv/translations/zh-hans.js new file mode 100644 index 0000000000000..18195d66a3035 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/zh-hans.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "添加注释"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "不能删除变量“%1”,因为它是函数“%2”定义的一部分"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "更改值:"; +Blockly.Msg["CLEAN_UP"] = "整理块"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "已收起的信息块内包含警告。"; +Blockly.Msg["COLLAPSE_ALL"] = "折叠块"; +Blockly.Msg["COLLAPSE_BLOCK"] = "折叠块"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "颜色1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "颜色2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "比例"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "混合"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "把两种颜色以一个给定的比例(0.0-1.0)进行混合。"; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://zh.wikipedia.org/wiki/颜色"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "从调色板中选择一种颜色。"; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "随机颜色"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "随机选择一种颜色。"; +Blockly.Msg["COLOUR_RGB_BLUE"] = "蓝色"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "绿色"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "红色"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "颜色"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "通过指定红色、绿色和蓝色的量创建一种颜色。所有的值必须在0和100之间。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "跳出循环"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "继续下一轮循环"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "跳出包含它的循环。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "跳过本轮循环的剩余部分,并继进行续下一轮循环。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "警告:这个块只能在循环内使用。"; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "遍历列表 %2 里的每一项 %1"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "遍历列表中的每一项,将变量“%1”设为所选项,并执行一些语句。"; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "变量 %1 从 %2 数到 %3 每次增加 %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "用变量%1记录从开始数值到终止数值之间的数值,数值按指定间隔增加,并执行指定的块。"; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "在这个if语句块中增加一个条件。"; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "在这个if语句块中添加一个最终的,包括所有其余情况的条件。"; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "增加、删除或重新排列各节来重新配置这个if语句块。"; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "否则"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "否则如果"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "如果"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "如果值为真,执行一些语句。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "如果值为真,则执行第一块语句。否则,则执行第二块语句。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "如果第一个值为真,则执行第一块的语句。否则,如果第二个值为真,则执行第二块的语句。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "如果第一个值为真,则执行第一块对语句。否则,如果第二个值为真,则执行语句的第二块。如果没有值为真,则执行最后一块的语句。"; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://zh.wikipedia.org/wiki/For循环"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "执行"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "重复 %1 次"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "多次执行一些语句。"; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "重复直到条件满足"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "当条件满足时重复"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "只要值为假,就一直循环执行一些语句。"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "只要值为真,就一直循环执行一些语句。"; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "删除所有 %1 个块吗?"; +Blockly.Msg["DELETE_BLOCK"] = "删除块"; +Blockly.Msg["DELETE_VARIABLE"] = "删除变量“%1”"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "要删除对变量“%2”的%1个引用吗?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "删除 %1 个块"; +Blockly.Msg["DIALOG_CANCEL"] = "取消"; +Blockly.Msg["DIALOG_OK"] = "确认"; +Blockly.Msg["DISABLE_BLOCK"] = "禁用块"; +Blockly.Msg["DUPLICATE_BLOCK"] = "复制"; +Blockly.Msg["DUPLICATE_COMMENT"] = "复制注释"; +Blockly.Msg["ENABLE_BLOCK"] = "启用块"; +Blockly.Msg["EXPAND_ALL"] = "展开块"; +Blockly.Msg["EXPAND_BLOCK"] = "展开块"; +Blockly.Msg["EXTERNAL_INPUTS"] = "外部输入"; +Blockly.Msg["HELP"] = "帮助"; +Blockly.Msg["INLINE_INPUTS"] = "单行输入"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "创建空列表"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "返回一个列表,长度为 0,不包含任何数据记录"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "列表"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "增加、删除或重新排列各部分以此重新配置这个列表块。"; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "创建列表,内容:"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "将一个项添加到列表中。"; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "建立一个具有任意数量项目的列表。"; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "第一项"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "倒数第#项"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "取得"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "取得并移除"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "最后一项"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "随机的一项"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "移除"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "返回列表中的第一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "返回在列表中的指定位置的项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "返回列表中的最后一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "返回列表中的随机一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "移除并返回列表中的第一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "移除并返回列表中的指定位置的项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "移除并返回列表中的最后一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "移除并返回列表中的随机一项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "移除列表中的第一项"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "移除在列表中的指定位置的项。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "移除列表中的最后一项"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "删除列表中的随机一项。"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "到倒数第#项"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "到第#项"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "到最后一项"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "获取子列表,从第一项"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "获取子列表,从倒数第#项"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "获取子列表,从第#项"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "复制列表中指定的部分。"; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1是最后一项。"; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1是第一项。"; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "寻找第一次出现的项"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "寻找最后一次出现的项"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "返回在列表中的第一/最后一个匹配项的索引值。如果找不到项目则返回%1。"; +Blockly.Msg["LISTS_INLIST"] = "在列表中"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1是空的"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "如果改列表为空,则返回真。"; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "%1的长度"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "返回列表的长度。"; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "建立列表使用项 %1 重复 %2 次"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "建立包含指定重复次数的值的列表。"; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "倒转%1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "倒转一个列表,返回副本。"; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "值为"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "插入在"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "设置"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "在列表的起始处添加该项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "在列表中指定位置插入项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "在列表的末尾处添加该项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "在列表的随机位置插入该项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "设置列表中的第一项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "设置在列表中指定位置的项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "设置列表中的最后一项。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "设置列表中的随机一项。"; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "升序"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "降序"; +Blockly.Msg["LISTS_SORT_TITLE"] = "排序%1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "排序一个列表,返回副本。"; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "按字母(忽略大小写)"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "按数字"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "按字母"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "从文本制作列表"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "将列表合并为文本"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "加入文本列表至一个文本,由分隔符分隔。"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "将文本按指定的分隔符拆分为文本组成的列表。"; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "分隔符:"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "假"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "返回真或假。"; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "真"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://zh.wikipedia.org/wiki/不等"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "如果两个输入结果相等,则返回真。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "如果第一个输入结果比第二个大,则返回真。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "如果第一个输入结果大于或等于第二个输入结果,则返回真。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "如果第一个输入结果比第二个小,则返回真。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "如果第一个输入结果小于或等于第二个输入结果,则返回真。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "如果两个输入结果不相等,则返回真。"; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "非%1"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "如果输入结果为假,则返回真;如果输入结果为真,则返回假。"; +Blockly.Msg["LOGIC_NULL"] = "空"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "返回空值。"; +Blockly.Msg["LOGIC_OPERATION_AND"] = "并且"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "或"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "如果两个输入结果都为真,则返回真。"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "如果至少有一个输入结果为真,则返回真。"; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "断言"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://zh.wikipedia.org/wiki/条件运算符"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "如果为假"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "如果为真"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "检查“断言”里的条件语句。如果条件为真,则返回“如果为真”的值,否则,则返回“如果为假”的值。"; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://zh.wikipedia.org/wiki/算术"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "返回两个数值的和。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "返回两个数值的商。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "返回两个数值的差。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "返回两个数值的乘积。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "返回以第一个数值为底数,以第二个数值为幂的结果。"; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://zh.wikipedia.org/wiki/反正切2"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "点(x:%1,y:%2)的方位角"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "返回点(X,Y)的反正切值,范围为-180到180度。"; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://zh.wikipedia.org/wiki/加法"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "将 %1 增加 %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "为变量“%1”增加一个数值。"; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://zh.wikipedia.org/wiki/数学常数"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "返回一个常见常量:π (3.141…)、e (2.718…)、φ (1.618…)、根号2 (1.414…)、根号二分之一 (0.707…)或∞ (无穷大)。"; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "将 %1 限制在 最低 %2 到最高 %3 之间"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "将一个数值限制在两个指定的数值范围(含边界)之间。"; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "可被整除"; +Blockly.Msg["MATH_IS_EVEN"] = "是偶数"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "是负数"; +Blockly.Msg["MATH_IS_ODD"] = "是奇数"; +Blockly.Msg["MATH_IS_POSITIVE"] = "是正数"; +Blockly.Msg["MATH_IS_PRIME"] = "是质数"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "检查一个数值是否是偶数、奇数、质数、自然数、正数、负数或者是否能被某数整除。返回真或假。"; +Blockly.Msg["MATH_IS_WHOLE"] = "是整数"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://zh.wikipedia.org/wiki/模除"; +Blockly.Msg["MATH_MODULO_TITLE"] = "取 %1 ÷ %2 的余数"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "返回这两个数字相除后的余数。"; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://zh.wikipedia.org/wiki/数"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "一个数值。"; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "列表平均值"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "列表最大值"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "列表中位数"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "列表最小值"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "列表中的众数"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "列表中的随机一项"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "列表的标准差"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "列表中数值的和"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "返回列表中的数值的平均值。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "返回列表中最大值。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "返回列表中数值的中位数。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "返回列表中最小值。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "返回列表中的出现次数最多的项的列表。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "从列表中返回一个随机的元素。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "返回列表的标准差。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "返回列表中的所有数值的和。"; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://zh.wikipedia.org/wiki/随机数生成器"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "随机小数"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "返回一个从0.0(含)到1.0(不含)之间的随机数。"; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://zh.wikipedia.org/wiki/随机数生成器"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "从 %1 到 %2 范围内的随机整数"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "返回一个限制在两个指定数值的范围(含边界)之间的随机整数。"; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://zh.wikipedia.org/wiki/数值修约"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "四舍五入"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "向下舍入"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "向上舍入"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "数字向上或向下舍入。"; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://zh.wikipedia.org/wiki/平方根"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "绝对值"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "平方根"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "返回一个数值的绝对值。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "返回e的n次幂。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "返回一个数值的自然对数。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "返回一个数值的以10为底的对数。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "返回一个数值的相反数。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "返回10的n次幂。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "返回一个数的平方根。"; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "acos"; // untranslated +Blockly.Msg["MATH_TRIG_ASIN"] = "asin"; // untranslated +Blockly.Msg["MATH_TRIG_ATAN"] = "atan"; // untranslated +Blockly.Msg["MATH_TRIG_COS"] = "cos"; // untranslated +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://zh.wikipedia.org/wiki/三角函数"; +Blockly.Msg["MATH_TRIG_SIN"] = "sin"; // untranslated +Blockly.Msg["MATH_TRIG_TAN"] = "tan"; // untranslated +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "返回一个数值的反余弦值。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "返回一个数值的反正弦值。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "返回一个数值的反正切值。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "返回指定角度的余弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "返回指定角度的正弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "返回指定角度的正切值(非弧度)。"; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "创建颜色变量..."; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "创建数字变量..."; +Blockly.Msg["NEW_STRING_VARIABLE"] = "创建字符串变量..."; +Blockly.Msg["NEW_VARIABLE"] = "创建变量..."; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "新变量的名称:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "新变量的类型:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "允许声明"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "与:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程序"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "运行用户定义的函数“%1”。"; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程序"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "运行用户定义的函数“%1”,并使用它的输出值。"; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "与:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "创建“%1”"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "描述该功能..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程序"; +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "做点什么"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "至"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "创建一个不带输出值的函数。"; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程序"; +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "返回"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "创建一个有输出值的函数。"; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "警告:此函数具有重复参数。"; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "突出显示函数定义"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "如果值为真,则返回第二个值。"; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "警告:这个块只能在函数内部使用。"; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "输入名称:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "添加函数输入。"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "输入"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "添加、移除或重新排此函数的输入。"; +Blockly.Msg["REDO"] = "重做"; +Blockly.Msg["REMOVE_COMMENT"] = "删除注释"; +Blockly.Msg["RENAME_VARIABLE"] = "重命名变量..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "将所有“%1”变量重命名为:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "在%1之后加上文本%2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "将一些文本追加到变量“%1”里。"; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "转为小写"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "转为首字母大写"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "转为大写"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "用不同的大小写模式复制并返回这段文字。"; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "获取第一个字符"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "获取倒数第#个字符"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "获取第#个字符"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "获取最后一个字符"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "获取随机一个字符"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "在文本%1 里 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "返回位于指定位置的字符。"; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "计算%1在%2里出现的次数"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "计算在一段文本中,某个部分文本重复出现了多少次。"; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "将一个项添加到文本中。"; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "拼接"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "添加、移除或重新排列各节来重新配置这个文本块。"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "到倒数第#个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "到第#个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "到最后一个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "从文本"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "获取子串,从第一个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "获取子串,从倒数第#个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "获取子串,从第#个字符"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "返回文本中指定的一部分。"; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "寻找第一次出现的文本"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "寻找最后一次出现的文本"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "在文本 %1 里 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "返回第一个文本段在第二个文本段中的第一/最后一个匹配项的起始位置。如果未找到,则返回%1。"; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1是空的"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "如果给定的文本为空,则返回真。"; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "创建文本,内容:"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "通过串起任意数量的项以建立一段文本。"; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "%1的长度"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "返回给定文本的字母数(包括空格)。"; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "输出%1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "输出指定的文字、数字或其他值。"; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "要求用户输入数字。"; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "要求用户输入一些文本。"; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "要求输入数字,并显示提示消息"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "要求输入文本,并显示提示消息"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "把%3中的%1替换为%2"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "在一段文本中,将出现过的某部分文本都替换掉。"; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "倒转文本%1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "将文本中各个字符的顺序倒转。"; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://zh.wikipedia.org/wiki/字符串"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "一个字、词语或一行文本。"; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "消除其两侧的空白"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "消除其左侧的空白"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "消除其右侧的空白"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "从某一端或同时从两端删除多余的空白,并返回这段文字的一个副本。"; +Blockly.Msg["TODAY"] = "今天"; +Blockly.Msg["UNDO"] = "撤销"; +Blockly.Msg["UNNAMED_KEY"] = "未命名"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "项目"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "创建“设定%1”"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "返回此变量的值。"; +Blockly.Msg["VARIABLES_SET"] = "赋值 %1 为 %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "创建“获得%1”"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "设置此变量,以使它和输入值相等。"; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "名字叫“%1”的变量已经存在了。"; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "名字叫“%1”的变量已经有了另一个类型:“%2”。"; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly工作区"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "说点什么..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/translations/zh-hant.js b/src/root_files/_common/binary-to-deriv/translations/zh-hant.js new file mode 100644 index 0000000000000..d3cf26af5246d --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/translations/zh-hant.js @@ -0,0 +1,425 @@ +// This file was automatically generated. Do not modify. + +'use strict'; + +var Blockly = Blockly || { Msg: Object.create(null) }; + +Blockly.Msg["ADD_COMMENT"] = "加入註解"; +Blockly.Msg["CANNOT_DELETE_VARIABLE_PROCEDURE"] = "無法刪除變數「%1」,因為這是功能「%2」定義的一部份內容"; +Blockly.Msg["CHANGE_VALUE_TITLE"] = "修改值:"; +Blockly.Msg["CLEAN_UP"] = "整理區塊"; +Blockly.Msg["COLLAPSED_WARNINGS_WARNING"] = "收合含有警告的區塊。"; +Blockly.Msg["COLLAPSE_ALL"] = "收合區塊"; +Blockly.Msg["COLLAPSE_BLOCK"] = "收合區塊"; +Blockly.Msg["COLOUR_BLEND_COLOUR1"] = "顏色 1"; +Blockly.Msg["COLOUR_BLEND_COLOUR2"] = "顏色 2"; +Blockly.Msg["COLOUR_BLEND_HELPURL"] = "https://meyerweb.com/eric/tools/color-blend/#:::rgbp"; // untranslated +Blockly.Msg["COLOUR_BLEND_RATIO"] = "比例"; +Blockly.Msg["COLOUR_BLEND_TITLE"] = "混合"; +Blockly.Msg["COLOUR_BLEND_TOOLTIP"] = "用一個給定的比率(0.0-1.0)混合兩種顏色。"; +Blockly.Msg["COLOUR_PICKER_HELPURL"] = "https://zh.wikipedia.org/wiki/顏色"; +Blockly.Msg["COLOUR_PICKER_TOOLTIP"] = "從調色板中選擇一種顏色。"; +Blockly.Msg["COLOUR_RANDOM_HELPURL"] = "http://randomcolour.com"; // untranslated +Blockly.Msg["COLOUR_RANDOM_TITLE"] = "隨機顏色"; +Blockly.Msg["COLOUR_RANDOM_TOOLTIP"] = "隨機選擇一種顏色。"; +Blockly.Msg["COLOUR_RGB_BLUE"] = "藍"; +Blockly.Msg["COLOUR_RGB_GREEN"] = "綠"; +Blockly.Msg["COLOUR_RGB_HELPURL"] = "https://www.december.com/html/spec/colorpercompact.html"; // untranslated +Blockly.Msg["COLOUR_RGB_RED"] = "紅"; +Blockly.Msg["COLOUR_RGB_TITLE"] = "顏色"; +Blockly.Msg["COLOUR_RGB_TOOLTIP"] = "透過指定紅、綠、 藍色的值來建立一種顏色。所有的值必須介於 0 和 100 之間。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks"; // untranslated +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK"] = "中斷循環"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE"] = "繼續下一個循環"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK"] = "中斷當前的循環。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE"] = "跳過這個循環的其餘步驟,並繼續下一次的循環。"; +Blockly.Msg["CONTROLS_FLOW_STATEMENTS_WARNING"] = "警告:此區塊僅可用於循環內。"; +Blockly.Msg["CONTROLS_FOREACH_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#for-each"; // untranslated +Blockly.Msg["CONTROLS_FOREACH_TITLE"] = "為列表 %2 裡的每一項 %1"; +Blockly.Msg["CONTROLS_FOREACH_TOOLTIP"] = "遍歷每個清單中的項目,將變數「%1」設定到該項目中,然後執行某些陳述式。"; +Blockly.Msg["CONTROLS_FOR_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#count-with"; // untranslated +Blockly.Msg["CONTROLS_FOR_TITLE"] = "循環計數 %1 從 %2 到 %3 每次增加 %4"; +Blockly.Msg["CONTROLS_FOR_TOOLTIP"] = "從起始數到結尾數中取出變數「%1」的值,按指定的時間間隔,執行指定的區塊。"; +Blockly.Msg["CONTROLS_IF_ELSEIF_TOOLTIP"] = "添加條件到「如果」積木。"; +Blockly.Msg["CONTROLS_IF_ELSE_TOOLTIP"] = "加入一個最終、所有條件都執行的部份到「如果」區塊中。"; +Blockly.Msg["CONTROLS_IF_HELPURL"] = "https://github.com/google/blockly/wiki/IfElse"; // untranslated +Blockly.Msg["CONTROLS_IF_IF_TOOLTIP"] = "添加、刪除或重新排列各部份以重新配置這個「如果」區塊。"; +Blockly.Msg["CONTROLS_IF_MSG_ELSE"] = "否則"; +Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"] = "否則,如果"; +Blockly.Msg["CONTROLS_IF_MSG_IF"] = "如果"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_1"] = "當值為 true 時,執行一些陳述式。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_2"] = "當值為 true 時,執行第一個陳述式。否則,執行第二個陳述式。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_3"] = "如果第一個值為 true,則執行第一個陳述式。否則,當第二個值為 true 時,則執行第二個陳述式。"; +Blockly.Msg["CONTROLS_IF_TOOLTIP_4"] = "如果第一個值為 true,則執行第一個陳述式。否則當第二個值為 true 時,則執行第二個陳述式。如果前幾個敘述都不為 ture,則執行最後一個陳述式。"; +Blockly.Msg["CONTROLS_REPEAT_HELPURL"] = "https://zh.wikipedia.org/wiki/For迴圈"; +Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"] = "執行"; +Blockly.Msg["CONTROLS_REPEAT_TITLE"] = "重複%1次"; +Blockly.Msg["CONTROLS_REPEAT_TOOLTIP"] = "重複執行指定的陳述式多次。"; +Blockly.Msg["CONTROLS_WHILEUNTIL_HELPURL"] = "https://github.com/google/blockly/wiki/Loops#repeat"; // untranslated +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_UNTIL"] = "重複直到"; +Blockly.Msg["CONTROLS_WHILEUNTIL_OPERATOR_WHILE"] = "重複,當"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL"] = "當值為 false 時,執行一些陳述式。"; +Blockly.Msg["CONTROLS_WHILEUNTIL_TOOLTIP_WHILE"] = "當值為 true 時,執行一些陳述式。"; +Blockly.Msg["DELETE_ALL_BLOCKS"] = "刪除全部 %1 個區塊?"; +Blockly.Msg["DELETE_BLOCK"] = "刪除區塊"; +Blockly.Msg["DELETE_VARIABLE"] = "刪除變數「%1」"; +Blockly.Msg["DELETE_VARIABLE_CONFIRMATION"] = "刪除使用%1次的「%2」變數?"; +Blockly.Msg["DELETE_X_BLOCKS"] = "刪除%1個積木"; +Blockly.Msg["DIALOG_CANCEL"] = "取消"; +Blockly.Msg["DIALOG_OK"] = "確定"; +Blockly.Msg["DISABLE_BLOCK"] = "停用區塊"; +Blockly.Msg["DUPLICATE_BLOCK"] = "重複"; +Blockly.Msg["DUPLICATE_COMMENT"] = "複製註解"; +Blockly.Msg["ENABLE_BLOCK"] = "啟用積木"; +Blockly.Msg["EXPAND_ALL"] = "展開積木"; +Blockly.Msg["EXPAND_BLOCK"] = "展開區塊"; +Blockly.Msg["EXTERNAL_INPUTS"] = "外部輸入"; +Blockly.Msg["HELP"] = "說明"; +Blockly.Msg["INLINE_INPUTS"] = "單行輸入"; +Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-empty-list"; // untranslated +Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "建立空的清單"; +Blockly.Msg["LISTS_CREATE_EMPTY_TOOLTIP"] = "返回一個長度(項目數量)為 0 的清單,不包含任何資料記錄"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TITLE_ADD"] = "清單"; +Blockly.Msg["LISTS_CREATE_WITH_CONTAINER_TOOLTIP"] = "添加、刪除或重新排列各部份以重新配置這個清單區塊。"; +Blockly.Msg["LISTS_CREATE_WITH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_CREATE_WITH_INPUT_WITH"] = "使用這些值建立清單"; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TOOLTIP"] = "添加一個項目到清單裡。"; +Blockly.Msg["LISTS_CREATE_WITH_TOOLTIP"] = "建立一個具備任意數量項目的清單。"; +Blockly.Msg["LISTS_GET_INDEX_FIRST"] = "第一筆"; +Blockly.Msg["LISTS_GET_INDEX_FROM_END"] = "倒數第 # 筆"; +Blockly.Msg["LISTS_GET_INDEX_FROM_START"] = "#"; +Blockly.Msg["LISTS_GET_INDEX_GET"] = "取得"; +Blockly.Msg["LISTS_GET_INDEX_GET_REMOVE"] = "取得並移除"; +Blockly.Msg["LISTS_GET_INDEX_LAST"] = "最後一筆"; +Blockly.Msg["LISTS_GET_INDEX_RANDOM"] = "隨機"; +Blockly.Msg["LISTS_GET_INDEX_REMOVE"] = "移除"; +Blockly.Msg["LISTS_GET_INDEX_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FIRST"] = "返回清單中的第一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_FROM"] = "返回在清單中指定位置的項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_LAST"] = "返回清單中的最後一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_RANDOM"] = "返回清單中隨機一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FIRST"] = "移除並返回清單中的第一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_FROM"] = "移除並返回清單中的指定位置的項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_LAST"] = "移除並返回清單中的最後一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_GET_REMOVE_RANDOM"] = "移除並返回清單中的隨機項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FIRST"] = "移除清單中的第一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_FROM"] = "移除在清單中指定位置的項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_LAST"] = "移除清單中的最後一個項目。"; +Blockly.Msg["LISTS_GET_INDEX_TOOLTIP_REMOVE_RANDOM"] = "移除清單中隨機一個項目。"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_END"] = "到 # 倒數"; +Blockly.Msg["LISTS_GET_SUBLIST_END_FROM_START"] = "到 #"; +Blockly.Msg["LISTS_GET_SUBLIST_END_LAST"] = "到 最後面"; +Blockly.Msg["LISTS_GET_SUBLIST_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist"; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_START_FIRST"] = "取得子清單 從 最前面"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_END"] = "取得子清單 從 # 倒數"; +Blockly.Msg["LISTS_GET_SUBLIST_START_FROM_START"] = "取得子清單 從 #"; +Blockly.Msg["LISTS_GET_SUBLIST_TAIL"] = ""; // untranslated +Blockly.Msg["LISTS_GET_SUBLIST_TOOLTIP"] = "複製清單中指定的部分。"; +Blockly.Msg["LISTS_INDEX_FROM_END_TOOLTIP"] = "%1 是最後一個項目。"; +Blockly.Msg["LISTS_INDEX_FROM_START_TOOLTIP"] = "%1 是第一個項目。"; +Blockly.Msg["LISTS_INDEX_OF_FIRST"] = "從 最前面 索引項目"; +Blockly.Msg["LISTS_INDEX_OF_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list"; // untranslated +Blockly.Msg["LISTS_INDEX_OF_LAST"] = "從 最後面 索引項目"; +Blockly.Msg["LISTS_INDEX_OF_TOOLTIP"] = "在清單中檢索是否有包含項目,如果有,返回從頭/倒數算起的索引值。如果沒有則返回 %1。"; +Blockly.Msg["LISTS_INLIST"] = "自清單"; +Blockly.Msg["LISTS_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#is-empty"; // untranslated +Blockly.Msg["LISTS_ISEMPTY_TITLE"] = "%1 值為空"; +Blockly.Msg["LISTS_ISEMPTY_TOOLTIP"] = "如果該清單為空,則返回 true。"; +Blockly.Msg["LISTS_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#length-of"; // untranslated +Blockly.Msg["LISTS_LENGTH_TITLE"] = "長度 %1"; +Blockly.Msg["LISTS_LENGTH_TOOLTIP"] = "返回清單的長度(項目數)。"; +Blockly.Msg["LISTS_REPEAT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#create-list-with"; // untranslated +Blockly.Msg["LISTS_REPEAT_TITLE"] = "建立清單使用項目 %1 重複 %2 次"; +Blockly.Msg["LISTS_REPEAT_TOOLTIP"] = "建立一個清單,項目中包含指定重複次數的值。"; +Blockly.Msg["LISTS_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#reversing-a-list"; // untranslated +Blockly.Msg["LISTS_REVERSE_MESSAGE0"] = "反轉%1"; +Blockly.Msg["LISTS_REVERSE_TOOLTIP"] = "反轉清單的複製內容。"; +Blockly.Msg["LISTS_SET_INDEX_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#in-list--set"; // untranslated +Blockly.Msg["LISTS_SET_INDEX_INPUT_TO"] = "為"; +Blockly.Msg["LISTS_SET_INDEX_INSERT"] = "添加"; +Blockly.Msg["LISTS_SET_INDEX_SET"] = "設定"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FIRST"] = "添加一個項目到清單中的第一個位置。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_FROM"] = "添加一個項目到清單中的指定位置。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_LAST"] = "添加一個項目到清單中的最後一個位置。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_INSERT_RANDOM"] = "添加一個項目到清單中的隨機位置。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FIRST"] = "設定清單中的第一個項目。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_FROM"] = "設定清單中指定位置的項目。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_LAST"] = "設定清單中的最後一個項目。"; +Blockly.Msg["LISTS_SET_INDEX_TOOLTIP_SET_RANDOM"] = "設定清單中隨機一個項目。"; +Blockly.Msg["LISTS_SORT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#sorting-a-list"; // untranslated +Blockly.Msg["LISTS_SORT_ORDER_ASCENDING"] = "升序"; +Blockly.Msg["LISTS_SORT_ORDER_DESCENDING"] = "降序"; +Blockly.Msg["LISTS_SORT_TITLE"] = "排列 %1 %2 %3"; +Blockly.Msg["LISTS_SORT_TOOLTIP"] = "排序清單的複製內容。"; +Blockly.Msg["LISTS_SORT_TYPE_IGNORECASE"] = "依字母排序,忽略大小寫"; +Blockly.Msg["LISTS_SORT_TYPE_NUMERIC"] = "依數字"; +Blockly.Msg["LISTS_SORT_TYPE_TEXT"] = "依字母"; +Blockly.Msg["LISTS_SPLIT_HELPURL"] = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists"; // untranslated +Blockly.Msg["LISTS_SPLIT_LIST_FROM_TEXT"] = "從文本製作清單"; +Blockly.Msg["LISTS_SPLIT_TEXT_FROM_LIST"] = "從清單拆出文本"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_JOIN"] = "串起清單項目成一個文本,並用分隔符號分開。"; +Blockly.Msg["LISTS_SPLIT_TOOLTIP_SPLIT"] = "將文本變成清單項目,按分隔符號拆分。"; +Blockly.Msg["LISTS_SPLIT_WITH_DELIMITER"] = "用分隔符"; +Blockly.Msg["LOGIC_BOOLEAN_FALSE"] = "假"; +Blockly.Msg["LOGIC_BOOLEAN_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#values"; // untranslated +Blockly.Msg["LOGIC_BOOLEAN_TOOLTIP"] = "返回真或假。"; +Blockly.Msg["LOGIC_BOOLEAN_TRUE"] = "真"; +Blockly.Msg["LOGIC_COMPARE_HELPURL"] = "https://zh.wikipedia.org/wiki/不等"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_EQ"] = "如果這兩個輸入區塊的結果相等,返回 true。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GT"] = "如果第一個輸入結果大於第二個,返回 true。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_GTE"] = "如果第一個輸入結果大於或等於第二個,返回 true。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LT"] = "如果第一個輸入結果比第二個小,返回 true。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_LTE"] = "如果第一個輸入結果小於或等於第二個,返回 true。"; +Blockly.Msg["LOGIC_COMPARE_TOOLTIP_NEQ"] = "如果這兩個輸入區塊的結果不相等,返回 true。"; +Blockly.Msg["LOGIC_NEGATE_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#not"; // untranslated +Blockly.Msg["LOGIC_NEGATE_TITLE"] = "%1 不成立"; +Blockly.Msg["LOGIC_NEGATE_TOOLTIP"] = "如果輸入結果是 false,則返回 true。如果輸入結果是 true,則返回 false。"; +Blockly.Msg["LOGIC_NULL"] = "空"; +Blockly.Msg["LOGIC_NULL_HELPURL"] = "https://en.wikipedia.org/wiki/Nullable_type"; // untranslated +Blockly.Msg["LOGIC_NULL_TOOLTIP"] = "返回空值。"; +Blockly.Msg["LOGIC_OPERATION_AND"] = "和"; +Blockly.Msg["LOGIC_OPERATION_HELPURL"] = "https://github.com/google/blockly/wiki/Logic#logical-operations"; // untranslated +Blockly.Msg["LOGIC_OPERATION_OR"] = "或"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_AND"] = "如果兩個輸入結果都為 true,則返回 true。"; +Blockly.Msg["LOGIC_OPERATION_TOOLTIP_OR"] = "如果至少一個輸入結果為 true,返回 true。"; +Blockly.Msg["LOGIC_TERNARY_CONDITION"] = "測試"; +Blockly.Msg["LOGIC_TERNARY_HELPURL"] = "https://en.wikipedia.org/wiki/%3F:"; +Blockly.Msg["LOGIC_TERNARY_IF_FALSE"] = "如果為假"; +Blockly.Msg["LOGIC_TERNARY_IF_TRUE"] = "如果為真"; +Blockly.Msg["LOGIC_TERNARY_TOOLTIP"] = "檢查「測試」中的條件。如果條件為真,將返回「如果為真」的值;否則,返回「如果為假」的值。"; +Blockly.Msg["MATH_ADDITION_SYMBOL"] = "+"; // untranslated +Blockly.Msg["MATH_ARITHMETIC_HELPURL"] = "https://zh.wikipedia.org/wiki/算術"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_ADD"] = "返回兩個數字的總和。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_DIVIDE"] = "傳回兩數之商。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MINUS"] = "傳回兩數之差。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_MULTIPLY"] = "返回兩個數字的乘積。"; +Blockly.Msg["MATH_ARITHMETIC_TOOLTIP_POWER"] = "返回第二個數字的指數的第一個數字。"; +Blockly.Msg["MATH_ATAN2_HELPURL"] = "https://zh.wikipedia.org/wiki/Atan2"; +Blockly.Msg["MATH_ATAN2_TITLE"] = "X:%1 Y:%2 的 Atan2"; +Blockly.Msg["MATH_ATAN2_TOOLTIP"] = "回傳點(X,Y)從 -180 至 180 度的反正切值。"; +Blockly.Msg["MATH_CHANGE_HELPURL"] = "https://zh.wikipedia.org/wiki/加法"; +Blockly.Msg["MATH_CHANGE_TITLE"] = "修改 %1 自 %2"; +Blockly.Msg["MATH_CHANGE_TOOLTIP"] = "將數字加到變數「%1」。"; +Blockly.Msg["MATH_CONSTANT_HELPURL"] = "https://zh.wikipedia.org/wiki/數學常數"; +Blockly.Msg["MATH_CONSTANT_TOOLTIP"] = "返回一個的常見常量: π (3.141......),e (2.718...)、 φ (1.618...)、 開方(2) (1.414......)、 開方(½) (0.707......) 或 ∞ (無窮大)。"; +Blockly.Msg["MATH_CONSTRAIN_HELPURL"] = "https://en.wikipedia.org/wiki/Clamping_(graphics)"; // untranslated +Blockly.Msg["MATH_CONSTRAIN_TITLE"] = "限制數字 %1 介於(低)%2 到(高)%3"; +Blockly.Msg["MATH_CONSTRAIN_TOOLTIP"] = "限制數字介於兩個指定的數字之間(包含)。"; +Blockly.Msg["MATH_DIVISION_SYMBOL"] = "÷"; // untranslated +Blockly.Msg["MATH_IS_DIVISIBLE_BY"] = "可被整除"; +Blockly.Msg["MATH_IS_EVEN"] = "是偶數"; +Blockly.Msg["MATH_IS_NEGATIVE"] = "是負數"; +Blockly.Msg["MATH_IS_ODD"] = "是奇數"; +Blockly.Msg["MATH_IS_POSITIVE"] = "是正值"; +Blockly.Msg["MATH_IS_PRIME"] = "是質數"; +Blockly.Msg["MATH_IS_TOOLTIP"] = "如果數字是偶數,奇數,非負整數,正數、 負數,或如果它是可被某數字整除,則返回 true 或 false。"; +Blockly.Msg["MATH_IS_WHOLE"] = "是整數"; +Blockly.Msg["MATH_MODULO_HELPURL"] = "https://zh.wikipedia.org/wiki/模除"; +Blockly.Msg["MATH_MODULO_TITLE"] = "%1 除以 %2 的餘數"; +Blockly.Msg["MATH_MODULO_TOOLTIP"] = "回傳兩個數字相除的餘數。"; +Blockly.Msg["MATH_MULTIPLICATION_SYMBOL"] = "×"; // untranslated +Blockly.Msg["MATH_NUMBER_HELPURL"] = "https://zh.wikipedia.org/wiki/數"; +Blockly.Msg["MATH_NUMBER_TOOLTIP"] = "數字"; +Blockly.Msg["MATH_ONLIST_HELPURL"] = ""; // untranslated +Blockly.Msg["MATH_ONLIST_OPERATOR_AVERAGE"] = "平均數 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MAX"] = "最大值 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MEDIAN"] = "中位數 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MIN"] = "最小值 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_MODE"] = "比較眾數 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_RANDOM"] = "隨機抽取 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_STD_DEV"] = "標準差 自清單"; +Blockly.Msg["MATH_ONLIST_OPERATOR_SUM"] = "數字總和 自清單"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_AVERAGE"] = "返回清單中數值的平均值(算術平均值)。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MAX"] = "返回清單項目中最大的數字。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MEDIAN"] = "返回清單中數值的中位數。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MIN"] = "返回清單項目中最小的數字。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_MODE"] = "返回一個清單中的最常見的項目。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_RANDOM"] = "從清單中返回一個隨機的項目。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_STD_DEV"] = "返回清單中數字的標準差。"; +Blockly.Msg["MATH_ONLIST_TOOLTIP_SUM"] = "返回清單中的所有數字的總和。"; +Blockly.Msg["MATH_POWER_SYMBOL"] = "^"; // untranslated +Blockly.Msg["MATH_RANDOM_FLOAT_HELPURL"] = "https://zh.wikipedia.org/wiki/隨機數生成器"; +Blockly.Msg["MATH_RANDOM_FLOAT_TITLE_RANDOM"] = "隨機取分數"; +Blockly.Msg["MATH_RANDOM_FLOAT_TOOLTIP"] = "在 0.0(包含)和 1.0(不包含)之間隨機取一個數。"; +Blockly.Msg["MATH_RANDOM_INT_HELPURL"] = "https://zh.wikipedia.org/wiki/隨機數生成器"; +Blockly.Msg["MATH_RANDOM_INT_TITLE"] = "隨機取數 %1 到 %2"; +Blockly.Msg["MATH_RANDOM_INT_TOOLTIP"] = "在指定二個數之間隨機取一個數(包含)。"; +Blockly.Msg["MATH_ROUND_HELPURL"] = "https://zh.wikipedia.org/wiki/數值簡化"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUND"] = "四捨五入"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDDOWN"] = "無條件捨去"; +Blockly.Msg["MATH_ROUND_OPERATOR_ROUNDUP"] = "無條件進位"; +Blockly.Msg["MATH_ROUND_TOOLTIP"] = "將數字無條件進位或無條件捨去。"; +Blockly.Msg["MATH_SINGLE_HELPURL"] = "https://zh.wikipedia.org/wiki/平方根"; +Blockly.Msg["MATH_SINGLE_OP_ABSOLUTE"] = "絕對值"; +Blockly.Msg["MATH_SINGLE_OP_ROOT"] = "開根號"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ABS"] = "返回指定數字的絕對值。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_EXP"] = "返回指定數字指數的e的冪次。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LN"] = "返回指定數字的自然對數。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_LOG10"] = "返回指定數字的對數。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_NEG"] = "返回指定數字的相反數。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_POW10"] = "返回指定數字指數的10的冪次。"; +Blockly.Msg["MATH_SINGLE_TOOLTIP_ROOT"] = "返回指定數字的平方根。"; +Blockly.Msg["MATH_SUBTRACTION_SYMBOL"] = "-"; // untranslated +Blockly.Msg["MATH_TRIG_ACOS"] = "反餘弦"; +Blockly.Msg["MATH_TRIG_ASIN"] = "反正弦"; +Blockly.Msg["MATH_TRIG_ATAN"] = "反正切"; +Blockly.Msg["MATH_TRIG_COS"] = "餘弦"; +Blockly.Msg["MATH_TRIG_HELPURL"] = "https://zh.wikipedia.org/wiki/三角函數"; +Blockly.Msg["MATH_TRIG_SIN"] = "正弦"; +Blockly.Msg["MATH_TRIG_TAN"] = "正切"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ACOS"] = "返回指定角度的反餘弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ASIN"] = "返回指定角度的反正弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_ATAN"] = "返回指定角度的反正切值。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_COS"] = "返回指定角度的餘弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_SIN"] = "返回指定角度的正弦值(非弧度)。"; +Blockly.Msg["MATH_TRIG_TOOLTIP_TAN"] = "返回指定角度的正切值(非弧度)。"; +Blockly.Msg["NEW_COLOUR_VARIABLE"] = "建立顏色變數…"; +Blockly.Msg["NEW_NUMBER_VARIABLE"] = "建立數值變數……"; +Blockly.Msg["NEW_STRING_VARIABLE"] = "建立字串變數……"; +Blockly.Msg["NEW_VARIABLE"] = "建立變數…"; +Blockly.Msg["NEW_VARIABLE_TITLE"] = "新變數名稱:"; +Blockly.Msg["NEW_VARIABLE_TYPE_TITLE"] = "新變數類型:"; +Blockly.Msg["ORDINAL_NUMBER_SUFFIX"] = ""; // untranslated +Blockly.Msg["PROCEDURES_ALLOW_STATEMENTS"] = "允許陳述式"; +Blockly.Msg["PROCEDURES_BEFORE_PARAMS"] = "與:"; +Blockly.Msg["PROCEDURES_CALLNORETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程式"; +Blockly.Msg["PROCEDURES_CALLNORETURN_TOOLTIP"] = "執行使用者定義的函式「%1」。"; +Blockly.Msg["PROCEDURES_CALLRETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/%E5%AD%90%E7%A8%8B%E5%BA%8F"; +Blockly.Msg["PROCEDURES_CALLRETURN_TOOLTIP"] = "執行使用者定義的函式「%1」,並使用它的回傳值。"; +Blockly.Msg["PROCEDURES_CALL_BEFORE_PARAMS"] = "與:"; +Blockly.Msg["PROCEDURES_CREATE_DO"] = "建立「%1」"; +Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"] = "描述此函式..."; +Blockly.Msg["PROCEDURES_DEFNORETURN_DO"] = ""; // untranslated +Blockly.Msg["PROCEDURES_DEFNORETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程式"; +Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"] = "做些什麼"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"] = "到"; +Blockly.Msg["PROCEDURES_DEFNORETURN_TOOLTIP"] = "創建一個無回傳值的函式。"; +Blockly.Msg["PROCEDURES_DEFRETURN_HELPURL"] = "https://zh.wikipedia.org/wiki/子程式"; +Blockly.Msg["PROCEDURES_DEFRETURN_RETURN"] = "返回"; +Blockly.Msg["PROCEDURES_DEFRETURN_TOOLTIP"] = "創建一個有回傳值的的函式。"; +Blockly.Msg["PROCEDURES_DEF_DUPLICATE_WARNING"] = "警告: 此函式中有重複的參數。"; +Blockly.Msg["PROCEDURES_HIGHLIGHT_DEF"] = "反白顯示函式定義"; +Blockly.Msg["PROCEDURES_IFRETURN_HELPURL"] = "http://c2.com/cgi/wiki?GuardClause"; // untranslated +Blockly.Msg["PROCEDURES_IFRETURN_TOOLTIP"] = "如果值為 true,則返回第二個值。"; +Blockly.Msg["PROCEDURES_IFRETURN_WARNING"] = "警告:這個區塊只可以在定義函式時使用。"; +Blockly.Msg["PROCEDURES_MUTATORARG_TITLE"] = "輸入名稱:"; +Blockly.Msg["PROCEDURES_MUTATORARG_TOOLTIP"] = "添加一個輸入區塊到函式。"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TITLE"] = "輸入"; +Blockly.Msg["PROCEDURES_MUTATORCONTAINER_TOOLTIP"] = "添加、刪除或重新排列此函式的輸入。"; +Blockly.Msg["REDO"] = "重做"; +Blockly.Msg["REMOVE_COMMENT"] = "移除註解"; +Blockly.Msg["RENAME_VARIABLE"] = "重新命名變數..."; +Blockly.Msg["RENAME_VARIABLE_TITLE"] = "將所有「%1」變數重新命名為:"; +Blockly.Msg["TEXT_APPEND_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_APPEND_TITLE"] = "至 %1 套用文字 %2"; +Blockly.Msg["TEXT_APPEND_TOOLTIP"] = "添加一些文字到變數「%1」之後。"; +Blockly.Msg["TEXT_CHANGECASE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#adjusting-text-case"; // untranslated +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_LOWERCASE"] = "轉成英文小寫"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_TITLECASE"] = "轉成英文首字大寫"; +Blockly.Msg["TEXT_CHANGECASE_OPERATOR_UPPERCASE"] = "轉成英文大寫"; +Blockly.Msg["TEXT_CHANGECASE_TOOLTIP"] = "使用不同的大小寫複製這段文字。"; +Blockly.Msg["TEXT_CHARAT_FIRST"] = "擷取首字元"; +Blockly.Msg["TEXT_CHARAT_FROM_END"] = "取得倒數第#字元"; +Blockly.Msg["TEXT_CHARAT_FROM_START"] = "取得 字元 #"; +Blockly.Msg["TEXT_CHARAT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-text"; // untranslated +Blockly.Msg["TEXT_CHARAT_LAST"] = "取得 最後一個字元"; +Blockly.Msg["TEXT_CHARAT_RANDOM"] = "取得 任意字元"; +Blockly.Msg["TEXT_CHARAT_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_CHARAT_TITLE"] = "在文字 %1 %2"; +Blockly.Msg["TEXT_CHARAT_TOOLTIP"] = "返回位於指定位置的字元。"; +Blockly.Msg["TEXT_COUNT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#counting-substrings"; // untranslated +Blockly.Msg["TEXT_COUNT_MESSAGE0"] = "在%2計算%1"; +Blockly.Msg["TEXT_COUNT_TOOLTIP"] = "計算某些文字在內容裡的出現次數。"; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TOOLTIP"] = "添加一個項目到字串中。"; +Blockly.Msg["TEXT_CREATE_JOIN_TITLE_JOIN"] = "加入"; +Blockly.Msg["TEXT_CREATE_JOIN_TOOLTIP"] = "添加、刪除或重新排列各部份以重新配置這個文字區塊。"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_END"] = "到倒數第#字元"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_FROM_START"] = "到 字元 #"; +Blockly.Msg["TEXT_GET_SUBSTRING_END_LAST"] = "到尾個字元"; +Blockly.Msg["TEXT_GET_SUBSTRING_HELPURL"] = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text"; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_INPUT_IN_TEXT"] = "在字串"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FIRST"] = "取得首字元"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_END"] = "取得 倒數第 # 個字元"; +Blockly.Msg["TEXT_GET_SUBSTRING_START_FROM_START"] = "取得 字元 #"; +Blockly.Msg["TEXT_GET_SUBSTRING_TAIL"] = ""; // untranslated +Blockly.Msg["TEXT_GET_SUBSTRING_TOOLTIP"] = "返回指定的部分文字。"; +Blockly.Msg["TEXT_INDEXOF_HELPURL"] = "https://github.com/google/blockly/wiki/Text#finding-text"; // untranslated +Blockly.Msg["TEXT_INDEXOF_OPERATOR_FIRST"] = "從 最前面 索引字串"; +Blockly.Msg["TEXT_INDEXOF_OPERATOR_LAST"] = "從 最後面 索引字串"; +Blockly.Msg["TEXT_INDEXOF_TITLE"] = "在文字 %1 %2 %3"; +Blockly.Msg["TEXT_INDEXOF_TOOLTIP"] = "在字串1中檢索是否有包含字串2,如果有,返回從頭/倒數算起的索引值。如果沒有則返回 %1。"; +Blockly.Msg["TEXT_ISEMPTY_HELPURL"] = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text"; // untranslated +Blockly.Msg["TEXT_ISEMPTY_TITLE"] = "%1 為空"; +Blockly.Msg["TEXT_ISEMPTY_TOOLTIP"] = "如果提供的字串為空,則返回 true。"; +Blockly.Msg["TEXT_JOIN_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-creation"; // untranslated +Blockly.Msg["TEXT_JOIN_TITLE_CREATEWITH"] = "字串組合"; +Blockly.Msg["TEXT_JOIN_TOOLTIP"] = "通過連接任意數量的項目來建立一串文字。"; +Blockly.Msg["TEXT_LENGTH_HELPURL"] = "https://github.com/google/blockly/wiki/Text#text-modification"; // untranslated +Blockly.Msg["TEXT_LENGTH_TITLE"] = "長度 %1"; +Blockly.Msg["TEXT_LENGTH_TOOLTIP"] = "返回這串文字的字元數(包含空格)。"; +Blockly.Msg["TEXT_PRINT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#printing-text"; // untranslated +Blockly.Msg["TEXT_PRINT_TITLE"] = "輸出 %1"; +Blockly.Msg["TEXT_PRINT_TOOLTIP"] = "輸出指定的文字、 數字或其他值。"; +Blockly.Msg["TEXT_PROMPT_HELPURL"] = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user"; // untranslated +Blockly.Msg["TEXT_PROMPT_TOOLTIP_NUMBER"] = "輸入數字"; +Blockly.Msg["TEXT_PROMPT_TOOLTIP_TEXT"] = "輸入文字"; +Blockly.Msg["TEXT_PROMPT_TYPE_NUMBER"] = "輸入 數字 並顯示提示訊息"; +Blockly.Msg["TEXT_PROMPT_TYPE_TEXT"] = "輸入 文字 並顯示提示訊息"; +Blockly.Msg["TEXT_REPLACE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#replacing-substrings"; // untranslated +Blockly.Msg["TEXT_REPLACE_MESSAGE0"] = "在%3以%2取代%1"; +Blockly.Msg["TEXT_REPLACE_TOOLTIP"] = "取代在內容裡的全部某些文字。"; +Blockly.Msg["TEXT_REVERSE_HELPURL"] = "https://github.com/google/blockly/wiki/Text#reversing-text"; // untranslated +Blockly.Msg["TEXT_REVERSE_MESSAGE0"] = "反轉%1"; +Blockly.Msg["TEXT_REVERSE_TOOLTIP"] = "反轉排序在文字裡的字元。"; +Blockly.Msg["TEXT_TEXT_HELPURL"] = "https://zh.wikipedia.org/wiki/字串"; +Blockly.Msg["TEXT_TEXT_TOOLTIP"] = "一粒字元、一個字詞或一行字"; +Blockly.Msg["TEXT_TRIM_HELPURL"] = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces"; // untranslated +Blockly.Msg["TEXT_TRIM_OPERATOR_BOTH"] = "消除兩側空格"; +Blockly.Msg["TEXT_TRIM_OPERATOR_LEFT"] = "消除左側空格"; +Blockly.Msg["TEXT_TRIM_OPERATOR_RIGHT"] = "消除右側空格"; +Blockly.Msg["TEXT_TRIM_TOOLTIP"] = "複製這段文字,同時刪除兩端多餘的空格。"; +Blockly.Msg["TODAY"] = "今天"; +Blockly.Msg["UNDO"] = "還原"; +Blockly.Msg["UNNAMED_KEY"] = "未命名"; +Blockly.Msg["VARIABLES_DEFAULT_NAME"] = "項目"; +Blockly.Msg["VARIABLES_GET_CREATE_SET"] = "建立「賦值 %1」"; +Blockly.Msg["VARIABLES_GET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#get"; // untranslated +Blockly.Msg["VARIABLES_GET_TOOLTIP"] = "返回此變數的值。"; +Blockly.Msg["VARIABLES_SET"] = "賦值 %1 成 %2"; +Blockly.Msg["VARIABLES_SET_CREATE_GET"] = "建立「取得 %1」"; +Blockly.Msg["VARIABLES_SET_HELPURL"] = "https://github.com/google/blockly/wiki/Variables#set"; // untranslated +Blockly.Msg["VARIABLES_SET_TOOLTIP"] = "設定此變數,好和輸入結果相等。"; +Blockly.Msg["VARIABLE_ALREADY_EXISTS"] = "已存在變數「%1」。"; +Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_ANOTHER_TYPE"] = "已存在名為「%1」,且用於其它類型「%2」的變數。"; +Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly工作區"; +Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "來說些事情..."; +Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"]; +Blockly.Msg["CONTROLS_IF_ELSE_TITLE_ELSE"] = Blockly.Msg["CONTROLS_IF_MSG_ELSE"]; +Blockly.Msg["CONTROLS_IF_IF_TITLE_IF"] = Blockly.Msg["CONTROLS_IF_MSG_IF"]; +Blockly.Msg["CONTROLS_IF_MSG_THEN"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["CONTROLS_WHILEUNTIL_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"]; +Blockly.Msg["LISTS_CREATE_WITH_ITEM_TITLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["LISTS_GET_INDEX_HELPURL"] = Blockly.Msg["LISTS_INDEX_OF_HELPURL"]; +Blockly.Msg["LISTS_GET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_GET_SUBLIST_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_INDEX_OF_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["LISTS_SET_INDEX_INPUT_IN_LIST"] = Blockly.Msg["LISTS_INLIST"]; +Blockly.Msg["MATH_CHANGE_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["PROCEDURES_DEFRETURN_COMMENT"] = Blockly.Msg["PROCEDURES_DEFNORETURN_COMMENT"]; +Blockly.Msg["PROCEDURES_DEFRETURN_DO"] = Blockly.Msg["PROCEDURES_DEFNORETURN_DO"]; +Blockly.Msg["PROCEDURES_DEFRETURN_PROCEDURE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_PROCEDURE"]; +Blockly.Msg["PROCEDURES_DEFRETURN_TITLE"] = Blockly.Msg["PROCEDURES_DEFNORETURN_TITLE"]; +Blockly.Msg["TEXT_APPEND_VARIABLE"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; +Blockly.Msg["TEXT_CREATE_JOIN_ITEM_TITLE_ITEM"] = Blockly.Msg["VARIABLES_DEFAULT_NAME"]; + +Blockly.Msg["MATH_HUE"] = "230"; +Blockly.Msg["LOOPS_HUE"] = "120"; +Blockly.Msg["LISTS_HUE"] = "260"; +Blockly.Msg["LOGIC_HUE"] = "210"; +Blockly.Msg["VARIABLES_HUE"] = "330"; +Blockly.Msg["TEXTS_HUE"] = "160"; +Blockly.Msg["PROCEDURES_HUE"] = "290"; +Blockly.Msg["COLOUR_HUE"] = "20"; +Blockly.Msg["VARIABLES_DYNAMIC_HUE"] = "310"; \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/bollinger_bands(binary-bot).xml b/src/root_files/_common/binary-to-deriv/xml/bollinger_bands(binary-bot).xml new file mode 100644 index 0000000000000..02a3d036e4900 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/bollinger_bands(binary-bot).xml @@ -0,0 +1,450 @@ + + + trade result + BB down + stake + initial stake + BB up + loss threshold + profit threshold + + + synthetic_index + random_index + R_100 + callput + risefall + both + 60 + TRUE + TRUE + + + trade result + + + 0 + + + + + initial stake + + + 1 + + + + + stake + + + initial stake + + + + + loss threshold + + + 10 + + + + + profit threshold + + + -10 + + + + + success + silent + + + abc + + + + + + Starting with stake: + + + + + stake + + + + + + + + + + + + + + + + + + + s + USD + + + - + + + 30 + + + + + 1 + + + stake + + + + + + + + + + + + + + + + GT + + + + + + 0 + + + + + + + success + silent + + + abc + + + + + + Selling the contract at profit: + + + + + + + + + + + + + + + + + + + + + trade result + + + 1 + + + 4 + + + + + + + + win + + + + + stake + + + initial stake + + + + + + + stake + + + MULTIPLY + + + 1 + + + stake + + + + + 2 + + + + + + + + + + + + AND + + + GT + + + trade result + + + + + profit threshold + + + + + + + LT + + + trade result + + + + + loss threshold + + + + + + + + + success + silent + + + abc + + + + + + Current P/L: + + + + + trade result + + + + + + + + + + + + success + silent + + + abc + + + + + + Stopped at P/L: + + + + + trade result + + + + + + + + + + + + + + + + + BB down + + + 2 + + + + + + 20 + + + + + 2 + + + + + 2 + + + + + + + BB up + + + 1 + + + + + + 20 + + + + + 2 + + + + + 2 + + + + + + + success + silent + + + abc + + + + + + BB up | down: + + + + + BB up + + + + + | + + + + + BB down + + + + + + + + + + LT + + + + + + BB down + + + + + + + CALL + + + + + GT + + + + + + BB up + + + + + + + PUT + + + + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/cutlerRSI.xml b/src/root_files/_common/binary-to-deriv/xml/cutlerRSI.xml new file mode 100644 index 0000000000000..4c40c4ec58528 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/cutlerRSI.xml @@ -0,0 +1,736 @@ + + + Period + candleList + OverBoughtLevel + closePriceArr + lastOpenTime + OverSoldLevel + maArr + negArr + posArr + i + diff + posMaArr + negMaArr + cutlerRSI + + + volidx + random_index + R_100 + callput + risefall + both + 60 + FALSE + TRUE + + + + + + candleList + + + default + + + + + lastOpenTime + + + open + + + + GET + LAST + + + candleList + + + + + + + + + + + + + + + t + USD + + + 5 + + + + + 1 + + + + + + + Set Bot Parameters + Describe this function... + + + Period + + + 14 + + + + + OverBoughtLevel + + + 80 + + + + + OverSoldLevel + + + 20 + + + + + + + + + + + + + + + + + + candleList + + + default + + + + + closePriceArr + + + close + + + candleList + + + + + + + + + NEQ + + + lastOpenTime + + + + + open + + + + GET + LAST + + + candleList + + + + + + + + + + + lastOpenTime + + + open + + + + GET + LAST + + + candleList + + + + + + + + + maArr + + + + + closePriceArr + + + + + 10 + + + Period + + + + + + + negArr + + + + + 0 + + + + + 5 + + + + + maArr + + + + + + + + + posArr + + + + + 0 + + + + + 5 + + + + + maArr + + + + + + + + + i + + + 1 + + + + + MINUS + + + 1 + + + + + maArr + + + + + + + 1 + + + + + + + 1 + + + + + diff + + + MINUS + + + 1 + + + + GET + FROM_START + + + maArr + + + + + MINUS + + + 1 + + + i + + + + + 1 + + + + + + + + + 1 + + + + GET + FROM_START + + + maArr + + + + + i + + + + + + + + + + + diff + + + + + + + + GT + + + diff + + + + + 0 + + + + + + + + SET + FROM_START + + + posArr + + + + + i + + + + + diff + + + + + + SET + FROM_START + + + negArr + + + + + i + + + + + 0 + + + + + + + + + + SET + FROM_START + + + negArr + + + + + i + + + + + MULTIPLY + + + -1 + + + + + 1 + + + diff + + + + + + + + SET + FROM_START + + + posArr + + + + + i + + + + + 0 + + + + + + + + + + + + + + + posMaArr + + + + + posArr + + + + + 10 + + + Period + + + + + + + negMaArr + + + + + negArr + + + + + 10 + + + Period + + + + + + + cutlerRSI + + + MINUS + + + 100 + + + + + 1 + + + DIVIDE + + + 100 + + + + + 1 + + + ADD + + + 1 + + + + + 1 + + + DIVIDE + + + 1 + + + + GET + FROM_END + + + posMaArr + + + + + 2 + + + + + + + 1 + + + + GET + FROM_END + + + negMaArr + + + + + 2 + + + + + + + + + + + + + + + + + abc + + + cutlerRSI + + + + + + + abc + + + + GET + LAST + + + posMaArr + + + + + + + + + abc + + + + GET + LAST + + + negMaArr + + + + + + + + + LTE + + + cutlerRSI + + + + + OverSoldLevel + + + + + + + CALL + + + + + + + GTE + + + cutlerRSI + + + + + OverBoughtLevel + + + + + + + PUT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/dalembert.xml b/src/root_files/_common/binary-to-deriv/xml/dalembert.xml new file mode 100644 index 0000000000000..32c1dcfc771d6 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/dalembert.xml @@ -0,0 +1,733 @@ + + + dalembert:resultIsWin + dalembert:profit + dalembert:totalProfit + dalembert:tradeAgain + dalembert:expectedProfit + dalembert:size + dalembert:amount + dalembert:profitUnits + dalembert:maximumLoss + + + D'Alembert Trade Amount + Describe this function... + + + + + EQ + + + dalembert:expectedProfit + + + + + + + + + + dalembert:expectedProfit + + + + NUMBER + + + abc + + + Expected Profit + + + + + + + + + + + EQ + + + dalembert:maximumLoss + + + + + + + + + + dalembert:maximumLoss + + + + NUMBER + + + abc + + + Maximum Loss Amount + + + + + + + + + + + EQ + + + dalembert:amount + + + + + + + + + + dalembert:amount + + + + NUMBER + + + abc + + + Trade Amount + + + + + + + + + + + EQ + + + dalembert:size + + + + + + + + + + dalembert:size + + + 1 + + + + + + + + + EQ + + + dalembert:profitUnits + + + + + + + + + + dalembert:profitUnits + + + 0 + + + + + + + + + EQ + + + dalembert:totalProfit + + + + + + + + + + dalembert:totalProfit + + + 0 + + + + + + + + + + + + + + + + + + + MULTIPLY + + + 1 + + + dalembert:size + + + + + 1 + + + dalembert:amount + + + + + + + + + + D'Alembert Core Functionality + Describe this function... + + + + + + dalembert:resultIsWin + + + + + dalembert:profitUnits + + + ADD + + + 1 + + + dalembert:profitUnits + + + + + 1 + + + dalembert:size + + + + + + + + + + GT + + + dalembert:size + + + + + 1 + + + + + + + dalembert:size + + + MINUS + + + 1 + + + dalembert:size + + + + + 1 + + + + + + + + + dalembert:profitUnits + + + 0 + + + + + success + silent + + + One DAlembert session finished successfully. + + + + + + + + + + + + + dalembert:profitUnits + + + MINUS + + + 1 + + + dalembert:profitUnits + + + + + 1 + + + dalembert:size + + + + + + + dalembert:size + + + ADD + + + 1 + + + dalembert:size + + + + + 1 + + + + + + + + + + + + + + + + + D'Alembert Trade Again After Purchase + Describe this function... + + + dalembert:totalProfit + + + 1 + + + dalembert:profit + + + + + dalembert:totalProfit + + + DIVIDE + + + 1 + + + ROUND + + + 3.1 + + + MULTIPLY + + + 1 + + + dalembert:totalProfit + + + + + 1 + + + 100 + + + + + + + + + 1 + + + 100 + + + + + + + + + + dalembert:resultIsWin + + + + + success + silent + + + + + + Won: + + + + + dalembert:profit + + + + + + + + + warn + silent + + + + + + Lost: + + + + + ABS + + + 9 + + + dalembert:profit + + + + + + + + + + + + + + + + dalembert:resultIsWin + + + + + info + silent + + + + + + Total Profit: + + + + + dalembert:totalProfit + + + + + + + dalembert:tradeAgain + + + FALSE + + + + + + + + LT + + + dalembert:totalProfit + + + + + dalembert:expectedProfit + + + + + + + + + + GT + + + dalembert:totalProfit + + + + + NEG + + + 9 + + + dalembert:maximumLoss + + + + + + + + + dalembert:tradeAgain + + + TRUE + + + + + + + + + abc + + + + + + Maximum Loss Occurred! Total Loss: + + + + + NEG + + + 9 + + + dalembert:totalProfit + + + + + + + + + + + + + + + abc + + + + + + Expected Profit Made! Total Profit: + + + + + dalembert:totalProfit + + + + + + + + + + + + + + + + + + + + + + + dalembert:tradeAgain + + + + + volidx + random_index + R_100 + digits + evenodd + both + 60 + FALSE + TRUE + + + t + USD + + + 5 + + + + + + + + + + + + + + DIGITEVEN + + + + + + + + + + + + + + + 4 + + + + + win + + + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/main.xml b/src/root_files/_common/binary-to-deriv/xml/main.xml new file mode 100644 index 0000000000000..22d1d1f4060a6 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/main.xml @@ -0,0 +1,37 @@ + + + + + t + USD + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/root_files/_common/binary-to-deriv/xml/martingale.xml b/src/root_files/_common/binary-to-deriv/xml/martingale.xml new file mode 100644 index 0000000000000..c73739dc9a1ba --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/martingale.xml @@ -0,0 +1,602 @@ + + + martingale:resultIsWin + martingale:profit + martingale:totalProfit + martingale:tradeAgain + martingale:expectedProfit + martingale:size + martingale:amount + martingale:maximumLoss + + + Martingale Trade Amount + Describe this function... + + + + + EQ + + + martingale:expectedProfit + + + + + + + + + + martingale:expectedProfit + + + + NUMBER + + + abc + + + Expected Profit + + + + + + + + + + + EQ + + + martingale:maximumLoss + + + + + + + + + + martingale:maximumLoss + + + + NUMBER + + + abc + + + Maximum Loss Amount + + + + + + + + + + + EQ + + + martingale:amount + + + + + + + + + + martingale:amount + + + + NUMBER + + + abc + + + Trade Amount + + + + + + + + + + + EQ + + + martingale:size + + + + + + + + + + martingale:size + + + 1 + + + + + + + + + EQ + + + martingale:totalProfit + + + + + + + + + + martingale:totalProfit + + + 0 + + + + + + + + + + + + + + + + + MULTIPLY + + + 1 + + + martingale:size + + + + + 1 + + + martingale:amount + + + + + + + + + + Martingale Core Functionality + Describe this function... + + + + + + martingale:resultIsWin + + + + + martingale:size + + + 1 + + + + + + + martingale:size + + + MULTIPLY + + + 1 + + + martingale:size + + + + + 1 + + + 2 + + + + + + + + + + + + + + + Martingale Trade Again After Purchase + Describe this function... + + + martingale:totalProfit + + + 1 + + + martingale:profit + + + + + martingale:totalProfit + + + DIVIDE + + + 1 + + + ROUND + + + 3.1 + + + MULTIPLY + + + 1 + + + martingale:totalProfit + + + + + 1 + + + 100 + + + + + + + + + 1 + + + 100 + + + + + + + + + + martingale:resultIsWin + + + + + success + silent + + + + + + Won: + + + + + martingale:profit + + + + + + + + + warn + silent + + + + + + Lost: + + + + + ABS + + + 9 + + + martingale:profit + + + + + + + + + + + + + + + + martingale:resultIsWin + + + + + info + silent + + + + + + Total Profit: + + + + + martingale:totalProfit + + + + + + + martingale:tradeAgain + + + FALSE + + + + + + + + LT + + + martingale:totalProfit + + + + + martingale:expectedProfit + + + + + + + + + + GT + + + martingale:totalProfit + + + + + NEG + + + 9 + + + martingale:maximumLoss + + + + + + + + + martingale:tradeAgain + + + TRUE + + + + + + + + + abc + + + + + + Maximum Loss Occurred! Total Loss: + + + + + NEG + + + 9 + + + martingale:totalProfit + + + + + + + + + + + + + + + abc + + + + + + Expected Profit Made! Total Profit: + + + + + martingale:totalProfit + + + + + + + + + + + + + + + + + + + + + + + martingale:tradeAgain + + + + + volidx + random_index + R_100 + digits + evenodd + both + 60 + FALSE + TRUE + + + t + USD + + + 5 + + + + + + + + + + + + + + DIGITEVEN + + + + + + + + + + + + + + + 4 + + + + + win + + + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/martingale_reset_on_expected.xml b/src/root_files/_common/binary-to-deriv/xml/martingale_reset_on_expected.xml new file mode 100644 index 0000000000000..efb8a3b526f06 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/martingale_reset_on_expected.xml @@ -0,0 +1,572 @@ + + + Martingale Trade Amount + Describe this function... + + + + + EQ + + + martingale:expectedProfit + + + + + + + + + + martingale:expectedProfit + + + + NUMBER + + + abc + + + Expected Profit + + + + + + + + + + + EQ + + + martingale:maximumLoss + + + + + + + + + + martingale:maximumLoss + + + + NUMBER + + + abc + + + Maximum Loss Amount + + + + + + + + + + + EQ + + + martingale:amount + + + + + + + + + + martingale:amount + + + + NUMBER + + + abc + + + Trade Amount + + + + + + + + + + + EQ + + + martingale:size + + + + + + + + + + martingale:size + + + 1 + + + + + + + + + EQ + + + martingale:totalProfit + + + + + + + + + + martingale:totalProfit + + + 0 + + + + + + + + + + + + + + + + + MULTIPLY + + + 1 + + + martingale:size + + + + + 1 + + + martingale:amount + + + + + + + + + + Martingale Core Functionality + Describe this function... + + + + + + martingale:resultIsWin + + + + + martingale:size + + + 1 + + + + + + + martingale:size + + + MULTIPLY + + + 1 + + + martingale:size + + + + + 1 + + + 2 + + + + + + + + + + + + + + + Martingale Trade Again After Purchase + Describe this function... + + + martingale:totalProfit + + + 1 + + + martingale:profit + + + + + martingale:totalProfit + + + DIVIDE + + + 1 + + + ROUND + + + 3.1 + + + MULTIPLY + + + 1 + + + martingale:totalProfit + + + + + 1 + + + 100 + + + + + + + + + 1 + + + 100 + + + + + + + + + + martingale:resultIsWin + + + + + success + + + + + + Won: + + + + + martingale:profit + + + + + + + + + warn + + + + + + Lost: + + + + + ABS + + + 9 + + + martingale:profit + + + + + + + + + + + + + + + + martingale:resultIsWin + + + + + info + + + + + + Total Profit: + + + + + martingale:totalProfit + + + + + + + martingale:tradeAgain + + + FALSE + + + + + + + + LT + + + martingale:totalProfit + + + + + martingale:expectedProfit + + + + + + + + + + GT + + + martingale:totalProfit + + + + + NEG + + + 9 + + + martingale:maximumLoss + + + + + + + + + martingale:tradeAgain + + + TRUE + + + + + + + + + abc + + + + + + Maximum Loss Occurred! Total Loss: + + + + + NEG + + + 9 + + + martingale:totalProfit + + + + + + + + + + + + + success + + + + + + Expected Profit Made! Total Profit: + + + + + martingale:totalProfit + + + + + + + martingale:totalProfit + + + 0 + + + + + martingale:tradeAgain + + + TRUE + + + + + + + + + + + + + + + + + + + + + + + + + martingale:tradeAgain + + + + + + + + + + + + + + + + 4 + + + + + win + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/oscars_grind.xml b/src/root_files/_common/binary-to-deriv/xml/oscars_grind.xml new file mode 100644 index 0000000000000..b3798893c45b5 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/oscars_grind.xml @@ -0,0 +1,729 @@ + + + Oscar's Grind Trade Amount + Describe this function... + + + + + EQ + + + oscarsGrind:expectedProfit + + + + + + + + + + oscarsGrind:expectedProfit + + + + NUMBER + + + abc + + + Expected Profit + + + + + + + + + + + EQ + + + oscarsGrind:maximumLoss + + + + + + + + + + oscarsGrind:maximumLoss + + + + NUMBER + + + abc + + + Maximum Loss Amount + + + + + + + + + + + EQ + + + oscarsGrind:amount + + + + + + + + + + oscarsGrind:amount + + + + NUMBER + + + abc + + + Trade Amount + + + + + + + + + + + EQ + + + oscarsGrind:size + + + + + + + + + + oscarsGrind:size + + + 1 + + + + + + + + + EQ + + + oscarsGrind:profitUnits + + + + + + + + + + oscarsGrind:profitUnits + + + 0 + + + + + + + + + EQ + + + oscarsGrind:totalProfit + + + + + + + + + + oscarsGrind:totalProfit + + + 0 + + + + + + + + + + + + + + + + + + + MULTIPLY + + + 1 + + + oscarsGrind:size + + + + + 1 + + + oscarsGrind:amount + + + + + + + + + + Oscar's Grind Core Functionality + Describe this function... + + + + + + oscarsGrind:resultIsWin + + + + + oscarsGrind:profitUnits + + + ADD + + + 1 + + + oscarsGrind:profitUnits + + + + + 1 + + + oscarsGrind:size + + + + + + + + + + LTE + + + oscarsGrind:profitUnits + + + + + 0 + + + + + + + + + + GT + + + ADD + + + 1 + + + oscarsGrind:size + + + + + 1 + + + oscarsGrind:profitUnits + + + + + + + 0 + + + + + + + oscarsGrind:size + + + MINUS + + + 1 + + + + + 1 + + + oscarsGrind:profitUnits + + + + + + + + + oscarsGrind:size + + + ADD + + + 1 + + + oscarsGrind:size + + + + + 1 + + + + + + + + + + + oscarsGrind:profitUnits + + + 0 + + + + + oscarsGrind:size + + + 1 + + + + + success + + + One Oscar's Grind session finished successfully. + + + + + + + + + + + + + + + oscarsGrind:profitUnits + + + MINUS + + + 1 + + + oscarsGrind:profitUnits + + + + + 1 + + + oscarsGrind:size + + + + + + + + + + + + + + + Oscar's Grind Trade Again After Purchase + Describe this function... + + + oscarsGrind:totalProfit + + + 1 + + + oscarsGrind:profit + + + + + oscarsGrind:totalProfit + + + DIVIDE + + + 1 + + + ROUND + + + 3.1 + + + MULTIPLY + + + 1 + + + oscarsGrind:totalProfit + + + + + 1 + + + 100 + + + + + + + + + 1 + + + 100 + + + + + + + + + + oscarsGrind:resultIsWin + + + + + success + + + + + + Won: + + + + + oscarsGrind:profit + + + + + + + + + warn + + + + + + Lost: + + + + + ABS + + + 9 + + + oscarsGrind:profit + + + + + + + + + + + + + + + + oscarsGrind:resultIsWin + + + + + info + + + + + + Total Profit: + + + + + oscarsGrind:totalProfit + + + + + + + oscarsGrind:tradeAgain + + + FALSE + + + + + + + + LT + + + oscarsGrind:totalProfit + + + + + oscarsGrind:expectedProfit + + + + + + + + + + GT + + + oscarsGrind:totalProfit + + + + + NEG + + + 9 + + + oscarsGrind:maximumLoss + + + + + + + + + oscarsGrind:tradeAgain + + + TRUE + + + + + + + + + abc + + + + + + Maximum Loss Occurred! Total Loss: + + + + + NEG + + + 9 + + + oscarsGrind:totalProfit + + + + + + + + + + + + + + + abc + + + + + + Expected Profit Made! Total Profit: + + + + + oscarsGrind:totalProfit + + + + + + + + + + + + + + + + + + + + + + + oscarsGrind:tradeAgain + + + + + + + + + + + + + + + + 4 + + + + + win + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/sma_crossover.xml b/src/root_files/_common/binary-to-deriv/xml/sma_crossover.xml new file mode 100644 index 0000000000000..a707bb36b46e6 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/sma_crossover.xml @@ -0,0 +1,352 @@ + + + last contract type + sma20 + stake + sma50 + signal: rise + signal: fall + + + synthetic_index + random_index + R_100 + callput + risefall + both + 60 + FALSE + TRUE + + + last contract type + + + none + + + + + stake + + + 1 + + + + + + + + + t + USD + + + - + + + 1 + + + + + 1 + + + stake + + + + + + + + + sma20 + + + + + + + + 20 + + + + + + + sma50 + + + + + + + + 50 + + + + + + + signal: rise + + + AND + + + GT + + + + GET + FROM_END + + + sma20 + + + + + 1 + + + + + + + + GET + FROM_END + + + sma50 + + + + + 1 + + + + + + + + + LTE + + + + GET + FROM_END + + + sma20 + + + + + 2 + + + + + + + + GET + FROM_END + + + sma50 + + + + + 2 + + + + + + + + + + + signal: fall + + + AND + + + LT + + + + GET + FROM_END + + + sma20 + + + + + 1 + + + + + + + + GET + FROM_END + + + sma50 + + + + + 1 + + + + + + + + + GTE + + + + GET + FROM_END + + + sma20 + + + + + 2 + + + + + + + + GET + FROM_END + + + sma50 + + + + + 2 + + + + + + + + + + + + + + signal: rise + + + + + success + silent + + + abc + + + + + + Signal Rise: + + + + + signal: rise + + + + + + + CALL + + + + + + + signal: fall + + + + + success + silent + + + abc + + + + + + Signal Fall: + + + + + signal: fall + + + + + + + PUT + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/root_files/_common/binary-to-deriv/xml/toolbox.xml b/src/root_files/_common/binary-to-deriv/xml/toolbox.xml new file mode 100644 index 0000000000000..56e5a54c00f24 --- /dev/null +++ b/src/root_files/_common/binary-to-deriv/xml/toolbox.xml @@ -0,0 +1,500 @@ + diff --git a/src/root_files/_common/move-to-deriv/.well-known/apple-app-site-association b/src/root_files/_common/move-to-deriv/.well-known/apple-app-site-association new file mode 100644 index 0000000000000..5b861d465e116 --- /dev/null +++ b/src/root_files/_common/move-to-deriv/.well-known/apple-app-site-association @@ -0,0 +1,28 @@ +{ + "applinks": { + "details": [{ + "appID": "36S5Q8S4V5.com.deriv.app", + "paths": [ + "/redirect" + ] + }, + { + "appID": "36S5Q8S4V5.com.deriv.app.dev", + "paths": [ + "/redirect" + ] + }, + { + "appID": "36S5Q8S4V5.com.deriv.app.staging", + "paths": [ + "/redirect" + ] + }, + { + "appID": "36S5Q8S4V5.com.deriv.dp2p", + "paths": [ + "/cashier/p2p" + ] + }] + } +} \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/.well-known/assetlinks.json b/src/root_files/_common/move-to-deriv/.well-known/assetlinks.json new file mode 100644 index 0000000000000..673d2057cba61 --- /dev/null +++ b/src/root_files/_common/move-to-deriv/.well-known/assetlinks.json @@ -0,0 +1,41 @@ +[{ + "relation": ["delegate_permission/common.handle_all_urls"], + "target" : { + "namespace": "android_app", + "package_name": "com.deriv.app", + "sha256_cert_fingerprints": [ + "9B:BD:04:CB:27:B5:FE:59:30:0E:3C:5C:F6:AC:79:52:F3:36:04:7A:FD:A4:59:82:CC:C8:90:3C:74:0E:22:0C", + "60:89:73:84:71:F6:55:AA:2A:0E:23:94:60:84:75:12:A7:86:E1:AE:85:E2:5C:8C:3C:89:5B:51:EA:DB:75:D0" + ] + } +}, { + "relation": ["delegate_permission/common.handle_all_urls"], + "target" : { + "namespace": "android_app", + "package_name": "com.deriv.app.dev", + "sha256_cert_fingerprints": [ + "9B:BD:04:CB:27:B5:FE:59:30:0E:3C:5C:F6:AC:79:52:F3:36:04:7A:FD:A4:59:82:CC:C8:90:3C:74:0E:22:0C", + "60:89:73:84:71:F6:55:AA:2A:0E:23:94:60:84:75:12:A7:86:E1:AE:85:E2:5C:8C:3C:89:5B:51:EA:DB:75:D0" + ] + } +}, { + "relation": ["delegate_permission/common.handle_all_urls"], + "target" : { + "namespace": "android_app", + "package_name": "com.deriv.app.staging", + "sha256_cert_fingerprints": [ + "9B:BD:04:CB:27:B5:FE:59:30:0E:3C:5C:F6:AC:79:52:F3:36:04:7A:FD:A4:59:82:CC:C8:90:3C:74:0E:22:0C", + "60:89:73:84:71:F6:55:AA:2A:0E:23:94:60:84:75:12:A7:86:E1:AE:85:E2:5C:8C:3C:89:5B:51:EA:DB:75:D0" + ] + } +}, { + "relation": ["delegate_permission/common.handle_all_urls"], + "target" : { + "namespace": "android_app", + "package_name": "com.deriv.dp2p", + "sha256_cert_fingerprints": [ + "58:A3:D1:77:A0:5A:BE:73:76:B8:90:29:1B:D3:BD:E9:DF:ab:FF:3B:52:B4:15:6E:FA:A9:68:91:3F:6D:DE:78", + "E7:45:0A:69:4F:0D:84:43:A8:E1:E0:3D:9D:00:E2:E5:8F:84:9F:81:B1:8F:94:A6:F9:0E:6A:D9:F6:52:13:EB" + ] + } +}] \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/404.html b/src/root_files/_common/move-to-deriv/404.html index a1fa1d75254ce..4ff8e3d0d9917 100644 --- a/src/root_files/_common/move-to-deriv/404.html +++ b/src/root_files/_common/move-to-deriv/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/404/index.html b/src/root_files/_common/move-to-deriv/404/index.html index 83db61d4aa7cf..353eda734d616 100644 --- a/src/root_files/_common/move-to-deriv/404/index.html +++ b/src/root_files/_common/move-to-deriv/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/562-3bc8ff6b93b3ba9a85c7.js b/src/root_files/_common/move-to-deriv/562-2fe3822883db712e4db2.js similarity index 99% rename from src/root_files/_common/move-to-deriv/562-3bc8ff6b93b3ba9a85c7.js rename to src/root_files/_common/move-to-deriv/562-2fe3822883db712e4db2.js index 64307261ba0e6..064b6af7dc6e0 100644 --- a/src/root_files/_common/move-to-deriv/562-3bc8ff6b93b3ba9a85c7.js +++ b/src/root_files/_common/move-to-deriv/562-2fe3822883db712e4db2.js @@ -1,2 +1,2 @@ -(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[562],{9562:function(e,t,M){"use strict";M.r(t),M.d(t,{default:function(){return w}});var n=M(7294),r=M(7513),a=M(258),u=M(6659),i=M(4508),l=M(8838),o=M(476),j=function(e){var t=e.is_ppc,M=e.is_ppc_redirect,a=e.is_eu_country;return n.createElement(u.SJ,null,n.createElement(r.di.Desktop,null,n.createElement(r.kC,{jc:"space-between"},n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("ABOUT"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/story/"},(0,l.NC)("Our story"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/leadership/"},(0,l.NC)("Our leadership"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/why-choose-us/"},(0,l.NC)("Why choose us?"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/partners/"},(0,l.NC)("Partnership programmes"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/contact_us/"},(0,l.NC)("Contact us"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/careers/"},(0,l.NC)("Careers")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("TRADE"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/dtrader/"},(0,l.NC)("DTrader"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/dbot/"},(0,l.NC)("DBot"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:M?"/landing/dmt5/":"/dmt5/"},(0,l.NC)("DMT5"))),!a&&n.createElement(u.gM,null,n.createElement(u.rU,{to:"/derivx/"},(0,l.NC)("Deriv X"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"trading",type:"smart_trader",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("SmartTrader"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"https://bot.deriv.com",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("BinaryBot")))),!t&&n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("TRADE TYPES"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/trade-types/cfds/"},(0,l.NC)("CFDs"))),n.createElement(r.di.NonEU,null,n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trade-types/options/"},(0,l.NC)("Options")))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trade-types/multiplier/"},(0,l.NC)("Multipliers")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("MARKETS"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/markets/forex/"},(0,l.NC)("Forex"))),!t&&n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/synthetic/"},(0,l.NC)("Synthetic indices"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/stock/"},(0,l.NC)("Stocks & indices"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/commodities/"},(0,l.NC)("Commodities"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/cryptocurrencies/"},(0,l.NC)("Cryptocurrencies")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("LEGAL"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/regulatory/"},(0,l.NC)("Regulatory information"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/terms-and-conditions/#clients"},(0,l.NC)("Terms and conditions"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/responsible/"},(0,l.NC)("Secure and responsible trading")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("PARTNER"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/partners/affiliate-ib/"},(0,l.NC)("Affiliates and IBs"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/partners/payment-agent/"},(0,l.NC)("Payment agents"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer"},(0,l.NC)("API")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("RESOURCES"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/help-centre/"},(0,l.NC)("Help centre"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"",type:"community",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("Community"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trader-tools/"},(0,l.NC)("Traders’ tools"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/payment-methods/"},(0,l.NC)("Payment methods"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:o.bF,target:"_blank",external:"true",rel:"noopener noreferrer"},(0,l.NC)("Status page"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/academy/"},(0,l.NC)("Academy")))))))},L=function(){return n.createElement(n.Fragment,null,n.createElement(u.zO,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"In the EU, financial products are offered by Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Outside the EU, financial products are offered by the following companies: Deriv (FX) Ltd, F16, Level 1, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, licensed by Labuan Financial Services Authority (<0>licence no. MB/18/0024); Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, licensed by the British Virgin Islands Financial Services Commission (<1>licence no. SIBA/L/18/1114); Deriv (V) Ltd (<2>view licence), 1276, Kumul Highway, Port Vila, Vanuatu, licensed and regulated by the Vanuatu Financial Services Commission; and Deriv (SVG) LLC, Hinds Buildings, Kingstown, St. Vincent and the Grenadines.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(FX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:1,target:"_blank",href:"/regulatory/Deriv_(BVI)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:2,target:"_blank",href:"/regulatory/Deriv_(V)_Ltd.pdf",rel:"noopener noreferrer"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulation by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated by the Gambling Supervision Commission in the Isle of Man (<0>view licence) and by the UK Gambling Commission for clients in the UK (<1>account no. 39172).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(MX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.Mk,{external:"true",key:1,target:"_blank",to:"https://www.gamblingcommission.gov.uk/public-register/business/detail/39172",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed and regulated for digital options based on synthetic indices by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (licence no. 1010285).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]}))),n.createElement(u.rq,null,(0,l.NC)("This website's services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(u.qy,null,n.createElement(r.di.Desktop,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org for more information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]})))),n.createElement(r.di.Mobile,null,n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org if you need further information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]}))),n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]})))))))},N=function(){return n.createElement(n.Fragment,null,n.createElement(u.zO,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"In the EU, financial products are offered by Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Outside the EU, financial products are offered by the following companies: Deriv (FX) Ltd, F16, Level 1, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, licensed by Labuan Financial Services Authority (<0>licence no. MB/18/0024); Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, licensed by the British Virgin Islands Financial Services Commission (<1>licence no. SIBA/L/18/1114); Deriv (V) Ltd (<2>view licence), 1276, Kumul Highway, Port Vila, Vanuatu, licensed and regulated by the Vanuatu Financial Services Commission; and Deriv (SVG) LLC, Hinds Buildings, Kingstown, St. Vincent and the Grenadines.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(FX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:1,target:"_blank",href:"/regulatory/Deriv_(BVI)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:2,target:"_blank",href:"/regulatory/Deriv_(V)_Ltd.pdf",rel:"noopener noreferrer"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulation by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated by the Gambling Supervision Commission in the Isle of Man (<0>view licence) and by the UK Gambling Commission for clients in the UK (<1>account no. 39172).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(MX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.Mk,{external:"true",key:1,target:"_blank",to:"https://www.gamblingcommission.gov.uk/public-register/business/detail/39172",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed and regulated for digital options based on synthetic indices by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (licence no. 1010285).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]}))),n.createElement(u.rq,null,(0,l.NC)("This website's services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(u.rq,null,(0,l.NC)("The information contained in this academy is for educational purposes only and is not intended as financial or investment advice.")),n.createElement(u.qy,null,n.createElement(r.di.Desktop,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org for more information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]})))),n.createElement(r.di.Mobile,null,n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org if you need further information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]}))),n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]})))))))};var c=M(2466),g=function(){var e=(new Date).getFullYear();return n.createElement(u.OT,null,n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTggMGE4IDggMCAxMTAgMTZBOCA4IDAgMDE4IDB6bTAgMWE3IDcgMCAxMDAgMTRBNyA3IDAgMDA4IDF6bS4yMiAzYy43MTkgMCAxLjI5NS4xNTYgMS43MjkuNDY5LjQzNC4zMTMuNzU4LjcyMS45NzMgMS4yMjVsLS45MzguNDc2YTEuNyAxLjcgMCAwMC0uNjQ0LS44NjhjLS4yOTktLjIwNS0uNjcyLS4zMDgtMS4xMi0uMzA4LS4zMzYgMC0uNjMuMDU0LS44ODIuMTYxYTEuNzIyIDEuNzIyIDAgMDAtLjYzLjQ0OGMtLjE2OC4xOTEtLjI5NC40Mi0uMzc4LjY4NmEyLjg5NCAyLjg5NCAwIDAwLS4xMjYuODc1djEuMjMyYzAgLjYzNS4xNyAxLjE1NS41MTEgMS41NjEuMzQuNDA2Ljg0Mi42MDkgMS41MDUuNjA5LjkwNSAwIDEuNTU5LS40MiAxLjk2LTEuMjZsLjgxMi41NDZhMi44NyAyLjg3IDAgMDEtMS4wNDMgMS4yNDZjLS40NjIuMzA4LTEuMDM4LjQ2Mi0xLjcyOS40NjItLjUwNCAwLS45NTctLjA4OS0xLjM1OC0uMjY2YTIuNzc0IDIuNzc0IDAgMDEtMS4wMTUtLjc1NiAzLjM3IDMuMzcgMCAwMS0uNjMtMS4xOUE1LjI4NSA1LjI4NSAwIDAxNSA3Ljc4YzAtLjU3OS4wNzItMS4xMDEuMjE3LTEuNTY4YTMuMzcgMy4zNyAwIDAxLjYzLTEuMTkgMi43NzQgMi43NzQgMCAwMTEuMDE1LS43NTZBMy4zMjYgMy4zMjYgMCAwMTguMjIgNHoiIGZpbGw9IiMzMzMiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==",alt:"copyright ic",width:"16",height:"16"}),n.createElement(c.xv,{ml:"0.4rem"},n.createElement(l.Xx,{translate_text:"{{current_year}} Deriv | All rights reserved",values:{current_year:e}})))};var y=function(e){var t=e.social_accounts;return n.createElement(u.xO,null,t.map((function(e,t){return n.createElement(l.UE,{key:t,external:"true",to:e.link,target:"_blank",rel:"noopener noreferrer"},n.createElement("img",{src:e.image,alt:e.image_alt,width:"41",height:"41"}))})))},D=function(e){var t=e.is_career_page,M=e.fb_url,r=e.instagram_url,a=e.twitter_url,u=(t?"career":"")+" icon link",i=[{link:t?o.CU:M,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yMS4xMDQgMy43NTVMMTguMTggMy43NWMtMy4yODQgMC01LjQwNiAyLjE3My01LjQwNiA1LjUzN3YyLjU1M2gtMi45NGEuNDYuNDYgMCAwMC0uNDU5LjQ2djMuNjk4YzAgLjI1NC4yMDYuNDYuNDYuNDZoMi45Mzl2OS4zMzNjMCAuMjU0LjIwNS40NTkuNDYuNDU5aDMuODM0YS40Ni40NiAwIDAwLjQ2LS40NTl2LTkuMzM0aDMuNDM2YS40Ni40NiAwIDAwLjQ2LS40NTlsLjAwMi0zLjY5OWEuNDYuNDYgMCAwMC0uNDYtLjQ1OWgtMy40MzhWOS42NzZjMC0xLjA0LjI0OC0xLjU2OCAxLjYwNi0xLjU2OGgxLjk3YS40Ni40NiAwIDAwLjQ1OS0uNDZWNC4yMTNhLjQ1OS40NTkgMCAwMC0uNDYtLjQ1OHoiLz48L2c+PC9nPjwvc3ZnPg==",image_alt:"facebook "+u},{link:t?o.R2:r,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yMC4wNCAzLjc1YTYuMjE3IDYuMjE3IDAgMDE2LjIxIDYuMjF2MTAuMDhhNi4yMTcgNi4yMTcgMCAwMS02LjIxIDYuMjFIOS45NmE2LjIxNiA2LjIxNiAwIDAxLTYuMjEtNi4yMVY5Ljk2YTYuMjE3IDYuMjE3IDAgMDE2LjIxLTYuMjF6bTAgMS45OTZIOS45NmE0LjIxOCA0LjIxOCAwIDAwLTQuMjE0IDQuMjEzdjEwLjA4MmE0LjIxOCA0LjIxOCAwIDAwNC4yMTMgNC4yMTNoMTAuMDgyYTQuMjE4IDQuMjE4IDAgMDA0LjIxMy00LjIxM1Y5Ljk1OWE0LjIxOCA0LjIxOCAwIDAwLTQuMjEzLTQuMjEzek0xNSA5LjEwN0E1LjkgNS45IDAgMDEyMC44OTMgMTUgNS45IDUuOSAwIDAxMTUgMjAuODkzIDUuOSA1LjkgMCAwMTkuMTA3IDE1IDUuOSA1LjkgMCAwMTE1IDkuMTA3em0wIDIuMDNBMy44NjggMy44NjggMCAwMDExLjEzNiAxNWMwIDIuMTMgMS43MzQgMy44NjQgMy44NjQgMy44NjRTMTguODY0IDE3LjEzIDE4Ljg2NCAxNSAxNy4xMyAxMS4xMzYgMTUgMTEuMTM2ek0yMS4xNiA3LjVhMS4zNDIgMS4zNDIgMCAwMS45NDggMi4yODdjLS4yNS4yNDgtLjU5NC4zOTItLjk0Ny4zOTJhMS4zNSAxLjM1IDAgMDEtLjk0Ni0uMzkyIDEuMzUyIDEuMzUyIDAgMDEtLjM5NC0uOTQ4IDEuMzQ0IDEuMzQ0IDAgMDExLjM0LTEuMzM5eiIvPjwvZz48L2c+PC9zdmc+",image_alt:"instagram "+u},{link:t?o.Cd:o.ts,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00LjU4MyAyMy43NWgzLjMzNGMuNDYgMCAuODMzLS4zMTYuODMzLS43MDV2LTEyLjM0YzAtLjM5LS4zNzMtLjcwNS0uODMzLS43MDVINC41ODNjLS40NiAwLS44MzMuMzE2LS44MzMuNzA1djEyLjM0YzAgLjM5LjM3My43MDUuODMzLjcwNXptMC0xNi4yNWgzLjMzNGMuNDYgMCAuODMzLS4zMDIuODMzLS42NzV2LTIuNGMwLS4zNzMtLjM3My0uNjc1LS44MzMtLjY3NUg0LjU4M2MtLjQ2IDAtLjgzMy4zMDItLjgzMy42NzV2Mi40YzAgLjM3My4zNzMuNjc1LjgzMy42NzV6bTIwLjU3NSAzLjE1NmMtLjQwOS0uNTU1LTEuMDEtMS4wMTItMS44MDYtMS4zNy0uNzk1LS4zNTctMS42NzMtLjUzNi0yLjYzNC0uNTM2LTEuOTUgMC0zLjYwMy43Ny00Ljk1OCAyLjMwOC0uMjcuMzA2LS40NjYuMjQtLjQ2Ni0uMTc1di0xYS43MzcuNzM3IDAgMDAtLjcyNS0uNzQ5aC0yLjU5NGMtLjQgMC0uNzI1LjMzNi0uNzI1Ljc1VjIzYzAgLjQxNC4zMjUuNzUuNzI1Ljc1aDIuOTA0Yy40IDAgLjcyNS0uMzM2LjcyNS0uNzV2LTQuNTZjMC0xLjkuMTExLTMuMjAzLjMzMy0zLjkwOGEzLjIyMSAzLjIyMSAwIDAxMS4yMzItMS42OTdjLjYtLjQyNyAxLjI3Ni0uNjQgMi4wMy0uNjQuNTkgMCAxLjA5My4xNDkgMS41MTEuNDQ4LjQxOS4yOTkuNzIuNzE4LjkwNyAxLjI1Ny4xODYuNTM5LjI3OSAxLjcyNy4yNzkgMy41NjNWMjNjMCAuNDE0LjMyNC43NS43MjUuNzVoMi45MDRjLjQgMCAuNzI1LS4zMzYuNzI1LS43NXYtNy40MjhjMC0xLjMxMy0uMDgtMi4zMjItLjI0LTMuMDI2YTUuMDMyIDUuMDMyIDAgMDAtLjg1Mi0xLjg5eiIvPjwvZz48L2c+PC9zdmc+",image_alt:"linkedin "+u}],l={link:a,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNy4xODggNy44NDVhOS40NDggOS40NDggMCAwMS0yLjY1OC43NDcgNC42ODcgNC42ODcgMCAwMDIuMDI5LTIuNjE1IDkuMDkgOS4wOSAwIDAxLTIuOTI1IDEuMTQ1IDQuNTcyIDQuNTcyIDAgMDAtMy4zNy0xLjQ5N2MtMi41NTMgMC00LjYxIDIuMTI2LTQuNjEgNC43MzIgMCAuMzc1LjAzMi43MzYuMTA4IDEuMDgtMy44MzUtLjE5My03LjIyOC0yLjA3OC05LjUwOC00Ljk1YTQuODYzIDQuODYzIDAgMDAtLjYzMSAyLjM5MmMwIDEuNjM4LjgyMiAzLjA5IDIuMDQ5IDMuOTMyYTQuNDc2IDQuNDc2IDAgMDEtMi4wODQtLjU4M3YuMDUyYzAgMi4yOTkgMS41OTggNC4yMDggMy42OTUgNC42NDhhNC40NjggNC40NjggMCAwMS0xLjIxLjE1NmMtLjI5NSAwLS41OTMtLjAxNy0uODczLS4wOC41OTggMS44NzMgMi4yOTQgMy4yNSA0LjMxIDMuMjk1YTkuMTE0IDkuMTE0IDAgMDEtNS43MTkgMi4wMThjLS4zNzggMC0uNzQtLjAxNy0xLjEwNC0uMDY1YTEyLjc1OCAxMi43NTggMCAwMDcuMDc3IDIuMTIzYzguNDg4IDAgMTMuMTI4LTcuMjEyIDEzLjEyOC0xMy40NjMgMC0uMjA5LS4wMDctLjQxLS4wMTYtLjYxMWE5LjM0MiA5LjM0MiAwIDAwMi4zMTEtMi40NTZ6Ii8+PC9nPjwvZz48L3N2Zz4=",image_alt:"twitter "+u};return t||i.splice(1,0,l),n.createElement(y,{social_accounts:i})},s=M(4133),I=M(4845),m=function(e){var t=e.type,M=(0,s.Z)()[0],a=(null==M?void 0:M.clients_country)||"";return n.createElement(n.Fragment,null,n.createElement(r.di.NonEU,null,n.createElement(D,{is_career_page:"careers"===t,fb_url:o.wZ,instagram_url:o.yK,twitter_url:o.Y0})),n.createElement(r.di.Eu,null,n.createElement(r.di.Mobile,null,n.createElement(D,{is_career_page:"careers"===t,fb_url:(0,I.Fr)(a)?o.Gf:o.JN,instagram_url:(0,I.Fr)(a)?o.Vf:o.IN,twitter_url:(0,I.Fr)(a)?o.dy:o.dA}))))},E=M(5444);var A="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NiIgaGVpZ2h0PSIyOSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDk2djI4LjhIMHoiLz48cGF0aCBmaWxsPSIjMzVBOEUwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00Ni41MTMgMjIuNjA3SC44NDdBLjgzNy44MzcgMCAwMTAgMjEuNzgxdi03LjcxN0MwIDkuNjEgMy43MDIgNiA4LjI2OSA2aDM4LjI0NGMuNDY4IDAgLjg0Ny4zNy44NDcuODI2djE0Ljk4OGMwIC40NTYtLjM4LjgyNi0uODQ3LjgyNnYtLjAzM3oiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00Ni4zNTkgMjIuNjRIMWMtLjU1MiAwLTEtLjQzMi0xLS45NjV2LTcuNTdDMCA5LjYzIDMuNzY4IDYgOC40MTUgNkg0Ni4zNmMuNTUzIDAgMS4wMDEuNDMyIDEuMDAxLjk2NXYxNC43MWMwIC41MzMtLjQ0OC45NjUtMS4wMDEuOTY1ek04LjM5OSA2LjM5QzMuOTcgNi4zOTMuMzgyIDkuODUuMzc4IDE0LjExMnY3LjU3YzAgLjMyNy4yNzUuNTkyLjYxNC41OTJoNDUuMzY2YS42MjUuNjI1IDAgMDAuNDM0LS4xNzMuNTguNTggMCAwMC4xOC0uNDE4VjYuOTczYS41ODMuNTgzIDAgMDAtLjE4LS40MTkuNjI5LjYyOSAwIDAwLS40MzQtLjE3M2wtMzcuOTYuMDA4eiIvPjxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE2LjcyMyAxMy43NHY2LjE2N2EuMTE1LjExNSAwIDAxLS4xMTYuMTE1SDE0LjE1YS4xMTUuMTE1IDAgMDEtLjExNy0uMTE1LjEyLjEyIDAgMDAtLjA1LS4wOTUuMTIuMTIgMCAwMC0uMTA5LS4wMTIgNC45NTQgNC45NTQgMCAwMS0uNzUxLjE3MyA2LjI2NSA2LjI2NSAwIDAxLS45MjguMDc0IDUuOTc0IDUuOTc0IDAgMDEtMi4xODgtLjQ1MyA1LjY3NSA1LjY3NSAwIDAxLTEuOTMtMS4yNiA1LjQ5NyA1LjQ5NyAwIDAxLTEuMjYtMS44NjggNS43ODYgNS43ODYgMCAwMTAtNC4zMjIgNS40NTcgNS40NTcgMCAwMTEuMjctMS45MDIgNS42NjIgNS42NjIgMCAwMTEuOTI5LTEuMjYgNS45MjQgNS45MjQgMCAwMTQuMzkzIDBjLjY4NS4yNyAxLjMwOS42NyAxLjgzNyAxLjE3N2EuMTE0LjExNCAwIDAxMCAuMTY1bC0xLjcyOSAxLjcwNGEuMTE4LjExOCAwIDAxLS4wODMuMDM1LjExOS4xMTkgMCAwMS0uMDg0LS4wMzUgMy4wMTIgMy4wMTIgMCAwMC0uOTYtLjYgMy4yMTggMy4yMTggMCAwMC0yLjM3MiAwYy0uMzkyLjE1LS43NDguMzgtMS4wNDQuNjc0YTMuMDczIDMuMDczIDAgMDAtLjkyNSAyLjE5NGMwIC44MjQuMzMzIDEuNjEzLjkyNSAyLjE5NC4yNjYuMjY3LjU4LjQ4MS45MjcuNjM0YTMuMTYgMy4xNiAwIDAwMS4wNi4yNjRjLjM2Ni4wMjcuNzMzLS4wMDcgMS4wODYtLjEuMzM4LS4wODYuNjU3LS4yMzEuOTQ0LS40MjdhLjExNC4xMTQgMCAwMC4wNS0uMDk5di0uMzk1YS4xMTUuMTE1IDAgMDAtLjExNy0uMTE1SDExLjgzYS4xMTYuMTE2IDAgMDEtLjExNy0uMTE2di0yLjM5NWMwLS4wNjQuMDUyLS4xMTYuMTE3LS4xMTZoNC43N2EuMTIuMTIgMCAwMS4wODcuMDMxLjExNS4xMTUgMCAwMS4wMzcuMDg1em05LjEzOCA2LjIxNmwtLjQwMS0xLjE4NWEuMTE4LjExOCAwIDAwLS4xMTctLjA4M2gtMy40OTFhLjEyLjEyIDAgMDAtLjEwOS4wODNsLS40MTcgMS4yMjZhLjEyLjEyIDAgMDEtLjEwOS4wODNoLTIuNTczYS4xMTguMTE4IDAgMDEtLjA5NS0uMDUuMTE0LjExNCAwIDAxLS4wMTMtLjEwN2wzLjg2Ny0xMS4xOTZhLjExOC4xMTggMCAwMS4xMDktLjA4M2gyLjM1NWEuMTE3LjExNyAwIDAxLjExNy4wODNsMy42NjcgMTEuMTk2YS4xMTcuMTE3IDAgMDEtLjAxNS4xMS4xMTguMTE4IDAgMDEtLjEwMi4wNDdoLTIuNTU2YS4xMTYuMTE2IDAgMDEtLjExNy0uMTI0em0tMi45OTktMy45MzVoMS41NTRhLjExNi4xMTYgMCAwMC4xMTctLjE1N2wtLjc1Mi0yLjI4OGEuMTE3LjExNyAwIDAwLS4yMjUgMGwtLjgzNiAyLjI4OWEuMTE1LjExNSAwIDAwLjE0Mi4xNTZ6TTM4LjkgOC41ODdoMi41NTZjLjA2MSAwIC4xMTIuMDQ3LjExNy4xMDdsLjY2OCAxMS4yMTNhLjEyMS4xMjEgMCAwMS0uMDMxLjA4Ny4xMjIuMTIyIDAgMDEtLjA4Ni4wMzZoLTIuNDRhLjExNi4xMTYgMCAwMS0uMTE2LS4xMDdsLS4yNDItMy45NjhhLjExNy4xMTcgMCAwMC0uMTE3LS4xMTUuMTE2LjExNiAwIDAwLS4xMTcuMTE1bC0xLjM3IDQuMDAxYS4xMTcuMTE3IDAgMDEtLjEwOC4wODNoLTIuNTA2YS4xMi4xMiAwIDAxLS4xMDktLjA4M2wtMS41MDMtNC4yMzFhLjExNy4xMTcgMCAwMC0uMjM0IDBsLS4yNjcgNC4xNjVhLjExNy4xMTcgMCAwMS0uMTE3LjEwN0gzMC40MmEuMTEyLjExMiAwIDAxLS4xMTYtLjEyM2wuNzM0LTExLjE3MmEuMTE3LjExNyAwIDAxLjExNy0uMTA3aDIuNTU2YS4xMi4xMiAwIDAxLjEwOS4wODNsMi40MDUgNi43NjdhLjExOC4xMTggMCAwMC4yMjYgMGwyLjMzOC02Ljc2N2EuMTE3LjExNyAwIDAxLjEwOS0uMDkxeiIvPjxwYXRoIGZpbGw9IiMxRDFEMUIiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTQ4LjIxOCA2aDQ2LjI4NGMuNDc0IDAgLjg1OC4zNy44NTguODI4djcuNzMyYzAgNC40NjItMy43NSA4LjA4LTguMzc4IDguMDhINDguMjE4Yy0uNDc0IDAtLjg1OC0uMzctLjg1OC0uODI4VjYuNzk1Yy4wMTgtLjQ0NC4zOTctLjc5NS44NTgtLjc5NXoiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik04Ny4zNyAyMi42NEg0OC4zODdjLS41NjggMC0xLjAyOC0uNDMyLTEuMDI4LS45NjVWNi45NjVjMC0uNTMzLjQ2LS45NjUgMS4wMjgtLjk2NWg0Ni41ODRDOTUuNTQgNiA5NiA2LjQzMiA5NiA2Ljk2NXY3LjU3NGMtLjAwNSA0LjQ3Mi0zLjg2NiA4LjA5Ny04LjYzIDguMTAxek00OC4zODcgNi4zODFjLS4zNDggMC0uNjMuMjY1LS42My41OTJ2MTQuNzAyYzAgLjMyNy4yODIuNTkyLjYzLjU5Mkg4Ny4zN2M0LjU0NS0uMDA0IDguMjI5LTMuNDYyIDguMjM0LTcuNzI4VjYuOTY1YzAtLjMyNy0uMjgzLS41OTItLjYzMS0uNTkybC00Ni41ODQuMDA4eiIvPjxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTU1LjEzOSAxOC43OTRjLS4zNyAwLS43MzktLjA1LTEuMDk1LS4xNDRhMy44MTQgMy44MTQgMCAwMS0xLjAzNy0uNDQ4IDMuNzggMy43OCAwIDAxLTEuMzMtMS4zNjggMy42NTQgMy42NTQgMCAwMS0uNDc3LTEuNzIuMTE0LjExNCAwIDAxLjAzMS0uMDg0LjEyMi4xMjIgMCAwMS4wODYtLjAzNmgyLjQ4NGMuMDY1IDAgLjExNy4wNS4xMTcuMTEyLjAwMi4yMTMuMDcyLjQyLjIuNTkyLjEwMi4xMzQuMjI2LjI1LjM2OS4zNDQuMTgzLjEyLjM5Ny4xOS42MTkuMi4yMjQuMDEuNDQ4LS4wMy42NTItLjEyYTEuMDYgMS4wNiAwIDAwLjM2LS4yMjRjLjA4MS0uMDc5LjE1MS0uMTY3LjIwOC0uMjY0YS42ODguNjg4IDAgMDAuMDg0LS4yNDhjLjAyMS0uMTMuMDIxLS4yNjIgMC0uMzkyYS43NDkuNzQ5IDAgMDAtLjA4NC0uMjU2IDEuMDQgMS4wNCAwIDAwLS4yMDktLjI2NCAxLjM3IDEuMzcgMCAwMC0uMzYtLjIzMmwtLjM2Ny0uMTM2LS40MTgtLjEzNi0uODM3LS4yNzJhNC42ODYgNC42ODYgMCAwMS0uODM2LS40MDggMy4yNzggMy4yNzggMCAwMS0uOTM2LS44IDMuMiAzLjIgMCAwMS0uNjYxLTIuMjY0Yy4wMzgtLjQxLjE2LS44MS4zNi0xLjE3NS4xODItLjMzNi40MjItLjYzOS43MS0uODk2YTMuNDE2IDMuNDE2IDAgMDEyLjA2NS0uODY0Yy40MTEtLjAzLjgyNC4wMDQgMS4yMjIuMTA0LjM4NS4wODUuNzUyLjIzIDEuMDg3LjQzMi4zMTcuMTkyLjYuNDMyLjgzNi43MTJhMy4xIDMuMSAwIDAxLjY4NiAxLjg0Ny4xMTcuMTE3IDAgMDEtLjAzMS4wODUuMTIuMTIgMCAwMS0uMDg2LjAzNWgtMi40MjVhLjExNC4xMTQgMCAwMS0uMTE3LS4wOTYuNDc4LjQ3OCAwIDAwLS4yMjYtLjM4NCAxLjgwMiAxLjgwMiAwIDAwLS4zOTMtLjE3NmgtLjEzNGEuODA0LjgwNCAwIDAwLS4yNjggMCAxLjAxNiAxLjAxNiAwIDAwLS4zMDkuMTA0LjYuNiAwIDAwLS4yNS4yNjQuNjQ4LjY0OCAwIDAwLS4wNTEuNTA0Yy4wNDkuMTcyLjE2Mi4zMi4zMTguNDE2LjE1OC4wODUuMzIzLjE1Ny40OTMuMjE2bC41NjkuMTkyLjU0My4xNjhjLjE4NC4wNTkuMzcxLjEyOC41Ni4yMDggMS4zNDYuNTY2IDIuMjE3IDEuODM1IDIuMjI1IDMuMjRhMy40MDMgMy40MDMgMCAwMS0uNjAyIDEuOTUyIDMuOTUgMy45NSAwIDAxLTIuNDY3IDEuNiA0LjUzMiA0LjUzMiAwIDAxLS44NzguMDh6bTM1Ljc0LTYuNDMyYTQuMzggNC4zOCAwIDAxLS4zNjcgMS43OTIgNC42MzQgNC42MzQgMCAwMS0xLjAyOSAxLjQ3MiA0Ljk3NiA0Ljk3NiAwIDAxLTMuMjc4IDEuMzkyLjExNS4xMTUgMCAwMC0uMTE3LjExMnYxLjU1MmEuMTE0LjExNCAwIDAxLS4xMTcuMTEyaC0yLjQzM2EuMTE0LjExNCAwIDAxLS4xMTctLjExMlY3LjgwMmMwLS4wNjEuMDUyLS4xMTEuMTE3LS4xMTFoMi41NDJhNC44MSA0LjgxIDAgMDExLjg2NS4zOTJjLjU3LjI0NSAxLjA5LjU5IDEuNTMgMS4wMTUuNDM4LjQyNC43ODcuOTI0IDEuMDI5IDEuNDcyLjI1LjU2Ny4zNzggMS4xNzcuMzc2IDEuNzkyem0tNC44IDJhLjExLjExIDAgMDAuMDM4LjA4Mi4xMTkuMTE5IDAgMDAuMDg4LjAzIDIuMTMgMi4xMyAwIDAwLjcwMy0uMTg0Yy4yNS0uMTEyLjQ3Ni0uMjY2LjY2OS0uNDU2YTIuMDkgMi4wOSAwIDAwLjQ1MS0uNjY0IDIuMDMgMi4wMyAwIDAwMC0xLjYgMi4xMDIgMi4xMDIgMCAwMC0uNDUxLS42NjQgMi4zMDUgMi4zMDUgMCAwMC0uNjctLjQ1NmMtLjIyLS4xLS40NTgtLjE2Mi0uNzAyLS4xODQtLjA2Mi0uMDA0LS4xMTcuMDM4LS4xMjUuMDk2djR6bS0xMC45NDYtNi42OGE1Ljg0MiA1Ljg0MiAwIDAxMi4yNTguNDQgNi4wMjIgNi4wMjIgMCAwMTEuODQ4IDEuMTg0IDUuNTkgNS41OSAwIDAxMS4yNDYgMS43NiA1LjMzOSA1LjMzOSAwIDAxMCA0LjMyOCA1LjU5NiA1LjU5NiAwIDAxLTEuMjQ2IDEuNzZjLS41My41MS0xLjE1Ny45Mi0xLjg0OCAxLjIwOGE2LjAzNyA2LjAzNyAwIDAxLTQuNTE1IDBjLTEuMzg4LS41NjQtMi40OTItMS42MjMtMy4wNzgtMi45NTJhNS4zNzkgNS4zNzkgMCAwMTAtNC4zMjhjLjU4Ni0xLjMyOSAxLjY5LTIuMzg3IDMuMDc4LTIuOTUxYTUuODQ2IDUuODQ2IDAgMDEyLjI1Ny0uNDQ5em0wIDguNTUyYTMuMTYgMy4xNiAwIDAwMS4yMjEtLjIzMiAzLjA4NyAzLjA4NyAwIDAwMS42NzMtMS42IDIuODkzIDIuODkzIDAgMDAwLTIuMzI4IDMuMDk3IDMuMDk3IDAgMDAtMS42NzMtMS42IDMuMjggMy4yOCAwIDAwLTIuNDMzIDAgMy4wOTMgMy4wOTMgMCAwMC0xLjY3MyAxLjYgMi44OTMgMi44OTMgMCAwMDAgMi4zMjhjLjMyLjcyLjkyIDEuMjk1IDEuNjczIDEuNmEzLjE2IDMuMTYgMCAwMDEuMjIuMjMyaC0uMDA4eiIvPjxyZWN0IHdpZHRoPSIyLjU2IiBoZWlnaHQ9IjguOTYiIHg9IjY0IiB5PSI5Ljg0IiBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMTYyIi8+PHJlY3Qgd2lkdGg9IjcuNjgiIGhlaWdodD0iMi41NiIgeD0iNjEuNDQiIHk9IjguNTYiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4xNjIiLz48L2c+PC9zdmc+";var d="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OCIgaGVpZ2h0PSI0NCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDg4djQ0SDB6Ii8+PHBhdGggZmlsbD0iI0QxMDEwRSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTcuMTA2IDEwLjYwM3YxMS41MjJMMTEuNDM4IDUuNDYzYy0uNjQ1LTEuOS44OTYtLjY3NC44OTYtLjY3NGwzLjIzNiAyLjU3M2MuOTI3Ljc4NiAxLjQ4OCAxLjk2OCAxLjUzNiAzLjIzNW0tNS42NjggMjguMTlsNS42NjgtMTYuNjYyLTE2LjA4MSA1Ljg2Yy0xLjgzMS42NjgtLjY1LS45MjYtLjY1LS45MjZsMi40ODctMy4zMTdjLjc4OC0uOTczIDEuOTE5LTEuNTUgMy4xMi0xLjU5NC0xLjIwMS0uMDQ0LTIuMzMyLS42MjEtMy4xMi0xLjU5NEwuMzggMTcuMTc4cy0xLjE4LTEuNTk0LjY1LS45MjZsMTYuMDgxIDUuODZ2MTEuNTM1Yy0uMDQ3IDEuMjY3LS42MDggMi40NDktMS41MzYgMy4yMzVsLTMuMjQxIDIuNTczcy0xLjUzNiAxLjIyNS0uODkxLS42NjgiLz48cGF0aCBmaWxsPSIjODE4MDg0IiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik04Mi4wMTQgMTkuMzg5djMuNDZhNC45MiA0LjkyIDAgMDEtMi41ODguNjY2Yy0xLjM1NCAwLTIuMjEzLS42MjctMi4yMTMtMS45MjZhMS43MzQgMS43MzQgMCAwMS43ODgtMS42MTMgNC4yNzYgNC4yNzYgMCAwMTIuMTA0LS41MTNsMS45MDktLjA3NHptMS4zMzIgOC4zMDNIODhjLS4yNTMtMS4yLS4zNTQtMi40My0uMjk5LTMuNjU4di04LjMzOGMwLTQuNTI1LTIuMjUxLTcuMDc5LTcuNzMxLTcuMDc5YTE1LjQ4NSAxNS40ODUgMCAwMC03LjMxOSAxLjgwN2wxLjc2MiAzLjczOWE5LjgxNyA5LjgxNyAwIDAxNC41MDItMS4xNGMxLjkxNCAwIDMuMTE1LjcwNyAzLjExNSAyLjQ0di4xOTNsLTIuODE2LjEyYTEwLjYzNiAxMC42MzYgMCAwMC00LjY5MiAxLjE0Yy0xLjg4Mi44OTktMy4wNTUgMi45MDYtMi45NjQgNS4wNzIgMCAzLjU3OSAyLjU1IDYuMDk4IDYuMDQxIDYuMDk4IDEuODMuMDMgMy42MDItLjY3MyA0Ljk1My0xLjk2NmwuNzk0IDEuNTcyem0tMjIuMjkyLTkuMDVjLTEuNjkgMC0yLjUxMi0xLjQxMy0yLjUxMi0yLjg1IDAtMS45NjUgMS4wODgtMi44NDkgMi40NDEtMi44NDkgMS43MjQgMCAyLjU4OCAxLjQ5MyAyLjU4OCAyLjkxMiAwIDEuODQ3LTEuMDg3IDIuNzkzLTIuNTExIDIuNzkzbC0uMDA2LS4wMDZ6bS4zOCAxNC4zNjJjLTIuODE2IDAtNC40MjUtMS4wNi00LjQyNS0yLjU5My4wMS0uNjU1LjI4Mi0xLjI3Ni43NS0xLjcxIDEuOC45ODYgNy40Ny40MzMgNy40NyAyLjYzMyAwIDEuMTQtMS43OTkgMS43MS0zLjgwNSAxLjcxbC4wMS0uMDR6bS0uODM3IDQuMDNjNi43NTMgMCA5Ljk0NS0zLjAyNyA5Ljk0NS02LjM3MiAwLTYuOTgyLTExLjY2My0zLjkyNy0xMS42NjMtNy4xMDFhMi4xNDEgMi4xNDEgMCAwMS4xNTMtLjgyNyA3LjU0IDcuNTQgMCAwMDIuMDI4LjIzNGM0LjU0IDAgNy43MzEtMi43MTMgNy43MzEtNy4wMDRhNy4wNiA3LjA2IDAgMDAtMS4yNzgtNC4xMzJjLjM0MS0uMTA1LjY5NC0uMTYgMS4wNS0uMTYuNTA1LjAxIDEuMDA4LjA3OCAxLjUuMmwxLjA1LTQuMDkyYy0uMy0uMDQtLjkwMy0uMDgtMS4yNzgtLjA4LTIuNTUgMC0zLjcxNC42NjctNC43MyAxLjY1My0uMTUzLjE2LS4yNjEuMjMzLS40NTIuMTJhNy4yNTggNy4yNTggMCAwMC0zLjcxMy0uODY3Yy01LjQ4IDAtNy42OTMgMy43MzktNy42OTMgNy4wMDQgMCAyLjQ0IDEuMDQ5IDQuNzIgMy4xMTUgNS44Ni0xLjQyNS44MjUtMi4zNjUgMi4xMjUtMi4zNjUgMy40MTktLjAzNC45MjQuNDEgMS43OTYgMS4xNjMgMi4yOC0xLjgyLjU2OS0zLjA5IDIuMjk0LTMuMTUzIDQuMjg1IDAgMy4xMDYgMy4wMDEgNS41NDUgOC41OTYgNS41NDVsLS4wMDYuMDM0ek0yMiAyNy42NzRoNS42N3YtMTIuNzNhNS44NiA1Ljg2IDAgMDEzLjQxNS0xLjIyYzIuMDk5IDAgMi4zMjcgMS41NzMgMi4zMjcgMy4zODV2MTAuNTgzaDUuNjY2VjE0Ljk0NGE1Ljc1MiA1Ljc1MiAwIDAxMy4zNzYtMS4yMmMyLjEwNCAwIDIuMzY1IDEuNDkzIDIuMzY1IDMuMzA1djEwLjY2M2g1LjY2NlYxNS40OTZjMC01LjE5Mi0zLjAyMy02Ljg4NC02LjI4Ni02Ljg4NC0xLjgzNyAwLTQuMDg4LjgyNi02LjIzIDIuNjMzLS45NDEtMS42NTMtMi41ODgtMi42MzMtNC44NC0yLjYzMy0yLjEzNiAwLTQuMTY0IDEuMDYtNS44MTcgMi4zNmwtLjU1LTEuOTA0SDIydjE4LjYwN3oiLz48L2c+PC9zdmc+";var S="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PGcgZmlsbD0iIzg1QUNCMCI+PHBhdGggZD0iTTI0IDBjMTMuMjU1IDAgMjQgMTAuNzQ1IDI0IDI0UzM3LjI1NSA0OCAyNCA0OCAwIDM3LjI1NSAwIDI0IDEwLjc0NSAwIDI0IDB6bTAgMkMxMS44NSAyIDIgMTEuODUgMiAyNHM5Ljg1IDIyIDIyIDIyIDIyLTkuODUgMjItMjJTMzYuMTUgMiAyNCAyeiIvPjxwYXRoIGQ9Ik0xOC43MiAyOS4zNnYtMS45MzZoLTIuMzY4di05LjIzMmgtMy42OEwxMCAyMS43MTJsMS41MzYgMS4yIDIuMjcyLTIuOTc2aC4xNDR2Ny40ODhoLTMuMDA4djEuOTM2aDcuNzc2em01LjEyLjE5MmMuNjYxIDAgMS4yNS0uMDgzIDEuNzY4LS4yNDhhMy45MTYgMy45MTYgMCAwMDEuMzA0LS42OGMuMzUyLS4yODguNjIxLS42My44MDgtMS4wMjRhMi45OSAyLjk5IDAgMDAuMjgtMS4yOTZjMC0uNzE1LS4xOTctMS4yOTktLjU5Mi0xLjc1Mi0uMzk1LS40NTMtLjkyOC0uNzctMS42LS45NTJ2LS4xMjhjLjU0NC0uMjAzLjk5LS41MTIgMS4zMzYtLjkyOC4zNDctLjQxNi41Mi0uOTUuNTItMS42IDAtLjQyNy0uMDgzLS44MjEtLjI0OC0xLjE4NGEyLjUyOCAyLjUyOCAwIDAwLS43MzYtLjkzNiAzLjUzIDMuNTMgMCAwMC0xLjItLjYwOGMtLjQ3NS0uMTQ0LTEuMDIxLS4yMTYtMS42NC0uMjE2cy0xLjE2NS4wNzItMS42NC4yMTZhMy41MyAzLjUzIDAgMDAtMS4yLjYwOGMtLjMyNS4yNjEtLjU3LjU3My0uNzM2LjkzNmEyLjgyNSAyLjgyNSAwIDAwLS4yNDggMS4xODRjMCAuNjUuMTczIDEuMTg0LjUyIDEuNi4zNDcuNDE2Ljc5Mi43MjUgMS4zMzYuOTI4di4xMjhjLS42NzIuMTgxLTEuMjA1LjQ5OS0xLjYuOTUyLS4zOTUuNDUzLS41OTIgMS4wMzctLjU5MiAxLjc1MiAwIC40Ny4wOTMuOTAxLjI4IDEuMjk2LjE4Ny4zOTUuNDU2LjczNi44MDggMS4wMjQuMzUyLjI4OC43ODcuNTE1IDEuMzA0LjY4LjUxNy4xNjUgMS4xMDcuMjQ4IDEuNzY4LjI0OHptMC02Ljc2OGMtLjUxMiAwLS45MDEtLjEyLTEuMTY4LS4zNi0uMjY3LS4yNC0uNC0uNTY4LS40LS45ODR2LS4yNTZjMC0uNDE2LjEzMy0uNzQ0LjQtLjk4NHMuNjU2LS4zNiAxLjE2OC0uMzZjLjUxMiAwIC45MDEuMTIgMS4xNjguMzYuMjY3LjI0LjQuNTY4LjQuOTg0di4yNTZjMCAuNDE2LS4xMzMuNzQ0LS40Ljk4NHMtLjY1Ni4zNi0xLjE2OC4zNnptMCA0LjkyOGMtLjUzMyAwLS45NDEtLjEyNS0xLjIyNC0uMzc2LS4yODMtLjI1LS40MjQtLjYtLjQyNC0xLjA0OHYtLjMyYzAtLjQ0OC4xNDEtLjc5Ny40MjQtMS4wNDguMjgzLS4yNS42OS0uMzc2IDEuMjI0LS4zNzYuNTMzIDAgLjk0MS4xMjUgMS4yMjQuMzc2LjI4My4yNS40MjQuNi40MjQgMS4wNDh2LjMyYzAgLjQ0OC0uMTQxLjc5Ny0uNDI0IDEuMDQ4LS4yODMuMjUtLjY5LjM3Ni0xLjIyNC4zNzZ6bTEwLjYyNC42NHYtMi45NDRoMi43MDRWMjMuNTJoLTIuNzA0di0yLjk0NGgtMi4wNDh2Mi45NDRoLTIuNzA0djEuODg4aDIuNzA0djIuOTQ0aDIuMDQ4eiIvPjwvZz48L3N2Zz4=",T=function(){var e=(0,E.useStaticQuery)("3497652273");return n.createElement(r.di.Eu,null,n.createElement(r.di.Desktop,null,n.createElement(u.$q,{mt:"1rem",ai:"center"},n.createElement(l.UE,{external:"true",to:"https://www.gamstop.co.uk",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.L9,{src:A,alt:"gamstop desktop"})),n.createElement(l.UE,{external:"true",to:"https://www.gov.im/categories/business-and-industries/gambling-and-e-gaming/",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.ec,null,n.createElement(c.et,{data:e.iom,alt:"IOM",width:"6.4rem",height:"auto"}))),n.createElement(l.UE,{external:"true",to:o.VK,target:"_blank",rel:"noopener noreferrer"},n.createElement(u.VZ,{src:d,alt:"mga logo desktop"})),n.createElement("img",{src:S,alt:"over18 desktop"}))),n.createElement(r.di.Mobile,null,n.createElement(u.$q,{mt:"1rem",ai:"center"},n.createElement(l.UE,{external:"true",to:"https://www.gov.im/categories/business-and-industries/gambling-and-e-gaming/",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.ec,null,n.createElement(c.et,{data:e.iom,alt:"IOM",width:"6.4rem",height:"auto"}))),n.createElement(r.kC,{fd:"column",width:"auto"},n.createElement(l.UE,{external:"true",to:o.VK,target:"_blank",rel:"noopener noreferrer"},n.createElement(u.VZ,{src:d,alt:"mga logo"})),n.createElement(l.UE,{external:"true",to:"https://www.gamstop.co.uk",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.L9,{src:A,alt:"gamstop mobile"}))),n.createElement("img",{src:S,alt:"over18 mobile"}))))},x=M(8802),z=Object.assign({},{borderTop:"1px solid var(--color-grey-26)",borderBottom:"none",padding:"0",margin:"0 2rem",backgroundColor:"var(--color-grey-25)",boxShadow:"none"}),w=function(e){var t=e.type,M=e.is_ppc,l=e.is_ppc_redirect,o=e.academy,c=n.useContext(a.L).show_cookie_banner,y=n.useContext(x.c).is_eu_country;return z.borderTop="none",n.createElement(u.qc,{has_banner_cookie:c,is_eu_country:y},n.createElement(r.W2,null,n.createElement(u.Ko,null,n.createElement(i.Z,{type:t}),n.createElement(j,{is_ppc:M,is_ppc_redirect:l,is_eu_country:y}),o?n.createElement(N,null):n.createElement(L,null),n.createElement(g,null),n.createElement(m,{type:t}),n.createElement(T,null))))}}}]); -//# sourceMappingURL=562-3bc8ff6b93b3ba9a85c7.js.map \ No newline at end of file +(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[562],{9562:function(e,t,M){"use strict";M.r(t),M.d(t,{default:function(){return w}});var n=M(7294),r=M(7513),a=M(258),u=M(6659),i=M(4508),l=M(4443),o=M(476),j=function(e){var t=e.is_ppc,M=e.is_ppc_redirect,a=e.is_eu_country;return n.createElement(u.SJ,null,n.createElement(r.di.Desktop,null,n.createElement(r.kC,{jc:"space-between"},n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("ABOUT"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/story/"},(0,l.NC)("Our story"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/leadership/"},(0,l.NC)("Our leadership"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/why-choose-us/"},(0,l.NC)("Why choose us?"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/partners/"},(0,l.NC)("Partnership programmes"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/contact_us/"},(0,l.NC)("Contact us"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/careers/"},(0,l.NC)("Careers")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("TRADE"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/dtrader/"},(0,l.NC)("DTrader"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/dbot/"},(0,l.NC)("DBot"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:M?"/landing/dmt5/":"/dmt5/"},(0,l.NC)("DMT5"))),!a&&n.createElement(u.gM,null,n.createElement(u.rU,{to:"/derivx/"},(0,l.NC)("Deriv X"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"trading",type:"smart_trader",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("SmartTrader"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"https://bot.deriv.com",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("BinaryBot")))),!t&&n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("TRADE TYPES"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/trade-types/cfds/"},(0,l.NC)("CFDs"))),n.createElement(r.di.NonEU,null,n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trade-types/options/"},(0,l.NC)("Options")))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trade-types/multiplier/"},(0,l.NC)("Multipliers")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("MARKETS"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/markets/forex/"},(0,l.NC)("Forex"))),!t&&n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/synthetic/"},(0,l.NC)("Synthetic indices"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/stock/"},(0,l.NC)("Stocks & indices"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/commodities/"},(0,l.NC)("Commodities"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/markets/cryptocurrencies/"},(0,l.NC)("Cryptocurrencies")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("LEGAL"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/regulatory/"},(0,l.NC)("Regulatory information"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/terms-and-conditions/#clients"},(0,l.NC)("Terms and conditions"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/responsible/"},(0,l.NC)("Secure and responsible trading")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("PARTNER"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/partners/affiliate-ib/"},(0,l.NC)("Affiliates and IBs"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/partners/payment-agent/"},(0,l.NC)("Payment agents"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer"},(0,l.NC)("API")))),n.createElement(u.B3,null,n.createElement(u.gM,null,n.createElement(u.Dx,null,(0,l.NC)("RESOURCES"))),n.createElement(u.gM,{first_child:"true"},n.createElement(u.rU,{to:"/help-centre/"},(0,l.NC)("Help centre"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"",type:"community",external:"true",target:"_blank",rel:"noopener noreferrer"},(0,l.NC)("Community"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/trader-tools/"},(0,l.NC)("Traders’ tools"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/payment-methods/"},(0,l.NC)("Payment methods"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:o.bF,target:"_blank",external:"true",rel:"noopener noreferrer"},(0,l.NC)("Status page"))),n.createElement(u.gM,null,n.createElement(u.rU,{to:"/academy/"},(0,l.NC)("Academy")))))))},L=function(){return n.createElement(n.Fragment,null,n.createElement(u.zO,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"In the EU, financial products are offered by Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Outside the EU, financial products are offered by the following companies: Deriv (FX) Ltd, F16, Level 1, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, licensed by Labuan Financial Services Authority (<0>licence no. MB/18/0024); Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, licensed by the British Virgin Islands Financial Services Commission (<1>licence no. SIBA/L/18/1114); Deriv (V) Ltd (<2>view licence), 1276, Kumul Highway, Port Vila, Vanuatu, licensed and regulated by the Vanuatu Financial Services Commission; and Deriv (SVG) LLC, Hinds Buildings, Kingstown, St. Vincent and the Grenadines.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(FX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:1,target:"_blank",href:"/regulatory/Deriv_(BVI)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:2,target:"_blank",href:"/regulatory/Deriv_(V)_Ltd.pdf",rel:"noopener noreferrer"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulation by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated by the Gambling Supervision Commission in the Isle of Man (<0>view licence) and by the UK Gambling Commission for clients in the UK (<1>account no. 39172).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(MX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.Mk,{external:"true",key:1,target:"_blank",to:"https://www.gamblingcommission.gov.uk/public-register/business/detail/39172",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed and regulated for digital options based on synthetic indices by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (licence no. 1010285).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]}))),n.createElement(u.rq,null,(0,l.NC)("This website's services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(u.qy,null,n.createElement(r.di.Desktop,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org for more information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]})))),n.createElement(r.di.Mobile,null,n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org if you need further information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]}))),n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]})))))))},N=function(){return n.createElement(n.Fragment,null,n.createElement(u.zO,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"In the EU, financial products are offered by Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, licensed as a Category 3 Investment Services provider by the Malta Financial Services Authority (<0>licence no. IS/70156).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Outside the EU, financial products are offered by the following companies: Deriv (FX) Ltd, F16, Level 1, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, licensed by Labuan Financial Services Authority (<0>licence no. MB/18/0024); Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, licensed by the British Virgin Islands Financial Services Commission (<1>licence no. SIBA/L/18/1114); Deriv (V) Ltd (<2>view licence), 1276, Kumul Highway, Port Vila, Vanuatu, licensed and regulated by the Vanuatu Financial Services Commission; and Deriv (SVG) LLC, Hinds Buildings, Kingstown, St. Vincent and the Grenadines.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(FX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:1,target:"_blank",href:"/regulatory/Deriv_(BVI)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.iz,{key:2,target:"_blank",href:"/regulatory/Deriv_(V)_Ltd.pdf",rel:"noopener noreferrer"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulation by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (MX) Ltd, Millennium House, Level 1, Victoria Road, Douglas IM2 4RW, Isle of Man, licensed and regulated by the Gambling Supervision Commission in the Isle of Man (<0>view licence) and by the UK Gambling Commission for clients in the UK (<1>account no. 39172).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(MX)_Ltd.pdf",rel:"noopener noreferrer"}),n.createElement(u.Mk,{external:"true",key:1,target:"_blank",to:"https://www.gamblingcommission.gov.uk/public-register/business/detail/39172",rel:"noopener noreferrer"})]})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Deriv (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed and regulated for digital options based on synthetic indices by the Malta Gaming Authority (<0>licence no. MGA/B2C/102/2000) and by the Revenue Commissioners for clients in Ireland (licence no. 1010285).",components:[n.createElement(u.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]}))),n.createElement(u.rq,null,(0,l.NC)("This website's services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(u.rq,null,(0,l.NC)("The information contained in this academy is for educational purposes only and is not intended as financial or investment advice.")),n.createElement(u.qy,null,n.createElement(r.di.Desktop,null,n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]}))),n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org for more information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]})))),n.createElement(r.di.Mobile,null,n.createElement(r.di.Eu,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62}})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Gambling can be addictive, so please play responsibly. Visit <0>Secure and responsible trading and <1>begambleaware.org if you need further information.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"}),n.createElement(u.f0,{external:"true",key:1,target:"_blank",to:"https://www.begambleaware.org/"})]}))),n.createElement(r.di.NonEU,null,n.createElement(u.rq,{no_margin:!0},n.createElement(l.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients. CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."})),n.createElement(u.rq,null,n.createElement(l.Xx,{translate_text:"Before trading in the complex financial products offered, please be sure to understand the risks involved and learn about <0>Secure and responsible trading.",components:[n.createElement(u.f0,{key:0,target:"_blank",to:"/responsible/"})]})))))))};var c=M(2466),g=function(){var e=(new Date).getFullYear();return n.createElement(u.OT,null,n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTggMGE4IDggMCAxMTAgMTZBOCA4IDAgMDE4IDB6bTAgMWE3IDcgMCAxMDAgMTRBNyA3IDAgMDA4IDF6bS4yMiAzYy43MTkgMCAxLjI5NS4xNTYgMS43MjkuNDY5LjQzNC4zMTMuNzU4LjcyMS45NzMgMS4yMjVsLS45MzguNDc2YTEuNyAxLjcgMCAwMC0uNjQ0LS44NjhjLS4yOTktLjIwNS0uNjcyLS4zMDgtMS4xMi0uMzA4LS4zMzYgMC0uNjMuMDU0LS44ODIuMTYxYTEuNzIyIDEuNzIyIDAgMDAtLjYzLjQ0OGMtLjE2OC4xOTEtLjI5NC40Mi0uMzc4LjY4NmEyLjg5NCAyLjg5NCAwIDAwLS4xMjYuODc1djEuMjMyYzAgLjYzNS4xNyAxLjE1NS41MTEgMS41NjEuMzQuNDA2Ljg0Mi42MDkgMS41MDUuNjA5LjkwNSAwIDEuNTU5LS40MiAxLjk2LTEuMjZsLjgxMi41NDZhMi44NyAyLjg3IDAgMDEtMS4wNDMgMS4yNDZjLS40NjIuMzA4LTEuMDM4LjQ2Mi0xLjcyOS40NjItLjUwNCAwLS45NTctLjA4OS0xLjM1OC0uMjY2YTIuNzc0IDIuNzc0IDAgMDEtMS4wMTUtLjc1NiAzLjM3IDMuMzcgMCAwMS0uNjMtMS4xOUE1LjI4NSA1LjI4NSAwIDAxNSA3Ljc4YzAtLjU3OS4wNzItMS4xMDEuMjE3LTEuNTY4YTMuMzcgMy4zNyAwIDAxLjYzLTEuMTkgMi43NzQgMi43NzQgMCAwMTEuMDE1LS43NTZBMy4zMjYgMy4zMjYgMCAwMTguMjIgNHoiIGZpbGw9IiMzMzMiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==",alt:"copyright ic",width:"16",height:"16"}),n.createElement(c.xv,{ml:"0.4rem"},n.createElement(l.Xx,{translate_text:"{{current_year}} Deriv | All rights reserved",values:{current_year:e}})))};var y=function(e){var t=e.social_accounts;return n.createElement(u.xO,null,t.map((function(e,t){return n.createElement(l.UE,{key:t,external:"true",to:e.link,target:"_blank",rel:"noopener noreferrer"},n.createElement("img",{src:e.image,alt:e.image_alt,width:"41",height:"41"}))})))},D=function(e){var t=e.is_career_page,M=e.fb_url,r=e.instagram_url,a=e.twitter_url,u=(t?"career":"")+" icon link",i=[{link:t?o.CU:M,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yMS4xMDQgMy43NTVMMTguMTggMy43NWMtMy4yODQgMC01LjQwNiAyLjE3My01LjQwNiA1LjUzN3YyLjU1M2gtMi45NGEuNDYuNDYgMCAwMC0uNDU5LjQ2djMuNjk4YzAgLjI1NC4yMDYuNDYuNDYuNDZoMi45Mzl2OS4zMzNjMCAuMjU0LjIwNS40NTkuNDYuNDU5aDMuODM0YS40Ni40NiAwIDAwLjQ2LS40NTl2LTkuMzM0aDMuNDM2YS40Ni40NiAwIDAwLjQ2LS40NTlsLjAwMi0zLjY5OWEuNDYuNDYgMCAwMC0uNDYtLjQ1OWgtMy40MzhWOS42NzZjMC0xLjA0LjI0OC0xLjU2OCAxLjYwNi0xLjU2OGgxLjk3YS40Ni40NiAwIDAwLjQ1OS0uNDZWNC4yMTNhLjQ1OS40NTkgMCAwMC0uNDYtLjQ1OHoiLz48L2c+PC9nPjwvc3ZnPg==",image_alt:"facebook "+u},{link:t?o.R2:r,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yMC4wNCAzLjc1YTYuMjE3IDYuMjE3IDAgMDE2LjIxIDYuMjF2MTAuMDhhNi4yMTcgNi4yMTcgMCAwMS02LjIxIDYuMjFIOS45NmE2LjIxNiA2LjIxNiAwIDAxLTYuMjEtNi4yMVY5Ljk2YTYuMjE3IDYuMjE3IDAgMDE2LjIxLTYuMjF6bTAgMS45OTZIOS45NmE0LjIxOCA0LjIxOCAwIDAwLTQuMjE0IDQuMjEzdjEwLjA4MmE0LjIxOCA0LjIxOCAwIDAwNC4yMTMgNC4yMTNoMTAuMDgyYTQuMjE4IDQuMjE4IDAgMDA0LjIxMy00LjIxM1Y5Ljk1OWE0LjIxOCA0LjIxOCAwIDAwLTQuMjEzLTQuMjEzek0xNSA5LjEwN0E1LjkgNS45IDAgMDEyMC44OTMgMTUgNS45IDUuOSAwIDAxMTUgMjAuODkzIDUuOSA1LjkgMCAwMTkuMTA3IDE1IDUuOSA1LjkgMCAwMTE1IDkuMTA3em0wIDIuMDNBMy44NjggMy44NjggMCAwMDExLjEzNiAxNWMwIDIuMTMgMS43MzQgMy44NjQgMy44NjQgMy44NjRTMTguODY0IDE3LjEzIDE4Ljg2NCAxNSAxNy4xMyAxMS4xMzYgMTUgMTEuMTM2ek0yMS4xNiA3LjVhMS4zNDIgMS4zNDIgMCAwMS45NDggMi4yODdjLS4yNS4yNDgtLjU5NC4zOTItLjk0Ny4zOTJhMS4zNSAxLjM1IDAgMDEtLjk0Ni0uMzkyIDEuMzUyIDEuMzUyIDAgMDEtLjM5NC0uOTQ4IDEuMzQ0IDEuMzQ0IDAgMDExLjM0LTEuMzM5eiIvPjwvZz48L2c+PC9zdmc+",image_alt:"instagram "+u},{link:t?o.Cd:o.ts,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00LjU4MyAyMy43NWgzLjMzNGMuNDYgMCAuODMzLS4zMTYuODMzLS43MDV2LTEyLjM0YzAtLjM5LS4zNzMtLjcwNS0uODMzLS43MDVINC41ODNjLS40NiAwLS44MzMuMzE2LS44MzMuNzA1djEyLjM0YzAgLjM5LjM3My43MDUuODMzLjcwNXptMC0xNi4yNWgzLjMzNGMuNDYgMCAuODMzLS4zMDIuODMzLS42NzV2LTIuNGMwLS4zNzMtLjM3My0uNjc1LS44MzMtLjY3NUg0LjU4M2MtLjQ2IDAtLjgzMy4zMDItLjgzMy42NzV2Mi40YzAgLjM3My4zNzMuNjc1LjgzMy42NzV6bTIwLjU3NSAzLjE1NmMtLjQwOS0uNTU1LTEuMDEtMS4wMTItMS44MDYtMS4zNy0uNzk1LS4zNTctMS42NzMtLjUzNi0yLjYzNC0uNTM2LTEuOTUgMC0zLjYwMy43Ny00Ljk1OCAyLjMwOC0uMjcuMzA2LS40NjYuMjQtLjQ2Ni0uMTc1di0xYS43MzcuNzM3IDAgMDAtLjcyNS0uNzQ5aC0yLjU5NGMtLjQgMC0uNzI1LjMzNi0uNzI1Ljc1VjIzYzAgLjQxNC4zMjUuNzUuNzI1Ljc1aDIuOTA0Yy40IDAgLjcyNS0uMzM2LjcyNS0uNzV2LTQuNTZjMC0xLjkuMTExLTMuMjAzLjMzMy0zLjkwOGEzLjIyMSAzLjIyMSAwIDAxMS4yMzItMS42OTdjLjYtLjQyNyAxLjI3Ni0uNjQgMi4wMy0uNjQuNTkgMCAxLjA5My4xNDkgMS41MTEuNDQ4LjQxOS4yOTkuNzIuNzE4LjkwNyAxLjI1Ny4xODYuNTM5LjI3OSAxLjcyNy4yNzkgMy41NjNWMjNjMCAuNDE0LjMyNC43NS43MjUuNzVoMi45MDRjLjQgMCAuNzI1LS4zMzYuNzI1LS43NXYtNy40MjhjMC0xLjMxMy0uMDgtMi4zMjItLjI0LTMuMDI2YTUuMDMyIDUuMDMyIDAgMDAtLjg1Mi0xLjg5eiIvPjwvZz48L2c+PC9zdmc+",image_alt:"linkedin "+u}],l={link:a,image:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgZmlsbD0iIzMzMyIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUgNSkiPjxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgcng9IjMuNzMiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNy4xODggNy44NDVhOS40NDggOS40NDggMCAwMS0yLjY1OC43NDcgNC42ODcgNC42ODcgMCAwMDIuMDI5LTIuNjE1IDkuMDkgOS4wOSAwIDAxLTIuOTI1IDEuMTQ1IDQuNTcyIDQuNTcyIDAgMDAtMy4zNy0xLjQ5N2MtMi41NTMgMC00LjYxIDIuMTI2LTQuNjEgNC43MzIgMCAuMzc1LjAzMi43MzYuMTA4IDEuMDgtMy44MzUtLjE5My03LjIyOC0yLjA3OC05LjUwOC00Ljk1YTQuODYzIDQuODYzIDAgMDAtLjYzMSAyLjM5MmMwIDEuNjM4LjgyMiAzLjA5IDIuMDQ5IDMuOTMyYTQuNDc2IDQuNDc2IDAgMDEtMi4wODQtLjU4M3YuMDUyYzAgMi4yOTkgMS41OTggNC4yMDggMy42OTUgNC42NDhhNC40NjggNC40NjggMCAwMS0xLjIxLjE1NmMtLjI5NSAwLS41OTMtLjAxNy0uODczLS4wOC41OTggMS44NzMgMi4yOTQgMy4yNSA0LjMxIDMuMjk1YTkuMTE0IDkuMTE0IDAgMDEtNS43MTkgMi4wMThjLS4zNzggMC0uNzQtLjAxNy0xLjEwNC0uMDY1YTEyLjc1OCAxMi43NTggMCAwMDcuMDc3IDIuMTIzYzguNDg4IDAgMTMuMTI4LTcuMjEyIDEzLjEyOC0xMy40NjMgMC0uMjA5LS4wMDctLjQxLS4wMTYtLjYxMWE5LjM0MiA5LjM0MiAwIDAwMi4zMTEtMi40NTZ6Ii8+PC9nPjwvZz48L3N2Zz4=",image_alt:"twitter "+u};return t||i.splice(1,0,l),n.createElement(y,{social_accounts:i})},s=M(4133),I=M(4845),m=function(e){var t=e.type,M=(0,s.Z)()[0],a=(null==M?void 0:M.clients_country)||"";return n.createElement(n.Fragment,null,n.createElement(r.di.NonEU,null,n.createElement(D,{is_career_page:"careers"===t,fb_url:o.wZ,instagram_url:o.yK,twitter_url:o.Y0})),n.createElement(r.di.Eu,null,n.createElement(r.di.Mobile,null,n.createElement(D,{is_career_page:"careers"===t,fb_url:(0,I.Fr)(a)?o.Gf:o.JN,instagram_url:(0,I.Fr)(a)?o.Vf:o.IN,twitter_url:(0,I.Fr)(a)?o.dy:o.dA}))))},E=M(5444);var A="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NiIgaGVpZ2h0PSIyOSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDk2djI4LjhIMHoiLz48cGF0aCBmaWxsPSIjMzVBOEUwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00Ni41MTMgMjIuNjA3SC44NDdBLjgzNy44MzcgMCAwMTAgMjEuNzgxdi03LjcxN0MwIDkuNjEgMy43MDIgNiA4LjI2OSA2aDM4LjI0NGMuNDY4IDAgLjg0Ny4zNy44NDcuODI2djE0Ljk4OGMwIC40NTYtLjM4LjgyNi0uODQ3LjgyNnYtLjAzM3oiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik00Ni4zNTkgMjIuNjRIMWMtLjU1MiAwLTEtLjQzMi0xLS45NjV2LTcuNTdDMCA5LjYzIDMuNzY4IDYgOC40MTUgNkg0Ni4zNmMuNTUzIDAgMS4wMDEuNDMyIDEuMDAxLjk2NXYxNC43MWMwIC41MzMtLjQ0OC45NjUtMS4wMDEuOTY1ek04LjM5OSA2LjM5QzMuOTcgNi4zOTMuMzgyIDkuODUuMzc4IDE0LjExMnY3LjU3YzAgLjMyNy4yNzUuNTkyLjYxNC41OTJoNDUuMzY2YS42MjUuNjI1IDAgMDAuNDM0LS4xNzMuNTguNTggMCAwMC4xOC0uNDE4VjYuOTczYS41ODMuNTgzIDAgMDAtLjE4LS40MTkuNjI5LjYyOSAwIDAwLS40MzQtLjE3M2wtMzcuOTYuMDA4eiIvPjxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE2LjcyMyAxMy43NHY2LjE2N2EuMTE1LjExNSAwIDAxLS4xMTYuMTE1SDE0LjE1YS4xMTUuMTE1IDAgMDEtLjExNy0uMTE1LjEyLjEyIDAgMDAtLjA1LS4wOTUuMTIuMTIgMCAwMC0uMTA5LS4wMTIgNC45NTQgNC45NTQgMCAwMS0uNzUxLjE3MyA2LjI2NSA2LjI2NSAwIDAxLS45MjguMDc0IDUuOTc0IDUuOTc0IDAgMDEtMi4xODgtLjQ1MyA1LjY3NSA1LjY3NSAwIDAxLTEuOTMtMS4yNiA1LjQ5NyA1LjQ5NyAwIDAxLTEuMjYtMS44NjggNS43ODYgNS43ODYgMCAwMTAtNC4zMjIgNS40NTcgNS40NTcgMCAwMTEuMjctMS45MDIgNS42NjIgNS42NjIgMCAwMTEuOTI5LTEuMjYgNS45MjQgNS45MjQgMCAwMTQuMzkzIDBjLjY4NS4yNyAxLjMwOS42NyAxLjgzNyAxLjE3N2EuMTE0LjExNCAwIDAxMCAuMTY1bC0xLjcyOSAxLjcwNGEuMTE4LjExOCAwIDAxLS4wODMuMDM1LjExOS4xMTkgMCAwMS0uMDg0LS4wMzUgMy4wMTIgMy4wMTIgMCAwMC0uOTYtLjYgMy4yMTggMy4yMTggMCAwMC0yLjM3MiAwYy0uMzkyLjE1LS43NDguMzgtMS4wNDQuNjc0YTMuMDczIDMuMDczIDAgMDAtLjkyNSAyLjE5NGMwIC44MjQuMzMzIDEuNjEzLjkyNSAyLjE5NC4yNjYuMjY3LjU4LjQ4MS45MjcuNjM0YTMuMTYgMy4xNiAwIDAwMS4wNi4yNjRjLjM2Ni4wMjcuNzMzLS4wMDcgMS4wODYtLjEuMzM4LS4wODYuNjU3LS4yMzEuOTQ0LS40MjdhLjExNC4xMTQgMCAwMC4wNS0uMDk5di0uMzk1YS4xMTUuMTE1IDAgMDAtLjExNy0uMTE1SDExLjgzYS4xMTYuMTE2IDAgMDEtLjExNy0uMTE2di0yLjM5NWMwLS4wNjQuMDUyLS4xMTYuMTE3LS4xMTZoNC43N2EuMTIuMTIgMCAwMS4wODcuMDMxLjExNS4xMTUgMCAwMS4wMzcuMDg1em05LjEzOCA2LjIxNmwtLjQwMS0xLjE4NWEuMTE4LjExOCAwIDAwLS4xMTctLjA4M2gtMy40OTFhLjEyLjEyIDAgMDAtLjEwOS4wODNsLS40MTcgMS4yMjZhLjEyLjEyIDAgMDEtLjEwOS4wODNoLTIuNTczYS4xMTguMTE4IDAgMDEtLjA5NS0uMDUuMTE0LjExNCAwIDAxLS4wMTMtLjEwN2wzLjg2Ny0xMS4xOTZhLjExOC4xMTggMCAwMS4xMDktLjA4M2gyLjM1NWEuMTE3LjExNyAwIDAxLjExNy4wODNsMy42NjcgMTEuMTk2YS4xMTcuMTE3IDAgMDEtLjAxNS4xMS4xMTguMTE4IDAgMDEtLjEwMi4wNDdoLTIuNTU2YS4xMTYuMTE2IDAgMDEtLjExNy0uMTI0em0tMi45OTktMy45MzVoMS41NTRhLjExNi4xMTYgMCAwMC4xMTctLjE1N2wtLjc1Mi0yLjI4OGEuMTE3LjExNyAwIDAwLS4yMjUgMGwtLjgzNiAyLjI4OWEuMTE1LjExNSAwIDAwLjE0Mi4xNTZ6TTM4LjkgOC41ODdoMi41NTZjLjA2MSAwIC4xMTIuMDQ3LjExNy4xMDdsLjY2OCAxMS4yMTNhLjEyMS4xMjEgMCAwMS0uMDMxLjA4Ny4xMjIuMTIyIDAgMDEtLjA4Ni4wMzZoLTIuNDRhLjExNi4xMTYgMCAwMS0uMTE2LS4xMDdsLS4yNDItMy45NjhhLjExNy4xMTcgMCAwMC0uMTE3LS4xMTUuMTE2LjExNiAwIDAwLS4xMTcuMTE1bC0xLjM3IDQuMDAxYS4xMTcuMTE3IDAgMDEtLjEwOC4wODNoLTIuNTA2YS4xMi4xMiAwIDAxLS4xMDktLjA4M2wtMS41MDMtNC4yMzFhLjExNy4xMTcgMCAwMC0uMjM0IDBsLS4yNjcgNC4xNjVhLjExNy4xMTcgMCAwMS0uMTE3LjEwN0gzMC40MmEuMTEyLjExMiAwIDAxLS4xMTYtLjEyM2wuNzM0LTExLjE3MmEuMTE3LjExNyAwIDAxLjExNy0uMTA3aDIuNTU2YS4xMi4xMiAwIDAxLjEwOS4wODNsMi40MDUgNi43NjdhLjExOC4xMTggMCAwMC4yMjYgMGwyLjMzOC02Ljc2N2EuMTE3LjExNyAwIDAxLjEwOS0uMDkxeiIvPjxwYXRoIGZpbGw9IiMxRDFEMUIiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTQ4LjIxOCA2aDQ2LjI4NGMuNDc0IDAgLjg1OC4zNy44NTguODI4djcuNzMyYzAgNC40NjItMy43NSA4LjA4LTguMzc4IDguMDhINDguMjE4Yy0uNDc0IDAtLjg1OC0uMzctLjg1OC0uODI4VjYuNzk1Yy4wMTgtLjQ0NC4zOTctLjc5NS44NTgtLjc5NXoiLz48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik04Ny4zNyAyMi42NEg0OC4zODdjLS41NjggMC0xLjAyOC0uNDMyLTEuMDI4LS45NjVWNi45NjVjMC0uNTMzLjQ2LS45NjUgMS4wMjgtLjk2NWg0Ni41ODRDOTUuNTQgNiA5NiA2LjQzMiA5NiA2Ljk2NXY3LjU3NGMtLjAwNSA0LjQ3Mi0zLjg2NiA4LjA5Ny04LjYzIDguMTAxek00OC4zODcgNi4zODFjLS4zNDggMC0uNjMuMjY1LS42My41OTJ2MTQuNzAyYzAgLjMyNy4yODIuNTkyLjYzLjU5Mkg4Ny4zN2M0LjU0NS0uMDA0IDguMjI5LTMuNDYyIDguMjM0LTcuNzI4VjYuOTY1YzAtLjMyNy0uMjgzLS41OTItLjYzMS0uNTkybC00Ni41ODQuMDA4eiIvPjxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTU1LjEzOSAxOC43OTRjLS4zNyAwLS43MzktLjA1LTEuMDk1LS4xNDRhMy44MTQgMy44MTQgMCAwMS0xLjAzNy0uNDQ4IDMuNzggMy43OCAwIDAxLTEuMzMtMS4zNjggMy42NTQgMy42NTQgMCAwMS0uNDc3LTEuNzIuMTE0LjExNCAwIDAxLjAzMS0uMDg0LjEyMi4xMjIgMCAwMS4wODYtLjAzNmgyLjQ4NGMuMDY1IDAgLjExNy4wNS4xMTcuMTEyLjAwMi4yMTMuMDcyLjQyLjIuNTkyLjEwMi4xMzQuMjI2LjI1LjM2OS4zNDQuMTgzLjEyLjM5Ny4xOS42MTkuMi4yMjQuMDEuNDQ4LS4wMy42NTItLjEyYTEuMDYgMS4wNiAwIDAwLjM2LS4yMjRjLjA4MS0uMDc5LjE1MS0uMTY3LjIwOC0uMjY0YS42ODguNjg4IDAgMDAuMDg0LS4yNDhjLjAyMS0uMTMuMDIxLS4yNjIgMC0uMzkyYS43NDkuNzQ5IDAgMDAtLjA4NC0uMjU2IDEuMDQgMS4wNCAwIDAwLS4yMDktLjI2NCAxLjM3IDEuMzcgMCAwMC0uMzYtLjIzMmwtLjM2Ny0uMTM2LS40MTgtLjEzNi0uODM3LS4yNzJhNC42ODYgNC42ODYgMCAwMS0uODM2LS40MDggMy4yNzggMy4yNzggMCAwMS0uOTM2LS44IDMuMiAzLjIgMCAwMS0uNjYxLTIuMjY0Yy4wMzgtLjQxLjE2LS44MS4zNi0xLjE3NS4xODItLjMzNi40MjItLjYzOS43MS0uODk2YTMuNDE2IDMuNDE2IDAgMDEyLjA2NS0uODY0Yy40MTEtLjAzLjgyNC4wMDQgMS4yMjIuMTA0LjM4NS4wODUuNzUyLjIzIDEuMDg3LjQzMi4zMTcuMTkyLjYuNDMyLjgzNi43MTJhMy4xIDMuMSAwIDAxLjY4NiAxLjg0Ny4xMTcuMTE3IDAgMDEtLjAzMS4wODUuMTIuMTIgMCAwMS0uMDg2LjAzNWgtMi40MjVhLjExNC4xMTQgMCAwMS0uMTE3LS4wOTYuNDc4LjQ3OCAwIDAwLS4yMjYtLjM4NCAxLjgwMiAxLjgwMiAwIDAwLS4zOTMtLjE3NmgtLjEzNGEuODA0LjgwNCAwIDAwLS4yNjggMCAxLjAxNiAxLjAxNiAwIDAwLS4zMDkuMTA0LjYuNiAwIDAwLS4yNS4yNjQuNjQ4LjY0OCAwIDAwLS4wNTEuNTA0Yy4wNDkuMTcyLjE2Mi4zMi4zMTguNDE2LjE1OC4wODUuMzIzLjE1Ny40OTMuMjE2bC41NjkuMTkyLjU0My4xNjhjLjE4NC4wNTkuMzcxLjEyOC41Ni4yMDggMS4zNDYuNTY2IDIuMjE3IDEuODM1IDIuMjI1IDMuMjRhMy40MDMgMy40MDMgMCAwMS0uNjAyIDEuOTUyIDMuOTUgMy45NSAwIDAxLTIuNDY3IDEuNiA0LjUzMiA0LjUzMiAwIDAxLS44NzguMDh6bTM1Ljc0LTYuNDMyYTQuMzggNC4zOCAwIDAxLS4zNjcgMS43OTIgNC42MzQgNC42MzQgMCAwMS0xLjAyOSAxLjQ3MiA0Ljk3NiA0Ljk3NiAwIDAxLTMuMjc4IDEuMzkyLjExNS4xMTUgMCAwMC0uMTE3LjExMnYxLjU1MmEuMTE0LjExNCAwIDAxLS4xMTcuMTEyaC0yLjQzM2EuMTE0LjExNCAwIDAxLS4xMTctLjExMlY3LjgwMmMwLS4wNjEuMDUyLS4xMTEuMTE3LS4xMTFoMi41NDJhNC44MSA0LjgxIDAgMDExLjg2NS4zOTJjLjU3LjI0NSAxLjA5LjU5IDEuNTMgMS4wMTUuNDM4LjQyNC43ODcuOTI0IDEuMDI5IDEuNDcyLjI1LjU2Ny4zNzggMS4xNzcuMzc2IDEuNzkyem0tNC44IDJhLjExLjExIDAgMDAuMDM4LjA4Mi4xMTkuMTE5IDAgMDAuMDg4LjAzIDIuMTMgMi4xMyAwIDAwLjcwMy0uMTg0Yy4yNS0uMTEyLjQ3Ni0uMjY2LjY2OS0uNDU2YTIuMDkgMi4wOSAwIDAwLjQ1MS0uNjY0IDIuMDMgMi4wMyAwIDAwMC0xLjYgMi4xMDIgMi4xMDIgMCAwMC0uNDUxLS42NjQgMi4zMDUgMi4zMDUgMCAwMC0uNjctLjQ1NmMtLjIyLS4xLS40NTgtLjE2Mi0uNzAyLS4xODQtLjA2Mi0uMDA0LS4xMTcuMDM4LS4xMjUuMDk2djR6bS0xMC45NDYtNi42OGE1Ljg0MiA1Ljg0MiAwIDAxMi4yNTguNDQgNi4wMjIgNi4wMjIgMCAwMTEuODQ4IDEuMTg0IDUuNTkgNS41OSAwIDAxMS4yNDYgMS43NiA1LjMzOSA1LjMzOSAwIDAxMCA0LjMyOCA1LjU5NiA1LjU5NiAwIDAxLTEuMjQ2IDEuNzZjLS41My41MS0xLjE1Ny45Mi0xLjg0OCAxLjIwOGE2LjAzNyA2LjAzNyAwIDAxLTQuNTE1IDBjLTEuMzg4LS41NjQtMi40OTItMS42MjMtMy4wNzgtMi45NTJhNS4zNzkgNS4zNzkgMCAwMTAtNC4zMjhjLjU4Ni0xLjMyOSAxLjY5LTIuMzg3IDMuMDc4LTIuOTUxYTUuODQ2IDUuODQ2IDAgMDEyLjI1Ny0uNDQ5em0wIDguNTUyYTMuMTYgMy4xNiAwIDAwMS4yMjEtLjIzMiAzLjA4NyAzLjA4NyAwIDAwMS42NzMtMS42IDIuODkzIDIuODkzIDAgMDAwLTIuMzI4IDMuMDk3IDMuMDk3IDAgMDAtMS42NzMtMS42IDMuMjggMy4yOCAwIDAwLTIuNDMzIDAgMy4wOTMgMy4wOTMgMCAwMC0xLjY3MyAxLjYgMi44OTMgMi44OTMgMCAwMDAgMi4zMjhjLjMyLjcyLjkyIDEuMjk1IDEuNjczIDEuNmEzLjE2IDMuMTYgMCAwMDEuMjIuMjMyaC0uMDA4eiIvPjxyZWN0IHdpZHRoPSIyLjU2IiBoZWlnaHQ9IjguOTYiIHg9IjY0IiB5PSI5Ljg0IiBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMTYyIi8+PHJlY3Qgd2lkdGg9IjcuNjgiIGhlaWdodD0iMi41NiIgeD0iNjEuNDQiIHk9IjguNTYiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4xNjIiLz48L2c+PC9zdmc+";var d="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4OCIgaGVpZ2h0PSI0NCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCAwaDg4djQ0SDB6Ii8+PHBhdGggZmlsbD0iI0QxMDEwRSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTcuMTA2IDEwLjYwM3YxMS41MjJMMTEuNDM4IDUuNDYzYy0uNjQ1LTEuOS44OTYtLjY3NC44OTYtLjY3NGwzLjIzNiAyLjU3M2MuOTI3Ljc4NiAxLjQ4OCAxLjk2OCAxLjUzNiAzLjIzNW0tNS42NjggMjguMTlsNS42NjgtMTYuNjYyLTE2LjA4MSA1Ljg2Yy0xLjgzMS42NjgtLjY1LS45MjYtLjY1LS45MjZsMi40ODctMy4zMTdjLjc4OC0uOTczIDEuOTE5LTEuNTUgMy4xMi0xLjU5NC0xLjIwMS0uMDQ0LTIuMzMyLS42MjEtMy4xMi0xLjU5NEwuMzggMTcuMTc4cy0xLjE4LTEuNTk0LjY1LS45MjZsMTYuMDgxIDUuODZ2MTEuNTM1Yy0uMDQ3IDEuMjY3LS42MDggMi40NDktMS41MzYgMy4yMzVsLTMuMjQxIDIuNTczcy0xLjUzNiAxLjIyNS0uODkxLS42NjgiLz48cGF0aCBmaWxsPSIjODE4MDg0IiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik04Mi4wMTQgMTkuMzg5djMuNDZhNC45MiA0LjkyIDAgMDEtMi41ODguNjY2Yy0xLjM1NCAwLTIuMjEzLS42MjctMi4yMTMtMS45MjZhMS43MzQgMS43MzQgMCAwMS43ODgtMS42MTMgNC4yNzYgNC4yNzYgMCAwMTIuMTA0LS41MTNsMS45MDktLjA3NHptMS4zMzIgOC4zMDNIODhjLS4yNTMtMS4yLS4zNTQtMi40My0uMjk5LTMuNjU4di04LjMzOGMwLTQuNTI1LTIuMjUxLTcuMDc5LTcuNzMxLTcuMDc5YTE1LjQ4NSAxNS40ODUgMCAwMC03LjMxOSAxLjgwN2wxLjc2MiAzLjczOWE5LjgxNyA5LjgxNyAwIDAxNC41MDItMS4xNGMxLjkxNCAwIDMuMTE1LjcwNyAzLjExNSAyLjQ0di4xOTNsLTIuODE2LjEyYTEwLjYzNiAxMC42MzYgMCAwMC00LjY5MiAxLjE0Yy0xLjg4Mi44OTktMy4wNTUgMi45MDYtMi45NjQgNS4wNzIgMCAzLjU3OSAyLjU1IDYuMDk4IDYuMDQxIDYuMDk4IDEuODMuMDMgMy42MDItLjY3MyA0Ljk1My0xLjk2NmwuNzk0IDEuNTcyem0tMjIuMjkyLTkuMDVjLTEuNjkgMC0yLjUxMi0xLjQxMy0yLjUxMi0yLjg1IDAtMS45NjUgMS4wODgtMi44NDkgMi40NDEtMi44NDkgMS43MjQgMCAyLjU4OCAxLjQ5MyAyLjU4OCAyLjkxMiAwIDEuODQ3LTEuMDg3IDIuNzkzLTIuNTExIDIuNzkzbC0uMDA2LS4wMDZ6bS4zOCAxNC4zNjJjLTIuODE2IDAtNC40MjUtMS4wNi00LjQyNS0yLjU5My4wMS0uNjU1LjI4Mi0xLjI3Ni43NS0xLjcxIDEuOC45ODYgNy40Ny40MzMgNy40NyAyLjYzMyAwIDEuMTQtMS43OTkgMS43MS0zLjgwNSAxLjcxbC4wMS0uMDR6bS0uODM3IDQuMDNjNi43NTMgMCA5Ljk0NS0zLjAyNyA5Ljk0NS02LjM3MiAwLTYuOTgyLTExLjY2My0zLjkyNy0xMS42NjMtNy4xMDFhMi4xNDEgMi4xNDEgMCAwMS4xNTMtLjgyNyA3LjU0IDcuNTQgMCAwMDIuMDI4LjIzNGM0LjU0IDAgNy43MzEtMi43MTMgNy43MzEtNy4wMDRhNy4wNiA3LjA2IDAgMDAtMS4yNzgtNC4xMzJjLjM0MS0uMTA1LjY5NC0uMTYgMS4wNS0uMTYuNTA1LjAxIDEuMDA4LjA3OCAxLjUuMmwxLjA1LTQuMDkyYy0uMy0uMDQtLjkwMy0uMDgtMS4yNzgtLjA4LTIuNTUgMC0zLjcxNC42NjctNC43MyAxLjY1My0uMTUzLjE2LS4yNjEuMjMzLS40NTIuMTJhNy4yNTggNy4yNTggMCAwMC0zLjcxMy0uODY3Yy01LjQ4IDAtNy42OTMgMy43MzktNy42OTMgNy4wMDQgMCAyLjQ0IDEuMDQ5IDQuNzIgMy4xMTUgNS44Ni0xLjQyNS44MjUtMi4zNjUgMi4xMjUtMi4zNjUgMy40MTktLjAzNC45MjQuNDEgMS43OTYgMS4xNjMgMi4yOC0xLjgyLjU2OS0zLjA5IDIuMjk0LTMuMTUzIDQuMjg1IDAgMy4xMDYgMy4wMDEgNS41NDUgOC41OTYgNS41NDVsLS4wMDYuMDM0ek0yMiAyNy42NzRoNS42N3YtMTIuNzNhNS44NiA1Ljg2IDAgMDEzLjQxNS0xLjIyYzIuMDk5IDAgMi4zMjcgMS41NzMgMi4zMjcgMy4zODV2MTAuNTgzaDUuNjY2VjE0Ljk0NGE1Ljc1MiA1Ljc1MiAwIDAxMy4zNzYtMS4yMmMyLjEwNCAwIDIuMzY1IDEuNDkzIDIuMzY1IDMuMzA1djEwLjY2M2g1LjY2NlYxNS40OTZjMC01LjE5Mi0zLjAyMy02Ljg4NC02LjI4Ni02Ljg4NC0xLjgzNyAwLTQuMDg4LjgyNi02LjIzIDIuNjMzLS45NDEtMS42NTMtMi41ODgtMi42MzMtNC44NC0yLjYzMy0yLjEzNiAwLTQuMTY0IDEuMDYtNS44MTcgMi4zNmwtLjU1LTEuOTA0SDIydjE4LjYwN3oiLz48L2c+PC9zdmc+";var S="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PGcgZmlsbD0iIzg1QUNCMCI+PHBhdGggZD0iTTI0IDBjMTMuMjU1IDAgMjQgMTAuNzQ1IDI0IDI0UzM3LjI1NSA0OCAyNCA0OCAwIDM3LjI1NSAwIDI0IDEwLjc0NSAwIDI0IDB6bTAgMkMxMS44NSAyIDIgMTEuODUgMiAyNHM5Ljg1IDIyIDIyIDIyIDIyLTkuODUgMjItMjJTMzYuMTUgMiAyNCAyeiIvPjxwYXRoIGQ9Ik0xOC43MiAyOS4zNnYtMS45MzZoLTIuMzY4di05LjIzMmgtMy42OEwxMCAyMS43MTJsMS41MzYgMS4yIDIuMjcyLTIuOTc2aC4xNDR2Ny40ODhoLTMuMDA4djEuOTM2aDcuNzc2em01LjEyLjE5MmMuNjYxIDAgMS4yNS0uMDgzIDEuNzY4LS4yNDhhMy45MTYgMy45MTYgMCAwMDEuMzA0LS42OGMuMzUyLS4yODguNjIxLS42My44MDgtMS4wMjRhMi45OSAyLjk5IDAgMDAuMjgtMS4yOTZjMC0uNzE1LS4xOTctMS4yOTktLjU5Mi0xLjc1Mi0uMzk1LS40NTMtLjkyOC0uNzctMS42LS45NTJ2LS4xMjhjLjU0NC0uMjAzLjk5LS41MTIgMS4zMzYtLjkyOC4zNDctLjQxNi41Mi0uOTUuNTItMS42IDAtLjQyNy0uMDgzLS44MjEtLjI0OC0xLjE4NGEyLjUyOCAyLjUyOCAwIDAwLS43MzYtLjkzNiAzLjUzIDMuNTMgMCAwMC0xLjItLjYwOGMtLjQ3NS0uMTQ0LTEuMDIxLS4yMTYtMS42NC0uMjE2cy0xLjE2NS4wNzItMS42NC4yMTZhMy41MyAzLjUzIDAgMDAtMS4yLjYwOGMtLjMyNS4yNjEtLjU3LjU3My0uNzM2LjkzNmEyLjgyNSAyLjgyNSAwIDAwLS4yNDggMS4xODRjMCAuNjUuMTczIDEuMTg0LjUyIDEuNi4zNDcuNDE2Ljc5Mi43MjUgMS4zMzYuOTI4di4xMjhjLS42NzIuMTgxLTEuMjA1LjQ5OS0xLjYuOTUyLS4zOTUuNDUzLS41OTIgMS4wMzctLjU5MiAxLjc1MiAwIC40Ny4wOTMuOTAxLjI4IDEuMjk2LjE4Ny4zOTUuNDU2LjczNi44MDggMS4wMjQuMzUyLjI4OC43ODcuNTE1IDEuMzA0LjY4LjUxNy4xNjUgMS4xMDcuMjQ4IDEuNzY4LjI0OHptMC02Ljc2OGMtLjUxMiAwLS45MDEtLjEyLTEuMTY4LS4zNi0uMjY3LS4yNC0uNC0uNTY4LS40LS45ODR2LS4yNTZjMC0uNDE2LjEzMy0uNzQ0LjQtLjk4NHMuNjU2LS4zNiAxLjE2OC0uMzZjLjUxMiAwIC45MDEuMTIgMS4xNjguMzYuMjY3LjI0LjQuNTY4LjQuOTg0di4yNTZjMCAuNDE2LS4xMzMuNzQ0LS40Ljk4NHMtLjY1Ni4zNi0xLjE2OC4zNnptMCA0LjkyOGMtLjUzMyAwLS45NDEtLjEyNS0xLjIyNC0uMzc2LS4yODMtLjI1LS40MjQtLjYtLjQyNC0xLjA0OHYtLjMyYzAtLjQ0OC4xNDEtLjc5Ny40MjQtMS4wNDguMjgzLS4yNS42OS0uMzc2IDEuMjI0LS4zNzYuNTMzIDAgLjk0MS4xMjUgMS4yMjQuMzc2LjI4My4yNS40MjQuNi40MjQgMS4wNDh2LjMyYzAgLjQ0OC0uMTQxLjc5Ny0uNDI0IDEuMDQ4LS4yODMuMjUtLjY5LjM3Ni0xLjIyNC4zNzZ6bTEwLjYyNC42NHYtMi45NDRoMi43MDRWMjMuNTJoLTIuNzA0di0yLjk0NGgtMi4wNDh2Mi45NDRoLTIuNzA0djEuODg4aDIuNzA0djIuOTQ0aDIuMDQ4eiIvPjwvZz48L3N2Zz4=",T=function(){var e=(0,E.useStaticQuery)("3497652273");return n.createElement(r.di.Eu,null,n.createElement(r.di.Desktop,null,n.createElement(u.$q,{mt:"1rem",ai:"center"},n.createElement(l.UE,{external:"true",to:"https://www.gamstop.co.uk",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.L9,{src:A,alt:"gamstop desktop"})),n.createElement(l.UE,{external:"true",to:"https://www.gov.im/categories/business-and-industries/gambling-and-e-gaming/",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.ec,null,n.createElement(c.et,{data:e.iom,alt:"IOM",width:"6.4rem",height:"auto"}))),n.createElement(l.UE,{external:"true",to:o.VK,target:"_blank",rel:"noopener noreferrer"},n.createElement(u.VZ,{src:d,alt:"mga logo desktop"})),n.createElement("img",{src:S,alt:"over18 desktop"}))),n.createElement(r.di.Mobile,null,n.createElement(u.$q,{mt:"1rem",ai:"center"},n.createElement(l.UE,{external:"true",to:"https://www.gov.im/categories/business-and-industries/gambling-and-e-gaming/",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.ec,null,n.createElement(c.et,{data:e.iom,alt:"IOM",width:"6.4rem",height:"auto"}))),n.createElement(r.kC,{fd:"column",width:"auto"},n.createElement(l.UE,{external:"true",to:o.VK,target:"_blank",rel:"noopener noreferrer"},n.createElement(u.VZ,{src:d,alt:"mga logo"})),n.createElement(l.UE,{external:"true",to:"https://www.gamstop.co.uk",target:"_blank",rel:"noopener noreferrer"},n.createElement(u.L9,{src:A,alt:"gamstop mobile"}))),n.createElement("img",{src:S,alt:"over18 mobile"}))))},x=M(8802),z=Object.assign({},{borderTop:"1px solid var(--color-grey-26)",borderBottom:"none",padding:"0",margin:"0 2rem",backgroundColor:"var(--color-grey-25)",boxShadow:"none"}),w=function(e){var t=e.type,M=e.is_ppc,l=e.is_ppc_redirect,o=e.academy,c=n.useContext(a.L).show_cookie_banner,y=n.useContext(x.c).is_eu_country;return z.borderTop="none",n.createElement(u.qc,{has_banner_cookie:c,is_eu_country:y},n.createElement(r.W2,null,n.createElement(u.Ko,null,n.createElement(i.Z,{type:t}),n.createElement(j,{is_ppc:M,is_ppc_redirect:l,is_eu_country:y}),o?n.createElement(N,null):n.createElement(L,null),n.createElement(g,null),n.createElement(m,{type:t}),n.createElement(T,null))))}}}]); +//# sourceMappingURL=562-2fe3822883db712e4db2.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ach/404.html b/src/root_files/_common/move-to-deriv/ach/404.html index eaf054e8992ef..fa27f14f9f649 100644 --- a/src/root_files/_common/move-to-deriv/ach/404.html +++ b/src/root_files/_common/move-to-deriv/ach/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ach/404/index.html b/src/root_files/_common/move-to-deriv/ach/404/index.html index 27277e8317cdb..59e92fc5f2749 100644 --- a/src/root_files/_common/move-to-deriv/ach/404/index.html +++ b/src/root_files/_common/move-to-deriv/ach/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ach/index.html b/src/root_files/_common/move-to-deriv/ach/index.html index 510507aae95f3..9d46c016e6518 100644 --- a/src/root_files/_common/move-to-deriv/ach/index.html +++ b/src/root_files/_common/move-to-deriv/ach/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

crwdns160240:0crwdne160240:0

crwdns164350:065crwdne164350:0

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

crwdns160240:0crwdne160240:0

crwdns164350:065crwdne164350:0

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

crwdns160240:0crwdne160240:0

crwdns164350:071crwdne164350:0

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

crwdns160240:0crwdne160240:0

crwdns164350:071crwdne164350:0

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/app-4bfdd98a49fbdb2259a9.js b/src/root_files/_common/move-to-deriv/app-4bfdd98a49fbdb2259a9.js new file mode 100644 index 0000000000000..fe73925f63cd3 --- /dev/null +++ b/src/root_files/_common/move-to-deriv/app-4bfdd98a49fbdb2259a9.js @@ -0,0 +1,3 @@ +/*! For license information please see app-4bfdd98a49fbdb2259a9.js.LICENSE.txt */ +(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[143],{7228:function(e){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(i[n]=e[n]);return i}n.d(t,{Z:function(){return r}})},4665:function(e,t,n){"use strict";function r(e,t){return(r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}n.d(t,{Z:function(){return r}})},5761:function(e,t,n){"use strict";function r(e,t){return t||(t=e.slice(0)),e.raw=t,e}n.d(t,{Z:function(){return r}})},18:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o},e.exports.__esModule=!0,e.exports.default=e.exports},7316:function(e){e.exports=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i},e.exports.__esModule=!0,e.exports.default=e.exports},9489:function(e){function t(n,r){return e.exports=t=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,t(n,r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},3038:function(e,t,n){var r=n(2858),i=n(3884),o=n(379),a=n(521);e.exports=function(e,t){return r(e)||i(e,t)||o(e,t)||a()},e.exports.__esModule=!0,e.exports.default=e.exports},319:function(e,t,n){var r=n(3646),i=n(6860),o=n(379),a=n(8206);e.exports=function(e){return r(e)||i(e)||o(e)||a()},e.exports.__esModule=!0,e.exports.default=e.exports},8868:function(e,t,n){var r=n(8).default;e.exports=function(e,t){if("object"!==r(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,t||"default");if("object"!==r(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)},e.exports.__esModule=!0,e.exports.default=e.exports},3696:function(e,t,n){var r=n(8).default,i=n(8868);e.exports=function(e){var t=i(e,"string");return"symbol"===r(t)?t:String(t)},e.exports.__esModule=!0,e.exports.default=e.exports},8:function(e){function t(n){return e.exports=t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,t(n)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},379:function(e,t,n){var r=n(7228);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},9228:function(e){e.exports=function(){var e=!1;-1!==navigator.appVersion.indexOf("MSIE 10")&&(e=!0);var t,n=[],r="object"==typeof document&&document,i=e?r.documentElement.doScroll("left"):r.documentElement.doScroll,o="DOMContentLoaded",a=r&&(i?/^loaded|^c/:/^loaded|^i|^c/).test(r.readyState);return!a&&r&&r.addEventListener(o,t=function(){for(r.removeEventListener(o,t),a=1;t=n.shift();)t()}),function(e){a?setTimeout(e,0):n.push(e)}}()},5119:function(e,t,n){"use strict";n(7294);t.Z="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgNmE2IDYgMCAwIDEgNi02aDIwYTYgNiAwIDAgMSA2IDZ2MjBhNiA2IDAgMCAxLTYgNkg2YTYgNiAwIDAgMS02LTZWNnoiIGZpbGw9IiMyQTMwNTIiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3LjQzNiAxNi4xMDJhLjQ0NS40NDUgMCAwIDAtLjE0My0uMjkzIDEuMDggMS4wOCAwIDAgMS0uMDgxLS4wOWMtLjAzNy0uMDQyLS4wNzktLjA5LS4xMjgtLjEzN2EuMTk1LjE5NSAwIDAgMC0uMDQ0LS4wNGMtLjk1My0xLjAxMi0uODM1LTEuNjYyLS44MjMtMS43Mjh2LS4wMDVhMS4zOTIgMS4zOTIgMCAwIDAtLjUyLTEuMDkzbC0uMDQ4LS4wNjNhLjIzOS4yMzkgMCAwIDEtLjAzNi0uMDM1Yy41MDYuMTQxIDEuMDIuMjUxIDEuNTM4LjMyOS4yMy4wNDIuNDY1LjA1NS42OTguMDQuNTIgMCAuOTI5LS4wNjMuOTU2LS4xODJhNi44MDkgNi44MDkgMCAwIDEtMS4zNzgtLjQwNWwtLjAyLS4wMDdjLS40ODktLjE5LS41NzEtLjIyMS0uODkxLS4zMjYtLjQxOC0uMTM4LS44NjctLjMzNC0uODY3LS4zMzRsLjQ5LjEzYzEuNDA4LjM3NiAxLjk2OC41MjUgMi43MS41MzdhMi42IDIuNiAwIDAgMCAuNjEzLS4wNThjLjEyIDAgLjQ4LS4xMDIuNTItLjIyNmEyLjk5NyAyLjk5NyAwIDAgMS0xLjAxMy0uMTZjLTEuMjktLjQyOC0xLjg1LS43MjItMi4zNjQtLjk5MWE5LjUyMSA5LjUyMSAwIDAgMC0xLjA2My0uNDk4Yy0uNTctLjIzOC0xLjE2LS40MjQtMS43NjQtLjU1NmEzLjM3MyAzLjM3MyAwIDAgMC0xLjUyIDBjLTEuNTg3LS4zNzMtMS45NDctLjMzMy0yLjQxNC0uMjMxYTguMDMxIDguMDMxIDAgMCAxIDUuMTkyLTEuMjE4VjQuODloLTQuODE0YTUuMzMzIDUuMzMzIDAgMCAwLTUuMzMzIDUuMzMzdjExLjU1NmE1LjMzMyA1LjMzMyAwIDAgMCA1LjMzMyA1LjMzM2g0LjgyMnYtMy44NTNhMzMuODgyIDMzLjg4MiAwIDAgMC0uNTQyLS4wOWMtLjUyNy0uMDg1LS44NTYtLjEzNy0xLjA2Ni0uMjg0LS4wODUtLjA1My0uMzUxLS4xOTUtLjQxNC0uMTZhLjc1Ni43NTYgMCAwIDEtLjkxLS4wNTcuNjguNjggMCAwIDEtLjA4NS0uMDc2LjY0NC42NDQgMCAwIDEtLjEyNS0uODg5Yy4wODUtLjA4OS0uMDY2LS4zMzMtLjA2Ni0uMzMzcy0uNDQ1LS42NjItLjc0Ny0xLjA1OGEzLjAyMyAzLjAyMyAwIDAgMS0uMzgyLTEuMzA2IDMuNjk2IDMuNjk2IDAgMCAxLS40ODUtLjczNCAxLjgzMSAxLjgzMSAwIDAgMC0uMjYyLS4zMTUgMS43IDEuNyAwIDAgMS0uMTU2LS4xNzQuMDc1LjA3NSAwIDAgMSAwLS4wNThjLjEyMi0uMjU0LjMtLjQ3Ny41Mi0uNjUzLjEwNy0uMDcxLjU2NS0uMzQ3LjU2NS0uMzQ3YS44OS44OSAwIDAgMSAuNjY3LS40MDRjLjQ1My0uMDI3LjkwNy4wNDEgMS4zMzMuMmwuMjg0LjA4OWMuNDE4LjEzNi44MjcuMjk1IDEuMjI3LjQ3NS4yMjEuMTAyLjQ0OC4xOS42OC4yNjMuNTg3LjE1NSAxLjYyNy0uMzIgMS44NDQtLjUyLjM1Ni0uMzI1LjUwNy0uNTQzLjUxMi0uNzI1em0tMi43My0yLjc2OS0uMjg4LS4zNzdhMi4xNTEgMi4xNTEgMCAwIDEgMS4yMTMgMS4zMDZjLTEuMTY5LjI4LS45MjQtLjkyOS0uOTI0LS45Mjl6bTQuODQ1IDkuMDljLjEwNC0uMDkzLjIwNi0uMTkuMzA3LS4yOTRhNy45NjUgNy45NjUgMCAwIDAgMi4zMjktNS4xNzNoNC45MjR2NC44MjJhNS4zMzMgNS4zMzMgMCAwIDEtNS4zMzMgNS4zMzNoLTQuODIydi0zLjU1NWE0LjY2NiA0LjY2NiAwIDAgMCAyLjU5NS0xLjEzNHptLTcuOTEtMi41ODRhMS44MzYgMS44MzYgMCAwIDEtLjI4Ni0uNzI4QzEyLjM4MiAxOS4wNCAxMiAyMCAxMiAyMGwuMjA0LjM4MmExLjgzNSAxLjgzNSAwIDAgMS0uNTYzLS41NDN6bTUuMzE1LTE0Ljk1aDQuODIyYTUuMzMzIDUuMzMzIDAgMCAxIDUuMzMzIDUuMzMzdjQuODFoLTUuMDEzQTcuODkgNy44OSAwIDAgMCAyMC44ODggMTJsLS4wNDgtLjA0NGE4LjI0NCA4LjI0NCAwIDAgMC0uOTgyLTEuMTgzIDcuOTIgNy45MiAwIDAgMC0yLjkwMi0xLjg1N1Y0Ljg4OXoiIGZpbGw9IiNmZmYiLz48L3N2Zz4="},5190:function(e,t,n){"use strict";n(7294);t.Z="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iMTAwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY0NDRGIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2NDQ0Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTE5LjUgM0ExLjUgMS41IDAgMDEyMSA0LjV2MTEuMjVhMS41IDEuNSAwIDAxLTEuMzU2IDEuNDkzbC0uMTQ0LjAwN0gxOHYyLjYyNWExLjEyNSAxLjEyNSAwIDAxLTIuMjUgMFYxNy4yNUg0LjVhMS41IDEuNSAwIDAxLTEuNDkzLTEuMzU2TDMgMTUuNzVWNC41QTEuNSAxLjUgMCAwMTQuNSAzaDE1em0tMi4yNSAxNS43NWgtLjc1djEuMTI1YzAgLjE4NC4xMzMuMzM3LjMwOC4zNjlsLjA2Ny4wMDZhLjM3Ni4zNzYgMCAwMC4zNjktLjMwOGwuMDA2LS4wNjdWMTguNzV6bTAtNS4yNWgtLjc1VjE4aC43NXYtNC41em0zLTYuNzVIMy43NXY5bC4wMDUuMDg3Yy4wNC4zNC4zMDUuNjEuNjQyLjY1NmwuMTAzLjAwN2gxMS4yNXYtMy43NUgxOHYzLjc1aDEuNWwuMDg3LS4wMDVhLjc1Ljc1IDAgMDAuNjU2LS42NDJsLjAwNy0uMTAzdi05em0tNy4xMjUgNi43NWMuMjA3IDAgLjM3NS4yMjQuMzc1LjVzLS4xNjguNS0uMzc1LjVoLTcuNWMtLjIwNyAwLS4zNzUtLjIyNC0uMzc1LS41cy4xNjgtLjUuMzc1LS41aDcuNXptMy44NDMtNC40NDhhLjc1Ljc1IDAgMDEuNjUxLjY1MkwxOCAxMi43NWgtMi4yNWwuMzgtMy4wNDZhLjc1Mi43NTIgMCAwMS44MzgtLjY1MnptLTMuODQzIDIuMTk4Yy4yMDcgMCAuMzc1LjIyNC4zNzUuNXMtLjE2OC41LS4zNzUuNWgtNy41Yy0uMjA3IDAtLjM3NS0uMjI0LS4zNzUtLjVzLjE2OC0uNS4zNzUtLjVoNy41em0zLjc1LTEuNDUzTDE2LjYgMTJoLjU1bC0uMjc1LTIuMjAzek0xMy4xMjUgOWMuMjA3IDAgLjM3NS4yMjQuMzc1LjVzLS4xNjguNS0uMzc1LjVoLTcuNWMtLjIwNyAwLS4zNzUtLjIyNC0uMzc1LS41cy4xNjgtLjUuMzc1LS41aDcuNXpNMTkuNSAzLjc1aC0xNWEuNzUuNzUgMCAwMC0uNzQ1LjY2M0wzLjc1IDQuNVY2aDE2LjVWNC41YS43NS43NSAwIDAwLS42NjMtLjc0NUwxOS41IDMuNzV6TTcuMTI1IDQuNWEuMzc1LjM3NSAwIDExMCAuNzUuMzc1LjM3NSAwIDAxMC0uNzV6bTEuNSAwYS4zNzUuMzc1IDAgMTEwIC43NS4zNzUuMzc1IDAgMDEwLS43NXptLTMgMGEuMzc1LjM3NSAwIDExMCAuNzUuMzc1LjM3NSAwIDAxMC0uNzV6IiBmaWxsPSJ1cmwoI2EpIi8+PC9zdmc+"},7789:function(e,t,n){"use strict";n.d(t,{r:function(){return a}});var r,i=n(7294);function o(){return(o=Object.assign||function(e){for(var t=1;t=i._breakpoints[t]&&e=i._breakpoints[t]}))})),s(this,"valuesWithBreakpointProps",(function(e){var t,n=e.length,r=[];return i._sortedBreakpoints.forEach((function(i,o){var a=e[o];o0&&void 0!==arguments[0]?arguments[0]:e.validKeys(),r=n.reduce((function(e,n){return e[n]=t._mediaQueries[n],e}),{});return Object.entries(r).reduce((function(e,t){var n=a(t,2),r=n[0];return n[1].forEach((function(t,n){e.push((0,i.createRuleSet)((0,i.createClassName)(r,n),"not all and ".concat(t)))})),e}),[])}},{key:"shouldRenderMediaQuery",value:function(e,t){var n=this;if((e=this._normalizeProps(e)).lessThan){var r=this._breakpoints[e.lessThan];return Math.min.apply(Math,o(t.map((function(e){return n._breakpoints[e]}))))=i}if(e.greaterThanOrEqual){var a=this._breakpoints[e.greaterThanOrEqual];return Math.max.apply(Math,o(t.map((function(e){return n._breakpoints[e]}))))>=a}if(e.between){var u=this._breakpoints[e.between[0]],c=this._breakpoints[e.between[1]],s=t.map((function(e){return n._breakpoints[e]}));return!(Math.max.apply(Math,o(s))=c)}return!1}},{key:"_normalizeProps",value:function(e){if(e.at){var t=this._sortedBreakpoints.indexOf(e.at),n=this._sortedBreakpoints[t+1];return n?{between:[e.at,n]}:{greaterThanOrEqual:e.at}}return e}},{key:"_createBreakpointQuery",value:function(e){if((e=this._normalizeProps(e)).lessThan){var t=this._breakpoints[e.lessThan];return"(max-width:".concat(t-1,"px)")}if(e.greaterThan){var n=this._breakpoints[this._findNextBreakpoint(e.greaterThan)];return"(min-width:".concat(n,"px)")}if(e.greaterThanOrEqual){var r=this._breakpoints[e.greaterThanOrEqual];return"(min-width:".concat(r,"px)")}if(e.between){var i=this._breakpoints[e.between[0]],o=this._breakpoints[e.between[1]];return"(min-width:".concat(i,"px) and (max-width:").concat(o-1,"px)")}throw new Error("Unexpected breakpoint props: ".concat(JSON.stringify(e)))}},{key:"_createBreakpointQueries",value:function(e,t){var n=this;return t.reduce((function(t,r){return t.set(function(e){return Array.isArray(e)?e.join("-"):e}(r),n._createBreakpointQuery(s({},e,r))),t}),new Map)}},{key:"_findNextBreakpoint",value:function(e){var t=this._sortedBreakpoints[this._sortedBreakpoints.indexOf(e)+1];if(!t)throw new Error("There is no breakpoint larger than ".concat(e));return t}},{key:"sortedBreakpoints",get:function(){return this._sortedBreakpoints}},{key:"dynamicResponsiveMediaQueries",get:function(){return Array.from(this._mediaQueries[r.at].entries()).reduce((function(e,t){var n=a(t,2);return function(e){for(var t=1;t1)throw new Error("Only 1 of ".concat(t.join(", ")," is allowed at a time."))}(e),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&h(e,t)}(t,e),function(e,t,n){t&&p(e.prototype,t);n&&p(e,n)}(t,[{key:"render",value:function(){var e=this,t=this.props,n=(t.children,t.className),o=t.interaction,a=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}(t,["children","className","interaction"]);return i.default.createElement(v.Consumer,null,(function(c){return i.default.createElement(v.Provider,{value:{hasParentMedia:!0,breakpointProps:a}},i.default.createElement(j.Consumer,null,(function(){var s,l=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},d=l.onlyMatch;if(t.interaction)s=(0,u.createClassName)("interaction",t.interaction);else{if(t.at){var p=r.breakpoints.largestBreakpoint;if(t.at===p){var g=null;try{var h=e._reactInternalFiber._debugOwner.type;g=h.displayName||h.name}catch(e){}console.warn("[@artsy/fresnel] `at` is being used with the largest breakpoint. Consider using `` to account for future ')+"breakpoint definitions outside of this range.".concat(g?" It is being used in the ".concat(g," component."):""))}}var M=(0,u.propKey)(a),m=a[M];s=(0,u.createClassName)(M,m)}var y=!c.hasParentMedia||(0,u.intersection)(r.breakpoints.toVisibleAtBreakpointSet(c.breakpointProps),r.breakpoints.toVisibleAtBreakpointSet(a)).length>0,j=y&&(void 0===d||r.shouldRenderMediaQuery(f({},a,{interaction:o}),d));return t.children instanceof Function?t.children(s,j):i.default.createElement("div",{className:"fresnel-container ".concat(s," ").concat(n),suppressHydrationWarning:!j},j?t.children:null)})))}))}}]),t}(i.default.Component),M(t,"defaultProps",{className:""}),M(t,"contextType",v),n),MediaContextProvider:function(e){var t=e.disableDynamicMediaQueries,n=e.onlyMatch,o=e.children;return t?i.default.createElement(j.Provider,{value:{onlyMatch:n}},o):i.default.createElement(y.Provider,{mediaQueries:r.dynamicResponsiveMediaQueries,initialMatchingMediaQueries:(0,u.intersection)(r.mediaQueryTypes,n)},i.default.createElement(y.Consumer,null,(function(e){var t=Object.keys(e).filter((function(t){return e[t]}));return i.default.createElement(j.Provider,{value:{onlyMatch:(0,u.intersection)(t,n)}},o)})))},createMediaStyle:r.toStyle,SortedBreakpoints:(N=r.breakpoints.sortedBreakpoints,d(N)||l(N)||s()),findBreakpointAtWidth:r.breakpoints.findBreakpointAtWidth,findBreakpointsForWidths:r.breakpoints.findBreakpointsForWidths,valuesWithBreakpointProps:r.breakpoints.valuesWithBreakpointProps};var N};var r,i=(r=n(7294))&&r.__esModule?r:{default:r},o=n(9253),a=n(1444),u=n(9752);function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function l(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function d(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function u(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0})):n(e)},t.createRuleSet=function(e,t){return"@media ".concat(t,"{.").concat(e,"{display:none!important;}}")},t.createClassName=function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&void 0!==arguments[1]?arguments[1]:{},s=c.state,l=c.replace,d=void 0!==l&&l;if("number"==typeof t)e.history.go(t);else{s=n({},s,{key:Date.now()+""});try{a||d?e.history.replaceState(s,null,t):e.history.pushState(s,null,t)}catch(n){e.location[d?"replace":"assign"](t)}}o=r(e),a=!0;var f=new Promise((function(e){return u=e}));return i.forEach((function(e){return e({location:o,action:"PUSH"})})),f}}},o=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=e.indexOf("?"),n={pathname:t>-1?e.substr(0,t):e,search:t>-1?e.substr(t):""},r=0,i=[n],o=[null];return{get location(){return i[r]},addEventListener:function(e,t){},removeEventListener:function(e,t){},history:{get entries(){return i},get index(){return r},get state(){return o[r]},pushState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;r++,i.push({pathname:u,search:s.length?"?"+s:s}),o.push(e)},replaceState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;i[r]={pathname:u,search:s},o[r]=e},go:function(e){var t=r+e;t<0||t>o.length-1||(r=t)}}}},a=!("undefined"==typeof window||!window.document||!window.document.createElement),u=i(a?window:o()),c=u.navigate;t.V5=u},2098:function(e,t,n){"use strict";t.__esModule=!0,t.shallowCompare=t.validateRedirect=t.insertParams=t.resolve=t.match=t.pick=t.startsWith=void 0;var r,i=n(1143),o=(r=i)&&r.__esModule?r:{default:r};var a=function(e,t){return e.substr(0,t.length)===t},u=function(e,t){for(var n=void 0,r=void 0,i=t.split("?")[0],a=p(i),u=""===a[0],s=f(e),d=0,g=s.length;dt.score?-1:e.index-t.index}))},p=function(e){return e.replace(/(^\/+|\/+$)/g,"").split("/")},g=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},h=["uri","path"];t.startsWith=a,t.pick=u,t.match=function(e,t){return u([{path:e}],t)},t.resolve=function(e,t){if(a(e,"/"))return e;var n=e.split("?"),r=n[0],i=n[1],o=t.split("?")[0],u=p(r),c=p(o);if(""===u[0])return g(o,i);if(!a(u[0],".")){var s=c.concat(u).join("/");return g(("/"===o?"":"/")+s,i)}for(var l=c.concat(u),d=[],f=0,h=l.length;f=a?(i[r++]=parseInt(n/a,10),n%=a):r>0&&(i[r++]=0);u=r,c=this.dstAlphabet.slice(n,n+1).concat(c)}while(0!==r);return c},t.prototype.isValid=function(e){for(var t=0;t1?n-1:0),i=1;i0&&Array.isArray(r[0])&&(r=r[0]),this.transformers=r.map((function(e){return"function"==typeof e?e():e})),this.tag}return n(e,[{key:"interimTag",value:function(e,t){for(var n=arguments.length,i=Array(n>2?n-2:0),o=2;o0&&void 0!==arguments[0]?arguments[0]:a;return{onSubstitution:function(t,n){if(Array.isArray(t)){var r=t.length,i=e.separator,o=e.conjunction,a=e.serial,u=n.match(/(\n?[^\S\n]+)$/);if(t=u?t.join(i+u[1]):t.join(i+" "),o&&r>1){var c=t.lastIndexOf(i);t=t.slice(0,c)+(a?i:"")+" "+o+t.slice(c+1)}}return t}}};function c(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t0&&void 0!==arguments[0]?arguments[0]:"initial";return{onEndResult:function(t){if("initial"===e){var n=t.match(/^[^\S\n]*(?=\S)/gm),r=n&&Math.min.apply(Math,c(n.map((function(e){return e.length}))));if(r){var i=new RegExp("^.{"+r+"}","gm");return t.replace(i,"")}return t}if("all"===e)return t.replace(/^[^\S\n]+/gm,"");throw new Error("Unknown type: "+e)}}},l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return{onEndResult:function(t){if(""===e)return t.trim();if("start"===(e=e.toLowerCase())||"left"===e)return t.replace(/^\s*/,"");if("end"===e||"right"===e)return t.replace(/\s*$/,"");throw new Error("Side not supported: "+e)}}},d=(new o(u({separator:","}),s,l),new o(u({separator:",",conjunction:"and"}),s,l),new o(u({separator:",",conjunction:"or"}),s,l),function(e){return{onSubstitution:function(t,n){if(null==e||"string"!=typeof e)throw new Error("You need to specify a string character to split by.");return"string"==typeof t&&t.includes(e)&&(t=t.split(e)),t}}}),f=function(e){return null!=e&&!Number.isNaN(e)&&"boolean"!=typeof e},p=function(){return{onSubstitution:function(e){return Array.isArray(e)?e.filter(f):f(e)?e:""}}},g=(new o(d("\n"),p,u,s,l),function(e,t){return{onSubstitution:function(n,r){if(null==e||null==t)throw new Error("replaceSubstitutionTransformer requires at least 2 arguments.");return null==n?n:n.toString().replace(e,t)}}}),h=(new o(d("\n"),u,s,l,g(/&/g,"&"),g(//g,">"),g(/"/g,"""),g(/'/g,"'"),g(/`/g,"`")),function(e,t){return{onEndResult:function(n){if(null==e||null==t)throw new Error("replaceResultTransformer requires at least 2 arguments.");return n.replace(e,t)}}});new o(h(/(?:\n(?:\s*))+/g," "),l),new o(h(/(?:\n\s*)/g,""),l),new o(u({separator:","}),h(/(?:\s+)/g," "),l),new o(u({separator:",",conjunction:"or"}),h(/(?:\s+)/g," "),l),new o(u({separator:",",conjunction:"and"}),h(/(?:\s+)/g," "),l),new o(u,s,l),new o(u,h(/(?:\s+)/g," "),l),new o(s,l),new o(s("all"),l)},8804:function(e,t){var n;n=function(e){e.version="1.2.0";var t=function(){for(var e=0,t=new Array(256),n=0;256!=n;++n)e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=n)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1,t[n]=e;return"undefined"!=typeof Int32Array?new Int32Array(t):t}();e.table=t,e.bstr=function(e,n){for(var r=-1^n,i=e.length-1,o=0;o>>8^t[255&(r^e.charCodeAt(o++))])>>>8^t[255&(r^e.charCodeAt(o++))];return o===i&&(r=r>>>8^t[255&(r^e.charCodeAt(o))]),-1^r},e.buf=function(e,n){if(e.length>1e4)return function(e,n){for(var r=-1^n,i=e.length-7,o=0;o>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])];for(;o>>8^t[255&(r^e[o++])];return-1^r}(e,n);for(var r=-1^n,i=e.length-3,o=0;o>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])];for(;o>>8^t[255&(r^e[o++])];return-1^r},e.str=function(e,n){for(var r,i,o=-1^n,a=0,u=e.length;a>>8^t[255&(o^r)]:r<2048?o=(o=o>>>8^t[255&(o^(192|r>>6&31))])>>>8^t[255&(o^(128|63&r))]:r>=55296&&r<57344?(r=64+(1023&r),i=1023&e.charCodeAt(a++),o=(o=(o=(o=o>>>8^t[255&(o^(240|r>>8&7))])>>>8^t[255&(o^(128|r>>2&63))])>>>8^t[255&(o^(128|i>>6&15|(3&r)<<4))])>>>8^t[255&(o^(128|63&i))]):o=(o=(o=o>>>8^t[255&(o^(224|r>>12&15))])>>>8^t[255&(o^(128|r>>6&63))])>>>8^t[255&(o^(128|63&r))];return-1^o}},"undefined"==typeof DO_NOT_EXPORT_CRC?n(t):n({})},4530:function(e,t,n){"use strict";var r=n(7294);function i(){return(i=Object.assign||function(e){for(var t=1;tt}function o(e){return r(e)||i(e)}return{constrain:function(n){return o(n)?r(n)?e:t:n},length:n,max:t,min:e,reachedAny:o,reachedMax:i,reachedMin:r,removeOffset:function(e){return n?e-n*Math.ceil((e-t)/n):e}}}function u(e,t,n){var r=a(0,e),i=r.min,o=r.constrain,c=e+1,s=l(t);function l(e){return n?Math.abs((c+e)%c):o(e)}function d(){return s}function f(e){return s=l(e),p}var p={add:function(e){return f(d()+e)},clone:function(){return u(e,d(),n)},get:d,set:f,min:i,max:e};return p}function c(){var e=[];var t={add:function(n,r,i,o){return void 0===o&&(o=!1),n.addEventListener(r,i,o),e.push((function(){return n.removeEventListener(r,i,o)})),t},removeAll:function(){return e=e.filter((function(e){return e()})),t}};return t}function s(e){var t=e;function n(e){return t/=e,i}function r(e){return"number"==typeof e?e:e.get()}var i={add:function(e){return t+=r(e),i},divide:n,get:function(){return t},multiply:function(e){return t*=e,i},normalize:function(){return 0!==t&&n(t),i},set:function(e){return t=r(e),i},subtract:function(e){return t-=r(e),i}};return i}function l(e){return e?e/Math.abs(e):0}function d(e,t){return Math.abs(e-t)}function f(e,t){for(var n=[],r=0;r=2,c=z||!u,s=(t=e.target,i=t.nodeName||"",!(N.indexOf(i)>-1)),l=u||z&&s;C=!0,o.pointerDown(e),L.set(r),r.set(a),p.useBaseMass().useSpeed(80),function(){var e=z?document:n;S.add(e,"touchmove",k).add(e,"touchend",_).add(e,"mousemove",k).add(e,"mouseup",_)}(),w.set(o.readPoint(e,j)),I.set(o.readPoint(e,v)),M.emit("pointerDown"),c&&(T=!1),l&&e.preventDefault()}}function k(e){if(!E&&!z){if(!e.cancelable)return _();var n=o.readPoint(e,j).get(),i=o.readPoint(e,v).get(),a=d(n,w.get()),c=d(i,I.get());if(!(E=a>c)&&!T)return _()}var s=o.pointerMove(e);!T&&s&&(T=!0),u.start(),r.add(t.applyTo(s)),e.preventDefault()}function _(){var e=g.byDistance(0,!1).index!==h.get(),n=o.pointerUp()*(i?A:D)[z?"mouse":"touch"],a=function(e,t){var n=h.clone().add(-1*l(e)),r=n.get()===h.min||n.get()===h.max,o=g.byDistance(e,!i).distance;return i||Math.abs(e)<20?o:!m&&r?.6*o:y&&t?.5*o:g.byIndex(n.get(),0).distance}(t.applyTo(n),e),u=function(e,t){if(0===e||0===t)return 0;if(Math.abs(e)<=Math.abs(t))return 0;var n=d(Math.abs(e),Math.abs(t));return Math.abs(n/e)}(n,a),c=d(r.get(),L.get())>=.5,s=e&&u>.75,j=Math.abs(n)<20,v=s?10:x,N=s?1+2.5*u:1;c&&!z&&(T=!0),E=!1,C=!1,S.removeAll(),p.useSpeed(j?9:v).useMass(N),f.distance(a,!i),z=!1,M.emit("pointerUp")}function P(e){T&&e.preventDefault()}return{addActivationEvents:function(){var e=n;b.add(e,"touchmove",(function(){})).add(e,"touchend",(function(){})).add(e,"touchstart",O).add(e,"mousedown",O).add(e,"touchcancel",_).add(e,"contextmenu",_).add(e,"click",P)},clickAllowed:function(){return!T},pointerDown:function(){return C},removeAllEvents:function(){b.removeAll(),S.removeAll()}}}function j(e,t,n){var r,i,o=(r=2,i=Math.pow(10,r),function(e){return Math.round(e*i)/i}),a=s(0),u=s(0),c=s(0),d=0,f=t,p=n;function g(e){return f=e,M}function h(e){return p=e,M}var M={direction:function(){return d},seek:function(t){c.set(t).subtract(e);var n,r,i,o=(n=c.get(),(i=0)+(n-(r=0))/(100-r)*(f-i));return d=l(c.get()),c.normalize().multiply(o).subtract(a),function(e){e.divide(p),u.add(e)}(c),M},settle:function(t){var n=t.get()-e.get(),r=!o(n);return r&&e.set(t),r},update:function(){a.add(u),e.add(a),u.multiply(0)},useBaseMass:function(){return h(n)},useBaseSpeed:function(){return g(t)},useMass:h,useSpeed:g};return M}function v(e,t,n,r){var i=!1;return{constrain:function(o){if(!i&&e.reachedAny(n.get())&&e.reachedAny(t.get())){var a=o?.7:.45,u=n.get()-t.get();n.subtract(u*a),!o&&Math.abs(u)<10&&(n.set(e.constrain(n.get())),r.useSpeed(10).useMass(3))}},toggleActive:function(e){i=!e}}}function N(e,t,n,r,i){var o=a(-t+e,n[0]),u=r.map(o.constrain);return{snapsContained:function(){if(t<=e)return[o.max];if("keepSnaps"===i)return u;var n=function(){var e=u[0],t=g(u),n=u.lastIndexOf(e),r=u.indexOf(t)+1;return a(n,r)}(),r=n.min,c=n.max;return u.slice(r,c)}()}}function w(e,t,n,r,i){var o=a(n.min+t.measure(.1),n.max+t.measure(.1)),u=o.reachedMin,c=o.reachedMax;return{loop:function(t){if(function(e){return 1===e?c(r.get()):-1===e&&u(r.get())}(t)){var n=e*(-1*t);i.forEach((function(e){return e.add(n)}))}}}}function I(e){var t=e.max,n=e.length;return{get:function(e){return(e-t)/-n}}}function L(e,t,n,r,i,o){var a,u,c=e.startEdge,s=e.endEdge,l=i.map((function(e){return r[c]-e[c]})).map(n.measure).map((function(e){return-Math.abs(e)})),d=(a=f(l,o).map((function(e){return e[0]})),u=f(i,o).map((function(e){return g(e)[s]-e[0][c]})).map(n.measure).map(Math.abs).map(t.measure),a.map((function(e,t){return e+u[t]})));return{snaps:l,snapsAligned:d}}function b(e,t,n,r,i){var o=r.reachedAny,a=r.removeOffset,u=r.constrain;function c(e,t){return Math.abs(e)0?e.concat([n]):e}),[])}function h(e,t){var r="start"===t,i=r?-n:n,u=o.findSlideBounds(i);return e.map((function(e){var t=r?0:-n,i=r?n:0,o=u.filter((function(t){return t.index===e}))[0][r?"end":"start"];return{point:o,getTarget:function(){return a.get()>o?t:i},index:e,location:-1}}))}return{canLoop:function(){return d.every((function(e){var n=e.index;return f(s.filter((function(e){return e!==n})),t)<=0}))},clear:function(){d.forEach((function(t){var n=t.index;u[n].style[e.startEdge]=""}))},loop:function(){d.forEach((function(t){var n=t.getTarget,r=t.location,i=t.index,o=n();o!==r&&(u[i].style[e.startEdge]=o+"%",t.location=o)}))},loopPoints:d}}function D(e,t,n){var r=c(),i=r.removeAll,o=0;function a(e){9===e.keyCode&&(o=(new Date).getTime())}function u(i,a){r.add(i,"focus",(function(){if(!((new Date).getTime()-o>10)){e.scrollLeft=0;var r=Math.floor(a/n);t.index(r,0)}}),!0)}return{addActivationEvents:function(e){r.add(document,"keydown",a,!1),e.forEach(u)},removeAllEvents:i}}function A(e,t,n){var r=n.style,i="x"===e.scroll?function(e){return"translate3d("+e+"%,0px,0px)"}:function(e){return"translate3d(0px,"+e+"%,0px)"},o=!1;return{clear:function(){r.transform=""},to:function(e){o||(r.transform=i(t.applyTo(e.get())))},toggleActive:function(e){o=!e}}}function x(e,t,n,r,i){var c,l=r.align,d=r.axis,f=r.direction,M=r.startIndex,m=r.inViewThreshold,x=r.loop,C=r.speed,E=r.dragFree,T=r.slidesToScroll,z=r.skipSnaps,O=r.containScroll,k=t.getBoundingClientRect(),_=n.map((function(e){return e.getBoundingClientRect()})),P=function(e){var t="rtl"===e?-1:1;return{applyTo:function(e){return e*t}}}(f),U=function(e,t){var n="y"===e?"y":"x";return{scroll:n,cross:"y"===e?"x":"y",startEdge:"y"===n?"top":"rtl"===t?"right":"left",endEdge:"y"===n?"bottom":"rtl"===t?"left":"right",measureSize:function(e){var t=e.width,r=e.height;return"x"===n?t:r}}}(d,f),Y=(c=U.measureSize(k),{measure:function(e){return 0===c?0:e/c*100},totalPercent:100}),Z=Y.totalPercent,R=o(l,Z),Q=function(e,t,n,r,i){var o=e.measureSize,a=e.startEdge,u=e.endEdge,c=r.map(o);return{slideSizes:c.map(t.measure),slideSizesWithGaps:r.map((function(e,t,r){var o=t===h(r),s=window.getComputedStyle(g(n)),l=parseFloat(s.getPropertyValue("margin-"+u));return o?c[t]+(i?l:0):r[t+1][a]-e[a]})).map(t.measure).map(Math.abs)}}(U,Y,n,_,x),W=Q.slideSizes,G=Q.slideSizesWithGaps,B=L(U,R,Y,k,_,T),V=B.snaps,H=B.snapsAligned,F=-g(V)+g(G),J=N(Z,F,V,H,O).snapsContained,X=!x&&""!==O?J:H,q=function(e,t,n){var r,i;return{limit:(r=t[0],i=g(t),a(n?r-e:i,r))}}(F,X,x).limit,K=u(h(X),M,x),$=K.clone(),ee=p(n),te=function(e){var t=0;function n(e,n){return function(){e===!!t&&n()}}function r(){t=window.requestAnimationFrame(e)}return{proceed:n(!0,r),start:n(!1,r),stop:n(!0,(function(){window.cancelAnimationFrame(t),t=0}))}}((function(){x||se.scrollBounds.constrain(se.dragHandler.pointerDown()),se.scrollBody.seek(ie).update();var e=se.scrollBody.settle(ie);e&&!se.dragHandler.pointerDown()&&(se.animation.stop(),i.emit("settle")),e||i.emit("scroll"),x&&(se.scrollLooper.loop(se.scrollBody.direction()),se.slideLooper.loop()),se.translate.to(re),se.animation.proceed()})),ne=X[K.get()],re=s(ne),ie=s(ne),oe=j(re,C,1),ae=b(x,X,F,q,ie),ue=function(e,t,n,r,i,o){function a(r){var a=r.distance,u=r.index!==t.get();a&&(e.start(),i.add(a)),u&&(n.set(t.get()),t.set(r.index),o.emit("select"))}return{distance:function(e,t){a(r.byDistance(e,t))},index:function(e,n){var i=t.clone().set(e);a(r.byIndex(i.get(),n))}}}(te,K,$,ae,ie,i),ce=function(e,t,n,r,i,o){var a=Math.min(Math.max(o,.01),.99),u=(i?[0,t,-t]:[0]).reduce((function(e,t){return e.concat(c(t,a))}),[]);function c(t,i){var o=n.map((function(e){return e*(i||0)}));return r.map((function(r,i){return{start:r-n[i]+o[i]+t,end:r+e-o[i]+t,index:i}}))}return{check:function(e){return u.reduce((function(t,n){var r=n.index,i=n.start,o=n.end;return-1===t.indexOf(r)&&ie?t.concat([r]):t}),[])},findSlideBounds:c}}(Z,F,W,V,x,m),se={animation:te,axis:U,direction:P,dragHandler:y(U,P,e,ie,E,function(e,t){var n=e.scroll,r={x:"clientX",y:"clientY"},i=s(0),o=s(0),a=s(0),u=s(0),c=[],l=(new Date).getTime(),d=!1;function f(e,t){d=!e.touches;var n=r[t],i=d?e[n]:e.touches[0][n];return u.set(i)}return{pointerDown:function(e){var r=f(e,n);return i.set(r),a.set(r),t.measure(i.get())},pointerMove:function(e){var r=f(e,n),i=(new Date).getTime(),u=i-l;return u>=10&&(u>=100&&(c=[]),c.push(r.get()),l=i),o.set(r).subtract(a),a.set(r),t.measure(o.get())},pointerUp:function(){var e=(new Date).getTime()-l,n=a.get(),r=c.slice(-5).map((function(e){return n-e})).sort((function(e,t){return Math.abs(e)100||!r?0:r),c=[],t.measure(a.get())},readPoint:f}}(U,Y),re,te,ue,oe,ae,K,i,x,z),pxToPercent:Y,index:K,indexPrevious:$,limit:q,location:re,options:r,scrollBody:oe,scrollBounds:v(q,re,ie,oe),scrollLooper:w(F,Y,q,re,[re,ie]),scrollProgress:I(q),scrollSnaps:X,scrollTarget:ae,scrollTo:ue,slideFocus:D(e,ue,T),slideLooper:S(U,Z,F,G,X,ce,re,n),slidesInView:ce,slideIndexes:ee,target:ie,translate:A(U,P,t)};return se}var C={align:"center",axis:"x",containScroll:"",direction:"ltr",dragFree:!1,draggable:!0,draggableClass:"is-draggable",draggingClass:"is-dragging",inViewThreshold:0,loop:!1,skipSnaps:!0,selectedClass:"is-selected",slidesToScroll:1,speed:10,startIndex:0};function E(e,t){var n,r,o,a,u,s,l,d=function(){var e={};function t(t){return e[t]||[]}var n={emit:function(e){return t(e).forEach((function(t){return t(e)})),n},off:function(r,i){return e[r]=t(r).filter((function(e){return e!==i})),n},on:function(r,i){return e[r]=t(r).concat([i]),n}};return n}(),f=c(),p=(n=function(){if(j){var t=a.axis.measureSize(e.getBoundingClientRect());w!==t&&A(),d.emit("resize")}},r=500,o=0,function(){window.clearTimeout(o),o=window.setTimeout(n,r)||0}),g=A,h=d.on,y=d.off,j=!1,v=i({},C),N=i({},v),w=0;function I(){if(!e)throw new Error("Missing root node 😢");var t,n=e.querySelector("*");if(!n)throw new Error("Missing container node 😢");s=n,l=Array.prototype.slice.call(s.children),t=getComputedStyle(e,":before").content,u={get:function(){try{return JSON.parse(t.slice(1,-1).replace(/\\/g,""))}catch(e){}return{}}}}function L(t){if(I(),v=i({},v,t),N=i({},v,u.get()),a=x(e,s,l,N,d),f.add(window,"resize",p),a.translate.to(a.location),w=a.axis.measureSize(e.getBoundingClientRect()),N.loop){if(!a.slideLooper.canLoop())return D(),L({loop:!1});a.slideLooper.loop()}N.draggable&&s.offsetParent&&l.length&&(a.dragHandler.addActivationEvents(),N.draggableClass&&m(e,N.draggableClass),N.draggingClass&&d.on("pointerDown",b).on("pointerUp",b)),l.length&&a.slideFocus.addActivationEvents(l),N.selectedClass&&(S(),d.on("select",S).on("pointerUp",S)),j||(setTimeout((function(){return d.emit("init")}),0),j=!0)}function b(t){var n=N.draggingClass;"pointerDown"===t?m(e,n):M(e,n)}function S(){var e=N.selectedClass,t=E(!0);T(!0).forEach((function(t){return M(l[t],e)})),t.forEach((function(t){return m(l[t],e)}))}function D(){a.dragHandler.removeAllEvents(),a.slideFocus.removeAllEvents(),a.animation.stop(),f.removeAll(),a.translate.clear(),a.slideLooper.clear(),M(e,N.draggableClass),l.forEach((function(e){return M(e,N.selectedClass)})),d.off("select",S).off("pointerUp",S).off("pointerDown",b).off("pointerUp",b)}function A(e){if(j){var t=i({startIndex:O()},e);D(),L(t),d.emit("reInit")}}function E(e){var t=a[e?"target":"location"].get(),n=N.loop?"removeOffset":"constrain";return a.slidesInView.check(a.limit[n](t))}function T(e){var t=E(e);return a.slideIndexes.filter((function(e){return-1===t.indexOf(e)}))}function z(e,t,n){a.scrollBody.useBaseMass().useSpeed(t?100:N.speed),j&&a.scrollTo.index(e,n||0)}function O(){return a.index.get()}return L(t),{canScrollNext:function(){return a.index.clone().add(1).get()!==O()},canScrollPrev:function(){return a.index.clone().add(-1).get()!==O()},clickAllowed:function(){return a.dragHandler.clickAllowed()},containerNode:function(){return s},dangerouslyGetEngine:function(){return a},destroy:function(){j&&(D(),j=!1,d.emit("destroy"))},off:y,on:h,previousScrollSnap:function(){return a.indexPrevious.get()},reInit:g,rootNode:function(){return e},scrollNext:function(e){z(a.index.clone().add(1).get(),!0===e,-1)},scrollPrev:function(e){z(a.index.clone().add(-1).get(),!0===e,1)},scrollProgress:function(){return a.scrollProgress.get(a.location.get())},scrollSnapList:function(){return a.scrollSnaps.map(a.scrollProgress.get)},scrollTo:z,selectedScrollSnap:O,slideNodes:function(){return l},slidesInView:E,slidesNotInView:T}}t.x=function(e){void 0===e&&(e={});var t=r.useState(),n=t[0],i=t[1],o=r.useState(),a=o[0],u=o[1],c=r.useRef(e),s=r.useMemo((function(){var t,n;return t=c.current,n=e,Object.keys(t).length===Object.keys(n).length&&Object.keys(t).every((function(e){return!!Object.prototype.hasOwnProperty.call(n,e)&&t[e]===n[e]}))||(c.current=e),c.current}),[c,e]);return r.useEffect((function(){if("undefined"!=typeof window&&window.document&&window.document.createElement&&a){var e=E(a,s);return i(e),function(){return e.destroy()}}i(void 0)}),[a,s,i]),[u,n]}},3962:function(e){"use strict";var t=Object.prototype.hasOwnProperty,n=Object.prototype.toString,r=Object.defineProperty,i=Object.getOwnPropertyDescriptor,o=function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===n.call(e)},a=function(e){if(!e||"[object Object]"!==n.call(e))return!1;var r,i=t.call(e,"constructor"),o=e.constructor&&e.constructor.prototype&&t.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!i&&!o)return!1;for(r in e);return void 0===r||t.call(e,r)},u=function(e,t){r&&"__proto__"===t.name?r(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},c=function(e,n){if("__proto__"===n){if(!t.call(e,n))return;if(i)return i(e,n).value}return e[n]};e.exports=function e(){var t,n,r,i,s,l,d=arguments[0],f=1,p=arguments.length,g=!1;for("boolean"==typeof d&&(g=d,d=arguments[1]||{},f=2),(null==d||"object"!=typeof d&&"function"!=typeof d)&&(d={});f
'};function i(e,t,n){return en?n:e}function o(e){return 100*(-1+e)}function a(e,t,n){var i;return(i="translate3d"===r.positionUsing?{transform:"translate3d("+o(e)+"%,0,0)"}:"translate"===r.positionUsing?{transform:"translate("+o(e)+"%,0)"}:{"margin-left":o(e)+"%"}).transition="all "+t+"ms "+n,i}n.configure=function(e){var t,n;for(t in e)void 0!==(n=e[t])&&e.hasOwnProperty(t)&&(r[t]=n);return this},n.status=null,n.set=function(e){var t=n.isStarted();e=i(e,r.minimum,1),n.status=1===e?null:e;var o=n.render(!t),s=o.querySelector(r.barSelector),l=r.speed,d=r.easing;return o.offsetWidth,u((function(t){""===r.positionUsing&&(r.positionUsing=n.getPositioningCSS()),c(s,a(e,l,d)),1===e?(c(o,{transition:"none",opacity:1}),o.offsetWidth,setTimeout((function(){c(o,{transition:"all "+l+"ms linear",opacity:0}),setTimeout((function(){n.remove(),t()}),l)}),l)):setTimeout(t,l)})),this},n.isStarted=function(){return"number"==typeof n.status},n.start=function(){n.status||n.set(0);var e=function e(){setTimeout((function(){n.status&&(n.trickle(),e())}),r.trickleSpeed)};return r.trickle&&e(),this},n.done=function(e){return e||n.status?n.inc(.3+.5*Math.random()).set(1):this},n.inc=function(e){var t=n.status;return t?("number"!=typeof e&&(e=(1-t)*i(Math.random()*t,.1,.95)),t=i(t+e,0,.994),n.set(t)):n.start()},n.trickle=function(){return n.inc(Math.random()*r.trickleRate)},e=0,t=0,n.promise=function(r){return r&&"resolved"!==r.state()?(0===t&&n.start(),e++,t++,r.always((function(){0==--t?(e=0,n.done()):n.set((e-t)/e)})),this):this},n.render=function(e){if(n.isRendered())return document.getElementById("nprogress");l(document.documentElement,"nprogress-busy");var t=document.createElement("div");t.id="nprogress",t.innerHTML=r.template;var i,a=t.querySelector(r.barSelector),u=e?"-100":o(n.status||0),s=document.querySelector(r.parent);return c(a,{transition:"all 0 linear",transform:"translate3d("+u+"%,0,0)"}),r.showSpinner||(i=t.querySelector(r.spinnerSelector))&&p(i),s!=document.body&&l(s,"nprogress-custom-parent"),s.appendChild(t),t},n.remove=function(){d(document.documentElement,"nprogress-busy"),d(document.querySelector(r.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&p(e)},n.isRendered=function(){return!!document.getElementById("nprogress")},n.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective"in e?"translate3d":t+"Transform"in e?"translate":"margin"};var u=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),c=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,(function(e,t){return t.toUpperCase()}))}function r(t){var n=document.body.style;if(t in n)return t;for(var r,i=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);i--;)if((r=e[i]+o)in n)return r;return t}function i(e){return e=n(e),t[e]||(t[e]=r(e))}function o(e,t,n){t=i(t),e.style[t]=n}return function(e,t){var n,r,i=arguments;if(2==i.length)for(n in t)void 0!==(r=t[n])&&t.hasOwnProperty(n)&&o(e,n,r);else o(e,i[1],i[2])}}();function s(e,t){return("string"==typeof e?e:f(e)).indexOf(" "+t+" ")>=0}function l(e,t){var n=f(e),r=n+t;s(n,t)||(e.className=r.substring(1))}function d(e,t){var n,r=f(e);s(e,t)&&(n=r.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function f(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function p(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return n})?r.call(t,n,t,e):r)||(e.exports=i)},3186:function(e){(function(){var t,n,r,i,o,a;"undefined"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:"undefined"!=typeof process&&null!==process&&process.hrtime?(e.exports=function(){return(t()-o)/1e6},n=process.hrtime,i=(t=function(){var e;return 1e9*(e=n())[0]+e[1]})(),a=1e9*process.uptime(),o=i-a):Date.now?(e.exports=function(){return Date.now()-r},r=Date.now()):(e.exports=function(){return(new Date).getTime()-r},r=(new Date).getTime())}).call(this)},8442:function(e,t,n){for(var r=n(3186),i="undefined"==typeof window?n.g:window,o=["moz","webkit"],a="AnimationFrame",u=i["request"+a],c=i["cancel"+a]||i["cancelRequest"+a],s=0;!u&&s=e)return this._from=this._to,this._update(this._to),this._done=!0,this.emit("end"),this;var n=this._from,r=this._to,i=this._curr,o=(0,this._ease)((t-this._start)/e);if(this.isArray){for(var a=0;a?@[]^_`{|}~"},c.uuid=s,c.generate=function(){return u||(u=c(d).generate),u()},c)},252:function(e,t,n){"use strict";var r;n.r(t),n.d(t,{NIL:function(){return C},parse:function(){return M},stringify:function(){return f},v1:function(){return h},v3:function(){return b},v4:function(){return S},v5:function(){return x},validate:function(){return u},version:function(){return E}});var i=new Uint8Array(16);function o(){if(!r&&!(r="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return r(i)}var a=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;for(var u=function(e){return"string"==typeof e&&a.test(e)},c=[],s=0;s<256;++s)c.push((s+256).toString(16).substr(1));var l,d,f=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=(c[e[t+0]]+c[e[t+1]]+c[e[t+2]]+c[e[t+3]]+"-"+c[e[t+4]]+c[e[t+5]]+"-"+c[e[t+6]]+c[e[t+7]]+"-"+c[e[t+8]]+c[e[t+9]]+"-"+c[e[t+10]]+c[e[t+11]]+c[e[t+12]]+c[e[t+13]]+c[e[t+14]]+c[e[t+15]]).toLowerCase();if(!u(n))throw TypeError("Stringified UUID is invalid");return n},p=0,g=0;var h=function(e,t,n){var r=t&&n||0,i=t||new Array(16),a=(e=e||{}).node||l,u=void 0!==e.clockseq?e.clockseq:d;if(null==a||null==u){var c=e.random||(e.rng||o)();null==a&&(a=l=[1|c[0],c[1],c[2],c[3],c[4],c[5]]),null==u&&(u=d=16383&(c[6]<<8|c[7]))}var s=void 0!==e.msecs?e.msecs:Date.now(),h=void 0!==e.nsecs?e.nsecs:g+1,M=s-p+(h-g)/1e4;if(M<0&&void 0===e.clockseq&&(u=u+1&16383),(M<0||s>p)&&void 0===e.nsecs&&(h=0),h>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");p=s,g=h,d=u;var m=(1e4*(268435455&(s+=122192928e5))+h)%4294967296;i[r++]=m>>>24&255,i[r++]=m>>>16&255,i[r++]=m>>>8&255,i[r++]=255&m;var y=s/4294967296*1e4&268435455;i[r++]=y>>>8&255,i[r++]=255&y,i[r++]=y>>>24&15|16,i[r++]=y>>>16&255,i[r++]=u>>>8|128,i[r++]=255&u;for(var j=0;j<6;++j)i[r+j]=a[j];return t||f(i)};var M=function(e){if(!u(e))throw TypeError("Invalid UUID");var t,n=new Uint8Array(16);return n[0]=(t=parseInt(e.slice(0,8),16))>>>24,n[1]=t>>>16&255,n[2]=t>>>8&255,n[3]=255&t,n[4]=(t=parseInt(e.slice(9,13),16))>>>8,n[5]=255&t,n[6]=(t=parseInt(e.slice(14,18),16))>>>8,n[7]=255&t,n[8]=(t=parseInt(e.slice(19,23),16))>>>8,n[9]=255&t,n[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,n[11]=t/4294967296&255,n[12]=t>>>24&255,n[13]=t>>>16&255,n[14]=t>>>8&255,n[15]=255&t,n};function m(e,t,n){function r(e,r,i,o){if("string"==typeof e&&(e=function(e){e=unescape(encodeURIComponent(e));for(var t=[],n=0;n>>9<<4)+1}function j(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function v(e,t,n,r,i,o){return j((a=j(j(t,e),j(r,o)))<<(u=i)|a>>>32-u,n);var a,u}function N(e,t,n,r,i,o,a){return v(t&n|~t&r,e,t,i,o,a)}function w(e,t,n,r,i,o,a){return v(t&r|n&~r,e,t,i,o,a)}function I(e,t,n,r,i,o,a){return v(t^n^r,e,t,i,o,a)}function L(e,t,n,r,i,o,a){return v(n^(t|~r),e,t,i,o,a)}var b=m("v3",48,(function(e){if("string"==typeof e){var t=unescape(encodeURIComponent(e));e=new Uint8Array(t.length);for(var n=0;n>5]>>>i%32&255,a=parseInt(r.charAt(o>>>4&15)+r.charAt(15&o),16);t.push(a)}return t}(function(e,t){e[t>>5]|=128<>5]|=(255&e[r/8])<>>32-t}var x=m("v5",80,(function(e){var t=[1518500249,1859775393,2400959708,3395469782],n=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof e){var r=unescape(encodeURIComponent(e));e=[];for(var i=0;i>>0;j=y,y=m,m=A(M,30)>>>0,M=h,h=w}n[0]=n[0]+h>>>0,n[1]=n[1]+M>>>0,n[2]=n[2]+m>>>0,n[3]=n[3]+y>>>0,n[4]=n[4]+j>>>0}return[n[0]>>24&255,n[0]>>16&255,n[0]>>8&255,255&n[0],n[1]>>24&255,n[1]>>16&255,n[1]>>8&255,255&n[1],n[2]>>24&255,n[2]>>16&255,n[2]>>8&255,255&n[2],n[3]>>24&255,n[3]>>16&255,n[3]>>8&255,255&n[3],n[4]>>24&255,n[4]>>16&255,n[4]>>8&255,255&n[4]]})),C="00000000-0000-0000-0000-000000000000";var E=function(e){if(!u(e))throw TypeError("Invalid UUID");return parseInt(e.substr(14,1),16)}},6151:function(e,t,n){var r=n(6297),i=["blank","all","minWidth","minHeight","maxWidth","maxHeight","print"];function o(e){return function(t,n){var r=t.sortVal,i=n.sortVal,o=t.item.__media,a=n.item.__media;if(e=void 0!==e&&e,r===i){if(o.match(/print/))return 1;if(a.match(/print/))return-1}return e?i-r:r-i}}function a(e,t,n){switch(function(e,t,n){return e&&e.length&&"string"!=typeof e?("object"!==t||n&&"string"==typeof n)&&function(e,t,n){for(var r=!0,i=0,o=e.length;ip)&&(Y=(Q=Q.replace(" ",":")).length),0r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(M,"$1"+e.trim());case 58:return e.trim()+t.replace(M,"$1"+e.trim());default:if(0<1*n&&0c.charCodeAt(8))break;case 115:a=a.replace(c,"-webkit-"+c)+";"+a;break;case 207:case 102:a=a.replace(c,"-webkit-"+(102r.charCodeAt(0)&&(r=r.trim()),r=[r],01?t-1:0),r=1;r0?" Args: "+n.join(", "):""))}var S=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,i=r;e>=i;)(i<<=1)<0&&b(16,""+e);this.groupSizes=new Uint32Array(i),this.groupSizes.set(n),this.length=i;for(var o=r;o=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),i=r+n,o=r;o=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(N))return r}}(n),o=void 0!==i?i.nextSibling:null;r.setAttribute(N,"active"),r.setAttribute("data-styled-version","5.3.0");var a=P();return a&&r.setAttribute("nonce",a),n.insertBefore(r,o),r},Y=function(){function e(e){var t=this.element=U(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e0&&(s+=e+",")})),r+=""+u+c+'{content:"'+s+'"}/*!sc*/\n'}}}return r}(this)},e}(),B=/(a)(d)/gi,V=function(e){return String.fromCharCode(e+(e>25?39:97))};function H(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=V(t%52)+n;return(V(t%52)+n).replace(B,"$1-$2")}var F=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},J=function(e){return F(5381,e)};function X(e){for(var t=0;t>>0);if(!t.hasNameForId(r,a)){var u=n(o,"."+a,void 0,r);t.insertRules(r,a,u)}i.push(a),this.staticRulesId=a}else{for(var c=this.rules.length,s=F(this.baseHash,n.hash),l="",d=0;d>>0);if(!t.hasNameForId(r,h)){var M=n(l,"."+h,void 0,r);t.insertRules(r,h,M)}i.push(h)}}return i.join(" ")},e}(),$=/^\s*\/\/.*$/gm,ee=[":","[",".","#"];function te(e){var t,n,r,i,o=void 0===e?m:e,a=o.options,c=void 0===a?m:a,s=o.plugins,l=void 0===s?M:s,d=new u(c),f=[],p=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,i,o,a,u,c,s,l,d){switch(n){case 1:if(0===l&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===s)return r+"/*|*/";break;case 3:switch(s){case 102:case 112:return e(i[0]+r),"";default:return r+(0===d?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}((function(e){f.push(e)})),g=function(e,r,o){return 0===r&&-1!==ee.indexOf(o[n.length])||o.match(i)?e:"."+t};function h(e,o,a,u){void 0===u&&(u="&");var c=e.replace($,""),s=o&&a?a+" "+o+" { "+c+" }":c;return t=u,n=o,r=new RegExp("\\"+n+"\\b","g"),i=new RegExp("(\\"+n+"\\b){2,}"),d(a||!o?"":o,s)}return d.use([].concat(l,[function(e,t,i){2===e&&i.length&&i[0].lastIndexOf(n)>0&&(i[0]=i[0].replace(r,g))},p,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=l.length?l.reduce((function(e,t){return t.name||b(15),F(e,t.name)}),5381).toString():"",h}var ne=i.createContext(),re=(ne.Consumer,i.createContext()),ie=(re.Consumer,new G),oe=te();function ae(){return(0,i.useContext)(ne)||ie}function ue(){return(0,i.useContext)(re)||oe}function ce(e){var t=(0,i.useState)(e.stylisPlugins),n=t[0],r=t[1],o=ae(),u=(0,i.useMemo)((function(){var t=o;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target},!1)),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t}),[e.disableCSSOMInjection,e.sheet,e.target]),c=(0,i.useMemo)((function(){return te({options:{prefix:!e.disableVendorPrefixes},plugins:n})}),[e.disableVendorPrefixes,n]);return(0,i.useEffect)((function(){a()(n,e.stylisPlugins)||r(e.stylisPlugins)}),[e.stylisPlugins]),i.createElement(ne.Provider,{value:u},i.createElement(re.Provider,{value:c},e.children))}var se=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=oe);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,"@keyframes"))},this.toString=function(){return b(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=oe),this.name+e.hash},e}(),le=/([A-Z])/,de=/([A-Z])/g,fe=/^ms-/,pe=function(e){return"-"+e.toLowerCase()};function ge(e){return le.test(e)?e.replace(de,pe).replace(fe,"-ms-"):e}var he=function(e){return null==e||!1===e||""===e};function Me(e,t,n,r){if(Array.isArray(e)){for(var i,o=[],a=0,u=e.length;a1?t-1:0),r=1;r?@[\\\]^`{|}~-]+/g,ve=/(^-|-$)/g;function Ne(e){return e.replace(je,"-").replace(ve,"")}var we=function(e){return H(J(e)>>>0)};function Ie(e){return"string"==typeof e&&!0}var Le=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},be=function(e){return"__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function Se(e,t,n){var r=e[n];Le(t)&&Le(r)?De(r,t):e[n]=t}function De(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0||(i[n]=e[n]);return i}(t,["componentId"]),o=r&&r+"-"+(Ie(e)?e:Ne(j(e)));return Ce(e,p({},i,{attrs:N,componentId:o}),n)},Object.defineProperty(I,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(t){this._foldedDefaultProps=r?De({},e.defaultProps,t):t}}),I.toString=function(){return"."+I.styledComponentId},o&&f()(I,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),I}var Ee=function(e){return function e(t,n,i){if(void 0===i&&(i=m),!(0,r.isValidElementType)(n))return b(1,String(n));var o=function(){return t(n,i,me.apply(void 0,arguments))};return o.withConfig=function(r){return e(t,n,p({},i,{},r))},o.attrs=function(r){return e(t,n,p({},i,{attrs:Array.prototype.concat(i.attrs,r).filter(Boolean)}))},o}(Ce,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach((function(e){Ee[e]=Ee(e)}));var Te=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=X(e),G.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var i=r(Me(this.rules,t,n,r).join(""),""),o=this.componentId+e;n.insertRules(o,o,i)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){e>2&&G.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();function ze(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r"+t+""},this.getStyleTags=function(){return e.sealed?b(2):e._emitSheetCSS()},this.getStyleElement=function(){var t;if(e.sealed)return b(2);var n=((t={})[N]="",t["data-styled-version"]="5.3.0",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),r=P();return r&&(n.nonce=r),[i.createElement("style",p({},n,{key:"sc-0-0"}))]},this.seal=function(){e.sealed=!0},this.instance=new G({isServer:!0}),this.sealed=!1}var t=e.prototype;t.collectStyles=function(e){return this.sealed?b(2):i.createElement(ce,{sheet:this.instance},e)},t.interleaveWithNodeStream=function(e){return b(3)}}();var ke=Ee},8262:function(e){e.exports={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}},6297:function(e){e.exports=function(){for(var e={},n=0;nl;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},4326:function(e){var t={}.toString;e.exports=function(e){return t.call(e).slice(8,-1)}},9920:function(e,t,n){var r=n(6656),i=n(3887),o=n(1236),a=n(3070);e.exports=function(e,t){for(var n=i(t),u=a.f,c=o.f,s=0;s=74)&&(r=a.match(/Chrome\/(\d+)/))&&(i=r[1]),e.exports=i&&+i},748:function(e){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(e,t,n){var r=n(7854),i=n(1236).f,o=n(8880),a=n(1320),u=n(3505),c=n(9920),s=n(4705);e.exports=function(e,t){var n,l,d,f,p,g=e.target,h=e.global,M=e.stat;if(n=h?r:M?r[g]||u(g,{}):(r[g]||{}).prototype)for(l in t){if(f=t[l],d=e.noTargetGet?(p=i(n,l))&&p.value:n[l],!s(h?l:g+(M?".":"#")+l,e.forced)&&void 0!==d){if(typeof f==typeof d)continue;c(f,d)}(e.sham||d&&d.sham)&&o(f,"sham",!0),a(n,l,f,e)}}},7293:function(e){e.exports=function(e){try{return!!e()}catch(e){return!0}}},5005:function(e,t,n){var r=n(857),i=n(7854),o=function(e){return"function"==typeof e?e:void 0};e.exports=function(e,t){return arguments.length<2?o(r[e])||o(i[e]):r[e]&&r[e][t]||i[e]&&i[e][t]}},7854:function(e,t,n){var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},6656:function(e,t,n){var r=n(7908),i={}.hasOwnProperty;e.exports=Object.hasOwn||function(e,t){return i.call(r(e),t)}},3501:function(e){e.exports={}},4664:function(e,t,n){var r=n(9781),i=n(7293),o=n(317);e.exports=!r&&!i((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},8361:function(e,t,n){var r=n(7293),i=n(4326),o="".split;e.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(e){return"String"==i(e)?o.call(e,""):Object(e)}:Object},2788:function(e,t,n){var r=n(5465),i=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(e){return i.call(e)}),e.exports=r.inspectSource},9909:function(e,t,n){var r,i,o,a=n(8536),u=n(7854),c=n(111),s=n(8880),l=n(6656),d=n(5465),f=n(6200),p=n(3501),g="Object already initialized",h=u.WeakMap;if(a||d.state){var M=d.state||(d.state=new h),m=M.get,y=M.has,j=M.set;r=function(e,t){if(y.call(M,e))throw new TypeError(g);return t.facade=e,j.call(M,e,t),t},i=function(e){return m.call(M,e)||{}},o=function(e){return y.call(M,e)}}else{var v=f("state");p[v]=!0,r=function(e,t){if(l(e,v))throw new TypeError(g);return t.facade=e,s(e,v,t),t},i=function(e){return l(e,v)?e[v]:{}},o=function(e){return l(e,v)}}e.exports={set:r,get:i,has:o,enforce:function(e){return o(e)?i(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=i(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return n}}}},4705:function(e,t,n){var r=n(7293),i=/#|\.prototype\./,o=function(e,t){var n=u[a(e)];return n==s||n!=c&&("function"==typeof t?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=o.data={},c=o.NATIVE="N",s=o.POLYFILL="P";e.exports=o},111:function(e){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},1913:function(e){e.exports=!1},3366:function(e,t,n){var r=n(7854);e.exports=r.Promise},133:function(e,t,n){var r=n(7392),i=n(7293);e.exports=!!Object.getOwnPropertySymbols&&!i((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:function(e,t,n){var r=n(7854),i=n(2788),o=r.WeakMap;e.exports="function"==typeof o&&/native code/.test(i(o))},8523:function(e,t,n){"use strict";var r=n(3099),i=function(e){var t,n;this.promise=new e((function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r})),this.resolve=r(t),this.reject=r(n)};e.exports.f=function(e){return new i(e)}},3070:function(e,t,n){var r=n(9781),i=n(4664),o=n(9670),a=n(7593),u=Object.defineProperty;t.f=r?u:function(e,t,n){if(o(e),t=a(t,!0),o(n),i)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},1236:function(e,t,n){var r=n(9781),i=n(5296),o=n(9114),a=n(5656),u=n(7593),c=n(6656),s=n(4664),l=Object.getOwnPropertyDescriptor;t.f=r?l:function(e,t){if(e=a(e),t=u(t,!0),s)try{return l(e,t)}catch(e){}if(c(e,t))return o(!i.f.call(e,t),e[t])}},8006:function(e,t,n){var r=n(6324),i=n(748).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},5181:function(e,t){t.f=Object.getOwnPropertySymbols},6324:function(e,t,n){var r=n(6656),i=n(5656),o=n(1318).indexOf,a=n(3501);e.exports=function(e,t){var n,u=i(e),c=0,s=[];for(n in u)!r(a,n)&&r(u,n)&&s.push(n);for(;t.length>c;)r(u,n=t[c++])&&(~o(s,n)||s.push(n));return s}},5296:function(e,t){"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,i=r&&!n.call({1:2},1);t.f=i?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},3887:function(e,t,n){var r=n(5005),i=n(8006),o=n(5181),a=n(9670);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=o.f;return n?t.concat(n(e)):t}},857:function(e,t,n){var r=n(7854);e.exports=r},9478:function(e,t,n){var r=n(9670),i=n(111),o=n(8523);e.exports=function(e,t){if(r(e),i(t)&&t.constructor===e)return t;var n=o.f(e);return(0,n.resolve)(t),n.promise}},1320:function(e,t,n){var r=n(7854),i=n(8880),o=n(6656),a=n(3505),u=n(2788),c=n(9909),s=c.get,l=c.enforce,d=String(String).split("String");(e.exports=function(e,t,n,u){var c,s=!!u&&!!u.unsafe,f=!!u&&!!u.enumerable,p=!!u&&!!u.noTargetGet;"function"==typeof n&&("string"!=typeof t||o(n,"name")||i(n,"name",t),(c=l(n)).source||(c.source=d.join("string"==typeof t?t:""))),e!==r?(s?!p&&e[t]&&(f=!0):delete e[t],f?e[t]=n:i(e,t,n)):f?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&s(this).source||u(this)}))},4488:function(e){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},3505:function(e,t,n){var r=n(7854),i=n(8880);e.exports=function(e,t){try{i(r,e,t)}catch(n){r[e]=t}return t}},6200:function(e,t,n){var r=n(2309),i=n(9711),o=r("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},5465:function(e,t,n){var r=n(7854),i=n(3505),o="__core-js_shared__",a=r[o]||i(o,{});e.exports=a},2309:function(e,t,n){var r=n(1913),i=n(5465);(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.14.0",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(e,t,n){var r=n(9670),i=n(3099),o=n(5112)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||null==(n=r(a)[o])?t:i(n)}},1400:function(e,t,n){var r=n(9958),i=Math.max,o=Math.min;e.exports=function(e,t){var n=r(e);return n<0?i(n+t,0):o(n,t)}},5656:function(e,t,n){var r=n(8361),i=n(4488);e.exports=function(e){return r(i(e))}},9958:function(e){var t=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:t)(e)}},7466:function(e,t,n){var r=n(9958),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},7908:function(e,t,n){var r=n(4488);e.exports=function(e){return Object(r(e))}},7593:function(e,t,n){var r=n(111);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},9711:function(e){var t=0,n=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++t+n).toString(36)}},3307:function(e,t,n){var r=n(133);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(e,t,n){var r=n(7854),i=n(2309),o=n(6656),a=n(9711),u=n(133),c=n(3307),s=i("wks"),l=r.Symbol,d=c?l:l&&l.withoutSetter||a;e.exports=function(e){return o(s,e)&&(u||"string"==typeof s[e])||(u&&o(l,e)?s[e]=l[e]:s[e]=d("Symbol."+e)),s[e]}},7727:function(e,t,n){"use strict";var r=n(2109),i=n(1913),o=n(3366),a=n(7293),u=n(5005),c=n(6707),s=n(9478),l=n(1320);if(r({target:"Promise",proto:!0,real:!0,forced:!!o&&a((function(){o.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(e){var t=c(this,u("Promise")),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then((function(){return n}))}:e,n?function(n){return s(t,e()).then((function(){throw n}))}:e)}}),!i&&"function"==typeof o){var d=u("Promise").prototype.finally;o.prototype.finally!==d&&l(o.prototype,"finally",d,{unsafe:!0})}},8037:function(e,t,n){"use strict";var r=n(5318);t.dq=h,t.mc=function(e){return h(e,M())},t.c4=t.ZP=void 0;var i=r(n(7316)),o=r(n(1506)),a=r(n(5354)),u=r(n(7154)),c=r(n(5697)),s=r(n(7294)),l=n(9499),d=n(2098),f=n(1752);t.cP=f.parsePath;var p=["to","getProps","onClick","onMouseEnter","activeClassName","activeStyle","innerRef","partiallyActive","state","replace","_location"],g=function(e){return null==e?void 0:e.startsWith("/")};function h(e,t){var n,r;if(void 0===t&&(t=m()),!y(e))return e;if(e.startsWith("./")||e.startsWith("../"))return e;var i=null!==(n=null!==(r=t)&&void 0!==r?r:M())&&void 0!==n?n:"/";return""+(null!=i&&i.endsWith("/")?i.slice(0,-1):i)+(e.startsWith("/")?e:"/"+e)}var M=function(){return"/move-to-deriv"},m=function(){return"/move-to-deriv"},y=function(e){return e&&!e.startsWith("http://")&&!e.startsWith("https://")&&!e.startsWith("//")};var j=function(e,t){return"number"==typeof e?e:y(e)?g(e)?h(e):function(e,t){return g(e)?e:(0,d.resolve)(e,t)}(e,t):e},v={activeClassName:c.default.string,activeStyle:c.default.object,partiallyActive:c.default.bool};function N(e){return s.default.createElement(l.Location,null,(function(t){var n=t.location;return s.default.createElement(w,(0,u.default)({},e,{_location:n}))}))}var w=function(e){function t(t){var n;(n=e.call(this,t)||this).defaultGetProps=function(e){var t=e.isPartiallyCurrent,r=e.isCurrent;return(n.props.partiallyActive?t:r)?{className:[n.props.className,n.props.activeClassName].filter(Boolean).join(" "),style:(0,u.default)({},n.props.style,n.props.activeStyle)}:null};var r=!1;return"undefined"!=typeof window&&window.IntersectionObserver&&(r=!0),n.state={IOSupported:r},n.handleRef=n.handleRef.bind((0,o.default)(n)),n}(0,a.default)(t,e);var n=t.prototype;return n._prefetch=function(){var e=window.location.pathname;this.props._location&&this.props._location.pathname&&(e=this.props._location.pathname);var t=j(this.props.to,e),n=(0,f.parsePath)(t).pathname;e!==n&&___loader.enqueue(n)},n.componentDidUpdate=function(e,t){this.props.to===e.to||this.state.IOSupported||this._prefetch()},n.componentDidMount=function(){this.state.IOSupported||this._prefetch()},n.componentWillUnmount=function(){if(this.io){var e=this.io,t=e.instance,n=e.el;t.unobserve(n),t.disconnect()}},n.handleRef=function(e){var t,n,r,i=this;this.props.innerRef&&this.props.innerRef.hasOwnProperty("current")?this.props.innerRef.current=e:this.props.innerRef&&this.props.innerRef(e),this.state.IOSupported&&e&&(this.io=(t=e,n=function(){i._prefetch()},(r=new window.IntersectionObserver((function(e){e.forEach((function(e){t===e.target&&(e.isIntersecting||e.intersectionRatio>0)&&(r.unobserve(t),r.disconnect(),n())}))}))).observe(t),{instance:r,el:t}))},n.render=function(){var e=this,t=this.props,n=t.to,r=t.getProps,o=void 0===r?this.defaultGetProps:r,a=t.onClick,c=t.onMouseEnter,d=(t.activeClassName,t.activeStyle,t.innerRef,t.partiallyActive,t.state),g=t.replace,h=t._location,M=(0,i.default)(t,p);var m=j(n,h.pathname);return y(m)?s.default.createElement(l.Link,(0,u.default)({to:m,state:d,getProps:o,innerRef:this.handleRef,onMouseEnter:function(e){c&&c(e),___loader.hovering((0,f.parsePath)(m).pathname)},onClick:function(t){if(a&&a(t),!(0!==t.button||e.props.target||t.defaultPrevented||t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)){t.preventDefault();var n=g,r=encodeURI(m)===h.pathname;"boolean"!=typeof g&&r&&(n=!0),window.___navigate(m,{state:d,replace:n})}return!0}},M)):s.default.createElement("a",(0,u.default)({href:m},M))},t}(s.default.Component);w.propTypes=(0,u.default)({},v,{onClick:c.default.func,to:c.default.string.isRequired,replace:c.default.bool,state:c.default.object});var I=s.default.forwardRef((function(e,t){return s.default.createElement(N,(0,u.default)({innerRef:t},e))}));t.ZP=I;t.c4=function(e,t){window.___navigate(j(e,window.location.pathname),t)}},1752:function(e,t){"use strict";t.__esModule=!0,t.parsePath=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");-1!==o&&(n=t.substr(o),t=t.substr(0,o));return{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}},9679:function(e,t,n){"use strict";t.p2=t.$C=void 0;var r=n(1432);t.$C=r.ScrollHandler;var i=n(4855);t.p2=i.useScrollRestoration},1432:function(e,t,n){"use strict";var r=n(5318);t.__esModule=!0,t.ScrollHandler=t.ScrollContext=void 0;var i=r(n(1506)),o=r(n(5354)),a=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=s(t);if(n&&n.has(e))return n.get(e);var r={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if("default"!==o&&Object.prototype.hasOwnProperty.call(e,o)){var a=i?Object.getOwnPropertyDescriptor(e,o):null;a&&(a.get||a.set)?Object.defineProperty(r,o,a):r[o]=e[o]}r.default=e,n&&n.set(e,r);return r}(n(7294)),u=r(n(5697)),c=n(1142);function s(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(s=function(e){return e?n:t})(e)}var l=a.createContext(new c.SessionStorage);t.ScrollContext=l,l.displayName="GatsbyScrollContext";var d=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n div{display:flex;justify-content:space-between;width:100%;padding:0 1.6rem;align-items:center;}"],(function(e){return e.background_color}),(function(e){return e.is_selected?"translate3d(-3%, 0, 0)":"translate3d(-105%, 0, 0)"}))),G=(i.ZP.article.withConfig({displayName:"card__CardWrapper",componentId:"oq96z0-2"})([""," position:relative;overflow:hidden;height:100%;min-height:",";width:",";padding:",";border-radius:6px;&:hover{","{transform:translate3d(-3%,0,0);@media ","{transform:translate3d(-5%,0,0);}}}@media ","{padding:2rem;margin-top:1.77rem;margin-right:0;width:100%;}"],Q,(function(e){return e.min_height?e.min_height:"0"}),(function(e){return e.width?e.width:"38.4rem"}),(function(e){return e.padding?e.padding:"1.8rem 2rem 1.4rem 1.2rem"}),W,c.Z.tabletL,c.Z.tabletL),i.ZP.div.withConfig({displayName:"card__ContentWrapper",componentId:"oq96z0-3"})(["margin-top:4rem;@media ","{margin-top:2.7rem;","{font-size:3rem;}}"],c.Z.tabletL,h),i.ZP.article.withConfig({displayName:"card__CardChildrenWrapper",componentId:"oq96z0-4"})(["","{text-align:center;}"," width:",";height:100%;min-height:26.8rem;padding:2.6rem;display:flex;flex-direction:column;align-items:center;p{font-size:var(--text-size-s);a{color:var(--color-red);text-decoration:none;&:hover{text-decoration:underline;}}}svg,img{margin:0.2rem 0 0.8rem 0;}"],h,Q,(function(e){return e.width?e.width:"50.2rem"})),i.ZP.div.withConfig({displayName:"card__IconContainer",componentId:"oq96z0-5"})(["display:flex;justify-content:flex-start;","{display:flex;align-items:center;}"],h),i.ZP.div.withConfig({displayName:"card__CardContentContainer",componentId:"oq96z0-6"})(["margin-left:1.6rem;"]),i.ZP.div.withConfig({displayName:"card__IconWrapper",componentId:"oq96z0-7"})(["& > svg{width:7.9rem;height:7.9rem;}"]),(0,i.ZP)(g).withConfig({displayName:"card__CoverContent",componentId:"oq96z0-8"})(["color:white;font-weight:bold;font-size:var(--text-size-m);"]),i.ZP.div.withConfig({displayName:"card__NavContent",componentId:"oq96z0-9"})(["width:100%;display:flex;flex-direction:column;"])),B=i.ZP.img.withConfig({displayName:"card__RightDiagonal",componentId:"oq96z0-10"})(["opacity:0;transition:opacity 0.2s;position:absolute;width:16px;height:16px;right:16px;top:16px;@media ","{opacity:1;width:16px;height:16px;right:0;margin-right:0;top:0;}"],c.Z.tabletL),V=(0,i.ZP)(h).withConfig({displayName:"card__ResponsiveHeader",componentId:"oq96z0-11"})(["transition:color 0.2s;@media ","{font-size:16px;}"],c.Z.tabletL),H=(0,i.ZP)(g).withConfig({displayName:"card__ResponsiveText",componentId:"oq96z0-12"})(["transition:color 0.2s;font-size:var(--text-size-xs);@media ","{font-size:14px;}"],c.Z.tabletL),F=(0,i.ZP)(P.kC).withConfig({displayName:"card__FlexHover",componentId:"oq96z0-13"})(["padding:0.8rem 1.6rem;cursor:pointer;@media ","{padding:0;}&:hover{background-color:var(--color-grey-30);","{opacity:1;}","{color:var(--color-black-3);}}"],c.Z.mobileL,B,g),J=i.ZP.div.withConfig({displayName:"card__SvgWrapper",componentId:"oq96z0-14"})(["& > svg,img{width:33px;height:33px;margin-right:1.6rem;@media ","{width:24px;height:24px;}}"],c.Z.mobileL),X=function(e){var t=e.content,n=e.external,i=e.icon,a=e.style,u=e.title,c=(0,o.Z)(e,Z);return r.createElement(U.UE,Object.assign({style:Object.assign({textDecoration:"none",width:"100%",maxWidth:"33.6rem",position:"relative"},a),external:n},c),r.createElement(F,{jc:"flex-start",direction:"row",tablet_direction:"row"},r.createElement(J,null,r.createElement(i,null)),r.createElement(G,null,r.createElement(V,{as:"span",size:"var(--text-size-s)",lh:"1.14",mb:"0.8rem"},u),r.createElement(H,{color:"grey-5"},t)),n&&r.createElement("div",null,r.createElement(B,{src:Y,alt:"Diagonal",widht:"16",height:"16"}))))},q=i.ZP.div.withConfig({displayName:"card__LinkRightDiagonal",componentId:"oq96z0-15"})(["opacity:0;justify-self:flex-end;align-self:center;& > svg,img{width:16px;height:16px;}"]),K=(0,i.ZP)(P.kC).withConfig({displayName:"card__HoverFlex",componentId:"oq96z0-16"})(["&:hover{background-color:var(--color-grey-30);","{opacity:1;}}"],q),$=i.ZP.div.withConfig({displayName:"card__IconRightWrapper",componentId:"oq96z0-17"})(["& > svg,img{height:24px;width:24px;margin-right:1.6rem;}"]),ee=(0,i.ZP)(P.kC).withConfig({displayName:"card__RelativeFlex",componentId:"oq96z0-18"})(["position:relative;"]),te=function(e){var t=e.icon,n=e.title,i=e.to,a=e.style,u=e.external,c=e.target,s=e.onClick,l=(0,o.Z)(e,R);return r.createElement(U.UE,Object.assign({target:c,onClick:s,to:i,style:Object.assign({textDecoration:"none",width:"100%",position:"relative"},a),external:u},l),r.createElement(K,{p:"1rem 1.6rem",jc:"flex-start",direction:"row",tablet_direction:"row"},r.createElement(ee,{ai:"center",jc:"flex-start"},t&&r.createElement($,null,r.createElement(t,null)),r.createElement(V,{as:"span",color:"black-3",size:"var(--text-size-xs)",lh:"1.14",weight:"normal"},n),u&&r.createElement(q,null,r.createElement("img",{src:Y,alt:"Diagonal",width:"16",height:"16"})))))},ne=i.ZP.hr.withConfig({displayName:"divider__Divider",componentId:"sc-1qzam43-0"})(["border:none;width:",";height:",";background-color:var(--color-",");",""],(function(e){return e.width?e.width:"100%"}),(function(e){return e.height?e.height:"1px"}),(function(e){return e.color||"grey-2"}),u.m),re=(0,i.F4)(["0%,20%{color:rgba(0,0,0,0);text-shadow:0.25em 0 0 rgba(0,0,0,0),0.5em 0 0 rgba(0,0,0,0);}40%{color:grey;text-shadow:0.25em 0 0 rgba(0,0,0,0),0.5em 0 0 rgba(0,0,0,0);}60%{text-shadow:0.25em 0 0 grey,0.5em 0 0 rgba(0,0,0,0);}80%,100%{text-shadow:0.25em 0 0 grey,0.5em 0 0 grey;}"]),ie=(i.ZP.span.withConfig({displayName:"dot-loader__InitialLoader",componentId:"siytk0-0"})(["text-align:center;margin-top:-160px;::after{color:grey;content:' .';animation:"," 1s steps(5,end) infinite;font-size:6rem;line-height:1;}"],re),n(9843)),oe=((0,i.ZP)(P.kC).withConfig({displayName:"dropdown__Symbol",componentId:"sc-1abzx73-0"})(["width:fit-content;margin-top:8px;img{width:32px;height:32px;margin-right:0.8rem;@media ","{width:unset;height:36px;}@media ","{width:unset;height:24px;margin-top:4px;}}","{font-weight:normal;font-size:var(--text-size-xs);line-height:1.14;margin-top:8px;@media ","{font-size:14px;}}"],c.Z.tabletL,c.Z.tabletM,g,c.Z.mobileL),i.ZP.ul.withConfig({displayName:"dropdown__DropdownContainer",componentId:"sc-1abzx73-1"})(["list-style:none;position:relative;border:1px solid var(--color-grey-7);cursor:pointer;padding:0;border-radius:4px;height:40px;margin-bottom:",";"," &:hover{border-color:var(--color-grey-5);}"," ",""],(function(e){var t;return null!==(t=e.mb)&&void 0!==t?t:"0"}),(function(e){return e.active&&(0,i.iv)(["border-color:var(--color-green) !important;"])}),(function(e){return e.has_short_name&&(0,i.iv)(["width:auto;min-width:6.5rem;@media ","{top:inherit;width:auto;min-width:8rem;}@media ","{min-width:7rem;}"],c.Z.tabletL,c.Z.mobileL)}),(function(e){return e.error?(0,i.iv)(["border-color:var(--color-red-1) !important;& > label{color:var(--color-red-1) !important;}"]):(0,i.iv)(["border-color:var(--color-grey-7);"])})),i.ZP.div.withConfig({displayName:"dropdown__StyledDiv",componentId:"sc-1abzx73-2"})(["position:relative;top:-30px;"]),i.ZP.li.withConfig({displayName:"dropdown__DropdownSelected",componentId:"sc-1abzx73-3"})(["color:var(--color-grey-6);list-style-position:inside;white-space:nowrap;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;height:100%;font-size:var(--text-size-xs);display:flex;align-items:center;"," @media ","{font-size:14px;}"],(function(e){return e.has_short_name&&(0,i.iv)(["color:var(--color-white);"])}),c.Z.mobileL),i.ZP.li.withConfig({displayName:"dropdown__ListContainer",componentId:"sc-1abzx73-4"})(["position:relative;list-style:none;"]),i.ZP.li.withConfig({displayName:"dropdown__ListItem",componentId:"sc-1abzx73-5"})(["color:var(--color-grey-6);padding:1rem 1.6rem;transition:background-color 0.1s linear,color 0.1s linear;list-style-position:inside;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:var(--text-size-xs);background-color:",";&:hover{background-color:var(--color-grey-6);}&:focus{background-color:var(--color-grey-6);font-weight:bold;}&:focus,&:active{outline:none;}@media ","{font-size:14px;}","{font-weight:normal;font-size:var(--text-size-xs);line-height:1.14;margin-top:8px;color:",";@media ","{font-size:14px;}}"],(function(e){return e.is_selected?"var(--color-grey-6)":"var(--color-white)"}),c.Z.mobileL,g,(function(e){return e.is_selected?"var(--color-red-1)":"var(--color-black-3)"}),c.Z.mobileL),i.ZP.ul.withConfig({displayName:"dropdown__UnorderedList",componentId:"sc-1abzx73-6"})(["z-index:1;list-style:none;margin:0;padding:0;width:100%;position:absolute;left:0;top:0.8rem;border-radius:4px;box-shadow:0 8px 16px 0 rgba(0,0,0,0.16);transition:opacity 0.1s cubic-bezier(0,0,0.38,0.9),max-height 0.25s cubic-bezier(0,0,0.38,0.9);max-height:0;overflow-y:scroll;background-color:var(--color-white);opacity:0;",""],(function(e){return e.open&&(0,i.iv)(["opacity:1;max-height:30rem;"])})),(0,i.ZP)(M.r).withConfig({displayName:"dropdown__Arrow",componentId:"sc-1abzx73-7"})(["position:absolute;right:8px;top:25%;transition:transform 0.2s linear;"," & path{fill:var(--color-black);}"],(function(e){return"true"===e.expanded?"transform: rotate(-180deg);":""})),i.ZP.label.withConfig({displayName:"dropdown__StyledLabel",componentId:"sc-1abzx73-8"})(["color:grey;background:var(--color-white);font-size:var(--text-size-xs);position:absolute;pointer-events:none;left:0.8rem;top:1.2rem;transition:0.25s ease transform;transform:translateZ(0);padding:0 0.4rem;@media ","{font-size:1.6rem;top:1.5rem;}@media ","{font-size:1.5rem;top:1.6rem;}",""],c.Z.tabletL,c.Z.mobileL,(function(e){return e.active&&(0,i.iv)(["color:var(--color-green);transform:translate(-0.6rem,-2.2rem) scale(0.7);@media ","{top:9px;}"],c.Z.tabletL)})),(0,i.ZP)(g).withConfig({displayName:"dropdown__ErrorMessages",componentId:"sc-1abzx73-9"})(["position:absolute;padding-left:0.8rem;font-size:1.2rem;min-height:16px;"]),(0,i.ZP)(g).withConfig({displayName:"dropdown__ContractSizeWrapper",componentId:"sc-1abzx73-10"})(["padding-left:0.8rem;font-size:1.2rem;min-height:16px;position:absolute;cursor:text;color:var(--color-grey-5);@media ","{margin-top:4px;}"],c.Z.tabletL),(0,i.ZP)(g).withConfig({displayName:"dropdown__DefaultOptionText",componentId:"sc-1abzx73-11"})(["color:var(--color-grey-5);"]),i.ZP.input.withConfig({displayName:"dropdown-search__DropdownInput",componentId:"lll8o9-0"})(["color:var(--color-black-3);width:calc(100% - 2px);border:none;white-space:nowrap;overflow:hidden;padding:0 1rem;font-size:var(--text-size-xs);display:flex;align-items:center;justify-content:flex-start;"," &:focus{outline:none;}@media ","{font-size:1.75rem;}@media ","{font-size:1.5rem;}"],(function(e){return e.has_short_name&&(0,i.iv)(["color:var(--color-white);"])}),c.Z.tabletL,c.Z.mobileL),i.ZP.div.withConfig({displayName:"checkbox__CheckboxContainer",componentId:"sc-1a4wwhl-0"})(["display:inline-block;vertical-align:text-bottom;"]),i.ZP.svg.withConfig({displayName:"checkbox__Icon",componentId:"sc-1a4wwhl-1"})(["fill:none;stroke:",";stroke-width:4px;background-color:var(--color-red);visibility:",";"],(function(e){return e.secondary,"var(--color-white)"}),(function(e){return e.checked?"visible":"hidden"})),i.ZP.input.attrs({type:"checkbox"}).withConfig({displayName:"checkbox__HiddenCheckbox",componentId:"sc-1a4wwhl-2"})(["border:0;clip:rect(0 0 0 0);position:absolute;"]),i.ZP.div.withConfig({displayName:"checkbox__StyledCheckbox",componentId:"sc-1a4wwhl-3"})(["display:inline-block;width:1.6rem;height:1.6rem;background:",";border:",";margin-right:0.8rem;@media ","{width:2rem;height:2rem;}"],(function(e){return e.secondary&&e.checked?"var(--color-red)":e.background?e.background:"var(--color-white)"}),(function(e){return e.secondary&&e.checked?"2px solid var(--color-red)":"2px solid var(--color-grey-5)"}),c.Z.mobileL),n(6802)),ae=["alt","className","data","height","loading","width"],ue=i.ZP.div.withConfig({displayName:"query-image__ImageWrapper",componentId:"saxp2k-0"})(["& .gatsby-image-wrapper{width:",";height:",";}"],(function(e){return e.width||"100%"}),(function(e){return e.height})),ce=function(e){var t=e.alt,n=e.className,i=e.data,a=e.height,u=e.loading,c=e.width,s=(0,o.Z)(e,ae),l=(0,oe.d)(i);return i?r.createElement(ue,{width:c,height:a,className:n},r.createElement(oe.G,Object.assign({image:l,alt:t,loading:u},s))):null},se=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"link__StyledLink",componentId:"t3i52f-0"})(["font-size:",";font-weight:",";text-align:",";margin:",";color:var(--color-",");text-decoration:none;&:hover{text-decoration:underline;color:var(--color-red);}",""],(function(e){return e.size||"var(--text-size-sm)"}),(function(e){return e.weight||"normal"}),(function(e){return e.align||"left"}),(function(e){return e.margin||"none"}),(function(e){return e.color||"red"}),(function(e){if(e.has_arrow)return(0,i.iv)(["&::before{content:url(\"data:image/svg+xml;charset=UTF-8, \");vertical-align:middle;display:inline-block;margin-right:",";font-weight:300;text-decoration:none;}"],(function(e){return e.arrow_margin||"0.4rem"}))})),le=n(476);var de="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9Ijk1LjkyJSIgeDI9IjEwMCUiIHkyPSI0LjA4JSIgaWQ9ImEiPjxzdG9wIHN0b3AtY29sb3I9IiNGRjQ0NEYiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjRkY2NDQ0IiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBkPSJNMjEuNSA1YTIuNSAyLjUgMCAxMS0uNjcgNC45MWwtMS43NjIgMi42NDJBNC45OTQgNC45OTQgMCAwMTIwLjk3NSAxNmgyLjA3NWEyLjUgMi41IDAgMTEwIDFoLTIuMDc1YTQuOTk0IDQuOTk0IDAgMDEtMS45MDcgMy40NDhsMS43NjIgMi42NDNBMi41MDIgMi41MDIgMCAwMTI0IDI1LjVhMi41IDIuNSAwIDExLTQuMDY3LTEuOTQ4bC0xLjcxNC0yLjU3QTQuOTggNC45OCAwIDAxMTYgMjEuNWE0Ljk4IDQuOTggMCAwMS0yLjIyLS41MThsLTEuNzEzIDIuNTdhMi41IDIuNSAwIDExLS44OTctLjQ2MWwxLjc2Mi0yLjY0M2E0Ljk5NCA0Ljk5NCAwIDAxLTEuOTA3LTMuNDQ3SDguOTVhMi41IDIuNSAwIDExMC0xaDIuMDc1YTUgNSAwIDAxMS45MDctMy40NUwxMS4xNyA5LjkxQTIuNTAyIDIuNTAyIDAgMDE4IDcuNWEyLjUgMi41IDAgMTE0LjA2NyAxLjk0OGwxLjcxNCAyLjU3QTQuOTggNC45OCAwIDAxMTYgMTEuNWMuNzk3IDAgMS41NS4xODYgMi4yMi41MThsMS43MTMtMi41N0EyLjUgMi41IDAgMDEyMS41IDV6bS0xMSAxOWExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zem0xMSAwYTEuNSAxLjUgMCAxMDAgMyAxLjUgMS41IDAgMDAwLTN6bS02LjE4LTUuMTE4bC0uMDIuMDE4LS4wNzYuMDQ3LTEuNTc3Ljc4OGMuNjYuNDgxIDEuNDc0Ljc2NSAyLjM1My43NjUuODggMCAxLjY5Mi0uMjg0IDIuMzUzLS43NjVsLTEuNTc3LS43ODgtLjA3Ni0uMDQ3YS40OTcuNDk3IDAgMDEtLjAyMy0uMDE4IDEuOTk2IDEuOTk2IDAgMDEtMS4zNTYgMHpNMTYgMTIuNWE0IDQgMCAwMC0zLjEyIDYuNTAybDEuNTQzLS43NzJBMS45OTEgMS45OTEgMCAwMTE0IDE3di0xYTIgMiAwIDExNCAwdjFjMCAuNDY0LS4xNTguODktLjQyMyAxLjIzbDEuNTQ0Ljc3MkE0IDQgMCAwMDE2IDEyLjV6TTYuNSAxNWExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zem0xOSAwYTEuNSAxLjUgMCAxMDAgMyAxLjUgMS41IDAgMDAwLTN6TTE2IDE1YTEgMSAwIDAwLS45OTMuODgzTDE1IDE2djFhMSAxIDAgMDAxLjk5My4xMTdMMTcgMTd2LTFhMSAxIDAgMDAtMS0xem0tNS41LTlhMS41IDEuNSAwIDEwMCAzIDEuNSAxLjUgMCAwMDAtM3ptMTEgMGExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zeiIgZmlsbD0idXJsKCNhKSIvPjwvc3ZnPgo=",fe=n(5190),pe=n(4303),ge=n(4851),he=n(4104),Me=n(2809),me=n(3594),ye=n(2955),je=n(5119);var ve="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjkyLjAxNCUiIHgyPSIxMDAlIiB5Mj0iNy45ODYlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNDQ0RiIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjY0NDQiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0yNyA1YTEgMSAwIDAxMSAxdjIwYTEgMSAwIDAxLTEgMUg1YTEgMSAwIDAxLTEtMVY2YTEgMSAwIDAxMS0xaDIyem0wIDVINXYxNmgyMlYxMHptLTkuMzAzIDQuMDRhLjUuNSAwIDAxLjI5LjU3MWwtLjAyNy4wODYtMyA3YS41LjUgMCAwMS0uOTQ4LS4zMDhsLjAyOC0uMDg2IDMtN2EuNS41IDAgMDEuNjU3LS4yNjN6bS00Ljc1IDIuMjM2YS41LjUgMCAwMS0uMTQ3LjYyNGwtLjA3Ni4wNDdMOS42MTggMTguNWwzLjEwNiAxLjU1M2EuNS41IDAgMDEuMjU2LjU4N2wtLjAzMy4wODRhLjUuNSAwIDAxLS41ODcuMjU2bC0uMDg0LS4wMzMtNC0yYS41LjUgMCAwMS0uMDc4LS44NDZsLjA3OC0uMDQ4IDQtMmEuNS41IDAgMDEuNjcxLjIyM3ptNi4xMDYgMGEuNS41IDAgMDEuNjctLjIyM2w0IDIgLjA4LjA0OGEuNS41IDAgMDEtLjA4Ljg0NmwtNCAyLS4wODMuMDMzYS41LjUgMCAwMS0uNTg3LS4yNTZsLS4wMzMtLjA4NGEuNS41IDAgMDEuMjU3LS41ODdsMy4xMDUtMS41NTMtMy4xMDUtMS41NTMtLjA3Ny0uMDQ3YS41LjUgMCAwMS0uMTQ3LS42MjR6TTI3IDZINXYzaDIyVjZ6bS0yLjUgMWEuNS41IDAgMTEwIDEgLjUuNSAwIDAxMC0xem0tMiAwYS41LjUgMCAxMTAgMSAuNS41IDAgMDEwLTF6bS0yIDBhLjUuNSAwIDExMCAxIC41LjUgMCAwMTAtMXoiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4=",Ne=n(5189),we=n(4158),Ie=n(6308),Le=n(924),be=n(3649),Se=n(8935),De=n(7349),Ae=n(73),xe=n(4958),Ce=n(7289),Ee=n(9645);var Te="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjkxLjk5NCUiIHgyPSIxMDAlIiB5Mj0iOC4wMDYlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNDQ0RiIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjY0NDQiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0xMCAxNmEyIDIgMCAwMTEuOTY2IDEuNjMzYzEuMTU3LS41NDYgMi4zMDUtLjM1NCAzLjY4LjM0MWwuMjEyLjExLjc5OC40MzQuMDY4LjAzNWMuMDQuMDIuMDg5LjAzNy4xNDguMDUybC4xMzYuMDI0LjE3NC4wMTguMjIyLjAxMS40MzcuMDA4LjY4LjAwMy4zODYuMDEyLjEyNC4wMDdjMS4yMi4wNzcgMi4xMDYuNDA4IDIuNjcgMS4xODFhMTMuNiAxMy42IDAgMDAxLjA2NC0uNDQ5bC4yNDYtLjEyMS40NTMtLjI0Ljk5NS0uNTUuODIxLS40NThjLjkzOC0uNDYgMS45NDMtLjE1MiAyLjQ0Ny42MzguNTE4LjgxMy4zMTMgMS44MzMtLjYwNSAyLjQxN2wtLjM2Ny4yMjYtLjQ2NC4yNzItLjk3NS41NDktLjk1My41Mi0xLjM5My43NC0xLjI2NS42Ni0yLjEyOCAxLjA5Yy0uOTkuNTAyLTIuNDM4LjczNy00LjQ0Ni44MTNsLS43MjIuMDItMS4wOS4wMS0xLjU4Ny0uMDA1QTIgMiAwIDAxMTAgMjdINmEyIDIgMCAwMS0yLTJ2LTdhMiAyIDAgMDEyLTJoNHptMCAxSDZhMSAxIDAgMDAtLjk5My44ODNMNSAxOHY3YTEgMSAwIDAwLjg4My45OTNMNiAyNmg0YTEgMSAwIDAwLjk5My0uODgzTDExIDI1di03YTEgMSAwIDAwLS44ODMtLjk5M0wxMCAxN3ptMiAxLjc2VjI1bDEuMzE0LjAwNS45MS0uMDA2LjQ5Ni0uMDExYzIuMDY3LS4wNTcgMy41MjYtLjI3MiA0LjQwNS0uNzE4bDIuMTEyLTEuMDgxIDEuMjU1LS42NTUgMS4zOC0uNzM0Ljk0Mi0uNTEzLjk2LS41NC41ODQtLjM0NS4yMjgtLjE0Yy40NDMtLjI4My41MjMtLjY4Mi4yOTctMS4wMzYtLjIzNS0uMzctLjY5MS0uNTA5LTEuMTYzLS4yNzhsLTEuNTE5Ljg0OC0uNDc2LjI1Ny0uNDE3LjIxNC0uMTE2LjA1N2MtMS45MzQuOTEyLTQuMTg2IDEuNDgyLTcuMTY4IDEuNjVMMTUuNTIgMjJsLS4wNC0xYzIuMDQ1LS4wODIgMy43MjYtLjM0OSA1LjE4NS0uNzgtLjM0LS4yOTctLjgyMy0uNDU0LTEuNDgzLS41MTdsLS4zMS0uMDIyLS40MTUtLjAxMi0uODQ3LS4wMDUtLjM0Ny0uMDA5Yy0uNDY4LS4wMi0uNzItLjA3NS0uOTg3LS4yMDhsLS4zNzEtLjE5OC0uNTE3LS4yODJjLTEuMzgzLS43MzgtMi4zNTctLjg4MS0zLjM4Ny0uMjA4ek0xOS41IDVhNS41IDUuNSAwIDExMCAxMSA1LjUgNS41IDAgMDEwLTExem0wIDFhNC41IDQuNSAwIDEwMCA5IDQuNSA0LjUgMCAwMDAtOXptMCAxYS41LjUgMCAwMS41LjVWOGguNWEuNS41IDAgMDEuMDkuOTkyTDIwLjUgOUgxOXYxaDEuNWEuNS41IDAgMDEuNDkyLjQxbC4wMDguMDl2MmEuNS41IDAgMDEtLjQxLjQ5MkwyMC41IDEzSDIwdi41YS41LjUgMCAwMS0uNDEuNDkyTDE5LjUgMTRhLjUuNSAwIDAxLS40OTItLjQxTDE5IDEzLjVWMTNoLS41YS41LjUgMCAwMS0uMDktLjk5MkwxOC41IDEySDIwdi0xaC0xLjVhLjUuNSAwIDAxLS40OTItLjQxTDE4IDEwLjV2LTJhLjUuNSAwIDAxLjQxLS40OTJMMTguNSA4aC41di0uNWEuNS41IDAgMDEuNS0uNXoiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4K",ze=n(7572);var Oe=n(7079);var ke=n(1527),_e=n(395),Pe=n(4565),Ue=n(8611);var Ye=n(8802),Ze=n(9855),Re=n(278),Qe=i.ZP.section.withConfig({displayName:"off-canvas-menu__OffCanvasMenu",componentId:"sc-1obzzaa-0"})(["position:fixed;background-color:var(--color-white);top:7.2rem;height:100vh;width:253px;opacity:1;overflow:scroll;transition:transform 0.4s;box-shadow:0 16px 20px 0 rgba(0,0,0,0.1);left:-254px;",";"],(function(e){return e.is_canvas_menu_open&&"transform: translateX(254px)"})),We=(0,i.ZP)(Qe).withConfig({displayName:"off-canvas-menu__OffCanvasMenuSecondary",componentId:"sc-1obzzaa-1"})(["top:10rem;"]),Ge=i.ZP.span.withConfig({displayName:"off-canvas-menu__Span",componentId:"sc-1obzzaa-2"})(["width:100%;"]),Be=i.ZP.span.withConfig({displayName:"off-canvas-menu__SpanSvg",componentId:"sc-1obzzaa-3"})(["& > img{width:16px;height:16px;}"]),Ve=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"off-canvas-menu__StyledLink",componentId:"sc-1obzzaa-4"})(["color:var(--color-black-3);margin-top:18px;font-size:14px;text-decoration:none;display:flex;align-items:center;& > div > img{width:24px;height:24px;margin-right:8px;}&:first-child{margin-top:16px;}"]),He=i.ZP.div.withConfig({displayName:"off-canvas-menu__SvgWrapper",componentId:"sc-1obzzaa-5"})(["width:24px;height:24px;margin-right:8px;"]),Fe=i.ZP.div.withConfig({displayName:"off-canvas-menu__OffCanvasMenuContainer",componentId:"sc-1obzzaa-6"})(["display:flex;flex-direction:column;padding:0 1.6rem 21rem;div{a:first-child{margin-top:0;}}"]),Je={border:"none",padding:"0",boxShadow:"none",flexDirection:"row"},Xe={marginLeft:"8px",paddingBottom:"16px",flexDirection:"column",display:"flex"},qe=function(e){var t=r.useContext(Ye.c).is_eu_country,n=(0,r.useRef)(),i=function(){e.closeOffCanvasMenu()};return(0,ie.O)(n,e.closeOffCanvasMenu,null,"mousedown"),r.createElement(Qe,{is_canvas_menu_open:e.is_canvas_menu_open,ref:n,is_eu_country:t},r.createElement(Fe,null,r.createElement(L,null,r.createElement(A,{header:(0,U.NC)("Trade"),header_style:Je,style:Xe},!e.is_ppc&&r.createElement(r.Fragment,null,r.createElement(g,{color:"grey-5",mb:"8px",size:"14px"},(0,U.NC)("Trade types")),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"CFDs",icon:function(){return r.createElement("img",{src:De.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade with leverage and tight spreads for better returns on successful trades."}),title:r.createElement(U.Xx,{translate_text:"CFDs"}),onClick:i,to:"/trade-types/cfds/"})),!t&&r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Options",icon:function(){return r.createElement("img",{src:xe.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Earn fixed payouts by predicting an asset's price movement."}),title:r.createElement(U.Xx,{translate_text:"Options"}),onClick:i,to:"/trade-types/options/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Multipliers",icon:function(){return r.createElement("img",{src:Ae.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Combine the upside of CFDs with the simplicity of options."}),title:r.createElement(U.Xx,{translate_text:"Multipliers"}),onClick:i,to:"/trade-types/multiplier/"}))),r.createElement(ne,{m:"16px 0",width:"100%",height:"1px",color:"grey-8"}),r.createElement(g,{color:"grey-5",mb:"8px",size:"14px"},(0,U.NC)("Trading platforms")),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DMT5",icon:function(){return r.createElement("img",{src:Ne.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform."}),title:r.createElement(U.Xx,{translate_text:"DMT5"}),onClick:i,to:e.is_ppc_redirect?"/landing/dmt5/":"/dmt5/"})),!t&&r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Derivx",icon:function(){return r.createElement("img",{src:we.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade FX and CFDs on a customisable, easy-to-use trading platform."}),title:r.createElement(U.Xx,{translate_text:"Deriv X"}),onClick:i,to:"/derivx/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DTrader",icon:function(){return r.createElement("img",{src:Ie.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"A whole new trading experience on a powerful yet easy to use platform."}),title:r.createElement(U.Xx,{translate_text:"DTrader"}),onClick:i,to:"/dtrader/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"SmartTrader",icon:function(){return r.createElement("img",{src:Oe.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade the world’s markets with our popular user-friendly platform."}),title:r.createElement(U.Xx,{translate_text:"SmartTrader"}),onClick:i,to:"trading",type:"smart_trader",external:"true",target:"_blank",otherLinkProps:{rel:"noopener noreferrer"}})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DBot",icon:function(){return r.createElement("img",{src:ye.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Automated trading at your fingertips. No coding needed."}),title:r.createElement(U.Xx,{translate_text:"DBot"}),onClick:i,to:"/dbot/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"BinaryBot",icon:function(){return r.createElement("img",{src:je.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users."}),title:r.createElement(U.Xx,{translate_text:"BinaryBot"}),onClick:i,to:"https://bot.deriv.com/",external:"true",target:"_blank",otherLinkProps:{rel:"noopener noreferrer"}}))),r.createElement(A,{header:"Markets",header_style:Je,style:Xe},r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Forex",icon:function(){return r.createElement("img",{src:Le.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade the world’s largest financial market with popular forex pairs."),title:(0,U.NC)("Forex"),onClick:i,to:"/markets/forex/"})),!e.is_ppc&&r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Synthetic indices",icon:function(){return r.createElement("img",{src:Ue.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Enjoy synthetic markets that emulate real-world market movements."),title:(0,U.NC)("Synthetic indices"),onClick:i,to:"/markets/synthetic/"})),r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Stocks & indices",icon:function(){return r.createElement("img",{src:ke.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Predict broader market trends and diversify your risk with stocks & indices."),title:(0,U.NC)("Stocks & indices"),onClick:i,to:"/markets/stock/"})),r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Cryptocurrencies",icon:function(){return r.createElement("img",{src:_e.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade with leverage on the price movement of popular crypto-fiat pairs."),title:(0,U.NC)("Cryptocurrencies"),onClick:i,to:"/markets/cryptocurrencies/"})),r.createElement(P.kC,null,r.createElement(X,{aria_label:"Commodities",icon:function(){return r.createElement("img",{src:he.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade natural resources that are central to the world's economy."),title:(0,U.NC)("Commodities"),onClick:i,to:"/markets/commodities/"}))),r.createElement(A,{header:(0,U.NC)("About us"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/story/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Pe.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Our story"))),r.createElement(Ve,{to:"/leadership/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Se.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Our leadership"))),r.createElement(Ve,{to:"/partners/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ce.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Partnership programmes"))),r.createElement(Ve,{to:"/why-choose-us/",onClick:i},r.createElement("div",null,r.createElement("img",{src:ge.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Why choose us?"))),r.createElement(Ve,{to:"/contact_us/",onClick:i},r.createElement("div",null,r.createElement("img",{src:me.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Contact us"))),r.createElement(Ve,{to:"/careers/",onClick:i},r.createElement("div",null,r.createElement("img",{src:pe.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Careers")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"})))),r.createElement(A,{header:(0,U.NC)("Resources"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/help-centre/",onClick:i},r.createElement("div",null,r.createElement("img",{src:be.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Help centre"))),r.createElement(Ve,{to:"",type:"community",external:"true",target:"_blank",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:Me.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Community")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"}))),r.createElement(Ve,{to:"/trader-tools/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ze.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Traders’ tools"))),r.createElement(Ve,{to:"/payment-methods/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ee.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Payment methods"))),r.createElement(Ve,{to:"/dmt5-trading-signals/#signal-subscriber/",onClick:i},r.createElement("div",null,r.createElement(He,null,r.createElement("img",{src:Re.Z,alt:"",width:"24",height:"24"}))),r.createElement("span",null,(0,U.NC)("DMT5 Signals"))),r.createElement(Ve,{to:le.bF,external:"true",target:"_blank",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iODcuODA2JSIgeTI9IjEyLjE5NCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRjQ0NEYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNGRjY0NDQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBkPSJNOC43NTcgMTUuNzc0YS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnptNiAwYS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnptNiAwYS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnpNMTIgNC41YTQuNSA0LjUgMCAxMTAgOSA0LjUgNC41IDAgMDEwLTl6bTAgLjc1YTMuNzUgMy43NSAwIDEwMCA3LjUgMy43NSAzLjc1IDAgMDAwLTcuNXptMi44OSAyLjM2Yy4xMy4xMy4xNDUuMzMyLjA0NC40NzhsLS4wNDQuMDUyLTMgM2EuMzc1LjM3NSAwIDAxLS40NzguMDQ0bC0uMDUyLS4wNDQtMS41LTEuNWEuMzc1LjM3NSAwIDAxLjQ3OC0uNTc0bC4wNTIuMDQ0IDEuMjM1IDEuMjM1TDE0LjM2IDcuNjFhLjM3NC4zNzQgMCAwMS41MyAweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+",alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Status page")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"}))),r.createElement(Ve,{to:"/academy/",onClick:i},r.createElement("div",null,r.createElement("img",{src:fe.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Academy")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"})))),r.createElement(A,{header:(0,U.NC)("Legal"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/regulatory/",onClick:i},r.createElement("div",null,r.createElement("img",{src:ze.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Regulatory information"))),r.createElement(Ve,{to:"/terms-and-conditions/#clients",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iNy45ODYlIiB4Mj0iOTIuMDE0JSIgeTE9IjEwMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJiIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iNTAuNzgxJSIgeTI9IjQ5LjIxOSUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRjQ0NEYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNGRjY0NDQiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0iYyIgeDE9IjAlIiB4Mj0iMTAwJSIgeTE9IjUxLjAyJSIgeTI9IjQ4Ljk4JSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJkIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iNTIlIiB5Mj0iNDglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY0NDRGIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2NDQ0Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImUiIHgxPSIwJSIgeDI9IjEwMCUiIHkxPSI1NS41NTYlIiB5Mj0iNDQuNDQ0JSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMyAzKSI+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjxwYXRoIGZpbGw9InVybCgjYSkiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTkuMDIgMGMuNTA1IDAgLjk4Ni4yMDMgMS4zMzcuNTZsLjA5My4xMDEgMS4zNDggMS41ODloMS42ODVjLjM1OC4wMDYuNjk5LjE0Ljk2Mi4zNzZsLjEwNy4xMDhMMTYuNzkgNS4yNWguMDg1di4wOTZsLjAyOC4wMzFjLjE5My4yMi4zMTIuNDkyLjM0Ljc3OGwuMDA3LjE0M3YxMC4yOTZjMCAuNzc0LS42MzYgMS40LTEuNDIzIDEuNDA2SDYuNjgyYy0uNzg5IDAtMS40MzItLjYyOC0xLjQzMi0xLjQwNnYtLjg0NEgyLjE2N2ExLjQxOCAxLjQxOCAwIDAxLTEuNDEyLTEuMzFsLS4wMDUtLjExVjEuNDQ3QTEuNDEgMS40MSAwIDAxMi4wMzMuMDA2TDIuMTU5IDBIOS4wMnptNC40NTcgM0g2LjY4MkEuNjcuNjcgMCAwMDYgMy42NTZ2MTIuOTM4YzAgLjM2LjMwMy42NTYuNjgyLjY1Nmg5LjE0MmEuNjcuNjcgMCAwMC42NzYtLjY1NlY2LjI5NkEuNjMyLjYzMiAwIDAwMTYuNDI4IDZoLTEuNDM2Yy0uNzI3IDAtMS4zNDUtLjQ4OS0xLjQwNC0xLjEyOGwtLjAwNS0uMTAyLS4wNjktMS43NjZMMTMuNDc3IDN6TTkgLjc1SDIuMTU5YS42NTcuNjU3IDAgMDAtLjY1NS41OTVsLS4wMDQuMDkzVjE0LjMzYS42Ny42NyAwIDAwLjU4NC42NjVsLjA4My4wMDVINS4yNVYzLjY1NmMwLS43MzMuNTctMS4zMzIgMS4yOTQtMS40bC4xMzgtLjAwNkg5Vi43NXptNS4yODYgMi44MTNsLjA0NyAxLjE5MmMwIC4yMzYuMjM3LjQ1NS41NjcuNDlsLjA5Mi4wMDVoLjc5NGwtMS41LTEuNjg3ek05Ljc1MSAxLjAyTDkuNzUgMi4yNWgxLjA2NWwtLjkzNy0xLjEwM2ExLjE3MSAxLjE3MSAwIDAwLS4xMjctLjEyN3oiLz48cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iNy44NzUiIGZpbGw9InVybCgjYikiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iNS4yNSIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iOS4zNzUiIGZpbGw9InVybCgjYykiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iMTAuODc1IiBmaWxsPSJ1cmwoI2IpIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMzc1Ii8+PHJlY3Qgd2lkdGg9IjUuMjUiIGhlaWdodD0iMSIgeD0iOC42MjUiIHk9IjEyLjM3NSIgZmlsbD0idXJsKCNjKSIgZmlsbC1ydWxlPSJub256ZXJvIiByeD0iLjM3NSIvPjxyZWN0IHdpZHRoPSIzLjc1IiBoZWlnaHQ9IjEiIHg9IjguNjI1IiB5PSIxMy44NzUiIGZpbGw9InVybCgjZCkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iNS42MjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iNy4xMjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iOC42MjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iMTAuMTI1IiBmaWxsPSJ1cmwoI2UpIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMzc1Ii8+PHJlY3Qgd2lkdGg9IjIuMjUiIGhlaWdodD0iMSIgeD0iMy4zNzUiIHk9IjExLjYyNSIgZmlsbD0idXJsKCNlKSIgZmlsbC1ydWxlPSJub256ZXJvIiByeD0iLjM3NSIvPjwvZz48L3N2Zz4K",alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Terms and conditions"))),r.createElement(Ve,{to:"/responsible/",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iMTAwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY0NDRGIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2NDQ0Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMyAzaDE4djE4SDN6Ii8+PHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTYuNjUgMEMxNy4zOTYgMCAxOCAuNjA0IDE4IDEuMzV2MTIuNmExLjM1IDEuMzUgMCAwMS0xLjM1IDEuMzVIMTEuN3YxLjhoMi4yNWEuNDUuNDUgMCAwMS4wOC44OTNsLS4wOC4wMDdoLTkuOWEuNDUuNDUgMCAwMS0uMDgtLjg5M2wuMDgtLjAwN0g2LjN2LTEuOEgxLjM1YTEuMzUgMS4zNSAwIDAxLTEuMzQ0LTEuMjJMMCAxMy45NVYxLjM1QzAgLjYwNC42MDQgMCAxLjM1IDB6TTEwLjggMTUuM0g3LjJ2MS44aDMuNnYtMS44em02LjMtMi43SC45djEuMzVjMCAuMjIuMTYuNDA1LjM3LjQ0M2wuMDguMDA3aDE1LjNhLjQ1LjQ1IDAgMDAuNDUtLjQ1VjEyLjZ6TTE2LjY1LjlIMS4zNWEuNDUuNDUgMCAwMC0uNDUuNDVWMTEuN2gxNi4yVjEuMzVjMC0uMjItLjE2LS40MDUtLjM3LS40NDNMMTYuNjUuOXptLTMuNDIgNC41MzhsLjA3LjAzOCAyLjcgMS44YS40NS40NSAwIDAxLS40MjguNzg3bC0uMDcyLS4wMzktMi4yMS0xLjQ3Mi0uNzEzIDIuMTRhLjQ1LjQ1IDAgMDEtLjU1My4yOWwtLjA3NS0uMDMtMS40NDUtLjcyMi0xLjU4IDIuMzdhLjQ1LjQ1IDAgMDEtLjU1Mi4xNjNsLS4wNzItLjAzOWEuNDUuNDUgMCAwMS0uMTYzLS41NTJsLjAzOS0uMDcyIDEuOC0yLjdhLjQ0OS40NDkgMCAwMS40OTctLjE4M2wuMDc4LjAzIDEuMzM1LjY2OC43MzctMi4yMDdhLjQ1LjQ1IDAgMDEuNjA3LS4yN3pNNS4zMTMgMS44OUExLjQ5NSAxLjQ5NSAwIDAxNi43OSAzLjI1NmwuMDA1LjEyOC0uMDAxLjc2NC45NjQuMDAxdjMuMzJjMCAuNTA4LS4yMTIuOTk0LS41ODYgMS4zNS0uMzcyLjM1My0uODczLjU1LTEuMzk0LjU1aC0uOTk5Yy0xLjA5NSAwLTEuOTg5LS44NS0xLjk4OS0xLjkwOFY0LjE0OWwxLjAyNS0uMDAxLjAwMS0uNzY3Yy4wMDYtLjgyLjY3LTEuNDg1IDEuNDk3LTEuNDkxem0xLjcyNSAyLjk3OUgzLjUxdjIuNTkyYzAgLjYxMy41IDEuMTI1IDEuMTQ2IDEuMTgzbC4xMjMuMDA1aC45OTlhMS4zIDEuMyAwIDAwLjg5Ny0uMzUyYy4yMzMtLjIyMS4zNjMtLjUxOS4zNjMtLjgyOHYtMi42ek00LjYzOSA1Ljk2NmEuNzI4LjcyOCAwIDAxMS4zOTEuMzI1LjcxOS43MTkgMCAwMS0uMjYxLjU2N3YuNjQ4YS40NS40NSAwIDExLS45IDB2LS42NDhhLjcyOC43MjggMCAwMS0uMjMtLjg5MnptLjY3NC0zLjM1NmEuNzgyLjc4MiAwIDAwLS43Ny42NzdsLS4wMDcuMDk3LS4wMDEuNzY0aDEuNTM5bC4wMDEtLjc2NGEuNzczLjc3MyAwIDAwLS43NjItLjc3NHoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiLz48L2c+PC9zdmc+Cg==",alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Secure and responsible trading")))),r.createElement(A,{header:(0,U.NC)("Partner"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/partners/affiliate-ib/",onClick:i},r.createElement("div",null,r.createElement("img",{src:de,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Affiliates and IBs"))),r.createElement(Ve,{to:"/partners/payment-agent/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Te,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Payment agents"))),r.createElement(Ve,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:ve,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("API")))))))},Ke=function(e){var t=r.useContext(Ye.c).is_eu_country,n=(0,r.useRef)(),i=function(){e.closeOffCanvasMenu()},o=function(t){n.current.contains(t.target)||e.closeOffCanvasMenu()};return(0,r.useEffect)((function(){return document.addEventListener("mousedown",o,!1),function(){document.removeEventListener("mousedown",o,!1)}}),[]),r.createElement(We,{is_canvas_menu_open:e.is_canvas_menu_open,ref:n,is_eu_country:t},r.createElement(Fe,null,r.createElement(Ve,{to:"/partners/affiliate-ib/",onClick:i},r.createElement("div",null,r.createElement("img",{src:de,alt:"affiliate ib",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Affiliates and IBs"))),r.createElement(Ve,{to:"/partners/payment-agent/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Te,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Payment agents"))),r.createElement(Ve,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:ve,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("API")))))},$e=function(e){void 0===e&&(e=!1);var t=(0,r.useState)(e),n=t[0],i=t[1];return[n,function(){return i(!0)},function(){return i(!1)}]},et=(n(3249),(0,i.ZP)(P.xu).withConfig({displayName:"side-tab__StyledSideTab",componentId:"sc-1by0g10-0"})(["padding:0;display:flex;@media ","{justify-content:center;flex-direction:column;width:100%;}"],c.Z.tabletL),i.ZP.ol.withConfig({displayName:"side-tab__TabList",componentId:"sc-1by0g10-1"})(["width:",";list-style:none;"," @media ","{width:100%;}"],(function(e){return e.tab_width||"38.4rem"}),(function(e){return e.is_sticky&&(0,i.iv)(["position:sticky;height:fit-content;top:13rem;"])}),c.Z.tabletL),i.ZP.div.withConfig({displayName:"side-tab__TabContent",componentId:"sc-1by0g10-2"})(["flex:1;"]),i.ZP.li.withConfig({displayName:"side-tab__StyledTab",componentId:"sc-1by0g10-3"})(["cursor:pointer;width:38rem;margin:auto;padding:3px 0 3px 16px;transform:translateX(-16px);&.tab-active,&:hover{border-left:4px red solid;}& > p{color:var(--color-black-3);opacity:",";font-size:",";max-width:38.4rem;line-height:",";:hover{opacity:1;}}&.tab-active > p{opacity:1;}"],(function(e){var t=e.opacity;return null!=t?t:"0.32"}),(function(e){return e.font_size||"var(--text-size-s)"}),(function(e){var t=e.line_height;return null!=t?t:"30px"})),(0,i.iv)(["font-size:var(--text-size-m);color:var(--color-red);"])),tt=(i.ZP.li.withConfig({displayName:"side-tab__StyledDropDown",componentId:"sc-1by0g10-4"})(["padding:1rem 0;border-bottom:1px solid var(--color-red);display:flex;justify-content:space-between;align-items:center;","{","}"],g,et),i.ZP.div.withConfig({displayName:"side-tab__ItemWrapper",componentId:"sc-1by0g10-5"})(["display:flex;flex-direction:row;margin-bottom:1.4rem;"]),i.ZP.div.withConfig({displayName:"default-tab__TabContent",componentId:"zchzeg-0"})(["flex:1;width:100%;"])),nt=i.ZP.button.withConfig({displayName:"default-tab__TabButton",componentId:"zchzeg-1"})(["z-index:2;height:auto;padding:8px 24px 10px;display:flex;align-items:center;justify-content:center;cursor:pointer;background:transparent;outline:none;transition:border-color 0.2s ease-in;border:none;border-bottom:2px solid var(--color-grey-2);white-space:nowrap;@media ","{width:",";}"," &:hover,&:focus,&:active{border-bottom:2px solid ",";}"],c.Z.laptopM,(function(e){return e.mobile_tab_button_underline_length?e.mobile_tab_button_underline_length:"unset"}),(function(e){return e.selected&&(0,i.iv)(["border-color:var(--color-red);","{font-weight:bold;}"],g)}),(function(e){return e.selected?"var(--color-red)":"var(--color-red-2)"})),rt=i.ZP.div.withConfig({displayName:"default-tab__TabList",componentId:"zchzeg-2"})(["display:flex;width:100%;justify-content:",";position:relative;overflow:auto;::-webkit-scrollbar{display:none;}-ms-overflow-style:none;scrollbar-width:none;@media ","{justify-content:",";}@media ","{justify-content:",";}"],(function(e){return e.jc?e.jc:"center"}),c.Z.mobileL,(function(e){return e.jc_mobileL?e.jc_mobileL:"space-between"}),c.Z.laptopM,(function(e){return e.jc_laptopM?e.jc_laptopM:"center"})),it=i.ZP.div.withConfig({displayName:"default-tab__LineDivider",componentId:"zchzeg-3"})(["bottom:0;position:absolute;height:2px;width:",";background:var(--color-grey-2);z-index:1;"],(function(e){return e.line_divider_length?e.line_divider_length:"100%"})),ot=i.ZP.div.withConfig({displayName:"default-tab__Content",componentId:"zchzeg-4"})(["flex:1;width:100%;"]),at=(0,i.ZP)(g).withConfig({displayName:"default-tab__TextWrapper",componentId:"zchzeg-5"})(["text-align:center;font-size:var(--text-size-m);@media ","{font-size:",";}@media ","{font-size:",";}"],c.Z.tabletS,(function(e){var t=e.font_size;return null!=t?t:"var(--text-size-sm)"}),c.Z.mobileM,(function(e){var t=e.font_size;return null!=t?t:"var(--text-size-s)"})),ut=function(e){var t=e.children,n=e.route_from,i=e.tab_list,o=e.jc,a=e.jc_mobileL,u=e.jc_laptopM,c=e.line_divider_length,s=e.mobile_tab_button_underline_length,l=e.has_no_query,d=(0,r.useState)(0),f=d[0],p=d[1],g=l?function(e){var t=(0,r.useState)(e[0]);return[t[0],t[1]]}(i):function(e){var t=(0,r.useState)((0,C.FK)()&&(0,C.Vu)(e,(0,C.FK)())?(0,C.FK)():e[0]),n=t[0],i=t[1];return(0,r.useEffect)((function(){(0,C.FK)()&&(0,C.Vu)(e,(0,C.FK)())?(i((0,C.FK)()),(0,C.SM)()):(0,C.oN)(n)}),[]),(0,r.useEffect)((function(){(0,C.FK)()!==n&&(0,C.jU)()&&(0,C.oN)(n)}),[n]),(0,r.useEffect)((function(){(0,C.FK)()!==n&&(0,C.Vu)(e,(0,C.FK)())?(i((0,C.FK)()),(0,C.SM)()):(0,C.Vu)(e,(0,C.FK)())||(0,C.Bv)()}),[(0,C.FK)()]),[n,i]}(i),h=g[0],M=g[1];return(0,r.useEffect)((function(){p(i.indexOf(h))}),[h]),r.createElement(P.kC,{direction:"column"},r.createElement(rt,{role:"tablist",jc:o,jc_mobileL:a,jc_laptopM:u,line_divider_length:c},r.Children.map(t,(function(e,t){var o=e.props.label;return r.createElement(nt,{role:"tab",selected:f===t,"aria-selected":f===t?"true":"false",onClick:function(){return M(i[t])},mobile_tab_button_underline_length:s},r.createElement(at,{font_size:"markets"===n?"24px":void 0},o))})),r.createElement(it,{line_divider_length:c})),r.createElement(ot,null,r.Children.map(t,(function(e,t){return f===t?e:void 0}))))};ut.Panel=function(e){var t=e.children;return r.createElement(tt,{role:"tabpanel",tabindex:"0"},t)};var ct=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"localized-link-text__LocalizedLinkText",componentId:"sc-1rtd7wi-0"})([""," font-weight:",";font-size:",";text-decoration:none;cursor:pointer;&:hover{color:var(--color-red);text-decoration:underline;}@media ","{font-size:",";}"],p,(function(e){return e.weight||"normal"}),(function(e){return e.size||"1.6rem"}),c.Z.tabletL,(function(e){return e.size||"16px"})),st=["children"],lt=["children"],dt=i.ZP.span.withConfig({displayName:"timeline__Checkmark",componentId:"bzs07x-0"})(["display:inline-block;width:22px;height:22px;transform:rotate(45deg);&::before{content:'';position:absolute;width:2px;height:9px;background-color:",";left:11px;top:6px;}&::after{content:'';position:absolute;width:4px;height:2px;background-color:",";left:8px;top:13px;}"],(function(e){return e.color?e.color:"var(--color-white)"}),(function(e){return e.color?e.color:"var(--color-white)"})),ft=i.ZP.div.withConfig({displayName:"timeline__ContentWrapper",componentId:"bzs07x-1"})(["margin-top:0;margin-left:2rem;"]),pt=i.ZP.div.withConfig({displayName:"timeline__OvalWrapper",componentId:"bzs07x-2"})(["width:24px;height:24px;line-height:2.75rem;background-color:",";border-radius:50%;text-align:center;margin-right:0.8rem;position:absolute;padding-left:1px;left:-13px;"],(function(e){return e.color?e.color:"var(--color-red)"})),gt=i.ZP.div.withConfig({displayName:"timeline__FlexWrapper",componentId:"bzs07x-3"})(["display:flex;border-left:",";position:relative;padding-bottom:",";"],(function(e){return e.is_border?"var(--color-red) dashed 1px":"unset"}),(function(e){return e.pb?e.pb:"4rem"})),ht=function(){return r.createElement(pt,null,r.createElement(dt,null))},Mt=function(e){var t=e.children,n=(0,o.Z)(e,st);return r.createElement("div",n,t.map((function(e,n){return r.createElement(gt,{key:n,is_border:t.length!==n+1},r.createElement(ht,null),r.createElement(ft,null,r.createElement("div",null,e)))})))},mt=function(e){var t=e.children,n=(0,o.Z)(e,lt);return r.createElement("div",n,t)};Mt.Item=mt;i.ZP.ul.withConfig({displayName:"lists__Ul",componentId:"sc-1nquwra-0"})(["list-style-type:disc;font-size:var(--text-size-s);padding-left:2rem;color:var(--color-black);"]),i.ZP.li.withConfig({displayName:"lists__Li",componentId:"sc-1nquwra-1"})(["margin-bottom:0.8rem;&:last-child{margin-bottom:0;}"]);var yt,jt=n(4530);function vt(){return(vt=Object.assign||function(e){for(var t=1;t0?c:n?[n]:[]},t.I=function(e,t,n){return r.reduce((function(n,r){return r.plugin[e]?n.then((function(){return r.plugin[e](t,r.options)})):n}),Promise.resolve())}},8110:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var r=function(e){return e=e||Object.create(null),{on:function(t,n){(e[t]||(e[t]=[])).push(n)},off:function(t,n){e[t]&&e[t].splice(e[t].indexOf(n)>>>0,1)},emit:function(t,n){(e[t]||[]).slice().map((function(e){e(n)})),(e["*"]||[]).slice().map((function(e){e(t,n)}))}}}()},2257:function(e,t,n){"use strict";n.d(t,{UD:function(){return f},Cj:function(){return g},GA:function(){return p},DS:function(){return d}});var r=n(2098),i=n(1578),o=function(e){return void 0===e?e:"/"===e?"/":"/"===e.charAt(e.length-1)?e.slice(0,-1):e},a=n(5166),u=new Map,c=[],s=function(e){var t=decodeURIComponent(e);return(0,i.Z)(t,decodeURIComponent("/move-to-deriv")).split("#")[0].split("?")[0]};function l(e){return e.startsWith("/")||e.startsWith("https://")||e.startsWith("http://")?e:new URL(e,window.location.href+(window.location.href.endsWith("/")?"":"/")).pathname}var d=function(e){c=e},f=function(e){var t=h(e),n=c.map((function(e){var t=e.path;return{path:e.matchPath,originalPath:t}})),i=(0,r.pick)(n,t);return i?o(i.route.originalPath):null},p=function(e){var t=h(e),n=c.map((function(e){var t=e.path;return{path:e.matchPath,originalPath:t}})),i=(0,r.pick)(n,t);return i?i.params:{}},g=function e(t){var n=s(l(t));if(u.has(n))return u.get(n);var r=(0,a.J)(t);if(r)return e(r.toPath);var i=f(n);return i||(i=h(t)),u.set(n,i),i},h=function(e){var t=s(l(e));return"/index.html"===t&&(t="/"),t=o(t)}},5444:function(e,t,n){"use strict";n.r(t),n.d(t,{Link:function(){return i.ZP},withAssetPrefix:function(){return i.mc},withPrefix:function(){return i.dq},graphql:function(){return p},parsePath:function(){return i.cP},navigate:function(){return i.c4},useScrollRestoration:function(){return o.p2},StaticQueryContext:function(){return s},StaticQuery:function(){return d},PageRenderer:function(){return u.a},useStaticQuery:function(){return f},prefetchPathname:function(){return c}});var r=n(7294),i=n(8037),o=n(9679),a=n(861),u=n.n(a),c=n(8741).ZP.enqueue,s=r.createContext({});function l(e){var t=e.staticQueryData,n=e.data,i=e.query,o=e.render,a=n?n.data:t[i]&&t[i].data;return r.createElement(r.Fragment,null,a&&o(a),!a&&r.createElement("div",null,"Loading (StaticQuery)"))}var d=function(e){var t=e.data,n=e.query,i=e.render,o=e.children;return r.createElement(s.Consumer,null,(function(e){return r.createElement(l,{data:t,query:n,render:i||o,staticQueryData:e})}))},f=function(e){var t;r.useContext;var n=r.useContext(s);if(isNaN(Number(e)))throw new Error("useStaticQuery was called with a string but expects to be called using `graphql`. Try this:\n\nimport { useStaticQuery, graphql } from 'gatsby';\n\nuseStaticQuery(graphql`"+e+"`);\n");if(null!==(t=n[e])&&void 0!==t&&t.data)return n[e].data;throw new Error("The result of this StaticQuery could not be fetched.\n\nThis is likely a bug in Gatsby and if refreshing the page does not fix it, please open an issue in https://github.com/gatsbyjs/gatsby/issues")};function p(){throw new Error("It appears like Gatsby is misconfigured. Gatsby related `graphql` calls are supposed to only be evaluated at compile time, and then compiled away. Unfortunately, something went wrong and the query was left in the compiled code.\n\nUnless your site has a complex or custom babel/Gatsby configuration this is likely a bug in Gatsby.")}},8741:function(e,t,n){"use strict";n.d(t,{uQ:function(){return l},kL:function(){return y},ZP:function(){return N},hs:function(){return w},jN:function(){return v},N1:function(){return j}});var r=n(1788),i=n(18),o=function(e){if("undefined"==typeof document)return!1;var t=document.createElement("link");try{if(t.relList&&"function"==typeof t.relList.supports)return t.relList.supports(e)}catch(e){return!1}return!1}("prefetch")?function(e,t){return new Promise((function(n,r){if("undefined"!=typeof document){var i=document.createElement("link");i.setAttribute("rel","prefetch"),i.setAttribute("href",e),Object.keys(t).forEach((function(e){i.setAttribute(e,t[e])})),i.onload=n,i.onerror=r,(document.getElementsByTagName("head")[0]||document.getElementsByName("script")[0].parentNode).appendChild(i)}else r()}))}:function(e){return new Promise((function(t,n){var r=new XMLHttpRequest;r.open("GET",e,!0),r.onload=function(){200===r.status?t():n()},r.send(null)}))},a={},u=function(e,t){return new Promise((function(n){a[e]?n():o(e,t).then((function(){n(),a[e]=!0})).catch((function(){}))}))},c=n(8110),s=n(2257),l={Error:"error",Success:"success"},d=function(e){return e&&e.default||e},f=function(e){return"/move-to-deriv/page-data/"+("/"===e?"index":function(e){return(e="/"===e[0]?e.slice(1):e).endsWith("/")?e.slice(0,-1):e}(e))+"/page-data.json"};function p(e,t){return void 0===t&&(t="GET"),new Promise((function(n,r){var i=new XMLHttpRequest;i.open(t,e,!0),i.onreadystatechange=function(){4==i.readyState&&n(i)},i.send(null)}))}var g,h=function(e,t){void 0===t&&(t=null);var n={componentChunkName:e.componentChunkName,path:e.path,webpackCompilationHash:e.webpackCompilationHash,matchPath:e.matchPath,staticQueryHashes:e.staticQueryHashes};return{component:t,json:e.result,page:n}},M=function(){function e(e,t){this.inFlightNetworkRequests=new Map,this.pageDb=new Map,this.inFlightDb=new Map,this.staticQueryDb={},this.pageDataDb=new Map,this.prefetchTriggered=new Set,this.prefetchCompleted=new Set,this.loadComponent=e,(0,s.DS)(t)}var t=e.prototype;return t.memoizedGet=function(e){var t=this,n=this.inFlightNetworkRequests.get(e);return n||(n=p(e,"GET"),this.inFlightNetworkRequests.set(e,n)),n.then((function(n){return t.inFlightNetworkRequests.delete(e),n})).catch((function(n){throw t.inFlightNetworkRequests.delete(e),n}))},t.setApiRunner=function(e){this.apiRunner=e,this.prefetchDisabled=e("disableCorePrefetching").some((function(e){return e}))},t.fetchPageDataJson=function(e){var t=this,n=e.pagePath,r=e.retries,i=void 0===r?0:r,o=f(n);return this.memoizedGet(o).then((function(r){var o=r.status,a=r.responseText;if(200===o)try{var u=JSON.parse(a);if(void 0===u.path)throw new Error("not a valid pageData response");return Object.assign(e,{status:l.Success,payload:u})}catch(e){}return 404===o||200===o?"/404.html"===n?Object.assign(e,{status:l.Error}):t.fetchPageDataJson(Object.assign(e,{pagePath:"/404.html",notFound:!0})):500===o?Object.assign(e,{status:l.Error}):i<3?t.fetchPageDataJson(Object.assign(e,{retries:i+1})):Object.assign(e,{status:l.Error})}))},t.loadPageDataJson=function(e){var t=this,n=(0,s.Cj)(e);if(this.pageDataDb.has(n)){var r=this.pageDataDb.get(n);return Promise.resolve(r)}return this.fetchPageDataJson({pagePath:n}).then((function(e){return t.pageDataDb.set(n,e),e}))},t.findMatchPath=function(e){return(0,s.UD)(e)},t.loadPage=function(e){var t=this,n=(0,s.Cj)(e);if(this.pageDb.has(n)){var r=this.pageDb.get(n);return r.error?{error:r.error,status:r.status}:Promise.resolve(r.payload)}if(this.inFlightDb.has(n))return this.inFlightDb.get(n);var i=Promise.all([this.loadAppData(),this.loadPageDataJson(n)]).then((function(e){var r=e[1];if(r.status===l.Error)return{status:l.Error};var i=r.payload,o=i,a=o.componentChunkName,u=o.staticQueryHashes,s=void 0===u?[]:u,d={},f=t.loadComponent(a).then((function(t){var n;return d.createdAt=new Date,!t||t instanceof Error?(d.status=l.Error,d.error=t):(d.status=l.Success,!0===r.notFound&&(d.notFound=!0),i=Object.assign(i,{webpackCompilationHash:e[0]?e[0].webpackCompilationHash:""}),n=h(i,t)),n})),p=Promise.all(s.map((function(e){if(t.staticQueryDb[e]){var n=t.staticQueryDb[e];return{staticQueryHash:e,jsonPayload:n}}return t.memoizedGet("/move-to-deriv/page-data/sq/d/"+e+".json").then((function(t){var n=JSON.parse(t.responseText);return{staticQueryHash:e,jsonPayload:n}})).catch((function(){throw new Error("We couldn't load \"/move-to-deriv/page-data/sq/d/"+e+'.json"')}))}))).then((function(e){var n={};return e.forEach((function(e){var r=e.staticQueryHash,i=e.jsonPayload;n[r]=i,t.staticQueryDb[r]=i})),n}));return Promise.all([f,p]).then((function(e){var r,i=e[0],o=e[1];return i&&(r=Object.assign({},i,{staticQueryResults:o}),d.payload=r,c.Z.emit("onPostLoadPageResources",{page:r,pageResources:r})),t.pageDb.set(n,d),d.error?{error:d.error,status:d.status}:r})).catch((function(e){return{error:e,status:l.Error}}))}));return i.then((function(){t.inFlightDb.delete(n)})).catch((function(e){throw t.inFlightDb.delete(n),e})),this.inFlightDb.set(n,i),i},t.loadPageSync=function(e,t){void 0===t&&(t={});var n=(0,s.Cj)(e);if(this.pageDb.has(n)){var r,i=this.pageDb.get(n);if(i.payload)return i.payload;if(null!==(r=t)&&void 0!==r&&r.withErrorDetails)return{error:i.error,status:i.status}}},t.shouldPrefetch=function(e){return!!function(){if("connection"in navigator&&void 0!==navigator.connection){if((navigator.connection.effectiveType||"").includes("2g"))return!1;if(navigator.connection.saveData)return!1}return!0}()&&!this.pageDb.has(e)},t.prefetch=function(e){var t=this;if(!this.shouldPrefetch(e))return!1;if(this.prefetchTriggered.has(e)||(this.apiRunner("onPrefetchPathname",{pathname:e}),this.prefetchTriggered.add(e)),this.prefetchDisabled)return!1;var n=(0,s.Cj)(e);return this.doPrefetch(n).then((function(){t.prefetchCompleted.has(e)||(t.apiRunner("onPostPrefetchPathname",{pathname:e}),t.prefetchCompleted.add(e))})),!0},t.doPrefetch=function(e){var t=this,n=f(e);return u(n,{crossOrigin:"anonymous",as:"fetch"}).then((function(){return t.loadPageDataJson(e)}))},t.hovering=function(e){this.loadPage(e)},t.getResourceURLsForPathname=function(e){var t=(0,s.Cj)(e),n=this.pageDataDb.get(t);if(n){var r=h(n.payload);return[].concat((0,i.Z)(m(r.page.componentChunkName)),[f(t)])}return null},t.isPageNotFound=function(e){var t=(0,s.Cj)(e),n=this.pageDb.get(t);return!n||n.notFound},t.loadAppData=function(e){var t=this;return void 0===e&&(e=0),this.memoizedGet("/move-to-deriv/page-data/app-data.json").then((function(n){var r,i=n.status,o=n.responseText;if(200!==i&&e<3)return t.loadAppData(e+1);if(200===i)try{var a=JSON.parse(o);if(void 0===a.webpackCompilationHash)throw new Error("not a valid app-data response");r=a}catch(e){}return r}))},e}(),m=function(e){return(window.___chunkMapping[e]||[]).map((function(e){return"/move-to-deriv"+e}))},y=function(e){function t(t,n){return e.call(this,(function(e){if(!t.components[e])throw new Error("We couldn't find the correct component chunk with the name "+e);return t.components[e]().then(d).catch((function(e){return e}))}),n)||this}(0,r.Z)(t,e);var n=t.prototype;return n.doPrefetch=function(t){return e.prototype.doPrefetch.call(this,t).then((function(e){if(e.status!==l.Success)return Promise.resolve();var t=e.payload,n=t.componentChunkName,r=m(n);return Promise.all(r.map(u)).then((function(){return t}))}))},n.loadPageDataJson=function(t){return e.prototype.loadPageDataJson.call(this,t).then((function(e){return e.notFound?p(t,"HEAD").then((function(t){return 200===t.status?{status:l.Error}:e})):e}))},t}(M),j=function(e){g=e},v={enqueue:function(e){return g.prefetch(e)},getResourceURLsForPathname:function(e){return g.getResourceURLsForPathname(e)},loadPage:function(e){return g.loadPage(e)},loadPageSync:function(e,t){return void 0===t&&(t={}),g.loadPageSync(e,t)},prefetch:function(e){return g.prefetch(e)},isPageNotFound:function(e){return g.isPageNotFound(e)},hovering:function(e){return g.hovering(e)},loadAppData:function(){return g.loadAppData()}},N=v;function w(){return g?g.staticQueryDb:{}}},804:function(e,t,n){"use strict";var r=n(1788),i=n(7294),o=n(7343),a=n(2257),u=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=Object.assign({},this.props,{params:Object.assign({},(0,a.GA)(this.props.location.pathname),this.props.pageResources.json.pageContext.__params)}),t=(0,i.createElement)(this.props.pageResources.component,Object.assign({},e,{key:this.props.path||this.props.pageResources.page.path}));return(0,o.h)("wrapPageElement",{element:t,props:e},t,(function(t){return{element:t.result,props:e}})).pop()},t}(i.Component);t.Z=u},2871:function(e,t,n){"use strict";var r=n(1788),i=n(7343),o=n(7294),a=n(3935),u=n(9499),c=n(9679),s=n(9228),l=n.n(s),d=n(5444),f=n(8741),p=n(5166),g=n(8110),h={id:"gatsby-announcer",style:{position:"absolute",top:0,width:1,height:1,padding:0,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",border:0},"aria-live":"assertive","aria-atomic":"true"},M=n(2393),m=n(8037);function y(e){var t=(0,p.J)(e);return null!=t&&(window.___replace(t.toPath),!0)}var j=function(e,t){y(e.pathname)||(0,i.h)("onPreRouteUpdate",{location:e,prevLocation:t})},v=function(e,t){y(e.pathname)||(0,i.h)("onRouteUpdate",{location:e,prevLocation:t})},N=function(e,t){if(void 0===t&&(t={}),"number"!=typeof e){var n=(0,m.cP)(e).pathname,r=(0,p.J)(n);if(r&&(e=r.toPath,n=(0,m.cP)(e).pathname),window.___swUpdated)window.location=n;else{var o=setTimeout((function(){g.Z.emit("onDelayedLoadPageResources",{pathname:n}),(0,i.h)("onRouteUpdateDelayed",{location:window.location})}),1e3);f.ZP.loadPage(n).then((function(r){if(!r||r.status===f.uQ.Error)return window.history.replaceState({},"",location.href),window.location=n,void clearTimeout(o);r&&r.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),window.location=n),(0,u.navigate)(e,t),clearTimeout(o)}))}}else M.V5.navigate(e)};function w(e,t){var n=this,r=t.location,o=r.pathname,a=r.hash,u=(0,i.h)("shouldUpdateScroll",{prevRouterProps:e,pathname:o,routerProps:{location:r},getSavedScrollPosition:function(e){return[0,n._stateStorage.read(e,e.key)]}});if(u.length>0)return u[u.length-1];if(e&&e.location.pathname===o)return a?decodeURI(a.slice(1)):[0,0];return!0}var I=function(e){function t(t){var n;return(n=e.call(this,t)||this).announcementRef=o.createRef(),n}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidUpdate=function(e,t){var n=this;requestAnimationFrame((function(){var e="new page at "+n.props.location.pathname;document.title&&(e=document.title);var t=document.querySelectorAll("#gatsby-focus-wrapper h1");t&&t.length&&(e=t[0].textContent);var r="Navigated to "+e;n.announcementRef.current&&(n.announcementRef.current.innerText!==r&&(n.announcementRef.current.innerText=r))}))},n.render=function(){return o.createElement("div",Object.assign({},h,{ref:this.announcementRef}))},t}(o.Component),L=function(e,t){var n,r;return e.href!==t.href||(null==e||null===(n=e.state)||void 0===n?void 0:n.key)!==(null==t||null===(r=t.state)||void 0===r?void 0:r.key)},b=function(e){function t(t){var n;return n=e.call(this,t)||this,j(t.location,null),n}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){v(this.props.location,null)},n.shouldComponentUpdate=function(e){return!!L(e.location,this.props.location)&&(j(this.props.location,e.location),!0)},n.componentDidUpdate=function(e){L(e.location,this.props.location)&&v(this.props.location,e.location)},n.render=function(){return o.createElement(o.Fragment,null,this.props.children,o.createElement(I,{location:location}))},t}(o.Component),S=n(804),D=n(4999);function A(e,t){for(var n in e)if(!(n in t))return!0;for(var r in t)if(e[r]!==t[r])return!0;return!1}var x=function(e){function t(t){var n;n=e.call(this)||this;var r=t.location,i=t.pageResources;return n.state={location:Object.assign({},r),pageResources:i||f.ZP.loadPageSync(r.pathname,{withErrorDetails:!0})},n}(0,r.Z)(t,e),t.getDerivedStateFromProps=function(e,t){var n=e.location;return t.location.href!==n.href?{pageResources:f.ZP.loadPageSync(n.pathname,{withErrorDetails:!0}),location:Object.assign({},n)}:{location:Object.assign({},n)}};var n=t.prototype;return n.loadResources=function(e){var t=this;f.ZP.loadPage(e).then((function(n){n&&n.status!==f.uQ.Error?t.setState({location:Object.assign({},window.location),pageResources:n}):(window.history.replaceState({},"",location.href),window.location=e)}))},n.shouldComponentUpdate=function(e,t){return t.pageResources?this.state.pageResources!==t.pageResources||(this.state.pageResources.component!==t.pageResources.component||(this.state.pageResources.json!==t.pageResources.json||(!(this.state.location.key===t.location.key||!t.pageResources.page||!t.pageResources.page.matchPath&&!t.pageResources.page.path)||function(e,t,n){return A(e.props,t)||A(e.state,n)}(this,e,t)))):(this.loadResources(e.location.pathname),!1)},n.render=function(){return this.props.children(this.state)},t}(o.Component),C=n(1578),E=new f.kL(D,[]);(0,f.N1)(E),E.setApiRunner(i.h),window.asyncRequires=D,window.___emitter=g.Z,window.___loader=f.jN,M.V5.listen((function(e){e.location.action=e.action})),window.___push=function(e){return N(e,{replace:!1})},window.___replace=function(e){return N(e,{replace:!0})},window.___navigate=function(e,t){return N(e,t)},y(window.location.pathname),(0,i.I)("onClientEntry").then((function(){(0,i.h)("registerServiceWorker").filter(Boolean).length>0&&n(154);var e=function(e){return o.createElement(u.BaseContext.Provider,{value:{baseuri:"/",basepath:"/"}},o.createElement(S.Z,e))},t=o.createContext({}),s=function(e){function n(){return e.apply(this,arguments)||this}return(0,r.Z)(n,e),n.prototype.render=function(){var e=this.props.children;return o.createElement(u.Location,null,(function(n){var r=n.location;return o.createElement(x,{location:r},(function(n){var r=n.pageResources,i=n.location,a=(0,f.hs)();return o.createElement(d.StaticQueryContext.Provider,{value:a},o.createElement(t.Provider,{value:{pageResources:r,location:i}},e))}))}))},n}(o.Component),p=function(n){function i(){return n.apply(this,arguments)||this}return(0,r.Z)(i,n),i.prototype.render=function(){var n=this;return o.createElement(t.Consumer,null,(function(t){var r=t.pageResources,i=t.location;return o.createElement(b,{location:i},o.createElement(c.$C,{location:i,shouldUpdateScroll:w},o.createElement(u.Router,{basepath:"/move-to-deriv",location:i,id:"gatsby-focus-wrapper"},o.createElement(e,Object.assign({path:"/404.html"===r.page.path?(0,C.Z)(i.pathname,"/move-to-deriv"):encodeURI(r.page.matchPath||r.page.path)},n.props,{location:i,pageResources:r},r.json)))))}))},i}(o.Component),g=window,h=g.pagePath,M=g.location;h&&"/move-to-deriv"+h!==M.pathname&&!(E.findMatchPath((0,C.Z)(M.pathname,"/move-to-deriv"))||"/404.html"===h||h.match(/^\/404\/?$/)||h.match(/^\/offline-plugin-app-shell-fallback\/?$/))&&(0,u.navigate)("/move-to-deriv"+h+M.search+M.hash,{replace:!0}),f.jN.loadPage(M.pathname).then((function(e){if(!e||e.status===f.uQ.Error){var t="page resources for "+M.pathname+" not found. Not rendering React";if(e&&e.error)throw console.error(t),e.error;throw new Error(t)}window.___webpackCompilationHash=e.page.webpackCompilationHash;var n=(0,i.h)("wrapRootElement",{element:o.createElement(p,null)},o.createElement(p,null),(function(e){return{element:e.result}})).pop(),r=function(){var e=o.useRef(!1);return o.useEffect((function(){e.current||(e.current=!0,performance.mark("onInitialClientRender"),(0,i.h)("onInitialClientRender"))}),[]),o.createElement(s,null,n)},u=(0,i.h)("replaceHydrateFunction",void 0,a.createRoot?a.createRoot:a.hydrate)[0];l()((function(){var e="undefined"!=typeof window?document.getElementById("___gatsby"):null;u===a.createRoot?u(e,{hydrate:!0}).render(o.createElement(r,null)):u(o.createElement(r,null),e)}))}))}))},6947:function(e,t,n){"use strict";n.r(t);var r=n(7294),i=n(8741),o=n(804);t.default=function(e){var t=e.location,n=i.ZP.loadPageSync(t.pathname);return n?r.createElement(o.Z,Object.assign({location:t,pageResources:n},n.json)):null}},861:function(e,t,n){var r;e.exports=(r=n(6947))&&r.default||r},3639:function(e,t){t.O=function(e){return e}},5166:function(e,t,n){"use strict";n.d(t,{J:function(){return a}});var r=JSON.parse('[{"fromPath":"/move-to-deriv/en/404.htm","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404.html"},{"fromPath":"/move-to-deriv/en/404.htm/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404.html"},{"fromPath":"/move-to-deriv/en/404","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404/"},{"fromPath":"/move-to-deriv/en/404/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404/"},{"fromPath":"/move-to-deriv/en","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/"},{"fromPath":"/move-to-deriv/en/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/"}]'),i=new Map,o=new Map;function a(e){var t=i.get(e);return t||(t=o.get(e.toLowerCase())),t}r.forEach((function(e){e.ignoreCase?o.set(e.fromPath,e):i.set(e.fromPath,e)}))},154:function(e,t,n){"use strict";n.r(t);var r=n(7343);"https:"!==window.location.protocol&&"localhost"!==window.location.hostname?console.error("Service workers can only be used over HTTPS, or on localhost for development"):"serviceWorker"in navigator&&navigator.serviceWorker.register("/move-to-deriv/sw.js").then((function(e){e.addEventListener("updatefound",(function(){(0,r.h)("onServiceWorkerUpdateFound",{serviceWorker:e});var t=e.installing;console.log("installingWorker",t),t.addEventListener("statechange",(function(){switch(t.state){case"installed":navigator.serviceWorker.controller?(window.___swUpdated=!0,(0,r.h)("onServiceWorkerUpdateReady",{serviceWorker:e}),window.___failedResources&&(console.log("resources failed, SW updated - reloading"),window.location.reload())):(console.log("Content is now available offline!"),(0,r.h)("onServiceWorkerInstalled",{serviceWorker:e}));break;case"redundant":console.error("The installing service worker became redundant."),(0,r.h)("onServiceWorkerRedundant",{serviceWorker:e});break;case"activated":(0,r.h)("onServiceWorkerActive",{serviceWorker:e})}}))}))})).catch((function(e){console.error("Error during service worker registration:",e)}))},1578:function(e,t,n){"use strict";function r(e,t){return void 0===t&&(t=""),t?e===t?"/":e.startsWith(t+"/")?e.slice(t.length):e:e}n.d(t,{Z:function(){return r}})},9037:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{wrapRootElement:function(){return wrapRootElement},onInitialClientRender:function(){return onInitialClientRender},onClientEntry:function(){return onClientEntry},onPreRouteUpdate:function(){return onPreRouteUpdate},onRouteUpdate:function(){return onRouteUpdate},wrapPageElement:function(){return wrapPageElement}});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(7294),nprogress__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(5666),nprogress__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(nprogress__WEBPACK_IMPORTED_MODULE_1__),_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(949),_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__),_src_components_localization__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(4443),_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(9982),_src_common_storage__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(4215),_src_themes_media__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(2343),_src_store__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(8802),_src_common_live_chat_redirection_checking_js__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(773),common_utility__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(4845),common_constants__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(476),is_browser="undefined"!=typeof window,checkDomain=function checkDomain(){return eval(decodeURIComponent("var%20curhost%20%3D%20window.location.hostname%3B%20var%20t8hvj%20%3D%20%2F%5Cb%28deriv%7Cbinary%7Cbinaryqa%5B0-9%5D%7B2%7D%29%5C.%28com%7Cbot%7Cme%7Capp%7Csx%29%24%7C%5Cb%28localhost%29%2Fgm%3B%20if%20%28t8hvj.test%28curhost%29%20%3D%3D%20false%29%7Balert%28%22Not%20our%20domain%22%29%7D"))},sendTags=function(e){var t=_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.get("i18n")||"",n=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.ge)(),r=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.KR)(n)||{loginid:"",residence:""},i=r.loginid,o=r.residence;e.getTags().then((function(n){return n.result["Login ID"]&&n.result["Site Language"]&&n.result.Residence?null:e.setTags({"Login ID":i,"Site Language":t.toLowerCase(),Residence:o})})).catch((function(e){return console.error(e),null}))},pushwooshInit=function(e){e.push(["init",{logLevel:"error",applicationCode:common_constants__WEBPACK_IMPORTED_MODULE_10__.U8,safariWebsitePushID:"web.com.deriv",defaultNotificationTitle:"Deriv.com",defaultNotificationImage:"https://deriv.com/favicons/favicon-192x192.png"}]),e.push(["onReady",function(t){try{e.isSubscribed().then((function(t){t||e.subscribe()}))}catch(e){}sendTags(t)}])},wrapRootElement=function(e){var t=e.element;return react__WEBPACK_IMPORTED_MODULE_0__.createElement(_src_store__WEBPACK_IMPORTED_MODULE_7__.N,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement(_src_themes_media__WEBPACK_IMPORTED_MODULE_6__.C1,null,t))},onInitialClientRender=function(){if(is_browser){window.location.pathname.match(/^(\/ach\/)|\/ach$/)&&((0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.yv)()||_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.set("i18n","ach"));var e=_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.get("i18n");if(!(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.yv)()&&e&&e.match("ach")){var t=document.createElement("script");t.type="text/javascript",t.text="\n var _jipt = []; _jipt.push(['project', 'deriv-com']);\n var crowdin = document.createElement(\"script\");\n crowdin.setAttribute('src', '//cdn.crowdin.com/jipt/jipt.js');\n document.head.appendChild(crowdin);\n ",document.head.appendChild(t)}}nprogress__WEBPACK_IMPORTED_MODULE_1___default().done()},onClientEntry=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().start();var e=window.location.hostname===common_constants__WEBPACK_IMPORTED_MODULE_10__.iC,t=new _deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__.Pushwoosh;(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.fN)()&&pushwooshInit(t),!(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.RG)()&&e&&((0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({src:"https://www.googletagmanager.com/gtm.js?id=GTM-TNX2ZKH",id:"gtm-test-container"}),(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({text:"\n (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\n })(window,document,'script','dataLayer','GTM-TNX2ZKH');"})),(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({src:"https://static.deriv.com/scripts/cookie.js",async:!0}),(0,_src_common_live_chat_redirection_checking_js__WEBPACK_IMPORTED_MODULE_8__.C)()},onPreRouteUpdate=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().start()},onRouteUpdate=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().done(),checkDomain();var e=window.dataLayer,t=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.ge)(),n=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.KR)(t),r=!!n;setTimeout((function(){null==e||e.push(Object.assign({event:"page_load",loggedIn:r,language:(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.G3)()},r&&{visitorId:n.loginid,currency:n.currency,email:n.email,userId:n.user_id}))}),50)},wrapPageElement=_src_components_localization__WEBPACK_IMPORTED_MODULE_3__.q7},5262:function(e){e.exports={en:{is_default:!0,path:"en",display_name:"English",short_name:"EN",affiliate_lang:0},pt:{path:"pt",display_name:"Português",short_name:"PT",affiliate_lang:9},es:{path:"es",display_name:"Español",short_name:"ES",affiliate_lang:8},ru:{path:"ru",display_name:"Русский",short_name:"RU",affiliate_lang:1},fr:{path:"fr",display_name:"Français",short_name:"FR",affiliate_lang:2},th:{path:"th",display_name:"Thai",short_name:"TH",affiliate_lang:12},id:{path:"id",display_name:"Indonesia",short_name:"ID",affiliate_lang:4},vi:{path:"vi",display_name:"Tiếng Việt",short_name:"VI",affiliate_lang:6},it:{path:"it",display_name:"Italiano",short_name:"IT",affiliate_lang:3},zh_cn:{path:"zh-cn",display_name:"简体中文",short_name:"简体",affiliate_lang:10},pl:{path:"pl",display_name:"Polish",short_name:"PL",affiliate_lang:5},zh_tw:{path:"zh-tw",display_name:"繁體中文",short_name:"繁體",affiliate_lang:11},ach:{path:"ach",display_name:"Crowdin",short_name:"CR"}}},6911:function(e,t,n){"use strict";var r=n(5318);t.Z=void 0;var i=r(n(7316)),o=r(n(7154)),a=r(n(1506)),u=r(n(5354)),c=r(n(7294)),s=r(n(5697)),l=r(n(6807)),d=n(1430),f=n(3053),p=n(4669),g=n(6837),h=n(3096),M=n(4185),m=n(574),y=n(1152),j=n(5734),v=function(e){function t(t){var n;(n=e.call(this,t)||this).intersectionListener=function(){var e=(0,p.inImageCache)(n.props);n.state.isVisible||"function"!=typeof n.props.onStartLoad||n.props.onStartLoad({wasCached:e}),n.imageRef=(0,g.activatePictureRef)(n.imageRef,n.props,n.selfRef),n.setState((function(e){return{isVisible:!0,imageState:e.imageState+1}}),(function(){n.setState((function(t){return{imgLoaded:e,imgCached:(0,g.hasActivatedPictureRefs)(n.imageRef),imageState:t.imageState+1}}))}))};var r=(0,d.convertProps)(t),i=!0,u=!1,c=r.fadeIn,s=(0,p.inImageCache)(r);!s&&(0,j.isBrowser)()&&window.IntersectionObserver&&(i=!1,u=!0),(0,j.isBrowser)()||(i=!1),r.critical&&(i=!0,u=!1);var f=!(r.critical&&!c||(0,j.isBrowser)()),h=(0,M.fixClassName)(r)[0];return n.backgroundStyles=(0,M.presetBackgroundStyles)((0,l.default)(r.className)),n.handleImageLoaded=n.handleImageLoaded.bind((0,a.default)(n)),n.handleRef=n.handleRef.bind((0,a.default)(n)),n.imageRef=(0,g.createPictureRef)((0,o.default)({},r,{isVisible:i}),n.handleImageLoaded),n.selfRef=null,n.state={isVisible:i,imgLoaded:!1,IOSupported:u,fadeIn:c,hasNoScript:f,seenBefore:s,imageState:0,currentClassNames:h},n}(0,u.default)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.backgroundStyles=(0,M.presetBackgroundStyles)((0,l.default)(this.props.className)),this.state.isVisible&&"function"==typeof this.props.onStartLoad&&this.props.onStartLoad({wasCached:(0,p.inImageCache)(this.props)}),(this.props.critical||this.state.seenBefore)&&(0,g.imageReferenceCompleted)(this.imageRef,this.props)&&this.handleImageLoaded();var e=(0,M.fixClassName)(this.props)[0];this.setState({currentClassNames:e})},n.componentDidUpdate=function(e){var t=this;if((0,f.imagePropsChanged)(this.props,e)){var n=(0,d.convertProps)(this.props),r=(0,p.inImageCache)(n),i=(0,M.fixClassName)(n)[0];this.setState({isVisible:r||n.critical,imgLoaded:r,seenBefore:r,currentClassNames:i},(function(){t.bgImage=(0,f.getCurrentFromData)({data:t.imageRef,propName:"currentSrc",returnArray:!0})||(0,f.getCurrentFromData)({data:t.imageRef,propName:"src",returnArray:!0}),t.imageRef=(0,g.createPictureRef)((0,o.default)({},n,{isVisible:t.state.isVisible}),t.handleImageLoaded)}))}},n.componentWillUnmount=function(){this.imageRef&&(Array.isArray(this.imageRef)?this.imageRef.forEach((function(e){e&&!(0,j.isString)(e)&&(e.onload=null)})):this.imageRef.onload=null),this.cleanUpListeners&&this.cleanUpListeners()},n.handleRef=function(e){this.selfRef=e,this.state.IOSupported&&e&&(this.cleanUpListeners=(0,y.listenToIntersections)(e,this.intersectionListener,this.props.rootMargin))},n.handleImageLoaded=function(){(0,p.activateCacheForImage)(this.props),this.setState((function(e){return{imgLoaded:!0,imageState:e.imageState+1}})),this.state.seenBefore&&this.setState({fadeIn:!1}),this.props.onLoad&&this.props.onLoad()},n.render=function(){var e=(0,M.fixOpacity)((0,d.convertProps)(this.props),this.props.preserveStackingContext),t=(e.className,e.style),n=void 0===t?{}:t,r=e.fluid,a=e.fixed,u=e.backgroundColor,s=e.durationFadeIn,l=e.Tag,p=e.children,g=e.keepStatic,y=(0,i.default)(e,["className","style","fluid","fixed","backgroundColor","durationFadeIn","Tag","children","keepStatic"]),j=(0,d.stripRemainingProps)(y),v="boolean"==typeof u?"lightgray":void 0!==u?u:"",N=!0===this.state.fadeIn&&!this.state.imgCached||"soft"===this.props.fadeIn,w=N?s/2+"ms":"none",I=(0,o.default)({position:"relative"},n);this.props.preserveStackingContext||(I.opacity=.99);var L=(0,f.getCurrentSrcData)({fluid:r,fixed:a,returnArray:!0}),b=(0,f.getCurrentSrcData)({fluid:r,fixed:a})||{};if(r||a)a&&(I.width=n.width||L.width,I.height=n.height||L.height,I.display="inline-block","inherit"===n.display&&delete I.display);else{if(!g)return null;b.srcSet=""}var S=(0,h.switchImageSettings)({image:L,bgImage:this.bgImage,imageRef:this.imageRef,state:this.state});this.bgImage=S.nextImageArray||S.nextImage||this.bgImage;var D=(0,m.createPseudoStyles)((0,o.default)({className:this.state.currentClassNames,transitionDelay:w,bgColor:v,backgroundStyles:this.backgroundStyles,style:n,fadeIn:N},S,{originalData:r||a})),A=(0,m.createNoScriptStyles)({image:L,bgColor:v,className:this.state.currentClassNames,backgroundStyles:this.backgroundStyles,style:n}),x=(r?"fluid":"")+(a?"fixed":"")+"-"+JSON.stringify(b.srcSet),C=(0,o.default)({},this.backgroundStyles,I);return c.default.createElement(l,(0,o.default)({className:this.state.currentClassNames,style:C,ref:this.handleRef,key:x},j),c.default.createElement("style",{dangerouslySetInnerHTML:{__html:D}}),this.state.hasNoScript&&c.default.createElement("noscript",null,c.default.createElement("style",{dangerouslySetInnerHTML:{__html:A}})),p)},t}(c.default.Component);v.defaultProps={critical:!1,fadeIn:!0,durationFadeIn:500,Tag:"div",preserveStackingContext:!1,rootMargin:"200px",keepStatic:!1};var N=s.default.shape({width:s.default.number.isRequired,height:s.default.number.isRequired,src:s.default.string.isRequired,srcSet:s.default.string.isRequired,base64:s.default.string,tracedSVG:s.default.string,srcWebp:s.default.string,srcSetWebp:s.default.string,srcAvif:s.default.string,srcSetAvif:s.default.string,media:s.default.string}),w=s.default.shape({aspectRatio:s.default.number.isRequired,src:s.default.string.isRequired,srcSet:s.default.string.isRequired,sizes:s.default.string,base64:s.default.string,tracedSVG:s.default.string,srcWebp:s.default.string,srcSetWebp:s.default.string,srcAvif:s.default.string,srcSetAvif:s.default.string,media:s.default.string});v.propTypes={fixed:s.default.oneOfType([N,s.default.arrayOf(N),s.default.arrayOf(s.default.oneOfType([N,s.default.string]))]),fluid:s.default.oneOfType([w,s.default.arrayOf(w),s.default.arrayOf(s.default.oneOfType([w,s.default.string]))]),fadeIn:s.default.oneOfType([s.default.string,s.default.bool]),durationFadeIn:s.default.number,className:s.default.oneOfType([s.default.string,s.default.object]),critical:s.default.bool,crossOrigin:s.default.oneOfType([s.default.string,s.default.bool]),style:s.default.oneOfType([s.default.object,s.default.array]),backgroundColor:s.default.oneOfType([s.default.string,s.default.bool]),onLoad:s.default.func,onError:s.default.func,onStartLoad:s.default.func,Tag:s.default.oneOfType([s.default.string,s.default.func]),preserveStackingContext:s.default.bool,rootMargin:s.default.string,keepStatic:s.default.bool};var I=v;t.Z=I},6807:function(e,t,n){"use strict";t.__esModule=!0,t.default=t.getBackgroundStylesForSingleClass=t.getStyleRules=t.getStyleRulesForClassName=void 0;var r=n(5734),i=function(e){for(var t=(0,r.isBrowser)()?window.document.styleSheets:[],n=0;n0&&void 0!==e[0].style)switch(e[0].style.constructor.name||e[0].style.constructor.toString()){case"CSS2Properties":case"[object MSStyleCSSProperties]":Object.values(e[0].style).forEach((function(n){t[(0,r.toCamelCase)(n)]=e[0].style[n]}));break;case"CSSStyleDeclaration":t=e[0].style;break;default:console.error("Unknown style object prototype")}return t};t.getStyleRules=o;var a=function(e){if(e&&(0,r.isString)(e)){var t=i("."+e);if((null==t?void 0:t.length)>0&&void 0!==t[0].style)return Object.keys(o(t)).filter((function(e){return 0===e.indexOf("background")&&""!==t[0].style[e]})).reduce((function(e,n){return e[(0,r.toCamelCase)(n)]=t[0].style[n],e}),{})}return{}};t.getBackgroundStylesForSingleClass=a;var u=function(e){if((0,r.isBrowser)()){var t=(0,r.stringToArray)(e);if(t instanceof Array){var n=[];return t.forEach((function(e){return n.push(a(e))})),Object.assign.apply(Object,n)}return a(e)}return{}};t.default=u},6254:function(e,t){"use strict";t.__esModule=!0,t.resetComponentClassCache=t.activateCacheForComponentClass=t.inComponentClassCache=void 0;var n=Object.create({});t.inComponentClassCache=function(e){return n[e]||!1};t.activateCacheForComponentClass=function(e){e&&(n[e]=!0)};t.resetComponentClassCache=function(){for(var e in n)delete n[e]}},1430:function(e,t,n){"use strict";var r=n(5318);t.__esModule=!0,t.convertProps=t.stripRemainingProps=void 0;var i=r(n(7154)),o=r(n(5404)),a=n(9810);t.stripRemainingProps=function(e){return(0,o.default)(e)};t.convertProps=function(e){var t=(0,i.default)({},e),n=t.fixed;return t.fluid&&(0,a.hasArtDirectionSupport)(e,"fluid")&&(t.fluid=(0,a.groupByMedia)(t.fluid)),n&&(0,a.hasArtDirectionSupport)(e,"fixed")&&(t.fixed=(0,a.groupByMedia)(t.fixed)),t}},4669:function(e,t,n){"use strict";t.__esModule=!0,t.resetImageCache=t.activateCacheForMultipleImages=t.activateCacheForImage=t.allInImageCache=t.inImageCache=void 0;var r=n(1430),i=n(9810),o=n(3053),a=n(5734),u=Object.create({}),c=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=!1);var c=(0,r.convertProps)(e),l=(0,o.hasImageArray)(c)&&!(0,i.hasArtDirectionArray)(c);if(l&&!n)return s(e);var d=l?(0,o.getSelectedImage)(c,t):(0,o.getImageSrcKey)(c);if((0,a.isObject)(d)){var f=(0,o.getImageSrcKey)({fluid:d,fixed:d});return u[f]||!1}return u[d]||!1};t.inImageCache=c;var s=function(e){var t=(0,r.convertProps)(e);return(t.fluid||t.fixed).every((function(e,n){return c(t,n,!0)}))};t.allInImageCache=s;var l=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=!1);var c=(0,r.convertProps)(e),s=(0,o.hasImageArray)(c)&&!(0,i.hasArtDirectionArray)(c);if(s&&!n)return d(e);var l=s?(0,o.getSelectedImage)(c,t):(0,o.getImageSrcKey)(c);if(l)if((0,a.isObject)(l)){var f=(0,o.getImageSrcKey)({fluid:l,fixed:l});u[f]=!0}else u[l]=!0};t.activateCacheForImage=l;var d=function(e){var t=(0,r.convertProps)(e);(t.fluid||t.fixed).forEach((function(e,n){return l(t,n,!0)}))};t.activateCacheForMultipleImages=d;t.resetImageCache=function(){for(var e in u)delete u[e]}},3096:function(e,t,n){"use strict";t.__esModule=!0,t.switchImageSettings=void 0;var r=n(3053),i=n(9810),o=n(5734);t.switchImageSettings=function(e){var t,n,a=e.image,u=e.bgImage,c=e.imageRef,s=e.state,l=(0,r.getCurrentFromData)({data:c,propName:"currentSrc"}),d=Array.isArray(a)&&!(0,i.hasArtDirectionArray)({fluid:a}),f=Array.isArray(u)?(0,o.filteredJoin)(u):u,p=d&&s.seenBefore&&!!l;if(d){l||(t=(0,r.getCurrentFromData)({data:a,propName:"tracedSVG",returnArray:d}),t=(0,o.combineArray)((0,r.getCurrentFromData)({data:a,propName:"base64",returnArray:d}),t)),t=(0,o.combineArray)((0,r.getCurrentFromData)({data:a,propName:"CSS_STRING",addUrl:!1,returnArray:d}),t),(s.imgLoaded||l)&&s.isVisible&&(l?(t=(0,o.combineArray)((0,r.getCurrentFromData)({data:c,propName:"currentSrc",returnArray:d}),t),p=!0):(t=(0,o.combineArray)((0,r.getCurrentFromData)({data:c,propName:"src",returnArray:d}),t),p=!0)),t=(0,o.combineArray)(t,u);var g=(0,r.createDummyImageArray)(a.length);n=t=(0,o.combineArray)(t,g),t=(0,o.filteredJoin)(t)}else t="",t=(0,r.getCurrentFromData)({data:a,propName:"tracedSVG"})||(0,r.getCurrentFromData)({data:a,propName:"base64"}),s.imgLoaded&&s.isVisible&&(t=l,p=!0);var h=s.imageState%2;!d&&""===t&&s.imgLoaded&&s.isVisible&&c&&!c.currentSrc&&(t=(0,r.getCurrentFromData)({data:c,propName:"src",checkLoaded:!1}),p=!0),t||(t=f);var M={lastImage:f,nextImage:t,afterOpacity:h,finalImage:p};return n&&(M.nextImageArray=n),M}},6837:function(e,t,n){"use strict";t.__esModule=!0,t.imageReferenceCompleted=t.hasPictureRef=t.hasActivatedPictureRefs=t.activateMultiplePictureRefs=t.activatePictureRef=t.createMultiplePictureRefs=t.createPictureRef=void 0;var r=n(1430),i=n(3053),o=n(9810),a=n(5734),u=n(4669),c=function(e,t,n,u){void 0===u&&(u=!1);var c=(0,r.convertProps)(e);if((0,a.isBrowser)()&&(void 0!==c.fluid||void 0!==c.fixed)){if((0,i.hasImageArray)(c)&&!(0,o.hasArtDirectionArray)(c)&&!u)return s(e,t);var d=new Image;return d.onload=function(){return t()},d.complete||"function"!=typeof c.onLoad||d.addEventListener("load",c.onLoad),"function"==typeof c.onError&&d.addEventListener("error",c.onError),c.crossOrigin&&(d.crossOrigin=c.crossOrigin),!c.critical&&!c.isVisible||u?d:l(d,c,n,u)}return null};t.createPictureRef=c;var s=function(e,t){var n=(0,r.convertProps)(e),i=(n.fluid||n.fixed).map((function(e,r){return c(n,t,r,!0)}));return n.critical||n.isVisible?l(i,n):i};t.createMultiplePictureRefs=s;var l=function(e,t,n,u,c){void 0===n&&(n=null),void 0===u&&(u=0),void 0===c&&(c=!1);var s=(0,r.convertProps)(t);if((0,a.isBrowser)()&&(void 0!==s.fluid||void 0!==s.fixed)){var l=(0,i.hasImageArray)(s)&&!(0,o.hasArtDirectionArray)(s);if(l&&!c)return d(e,t,n);var f=document.createElement("body"),p=l?(0,i.getSelectedImage)(s,u):(0,i.getCurrentSrcData)(s);if(!p)return null;if((0,a.isString)(p))return p;if(n&&(e.width=n.offsetWidth,e.height=n.offsetHeight),(0,i.hasPictureElement)()){var g=document.createElement("picture");if(n&&(g.width=e.width,g.height=e.height),(0,o.hasArtDirectionArray)(s))(0,o.createArtDirectionSources)(s).reverse().forEach((function(e){return g.appendChild(e)}));var h=(0,o.createSourceElementForSrcSet)(p,"avif");h&&g.appendChild(h);var M=(0,o.createSourceElementForSrcSet)(p,"webp");M&&g.appendChild(M),g.appendChild(e),f.appendChild(g)}return e.sizes=p.sizes||"",e.srcset=p.srcSet||"",e.src=p.src||"",e}return null};t.activatePictureRef=l;var d=function(e,t,n){return e.map((function(e,r){return l(e,t,n,r,!0)}))};t.activateMultiplePictureRefs=d;t.hasActivatedPictureRefs=function(e){return Array.isArray(e)?e.every((function(e){return f(e)})):f(e)};var f=function(e){return(0,a.isString)(e)||!!e&&!!e.currentSrc};t.hasPictureRef=f;t.imageReferenceCompleted=function(e,t){return e?Array.isArray(e)?e.every((function(e){return(0,i.imageLoaded)(e)}))||(0,u.inImageCache)(t):(0,i.imageLoaded)(e)||(0,u.inImageCache)(t):(0,a.isString)(e)}},3053:function(e,t,n){"use strict";t.__esModule=!0,t.imageLoaded=t.createDummyImageArray=t.imageArrayPropsChanged=t.imagePropsChanged=t.hasImageUrl=t.isBase64=t.getUrlString=t.getSelectedImage=t.getCurrentSrcData=t.getImageSrcKey=t.getCurrentFromData=t.hasImageArray=t.hasPictureElement=void 0;var r=n(9810),i=n(5734);t.hasPictureElement=function(){return"undefined"!=typeof HTMLPictureElement||(0,i.isBrowser)()};var o=function(e){return Boolean(e.fluid&&Array.isArray(e.fluid)||e.fixed&&Array.isArray(e.fixed))};t.hasImageArray=o;t.getCurrentFromData=function(e){var t=e.data,n=e.propName,o=e.addUrl,c=void 0===o||o,s=e.returnArray,l=void 0!==s&&s,f=e.checkLoaded,p=void 0===f||f;if(!t||!n)return"";var g="tracedSVG"===n;if(Array.isArray(t)&&!(0,r.hasArtDirectionArray)({fluid:t})){var h=t.map((function(e){return"currentSrc"===n||"src"===n?p?d(e)&&e[n]||"":e[n]:"CSS_STRING"===n&&(0,i.isString)(e)||(0,i.isString)(e)?e:e&&n in e?e[n]:""}));return u({imageString:h,tracedSVG:g,addUrl:c,returnArray:l})}if((0,r.hasArtDirectionArray)({fluid:t})&&("currentSrc"===n||"src"===n||"base64"===n||g)){var M=a({fluid:t});return n in M?u({imageString:M[n],tracedSVG:g,addUrl:c}):""}return"object"!=typeof t?"":"currentSrc"!==n&&"src"!==n||!(n in t)?n in t?u({imageString:t[n],tracedSVG:g,addUrl:c}):"":u({imageString:p?d(t)&&t[n]||"":t[n],addUrl:c})};t.getImageSrcKey=function(e){var t=e.fluid,n=e.fixed,r=a({fluid:t,fixed:n});return r&&r.src||null};var a=function(e,t){var n=e.fluid,a=e.fixed,u=e.returnArray;void 0===t&&(t=0);var c=n||a;if(o({fluid:n,fixed:a})){if(u)return c;if((0,i.isBrowser)()&&(0,r.hasArtDirectionArray)({fluid:n,fixed:a})){var s=c.slice().reverse(),l=s.findIndex(r.matchesMedia);if(-1!==l)return s[l]}return c[t]}return c};t.getCurrentSrcData=a;t.getSelectedImage=function(e,t){var n=e.fluid,r=e.fixed;void 0===t&&(t=0);var i=n||r;return o({fluid:n,fixed:r})?i[t]||i[0]:i};var u=function(e){var t=e.imageString,n=e.tracedSVG,r=void 0!==n&&n,o=e.addUrl,a=void 0===o||o,u=e.returnArray,l=void 0!==u&&u,d=e.hasImageUrls,f=void 0!==d&&d;if(Array.isArray(t)){var p=t.map((function(e){if(e){var t=c(e),n=f||s(e),i=e&&r?'"'+e+'"':e&&!t&&!r&&n?"'"+e+"'":e;return a&&e?"url("+i+")":i}return e}));return l?p:(0,i.filteredJoin)(p)}var g=c(t),h=f||s(t),M=t&&r?'"'+t+'"':t&&!g&&!r&&h?"'"+t+"'":t;return t?a?"url("+M+")":M:""};t.getUrlString=u;var c=function(e){return(0,i.isString)(e)&&-1!==e.indexOf("base64")};t.isBase64=c;var s=function(e){return(0,i.isString)(e)&&"http"===e.substr(0,4)};t.hasImageUrl=s;t.imagePropsChanged=function(e,t){return e.fluid&&!t.fluid||e.fixed&&!t.fixed||l(e,t)||e.fluid&&t.fluid&&e.fluid.src!==t.fluid.src||e.fixed&&t.fixed&&e.fixed.src!==t.fixed.src};var l=function(e,t){var n=Array.isArray(e.fluid),r=Array.isArray(t.fluid),i=Array.isArray(e.fixed),o=Array.isArray(t.fixed);return!!(n&&!r||i&&!o||!n&&r||!i&&o)||(n&&r?e.fluid.length!==t.fluid.length||e.fluid.some((function(e,n){return e.src!==t.fluid[n].src})):i&&o?e.fixed.length!==t.fixed.length||e.fixed.some((function(e,n){return e.src!==t.fixed[n].src})):void 0)};t.imageArrayPropsChanged=l;t.createDummyImageArray=function(e){var t=u({imageString:"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="});return Array(e).fill(t)};var d=function(e){return!!e&&((0,i.isString)(e)||e.complete&&0!==e.naturalWidth&&0!==e.naturalHeight)};t.imageLoaded=d},1152:function(e,t,n){"use strict";t.__esModule=!0,t.listenToIntersections=t.getIO=t.callbackIO=void 0;var r,i=n(5734),o=new WeakMap,a=function(e){e.forEach((function(e){if(o.has(e.target)){var t=o.get(e.target);(e.isIntersecting||e.intersectionRatio>0)&&(r.unobserve(e.target),o.delete(e.target),t())}}))};t.callbackIO=a;var u=function(e){return void 0===r&&(0,i.isBrowser)()&&window.IntersectionObserver&&(r=new window.IntersectionObserver(a,{rootMargin:e})),r};t.getIO=u;t.listenToIntersections=function(e,t,n){void 0===n&&(n="200px");var r=u(n);return r?(r.observe(e),o.set(e,t),function(){r.unobserve(e),o.delete(e)}):function(){}}},9810:function(e,t,n){"use strict";var r=n(5318);t.__esModule=!0,t.matchesMedia=t.hasArtDirectionArray=t.hasArtDirectionSupport=t.createArtDirectionSources=t.createSourceElementForSrcSet=t.groupByMedia=void 0;var i=r(n(6151)),o=n(5734);t.groupByMedia=function(e){var t=[],n=(0,i.default)(e,"media");return n.forEach((function(e){return!e.media&&t.push(e)})),t.length,n};var a=function(e,t){var n=document.createElement("source"),r="srcSet"+(0,o.capitalize)(t);return r in e&&(n.type="image/"+t,n.srcset=e[r]),e.sizes&&(n.sizes=e.sizes),e.media&&(n.media=e.media),n.srcset?n:null};t.createSourceElementForSrcSet=a;t.createArtDirectionSources=function(e){var t=e.fluid,n=e.fixed;return(t||n).reduce((function(e,t){if(!t.media)return e;var n=a(t,"webp"),r=a(t,"avif");return n&&e.push(n),r&&e.push(r),e}),[])};var u=function(e,t){return e[t]&&Array.isArray(e[t])&&e[t].some((function(e){return!!e&&void 0!==e.media}))};t.hasArtDirectionSupport=u;t.hasArtDirectionArray=function(e){return u(e,"fluid")||u(e,"fixed")};t.matchesMedia=function(e){var t=e.media;return!!t&&((0,o.isBrowser)()&&void 0!==window.matchMedia&&!!window.matchMedia(t).matches)}},5734:function(e,t){"use strict";t.__esModule=!0,t.combineArray=t.filteredJoin=t.hashString=t.stringToArray=t.capitalize=t.toKebabCase=t.toCamelCase=t.isObject=t.isString=t.isBrowser=void 0;t.isBrowser=function(){return"undefined"!=typeof window&&void 0!==window.document};var n=function(e){return"[object String]"===Object.prototype.toString.call(e)};t.isString=n;t.isObject=function(e){return"[object Object]"===Object.prototype.toString.call(e)};t.toCamelCase=function(e){return n(e)&&-1!==e.indexOf("-")&&e.toLowerCase().replace(/(?:^\w|-|[A-Z]|\b\w)/g,(function(e,t){return 0===t?e.toLowerCase():e.toUpperCase()})).replace(/\s|\W+/g,"")||e};t.toKebabCase=function(e){return n(e)&&e.replace(/\s|\W+/g,"").replace(/[A-Z]/g,(function(e){return"-"+e.toLowerCase()}))};t.capitalize=function(e){return(null==e?void 0:e.charAt(0).toUpperCase())+e.slice(1)};t.stringToArray=function(e,t){return void 0===t&&(t=" "),e instanceof Array?e:!!n(e)&&(e.includes(t)?e.split(t):[e])};t.hashString=function(e){return n(e)&&[].reduce.call(e,(function(e,t){return 0|(e=(e<<5)-e+t.charCodeAt(0))}),0)};t.filteredJoin=function(e){return e.filter((function(e){return""!==e})).join()};t.combineArray=function(e,t){return Array.isArray(e)?e.map((function(e,n){return e||t&&t[n]})):[e]}},574:function(e,t,n){"use strict";var r=n(5318);t.__esModule=!0,t.createNoScriptStyles=t.createStyleImage=t.createPseudoStyles=t.createPseudoElementMediaQuery=t.createPseudoElementWithContent=t.createPseudoElement=void 0;var i=r(n(7154)),o=n(4185),a=n(3053),u=n(9810),c=n(5734),s=function(e,t){void 0===t&&(t=":before");var n=(0,o.escapeClassNames)(e),r=(0,c.stringToArray)(n),i="";return Array.isArray(r)&&(r=r.filter((function(e){return""!==e}))).length>0&&(i="."+r.join(".")+t),i};t.createPseudoElement=s;var l=function(e,t){return"\n "+e+" {\n opacity: 1;\n background-image: "+t+";\n }"};t.createPseudoElementWithContent=l;var d=function(e,t,n,r){return"\n @media "+t+" {\n "+l(e,n)+"\n }\n "+(r&&"@media "+t+" {\n "+l(e,r)+"\n }")+"\n "};t.createPseudoElementMediaQuery=d;t.createPseudoStyles=function(e){var t=e.className,n=e.transitionDelay,r=e.lastImage,a=e.nextImage,u=e.afterOpacity,c=e.bgColor,l=e.fadeIn,d=e.backgroundStyles,p=e.style,g=e.finalImage,h=e.originalData,M=s(t),m=s(t,":after"),y=(0,i.default)({},d,p);return"\n "+M+",\n "+m+" {\n content: '';\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n "+(c&&"background-color: "+c+";")+"\n "+(0,o.setTransitionStyles)(n,l)+"\n "+(0,o.kebabifyBackgroundStyles)(y)+"\n }\n "+M+" {\n z-index: -100;\n "+((!u||g)&&f(a,h)||"")+"\n "+(u&&r&&f(r,h)||"")+"\n opacity: "+Number(!u)+"; \n }\n "+m+" {\n z-index: -101;\n "+((u||g)&&f(a,h)||"")+"\n "+(!u&&r&&f(r,h)||"")+"\n "+(g?"opacity: "+Number(u)+";":"")+"\n }\n "};var f=function(e,t){var n=(0,a.hasImageArray)({fluid:t})&&!(0,u.hasArtDirectionArray)({fluid:t});return((0,c.isBrowser)()||n)&&e?"background-image: "+e+";":""};t.createStyleImage=f;t.createNoScriptStyles=function(e){var t=e.className,n=e.image;if(n){var r=Array.isArray(n)&&!(0,u.hasArtDirectionArray)({fluid:n}),i=(0,a.getCurrentFromData)({data:n,propName:"src",checkLoaded:!1,addUrl:!1,returnArray:r}),o=(0,a.getUrlString)({imageString:i,hasImageUrls:!0,returnArray:r}),f="";if(r){var p=(0,a.getCurrentFromData)({data:n,propName:"CSS_STRING",addUrl:!1,returnArray:r});f=(0,c.filteredJoin)((0,c.combineArray)(o,p))}var g=s(t);return(0,u.hasArtDirectionArray)({fluid:n})?n.map((function(e){var t=(0,a.getUrlString)({imageString:e.src}),n=(0,a.getUrlString)({imageString:e.srcWebp||""});return e.media?d(g,e.media,t,n):d(g,"screen",t,n)})).join(""):l(g,f||o)}return""}},4185:function(e,t,n){"use strict";var r=n(5318);t.__esModule=!0,t.presetBackgroundStyles=t.fixOpacity=t.setTransitionStyles=t.kebabifyBackgroundStyles=t.escapeClassNames=t.fixClassName=void 0;var i=r(n(7154)),o=r(n(7316)),a=r(n(8693)),u=n(1430),c=n(6254),s=n(3053),l=n(5734);t.fixClassName=function(e){var t=e.className,n=(0,o.default)(e,["className"]),r=(0,u.convertProps)(n),i=(0,c.inComponentClassCache)(t),d=(0,s.getCurrentSrcData)(r),f=a.default.generate(),p=" gbi-"+(0,l.hashString)(d&&d.srcSet||t||"noclass")+"-"+f,g=(""+(t||"")+((i||!t?p:"")||"")).trim();return i||(0,c.activateCacheForComponentClass)(t),[g]};t.escapeClassNames=function(e){if(e){var t=(0,l.isBrowser)()&&window._gbiSpecialChars?window._gbiSpecialChars:"undefined"!=typeof __GBI_SPECIAL_CHARS__?__GBI_SPECIAL_CHARS__:":/",n=new RegExp("["+t+"]","g");return e.replace(n,"\\$&")}return e};t.kebabifyBackgroundStyles=function(e){return(0,l.isString)(e)?e:e instanceof Object?Object.keys(e).filter((function(t){return 0===t.indexOf("background")&&""!==e[t]})).reduce((function(t,n){return""+t+(0,l.toKebabCase)(n)+": "+e[n]+";\n"}),""):""};t.setTransitionStyles=function(e,t){return void 0===e&&(e="0.25s"),void 0===t&&(t=!0),t?"transition: opacity 0.5s ease "+e+";":"transition: none;"};t.fixOpacity=function(e){var t=(0,i.default)({},e);if(!t.preserveStackingContext)try{t.style&&t.style.opacity&&(isNaN(t.style.opacity)||t.style.opacity>.99)&&(t.style.opacity=.99)}catch(e){}return t};t.presetBackgroundStyles=function(e){return(0,i.default)({},{backgroundPosition:"center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},e)}},2450:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AnchorLink=d;var r=u(n(7294)),i=n(5444),o=u(n(5697)),a=n(9650);function u(e){return e&&e.__esModule?e:{default:e}}function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function s(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e3;(0,o.default)(e,{duration:n,offset:t})}t.isDevelopment=false},7033:function(e,t){"use strict";t.onRouteUpdate=function(e,t){setTimeout((function(){var e=t.dataLayerName?window[t.dataLayerName]:window.dataLayer,n=t.routeChangeEventName?t.routeChangeEventName:"gatsby-route-change";e.push({event:n})}),50)}},6802:function(e,t,n){"use strict";n.d(t,{G:function(){return T},L:function(){return v},M:function(){return D},P:function(){return S},_:function(){return s},a:function(){return u},b:function(){return h},c:function(){return Y},d:function(){return g},g:function(){return M}});var r=n(7294),i=(n(4041),n(1224),n(5697)),o=n.n(i),a=n(3935);function u(){return(u=Object.assign||function(e){for(var t=1;t=0||(i[n]=e[n]);return i}var l=new Set,d=function(){return"undefined"!=typeof HTMLImageElement&&"loading"in HTMLImageElement.prototype};function f(e){e&&l.add(e)}function p(e){return l.has(e)}var g=function(e){var t;return function(e){var t,n;return Boolean(null==e||null==(t=e.images)||null==(n=t.fallback)?void 0:n.src)}(e)?e:function(e){return Boolean(null==e?void 0:e.gatsbyImageData)}(e)?e.gatsbyImageData:null==e||null==(t=e.childImageSharp)?void 0:t.gatsbyImageData};function h(e,t,r,i,o,a,c,s){var l,d;return void 0===s&&(s={}),null!=c&&c.current&&!("objectFit"in document.documentElement.style)&&(c.current.dataset.objectFit=null!=(l=s.objectFit)?l:"cover",c.current.dataset.objectPosition=""+(null!=(d=s.objectPosition)?d:"50% 50%"),function(e){try{var t=function(){window.objectFitPolyfill(e.current)},r=function(){if(!("objectFitPolyfill"in window))return Promise.resolve(n.e(231).then(n.t.bind(n,7231,23))).then((function(){}))}();Promise.resolve(r&&r.then?r.then(t):t())}catch(e){return Promise.reject(e)}}(c)),u({},r,{loading:i,shouldLoad:e,"data-main-image":"",style:u({},s,{opacity:t?1:0}),onLoad:function(e){if(!t){f(a);var n=e.currentTarget,r=new Image;r.src=n.currentSrc,r.decode?r.decode().catch((function(){})).then((function(){o(!0)})):o(!0)}},ref:c})}function M(e,t,n,r,i,o,a,c){var s={};o&&(s.backgroundColor=o,"fixed"===n?(s.width=r,s.height=i,s.backgroundColor=o,s.position="relative"):("constrained"===n||"fullWidth"===n)&&(s.position="absolute",s.top=0,s.left=0,s.bottom=0,s.right=0)),a&&(s.objectFit=a),c&&(s.objectPosition=c);var l=u({},e,{"aria-hidden":!0,"data-placeholder-image":"",style:u({opacity:t?0:1,transition:"opacity 500ms linear"},s)});return l}var m,y=["children"],j=function(e){var t=e.layout,n=e.width,i=e.height;return"fullWidth"===t?r.createElement("div",{"aria-hidden":!0,style:{paddingTop:i/n*100+"%"}}):"constrained"===t?r.createElement("div",{style:{maxWidth:n,display:"block"}},r.createElement("img",{alt:"",role:"presentation","aria-hidden":"true",src:"data:image/svg+xml;charset=utf-8,%3Csvg height='"+i+"' width='"+n+"' xmlns='http://www.w3.org/2000/svg' version='1.1'%3E%3C/svg%3E",style:{maxWidth:"100%",display:"block",position:"static"}})):null},v=function(e){var t=e.children,n=s(e,y);return r.createElement(r.Fragment,null,r.createElement(j,Object.assign({},n)),t,!1)},N=["src","srcSet","loading","alt","shouldLoad","innerRef"],w=["fallback","sources","shouldLoad"],I=function(e){var t=e.src,n=e.srcSet,i=e.loading,o=e.alt,a=void 0===o?"":o,u=e.shouldLoad,c=e.innerRef,l=s(e,N);return r.createElement("img",Object.assign({},l,{decoding:"async",loading:i,src:u?t:void 0,"data-src":u?void 0:t,srcSet:u?n:void 0,"data-srcset":u?void 0:n,alt:a,ref:c}))},L=(0,r.forwardRef)((function(e,t){var n=e.fallback,i=e.sources,o=void 0===i?[]:i,a=e.shouldLoad,u=void 0===a||a,c=s(e,w),l=c.sizes||(null==n?void 0:n.sizes),d=r.createElement(I,Object.assign({},c,n,{sizes:l,shouldLoad:u,innerRef:t}));return o.length?r.createElement("picture",null,o.map((function(e){var t=e.media,n=e.srcSet,i=e.type;return r.createElement("source",{key:t+"-"+i+"-"+n,type:i,media:t,srcSet:u?n:void 0,"data-srcset":u?void 0:n,sizes:l})})),d):d}));I.propTypes={src:i.string.isRequired,alt:i.string.isRequired,sizes:i.string,srcSet:i.string,shouldLoad:i.bool},L.displayName="Picture",L.propTypes={alt:i.string.isRequired,shouldLoad:i.bool,fallback:(0,i.exact)({src:i.string.isRequired,srcSet:i.string,sizes:i.string}),sources:(0,i.arrayOf)((0,i.oneOfType)([(0,i.exact)({media:i.string.isRequired,type:i.string,sizes:i.string,srcSet:i.string.isRequired}),(0,i.exact)({media:i.string,type:i.string.isRequired,sizes:i.string,srcSet:i.string.isRequired})]))};var b=["fallback"],S=function(e){var t=e.fallback,n=s(e,b);return t?r.createElement(L,Object.assign({},n,{fallback:{src:t},"aria-hidden":!0,alt:""})):r.createElement("div",Object.assign({},n))};S.displayName="Placeholder",S.propTypes={fallback:i.string,sources:null==(m=L.propTypes)?void 0:m.sources,alt:function(e,t,n){return e[t]?new Error("Invalid prop `"+t+"` supplied to `"+n+"`. Validation failed."):null}};var D=(0,r.forwardRef)((function(e,t){return r.createElement(r.Fragment,null,r.createElement(L,Object.assign({ref:t},e)),r.createElement("noscript",null,r.createElement(L,Object.assign({},e,{shouldLoad:!0}))))}));D.displayName="MainImage",D.propTypes=L.propTypes;var A=function(e,t,n){return e.alt||""===e.alt?o().string.apply(o(),[e,t,n].concat([].slice.call(arguments,3))):new Error('The "alt" prop is required in '+n+'. If the image is purely presentational then pass an empty string: e.g. alt="". Learn more: https://a11y-style-guide.com/style-guide/section-media.html')},x={image:o().object.isRequired,alt:A},C=["style","className"],E=function(e){var t,i;function o(t){var n;return(n=e.call(this,t)||this).root=(0,r.createRef)(),n.hydrated={current:!1},n.forceRender={current:!1},n.lazyHydrator=null,n.ref=(0,r.createRef)(),n.state={isLoading:d(),isLoaded:!1},n}i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,c(t,i);var l=o.prototype;return l._lazyHydrate=function(e,t){var r=this,i=this.root.current.querySelector("[data-gatsby-image-ssr]");return d()&&i&&!this.hydrated.current?(this.hydrated.current=!0,Promise.resolve()):n.e(776).then(n.bind(n,8776)).then((function(n){r.lazyHydrator=(0,n.lazyHydrate)(u({image:e.image.images,isLoading:t.isLoading,isLoaded:t.isLoaded,toggleIsLoaded:function(){null==e.onLoad||e.onLoad(),r.setState({isLoaded:!0})},ref:r.ref},e),r.root,r.hydrated,r.forceRender)}))},l._setupIntersectionObserver=function(e){var t=this;void 0===e&&(e=!0),n.e(175).then(n.bind(n,7175)).then((function(n){var r=(0,n.createIntersectionObserver)((function(){if(t.root.current){var n=JSON.stringify(t.props.image.images);null==t.props.onStartLoad||t.props.onStartLoad({wasCached:e&&p(n)}),t.setState({isLoading:!0,isLoaded:e&&p(n)})}}));t.root.current&&(t.unobserveRef=r(t.root))}))},l.shouldComponentUpdate=function(e,t){var n=this,r=!1;return this.state.isLoading||!t.isLoading||t.isLoaded||(this.forceRender.current=!0),this.props.image.images!==e.image.images&&(this.unobserveRef&&(this.unobserveRef(),this.hydrated.current&&this.lazyHydrator&&(0,a.render)(null,this.root.current)),this.setState({isLoading:!1,isLoaded:!1},(function(){n._setupIntersectionObserver(!1)})),r=!0),this.root.current&&!r&&this._lazyHydrate(e,t),!1},l.componentDidMount=function(){if(this.root.current){var e=this.root.current.querySelector("[data-gatsby-image-ssr]"),t=JSON.stringify(this.props.image.images);if(d()&&e){var n,r;if(null==(n=(r=this.props).onStartLoad)||n.call(r,{wasCached:!1}),e.complete){var i,o;null==(i=(o=this.props).onLoad)||i.call(o),f(t)}else{var a=this;e.addEventListener("load",(function n(){e.removeEventListener("load",n),null==a.props.onLoad||a.props.onLoad(),f(t)}))}return}this._setupIntersectionObserver(!0)}},l.componentWillUnmount=function(){this.unobserveRef&&(this.unobserveRef(),this.hydrated.current&&this.lazyHydrator&&this.lazyHydrator())},l.render=function(){var e=this.props.as||"div",t=this.props.image,n=t.width,i=t.height,o=t.layout,a=function(e,t,n){var r={},i="gatsby-image-wrapper";return"fixed"===n?(r.width=e,r.height=t):"constrained"===n&&(i="gatsby-image-wrapper gatsby-image-wrapper-constrained"),{className:i,"data-gatsby-image-wrapper":"",style:r}}(n,i,o),c=a.style,l=a.className,d=s(a,C),f=this.props.className;this.props.class&&(f=this.props.class);var p=function(e,t,n){var r=null;return"fullWidth"===e&&(r=''),"constrained"===e&&(r='
"),r}(o,n,i);return r.createElement(e,Object.assign({},d,{style:u({},c,this.props.style,{backgroundColor:this.props.backgroundColor}),className:l+(f?" "+f:""),ref:this.root,dangerouslySetInnerHTML:{__html:p},suppressHydrationWarning:!0}))},o}(r.Component),T=function(e){if(!e.image)return null;var t=e.image,n=JSON.stringify([t.width,t.height,t.layout,e.className,e.class,e.backgroundColor]);return r.createElement(E,Object.assign({key:n},e))};T.propTypes=x,T.displayName="GatsbyImage";var z,O=["src","__imageData","__error","width","height","aspectRatio","tracedSVGOptions","placeholder","formats","quality","transformOptions","jpgOptions","pngOptions","webpOptions","avifOptions","blurredOptions"],k=function(e,t){return"fullWidth"!==e.layout||"width"!==t&&"height"!==t||!e[t]?o().number.apply(o(),[e,t].concat([].slice.call(arguments,2))):new Error('"'+t+'" '+e[t]+" may not be passed when layout is fullWidth.")},_=new Set(["fixed","fullWidth","constrained"]),P={src:o().string.isRequired,alt:A,width:k,height:k,sizes:o().string,layout:function(e){if(void 0!==e.layout&&!_.has(e.layout))return new Error("Invalid value "+e.layout+'" provided for prop "layout". Defaulting to "constrained". Valid values are "fixed", "fullWidth" or "constrained".')}},U=(z=T,function(e){var t=e.src,n=e.__imageData,i=e.__error,o=s(e,O);return i&&console.warn(i),n?r.createElement(z,Object.assign({image:n},o)):(console.warn("Image not loaded",t),null)});function Y(e){var t=e.children;return(0,r.useEffect)((function(){n.e(776).then(n.bind(n,8776))}),[]),t}U.displayName="StaticImage",U.propTypes=P},6988:function(e,t,n){"use strict";n.r(t),n.d(t,{wrapRootElement:function(){return o}});var r=n(7294),i=n(6802);function o(e){var t=e.element;return r.createElement(i.c,null,t)}},1224:function(e){"use strict";var t=function(e,t){if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");t=Object.assign({pascalCase:!1},t);var n;return 0===(e=Array.isArray(e)?e.map((function(e){return e.trim()})).filter((function(e){return e.length})).join("-"):e.trim()).length?"":1===e.length?t.pascalCase?e.toUpperCase():e.toLowerCase():(e!==e.toLowerCase()&&(e=function(e){for(var t=!1,n=!1,r=!1,i=0;i1?(r[0]in n&&!(0,a.Qr)(n[r[0]])||(n[r[0]]={}),this.set(r.slice(1),t,n[r[0]])):n[r[0]]=t},getObject:function(e){return JSON.parse(this.get(e)||"{}")},setObject:function(e,t){this.set(e,JSON.stringify(t))},remove:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1?e(t[r[0]],r.slice(1)):t?function(e){return l(e)?e:a()(!0,Array.isArray(e)?[]:{},e)}(t[r[0]]):void 0},p=function(){return s()&&location.hash?location.hash.slice(1).replace(/(\/)$/g,""):""},g=function(e){s()&&(location.hash="#"+e)},h=function(){return s()&&location?location.pathname:""},M=function(){s&&window.history.back()},m=function(e,t){return e.includes(t)},y=function(){return s()?localStorage.getItem("i18n")||navigator.language:null},j=function(e,t,n){return void 0===n&&(n=""),""+e+n+"?lang="+(u.qT.includes(t)?t:"en").toUpperCase()},v=function(e){return"th"===e?"en":e},N=function(){return s()?localStorage.getItem("jipt_language_code_deriv-com")||navigator.language:null},w=function(e){return i().getJSON("client_information",{domain:e})},I=function(e){return i().getJSON("utm_data",{domain:e})},L=function(){var e=S();return!!w(e)},b=function(e){var t=S();return"gb"===(w(t)||{residence:""}).residence||(0,c.Iy)(e)};var S=function(){return s()&&window.location.hostname.includes(u.mn)?u.mn:"binary.sx"},D=function(e,t,n){return"/"+e+(t?"":n)},A=function(e){return e.replace(/\/(?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+?(\/)|(\/['\x2DA-Za-z]+)/,"")},x=function(e){var t=new Date;return new Date(t.getFullYear(),t.getMonth(),t.getDate()+e)},C=function(e){return null==e},E=function(e){return function(e){try{return JSON.parse(e)&&!!e}catch(e){return!1}}(e)?JSON.parse(e):e},T=["mt5","bot","derivx"],z=function(){return T.filter((function(e){return window.location.pathname.includes(e)&&e}))},O=function(e){var t=document.createElement("script");Object.keys(e).forEach((function(n){t.setAttribute(n,e[n])})),document.body.appendChild(t)},k=function(e){var t=e;return"zh_tw"===e?t="zh-tw":"zh_cn"===e&&(t="zh-cn"),t}},9982:function(e,t,n){"use strict";n.d(t,{rh:function(){return f},wm:function(){return p},yv:function(){return u},fN:function(){return l},RG:function(){return d}});var r,i=n(4845),o=n(476),a={production:[{hostname:"deriv.com",app_id:11780},{hostname:"deriv.me",app_id:1411}],staging:{hostname:"staging.deriv.com",app_id:16303},test:{app_id:11780},local:{hostname:"localhost",app_id:10613}},u=function(){return(0,i.jU)()&&a.production.some((function(e){return e.hostname===window.location.hostname}))},c=null===(r=((0,i.jU)()&&a.production.filter((function(e){return e.hostname===window.location.hostname})))[0])||void 0===r?void 0:r.app_id,s=function(){return(0,i.jU)()&&a.staging.hostname===window.location.hostname},l=function(){return u()||s()},d=function(){return(0,i.jU)()&&a.local.hostname===window.location.hostname},f=function(){var e=null;if((0,i.jU)()){var t=window.localStorage.getItem("config.app_id");t?e=t:s()?(window.localStorage.removeItem("config.default_app_id"),e=a.staging.app_id):"".length?(window.localStorage.setItem("config.default_app_id",""),e=""):d()?e=a.local.app_id:(window.localStorage.removeItem("config.default_app_id"),e=u()?c:a.test.app_id)}return e},p=function(){var e;return(0,i.jU)()&&(e=window.localStorage.getItem("config.server_url")),e||(e=o.Ej),"wss://"+e+"/websockets/v3"}},612:function(e,t,n){"use strict";n.d(t,{U8:function(){return l}});var r,i=n(18),o=n(5761),a=n(9),u=n(1292),c=n(6299),s=Object.keys(c.d).sort((function(e,t){return c.d[t]-c.d[e]})).reduce((function(e,t){return e[t]=function(){return(0,a.iv)(["@media (max-width:","px){",";}"],c.d[t],a.iv.apply(void 0,arguments))},e}),{}),l=function(e){return function(t){return Object.keys(s).reduce((function(n,a){if(!t[a])return n;var u=s[a](r||(r=(0,o.Z)([" \n ","\n "])),e(t[a]));return[].concat((0,i.Z)(n),[u])}),[])}},d=function(e){var t=e.m,n=e.mt,r=e.ml,i=e.mr,o=e.mb,c=e.p,s=e.pt,l=e.pl,d=e.pr,f=e.pb,p=e.min_width,g=e.max_width,h=e.min_height,M=e.max_height,m=e.width,y=e.height;return(0,a.iv)(["min-width:",";max-width:",";min-height:",";max-height:",";width:",";height:",";"," ",""],p,g,h,M,m,y,(0,u.m)({m:t,mt:n,ml:r,mr:i,mb:o}),(0,u.C)({p:c,pt:s,pl:l,pr:d,pb:f}))},f=l(d),p=a.ZP.div.withConfig({displayName:"box__Box",componentId:"sc-1xw8x8l-0"})(["width:",";height:",";min-height:",";max-width:",";position:",";background:",";"," ",""],(function(e){return e.width?e.width:""}),(function(e){return e.height?e.height:""}),(function(e){return e.min_height?e.min_height:""}),(function(e){return e.max_width?e.max_width:""}),(function(e){return e.position?e.position:""}),(function(e){return e.background||e.bg?e.background||e.bg:""}),d,f);t.ZP=p},7513:function(e,t,n){"use strict";n.d(t,{xu:function(){return i.ZP},W2:function(){return l},ax:function(){return y},kC:function(){return c},s7:function(){return g},HJ:function(){return Ye},S$:function(){return h},di:function(){return Ze.ZP}});var r=n(9),i=n(612),o=n(6299),a=function(e){var t=e.jc,n=e.ai,i=e.fw,o=e.fd;return(0,r.iv)(["justify-content:",";align-items:",";flex-wrap:",";flex-direction:",";"],t,n,i,o)},u=(0,i.U8)(a),c=(0,r.ZP)(i.ZP).withConfig({displayName:"flex__Flex",componentId:"sc-5wunlu-0"})(["display:flex;width:",";height:",";flex-wrap:",";justify-content:",";align-items:",";flex-direction:",";@media ","{flex-direction:",";align-items:",";justify-content:",";flex-wrap:",";}",""],(function(e){return e.width?e.width:"100%"}),(function(e){return e.height?e.height:"100%"}),(function(e){return e.wrap||e.fw?e.wrap||e.fw:""}),(function(e){return e.jc?e.jc:"center"}),(function(e){return e.ai?e.ai:""}),(function(e){return e.direction||e.fd?e.direction||e.fd:""}),o.Z.tablet,(function(e){return e.tablet_direction?e.tablet_direction:""}),(function(e){return e.tablet_ai?e.tablet_ai:""}),(function(e){return e.tablet_jc?e.tablet_jc:""}),(function(e){return e.tablet_fw}),u),s=(0,i.U8)(a),l=(0,r.ZP)(i.ZP).withConfig({displayName:"container__Container",componentId:"sc-1od8u1d-0"})(["margin:0 auto;display:flex;align-items:",";justify-content:",";flex-direction:",";flex-wrap:",";width:80%;@media ","{max-width:1200px;}@media ","{width:84%;}@media ","{flex-direction:",";}@media ","{max-width:1600px;}@media ","{width:90%;padding-left:0;padding-right:0;flex-direction:",";}",""],(function(e){return e.align||e.ai?e.align||e.ai:"center"}),(function(e){return e.justify||e.jc?e.justify||e.jc:"center"}),(function(e){return e.direction||e.fd?e.direction||e.fd:"row"}),(function(e){return e.wrap||e.fw?e.wrap||e.fw:""}),o.Z.desktop,o.Z.laptopL,o.Z.laptopM,(function(e){return e.laptop_direction}),o.Z.desktopL,o.Z.tabletL,(function(e){return e.tablet_direction}),s),d=((0,r.ZP)(l).withConfig({displayName:"small-container__SmallContainer",componentId:"sc-1tdg31h-0"})(["width:60%;max-width:62.5rem;@media ","{max-width:792px;}@media ","{width:60%;}@media ","{max-width:1000px;}@media ","{width:90%;padding-left:0;padding-right:0;}"],o.Z.desktop,o.Z.laptopL,o.Z.desktopL,o.Z.tabletL),n(5697)),f=n.n(d),p=(0,r.ZP)(l).withConfig({displayName:"flex-grid-container__FlexGridContainer",componentId:"sc-1f651nj-0"})(["flex-wrap:wrap;align-items:stretch;align-content:stretch;justify-content:",";width:100%;& > *{flex-shrink:0;width:",";margin:",";@media ","{margin:",";width:",";}}& >:nth-child(","n + 1){margin-left:0;}& >:nth-child(","n + 1){&:not(:first-child){margin-right:0;}}"],(function(e){return e.justify?e.justify:"space-between"}),(function(e){return e.content_width?e.content_width:"48%"}),(function(e){return e.gap?e.gap:"0 1.5rem"}),o.Z.tabletL,(function(e){return e.mobile_gap?e.mobile_gap:"1.5rem 0"}),(function(e){return e.mobile_content_width?e.mobile_content_width:"48%"}),(function(e){return e.grid}),(function(e){return parseInt(e.grid)-1})),g=p;p.propTypes={content_width:f().oneOfType([f().string,f().number]),gap:f().string,grid:f().oneOfType([f().string,f().number]),justify:f().string};var h=(0,r.ZP)(i.ZP).attrs({as:"section"}).withConfig({displayName:"section-container__SectionContainer",componentId:"sc-1vu2hou-0"})(["width:100%;padding:",";position:",";background-color:var(--color-",");"],(function(e){return e.padding||"8rem 0"}),(function(e){return e.position||"static"}),(function(e){return e.background||"white"})),M=((0,r.ZP)(l).withConfig({displayName:"grid-container__GridContainer",componentId:"sc-60cfwo-0"})(["text-align:",";display:block;"],(function(e){return e.align||"left"})),(0,r.ZP)(i.ZP).withConfig({displayName:"css-grid__CssGrid",componentId:"sxb8i9-0"})(["display:grid;height:",";margin:",";grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";align-items:",";justify-items:",";background-color:",";@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}"],(function(e){return e.height||"100%"}),(function(e){return e.margin||"0"}),(function(e){return e.columns||"auto"}),(function(e){return e.grid_gap||""}),(function(e){return e.rows||"auto"}),(function(e){return e.column_gap||""}),(function(e){return e.row_gap||""}),(function(e){return e.align||"start"}),(function(e){return e.justify||"unset"}),(function(e){return e.bgcolor||"none"}),o.Z.laptopL,(function(e){return e.laptop_columns?e.laptop_columns:e.columns}),(function(e){return e.laptop_grid_gap?e.laptop_grid_gap:e.grid_gap}),(function(e){return e.laptop_rows?e.laptop_rows:e.rows}),(function(e){return e.laptop_column_gap?e.laptop_column_gap:e.column_gap}),(function(e){return e.laptop_row_gap?e.laptop_row_gap:e.row_gap}),o.Z.tabletL,(function(e){return e.tablet_columns?e.tablet_columns:e.columns}),(function(e){return e.tablet_grid_gap?e.tablet_grid_gap:e.grid_gap}),(function(e){return e.tablet_rows?e.tablet_rows:e.rows}),(function(e){return e.tablet_column_gap?e.tablet_column_gap:e.column_gap}),(function(e){return e.tablet_row_gap?e.tablet_row_gap:e.row_gap}),o.Z.tabletS,(function(e){return e.mobile_columns?e.mobile_columns:e.columns}),(function(e){return e.mobile_grid_gap?e.mobile_grid_gap:e.grid_gap}),(function(e){return e.mobile_rows?e.mobile_rows:e.rows}),(function(e){return e.mobile_column_gap?e.mobile_column_gap:e.column_gap}),(function(e){return e.mobile_row_gap?e.mobile_row_gap:e.row_gap}))),m=r.ZP.div.withConfig({displayName:"css-grid__CssGridColumn",componentId:"sxb8i9-1"})(["padding:",";align-self:",";justify-self:",";background-color:",";height:",";"],(function(e){return e.padding||"0"}),(function(e){return e.align||"stretch"}),(function(e){return e.justify||"initial"}),(function(e){return e.bgcolor||"none"}),(function(e){return e.height||"auto"})),y=M;M.propTypes={align:f().string,bgcolor:f().string,column_gap:f().string,columns:f().string,justify:f().string,margin:f().string,row_gap:f().string},m.propTypes={align:f().string,bgcolor:f().string,height:f().string,justify:f().string,padding:f().string};var j,v,N,w,I=n(18),L=n(7294),b=n(4839),S=n.n(b),D=n(3302),A=n.n(D),x=n(6494),C=n.n(x),E="bodyAttributes",T="htmlAttributes",z="titleAttributes",O={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title"},k=(Object.keys(O).map((function(e){return O[e]})),"charset"),_="cssText",P="href",U="http-equiv",Y="innerHTML",Z="itemprop",R="name",Q="property",W="rel",G="src",B="target",V={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},H="defaultTitle",F="defer",J="encodeSpecialCharacters",X="onChangeClientState",q="titleTemplate",K=Object.keys(V).reduce((function(e,t){return e[V[t]]=t,e}),{}),$=[O.NOSCRIPT,O.SCRIPT,O.STYLE],ee="data-react-helmet",te="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ne=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},re=function(){function e(e,t){for(var n=0;n=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},ae=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t},ue=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!1===t?String(e):String(e).replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")},ce=function(e){var t=pe(e,O.TITLE),n=pe(e,q);if(n&&t)return n.replace(/%s/g,(function(){return Array.isArray(t)?t.join(""):t}));var r=pe(e,H);return t||r||void 0},se=function(e){return pe(e,X)||function(){}},le=function(e,t){return t.filter((function(t){return void 0!==t[e]})).map((function(t){return t[e]})).reduce((function(e,t){return ie({},e,t)}),{})},de=function(e,t){return t.filter((function(e){return void 0!==e[O.BASE]})).map((function(e){return e[O.BASE]})).reverse().reduce((function(t,n){if(!t.length)for(var r=Object.keys(n),i=0;i=0;n--){var r=e[n];if(r.hasOwnProperty(t))return r[t]}return null},ge=(j=Date.now(),function(e){var t=Date.now();t-j>16?(j=t,e(t)):setTimeout((function(){ge(e)}),0)}),he=function(e){return clearTimeout(e)},Me="undefined"!=typeof window?window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||ge:n.g.requestAnimationFrame||ge,me="undefined"!=typeof window?window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||he:n.g.cancelAnimationFrame||he,ye=function(e){return console&&"function"==typeof console.warn&&console.warn(e)},je=null,ve=function(e,t){var n=e.baseTag,r=e.bodyAttributes,i=e.htmlAttributes,o=e.linkTags,a=e.metaTags,u=e.noscriptTags,c=e.onChangeClientState,s=e.scriptTags,l=e.styleTags,d=e.title,f=e.titleAttributes;Ie(O.BODY,r),Ie(O.HTML,i),we(d,f);var p={baseTag:Le(O.BASE,n),linkTags:Le(O.LINK,o),metaTags:Le(O.META,a),noscriptTags:Le(O.NOSCRIPT,u),scriptTags:Le(O.SCRIPT,s),styleTags:Le(O.STYLE,l)},g={},h={};Object.keys(p).forEach((function(e){var t=p[e],n=t.newTags,r=t.oldTags;n.length&&(g[e]=n),r.length&&(h[e]=p[e].oldTags)})),t&&t(),c(e,g,h)},Ne=function(e){return Array.isArray(e)?e.join(""):e},we=function(e,t){void 0!==e&&document.title!==e&&(document.title=Ne(e)),Ie(O.TITLE,t)},Ie=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var r=n.getAttribute(ee),i=r?r.split(","):[],o=[].concat(i),a=Object.keys(t),u=0;u=0;d--)n.removeAttribute(o[d]);i.length===o.length?n.removeAttribute(ee):n.getAttribute(ee)!==a.join(",")&&n.setAttribute(ee,a.join(","))}},Le=function(e,t){var n=document.head||document.querySelector(O.HEAD),r=n.querySelectorAll(e+"["+"data-react-helmet]"),i=Array.prototype.slice.call(r),o=[],a=void 0;return t&&t.length&&t.forEach((function(t){var n=document.createElement(e);for(var r in t)if(t.hasOwnProperty(r))if(r===Y)n.innerHTML=t.innerHTML;else if(r===_)n.styleSheet?n.styleSheet.cssText=t.cssText:n.appendChild(document.createTextNode(t.cssText));else{var u=void 0===t[r]?"":t[r];n.setAttribute(r,u)}n.setAttribute(ee,"true"),i.some((function(e,t){return a=t,n.isEqualNode(e)}))?i.splice(a,1):o.push(n)})),i.forEach((function(e){return e.parentNode.removeChild(e)})),o.forEach((function(e){return n.appendChild(e)})),{oldTags:i,newTags:o}},be=function(e){return Object.keys(e).reduce((function(t,n){var r=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+r:r}),"")},Se=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[V[n]||n]=e[n],t}),t)},De=function(e,t,n){switch(e){case O.TITLE:return{toComponent:function(){return e=t.title,n=t.titleAttributes,(r={key:e})[ee]=!0,i=Se(n,r),[L.createElement(O.TITLE,i,e)];var e,n,r,i},toString:function(){return function(e,t,n,r){var i=be(n),o=Ne(t);return i?"<"+e+' data-react-helmet="true" '+i+">"+ue(o,r)+"":"<"+e+' data-react-helmet="true">'+ue(o,r)+""}(e,t.title,t.titleAttributes,n)}};case E:case T:return{toComponent:function(){return Se(t)},toString:function(){return be(t)}};default:return{toComponent:function(){return function(e,t){return t.map((function(t,n){var r,i=((r={key:n})[ee]=!0,r);return Object.keys(t).forEach((function(e){var n=V[e]||e;if(n===Y||n===_){var r=t.innerHTML||t.cssText;i.dangerouslySetInnerHTML={__html:r}}else i[n]=t[e]})),L.createElement(e,i)}))}(e,t)},toString:function(){return function(e,t,n){return t.reduce((function(t,r){var i=Object.keys(r).filter((function(e){return!(e===Y||e===_)})).reduce((function(e,t){var i=void 0===r[t]?t:t+'="'+ue(r[t],n)+'"';return e?e+" "+i:i}),""),o=r.innerHTML||r.cssText||"",a=-1===$.indexOf(e);return t+"<"+e+' data-react-helmet="true" '+i+(a?"/>":">"+o+"")}),"")}(e,t,n)}}}},Ae=function(e){var t=e.baseTag,n=e.bodyAttributes,r=e.encode,i=e.htmlAttributes,o=e.linkTags,a=e.metaTags,u=e.noscriptTags,c=e.scriptTags,s=e.styleTags,l=e.title,d=void 0===l?"":l,f=e.titleAttributes;return{base:De(O.BASE,t,r),bodyAttributes:De(E,n,r),htmlAttributes:De(T,i,r),link:De(O.LINK,o,r),meta:De(O.META,a,r),noscript:De(O.NOSCRIPT,u,r),script:De(O.SCRIPT,c,r),style:De(O.STYLE,s,r),title:De(O.TITLE,{title:d,titleAttributes:f},r)}},xe=S()((function(e){return{baseTag:de([P,B],e),bodyAttributes:le(E,e),defer:pe(e,F),encode:pe(e,J),htmlAttributes:le(T,e),linkTags:fe(O.LINK,[W,P],e),metaTags:fe(O.META,[R,k,U,Q,Z],e),noscriptTags:fe(O.NOSCRIPT,[Y],e),onChangeClientState:se(e),scriptTags:fe(O.SCRIPT,[G,Y],e),styleTags:fe(O.STYLE,[_],e),title:ce(e),titleAttributes:le(z,e)}}),(function(e){je&&me(je),e.defer?je=Me((function(){ve(e,(function(){je=null}))})):(ve(e),je=null)}),Ae)((function(){return null})),Ce=(v=xe,w=N=function(e){function t(){return ne(this,t),ae(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.shouldComponentUpdate=function(e){return!A()(this.props,e)},t.prototype.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case O.SCRIPT:case O.NOSCRIPT:return{innerHTML:t};case O.STYLE:return{cssText:t}}throw new Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")},t.prototype.flattenArrayTypeChildren=function(e){var t,n=e.child,r=e.arrayTypeChildren,i=e.newChildProps,o=e.nestedChildren;return ie({},r,((t={})[n.type]=[].concat(r[n.type]||[],[ie({},i,this.mapNestedChildrenToProps(n,o))]),t))},t.prototype.mapObjectTypeChildren=function(e){var t,n,r=e.child,i=e.newProps,o=e.newChildProps,a=e.nestedChildren;switch(r.type){case O.TITLE:return ie({},i,((t={})[r.type]=a,t.titleAttributes=ie({},o),t));case O.BODY:return ie({},i,{bodyAttributes:ie({},o)});case O.HTML:return ie({},i,{htmlAttributes:ie({},o)})}return ie({},i,((n={})[r.type]=ie({},o),n))},t.prototype.mapArrayTypeChildrenToProps=function(e,t){var n=ie({},t);return Object.keys(e).forEach((function(t){var r;n=ie({},n,((r={})[t]=e[t],r))})),n},t.prototype.warnOnInvalidChildren=function(e,t){return!0},t.prototype.mapChildrenToProps=function(e,t){var n=this,r={};return L.Children.forEach(e,(function(e){if(e&&e.props){var i=e.props,o=i.children,a=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[K[n]||n]=e[n],t}),t)}(oe(i,["children"]));switch(n.warnOnInvalidChildren(e,o),e.type){case O.LINK:case O.META:case O.NOSCRIPT:case O.SCRIPT:case O.STYLE:r=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:r,newChildProps:a,nestedChildren:o});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:a,nestedChildren:o})}}})),t=this.mapArrayTypeChildrenToProps(r,t)},t.prototype.render=function(){var e=this.props,t=e.children,n=oe(e,["children"]),r=ie({},n);return t&&(r=this.mapChildrenToProps(t,r)),L.createElement(v,r)},re(t,null,[{key:"canUseDOM",set:function(e){v.canUseDOM=e}}]),t}(L.Component),N.propTypes={base:f().object,bodyAttributes:f().object,children:f().oneOfType([f().arrayOf(f().node),f().node]),defaultTitle:f().string,defer:f().bool,encodeSpecialCharacters:f().bool,htmlAttributes:f().object,link:f().arrayOf(f().object),meta:f().arrayOf(f().object),noscript:f().arrayOf(f().object),onChangeClientState:f().func,script:f().arrayOf(f().object),style:f().arrayOf(f().object),title:f().string,titleAttributes:f().object,titleTemplate:f().string},N.defaultProps={defer:!0,encodeSpecialCharacters:!0},N.peek=v.peek,N.rewind=function(){var e=v.rewind();return e||(e=Ae({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}})),e},w);Ce.renderStatic=Ce.rewind;var Ee=n(5444),Te=n(4443),ze=n(5262),Oe=n.n(ze),ke=n.p+"static/og_deriv-7765b1f93af49430017646938596af4f.png",_e=["/careers","/careers/"],Pe=Object.keys(Oe());Pe.push("x-default");var Ue=function(e){var t=e.description,n=e.meta,r=e.title,i=e.no_index,o=e.has_organization_schema,a=e.meta_attributes,u=[];u=(0,Ee.useStaticQuery)("764694655");var c="staging"==={}.GATSBY_ENV,s=t||u.site.siteMetadata.description,l=u.site.siteMetadata.siteUrl,d=L.useContext(Te.RD),f=d.locale,p=d.pathname,g="/"===p.charAt(0)?p:"/"+p,h=(0,Te.NC)("Online trading with Deriv | Simple. Flexible. Reliable."),M=(0,Te.NC)("Trading platforms designed with you in mind."),m=!1,y="",j={};if(g){var v=g.split("/"),N=v[1],w=N.replace("-","_");y=g,Pe.includes(w)&&(v.splice(1,1),y=v.join("/")),"ach"===N&&(m=!0)}o&&(j={"@context":"https://schema.org","@type":"Organization",name:"Deriv",alternateName:"Deriv.com",url:"https://deriv.com",logo:"https://deriv.com/static/1b57a116945933314eefeec0030c8e9d/2a4de/logo.png",sameAs:["https://www.facebook.com/derivdotcom","https://www.twitter.com/derivdotcom","https://www.instagram.com/deriv_official","https://youtube.com/c/Derivdotcom","https://www.linkedin.com/company/derivdotcom/","https://deriv.com"]});var b=_e.includes(y);return L.createElement(Ce,{htmlAttributes:{lang:f},title:r,defer:!1,meta:[{name:"description",content:s},{name:"google",content:"notranslate"},{property:"og:title",content:(null==a?void 0:a.og_title)||h},{property:"og:site_name",content:r},{property:"og:description",content:(null==a?void 0:a.og_description)||M},{property:"og:type",content:(null==a?void 0:a.og_type)||"website"},{property:"og:locale",content:f},{property:"og:image",content:(null==a?void 0:a.og_img)||ke},{property:"og:image:width",content:(null==a?void 0:a.og_img_width)||"600"},{property:"og:image:height",content:(null==a?void 0:a.og_img_height)||"315"},{name:"twitter:card",content:"summary"},{name:"twitter:creator",content:u.site.siteMetadata.author},{name:"twitter:title",content:r},{name:"twitter:description",content:s},{name:"format-detection",content:"telephone=no"},{name:"yandex-verification",content:"4ddb94bbff872c63"},{name:"referrer",content:"origin"},{name:"version",content:{}.GATSBY_DERIV_VERSION}].concat((0,I.Z)(i||c||m?[{name:"robots",content:"noindex"}]:[])).concat(n)},o&&L.createElement("script",{type:"application/ld+json"},JSON.stringify(j)),!b&&Pe.map((function(e){if("ach"!==e){var t=e.replace("_","-"),n=""+l+("en"===e||"x-default"===e?"":"/"+t)+y;return L.createElement("link",{rel:"alternate",hrefLang:t,href:n,key:t})}})))};Ue.defaultProps={meta:[]};var Ye=Ue,Ze=n(3249)},3249:function(e,t,n){"use strict";var r=n(18),i=n(9756),o=n(7294),a=n(2343),u=n(8802),c=["children","max_width"],s=["children","min_width"];t.ZP={Eu:function(e){var t=e.children;return o.useContext(u.c).is_eu_country?o.createElement(o.Fragment,null,t):null},NonEU:function(e){var t=e.children;return!1===o.useContext(u.c).is_eu_country?o.createElement(o.Fragment,null,t):null},Mobile:function(e){var t=e.children,n=e.min_width,u=(0,i.Z)(e,s);return o.createElement(a.pU,Object.assign({between:["start"].concat((0,r.Z)(n?[n]:["tabletL"]))},u),t)},Desktop:function(e){var t=e.children,n=e.max_width,r=(0,i.Z)(e,c);return o.createElement(a.pU,Object.assign({greaterThanOrEqual:n||"tabletL"},r),t)}}},9843:function(e,t,n){"use strict";n.d(t,{O:function(){return i}});var r=n(7294),i=function(e,t,n,i){void 0===i&&(i="click");var o=function(r){if(e.current&&!e.current.contains(r.target)){if(n&&n.current.contains(r.target))return;t()}};r.useEffect((function(){return document.addEventListener(i,o),function(){document.removeEventListener(i,o)}}),[])}},4133:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var r=n(7294),i=n(4215),o=n(4845),a=n(9982),u=n(476),c={init:function(){var e,t=(0,a.wm)()+"?app_id="+(0,a.rh)()+"&l="+("ach"===(0,o.G3)()?(0,o.Wo)():null===(e=(0,o.G3)())||void 0===e?void 0:e.replace("-","_"))+"&brand="+u.K_.toLowerCase();return new WebSocket(t)}},s=function(){var e=function(e,t,n){var a=new i.eR(t),u=(0,r.useState)((function(){var n=a.get(t);return n?(0,o.sz)(n):e})),c=u[0],s=u[1];return(0,r.useEffect)((function(){(0,o.MX)(c)?a.remove():a.set(t,JSON.stringify(c),n)}),[t,c]),[c,s]}(null,"website_status",{expires:(0,o.Cp)(7)}),t=e[0],n=e[1],a=(0,r.useState)(!0),u=a[0],s=a[1];return(0,r.useEffect)((function(){if(s(!0),t)s(!1);else{var e=c.init();e.onopen=function(){e.send(JSON.stringify({website_status:1}))},e.onmessage=function(t){var r=JSON.parse(t.data);if(!r.error){var i=r.website_status,o=i.clients_country,a=i.crypto_config;n({clients_country:o,crypto_config:a})}s(!1),e.close()}}}),[t]),[t,n,u]}},258:function(e,t,n){"use strict";n.d(t,{L:function(){return i},v:function(){return o}});var r=n(7294),i=r.createContext(!0),o=function(e){var t=e.has_mounted,n=e.show_cookie_banner,o=e.children,a=e.setModalPayload,u=e.toggleModal;return r.createElement(i.Provider,{value:{has_mounted:t,show_cookie_banner:n,setModalPayload:a,toggleModal:u}},o)}},4443:function(e,t,n){"use strict";n.d(t,{Ww:function(){return ae},RD:function(){return r.RD},Xx:function(){return St},UE:function(){return ue.U},Wm:function(){return it},q7:function(){return r.q7},NC:function(){return $e}});var r=n(316),i=n(7294),o=n(9713),a=n.n(o),u=n(3038),c=n.n(u),s=n(6479),l=n.n(s),d=n(4575),f=n.n(d),p=n(3913),g=n.n(p);function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function M(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};y=M(M({},y),e)}(e.options.react),function(e){m=e}(e)}};function L(){if(console&&console.warn){for(var e,t=arguments.length,n=new Array(t),r=0;r2&&void 0!==arguments[2]?arguments[2]:{};if(!t.languages||!t.languages.length)return S("i18n.languages were undefined or empty",t.languages),!0;var r=t.languages[0],i=!!t.options&&t.options.fallbackLng,o=t.languages[t.languages.length-1];if("cimode"===r.toLowerCase())return!0;var a=function(e,n){var r=t.services.backendConnector.state["".concat(e,"|").concat(n)];return-1===r||2===r};return!(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1&&t.services.backendConnector.backend&&t.isLanguageChangingTo&&!a(t.isLanguageChangingTo,e))&&(!!t.hasResourceBundle(r,e)||(!t.services.backendConnector.backend||!(!a(r,e)||i&&!a(o,e))))}function x(e){return e.displayName||e.name||("string"==typeof e&&e.length>0?e:"Unknown")}function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},n=t.i18n,r=(0,i.useContext)(j)||{},o=r.i18n,a=r.defaultNS,u=n||o||w();if(u&&!u.reportNamespaces&&(u.reportNamespaces=new N),!u){S("You will need to pass in an i18next instance by using initReactI18next");var s=function(e){return Array.isArray(e)?e[e.length-1]:e},l=[s,{},!1];return l.t=s,l.i18n={},l.ready=!1,l}u.options.react&&void 0!==u.options.react.wait&&S("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");var d=E(E(E({},v()),u.options.react),t),f=d.useSuspense,p=e||a||u.options&&u.options.defaultNS;p="string"==typeof p?[p]:p||["translation"],u.reportNamespaces.addUsedNamespaces&&u.reportNamespaces.addUsedNamespaces(p);var g=(u.isInitialized||u.initializedStoreOnce)&&p.every((function(e){return A(e,u,d)}));function h(){return u.getFixedT(null,"fallback"===d.nsMode?p:p[0])}var M=(0,i.useState)(h),m=c()(M,2),y=m[0],I=m[1],L=(0,i.useRef)(!0);(0,i.useEffect)((function(){var e=d.bindI18n,t=d.bindI18nStore;function n(){L.current&&I(h)}return L.current=!0,g||f||D(u,p,(function(){L.current&&I(h)})),e&&u&&u.on(e,n),t&&u&&u.store.on(t,n),function(){L.current=!1,e&&u&&e.split(" ").forEach((function(e){return u.off(e,n)})),t&&u&&t.split(" ").forEach((function(e){return u.store.off(e,n)}))}}),[u,p.join()]);var b=(0,i.useRef)(!0);(0,i.useEffect)((function(){L.current&&!b.current&&I(h),b.current=!1}),[u]);var x=[y,u,g];if(x.t=y,x.i18n=u,x.ready=g,g)return x;if(!g&&!f)return x;throw new Promise((function(e){D(u,p,(function(){e()}))}))}var z=["forwardedRef"];function O(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function k(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};return function(n){function r(r){var o=r.forwardedRef,a=l()(r,z),u=T(e,a),s=c()(u,3),d=s[0],f=s[1],p=s[2],g=k(k({},a),{},{t:d,i18n:f,tReady:p});return t.withRef&&o?g.ref=o:!t.withRef&&o&&(g.forwardedRef=o),i.createElement(n,g)}r.displayName="withI18nextTranslation(".concat(x(n),")"),r.WrappedComponent=n;return t.withRef?i.forwardRef((function(e,t){return i.createElement(r,Object.assign({},e,{forwardedRef:t}))})):r}}()((function(e){var t=e.i18n,n=e.is_high_nav,r=e.short_name,o=i.useState(t.language),a=o[0],u=o[1],c=function(){var e=(0,i.useState)(!1),t=e[0],n=e[1],r=(0,i.useState)(!1),o=r[0],a=r[1];return(0,i.useEffect)((function(){var e=setInterval((function(){a((0,R.KR)((0,R.ge)()))}),1e3);return function(){return clearInterval(e)}}),[]),(0,i.useEffect)((function(){o?JSON.stringify(o)!=JSON.stringify(t)&&n(o):n(!1)}),[o]),t}();i.useEffect((function(){u(t.language)}),[t.language]),i.useEffect((function(){if(!U().get("lang_is_fixed")&&c.preferred_language){var e=c.preferred_language.toLowerCase();if(e!==a){var t=e.replace("_","-");l({target:{id:"/"+t+"/"}})}}}),[c]);var s,l=function(e){var t=e.target.id,n=a||"en",r="/en/"===t?"/":t;if("/"+n+"/"!==t){var i=window.location.pathname,o=window.location.hash,u=""+r+("en"===n?i.replace(/\//,""):(0,R.Lz)(i))+o;"/ach/"===r?(localStorage.setItem("i18n","ach"),window.location.href=u):(0,_.navigate)(u,{hrefLang:r})}};return i.createElement(ne,{onChange:l,option_list:ie.map((function(e){if(!oe.includes(e)||!(0,re.yv)()){var t=Z()[e],n=t.display_name,r=t.path,i=t.short_name;return{value:"/"+r+"/",text:n,is_selected:Z()[a].short_name===i,path:r}}})),default_option:(s=Z()[a],{short_name:s.short_name,path:s.path}),has_short_name:!!r,is_high_nav:!!n})})),ue=n(2818);function ce(e){return(ce="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function se(e){var t=function(e,t){if("object"!==ce(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==ce(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===ce(t)?t:String(t)}function le(e,t,n){return(t=se(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function de(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};fe(this,e),this.init(t,n)}return ge(e,[{key:"init",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.prefix=t.prefix||"i18next:",this.logger=e||ve,this.options=t,this.debug=t.debug}},{key:"setDebug",value:function(e){this.debug=e}},{key:"log",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n1?t-1:0),r=1;r-1?e.replace(/###/g,"."):e}function i(){return!e||"string"==typeof e}for(var o="string"!=typeof t?[].concat(t):t.split(".");o.length>1;){if(i())return{};var a=r(o.shift());!e[a]&&n&&(e[a]=new n),e=Object.prototype.hasOwnProperty.call(e,a)?e[a]:{}}return i()?{}:{obj:e,k:r(o.shift())}}function De(e,t,n){var r=Se(e,t,Object);r.obj[r.k]=n}function Ae(e,t){var n=Se(e,t),r=n.obj,i=n.k;if(r)return r[i]}function xe(e,t,n){var r=Ae(e,n);return void 0!==r?r:Ae(t,n)}function Ce(e,t,n){for(var r in t)"__proto__"!==r&&"constructor"!==r&&(r in e?"string"==typeof e[r]||e[r]instanceof String||"string"==typeof t[r]||t[r]instanceof String?n&&(e[r]=t[r]):Ce(e[r],t[r],n):e[r]=t[r]);return e}function Ee(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}var Te={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};function ze(e){return"string"==typeof e?e.replace(/[&<>"'\/]/g,(function(e){return Te[e]})):e}var Oe="undefined"!=typeof window&&window.navigator&&window.navigator.userAgent&&window.navigator.userAgent.indexOf("MSIE")>-1;function ke(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:".";if(e){if(e[t])return e[t];for(var r=t.split(n),i=e,o=0;oo+a;)a++,c=i[u=r.slice(o,o+a).join(n)];if(void 0===c)return;if("string"==typeof c)return c;if(u&&"string"==typeof c[u])return c[u];var s=r.slice(o+a).join(n);return s?ke(c,s,n):void 0}i=i[r[o]]}return i}}var _e=function(e){function t(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{ns:["translation"],defaultNS:"translation"};return fe(this,t),n=Me(this,me(t).call(this)),Oe&&we.call((0,he.Z)(n)),n.data=e||{},n.options=r,void 0===n.options.keySeparator&&(n.options.keySeparator="."),void 0===n.options.ignoreJSONStructure&&(n.options.ignoreJSONStructure=!0),n}return je(t,e),ge(t,[{key:"addNamespaces",value:function(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}},{key:"removeNamespaces",value:function(e){var t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=void 0!==r.keySeparator?r.keySeparator:this.options.keySeparator,o=void 0!==r.ignoreJSONStructure?r.ignoreJSONStructure:this.options.ignoreJSONStructure,a=[e,t];n&&"string"!=typeof n&&(a=a.concat(n)),n&&"string"==typeof n&&(a=a.concat(i?n.split(i):n)),e.indexOf(".")>-1&&(a=e.split("."));var u=Ae(this.data,a);return u||!o||"string"!=typeof n?u:ke(this.data&&this.data[e]&&this.data[e][t],n,i)}},{key:"addResource",value:function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{silent:!1},o=this.options.keySeparator;void 0===o&&(o=".");var a=[e,t];n&&(a=a.concat(o?n.split(o):n)),e.indexOf(".")>-1&&(r=t,t=(a=e.split("."))[1]),this.addNamespaces(t),De(this.data,a,r),i.silent||this.emit("added",e,t,n,r)}},{key:"addResources",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{silent:!1};for(var i in n)"string"!=typeof n[i]&&"[object Array]"!==Object.prototype.toString.apply(n[i])||this.addResource(e,t,i,n[i],{silent:!0});r.silent||this.emit("added",e,t,n)}},{key:"addResourceBundle",value:function(e,t,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{silent:!1},a=[e,t];e.indexOf(".")>-1&&(r=n,n=t,t=(a=e.split("."))[1]),this.addNamespaces(t);var u=Ae(this.data,a)||{};r?Ce(u,n,i):u=de({},u,n),De(this.data,a,u),o.silent||this.emit("added",e,t,n)}},{key:"removeResourceBundle",value:function(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}},{key:"hasResourceBundle",value:function(e,t){return void 0!==this.getResource(e,t)}},{key:"getResourceBundle",value:function(e,t){return t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI?de({},{},this.getResource(e,t)):this.getResource(e,t)}},{key:"getDataByLanguage",value:function(e){return this.data[e]}},{key:"toJSON",value:function(){return this.data}}]),t}(we),Pe={processors:{},addPostProcessor:function(e){this.processors[e.name]=e},handle:function(e,t,n,r,i){var o=this;return e.forEach((function(e){o.processors[e]&&(t=o.processors[e].process(t,n,r,i))})),t}},Ue={},Ye=function(e){function t(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return fe(this,t),n=Me(this,me(t).call(this)),Oe&&we.call((0,he.Z)(n)),be(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],e,(0,he.Z)(n)),n.options=r,void 0===n.options.keySeparator&&(n.options.keySeparator="."),n.logger=Ne.create("translator"),n}return je(t,e),ge(t,[{key:"changeLanguage",value:function(e){e&&(this.language=e)}},{key:"exists",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}},n=this.resolve(e,t);return n&&void 0!==n.res}},{key:"extractFromKey",value:function(e,t){var n=void 0!==t.nsSeparator?t.nsSeparator:this.options.nsSeparator;void 0===n&&(n=":");var r=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,i=t.ns||this.options.defaultNS;if(n&&e.indexOf(n)>-1){var o=e.match(this.interpolator.nestingRegexp);if(o&&o.length>0)return{key:e,namespaces:i};var a=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(a[0])>-1)&&(i=a.shift()),e=a.join(r)}return"string"==typeof i&&(i=[i]),{key:e,namespaces:i}}},{key:"translate",value:function(e,n,r){var i=this;if("object"!==ce(n)&&this.options.overloadTranslationOptionHandler&&(n=this.options.overloadTranslationOptionHandler(arguments)),n||(n={}),null==e)return"";Array.isArray(e)||(e=[String(e)]);var o=void 0!==n.keySeparator?n.keySeparator:this.options.keySeparator,a=this.extractFromKey(e[e.length-1],n),u=a.key,c=a.namespaces,s=c[c.length-1],l=n.lng||this.language,d=n.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(l&&"cimode"===l.toLowerCase()){if(d){var f=n.nsSeparator||this.options.nsSeparator;return s+f+u}return u}var p=this.resolve(e,n),g=p&&p.res,h=p&&p.usedKey||u,M=p&&p.exactUsedKey||u,m=Object.prototype.toString.apply(g),y=["[object Number]","[object Function]","[object RegExp]"],j=void 0!==n.joinArrays?n.joinArrays:this.options.joinArrays,v=!this.i18nFormat||this.i18nFormat.handleAsObject,N="string"!=typeof g&&"boolean"!=typeof g&&"number"!=typeof g;if(v&&g&&N&&y.indexOf(m)<0&&("string"!=typeof j||"[object Array]"!==m)){if(!n.returnObjects&&!this.options.returnObjects)return this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(h,g,de({},n,{ns:c})):"key '".concat(u," (").concat(this.language,")' returned an object instead of string.");if(o){var w="[object Array]"===m,I=w?[]:{},L=w?M:h;for(var b in g)if(Object.prototype.hasOwnProperty.call(g,b)){var S="".concat(L).concat(o).concat(b);I[b]=this.translate(S,de({},n,{joinArrays:!1,ns:c})),I[b]===S&&(I[b]=g[b])}g=I}}else if(v&&"string"==typeof j&&"[object Array]"===m)(g=g.join(j))&&(g=this.extendTranslation(g,e,n,r));else{var D=!1,A=!1,x=void 0!==n.count&&"string"!=typeof n.count,C=t.hasDefaultValue(n),E=x?this.pluralResolver.getSuffix(l,n.count):"",T=n["defaultValue".concat(E)]||n.defaultValue;!this.isValidLookup(g)&&C&&(D=!0,g=T),this.isValidLookup(g)||(A=!0,g=u);var z=C&&T!==g&&this.options.updateMissing;if(A||D||z){if(this.logger.log(z?"updateKey":"missingKey",l,s,u,z?T:g),o){var O=this.resolve(u,de({},n,{keySeparator:!1}));O&&O.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}var k=[],_=this.languageUtils.getFallbackCodes(this.options.fallbackLng,n.lng||this.language);if("fallback"===this.options.saveMissingTo&&_&&_[0])for(var P=0;P<_.length;P++)k.push(_[P]);else"all"===this.options.saveMissingTo?k=this.languageUtils.toResolveHierarchy(n.lng||this.language):k.push(n.lng||this.language);var U=function(e,t,r){i.options.missingKeyHandler?i.options.missingKeyHandler(e,s,t,z?r:g,z,n):i.backendConnector&&i.backendConnector.saveMissing&&i.backendConnector.saveMissing(e,s,t,z?r:g,z,n),i.emit("missingKey",e,s,t,g)};this.options.saveMissing&&(this.options.saveMissingPlurals&&x?k.forEach((function(e){i.pluralResolver.getSuffixes(e).forEach((function(t){U([e],u+t,n["defaultValue".concat(t)]||T)}))})):U(k,u,T))}g=this.extendTranslation(g,e,n,p,r),A&&g===u&&this.options.appendNamespaceToMissingKey&&(g="".concat(s,":").concat(u)),A&&this.options.parseMissingKeyHandler&&(g=this.options.parseMissingKeyHandler(g))}return g}},{key:"extendTranslation",value:function(e,t,n,r,i){var o=this;if(this.i18nFormat&&this.i18nFormat.parse)e=this.i18nFormat.parse(e,n,r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init(de({},n,{interpolation:de({},this.options.interpolation,n.interpolation)}));var a,u=n.interpolation&&n.interpolation.skipOnVariables||this.options.interpolation.skipOnVariables;if(u){var c=e.match(this.interpolator.nestingRegexp);a=c&&c.length}var s=n.replace&&"string"!=typeof n.replace?n.replace:n;if(this.options.interpolation.defaultVariables&&(s=de({},this.options.interpolation.defaultVariables,s)),e=this.interpolator.interpolate(e,s,n.lng||this.language,n),u){var l=e.match(this.interpolator.nestingRegexp);a<(l&&l.length)&&(n.nest=!1)}!1!==n.nest&&(e=this.interpolator.nest(e,(function(){for(var e=arguments.length,r=new Array(e),a=0;a1&&void 0!==arguments[1]?arguments[1]:{};return"string"==typeof e&&(e=[e]),e.forEach((function(e){if(!a.isValidLookup(t)){var c=a.extractFromKey(e,u),s=c.key;n=s;var l=c.namespaces;a.options.fallbackNS&&(l=l.concat(a.options.fallbackNS));var d=void 0!==u.count&&"string"!=typeof u.count,f=void 0!==u.context&&"string"==typeof u.context&&""!==u.context,p=u.lngs?u.lngs:a.languageUtils.toResolveHierarchy(u.lng||a.language,u.fallbackLng);l.forEach((function(e){a.isValidLookup(t)||(o=e,!Ue["".concat(p[0],"-").concat(e)]&&a.utils&&a.utils.hasLoadedNamespace&&!a.utils.hasLoadedNamespace(o)&&(Ue["".concat(p[0],"-").concat(e)]=!0,a.logger.warn('key "'.concat(n,'" for languages "').concat(p.join(", "),'" won\'t get resolved as namespace "').concat(o,'" was not yet loaded'),"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),p.forEach((function(n){if(!a.isValidLookup(t)){i=n;var o,c,l=s,p=[l];if(a.i18nFormat&&a.i18nFormat.addLookupKeys)a.i18nFormat.addLookupKeys(p,s,n,e,u);else d&&(o=a.pluralResolver.getSuffix(n,u.count)),d&&f&&p.push(l+o),f&&p.push(l+="".concat(a.options.contextSeparator).concat(u.context)),d&&p.push(l+=o);for(;c=p.pop();)a.isValidLookup(t)||(r=c,t=a.getResource(n,e,c,u))}})))}))}})),{res:t,usedKey:n,exactUsedKey:r,usedLng:i,usedNS:o}}},{key:"isValidLookup",value:function(e){return!(void 0===e||!this.options.returnNull&&null===e||!this.options.returnEmptyString&&""===e)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return this.i18nFormat&&this.i18nFormat.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}}],[{key:"hasDefaultValue",value:function(e){var t="defaultValue";for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&t===n.substring(0,t.length)&&void 0!==e[n])return!0;return!1}}]),t}(we);function Ze(e){return e.charAt(0).toUpperCase()+e.slice(1)}var Re=function(){function e(t){fe(this,e),this.options=t,this.whitelist=this.options.supportedLngs||!1,this.supportedLngs=this.options.supportedLngs||!1,this.logger=Ne.create("languageUtils")}return ge(e,[{key:"getScriptPartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return null;var t=e.split("-");return 2===t.length?null:(t.pop(),"x"===t[t.length-1].toLowerCase()?null:this.formatLanguageCode(t.join("-")))}},{key:"getLanguagePartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return e;var t=e.split("-");return this.formatLanguageCode(t[0])}},{key:"formatLanguageCode",value:function(e){if("string"==typeof e&&e.indexOf("-")>-1){var t=["hans","hant","latn","cyrl","cans","mong","arab"],n=e.split("-");return this.options.lowerCaseLng?n=n.map((function(e){return e.toLowerCase()})):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=Ze(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=Ze(n[1].toLowerCase())),t.indexOf(n[2].toLowerCase())>-1&&(n[2]=Ze(n[2].toLowerCase()))),n.join("-")}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}},{key:"isWhitelisted",value:function(e){return this.logger.deprecate("languageUtils.isWhitelisted",'function "isWhitelisted" will be renamed to "isSupportedCode" in the next major - please make sure to rename it\'s usage asap.'),this.isSupportedCode(e)}},{key:"isSupportedCode",value:function(e){return("languageOnly"===this.options.load||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}},{key:"getBestMatchFromCodes",value:function(e){var t,n=this;return e?(e.forEach((function(e){if(!t){var r=n.formatLanguageCode(e);n.options.supportedLngs&&!n.isSupportedCode(r)||(t=r)}})),!t&&this.options.supportedLngs&&e.forEach((function(e){if(!t){var r=n.getLanguagePartFromCode(e);if(n.isSupportedCode(r))return t=r;t=n.options.supportedLngs.find((function(e){if(0===e.indexOf(r))return e}))}})),t||(t=this.getFallbackCodes(this.options.fallbackLng)[0]),t):null}},{key:"getFallbackCodes",value:function(e,t){if(!e)return[];if("function"==typeof e&&(e=e(t)),"string"==typeof e&&(e=[e]),"[object Array]"===Object.prototype.toString.apply(e))return e;if(!t)return e.default||[];var n=e[t];return n||(n=e[this.getScriptPartFromCode(t)]),n||(n=e[this.formatLanguageCode(t)]),n||(n=e[this.getLanguagePartFromCode(t)]),n||(n=e.default),n||[]}},{key:"toResolveHierarchy",value:function(e,t){var n=this,r=this.getFallbackCodes(t||this.options.fallbackLng||[],e),i=[],o=function(e){e&&(n.isSupportedCode(e)?i.push(e):n.logger.warn("rejecting language code not found in supportedLngs: ".concat(e)))};return"string"==typeof e&&e.indexOf("-")>-1?("languageOnly"!==this.options.load&&o(this.formatLanguageCode(e)),"languageOnly"!==this.options.load&&"currentOnly"!==this.options.load&&o(this.getScriptPartFromCode(e)),"currentOnly"!==this.options.load&&o(this.getLanguagePartFromCode(e))):"string"==typeof e&&o(this.formatLanguageCode(e)),r.forEach((function(e){i.indexOf(e)<0&&o(n.formatLanguageCode(e))})),i}}]),e}(),Qe=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","pt","pt-BR","tg","tl","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","et","eu","fi","fo","fur","fy","gl","gu","ha","hi","hu","hy","ia","it","kk","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt-PT","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","ht","id","ja","jbo","ka","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","cnr","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21},{lngs:["he","iw"],nr:[1,2,20,21],fc:22}],We={1:function(e){return Number(e>1)},2:function(e){return Number(1!=e)},3:function(e){return 0},4:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},5:function(e){return Number(0==e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5)},6:function(e){return Number(1==e?0:e>=2&&e<=4?1:2)},7:function(e){return Number(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},8:function(e){return Number(1==e?0:2==e?1:8!=e&&11!=e?2:3)},9:function(e){return Number(e>=2)},10:function(e){return Number(1==e?0:2==e?1:e<7?2:e<11?3:4)},11:function(e){return Number(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3)},12:function(e){return Number(e%10!=1||e%100==11)},13:function(e){return Number(0!==e)},14:function(e){return Number(1==e?0:2==e?1:3==e?2:3)},15:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2)},16:function(e){return Number(e%10==1&&e%100!=11?0:0!==e?1:2)},17:function(e){return Number(1==e||e%10==1&&e%100!=11?0:1)},18:function(e){return Number(0==e?0:1==e?1:2)},19:function(e){return Number(1==e?0:0==e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3)},20:function(e){return Number(1==e?0:0==e||e%100>0&&e%100<20?1:2)},21:function(e){return Number(e%100==1?1:e%100==2?2:e%100==3||e%100==4?3:0)},22:function(e){return Number(1==e?0:2==e?1:(e<0||e>10)&&e%10==0?2:3)}};function Ge(){var e={};return Qe.forEach((function(t){t.lngs.forEach((function(n){e[n]={numbers:t.nr,plurals:We[t.fc]}}))})),e}var Be=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};fe(this,e),this.languageUtils=t,this.options=n,this.logger=Ne.create("pluralResolver"),this.rules=Ge()}return ge(e,[{key:"addRule",value:function(e,t){this.rules[e]=t}},{key:"getRule",value:function(e){return this.rules[e]||this.rules[this.languageUtils.getLanguagePartFromCode(e)]}},{key:"needsPlural",value:function(e){var t=this.getRule(e);return t&&t.numbers.length>1}},{key:"getPluralFormsOfKey",value:function(e,t){return this.getSuffixes(e).map((function(e){return t+e}))}},{key:"getSuffixes",value:function(e){var t=this,n=this.getRule(e);return n?n.numbers.map((function(n){return t.getSuffix(e,n)})):[]}},{key:"getSuffix",value:function(e,t){var n=this,r=this.getRule(e);if(r){var i=r.noAbs?r.plurals(t):r.plurals(Math.abs(t)),o=r.numbers[i];this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]&&(2===o?o="plural":1===o&&(o=""));var a=function(){return n.options.prepend&&o.toString()?n.options.prepend+o.toString():o.toString()};return"v1"===this.options.compatibilityJSON?1===o?"":"number"==typeof o?"_plural_".concat(o.toString()):a():"v2"===this.options.compatibilityJSON||this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]?a():this.options.prepend&&i.toString()?this.options.prepend+i.toString():i.toString()}return this.logger.warn("no plural rule found for: ".concat(e)),""}}]),e}(),Ve=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};fe(this,e),this.logger=Ne.create("interpolator"),this.options=t,this.format=t.interpolation&&t.interpolation.format||function(e){return e},this.init(t)}return ge(e,[{key:"init",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e.interpolation||(e.interpolation={escapeValue:!0});var t=e.interpolation;this.escape=void 0!==t.escape?t.escape:ze,this.escapeValue=void 0===t.escapeValue||t.escapeValue,this.useRawValueToEscape=void 0!==t.useRawValueToEscape&&t.useRawValueToEscape,this.prefix=t.prefix?Ee(t.prefix):t.prefixEscaped||"{{",this.suffix=t.suffix?Ee(t.suffix):t.suffixEscaped||"}}",this.formatSeparator=t.formatSeparator?t.formatSeparator:t.formatSeparator||",",this.unescapePrefix=t.unescapeSuffix?"":t.unescapePrefix||"-",this.unescapeSuffix=this.unescapePrefix?"":t.unescapeSuffix||"",this.nestingPrefix=t.nestingPrefix?Ee(t.nestingPrefix):t.nestingPrefixEscaped||Ee("$t("),this.nestingSuffix=t.nestingSuffix?Ee(t.nestingSuffix):t.nestingSuffixEscaped||Ee(")"),this.nestingOptionsSeparator=t.nestingOptionsSeparator?t.nestingOptionsSeparator:t.nestingOptionsSeparator||",",this.maxReplaces=t.maxReplaces?t.maxReplaces:1e3,this.alwaysFormat=void 0!==t.alwaysFormat&&t.alwaysFormat,this.resetRegExp()}},{key:"reset",value:function(){this.options&&this.init(this.options)}},{key:"resetRegExp",value:function(){var e="".concat(this.prefix,"(.+?)").concat(this.suffix);this.regexp=new RegExp(e,"g");var t="".concat(this.prefix).concat(this.unescapePrefix,"(.+?)").concat(this.unescapeSuffix).concat(this.suffix);this.regexpUnescape=new RegExp(t,"g");var n="".concat(this.nestingPrefix,"(.+?)").concat(this.nestingSuffix);this.nestingRegexp=new RegExp(n,"g")}},{key:"interpolate",value:function(e,t,n,r){var i,o,a,u=this,c=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{};function s(e){return e.replace(/\$/g,"$$$$")}var l=function(e){if(e.indexOf(u.formatSeparator)<0){var i=xe(t,c,e);return u.alwaysFormat?u.format(i,void 0,n,de({},r,t,{interpolationkey:e})):i}var o=e.split(u.formatSeparator),a=o.shift().trim(),s=o.join(u.formatSeparator).trim();return u.format(xe(t,c,a),s,n,de({},r,t,{interpolationkey:a}))};this.resetRegExp();var d=r&&r.missingInterpolationHandler||this.options.missingInterpolationHandler,f=r&&r.interpolation&&r.interpolation.skipOnVariables||this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:function(e){return s(e)}},{regex:this.regexp,safeValue:function(e){return u.escapeValue?s(u.escape(e)):s(e)}}].forEach((function(t){for(a=0;i=t.regex.exec(e);){if(void 0===(o=l(i[1].trim())))if("function"==typeof d){var n=d(e,i,r);o="string"==typeof n?n:""}else{if(f){o=i[0];continue}u.logger.warn("missed to pass in variable ".concat(i[1]," for interpolating ").concat(e)),o=""}else"string"==typeof o||u.useRawValueToEscape||(o=Le(o));var c=t.safeValue(o);if(e=e.replace(i[0],c),f?(t.regex.lastIndex+=c.length,t.regex.lastIndex-=i[0].length):t.regex.lastIndex=0,++a>=u.maxReplaces)break}})),e}},{key:"nest",value:function(e,t){var n,r,i=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=de({},o);function u(e,t){var n=this.nestingOptionsSeparator;if(e.indexOf(n)<0)return e;var r=e.split(new RegExp("".concat(n,"[ ]*{"))),i="{".concat(r[1]);e=r[0],i=(i=this.interpolate(i,a)).replace(/'/g,'"');try{a=JSON.parse(i),t&&(a=de({},t,a))}catch(t){return this.logger.warn("failed parsing options string in nesting for key ".concat(e),t),"".concat(e).concat(n).concat(i)}return delete a.defaultValue,e}for(a.applyPostProcessor=!1,delete a.defaultValue;n=this.nestingRegexp.exec(e);){var c=[],s=!1;if(-1!==n[0].indexOf(this.formatSeparator)&&!/{.*}/.test(n[1])){var l=n[1].split(this.formatSeparator).map((function(e){return e.trim()}));n[1]=l.shift(),c=l,s=!0}if((r=t(u.call(this,n[1].trim(),a),a))&&n[0]===e&&"string"!=typeof r)return r;"string"!=typeof r&&(r=Le(r)),r||(this.logger.warn("missed to resolve ".concat(n[1]," for nesting ").concat(e)),r=""),s&&(r=c.reduce((function(e,t){return i.format(e,t,o.lng,de({},o,{interpolationkey:n[1].trim()}))}),r.trim())),e=e.replace(n[0],r),this.regexp.lastIndex=0}return e}}]),e}();var He=function(e){function t(e,n,r){var i,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return fe(this,t),i=Me(this,me(t).call(this)),Oe&&we.call((0,he.Z)(i)),i.backend=e,i.store=n,i.services=r,i.languageUtils=r.languageUtils,i.options=o,i.logger=Ne.create("backendConnector"),i.state={},i.queue=[],i.backend&&i.backend.init&&i.backend.init(r,o.backend,o),i}return je(t,e),ge(t,[{key:"queueLoad",value:function(e,t,n,r){var i=this,o=[],a=[],u=[],c=[];return e.forEach((function(e){var r=!0;t.forEach((function(t){var u="".concat(e,"|").concat(t);!n.reload&&i.store.hasResourceBundle(e,t)?i.state[u]=2:i.state[u]<0||(1===i.state[u]?a.indexOf(u)<0&&a.push(u):(i.state[u]=1,r=!1,a.indexOf(u)<0&&a.push(u),o.indexOf(u)<0&&o.push(u),c.indexOf(t)<0&&c.push(t)))})),r||u.push(e)})),(o.length||a.length)&&this.queue.push({pending:a,loaded:{},errors:[],callback:r}),{toLoad:o,pending:a,toLoadLanguages:u,toLoadNamespaces:c}}},{key:"loaded",value:function(e,t,n){var r=e.split("|"),i=r[0],o=r[1];t&&this.emit("failedLoading",i,o,t),n&&this.store.addResourceBundle(i,o,n),this.state[e]=t?-1:2;var a={};this.queue.forEach((function(n){var r,u,c,s,l,d;r=n.loaded,u=o,s=Se(r,[i],Object),l=s.obj,d=s.k,l[d]=l[d]||[],c&&(l[d]=l[d].concat(u)),c||l[d].push(u),function(e,t){for(var n=e.indexOf(t);-1!==n;)e.splice(n,1),n=e.indexOf(t)}(n.pending,e),t&&n.errors.push(t),0!==n.pending.length||n.done||(Object.keys(n.loaded).forEach((function(e){a[e]||(a[e]=[]),n.loaded[e].length&&n.loaded[e].forEach((function(t){a[e].indexOf(t)<0&&a[e].push(t)}))})),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())})),this.emit("loaded",a),this.queue=this.queue.filter((function(e){return!e.done}))}},{key:"read",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:350,a=arguments.length>5?arguments[5]:void 0;return e.length?this.backend[n](e,t,(function(u,c){u&&c&&i<5?setTimeout((function(){r.read.call(r,e,t,n,i+1,2*o,a)}),o):a(u,c)})):a(null,{})}},{key:"prepareLoading",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3?arguments[3]:void 0;if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),i&&i();"string"==typeof e&&(e=this.languageUtils.toResolveHierarchy(e)),"string"==typeof t&&(t=[t]);var o=this.queueLoad(e,t,r,i);if(!o.toLoad.length)return o.pending.length||i(),null;o.toLoad.forEach((function(e){n.loadOne(e)}))}},{key:"load",value:function(e,t,n){this.prepareLoading(e,t,{},n)}},{key:"reload",value:function(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}},{key:"loadOne",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=e.split("|"),i=r[0],o=r[1];this.read(i,o,"read",void 0,void 0,(function(r,a){r&&t.logger.warn("".concat(n,"loading namespace ").concat(o," for language ").concat(i," failed"),r),!r&&a&&t.logger.log("".concat(n,"loaded namespace ").concat(o," for language ").concat(i),a),t.loaded(e,r,a)}))}},{key:"saveMissing",value:function(e,t,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};this.services.utils&&this.services.utils.hasLoadedNamespace&&!this.services.utils.hasLoadedNamespace(t)?this.logger.warn('did not save key "'.concat(n,'" as the namespace "').concat(t,'" was not yet loaded'),"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!"):null!=n&&""!==n&&(this.backend&&this.backend.create&&this.backend.create(e,t,n,r,null,de({},o,{isUpdate:i})),e&&e[0]&&this.store.addResource(e[0],t,n,r))}}]),t}(we);function Fe(){return{debug:!1,initImmediate:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,whitelist:!1,nonExplicitWhitelist:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!0,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:function(e){var t={};if("object"===ce(e[1])&&(t=e[1]),"string"==typeof e[1]&&(t.defaultValue=e[1]),"string"==typeof e[2]&&(t.tDescription=e[2]),"object"===ce(e[2])||"object"===ce(e[3])){var n=e[3]||e[2];Object.keys(n).forEach((function(e){t[e]=n[e]}))}return t},interpolation:{escapeValue:!0,format:function(e,t,n,r){return e},prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!1}}}function Je(e){return"string"==typeof e.ns&&(e.ns=[e.ns]),"string"==typeof e.fallbackLng&&(e.fallbackLng=[e.fallbackLng]),"string"==typeof e.fallbackNS&&(e.fallbackNS=[e.fallbackNS]),e.whitelist&&(e.whitelist&&e.whitelist.indexOf("cimode")<0&&(e.whitelist=e.whitelist.concat(["cimode"])),e.supportedLngs=e.whitelist),e.nonExplicitWhitelist&&(e.nonExplicitSupportedLngs=e.nonExplicitWhitelist),e.supportedLngs&&e.supportedLngs.indexOf("cimode")<0&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),e}function Xe(){}var qe=new(function(e){function t(){var e,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1?arguments[1]:void 0;if(fe(this,t),e=Me(this,me(t).call(this)),Oe&&we.call((0,he.Z)(e)),e.options=Je(n),e.services={},e.logger=Ne,e.modules={external:[]},r&&!e.isInitialized&&!n.isClone){if(!e.options.initImmediate)return e.init(n,r),Me(e,(0,he.Z)(e));setTimeout((function(){e.init(n,r)}),0)}return e}return je(t,e),ge(t,[{key:"init",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;function r(e){return e?"function"==typeof e?new e:e:null}if("function"==typeof t&&(n=t,t={}),t.whitelist&&!t.supportedLngs&&this.logger.deprecate("whitelist",'option "whitelist" will be renamed to "supportedLngs" in the next major - please make sure to rename this option asap.'),t.nonExplicitWhitelist&&!t.nonExplicitSupportedLngs&&this.logger.deprecate("whitelist",'options "nonExplicitWhitelist" will be renamed to "nonExplicitSupportedLngs" in the next major - please make sure to rename this option asap.'),this.options=de({},Fe(),this.options,Je(t)),this.format=this.options.interpolation.format,n||(n=Xe),!this.options.isClone){this.modules.logger?Ne.init(r(this.modules.logger),this.options):Ne.init(null,this.options);var i=new Re(this.options);this.store=new _e(this.options.resources,this.options);var o=this.services;o.logger=Ne,o.resourceStore=this.store,o.languageUtils=i,o.pluralResolver=new Be(i,{prepend:this.options.pluralSeparator,compatibilityJSON:this.options.compatibilityJSON,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),o.interpolator=new Ve(this.options),o.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},o.backendConnector=new He(r(this.modules.backend),o.resourceStore,o,this.options),o.backendConnector.on("*",(function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i1?n-1:0),i=1;i0&&"dev"!==a[0]&&(this.options.lng=a[0])}this.services.languageDetector||this.options.lng||this.logger.warn("init: no languageDetector is used and no lng is defined");var u=["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"];u.forEach((function(t){e[t]=function(){var n;return(n=e.store)[t].apply(n,arguments)}}));var c=["addResource","addResources","addResourceBundle","removeResourceBundle"];c.forEach((function(t){e[t]=function(){var n;return(n=e.store)[t].apply(n,arguments),e}}));var s=Ie(),l=function(){var t=function(t,r){e.isInitialized&&e.logger.warn("init: i18next is already initialized. You should call init just once!"),e.isInitialized=!0,e.options.isClone||e.logger.log("initialized",e.options),e.emit("initialized",e.options),s.resolve(r),n(t,r)};if(e.languages&&"v1"!==e.options.compatibilityAPI&&!e.isInitialized)return t(null,e.t.bind(e));e.changeLanguage(e.options.lng,t)};return this.options.resources||!this.options.initImmediate?l():setTimeout(l,0),s}},{key:"loadResources",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Xe,r=n,i="string"==typeof e?e:this.language;if("function"==typeof e&&(r=e),!this.options.resources||this.options.partialBundledLanguages){if(i&&"cimode"===i.toLowerCase())return r();var o=[],a=function(e){e&&t.services.languageUtils.toResolveHierarchy(e).forEach((function(e){o.indexOf(e)<0&&o.push(e)}))};if(i)a(i);else{var u=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);u.forEach((function(e){return a(e)}))}this.options.preload&&this.options.preload.forEach((function(e){return a(e)})),this.services.backendConnector.load(o,this.options.ns,r)}else r(null)}},{key:"reloadResources",value:function(e,t,n){var r=Ie();return e||(e=this.languages),t||(t=this.options.ns),n||(n=Xe),this.services.backendConnector.reload(e,t,(function(e){r.resolve(),n(e)})),r}},{key:"use",value:function(e){if(!e)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return"backend"===e.type&&(this.modules.backend=e),("logger"===e.type||e.log&&e.warn&&e.error)&&(this.modules.logger=e),"languageDetector"===e.type&&(this.modules.languageDetector=e),"i18nFormat"===e.type&&(this.modules.i18nFormat=e),"postProcessor"===e.type&&Pe.addPostProcessor(e),"3rdParty"===e.type&&this.modules.external.push(e),this}},{key:"changeLanguage",value:function(e,t){var n=this;this.isLanguageChangingTo=e;var r=Ie();this.emit("languageChanging",e);var i=function(i){e||i||!n.services.languageDetector||(i=[]);var o="string"==typeof i?i:n.services.languageUtils.getBestMatchFromCodes(i);o&&(n.language||(n.language=o,n.languages=n.services.languageUtils.toResolveHierarchy(o)),n.translator.language||n.translator.changeLanguage(o),n.services.languageDetector&&n.services.languageDetector.cacheUserLanguage(o)),n.loadResources(o,(function(e){!function(e,i){i?(n.language=i,n.languages=n.services.languageUtils.toResolveHierarchy(i),n.translator.changeLanguage(i),n.isLanguageChangingTo=void 0,n.emit("languageChanged",i),n.logger.log("languageChanged",i)):n.isLanguageChangingTo=void 0,r.resolve((function(){return n.t.apply(n,arguments)})),t&&t(e,(function(){return n.t.apply(n,arguments)}))}(e,o)}))};return e||!this.services.languageDetector||this.services.languageDetector.async?!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect(i):i(e):i(this.services.languageDetector.detect()),r}},{key:"getFixedT",value:function(e,t){var n=this,r=function e(t,r){var i;if("object"!==ce(r)){for(var o=arguments.length,a=new Array(o>2?o-2:0),u=2;u1&&void 0!==arguments[1]?arguments[1]:{};if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;var r=this.languages[0],i=!!this.options&&this.options.fallbackLng,o=this.languages[this.languages.length-1];if("cimode"===r.toLowerCase())return!0;var a=function(e,n){var r=t.services.backendConnector.state["".concat(e,"|").concat(n)];return-1===r||2===r};if(n.precheck){var u=n.precheck(this,a);if(void 0!==u)return u}return!!this.hasResourceBundle(r,e)||(!this.services.backendConnector.backend||!(!a(r,e)||i&&!a(o,e)))}},{key:"loadNamespaces",value:function(e,t){var n=this,r=Ie();return this.options.ns?("string"==typeof e&&(e=[e]),e.forEach((function(e){n.options.ns.indexOf(e)<0&&n.options.ns.push(e)})),this.loadResources((function(e){r.resolve(),t&&t(e)})),r):(t&&t(),Promise.resolve())}},{key:"loadLanguages",value:function(e,t){var n=Ie();"string"==typeof e&&(e=[e]);var r=this.options.preload||[],i=e.filter((function(e){return r.indexOf(e)<0}));return i.length?(this.options.preload=r.concat(i),this.loadResources((function(e){n.resolve(),t&&t(e)})),n):(t&&t(),Promise.resolve())}},{key:"dir",value:function(e){if(e||(e=this.languages&&this.languages.length>0?this.languages[0]:this.language),!e)return"rtl";return["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam"].indexOf(this.services.languageUtils.getLanguagePartFromCode(e))>=0?"rtl":"ltr"}},{key:"createInstance",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;return new t(e,n)}},{key:"cloneInstance",value:function(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Xe,i=de({},this.options,n,{isClone:!0}),o=new t(i),a=["store","services","language"];return a.forEach((function(t){o[t]=e[t]})),o.services=de({},this.services),o.services.utils={hasLoadedNamespace:o.hasLoadedNamespace.bind(o)},o.translator=new Ye(o.services,o.options),o.translator.on("*",(function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function lt(e){var t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(ct()[n[1]]||"/"===e.charAt(e.length-2))&&(t.voidElement=!0),t.name.startsWith("!--"))){var r=e.indexOf("--\x3e");return{type:"comment",comment:-1!==r?e.slice(4,r):""}}for(var i=new RegExp(st),o=null;null!==(o=i.exec(e));)if(o[0].trim())if(o[1]){var a=o[1].trim(),u=[a,""];a.indexOf("=")>-1&&(u=a.split("=")),t.attrs[u[0]]=u[1],i.lastIndex--}else o[2]&&(t.attrs[o[2]]=o[3].trim().substring(1,o[3].length-1));return t}var dt=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,ft=/^\s*$/,pt=Object.create(null);function gt(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(gt,"")+"";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var ht={parse:function(e,t){t||(t={}),t.components||(t.components=pt);var n,r=[],i=[],o=-1,a=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");r.push({type:"text",content:-1===u?e:e.substring(0,u)})}return e.replace(dt,(function(u,c){if(a){if(u!=="")return;a=!1}var s,l="/"!==u.charAt(1),d=u.startsWith("\x3c!--"),f=c+u.length,p=e.charAt(f);if(d){var g=lt(u);return o<0?(r.push(g),r):((s=i[o]).children.push(g),r)}if(l&&(o++,"tag"===(n=lt(u)).type&&t.components[n.name]&&(n.type="component",a=!0),n.voidElement||a||!p||"<"===p||n.children.push({type:"text",content:e.slice(f,e.indexOf("<",f))}),0===o&&r.push(n),(s=i[o-1])&&s.children.push(n),i[o]=n),(!l||n.voidElement)&&(o>-1&&(n.voidElement||n.name===u.slice(2,-1))&&(o--,n=-1===o?r:i[o]),!a&&"<"!==p&&p)){s=-1===o?r:i[o].children;var h=e.indexOf("<",f),M=e.slice(f,-1===h?void 0:h);ft.test(M)&&(M=" "),(h>-1&&o+s.length>=0||" "!==M)&&s.push({type:"text",content:M})}})),r},stringify:function(e){return e.reduce((function(e,t){return e+gt("",t)}),"")}},Mt=["format"],mt=["children","count","parent","i18nKey","tOptions","values","defaults","components","ns","i18n","t"];function yt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function jt(e){for(var t=1;t0:!!n}function Nt(e){return e?e&&e.children?e.children:e.props&&e.props.children:[]}function wt(e){return Array.isArray(e)?e:[e]}function It(e,t){if(!e)return"";var n="",r=wt(e),o=t.transKeepBasicHtmlNodesFor||[];return r.forEach((function(e,r){if("string"==typeof e)n+="".concat(e);else if(i.isValidElement(e)){var a=Object.keys(e.props).length,u=o.indexOf(e.type)>-1,c=e.props.children;if(!c&&u&&0===a)n+="<".concat(e.type,"/>");else if(c||u&&0===a)if(e.props.i18nIsDynamicList)n+="<".concat(r,">");else if(u&&1===a&&"string"==typeof c)n+="<".concat(e.type,">").concat(c,"");else{var s=It(c,t);n+="<".concat(r,">").concat(s,"")}else n+="<".concat(r,">")}else if(null===e)L("Trans: the passed in value is invalid - seems you passed in a null child.");else if("object"===at()(e)){var d=e.format,f=l()(e,Mt),p=Object.keys(f);if(1===p.length){var g=d?"".concat(p[0],", ").concat(d):p[0];n+="{{".concat(g,"}}")}else L("react-i18next: the passed in object contained more than one variable - the object should look like {{ value, format }} where format is optional.",e)}else L("Trans: the passed in value is invalid - seems you passed in a variable like {number} - please pass in variables for interpolation as full objects like {{number}}.",e)})),n}function Lt(e,t,n,r,o){if(""===t)return[];var a=r.transKeepBasicHtmlNodesFor||[],u=t&&new RegExp(a.join("|")).test(t);if(!e&&!u)return[t];var c={};!function e(t){wt(t).forEach((function(t){"string"!=typeof t&&(vt(t)?e(Nt(t)):"object"!==at()(t)||i.isValidElement(t)||Object.assign(c,t))}))}(e);var s=n.services.interpolator.interpolate(t,jt(jt({},c),o),n.language),l=ht.parse("<0>".concat(s,""));function d(e,t,n){var r=Nt(e),o=p(r,t.children,n);return function(e){return"[object Array]"===Object.prototype.toString.call(e)&&e.every((function(e){return i.isValidElement(e)}))}(r)&&0===o.length?r:o}function f(e,t,n,r,o){e.dummy&&(e.children=t),n.push(i.cloneElement(e,jt(jt({},e.props),{},{key:r}),o?void 0:t))}function p(t,n,o){var c=wt(t);return wt(n).reduce((function(t,n,s){var l,g,h,M=n.children&&n.children[0]&&n.children[0].content;if("tag"===n.type){var m=c[parseInt(n.name,10)];!m&&1===o.length&&o[0][n.name]&&(m=o[0][n.name]),m||(m={});var y=0!==Object.keys(n.attrs).length?(l={props:n.attrs},(h=jt({},g=m)).props=Object.assign(l.props,g.props),h):m,j=i.isValidElement(y),v=j&&vt(n,!0)&&!n.voidElement,N=u&&"object"===at()(y)&&y.dummy&&!j,w="object"===at()(e)&&null!==e&&Object.hasOwnProperty.call(e,n.name);if("string"==typeof y)t.push(y);else if(vt(y)||v){f(y,d(y,n,o),t,s)}else if(N){var I=p(c,n.children,o);t.push(i.cloneElement(y,jt(jt({},y.props),{},{key:s}),I))}else if(Number.isNaN(parseFloat(n.name))){if(w)f(y,d(y,n,o),t,s,n.voidElement);else if(r.transSupportBasicHtmlNodes&&a.indexOf(n.name)>-1)if(n.voidElement)t.push(i.createElement(n.name,{key:"".concat(n.name,"-").concat(s)}));else{var L=p(c,n.children,o);t.push(i.createElement(n.name,{key:"".concat(n.name,"-").concat(s)},L))}else if(n.voidElement)t.push("<".concat(n.name," />"));else{var b=p(c,n.children,o);t.push("<".concat(n.name,">").concat(b,""))}}else if("object"!==at()(y)||j)1===n.children.length&&M?t.push(i.cloneElement(y,jt(jt({},y.props),{},{key:s}),M)):t.push(i.cloneElement(y,jt(jt({},y.props),{},{key:s})));else{var S=n.children[0]?M:null;S&&t.push(S)}}else if("text"===n.type){var D=r.transWrapTextNodes;D?t.push(i.createElement(D,{key:"".concat(n.name,"-").concat(s)},n.content)):t.push(n.content)}return t}),[])}return Nt(p([{dummy:!0,children:e}],l,wt(e||[]))[0])}function bt(e){var t=e.children,n=e.count,r=e.parent,o=e.i18nKey,a=e.tOptions,u=void 0===a?{}:a,c=e.values,s=e.defaults,d=e.components,f=e.ns,p=e.i18n,g=e.t,h=l()(e,mt),M=(0,i.useContext)(j)||{},m=M.i18n,y=M.defaultNS,N=p||m||w();if(!N)return S("You will need to pass in an i18next instance by using i18nextReactModule"),t;var I=g||N.t.bind(N)||function(e){return e},L=jt(jt({},v()),N.options&&N.options.react),b=f||I.ns||y||N.options&&N.options.defaultNS;b="string"==typeof b?[b]:b||["translation"];var D=s||It(t,L)||L.transEmptyNodeValue||o,A=L.hashTransKey,x=o||(A?A(D):D),C=c?u.interpolation:{interpolation:jt(jt({},u.interpolation),{},{prefix:"#$?",suffix:"?$#"})},E=jt(jt(jt(jt({},u),{},{count:n},c),C),{},{defaultValue:D,ns:b}),T=Lt(d||t,x?I(x,E):D,N,L,E),z=void 0!==r?r:L.defaultTransParent;return z?i.createElement(z,h,T):T}var St=function(e){var t=e.translate_text,n=e.values,r=e.components;return i.createElement(bt,{defaults:t,values:n,components:r})}},316:function(e,t,n){"use strict";n.d(t,{RD:function(){return d},q7:function(){return p}});var r,i=n(7294),o=n(5761),a=n(9),u=(0,a.iv)(["html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}*[hidden]{display:none;}body{line-height:1;}ol,ul{list-style:none;}li{outline:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}input::-ms-clear{display:none;}"]),c=(0,a.iv)([":root{--color-black:#0e0e0e;--color-black-2:#2a2a2a;--color-black-3:#333333;--color-black-4:#182039;--color-black-5:#6e6e6e;--color-black-6:#000000;--color-black-7:#0f0d0f;--color-black-8:#151717;--color-white:#ffffff;--color-red:#ff444f;--color-red-1:#dd573a;--color-red-2:#ffe8e9;--color-red-3:#d43e47;--color-red-4:#ff4449;--color-red-5:#ff0024;--color-grey:#9b9b9b;--color-grey-1:#f4f4f4;--color-grey-2:#e8e8e8;--color-grey-3:#646464;--color-grey-4:#fafbfb;--color-grey-5:#999999;--color-grey-6:#e6e9e9;--color-grey-7:#d6dadb;--color-grey-8:#f2f3f4;--color-grey-9:#c8d6d738;--color-grey-10:#c8d6d738;--color-grey-11:#efefef;--color-grey-12:#585252;--color-grey-13:#656868;--color-grey-14:#c8d6d7;--color-grey-15:#d8d8d8;--color-grey-16:#777777;--color-grey-17:#d6d6d6;--color-grey-18:#f4f4f6;--color-grey-19:#c2c2c2;--color-grey-20:#e0e0e0;--color-grey-21:#e5e5e5;--color-grey-22:#eaeced;--color-grey-23:#fbfbfb;--color-grey-24:#eff2f5;--color-grey-25:#f9fafc;--color-grey-26:#e9eaec;--color-grey-27:#f8a2a8;--color-grey-28:#f3f5f8;--color-grey-29:#edeeef;--color-grey-30:#f5f7fa;--color-grey-31:#f8fafc;--color-grey-32:#dcdee0;--color-grey-33:#8e9190;--color-grey-34:#e7e7e7;--color-grey-35:#f5f7f9;--color-grey-36:#f3f3f3;--color-grey-37:#fafbfd;--color-grey-38:#d6d7d8;--color-grey-39:#f7fafb;--color-grey-40:#b3b3b3;--color-grey-41:#f8fafb;--color-grey-42:#f5f8f9;--color-green:#85acb0;--color-blue:#4c76be;--color-blue-2:#365899;--color-blue-3:#2a3052;--color-blue-4:#f1f6f7;--color-blue-5:#85abaf;--color-blue-6:#4fb5b3;--color-blue-7:#4bb4b3;--color-blue-8:#003b81;--color-blue-9:#305f8b;--color-blue-10:#dee7f2;--color-yellow:#fff2df;--color-yellow-2:#4c3c08;--color-yellow-3:#ffc71b;--color-orange:#ff6544;--color-orange-2:#ff7457;--color-orange-3:#33140e;--color-green-1:#bccdce;--color-green-2:#e2ebec;--color-green-3:#2e8836;--color-brown:#33140e;--text-size-xxs:1.2rem;--text-size-xs:1.4rem;--text-size-s:1.6rem;--text-size-sm:2rem;--text-size-m:2.4rem;--text-size-l:3.2rem;--text-size-xl:4.8rem;--text-size-xxl:6.4rem;--text-size-header-1:3.6rem;--text-size-header-2:2.8rem;--text-size-header-3:7.2rem;--text-size-header-4:4rem;--text-size-header-5:4.8rem;}"]),s=n(6299),l=(0,a.vJ)(r||(r=(0,o.Z)(["\n ","\n ","\n\n i { font-style: italic }\n * {\n font-family: 'IBM Plex Sans', sans-serif;\n\n &, &::before, &::after {\n box-sizing: border-box;\n }\n }\n html {\n font-size: 62.5%; /* 1rem = 10px */\n box-sizing: border-box;\n\n @media "," {\n font-size: 75.5%; /* 1rem = 12px */\n }\n @media "," {\n font-size: 58%; /* 1rem = 9px */\n }\n @media "," {\n font-size: 50%; /* 1rem = 8px */\n }\n }\n body {\n font-family: 'IBM Plex Sans', sans-serif;\n margin: 0;\n padding: 0;\n background: var(--color-black);\n }\n"])),u,c,s.Z.desktopL,s.Z.laptop,s.Z.tabletL),d=i.createContext(),f=function(e){var t=e.children,n=e.pageContext,r=n.locale,o=n.pathname;return i.createElement(d.Provider,{value:{locale:r,pathname:o}},i.createElement(l,null),t)},p=function(e){var t=e.element,n=e.props;return i.createElement(f,n,t)}},2818:function(e,t,n){"use strict";n.d(t,{S:function(){return y},U:function(){return I}});var r=n(9756),i=n(7294),o=n(9),a=n(5444),u=n(9869),c=n(258),s=n(5262),l=n.n(s),d=n(316),f=n(476),p=n(4845),g=n(8802),h=["external"],M=["aria_label","children","mounted","has_no_end_slash","is_anchor","locale","to"],m=["aria_label","children","mounted","is_mail_link","locale","onClick","ref","rel","style","target","to","type"],y=(0,o.iv)(["color:var(--color-white);text-decoration:none;padding:0.5rem 1rem;transition:text-shadow 0.25s;position:relative;&::before{content:'';position:absolute;transition:width 0.25s;height:0.2rem;width:0;background-color:var(--color-red);bottom:0;}&:hover{text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);&::before{width:1.6rem;}}&.active{text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);}",""],(function(e){return e.active&&(0,o.iv)(["text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);&::before{width:1.6rem;}"])})),j=(0,o.iv)(["",""],(function(e){return e.disabled&&"\n pointer-events: none;\n opacity: 0.32;"})),v=o.ZP.a.withConfig({displayName:"localized-link__StyledAnchor",componentId:"ym4sms-0"})(["",""],j),N=(0,o.ZP)(u.P).withConfig({displayName:"localized-link__StyledAnchorLink",componentId:"ym4sms-1"})(["",""],j),w=(0,o.ZP)(a.Link).withConfig({displayName:"localized-link__StyledGatsbyLink",componentId:"ym4sms-2"})(["",""],j),I=i.forwardRef((function(e,t){var n=e.external,o=(0,r.Z)(e,h),a=(0,i.useContext)(d.RD).locale,u=(0,i.useState)(!1),c=u[0],s=u[1];return(0,i.useEffect)((function(){s(!0)}),[]),n||"true"===n?i.createElement(T,Object.assign({mounted:c,locale:a,ref:t},o)):i.createElement(b,Object.assign({mounted:c,locale:a,ref:t},o))}));I.displayName="LocalizedLink";var L=["careers"],b=function(e){var t=e.aria_label,n=e.children,o=e.mounted,a=e.has_no_end_slash,u=e.is_anchor,c=e.locale,s=e.to,d=(0,r.Z)(e,M),f=l()[c],g=f.is_default,h=f.path,m=L.includes(s.replace(/\/$/,"")),y="/"===s,j=(0,p.UY)(h,y,s),v=g||m?s:j;return v=a?v.replace(/\/$/,""):v,u?i.createElement(N,Object.assign({title:t,to:v,disabled:!o},d)):i.createElement(w,Object.assign({"aria-label":t,to:v,disabled:!o},d),n)},S=["affiliate_sign_in","affiliate_sign_up"],D=["dbot","deriv_app","mt5","derivx"],A=["binary","smart_trader"],x=["blog","community","api","zoho"],C=["tnc/security-and-privacy.pdf"],E=["terms_and_conditions/#clients"],T=function(e){var t=e.aria_label,n=e.children,o=e.mounted,a=e.is_mail_link,u=e.locale,s=e.onClick,d=e.ref,h=e.rel,M=e.style,y=e.target,j=e.to,N=e.type,w=(0,r.Z)(e,m),I=(0,i.useContext)(g.c).is_eu_country,L=(0,i.useContext)(c.L),b=L.setModalPayload,T=L.toggleModal,z=l()[u].affiliate_lang,O=function(e,t,n,r){return D.includes(e)?(0,p.qf)(f.Dr[e],t,n):S.includes(e)?f.Dr[e]+"?lang="+r:A.includes(e)?f.Dr[e]+"/"+(0,p.j3)(t)+"/"+n+".html":x.includes(e)?""+f.Dr[e]+n:E.includes(e)?f.Dr.domain_full_url+("en"===t?"":"/"+t)+"/"+e.replace(/_/g,"-"):C.includes(e)?f.Dr.domain_full_url+"/"+e.replace(/_/g,"-"):n}(N,(0,p.mC)(u),j,z),k=I&&!a&&!S.includes(N)&&!D.includes(N)&&!x.includes(N)&&!E.includes(N)&&!C.includes(N),_=y;(E.includes(N)||C.includes(N))&&(_="__blank");return i.createElement(v,Object.assign({style:M||{cursor:"pointer"},"aria-label":t,href:k?"":O,onClick:k?function(e){k&&(e.preventDefault(),b({to:O,target:y,rel:h,ref:d,aria_label:t}),T()),"function"==typeof s&&s(e)}:null,disabled:!o,target:_,rel:h},w),n)}},8802:function(e,t,n){"use strict";n.d(t,{c:function(){return a},N:function(){return u}});var r=n(7294),i=n(4133),o=n(8475),a=r.createContext(),u=function(e){var t=e.children,n=(0,i.Z)(),u=n[0],c=n[1],s=n[2],l=(0,r.useState)(null),d=l[0],f=l[1],p=(0,r.useState)(!1),g=p[0],h=p[1],M=(0,r.useState)(null),m=M[0],y=M[1];return(0,r.useEffect)((function(){u&&(f(!!(0,o.x3)(u.clients_country)),h((0,o.yv)(u.clients_country)),m||y(u.crypto_config))}),[u]),r.createElement(a.Provider,{value:{is_eu_country:d,is_p2p_allowed_country:g,crypto_config:m,website_status:u,website_status_loading:s,setWebsiteStatus:c}},t)}},6299:function(e,t,n){"use strict";n.d(t,{d:function(){return r}});var r={mobileS:320,mobileM:375,mobileL:425,tabletS:576,bp680:680,bp749:749,tablet:768,bp769:769,tabletL:992,laptop:1024,bp1060:1060,laptopM:1200,laptopL:1440,desktopS:1680,desktop:1980},i={mobileS:"(max-width: "+r.mobileS+"px)",mobileM:"(max-width: "+r.mobileM+"px)",mobileL:"(max-width: "+r.mobileL+"px)",tabletS:"(max-width: "+r.tabletS+"px)",tablet:"(max-width: "+r.tablet+"px)",tabletL:"(max-width: "+r.tabletL+"px)",laptopS:"(min-width: "+r.tabletL+"px)",laptop:"(max-width: "+r.laptop+"px)",laptopM:"(max-width: "+r.laptopM+"px)",laptopL:"(max-width: "+r.laptopL+"px)",desktopS:"(min-width: "+r.desktopS+"px)",desktop:"(max-width: "+r.desktop+"px)",desktopL:"(min-width: "+r.desktop+"px)"};t.Z=i},1292:function(e,t,n){"use strict";n.d(t,{m:function(){return i},C:function(){return o}});var r=n(9),i=function(e){var t=e.m,n=e.mt,i=e.ml,o=e.mr,a=e.mb;return(0,r.iv)(["margin:",";margin-top:",";margin-right:",";margin-bottom:",";margin-left:",";"],t||null,n||null,o||null,a||null,i||null)},o=function(e){var t=e.p,n=e.pt,i=e.pl,o=e.pr,a=e.pb;return(0,r.iv)(["padding:",";padding-top:",";padding-bottom:",";padding-right:",";padding-left:",";"],t||null,n||null,a||null,o||null,i||null)}},2343:function(e,t,n){"use strict";n.d(t,{pU:function(){return a},C1:function(){return u}});var r=n(6705),i=n(6299),o=(0,r.Wm)({breakpoints:{start:0,mobileS:i.d.mobileS,mobileM:i.d.mobileM,mobileL:i.d.mobileL,tabletS:i.d.tabletS,bp680:i.d.bp680,bp749:i.d.bp749,tablet:i.d.tablet,bp769:i.d.bp769,tabletL:i.d.tabletL,laptop:i.d.laptop,bp1060:i.d.bp1060,laptopM:i.d.laptopM,laptopL:i.d.laptopL,desktopS:i.d.desktopS,desktop:i.d.desktop}}),a=(o.createMediaStyle(),o.Media),u=o.MediaContextProvider},9499:function(e,t,n){"use strict";n.r(t),n.d(t,{BaseContext:function(){return P},Link:function(){return H},Location:function(){return O},LocationProvider:function(){return k},Match:function(){return $},Redirect:function(){return K},Router:function(){return U},ServerLocation:function(){return _},createHistory:function(){return w},createMemorySource:function(){return I},globalHistory:function(){return b},isRedirect:function(){return J},matchPath:function(){return s},navigate:function(){return S},redirectTo:function(){return X},useLocation:function(){return ee},useMatch:function(){return re},useNavigate:function(){return te},useParams:function(){return ne}});var r=n(7294),i=n(1143),o=n.n(i),a=n(3639),u=function(e,t){return e.substr(0,t.length)===t},c=function(e,t){for(var n=void 0,r=void 0,i=t.split("?")[0],a=m(i),u=""===a[0],c=M(e),s=0,l=c.length;st.score?-1:e.index-t.index}))},m=function(e){return e.replace(/(^\/+|\/+$)/g,"").split("/")},y=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},j=["uri","path"],v=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},u=a.state,c=a.replace,s=void 0!==c&&c;if("number"==typeof t)e.history.go(t);else{u=v({},u,{key:Date.now()+""});try{i||s?e.history.replaceState(u,null,t):e.history.pushState(u,null,t)}catch(n){e.location[s?"replace":"assign"](t)}}r=N(e),i=!0;var l=new Promise((function(e){return o=e}));return n.forEach((function(e){return e({location:r,action:"PUSH"})})),l}}},I=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=e.indexOf("?"),n={pathname:t>-1?e.substr(0,t):e,search:t>-1?e.substr(t):""},r=0,i=[n],o=[null];return{get location(){return i[r]},addEventListener:function(e,t){},removeEventListener:function(e,t){},history:{get entries(){return i},get index(){return r},get state(){return o[r]},pushState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;r++,i.push({pathname:u,search:s.length?"?"+s:s}),o.push(e)},replaceState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;i[r]={pathname:u,search:s},o[r]=e},go:function(e){var t=r+e;t<0||t>o.length-1||(r=t)}}}},L=!("undefined"==typeof window||!window.document||!window.document.createElement),b=w(L?window:I()),S=b.navigate,D=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function x(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function C(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function E(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var T=function(e,t){var n=(0,r.createContext)(t);return n.displayName=e,n},z=T("Location"),O=function(e){var t=e.children;return r.createElement(z.Consumer,null,(function(e){return e?t(e):r.createElement(k,null,t)}))},k=function(e){function t(){var n,r;x(this,t);for(var i=arguments.length,o=Array(i),a=0;a-1?(o=t.substring(0,i),a=t.substring(i)):o=t,r.createElement(z.Provider,{value:{location:{pathname:o,search:a,hash:""},navigate:function(){throw new Error("You can't call navigate on the server.")}}},n)},P=T("Base",{baseuri:"/",basepath:"/",navigate:b.navigate}),U=function(e){return r.createElement(P.Consumer,null,(function(t){return r.createElement(O,null,(function(n){return r.createElement(Y,D({},t,n,e))}))}))},Y=function(e){function t(){return x(this,t),C(this,e.apply(this,arguments))}return E(t,e),t.prototype.render=function(){var e=this.props,t=e.location,n=e.navigate,i=e.basepath,o=e.primary,a=e.children,u=(e.baseuri,e.component),s=void 0===u?"div":u,d=A(e,["location","navigate","basepath","primary","children","baseuri","component"]),f=r.Children.toArray(a).reduce((function(e,t){var n=oe(i)(t);return e.concat(n)}),[]),p=t.pathname,g=c(f,p);if(g){var h=g.params,M=g.uri,m=g.route,y=g.route.value;i=m.default?i:m.path.replace(/\*$/,"");var j=D({},h,{uri:M,location:t,navigate:function(e,t){return n(l(e,M),t)}}),v=r.cloneElement(y,j,y.props.children?r.createElement(U,{location:t,primary:o},y.props.children):void 0),N=o?R:s,w=o?D({uri:M,location:t,component:s},d):d;return r.createElement(P.Provider,{value:{baseuri:M,basepath:i,navigate:j.navigate}},r.createElement(N,w,v))}return null},t}(r.PureComponent);Y.defaultProps={primary:!0};var Z=T("Focus"),R=function(e){var t=e.uri,n=e.location,i=e.component,o=A(e,["uri","location","component"]);return r.createElement(Z.Consumer,null,(function(e){return r.createElement(G,D({},o,{component:i,requestFocus:e,uri:t,location:n}))}))},Q=!0,W=0,G=function(e){function t(){var n,r;x(this,t);for(var i=arguments.length,o=Array(i),a=0;a=i._breakpoints[t]&&e=i._breakpoints[t]}))})),s(this,"valuesWithBreakpointProps",(function(e){var t,n=e.length,r=[];return i._sortedBreakpoints.forEach((function(i,o){var a=e[o];o0&&void 0!==arguments[0]?arguments[0]:e.validKeys(),r=n.reduce((function(e,n){return e[n]=t._mediaQueries[n],e}),{});return Object.entries(r).reduce((function(e,t){var n=a(t,2),r=n[0];return n[1].forEach((function(t,n){e.push((0,i.createRuleSet)((0,i.createClassName)(r,n),"not all and ".concat(t)))})),e}),[])}},{key:"shouldRenderMediaQuery",value:function(e,t){var n=this;if((e=this._normalizeProps(e)).lessThan){var r=this._breakpoints[e.lessThan];return Math.min.apply(Math,o(t.map((function(e){return n._breakpoints[e]}))))=i}if(e.greaterThanOrEqual){var a=this._breakpoints[e.greaterThanOrEqual];return Math.max.apply(Math,o(t.map((function(e){return n._breakpoints[e]}))))>=a}if(e.between){var u=this._breakpoints[e.between[0]],c=this._breakpoints[e.between[1]],s=t.map((function(e){return n._breakpoints[e]}));return!(Math.max.apply(Math,o(s))=c)}return!1}},{key:"_normalizeProps",value:function(e){if(e.at){var t=this._sortedBreakpoints.indexOf(e.at),n=this._sortedBreakpoints[t+1];return n?{between:[e.at,n]}:{greaterThanOrEqual:e.at}}return e}},{key:"_createBreakpointQuery",value:function(e){if((e=this._normalizeProps(e)).lessThan){var t=this._breakpoints[e.lessThan];return"(max-width:".concat(t-1,"px)")}if(e.greaterThan){var n=this._breakpoints[this._findNextBreakpoint(e.greaterThan)];return"(min-width:".concat(n,"px)")}if(e.greaterThanOrEqual){var r=this._breakpoints[e.greaterThanOrEqual];return"(min-width:".concat(r,"px)")}if(e.between){var i=this._breakpoints[e.between[0]],o=this._breakpoints[e.between[1]];return"(min-width:".concat(i,"px) and (max-width:").concat(o-1,"px)")}throw new Error("Unexpected breakpoint props: ".concat(JSON.stringify(e)))}},{key:"_createBreakpointQueries",value:function(e,t){var n=this;return t.reduce((function(t,r){return t.set(function(e){return Array.isArray(e)?e.join("-"):e}(r),n._createBreakpointQuery(s({},e,r))),t}),new Map)}},{key:"_findNextBreakpoint",value:function(e){var t=this._sortedBreakpoints[this._sortedBreakpoints.indexOf(e)+1];if(!t)throw new Error("There is no breakpoint larger than ".concat(e));return t}},{key:"sortedBreakpoints",get:function(){return this._sortedBreakpoints}},{key:"dynamicResponsiveMediaQueries",get:function(){return Array.from(this._mediaQueries[r.at].entries()).reduce((function(e,t){var n=a(t,2);return function(e){for(var t=1;t1)throw new Error("Only 1 of ".concat(t.join(", ")," is allowed at a time."))}(e),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&h(e,t)}(t,e),function(e,t,n){t&&p(e.prototype,t);n&&p(e,n)}(t,[{key:"render",value:function(){var e=this,t=this.props,n=(t.children,t.className),o=t.interaction,a=function(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}(t,["children","className","interaction"]);return i.default.createElement(v.Consumer,null,(function(c){return i.default.createElement(v.Provider,{value:{hasParentMedia:!0,breakpointProps:a}},i.default.createElement(j.Consumer,null,(function(){var s,l=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},d=l.onlyMatch;if(t.interaction)s=(0,u.createClassName)("interaction",t.interaction);else{if(t.at){var p=r.breakpoints.largestBreakpoint;if(t.at===p){var g=null;try{var h=e._reactInternalFiber._debugOwner.type;g=h.displayName||h.name}catch(e){}console.warn("[@artsy/fresnel] `at` is being used with the largest breakpoint. Consider using `` to account for future ')+"breakpoint definitions outside of this range.".concat(g?" It is being used in the ".concat(g," component."):""))}}var M=(0,u.propKey)(a),m=a[M];s=(0,u.createClassName)(M,m)}var y=!c.hasParentMedia||(0,u.intersection)(r.breakpoints.toVisibleAtBreakpointSet(c.breakpointProps),r.breakpoints.toVisibleAtBreakpointSet(a)).length>0,j=y&&(void 0===d||r.shouldRenderMediaQuery(f({},a,{interaction:o}),d));return t.children instanceof Function?t.children(s,j):i.default.createElement("div",{className:"fresnel-container ".concat(s," ").concat(n),suppressHydrationWarning:!j},j?t.children:null)})))}))}}]),t}(i.default.Component),M(t,"defaultProps",{className:""}),M(t,"contextType",v),n),MediaContextProvider:function(e){var t=e.disableDynamicMediaQueries,n=e.onlyMatch,o=e.children;return t?i.default.createElement(j.Provider,{value:{onlyMatch:n}},o):i.default.createElement(y.Provider,{mediaQueries:r.dynamicResponsiveMediaQueries,initialMatchingMediaQueries:(0,u.intersection)(r.mediaQueryTypes,n)},i.default.createElement(y.Consumer,null,(function(e){var t=Object.keys(e).filter((function(t){return e[t]}));return i.default.createElement(j.Provider,{value:{onlyMatch:(0,u.intersection)(t,n)}},o)})))},createMediaStyle:r.toStyle,SortedBreakpoints:(N=r.breakpoints.sortedBreakpoints,d(N)||l(N)||s()),findBreakpointAtWidth:r.breakpoints.findBreakpointAtWidth,findBreakpointsForWidths:r.breakpoints.findBreakpointsForWidths,valuesWithBreakpointProps:r.breakpoints.valuesWithBreakpointProps};var N};var r,i=(r=n(7294))&&r.__esModule?r:{default:r},o=n(9253),a=n(1444),u=n(9752);function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function l(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function d(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function u(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0})):n(e)},t.createRuleSet=function(e,t){return"@media ".concat(t,"{.").concat(e,"{display:none!important;}}")},t.createClassName=function(){for(var e=arguments.length,t=new Array(e),r=0;r1&&void 0!==arguments[1]?arguments[1]:{},s=c.state,l=c.replace,d=void 0!==l&&l;if("number"==typeof t)e.history.go(t);else{s=n({},s,{key:Date.now()+""});try{a||d?e.history.replaceState(s,null,t):e.history.pushState(s,null,t)}catch(n){e.location[d?"replace":"assign"](t)}}o=r(e),a=!0;var f=new Promise((function(e){return u=e}));return i.forEach((function(e){return e({location:o,action:"PUSH"})})),f}}},o=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=e.indexOf("?"),n={pathname:t>-1?e.substr(0,t):e,search:t>-1?e.substr(t):""},r=0,i=[n],o=[null];return{get location(){return i[r]},addEventListener:function(e,t){},removeEventListener:function(e,t){},history:{get entries(){return i},get index(){return r},get state(){return o[r]},pushState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;r++,i.push({pathname:u,search:s.length?"?"+s:s}),o.push(e)},replaceState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;i[r]={pathname:u,search:s},o[r]=e},go:function(e){var t=r+e;t<0||t>o.length-1||(r=t)}}}},a=!("undefined"==typeof window||!window.document||!window.document.createElement),u=i(a?window:o()),c=u.navigate;t.V5=u},2098:function(e,t,n){"use strict";t.__esModule=!0,t.shallowCompare=t.validateRedirect=t.insertParams=t.resolve=t.match=t.pick=t.startsWith=void 0;var r,i=n(1143),o=(r=i)&&r.__esModule?r:{default:r};var a=function(e,t){return e.substr(0,t.length)===t},u=function(e,t){for(var n=void 0,r=void 0,i=t.split("?")[0],a=p(i),u=""===a[0],s=f(e),d=0,g=s.length;dt.score?-1:e.index-t.index}))},p=function(e){return e.replace(/(^\/+|\/+$)/g,"").split("/")},g=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},h=["uri","path"];t.startsWith=a,t.pick=u,t.match=function(e,t){return u([{path:e}],t)},t.resolve=function(e,t){if(a(e,"/"))return e;var n=e.split("?"),r=n[0],i=n[1],o=t.split("?")[0],u=p(r),c=p(o);if(""===u[0])return g(o,i);if(!a(u[0],".")){var s=c.concat(u).join("/");return g(("/"===o?"":"/")+s,i)}for(var l=c.concat(u),d=[],f=0,h=l.length;f=a?(i[r++]=parseInt(n/a,10),n%=a):r>0&&(i[r++]=0);u=r,c=this.dstAlphabet.slice(n,n+1).concat(c)}while(0!==r);return c},t.prototype.isValid=function(e){for(var t=0;t1?n-1:0),i=1;i0&&Array.isArray(r[0])&&(r=r[0]),this.transformers=r.map((function(e){return"function"==typeof e?e():e})),this.tag}return n(e,[{key:"interimTag",value:function(e,t){for(var n=arguments.length,i=Array(n>2?n-2:0),o=2;o0&&void 0!==arguments[0]?arguments[0]:a;return{onSubstitution:function(t,n){if(Array.isArray(t)){var r=t.length,i=e.separator,o=e.conjunction,a=e.serial,u=n.match(/(\n?[^\S\n]+)$/);if(t=u?t.join(i+u[1]):t.join(i+" "),o&&r>1){var c=t.lastIndexOf(i);t=t.slice(0,c)+(a?i:"")+" "+o+t.slice(c+1)}}return t}}};function c(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t0&&void 0!==arguments[0]?arguments[0]:"initial";return{onEndResult:function(t){if("initial"===e){var n=t.match(/^[^\S\n]*(?=\S)/gm),r=n&&Math.min.apply(Math,c(n.map((function(e){return e.length}))));if(r){var i=new RegExp("^.{"+r+"}","gm");return t.replace(i,"")}return t}if("all"===e)return t.replace(/^[^\S\n]+/gm,"");throw new Error("Unknown type: "+e)}}},l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return{onEndResult:function(t){if(""===e)return t.trim();if("start"===(e=e.toLowerCase())||"left"===e)return t.replace(/^\s*/,"");if("end"===e||"right"===e)return t.replace(/\s*$/,"");throw new Error("Side not supported: "+e)}}},d=(new o(u({separator:","}),s,l),new o(u({separator:",",conjunction:"and"}),s,l),new o(u({separator:",",conjunction:"or"}),s,l),function(e){return{onSubstitution:function(t,n){if(null==e||"string"!=typeof e)throw new Error("You need to specify a string character to split by.");return"string"==typeof t&&t.includes(e)&&(t=t.split(e)),t}}}),f=function(e){return null!=e&&!Number.isNaN(e)&&"boolean"!=typeof e},p=function(){return{onSubstitution:function(e){return Array.isArray(e)?e.filter(f):f(e)?e:""}}},g=(new o(d("\n"),p,u,s,l),function(e,t){return{onSubstitution:function(n,r){if(null==e||null==t)throw new Error("replaceSubstitutionTransformer requires at least 2 arguments.");return null==n?n:n.toString().replace(e,t)}}}),h=(new o(d("\n"),u,s,l,g(/&/g,"&"),g(//g,">"),g(/"/g,"""),g(/'/g,"'"),g(/`/g,"`")),function(e,t){return{onEndResult:function(n){if(null==e||null==t)throw new Error("replaceResultTransformer requires at least 2 arguments.");return n.replace(e,t)}}});new o(h(/(?:\n(?:\s*))+/g," "),l),new o(h(/(?:\n\s*)/g,""),l),new o(u({separator:","}),h(/(?:\s+)/g," "),l),new o(u({separator:",",conjunction:"or"}),h(/(?:\s+)/g," "),l),new o(u({separator:",",conjunction:"and"}),h(/(?:\s+)/g," "),l),new o(u,s,l),new o(u,h(/(?:\s+)/g," "),l),new o(s,l),new o(s("all"),l)},8804:function(e,t){var n;n=function(e){e.version="1.2.0";var t=function(){for(var e=0,t=new Array(256),n=0;256!=n;++n)e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=1&(e=n)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1)?-306674912^e>>>1:e>>>1,t[n]=e;return"undefined"!=typeof Int32Array?new Int32Array(t):t}();e.table=t,e.bstr=function(e,n){for(var r=-1^n,i=e.length-1,o=0;o>>8^t[255&(r^e.charCodeAt(o++))])>>>8^t[255&(r^e.charCodeAt(o++))];return o===i&&(r=r>>>8^t[255&(r^e.charCodeAt(o))]),-1^r},e.buf=function(e,n){if(e.length>1e4)return function(e,n){for(var r=-1^n,i=e.length-7,o=0;o>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])];for(;o>>8^t[255&(r^e[o++])];return-1^r}(e,n);for(var r=-1^n,i=e.length-3,o=0;o>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])])>>>8^t[255&(r^e[o++])];for(;o>>8^t[255&(r^e[o++])];return-1^r},e.str=function(e,n){for(var r,i,o=-1^n,a=0,u=e.length;a>>8^t[255&(o^r)]:r<2048?o=(o=o>>>8^t[255&(o^(192|r>>6&31))])>>>8^t[255&(o^(128|63&r))]:r>=55296&&r<57344?(r=64+(1023&r),i=1023&e.charCodeAt(a++),o=(o=(o=(o=o>>>8^t[255&(o^(240|r>>8&7))])>>>8^t[255&(o^(128|r>>2&63))])>>>8^t[255&(o^(128|i>>6&15|(3&r)<<4))])>>>8^t[255&(o^(128|63&i))]):o=(o=(o=o>>>8^t[255&(o^(224|r>>12&15))])>>>8^t[255&(o^(128|r>>6&63))])>>>8^t[255&(o^(128|63&r))];return-1^o}},"undefined"==typeof DO_NOT_EXPORT_CRC?n(t):n({})},4530:function(e,t,n){"use strict";var r=n(7294);function i(){return(i=Object.assign||function(e){for(var t=1;tt}function o(e){return r(e)||i(e)}return{constrain:function(n){return o(n)?r(n)?e:t:n},length:n,max:t,min:e,reachedAny:o,reachedMax:i,reachedMin:r,removeOffset:function(e){return n?e-n*Math.ceil((e-t)/n):e}}}function u(e,t,n){var r=a(0,e),i=r.min,o=r.constrain,c=e+1,s=l(t);function l(e){return n?Math.abs((c+e)%c):o(e)}function d(){return s}function f(e){return s=l(e),p}var p={add:function(e){return f(d()+e)},clone:function(){return u(e,d(),n)},get:d,set:f,min:i,max:e};return p}function c(){var e=[];var t={add:function(n,r,i,o){return void 0===o&&(o=!1),n.addEventListener(r,i,o),e.push((function(){return n.removeEventListener(r,i,o)})),t},removeAll:function(){return e=e.filter((function(e){return e()})),t}};return t}function s(e){var t=e;function n(e){return t/=e,i}function r(e){return"number"==typeof e?e:e.get()}var i={add:function(e){return t+=r(e),i},divide:n,get:function(){return t},multiply:function(e){return t*=e,i},normalize:function(){return 0!==t&&n(t),i},set:function(e){return t=r(e),i},subtract:function(e){return t-=r(e),i}};return i}function l(e){return e?e/Math.abs(e):0}function d(e,t){return Math.abs(e-t)}function f(e,t){for(var n=[],r=0;r=2,c=z||!u,s=(t=e.target,i=t.nodeName||"",!(N.indexOf(i)>-1)),l=u||z&&s;C=!0,o.pointerDown(e),L.set(r),r.set(a),p.useBaseMass().useSpeed(80),function(){var e=z?document:n;S.add(e,"touchmove",k).add(e,"touchend",_).add(e,"mousemove",k).add(e,"mouseup",_)}(),w.set(o.readPoint(e,j)),I.set(o.readPoint(e,v)),M.emit("pointerDown"),c&&(T=!1),l&&e.preventDefault()}}function k(e){if(!E&&!z){if(!e.cancelable)return _();var n=o.readPoint(e,j).get(),i=o.readPoint(e,v).get(),a=d(n,w.get()),c=d(i,I.get());if(!(E=a>c)&&!T)return _()}var s=o.pointerMove(e);!T&&s&&(T=!0),u.start(),r.add(t.applyTo(s)),e.preventDefault()}function _(){var e=g.byDistance(0,!1).index!==h.get(),n=o.pointerUp()*(i?A:D)[z?"mouse":"touch"],a=function(e,t){var n=h.clone().add(-1*l(e)),r=n.get()===h.min||n.get()===h.max,o=g.byDistance(e,!i).distance;return i||Math.abs(e)<20?o:!m&&r?.6*o:y&&t?.5*o:g.byIndex(n.get(),0).distance}(t.applyTo(n),e),u=function(e,t){if(0===e||0===t)return 0;if(Math.abs(e)<=Math.abs(t))return 0;var n=d(Math.abs(e),Math.abs(t));return Math.abs(n/e)}(n,a),c=d(r.get(),L.get())>=.5,s=e&&u>.75,j=Math.abs(n)<20,v=s?10:x,N=s?1+2.5*u:1;c&&!z&&(T=!0),E=!1,C=!1,S.removeAll(),p.useSpeed(j?9:v).useMass(N),f.distance(a,!i),z=!1,M.emit("pointerUp")}function P(e){T&&e.preventDefault()}return{addActivationEvents:function(){var e=n;b.add(e,"touchmove",(function(){})).add(e,"touchend",(function(){})).add(e,"touchstart",O).add(e,"mousedown",O).add(e,"touchcancel",_).add(e,"contextmenu",_).add(e,"click",P)},clickAllowed:function(){return!T},pointerDown:function(){return C},removeAllEvents:function(){b.removeAll(),S.removeAll()}}}function j(e,t,n){var r,i,o=(r=2,i=Math.pow(10,r),function(e){return Math.round(e*i)/i}),a=s(0),u=s(0),c=s(0),d=0,f=t,p=n;function g(e){return f=e,M}function h(e){return p=e,M}var M={direction:function(){return d},seek:function(t){c.set(t).subtract(e);var n,r,i,o=(n=c.get(),(i=0)+(n-(r=0))/(100-r)*(f-i));return d=l(c.get()),c.normalize().multiply(o).subtract(a),function(e){e.divide(p),u.add(e)}(c),M},settle:function(t){var n=t.get()-e.get(),r=!o(n);return r&&e.set(t),r},update:function(){a.add(u),e.add(a),u.multiply(0)},useBaseMass:function(){return h(n)},useBaseSpeed:function(){return g(t)},useMass:h,useSpeed:g};return M}function v(e,t,n,r){var i=!1;return{constrain:function(o){if(!i&&e.reachedAny(n.get())&&e.reachedAny(t.get())){var a=o?.7:.45,u=n.get()-t.get();n.subtract(u*a),!o&&Math.abs(u)<10&&(n.set(e.constrain(n.get())),r.useSpeed(10).useMass(3))}},toggleActive:function(e){i=!e}}}function N(e,t,n,r,i){var o=a(-t+e,n[0]),u=r.map(o.constrain);return{snapsContained:function(){if(t<=e)return[o.max];if("keepSnaps"===i)return u;var n=function(){var e=u[0],t=g(u),n=u.lastIndexOf(e),r=u.indexOf(t)+1;return a(n,r)}(),r=n.min,c=n.max;return u.slice(r,c)}()}}function w(e,t,n,r,i){var o=a(n.min+t.measure(.1),n.max+t.measure(.1)),u=o.reachedMin,c=o.reachedMax;return{loop:function(t){if(function(e){return 1===e?c(r.get()):-1===e&&u(r.get())}(t)){var n=e*(-1*t);i.forEach((function(e){return e.add(n)}))}}}}function I(e){var t=e.max,n=e.length;return{get:function(e){return(e-t)/-n}}}function L(e,t,n,r,i,o){var a,u,c=e.startEdge,s=e.endEdge,l=i.map((function(e){return r[c]-e[c]})).map(n.measure).map((function(e){return-Math.abs(e)})),d=(a=f(l,o).map((function(e){return e[0]})),u=f(i,o).map((function(e){return g(e)[s]-e[0][c]})).map(n.measure).map(Math.abs).map(t.measure),a.map((function(e,t){return e+u[t]})));return{snaps:l,snapsAligned:d}}function b(e,t,n,r,i){var o=r.reachedAny,a=r.removeOffset,u=r.constrain;function c(e,t){return Math.abs(e)0?e.concat([n]):e}),[])}function h(e,t){var r="start"===t,i=r?-n:n,u=o.findSlideBounds(i);return e.map((function(e){var t=r?0:-n,i=r?n:0,o=u.filter((function(t){return t.index===e}))[0][r?"end":"start"];return{point:o,getTarget:function(){return a.get()>o?t:i},index:e,location:-1}}))}return{canLoop:function(){return d.every((function(e){var n=e.index;return f(s.filter((function(e){return e!==n})),t)<=0}))},clear:function(){d.forEach((function(t){var n=t.index;u[n].style[e.startEdge]=""}))},loop:function(){d.forEach((function(t){var n=t.getTarget,r=t.location,i=t.index,o=n();o!==r&&(u[i].style[e.startEdge]=o+"%",t.location=o)}))},loopPoints:d}}function D(e,t,n){var r=c(),i=r.removeAll,o=0;function a(e){9===e.keyCode&&(o=(new Date).getTime())}function u(i,a){r.add(i,"focus",(function(){if(!((new Date).getTime()-o>10)){e.scrollLeft=0;var r=Math.floor(a/n);t.index(r,0)}}),!0)}return{addActivationEvents:function(e){r.add(document,"keydown",a,!1),e.forEach(u)},removeAllEvents:i}}function A(e,t,n){var r=n.style,i="x"===e.scroll?function(e){return"translate3d("+e+"%,0px,0px)"}:function(e){return"translate3d(0px,"+e+"%,0px)"},o=!1;return{clear:function(){r.transform=""},to:function(e){o||(r.transform=i(t.applyTo(e.get())))},toggleActive:function(e){o=!e}}}function x(e,t,n,r,i){var c,l=r.align,d=r.axis,f=r.direction,M=r.startIndex,m=r.inViewThreshold,x=r.loop,C=r.speed,E=r.dragFree,T=r.slidesToScroll,z=r.skipSnaps,O=r.containScroll,k=t.getBoundingClientRect(),_=n.map((function(e){return e.getBoundingClientRect()})),P=function(e){var t="rtl"===e?-1:1;return{applyTo:function(e){return e*t}}}(f),U=function(e,t){var n="y"===e?"y":"x";return{scroll:n,cross:"y"===e?"x":"y",startEdge:"y"===n?"top":"rtl"===t?"right":"left",endEdge:"y"===n?"bottom":"rtl"===t?"left":"right",measureSize:function(e){var t=e.width,r=e.height;return"x"===n?t:r}}}(d,f),Y=(c=U.measureSize(k),{measure:function(e){return 0===c?0:e/c*100},totalPercent:100}),Z=Y.totalPercent,R=o(l,Z),Q=function(e,t,n,r,i){var o=e.measureSize,a=e.startEdge,u=e.endEdge,c=r.map(o);return{slideSizes:c.map(t.measure),slideSizesWithGaps:r.map((function(e,t,r){var o=t===h(r),s=window.getComputedStyle(g(n)),l=parseFloat(s.getPropertyValue("margin-"+u));return o?c[t]+(i?l:0):r[t+1][a]-e[a]})).map(t.measure).map(Math.abs)}}(U,Y,n,_,x),W=Q.slideSizes,G=Q.slideSizesWithGaps,B=L(U,R,Y,k,_,T),V=B.snaps,H=B.snapsAligned,F=-g(V)+g(G),J=N(Z,F,V,H,O).snapsContained,X=!x&&""!==O?J:H,q=function(e,t,n){var r,i;return{limit:(r=t[0],i=g(t),a(n?r-e:i,r))}}(F,X,x).limit,K=u(h(X),M,x),$=K.clone(),ee=p(n),te=function(e){var t=0;function n(e,n){return function(){e===!!t&&n()}}function r(){t=window.requestAnimationFrame(e)}return{proceed:n(!0,r),start:n(!1,r),stop:n(!0,(function(){window.cancelAnimationFrame(t),t=0}))}}((function(){x||se.scrollBounds.constrain(se.dragHandler.pointerDown()),se.scrollBody.seek(ie).update();var e=se.scrollBody.settle(ie);e&&!se.dragHandler.pointerDown()&&(se.animation.stop(),i.emit("settle")),e||i.emit("scroll"),x&&(se.scrollLooper.loop(se.scrollBody.direction()),se.slideLooper.loop()),se.translate.to(re),se.animation.proceed()})),ne=X[K.get()],re=s(ne),ie=s(ne),oe=j(re,C,1),ae=b(x,X,F,q,ie),ue=function(e,t,n,r,i,o){function a(r){var a=r.distance,u=r.index!==t.get();a&&(e.start(),i.add(a)),u&&(n.set(t.get()),t.set(r.index),o.emit("select"))}return{distance:function(e,t){a(r.byDistance(e,t))},index:function(e,n){var i=t.clone().set(e);a(r.byIndex(i.get(),n))}}}(te,K,$,ae,ie,i),ce=function(e,t,n,r,i,o){var a=Math.min(Math.max(o,.01),.99),u=(i?[0,t,-t]:[0]).reduce((function(e,t){return e.concat(c(t,a))}),[]);function c(t,i){var o=n.map((function(e){return e*(i||0)}));return r.map((function(r,i){return{start:r-n[i]+o[i]+t,end:r+e-o[i]+t,index:i}}))}return{check:function(e){return u.reduce((function(t,n){var r=n.index,i=n.start,o=n.end;return-1===t.indexOf(r)&&ie?t.concat([r]):t}),[])},findSlideBounds:c}}(Z,F,W,V,x,m),se={animation:te,axis:U,direction:P,dragHandler:y(U,P,e,ie,E,function(e,t){var n=e.scroll,r={x:"clientX",y:"clientY"},i=s(0),o=s(0),a=s(0),u=s(0),c=[],l=(new Date).getTime(),d=!1;function f(e,t){d=!e.touches;var n=r[t],i=d?e[n]:e.touches[0][n];return u.set(i)}return{pointerDown:function(e){var r=f(e,n);return i.set(r),a.set(r),t.measure(i.get())},pointerMove:function(e){var r=f(e,n),i=(new Date).getTime(),u=i-l;return u>=10&&(u>=100&&(c=[]),c.push(r.get()),l=i),o.set(r).subtract(a),a.set(r),t.measure(o.get())},pointerUp:function(){var e=(new Date).getTime()-l,n=a.get(),r=c.slice(-5).map((function(e){return n-e})).sort((function(e,t){return Math.abs(e)100||!r?0:r),c=[],t.measure(a.get())},readPoint:f}}(U,Y),re,te,ue,oe,ae,K,i,x,z),pxToPercent:Y,index:K,indexPrevious:$,limit:q,location:re,options:r,scrollBody:oe,scrollBounds:v(q,re,ie,oe),scrollLooper:w(F,Y,q,re,[re,ie]),scrollProgress:I(q),scrollSnaps:X,scrollTarget:ae,scrollTo:ue,slideFocus:D(e,ue,T),slideLooper:S(U,Z,F,G,X,ce,re,n),slidesInView:ce,slideIndexes:ee,target:ie,translate:A(U,P,t)};return se}var C={align:"center",axis:"x",containScroll:"",direction:"ltr",dragFree:!1,draggable:!0,draggableClass:"is-draggable",draggingClass:"is-dragging",inViewThreshold:0,loop:!1,skipSnaps:!0,selectedClass:"is-selected",slidesToScroll:1,speed:10,startIndex:0};function E(e,t){var n,r,o,a,u,s,l,d=function(){var e={};function t(t){return e[t]||[]}var n={emit:function(e){return t(e).forEach((function(t){return t(e)})),n},off:function(r,i){return e[r]=t(r).filter((function(e){return e!==i})),n},on:function(r,i){return e[r]=t(r).concat([i]),n}};return n}(),f=c(),p=(n=function(){if(j){var t=a.axis.measureSize(e.getBoundingClientRect());w!==t&&A(),d.emit("resize")}},r=500,o=0,function(){window.clearTimeout(o),o=window.setTimeout(n,r)||0}),g=A,h=d.on,y=d.off,j=!1,v=i({},C),N=i({},v),w=0;function I(){if(!e)throw new Error("Missing root node 😢");var t,n=e.querySelector("*");if(!n)throw new Error("Missing container node 😢");s=n,l=Array.prototype.slice.call(s.children),t=getComputedStyle(e,":before").content,u={get:function(){try{return JSON.parse(t.slice(1,-1).replace(/\\/g,""))}catch(e){}return{}}}}function L(t){if(I(),v=i({},v,t),N=i({},v,u.get()),a=x(e,s,l,N,d),f.add(window,"resize",p),a.translate.to(a.location),w=a.axis.measureSize(e.getBoundingClientRect()),N.loop){if(!a.slideLooper.canLoop())return D(),L({loop:!1});a.slideLooper.loop()}N.draggable&&s.offsetParent&&l.length&&(a.dragHandler.addActivationEvents(),N.draggableClass&&m(e,N.draggableClass),N.draggingClass&&d.on("pointerDown",b).on("pointerUp",b)),l.length&&a.slideFocus.addActivationEvents(l),N.selectedClass&&(S(),d.on("select",S).on("pointerUp",S)),j||(setTimeout((function(){return d.emit("init")}),0),j=!0)}function b(t){var n=N.draggingClass;"pointerDown"===t?m(e,n):M(e,n)}function S(){var e=N.selectedClass,t=E(!0);T(!0).forEach((function(t){return M(l[t],e)})),t.forEach((function(t){return m(l[t],e)}))}function D(){a.dragHandler.removeAllEvents(),a.slideFocus.removeAllEvents(),a.animation.stop(),f.removeAll(),a.translate.clear(),a.slideLooper.clear(),M(e,N.draggableClass),l.forEach((function(e){return M(e,N.selectedClass)})),d.off("select",S).off("pointerUp",S).off("pointerDown",b).off("pointerUp",b)}function A(e){if(j){var t=i({startIndex:O()},e);D(),L(t),d.emit("reInit")}}function E(e){var t=a[e?"target":"location"].get(),n=N.loop?"removeOffset":"constrain";return a.slidesInView.check(a.limit[n](t))}function T(e){var t=E(e);return a.slideIndexes.filter((function(e){return-1===t.indexOf(e)}))}function z(e,t,n){a.scrollBody.useBaseMass().useSpeed(t?100:N.speed),j&&a.scrollTo.index(e,n||0)}function O(){return a.index.get()}return L(t),{canScrollNext:function(){return a.index.clone().add(1).get()!==O()},canScrollPrev:function(){return a.index.clone().add(-1).get()!==O()},clickAllowed:function(){return a.dragHandler.clickAllowed()},containerNode:function(){return s},dangerouslyGetEngine:function(){return a},destroy:function(){j&&(D(),j=!1,d.emit("destroy"))},off:y,on:h,previousScrollSnap:function(){return a.indexPrevious.get()},reInit:g,rootNode:function(){return e},scrollNext:function(e){z(a.index.clone().add(1).get(),!0===e,-1)},scrollPrev:function(e){z(a.index.clone().add(-1).get(),!0===e,1)},scrollProgress:function(){return a.scrollProgress.get(a.location.get())},scrollSnapList:function(){return a.scrollSnaps.map(a.scrollProgress.get)},scrollTo:z,selectedScrollSnap:O,slideNodes:function(){return l},slidesInView:E,slidesNotInView:T}}t.x=function(e){void 0===e&&(e={});var t=r.useState(),n=t[0],i=t[1],o=r.useState(),a=o[0],u=o[1],c=r.useRef(e),s=r.useMemo((function(){var t,n;return t=c.current,n=e,Object.keys(t).length===Object.keys(n).length&&Object.keys(t).every((function(e){return!!Object.prototype.hasOwnProperty.call(n,e)&&t[e]===n[e]}))||(c.current=e),c.current}),[c,e]);return r.useEffect((function(){if("undefined"!=typeof window&&window.document&&window.document.createElement&&a){var e=E(a,s);return i(e),function(){return e.destroy()}}i(void 0)}),[a,s,i]),[u,n]}},3962:function(e){"use strict";var t=Object.prototype.hasOwnProperty,n=Object.prototype.toString,r=Object.defineProperty,i=Object.getOwnPropertyDescriptor,o=function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===n.call(e)},a=function(e){if(!e||"[object Object]"!==n.call(e))return!1;var r,i=t.call(e,"constructor"),o=e.constructor&&e.constructor.prototype&&t.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!i&&!o)return!1;for(r in e);return void 0===r||t.call(e,r)},u=function(e,t){r&&"__proto__"===t.name?r(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},c=function(e,n){if("__proto__"===n){if(!t.call(e,n))return;if(i)return i(e,n).value}return e[n]};e.exports=function e(){var t,n,r,i,s,l,d=arguments[0],f=1,p=arguments.length,g=!1;for("boolean"==typeof d&&(g=d,d=arguments[1]||{},f=2),(null==d||"object"!=typeof d&&"function"!=typeof d)&&(d={});f
'};function i(e,t,n){return en?n:e}function o(e){return 100*(-1+e)}function a(e,t,n){var i;return(i="translate3d"===r.positionUsing?{transform:"translate3d("+o(e)+"%,0,0)"}:"translate"===r.positionUsing?{transform:"translate("+o(e)+"%,0)"}:{"margin-left":o(e)+"%"}).transition="all "+t+"ms "+n,i}n.configure=function(e){var t,n;for(t in e)void 0!==(n=e[t])&&e.hasOwnProperty(t)&&(r[t]=n);return this},n.status=null,n.set=function(e){var t=n.isStarted();e=i(e,r.minimum,1),n.status=1===e?null:e;var o=n.render(!t),s=o.querySelector(r.barSelector),l=r.speed,d=r.easing;return o.offsetWidth,u((function(t){""===r.positionUsing&&(r.positionUsing=n.getPositioningCSS()),c(s,a(e,l,d)),1===e?(c(o,{transition:"none",opacity:1}),o.offsetWidth,setTimeout((function(){c(o,{transition:"all "+l+"ms linear",opacity:0}),setTimeout((function(){n.remove(),t()}),l)}),l)):setTimeout(t,l)})),this},n.isStarted=function(){return"number"==typeof n.status},n.start=function(){n.status||n.set(0);var e=function e(){setTimeout((function(){n.status&&(n.trickle(),e())}),r.trickleSpeed)};return r.trickle&&e(),this},n.done=function(e){return e||n.status?n.inc(.3+.5*Math.random()).set(1):this},n.inc=function(e){var t=n.status;return t?("number"!=typeof e&&(e=(1-t)*i(Math.random()*t,.1,.95)),t=i(t+e,0,.994),n.set(t)):n.start()},n.trickle=function(){return n.inc(Math.random()*r.trickleRate)},e=0,t=0,n.promise=function(r){return r&&"resolved"!==r.state()?(0===t&&n.start(),e++,t++,r.always((function(){0==--t?(e=0,n.done()):n.set((e-t)/e)})),this):this},n.render=function(e){if(n.isRendered())return document.getElementById("nprogress");l(document.documentElement,"nprogress-busy");var t=document.createElement("div");t.id="nprogress",t.innerHTML=r.template;var i,a=t.querySelector(r.barSelector),u=e?"-100":o(n.status||0),s=document.querySelector(r.parent);return c(a,{transition:"all 0 linear",transform:"translate3d("+u+"%,0,0)"}),r.showSpinner||(i=t.querySelector(r.spinnerSelector))&&p(i),s!=document.body&&l(s,"nprogress-custom-parent"),s.appendChild(t),t},n.remove=function(){d(document.documentElement,"nprogress-busy"),d(document.querySelector(r.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&p(e)},n.isRendered=function(){return!!document.getElementById("nprogress")},n.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective"in e?"translate3d":t+"Transform"in e?"translate":"margin"};var u=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),c=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,(function(e,t){return t.toUpperCase()}))}function r(t){var n=document.body.style;if(t in n)return t;for(var r,i=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);i--;)if((r=e[i]+o)in n)return r;return t}function i(e){return e=n(e),t[e]||(t[e]=r(e))}function o(e,t,n){t=i(t),e.style[t]=n}return function(e,t){var n,r,i=arguments;if(2==i.length)for(n in t)void 0!==(r=t[n])&&t.hasOwnProperty(n)&&o(e,n,r);else o(e,i[1],i[2])}}();function s(e,t){return("string"==typeof e?e:f(e)).indexOf(" "+t+" ")>=0}function l(e,t){var n=f(e),r=n+t;s(n,t)||(e.className=r.substring(1))}function d(e,t){var n,r=f(e);s(e,t)&&(n=r.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function f(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function p(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return n})?r.call(t,n,t,e):r)||(e.exports=i)},3186:function(e){(function(){var t,n,r,i,o,a;"undefined"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:"undefined"!=typeof process&&null!==process&&process.hrtime?(e.exports=function(){return(t()-o)/1e6},n=process.hrtime,i=(t=function(){var e;return 1e9*(e=n())[0]+e[1]})(),a=1e9*process.uptime(),o=i-a):Date.now?(e.exports=function(){return Date.now()-r},r=Date.now()):(e.exports=function(){return(new Date).getTime()-r},r=(new Date).getTime())}).call(this)},8442:function(e,t,n){for(var r=n(3186),i="undefined"==typeof window?n.g:window,o=["moz","webkit"],a="AnimationFrame",u=i["request"+a],c=i["cancel"+a]||i["cancelRequest"+a],s=0;!u&&s=e)return this._from=this._to,this._update(this._to),this._done=!0,this.emit("end"),this;var n=this._from,r=this._to,i=this._curr,o=(0,this._ease)((t-this._start)/e);if(this.isArray){for(var a=0;a?@[]^_`{|}~"},c.uuid=s,c.generate=function(){return u||(u=c(d).generate),u()},c)},252:function(e,t,n){"use strict";var r;n.r(t),n.d(t,{NIL:function(){return C},parse:function(){return M},stringify:function(){return f},v1:function(){return h},v3:function(){return b},v4:function(){return S},v5:function(){return x},validate:function(){return u},version:function(){return E}});var i=new Uint8Array(16);function o(){if(!r&&!(r="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return r(i)}var a=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;for(var u=function(e){return"string"==typeof e&&a.test(e)},c=[],s=0;s<256;++s)c.push((s+256).toString(16).substr(1));var l,d,f=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=(c[e[t+0]]+c[e[t+1]]+c[e[t+2]]+c[e[t+3]]+"-"+c[e[t+4]]+c[e[t+5]]+"-"+c[e[t+6]]+c[e[t+7]]+"-"+c[e[t+8]]+c[e[t+9]]+"-"+c[e[t+10]]+c[e[t+11]]+c[e[t+12]]+c[e[t+13]]+c[e[t+14]]+c[e[t+15]]).toLowerCase();if(!u(n))throw TypeError("Stringified UUID is invalid");return n},p=0,g=0;var h=function(e,t,n){var r=t&&n||0,i=t||new Array(16),a=(e=e||{}).node||l,u=void 0!==e.clockseq?e.clockseq:d;if(null==a||null==u){var c=e.random||(e.rng||o)();null==a&&(a=l=[1|c[0],c[1],c[2],c[3],c[4],c[5]]),null==u&&(u=d=16383&(c[6]<<8|c[7]))}var s=void 0!==e.msecs?e.msecs:Date.now(),h=void 0!==e.nsecs?e.nsecs:g+1,M=s-p+(h-g)/1e4;if(M<0&&void 0===e.clockseq&&(u=u+1&16383),(M<0||s>p)&&void 0===e.nsecs&&(h=0),h>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");p=s,g=h,d=u;var m=(1e4*(268435455&(s+=122192928e5))+h)%4294967296;i[r++]=m>>>24&255,i[r++]=m>>>16&255,i[r++]=m>>>8&255,i[r++]=255&m;var y=s/4294967296*1e4&268435455;i[r++]=y>>>8&255,i[r++]=255&y,i[r++]=y>>>24&15|16,i[r++]=y>>>16&255,i[r++]=u>>>8|128,i[r++]=255&u;for(var j=0;j<6;++j)i[r+j]=a[j];return t||f(i)};var M=function(e){if(!u(e))throw TypeError("Invalid UUID");var t,n=new Uint8Array(16);return n[0]=(t=parseInt(e.slice(0,8),16))>>>24,n[1]=t>>>16&255,n[2]=t>>>8&255,n[3]=255&t,n[4]=(t=parseInt(e.slice(9,13),16))>>>8,n[5]=255&t,n[6]=(t=parseInt(e.slice(14,18),16))>>>8,n[7]=255&t,n[8]=(t=parseInt(e.slice(19,23),16))>>>8,n[9]=255&t,n[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,n[11]=t/4294967296&255,n[12]=t>>>24&255,n[13]=t>>>16&255,n[14]=t>>>8&255,n[15]=255&t,n};function m(e,t,n){function r(e,r,i,o){if("string"==typeof e&&(e=function(e){e=unescape(encodeURIComponent(e));for(var t=[],n=0;n>>9<<4)+1}function j(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function v(e,t,n,r,i,o){return j((a=j(j(t,e),j(r,o)))<<(u=i)|a>>>32-u,n);var a,u}function N(e,t,n,r,i,o,a){return v(t&n|~t&r,e,t,i,o,a)}function w(e,t,n,r,i,o,a){return v(t&r|n&~r,e,t,i,o,a)}function I(e,t,n,r,i,o,a){return v(t^n^r,e,t,i,o,a)}function L(e,t,n,r,i,o,a){return v(n^(t|~r),e,t,i,o,a)}var b=m("v3",48,(function(e){if("string"==typeof e){var t=unescape(encodeURIComponent(e));e=new Uint8Array(t.length);for(var n=0;n>5]>>>i%32&255,a=parseInt(r.charAt(o>>>4&15)+r.charAt(15&o),16);t.push(a)}return t}(function(e,t){e[t>>5]|=128<>5]|=(255&e[r/8])<>>32-t}var x=m("v5",80,(function(e){var t=[1518500249,1859775393,2400959708,3395469782],n=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof e){var r=unescape(encodeURIComponent(e));e=[];for(var i=0;i>>0;j=y,y=m,m=A(M,30)>>>0,M=h,h=w}n[0]=n[0]+h>>>0,n[1]=n[1]+M>>>0,n[2]=n[2]+m>>>0,n[3]=n[3]+y>>>0,n[4]=n[4]+j>>>0}return[n[0]>>24&255,n[0]>>16&255,n[0]>>8&255,255&n[0],n[1]>>24&255,n[1]>>16&255,n[1]>>8&255,255&n[1],n[2]>>24&255,n[2]>>16&255,n[2]>>8&255,255&n[2],n[3]>>24&255,n[3]>>16&255,n[3]>>8&255,255&n[3],n[4]>>24&255,n[4]>>16&255,n[4]>>8&255,255&n[4]]})),C="00000000-0000-0000-0000-000000000000";var E=function(e){if(!u(e))throw TypeError("Invalid UUID");return parseInt(e.substr(14,1),16)}},6151:function(e,t,n){var r=n(6297),i=["blank","all","minWidth","minHeight","maxWidth","maxHeight","print"];function o(e){return function(t,n){var r=t.sortVal,i=n.sortVal,o=t.item.__media,a=n.item.__media;if(e=void 0!==e&&e,r===i){if(o.match(/print/))return 1;if(a.match(/print/))return-1}return e?i-r:r-i}}function a(e,t,n){switch(function(e,t,n){return e&&e.length&&"string"!=typeof e?("object"!==t||n&&"string"==typeof n)&&function(e,t,n){for(var r=!0,i=0,o=e.length;ip)&&(Y=(Q=Q.replace(" ",":")).length),0r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(M,"$1"+e.trim());case 58:return e.trim()+t.replace(M,"$1"+e.trim());default:if(0<1*n&&0c.charCodeAt(8))break;case 115:a=a.replace(c,"-webkit-"+c)+";"+a;break;case 207:case 102:a=a.replace(c,"-webkit-"+(102r.charCodeAt(0)&&(r=r.trim()),r=[r],01?t-1:0),r=1;r0?" Args: "+n.join(", "):""))}var S=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,i=r;e>=i;)(i<<=1)<0&&b(16,""+e);this.groupSizes=new Uint32Array(i),this.groupSizes.set(n),this.length=i;for(var o=r;o=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),i=r+n,o=r;o=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(N))return r}}(n),o=void 0!==i?i.nextSibling:null;r.setAttribute(N,"active"),r.setAttribute("data-styled-version","5.3.0");var a=P();return a&&r.setAttribute("nonce",a),n.insertBefore(r,o),r},Y=function(){function e(e){var t=this.element=U(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e0&&(s+=e+",")})),r+=""+u+c+'{content:"'+s+'"}/*!sc*/\n'}}}return r}(this)},e}(),B=/(a)(d)/gi,V=function(e){return String.fromCharCode(e+(e>25?39:97))};function H(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=V(t%52)+n;return(V(t%52)+n).replace(B,"$1-$2")}var F=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},J=function(e){return F(5381,e)};function X(e){for(var t=0;t>>0);if(!t.hasNameForId(r,a)){var u=n(o,"."+a,void 0,r);t.insertRules(r,a,u)}i.push(a),this.staticRulesId=a}else{for(var c=this.rules.length,s=F(this.baseHash,n.hash),l="",d=0;d>>0);if(!t.hasNameForId(r,h)){var M=n(l,"."+h,void 0,r);t.insertRules(r,h,M)}i.push(h)}}return i.join(" ")},e}(),$=/^\s*\/\/.*$/gm,ee=[":","[",".","#"];function te(e){var t,n,r,i,o=void 0===e?m:e,a=o.options,c=void 0===a?m:a,s=o.plugins,l=void 0===s?M:s,d=new u(c),f=[],p=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,i,o,a,u,c,s,l,d){switch(n){case 1:if(0===l&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===s)return r+"/*|*/";break;case 3:switch(s){case 102:case 112:return e(i[0]+r),"";default:return r+(0===d?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}((function(e){f.push(e)})),g=function(e,r,o){return 0===r&&-1!==ee.indexOf(o[n.length])||o.match(i)?e:"."+t};function h(e,o,a,u){void 0===u&&(u="&");var c=e.replace($,""),s=o&&a?a+" "+o+" { "+c+" }":c;return t=u,n=o,r=new RegExp("\\"+n+"\\b","g"),i=new RegExp("(\\"+n+"\\b){2,}"),d(a||!o?"":o,s)}return d.use([].concat(l,[function(e,t,i){2===e&&i.length&&i[0].lastIndexOf(n)>0&&(i[0]=i[0].replace(r,g))},p,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=l.length?l.reduce((function(e,t){return t.name||b(15),F(e,t.name)}),5381).toString():"",h}var ne=i.createContext(),re=(ne.Consumer,i.createContext()),ie=(re.Consumer,new G),oe=te();function ae(){return(0,i.useContext)(ne)||ie}function ue(){return(0,i.useContext)(re)||oe}function ce(e){var t=(0,i.useState)(e.stylisPlugins),n=t[0],r=t[1],o=ae(),u=(0,i.useMemo)((function(){var t=o;return e.sheet?t=e.sheet:e.target&&(t=t.reconstructWithOptions({target:e.target},!1)),e.disableCSSOMInjection&&(t=t.reconstructWithOptions({useCSSOMInjection:!1})),t}),[e.disableCSSOMInjection,e.sheet,e.target]),c=(0,i.useMemo)((function(){return te({options:{prefix:!e.disableVendorPrefixes},plugins:n})}),[e.disableVendorPrefixes,n]);return(0,i.useEffect)((function(){a()(n,e.stylisPlugins)||r(e.stylisPlugins)}),[e.stylisPlugins]),i.createElement(ne.Provider,{value:u},i.createElement(re.Provider,{value:c},e.children))}var se=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=oe);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,"@keyframes"))},this.toString=function(){return b(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=oe),this.name+e.hash},e}(),le=/([A-Z])/,de=/([A-Z])/g,fe=/^ms-/,pe=function(e){return"-"+e.toLowerCase()};function ge(e){return le.test(e)?e.replace(de,pe).replace(fe,"-ms-"):e}var he=function(e){return null==e||!1===e||""===e};function Me(e,t,n,r){if(Array.isArray(e)){for(var i,o=[],a=0,u=e.length;a1?t-1:0),r=1;r?@[\\\]^`{|}~-]+/g,ve=/(^-|-$)/g;function Ne(e){return e.replace(je,"-").replace(ve,"")}var we=function(e){return H(J(e)>>>0)};function Ie(e){return"string"==typeof e&&!0}var Le=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},be=function(e){return"__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function Se(e,t,n){var r=e[n];Le(t)&&Le(r)?De(r,t):e[n]=t}function De(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0||(i[n]=e[n]);return i}(t,["componentId"]),o=r&&r+"-"+(Ie(e)?e:Ne(j(e)));return Ce(e,p({},i,{attrs:N,componentId:o}),n)},Object.defineProperty(I,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(t){this._foldedDefaultProps=r?De({},e.defaultProps,t):t}}),I.toString=function(){return"."+I.styledComponentId},o&&f()(I,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),I}var Ee=function(e){return function e(t,n,i){if(void 0===i&&(i=m),!(0,r.isValidElementType)(n))return b(1,String(n));var o=function(){return t(n,i,me.apply(void 0,arguments))};return o.withConfig=function(r){return e(t,n,p({},i,{},r))},o.attrs=function(r){return e(t,n,p({},i,{attrs:Array.prototype.concat(i.attrs,r).filter(Boolean)}))},o}(Ce,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach((function(e){Ee[e]=Ee(e)}));var Te=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=X(e),G.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var i=r(Me(this.rules,t,n,r).join(""),""),o=this.componentId+e;n.insertRules(o,o,i)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){e>2&&G.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();function ze(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r"+t+""},this.getStyleTags=function(){return e.sealed?b(2):e._emitSheetCSS()},this.getStyleElement=function(){var t;if(e.sealed)return b(2);var n=((t={})[N]="",t["data-styled-version"]="5.3.0",t.dangerouslySetInnerHTML={__html:e.instance.toString()},t),r=P();return r&&(n.nonce=r),[i.createElement("style",p({},n,{key:"sc-0-0"}))]},this.seal=function(){e.sealed=!0},this.instance=new G({isServer:!0}),this.sealed=!1}var t=e.prototype;t.collectStyles=function(e){return this.sealed?b(2):i.createElement(ce,{sheet:this.instance},e)},t.interleaveWithNodeStream=function(e){return b(3)}}();var ke=Ee},8262:function(e){e.exports={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}},6297:function(e){e.exports=function(){for(var e={},n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);nl;)if((u=c[l++])!=u)return!0}else for(;s>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},4326:function(e){var t={}.toString;e.exports=function(e){return t.call(e).slice(8,-1)}},9920:function(e,t,n){var r=n(6656),i=n(3887),o=n(1236),a=n(3070);e.exports=function(e,t){for(var n=i(t),u=a.f,c=o.f,s=0;s=74)&&(r=a.match(/Chrome\/(\d+)/))&&(i=r[1]),e.exports=i&&+i},748:function(e){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(e,t,n){var r=n(7854),i=n(1236).f,o=n(8880),a=n(1320),u=n(3505),c=n(9920),s=n(4705);e.exports=function(e,t){var n,l,d,f,p,g=e.target,h=e.global,M=e.stat;if(n=h?r:M?r[g]||u(g,{}):(r[g]||{}).prototype)for(l in t){if(f=t[l],d=e.noTargetGet?(p=i(n,l))&&p.value:n[l],!s(h?l:g+(M?".":"#")+l,e.forced)&&void 0!==d){if(typeof f==typeof d)continue;c(f,d)}(e.sham||d&&d.sham)&&o(f,"sham",!0),a(n,l,f,e)}}},7293:function(e){e.exports=function(e){try{return!!e()}catch(e){return!0}}},5005:function(e,t,n){var r=n(857),i=n(7854),o=function(e){return"function"==typeof e?e:void 0};e.exports=function(e,t){return arguments.length<2?o(r[e])||o(i[e]):r[e]&&r[e][t]||i[e]&&i[e][t]}},7854:function(e,t,n){var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},6656:function(e,t,n){var r=n(7908),i={}.hasOwnProperty;e.exports=Object.hasOwn||function(e,t){return i.call(r(e),t)}},3501:function(e){e.exports={}},4664:function(e,t,n){var r=n(9781),i=n(7293),o=n(317);e.exports=!r&&!i((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},8361:function(e,t,n){var r=n(7293),i=n(4326),o="".split;e.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(e){return"String"==i(e)?o.call(e,""):Object(e)}:Object},2788:function(e,t,n){var r=n(5465),i=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(e){return i.call(e)}),e.exports=r.inspectSource},9909:function(e,t,n){var r,i,o,a=n(8536),u=n(7854),c=n(111),s=n(8880),l=n(6656),d=n(5465),f=n(6200),p=n(3501),g="Object already initialized",h=u.WeakMap;if(a||d.state){var M=d.state||(d.state=new h),m=M.get,y=M.has,j=M.set;r=function(e,t){if(y.call(M,e))throw new TypeError(g);return t.facade=e,j.call(M,e,t),t},i=function(e){return m.call(M,e)||{}},o=function(e){return y.call(M,e)}}else{var v=f("state");p[v]=!0,r=function(e,t){if(l(e,v))throw new TypeError(g);return t.facade=e,s(e,v,t),t},i=function(e){return l(e,v)?e[v]:{}},o=function(e){return l(e,v)}}e.exports={set:r,get:i,has:o,enforce:function(e){return o(e)?i(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=i(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return n}}}},4705:function(e,t,n){var r=n(7293),i=/#|\.prototype\./,o=function(e,t){var n=u[a(e)];return n==s||n!=c&&("function"==typeof t?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=o.data={},c=o.NATIVE="N",s=o.POLYFILL="P";e.exports=o},111:function(e){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},1913:function(e){e.exports=!1},3366:function(e,t,n){var r=n(7854);e.exports=r.Promise},133:function(e,t,n){var r=n(7392),i=n(7293);e.exports=!!Object.getOwnPropertySymbols&&!i((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:function(e,t,n){var r=n(7854),i=n(2788),o=r.WeakMap;e.exports="function"==typeof o&&/native code/.test(i(o))},8523:function(e,t,n){"use strict";var r=n(3099),i=function(e){var t,n;this.promise=new e((function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r})),this.resolve=r(t),this.reject=r(n)};e.exports.f=function(e){return new i(e)}},3070:function(e,t,n){var r=n(9781),i=n(4664),o=n(9670),a=n(7593),u=Object.defineProperty;t.f=r?u:function(e,t,n){if(o(e),t=a(t,!0),o(n),i)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},1236:function(e,t,n){var r=n(9781),i=n(5296),o=n(9114),a=n(5656),u=n(7593),c=n(6656),s=n(4664),l=Object.getOwnPropertyDescriptor;t.f=r?l:function(e,t){if(e=a(e),t=u(t,!0),s)try{return l(e,t)}catch(e){}if(c(e,t))return o(!i.f.call(e,t),e[t])}},8006:function(e,t,n){var r=n(6324),i=n(748).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},5181:function(e,t){t.f=Object.getOwnPropertySymbols},6324:function(e,t,n){var r=n(6656),i=n(5656),o=n(1318).indexOf,a=n(3501);e.exports=function(e,t){var n,u=i(e),c=0,s=[];for(n in u)!r(a,n)&&r(u,n)&&s.push(n);for(;t.length>c;)r(u,n=t[c++])&&(~o(s,n)||s.push(n));return s}},5296:function(e,t){"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,i=r&&!n.call({1:2},1);t.f=i?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},3887:function(e,t,n){var r=n(5005),i=n(8006),o=n(5181),a=n(9670);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=o.f;return n?t.concat(n(e)):t}},857:function(e,t,n){var r=n(7854);e.exports=r},9478:function(e,t,n){var r=n(9670),i=n(111),o=n(8523);e.exports=function(e,t){if(r(e),i(t)&&t.constructor===e)return t;var n=o.f(e);return(0,n.resolve)(t),n.promise}},1320:function(e,t,n){var r=n(7854),i=n(8880),o=n(6656),a=n(3505),u=n(2788),c=n(9909),s=c.get,l=c.enforce,d=String(String).split("String");(e.exports=function(e,t,n,u){var c,s=!!u&&!!u.unsafe,f=!!u&&!!u.enumerable,p=!!u&&!!u.noTargetGet;"function"==typeof n&&("string"!=typeof t||o(n,"name")||i(n,"name",t),(c=l(n)).source||(c.source=d.join("string"==typeof t?t:""))),e!==r?(s?!p&&e[t]&&(f=!0):delete e[t],f?e[t]=n:i(e,t,n)):f?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&s(this).source||u(this)}))},4488:function(e){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},3505:function(e,t,n){var r=n(7854),i=n(8880);e.exports=function(e,t){try{i(r,e,t)}catch(n){r[e]=t}return t}},6200:function(e,t,n){var r=n(2309),i=n(9711),o=r("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},5465:function(e,t,n){var r=n(7854),i=n(3505),o="__core-js_shared__",a=r[o]||i(o,{});e.exports=a},2309:function(e,t,n){var r=n(1913),i=n(5465);(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.14.0",mode:r?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(e,t,n){var r=n(9670),i=n(3099),o=n(5112)("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||null==(n=r(a)[o])?t:i(n)}},1400:function(e,t,n){var r=n(9958),i=Math.max,o=Math.min;e.exports=function(e,t){var n=r(e);return n<0?i(n+t,0):o(n,t)}},5656:function(e,t,n){var r=n(8361),i=n(4488);e.exports=function(e){return r(i(e))}},9958:function(e){var t=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:t)(e)}},7466:function(e,t,n){var r=n(9958),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},7908:function(e,t,n){var r=n(4488);e.exports=function(e){return Object(r(e))}},7593:function(e,t,n){var r=n(111);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},9711:function(e){var t=0,n=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++t+n).toString(36)}},3307:function(e,t,n){var r=n(133);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(e,t,n){var r=n(7854),i=n(2309),o=n(6656),a=n(9711),u=n(133),c=n(3307),s=i("wks"),l=r.Symbol,d=c?l:l&&l.withoutSetter||a;e.exports=function(e){return o(s,e)&&(u||"string"==typeof s[e])||(u&&o(l,e)?s[e]=l[e]:s[e]=d("Symbol."+e)),s[e]}},7727:function(e,t,n){"use strict";var r=n(2109),i=n(1913),o=n(3366),a=n(7293),u=n(5005),c=n(6707),s=n(9478),l=n(1320);if(r({target:"Promise",proto:!0,real:!0,forced:!!o&&a((function(){o.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(e){var t=c(this,u("Promise")),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then((function(){return n}))}:e,n?function(n){return s(t,e()).then((function(){throw n}))}:e)}}),!i&&"function"==typeof o){var d=u("Promise").prototype.finally;o.prototype.finally!==d&&l(o.prototype,"finally",d,{unsafe:!0})}},8037:function(e,t,n){"use strict";var r=n(8580);t.dq=h,t.mc=function(e){return h(e,M())},t.c4=t.ZP=void 0;var i=r(n(3246)),o=r(n(5666)),a=r(n(3793)),u=r(n(4362)),c=r(n(5697)),s=r(n(7294)),l=n(9499),d=n(2098),f=n(1752);t.cP=f.parsePath;var p=["to","getProps","onClick","onMouseEnter","activeClassName","activeStyle","innerRef","partiallyActive","state","replace","_location"],g=function(e){return null==e?void 0:e.startsWith("/")};function h(e,t){var n,r;if(void 0===t&&(t=m()),!y(e))return e;if(e.startsWith("./")||e.startsWith("../"))return e;var i=null!==(n=null!==(r=t)&&void 0!==r?r:M())&&void 0!==n?n:"/";return""+(null!=i&&i.endsWith("/")?i.slice(0,-1):i)+(e.startsWith("/")?e:"/"+e)}var M=function(){return"/move-to-deriv"},m=function(){return"/move-to-deriv"},y=function(e){return e&&!e.startsWith("http://")&&!e.startsWith("https://")&&!e.startsWith("//")};var j=function(e,t){return"number"==typeof e?e:y(e)?g(e)?h(e):function(e,t){return g(e)?e:(0,d.resolve)(e,t)}(e,t):e},v={activeClassName:c.default.string,activeStyle:c.default.object,partiallyActive:c.default.bool};function N(e){return s.default.createElement(l.Location,null,(function(t){var n=t.location;return s.default.createElement(w,(0,u.default)({},e,{_location:n}))}))}var w=function(e){function t(t){var n;(n=e.call(this,t)||this).defaultGetProps=function(e){var t=e.isPartiallyCurrent,r=e.isCurrent;return(n.props.partiallyActive?t:r)?{className:[n.props.className,n.props.activeClassName].filter(Boolean).join(" "),style:(0,u.default)({},n.props.style,n.props.activeStyle)}:null};var r=!1;return"undefined"!=typeof window&&window.IntersectionObserver&&(r=!0),n.state={IOSupported:r},n.handleRef=n.handleRef.bind((0,o.default)(n)),n}(0,a.default)(t,e);var n=t.prototype;return n._prefetch=function(){var e=window.location.pathname;this.props._location&&this.props._location.pathname&&(e=this.props._location.pathname);var t=j(this.props.to,e),n=(0,f.parsePath)(t).pathname;e!==n&&___loader.enqueue(n)},n.componentDidUpdate=function(e,t){this.props.to===e.to||this.state.IOSupported||this._prefetch()},n.componentDidMount=function(){this.state.IOSupported||this._prefetch()},n.componentWillUnmount=function(){if(this.io){var e=this.io,t=e.instance,n=e.el;t.unobserve(n),t.disconnect()}},n.handleRef=function(e){var t,n,r,i=this;this.props.innerRef&&this.props.innerRef.hasOwnProperty("current")?this.props.innerRef.current=e:this.props.innerRef&&this.props.innerRef(e),this.state.IOSupported&&e&&(this.io=(t=e,n=function(){i._prefetch()},(r=new window.IntersectionObserver((function(e){e.forEach((function(e){t===e.target&&(e.isIntersecting||e.intersectionRatio>0)&&(r.unobserve(t),r.disconnect(),n())}))}))).observe(t),{instance:r,el:t}))},n.render=function(){var e=this,t=this.props,n=t.to,r=t.getProps,o=void 0===r?this.defaultGetProps:r,a=t.onClick,c=t.onMouseEnter,d=(t.activeClassName,t.activeStyle,t.innerRef,t.partiallyActive,t.state),g=t.replace,h=t._location,M=(0,i.default)(t,p);var m=j(n,h.pathname);return y(m)?s.default.createElement(l.Link,(0,u.default)({to:m,state:d,getProps:o,innerRef:this.handleRef,onMouseEnter:function(e){c&&c(e),___loader.hovering((0,f.parsePath)(m).pathname)},onClick:function(t){if(a&&a(t),!(0!==t.button||e.props.target||t.defaultPrevented||t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)){t.preventDefault();var n=g,r=encodeURI(m)===h.pathname;"boolean"!=typeof g&&r&&(n=!0),window.___navigate(m,{state:d,replace:n})}return!0}},M)):s.default.createElement("a",(0,u.default)({href:m},M))},t}(s.default.Component);w.propTypes=(0,u.default)({},v,{onClick:c.default.func,to:c.default.string.isRequired,replace:c.default.bool,state:c.default.object});var I=s.default.forwardRef((function(e,t){return s.default.createElement(N,(0,u.default)({innerRef:t},e))}));t.ZP=I;t.c4=function(e,t){window.___navigate(j(e,window.location.pathname),t)}},1752:function(e,t){"use strict";t.__esModule=!0,t.parsePath=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");-1!==o&&(n=t.substr(o),t=t.substr(0,o));return{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}},9679:function(e,t,n){"use strict";t.p2=t.$C=void 0;var r=n(1432);t.$C=r.ScrollHandler;var i=n(4855);t.p2=i.useScrollRestoration},1432:function(e,t,n){"use strict";var r=n(8580);t.__esModule=!0,t.ScrollHandler=t.ScrollContext=void 0;var i=r(n(5666)),o=r(n(3793)),a=function(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=s(t);if(n&&n.has(e))return n.get(e);var r={},i=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if("default"!==o&&Object.prototype.hasOwnProperty.call(e,o)){var a=i?Object.getOwnPropertyDescriptor(e,o):null;a&&(a.get||a.set)?Object.defineProperty(r,o,a):r[o]=e[o]}r.default=e,n&&n.set(e,r);return r}(n(7294)),u=r(n(5697)),c=n(1142);function s(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(s=function(e){return e?n:t})(e)}var l=a.createContext(new c.SessionStorage);t.ScrollContext=l,l.displayName="GatsbyScrollContext";var d=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function T(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n div{display:flex;justify-content:space-between;width:100%;padding:0 1.6rem;align-items:center;}"],(function(e){return e.background_color}),(function(e){return e.is_selected?"translate3d(-3%, 0, 0)":"translate3d(-105%, 0, 0)"}))),G=(i.ZP.article.withConfig({displayName:"card__CardWrapper",componentId:"oq96z0-2"})([""," position:relative;overflow:hidden;height:100%;min-height:",";width:",";padding:",";border-radius:6px;&:hover{","{transform:translate3d(-3%,0,0);@media ","{transform:translate3d(-5%,0,0);}}}@media ","{padding:2rem;margin-top:1.77rem;margin-right:0;width:100%;}"],Q,(function(e){return e.min_height?e.min_height:"0"}),(function(e){return e.width?e.width:"38.4rem"}),(function(e){return e.padding?e.padding:"1.8rem 2rem 1.4rem 1.2rem"}),W,c.Z.tabletL,c.Z.tabletL),i.ZP.div.withConfig({displayName:"card__ContentWrapper",componentId:"oq96z0-3"})(["margin-top:4rem;@media ","{margin-top:2.7rem;","{font-size:3rem;}}"],c.Z.tabletL,h),i.ZP.article.withConfig({displayName:"card__CardChildrenWrapper",componentId:"oq96z0-4"})(["","{text-align:center;}"," width:",";height:100%;min-height:26.8rem;padding:2.6rem;display:flex;flex-direction:column;align-items:center;p{font-size:var(--text-size-s);a{color:var(--color-red);text-decoration:none;&:hover{text-decoration:underline;}}}svg,img{margin:0.2rem 0 0.8rem 0;}"],h,Q,(function(e){return e.width?e.width:"50.2rem"})),i.ZP.div.withConfig({displayName:"card__IconContainer",componentId:"oq96z0-5"})(["display:flex;justify-content:flex-start;","{display:flex;align-items:center;}"],h),i.ZP.div.withConfig({displayName:"card__CardContentContainer",componentId:"oq96z0-6"})(["margin-left:1.6rem;"]),i.ZP.div.withConfig({displayName:"card__IconWrapper",componentId:"oq96z0-7"})(["& > svg{width:7.9rem;height:7.9rem;}"]),(0,i.ZP)(g).withConfig({displayName:"card__CoverContent",componentId:"oq96z0-8"})(["color:white;font-weight:bold;font-size:var(--text-size-m);"]),i.ZP.div.withConfig({displayName:"card__NavContent",componentId:"oq96z0-9"})(["width:100%;display:flex;flex-direction:column;"])),B=i.ZP.img.withConfig({displayName:"card__RightDiagonal",componentId:"oq96z0-10"})(["opacity:0;transition:opacity 0.2s;position:absolute;width:16px;height:16px;right:16px;top:16px;@media ","{opacity:1;width:16px;height:16px;right:0;margin-right:0;top:0;}"],c.Z.tabletL),V=(0,i.ZP)(h).withConfig({displayName:"card__ResponsiveHeader",componentId:"oq96z0-11"})(["transition:color 0.2s;@media ","{font-size:16px;}"],c.Z.tabletL),H=(0,i.ZP)(g).withConfig({displayName:"card__ResponsiveText",componentId:"oq96z0-12"})(["transition:color 0.2s;font-size:var(--text-size-xs);@media ","{font-size:14px;}"],c.Z.tabletL),F=(0,i.ZP)(P.kC).withConfig({displayName:"card__FlexHover",componentId:"oq96z0-13"})(["padding:0.8rem 1.6rem;cursor:pointer;@media ","{padding:0;}&:hover{background-color:var(--color-grey-30);","{opacity:1;}","{color:var(--color-black-3);}}"],c.Z.mobileL,B,g),J=i.ZP.div.withConfig({displayName:"card__SvgWrapper",componentId:"oq96z0-14"})(["& > svg,img{width:33px;height:33px;margin-right:1.6rem;@media ","{width:24px;height:24px;}}"],c.Z.mobileL),X=function(e){var t=e.content,n=e.external,i=e.icon,a=e.style,u=e.title,c=(0,o.Z)(e,Z);return r.createElement(U.UE,Object.assign({style:Object.assign({textDecoration:"none",width:"100%",maxWidth:"33.6rem",position:"relative"},a),external:n},c),r.createElement(F,{jc:"flex-start",direction:"row",tablet_direction:"row"},r.createElement(J,null,r.createElement(i,null)),r.createElement(G,null,r.createElement(V,{as:"span",size:"var(--text-size-s)",lh:"1.14",mb:"0.8rem"},u),r.createElement(H,{color:"grey-5"},t)),n&&r.createElement("div",null,r.createElement(B,{src:Y,alt:"Diagonal",widht:"16",height:"16"}))))},q=i.ZP.div.withConfig({displayName:"card__LinkRightDiagonal",componentId:"oq96z0-15"})(["opacity:0;justify-self:flex-end;align-self:center;& > svg,img{width:16px;height:16px;}"]),K=(0,i.ZP)(P.kC).withConfig({displayName:"card__HoverFlex",componentId:"oq96z0-16"})(["&:hover{background-color:var(--color-grey-30);","{opacity:1;}}"],q),$=i.ZP.div.withConfig({displayName:"card__IconRightWrapper",componentId:"oq96z0-17"})(["& > svg,img{height:24px;width:24px;margin-right:1.6rem;}"]),ee=(0,i.ZP)(P.kC).withConfig({displayName:"card__RelativeFlex",componentId:"oq96z0-18"})(["position:relative;"]),te=function(e){var t=e.icon,n=e.title,i=e.to,a=e.style,u=e.external,c=e.target,s=e.onClick,l=(0,o.Z)(e,R);return r.createElement(U.UE,Object.assign({target:c,onClick:s,to:i,style:Object.assign({textDecoration:"none",width:"100%",position:"relative"},a),external:u},l),r.createElement(K,{p:"1rem 1.6rem",jc:"flex-start",direction:"row",tablet_direction:"row"},r.createElement(ee,{ai:"center",jc:"flex-start"},t&&r.createElement($,null,r.createElement(t,null)),r.createElement(V,{as:"span",color:"black-3",size:"var(--text-size-xs)",lh:"1.14",weight:"normal"},n),u&&r.createElement(q,null,r.createElement("img",{src:Y,alt:"Diagonal",width:"16",height:"16"})))))},ne=i.ZP.hr.withConfig({displayName:"divider__Divider",componentId:"sc-1qzam43-0"})(["border:none;width:",";height:",";background-color:var(--color-",");",""],(function(e){return e.width?e.width:"100%"}),(function(e){return e.height?e.height:"1px"}),(function(e){return e.color||"grey-2"}),u.m),re=(0,i.F4)(["0%,20%{color:rgba(0,0,0,0);text-shadow:0.25em 0 0 rgba(0,0,0,0),0.5em 0 0 rgba(0,0,0,0);}40%{color:grey;text-shadow:0.25em 0 0 rgba(0,0,0,0),0.5em 0 0 rgba(0,0,0,0);}60%{text-shadow:0.25em 0 0 grey,0.5em 0 0 rgba(0,0,0,0);}80%,100%{text-shadow:0.25em 0 0 grey,0.5em 0 0 grey;}"]),ie=(i.ZP.span.withConfig({displayName:"dot-loader__InitialLoader",componentId:"siytk0-0"})(["text-align:center;margin-top:-160px;::after{color:grey;content:' .';animation:"," 1s steps(5,end) infinite;font-size:6rem;line-height:1;}"],re),n(9843)),oe=((0,i.ZP)(P.kC).withConfig({displayName:"dropdown__Symbol",componentId:"sc-1abzx73-0"})(["width:fit-content;margin-top:8px;img{width:32px;height:32px;margin-right:0.8rem;@media ","{width:unset;height:36px;}@media ","{width:unset;height:24px;margin-top:4px;}}","{font-weight:normal;font-size:var(--text-size-xs);line-height:1.14;margin-top:8px;@media ","{font-size:14px;}}"],c.Z.tabletL,c.Z.tabletM,g,c.Z.mobileL),i.ZP.ul.withConfig({displayName:"dropdown__DropdownContainer",componentId:"sc-1abzx73-1"})(["list-style:none;position:relative;border:1px solid var(--color-grey-7);cursor:pointer;padding:0;border-radius:4px;height:40px;margin-bottom:",";"," &:hover{border-color:var(--color-grey-5);}"," ",""],(function(e){var t;return null!==(t=e.mb)&&void 0!==t?t:"0"}),(function(e){return e.active&&(0,i.iv)(["border-color:var(--color-green) !important;"])}),(function(e){return e.has_short_name&&(0,i.iv)(["width:auto;min-width:6.5rem;@media ","{top:inherit;width:auto;min-width:8rem;}@media ","{min-width:7rem;}"],c.Z.tabletL,c.Z.mobileL)}),(function(e){return e.error?(0,i.iv)(["border-color:var(--color-red-1) !important;& > label{color:var(--color-red-1) !important;}"]):(0,i.iv)(["border-color:var(--color-grey-7);"])})),i.ZP.div.withConfig({displayName:"dropdown__StyledDiv",componentId:"sc-1abzx73-2"})(["position:relative;top:-30px;"]),i.ZP.li.withConfig({displayName:"dropdown__DropdownSelected",componentId:"sc-1abzx73-3"})(["color:var(--color-grey-6);list-style-position:inside;white-space:nowrap;overflow:hidden;padding:0 1rem;text-overflow:ellipsis;height:100%;font-size:var(--text-size-xs);display:flex;align-items:center;"," @media ","{font-size:14px;}"],(function(e){return e.has_short_name&&(0,i.iv)(["color:var(--color-white);"])}),c.Z.mobileL),i.ZP.li.withConfig({displayName:"dropdown__ListContainer",componentId:"sc-1abzx73-4"})(["position:relative;list-style:none;"]),i.ZP.li.withConfig({displayName:"dropdown__ListItem",componentId:"sc-1abzx73-5"})(["color:var(--color-grey-6);padding:1rem 1.6rem;transition:background-color 0.1s linear,color 0.1s linear;list-style-position:inside;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:var(--text-size-xs);background-color:",";&:hover{background-color:var(--color-grey-6);}&:focus{background-color:var(--color-grey-6);font-weight:bold;}&:focus,&:active{outline:none;}@media ","{font-size:14px;}","{font-weight:normal;font-size:var(--text-size-xs);line-height:1.14;margin-top:8px;color:",";@media ","{font-size:14px;}}"],(function(e){return e.is_selected?"var(--color-grey-6)":"var(--color-white)"}),c.Z.mobileL,g,(function(e){return e.is_selected?"var(--color-red-1)":"var(--color-black-3)"}),c.Z.mobileL),i.ZP.ul.withConfig({displayName:"dropdown__UnorderedList",componentId:"sc-1abzx73-6"})(["z-index:1;list-style:none;margin:0;padding:0;width:100%;position:absolute;left:0;top:0.8rem;border-radius:4px;box-shadow:0 8px 16px 0 rgba(0,0,0,0.16);transition:opacity 0.1s cubic-bezier(0,0,0.38,0.9),max-height 0.25s cubic-bezier(0,0,0.38,0.9);max-height:0;overflow-y:scroll;background-color:var(--color-white);opacity:0;",""],(function(e){return e.open&&(0,i.iv)(["opacity:1;max-height:30rem;"])})),(0,i.ZP)(M.r).withConfig({displayName:"dropdown__Arrow",componentId:"sc-1abzx73-7"})(["position:absolute;right:8px;top:25%;transition:transform 0.2s linear;"," & path{fill:var(--color-black);}"],(function(e){return"true"===e.expanded?"transform: rotate(-180deg);":""})),i.ZP.label.withConfig({displayName:"dropdown__StyledLabel",componentId:"sc-1abzx73-8"})(["color:grey;background:var(--color-white);font-size:var(--text-size-xs);position:absolute;pointer-events:none;left:0.8rem;top:1.2rem;transition:0.25s ease transform;transform:translateZ(0);padding:0 0.4rem;@media ","{font-size:1.6rem;top:1.5rem;}@media ","{font-size:1.5rem;top:1.6rem;}",""],c.Z.tabletL,c.Z.mobileL,(function(e){return e.active&&(0,i.iv)(["color:var(--color-green);transform:translate(-0.6rem,-2.2rem) scale(0.7);@media ","{top:9px;}"],c.Z.tabletL)})),(0,i.ZP)(g).withConfig({displayName:"dropdown__ErrorMessages",componentId:"sc-1abzx73-9"})(["position:absolute;padding-left:0.8rem;font-size:1.2rem;min-height:16px;"]),(0,i.ZP)(g).withConfig({displayName:"dropdown__ContractSizeWrapper",componentId:"sc-1abzx73-10"})(["padding-left:0.8rem;font-size:1.2rem;min-height:16px;position:absolute;cursor:text;color:var(--color-grey-5);@media ","{margin-top:4px;}"],c.Z.tabletL),(0,i.ZP)(g).withConfig({displayName:"dropdown__DefaultOptionText",componentId:"sc-1abzx73-11"})(["color:var(--color-grey-5);"]),i.ZP.input.withConfig({displayName:"dropdown-search__DropdownInput",componentId:"lll8o9-0"})(["color:var(--color-black-3);width:calc(100% - 2px);border:none;white-space:nowrap;overflow:hidden;padding:0 1rem;font-size:var(--text-size-xs);display:flex;align-items:center;justify-content:flex-start;"," &:focus{outline:none;}@media ","{font-size:1.75rem;}@media ","{font-size:1.5rem;}"],(function(e){return e.has_short_name&&(0,i.iv)(["color:var(--color-white);"])}),c.Z.tabletL,c.Z.mobileL),i.ZP.div.withConfig({displayName:"checkbox__CheckboxContainer",componentId:"sc-1a4wwhl-0"})(["display:inline-block;vertical-align:text-bottom;"]),i.ZP.svg.withConfig({displayName:"checkbox__Icon",componentId:"sc-1a4wwhl-1"})(["fill:none;stroke:",";stroke-width:4px;background-color:var(--color-red);visibility:",";"],(function(e){return e.secondary,"var(--color-white)"}),(function(e){return e.checked?"visible":"hidden"})),i.ZP.input.attrs({type:"checkbox"}).withConfig({displayName:"checkbox__HiddenCheckbox",componentId:"sc-1a4wwhl-2"})(["border:0;clip:rect(0 0 0 0);position:absolute;"]),i.ZP.div.withConfig({displayName:"checkbox__StyledCheckbox",componentId:"sc-1a4wwhl-3"})(["display:inline-block;width:1.6rem;height:1.6rem;background:",";border:",";margin-right:0.8rem;@media ","{width:2rem;height:2rem;}"],(function(e){return e.secondary&&e.checked?"var(--color-red)":e.background?e.background:"var(--color-white)"}),(function(e){return e.secondary&&e.checked?"2px solid var(--color-red)":"2px solid var(--color-grey-5)"}),c.Z.mobileL),n(6802)),ae=["alt","className","data","height","loading","width"],ue=i.ZP.div.withConfig({displayName:"query-image__ImageWrapper",componentId:"saxp2k-0"})(["& .gatsby-image-wrapper{width:",";height:",";}"],(function(e){return e.width||"100%"}),(function(e){return e.height})),ce=function(e){var t=e.alt,n=e.className,i=e.data,a=e.height,u=e.loading,c=e.width,s=(0,o.Z)(e,ae),l=(0,oe.d)(i);return i?r.createElement(ue,{width:c,height:a,className:n},r.createElement(oe.G,Object.assign({image:l,alt:t,loading:u},s))):null},se=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"link__StyledLink",componentId:"t3i52f-0"})(["font-size:",";font-weight:",";text-align:",";margin:",";color:var(--color-",");text-decoration:none;&:hover{text-decoration:underline;color:var(--color-red);}",""],(function(e){return e.size||"var(--text-size-sm)"}),(function(e){return e.weight||"normal"}),(function(e){return e.align||"left"}),(function(e){return e.margin||"none"}),(function(e){return e.color||"red"}),(function(e){if(e.has_arrow)return(0,i.iv)(["&::before{content:url(\"data:image/svg+xml;charset=UTF-8, \");vertical-align:middle;display:inline-block;margin-right:",";font-weight:300;text-decoration:none;}"],(function(e){return e.arrow_margin||"0.4rem"}))})),le=n(476);var de="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9Ijk1LjkyJSIgeDI9IjEwMCUiIHkyPSI0LjA4JSIgaWQ9ImEiPjxzdG9wIHN0b3AtY29sb3I9IiNGRjQ0NEYiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjRkY2NDQ0IiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBkPSJNMjEuNSA1YTIuNSAyLjUgMCAxMS0uNjcgNC45MWwtMS43NjIgMi42NDJBNC45OTQgNC45OTQgMCAwMTIwLjk3NSAxNmgyLjA3NWEyLjUgMi41IDAgMTEwIDFoLTIuMDc1YTQuOTk0IDQuOTk0IDAgMDEtMS45MDcgMy40NDhsMS43NjIgMi42NDNBMi41MDIgMi41MDIgMCAwMTI0IDI1LjVhMi41IDIuNSAwIDExLTQuMDY3LTEuOTQ4bC0xLjcxNC0yLjU3QTQuOTggNC45OCAwIDAxMTYgMjEuNWE0Ljk4IDQuOTggMCAwMS0yLjIyLS41MThsLTEuNzEzIDIuNTdhMi41IDIuNSAwIDExLS44OTctLjQ2MWwxLjc2Mi0yLjY0M2E0Ljk5NCA0Ljk5NCAwIDAxLTEuOTA3LTMuNDQ3SDguOTVhMi41IDIuNSAwIDExMC0xaDIuMDc1YTUgNSAwIDAxMS45MDctMy40NUwxMS4xNyA5LjkxQTIuNTAyIDIuNTAyIDAgMDE4IDcuNWEyLjUgMi41IDAgMTE0LjA2NyAxLjk0OGwxLjcxNCAyLjU3QTQuOTggNC45OCAwIDAxMTYgMTEuNWMuNzk3IDAgMS41NS4xODYgMi4yMi41MThsMS43MTMtMi41N0EyLjUgMi41IDAgMDEyMS41IDV6bS0xMSAxOWExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zem0xMSAwYTEuNSAxLjUgMCAxMDAgMyAxLjUgMS41IDAgMDAwLTN6bS02LjE4LTUuMTE4bC0uMDIuMDE4LS4wNzYuMDQ3LTEuNTc3Ljc4OGMuNjYuNDgxIDEuNDc0Ljc2NSAyLjM1My43NjUuODggMCAxLjY5Mi0uMjg0IDIuMzUzLS43NjVsLTEuNTc3LS43ODgtLjA3Ni0uMDQ3YS40OTcuNDk3IDAgMDEtLjAyMy0uMDE4IDEuOTk2IDEuOTk2IDAgMDEtMS4zNTYgMHpNMTYgMTIuNWE0IDQgMCAwMC0zLjEyIDYuNTAybDEuNTQzLS43NzJBMS45OTEgMS45OTEgMCAwMTE0IDE3di0xYTIgMiAwIDExNCAwdjFjMCAuNDY0LS4xNTguODktLjQyMyAxLjIzbDEuNTQ0Ljc3MkE0IDQgMCAwMDE2IDEyLjV6TTYuNSAxNWExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zem0xOSAwYTEuNSAxLjUgMCAxMDAgMyAxLjUgMS41IDAgMDAwLTN6TTE2IDE1YTEgMSAwIDAwLS45OTMuODgzTDE1IDE2djFhMSAxIDAgMDAxLjk5My4xMTdMMTcgMTd2LTFhMSAxIDAgMDAtMS0xem0tNS41LTlhMS41IDEuNSAwIDEwMCAzIDEuNSAxLjUgMCAwMDAtM3ptMTEgMGExLjUgMS41IDAgMTAwIDMgMS41IDEuNSAwIDAwMC0zeiIgZmlsbD0idXJsKCNhKSIvPjwvc3ZnPgo=",fe=n(5190),pe=n(4303),ge=n(4851),he=n(4104),Me=n(2809),me=n(3594),ye=n(2955),je=n(5119);var ve="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjkyLjAxNCUiIHgyPSIxMDAlIiB5Mj0iNy45ODYlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNDQ0RiIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjY0NDQiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0yNyA1YTEgMSAwIDAxMSAxdjIwYTEgMSAwIDAxLTEgMUg1YTEgMSAwIDAxLTEtMVY2YTEgMSAwIDAxMS0xaDIyem0wIDVINXYxNmgyMlYxMHptLTkuMzAzIDQuMDRhLjUuNSAwIDAxLjI5LjU3MWwtLjAyNy4wODYtMyA3YS41LjUgMCAwMS0uOTQ4LS4zMDhsLjAyOC0uMDg2IDMtN2EuNS41IDAgMDEuNjU3LS4yNjN6bS00Ljc1IDIuMjM2YS41LjUgMCAwMS0uMTQ3LjYyNGwtLjA3Ni4wNDdMOS42MTggMTguNWwzLjEwNiAxLjU1M2EuNS41IDAgMDEuMjU2LjU4N2wtLjAzMy4wODRhLjUuNSAwIDAxLS41ODcuMjU2bC0uMDg0LS4wMzMtNC0yYS41LjUgMCAwMS0uMDc4LS44NDZsLjA3OC0uMDQ4IDQtMmEuNS41IDAgMDEuNjcxLjIyM3ptNi4xMDYgMGEuNS41IDAgMDEuNjctLjIyM2w0IDIgLjA4LjA0OGEuNS41IDAgMDEtLjA4Ljg0NmwtNCAyLS4wODMuMDMzYS41LjUgMCAwMS0uNTg3LS4yNTZsLS4wMzMtLjA4NGEuNS41IDAgMDEuMjU3LS41ODdsMy4xMDUtMS41NTMtMy4xMDUtMS41NTMtLjA3Ny0uMDQ3YS41LjUgMCAwMS0uMTQ3LS42MjR6TTI3IDZINXYzaDIyVjZ6bS0yLjUgMWEuNS41IDAgMTEwIDEgLjUuNSAwIDAxMC0xem0tMiAwYS41LjUgMCAxMTAgMSAuNS41IDAgMDEwLTF6bS0yIDBhLjUuNSAwIDExMCAxIC41LjUgMCAwMTAtMXoiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4=",Ne=n(5189),we=n(4158),Ie=n(6308),Le=n(924),be=n(3649),Se=n(8935),De=n(7349),Ae=n(73),xe=n(4958),Ce=n(7289),Ee=n(9645);var Te="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjkxLjk5NCUiIHgyPSIxMDAlIiB5Mj0iOC4wMDYlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNDQ0RiIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjY0NDQiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0xMCAxNmEyIDIgMCAwMTEuOTY2IDEuNjMzYzEuMTU3LS41NDYgMi4zMDUtLjM1NCAzLjY4LjM0MWwuMjEyLjExLjc5OC40MzQuMDY4LjAzNWMuMDQuMDIuMDg5LjAzNy4xNDguMDUybC4xMzYuMDI0LjE3NC4wMTguMjIyLjAxMS40MzcuMDA4LjY4LjAwMy4zODYuMDEyLjEyNC4wMDdjMS4yMi4wNzcgMi4xMDYuNDA4IDIuNjcgMS4xODFhMTMuNiAxMy42IDAgMDAxLjA2NC0uNDQ5bC4yNDYtLjEyMS40NTMtLjI0Ljk5NS0uNTUuODIxLS40NThjLjkzOC0uNDYgMS45NDMtLjE1MiAyLjQ0Ny42MzguNTE4LjgxMy4zMTMgMS44MzMtLjYwNSAyLjQxN2wtLjM2Ny4yMjYtLjQ2NC4yNzItLjk3NS41NDktLjk1My41Mi0xLjM5My43NC0xLjI2NS42Ni0yLjEyOCAxLjA5Yy0uOTkuNTAyLTIuNDM4LjczNy00LjQ0Ni44MTNsLS43MjIuMDItMS4wOS4wMS0xLjU4Ny0uMDA1QTIgMiAwIDAxMTAgMjdINmEyIDIgMCAwMS0yLTJ2LTdhMiAyIDAgMDEyLTJoNHptMCAxSDZhMSAxIDAgMDAtLjk5My44ODNMNSAxOHY3YTEgMSAwIDAwLjg4My45OTNMNiAyNmg0YTEgMSAwIDAwLjk5My0uODgzTDExIDI1di03YTEgMSAwIDAwLS44ODMtLjk5M0wxMCAxN3ptMiAxLjc2VjI1bDEuMzE0LjAwNS45MS0uMDA2LjQ5Ni0uMDExYzIuMDY3LS4wNTcgMy41MjYtLjI3MiA0LjQwNS0uNzE4bDIuMTEyLTEuMDgxIDEuMjU1LS42NTUgMS4zOC0uNzM0Ljk0Mi0uNTEzLjk2LS41NC41ODQtLjM0NS4yMjgtLjE0Yy40NDMtLjI4My41MjMtLjY4Mi4yOTctMS4wMzYtLjIzNS0uMzctLjY5MS0uNTA5LTEuMTYzLS4yNzhsLTEuNTE5Ljg0OC0uNDc2LjI1Ny0uNDE3LjIxNC0uMTE2LjA1N2MtMS45MzQuOTEyLTQuMTg2IDEuNDgyLTcuMTY4IDEuNjVMMTUuNTIgMjJsLS4wNC0xYzIuMDQ1LS4wODIgMy43MjYtLjM0OSA1LjE4NS0uNzgtLjM0LS4yOTctLjgyMy0uNDU0LTEuNDgzLS41MTdsLS4zMS0uMDIyLS40MTUtLjAxMi0uODQ3LS4wMDUtLjM0Ny0uMDA5Yy0uNDY4LS4wMi0uNzItLjA3NS0uOTg3LS4yMDhsLS4zNzEtLjE5OC0uNTE3LS4yODJjLTEuMzgzLS43MzgtMi4zNTctLjg4MS0zLjM4Ny0uMjA4ek0xOS41IDVhNS41IDUuNSAwIDExMCAxMSA1LjUgNS41IDAgMDEwLTExem0wIDFhNC41IDQuNSAwIDEwMCA5IDQuNSA0LjUgMCAwMDAtOXptMCAxYS41LjUgMCAwMS41LjVWOGguNWEuNS41IDAgMDEuMDkuOTkyTDIwLjUgOUgxOXYxaDEuNWEuNS41IDAgMDEuNDkyLjQxbC4wMDguMDl2MmEuNS41IDAgMDEtLjQxLjQ5MkwyMC41IDEzSDIwdi41YS41LjUgMCAwMS0uNDEuNDkyTDE5LjUgMTRhLjUuNSAwIDAxLS40OTItLjQxTDE5IDEzLjVWMTNoLS41YS41LjUgMCAwMS0uMDktLjk5MkwxOC41IDEySDIwdi0xaC0xLjVhLjUuNSAwIDAxLS40OTItLjQxTDE4IDEwLjV2LTJhLjUuNSAwIDAxLjQxLS40OTJMMTguNSA4aC41di0uNWEuNS41IDAgMDEuNS0uNXoiIGZpbGw9InVybCgjYSkiLz48L3N2Zz4K",ze=n(7572);var Oe=n(7079);var ke=n(1527),_e=n(395),Pe=n(4565),Ue=n(8611);var Ye=n(8802),Ze=n(9855),Re=n(278),Qe=i.ZP.section.withConfig({displayName:"off-canvas-menu__OffCanvasMenu",componentId:"sc-1obzzaa-0"})(["position:fixed;background-color:var(--color-white);top:7.2rem;height:100vh;width:253px;opacity:1;overflow:scroll;transition:transform 0.4s;box-shadow:0 16px 20px 0 rgba(0,0,0,0.1);left:-254px;",";"],(function(e){return e.is_canvas_menu_open&&"transform: translateX(254px)"})),We=(0,i.ZP)(Qe).withConfig({displayName:"off-canvas-menu__OffCanvasMenuSecondary",componentId:"sc-1obzzaa-1"})(["top:10rem;"]),Ge=i.ZP.span.withConfig({displayName:"off-canvas-menu__Span",componentId:"sc-1obzzaa-2"})(["width:100%;"]),Be=i.ZP.span.withConfig({displayName:"off-canvas-menu__SpanSvg",componentId:"sc-1obzzaa-3"})(["& > img{width:16px;height:16px;}"]),Ve=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"off-canvas-menu__StyledLink",componentId:"sc-1obzzaa-4"})(["color:var(--color-black-3);margin-top:18px;font-size:14px;text-decoration:none;display:flex;align-items:center;& > div > img{width:24px;height:24px;margin-right:8px;}&:first-child{margin-top:16px;}"]),He=i.ZP.div.withConfig({displayName:"off-canvas-menu__SvgWrapper",componentId:"sc-1obzzaa-5"})(["width:24px;height:24px;margin-right:8px;"]),Fe=i.ZP.div.withConfig({displayName:"off-canvas-menu__OffCanvasMenuContainer",componentId:"sc-1obzzaa-6"})(["display:flex;flex-direction:column;padding:0 1.6rem 21rem;div{a:first-child{margin-top:0;}}"]),Je={border:"none",padding:"0",boxShadow:"none",flexDirection:"row"},Xe={marginLeft:"8px",paddingBottom:"16px",flexDirection:"column",display:"flex"},qe=function(e){var t=r.useContext(Ye.c).is_eu_country,n=(0,r.useRef)(),i=function(){e.closeOffCanvasMenu()};return(0,ie.O)(n,e.closeOffCanvasMenu,null,"mousedown"),r.createElement(Qe,{is_canvas_menu_open:e.is_canvas_menu_open,ref:n,is_eu_country:t},r.createElement(Fe,null,r.createElement(L,null,r.createElement(A,{header:(0,U.NC)("Trade"),header_style:Je,style:Xe},!e.is_ppc&&r.createElement(r.Fragment,null,r.createElement(g,{color:"grey-5",mb:"8px",size:"14px"},(0,U.NC)("Trade types")),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"CFDs",icon:function(){return r.createElement("img",{src:De.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade with leverage and tight spreads for better returns on successful trades."}),title:r.createElement(U.Xx,{translate_text:"CFDs"}),onClick:i,to:"/trade-types/cfds/"})),!t&&r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Options",icon:function(){return r.createElement("img",{src:xe.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Earn fixed payouts by predicting an asset's price movement."}),title:r.createElement(U.Xx,{translate_text:"Options"}),onClick:i,to:"/trade-types/options/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Multipliers",icon:function(){return r.createElement("img",{src:Ae.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Combine the upside of CFDs with the simplicity of options."}),title:r.createElement(U.Xx,{translate_text:"Multipliers"}),onClick:i,to:"/trade-types/multiplier/"}))),r.createElement(ne,{m:"16px 0",width:"100%",height:"1px",color:"grey-8"}),r.createElement(g,{color:"grey-5",mb:"8px",size:"14px"},(0,U.NC)("Trading platforms")),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DMT5",icon:function(){return r.createElement("img",{src:Ne.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade on Deriv MT5 (DMT5), the all-in-one FX and CFD trading platform."}),title:r.createElement(U.Xx,{translate_text:"DMT5"}),onClick:i,to:e.is_ppc_redirect?"/landing/dmt5/":"/dmt5/"})),!t&&r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"Derivx",icon:function(){return r.createElement("img",{src:we.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade FX and CFDs on a customisable, easy-to-use trading platform."}),title:r.createElement(U.Xx,{translate_text:"Deriv X"}),onClick:i,to:"/derivx/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DTrader",icon:function(){return r.createElement("img",{src:Ie.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"A whole new trading experience on a powerful yet easy to use platform."}),title:r.createElement(U.Xx,{translate_text:"DTrader"}),onClick:i,to:"/dtrader/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"SmartTrader",icon:function(){return r.createElement("img",{src:Oe.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Trade the world’s markets with our popular user-friendly platform."}),title:r.createElement(U.Xx,{translate_text:"SmartTrader"}),onClick:i,to:"trading",type:"smart_trader",external:"true",target:"_blank",otherLinkProps:{rel:"noopener noreferrer"}})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"DBot",icon:function(){return r.createElement("img",{src:ye.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Automated trading at your fingertips. No coding needed."}),title:r.createElement(U.Xx,{translate_text:"DBot"}),onClick:i,to:"/dbot/"})),r.createElement(P.kC,{mb:"2rem"},r.createElement(X,{aria_label:"BinaryBot",icon:function(){return r.createElement("img",{src:je.Z,alt:"",width:"32",height:"32"})},content:r.createElement(U.Xx,{translate_text:"Our classic “drag-and-drop” tool for creating trading bots, featuring pop-up trading charts, for advanced users."}),title:r.createElement(U.Xx,{translate_text:"BinaryBot"}),onClick:i,to:"https://bot.deriv.com/",external:"true",target:"_blank",otherLinkProps:{rel:"noopener noreferrer"}}))),r.createElement(A,{header:"Markets",header_style:Je,style:Xe},r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Forex",icon:function(){return r.createElement("img",{src:Le.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade the world’s largest financial market with popular forex pairs."),title:(0,U.NC)("Forex"),onClick:i,to:"/markets/forex/"})),!e.is_ppc&&r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Synthetic indices",icon:function(){return r.createElement("img",{src:Ue.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Enjoy synthetic markets that emulate real-world market movements."),title:(0,U.NC)("Synthetic indices"),onClick:i,to:"/markets/synthetic/"})),r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Stocks & indices",icon:function(){return r.createElement("img",{src:ke.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Predict broader market trends and diversify your risk with stocks & indices."),title:(0,U.NC)("Stocks & indices"),onClick:i,to:"/markets/stock/"})),r.createElement(P.kC,{mb:"3.2rem"},r.createElement(X,{aria_label:"Cryptocurrencies",icon:function(){return r.createElement("img",{src:_e.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade with leverage on the price movement of popular crypto-fiat pairs."),title:(0,U.NC)("Cryptocurrencies"),onClick:i,to:"/markets/cryptocurrencies/"})),r.createElement(P.kC,null,r.createElement(X,{aria_label:"Commodities",icon:function(){return r.createElement("img",{src:he.Z,alt:"",width:"32",height:"32"})},content:(0,U.NC)("Trade natural resources that are central to the world's economy."),title:(0,U.NC)("Commodities"),onClick:i,to:"/markets/commodities/"}))),r.createElement(A,{header:(0,U.NC)("About us"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/story/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Pe.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Our story"))),r.createElement(Ve,{to:"/leadership/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Se.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Our leadership"))),r.createElement(Ve,{to:"/partners/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ce.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Partnership programmes"))),r.createElement(Ve,{to:"/why-choose-us/",onClick:i},r.createElement("div",null,r.createElement("img",{src:ge.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Why choose us?"))),r.createElement(Ve,{to:"/contact_us/",onClick:i},r.createElement("div",null,r.createElement("img",{src:me.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Contact us"))),r.createElement(Ve,{to:"/careers/",onClick:i},r.createElement("div",null,r.createElement("img",{src:pe.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Careers")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"})))),r.createElement(A,{header:(0,U.NC)("Resources"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/help-centre/",onClick:i},r.createElement("div",null,r.createElement("img",{src:be.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Help centre"))),r.createElement(Ve,{to:"",type:"community",external:"true",target:"_blank",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:Me.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Community")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"}))),r.createElement(Ve,{to:"/trader-tools/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ze.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Traders’ tools"))),r.createElement(Ve,{to:"/payment-methods/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Ee.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Payment methods"))),r.createElement(Ve,{to:"/dmt5-trading-signals/#signal-subscriber/",onClick:i},r.createElement("div",null,r.createElement(He,null,r.createElement("img",{src:Re.Z,alt:"",width:"24",height:"24"}))),r.createElement("span",null,(0,U.NC)("DMT5 Signals"))),r.createElement(Ve,{to:le.bF,external:"true",target:"_blank",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iODcuODA2JSIgeTI9IjEyLjE5NCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRjQ0NEYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNGRjY0NDQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBkPSJNOC43NTcgMTUuNzc0YS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnptNiAwYS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnptNiAwYS4zNzQuMzc0IDAgMDEuMjM3LjQxN2wtLjAxOC4wNjYtMS4xMjUgM2EuMzc2LjM3NiAwIDAxLS42NzEuMDY0bC0uMDMxLS4wNjQtLjc3NC0yLjA2NC0uNzc0IDIuMDY0YS4zNzYuMzc2IDAgMDEtLjY3MS4wNjRsLS4wMzEtLjA2NC0xLjEyNS0zYS4zNzQuMzc0IDAgMTEuNzAyLS4yNjNsLjc3MyAyLjA2Mi43NzUtMi4wNjNhLjM3Ni4zNzYgMCAwMS42NzEtLjA2NGwuMDMxLjA2NC43NzQgMi4wNjMuNzc0LTIuMDYzYS4zNzYuMzc2IDAgMDEuNDgzLS4yMnpNMTIgNC41YTQuNSA0LjUgMCAxMTAgOSA0LjUgNC41IDAgMDEwLTl6bTAgLjc1YTMuNzUgMy43NSAwIDEwMCA3LjUgMy43NSAzLjc1IDAgMDAwLTcuNXptMi44OSAyLjM2Yy4xMy4xMy4xNDUuMzMyLjA0NC40NzhsLS4wNDQuMDUyLTMgM2EuMzc1LjM3NSAwIDAxLS40NzguMDQ0bC0uMDUyLS4wNDQtMS41LTEuNWEuMzc1LjM3NSAwIDAxLjQ3OC0uNTc0bC4wNTIuMDQ0IDEuMjM1IDEuMjM1TDE0LjM2IDcuNjFhLjM3NC4zNzQgMCAwMS41MyAweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+",alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Status page")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"}))),r.createElement(Ve,{to:"/academy/",onClick:i},r.createElement("div",null,r.createElement("img",{src:fe.Z,alt:"",width:"24",height:"24"})),r.createElement(Ge,null,(0,U.NC)("Academy")),r.createElement(Be,null,r.createElement("img",{src:Y,alt:"",width:"16",height:"16"})))),r.createElement(A,{header:(0,U.NC)("Legal"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/regulatory/",onClick:i},r.createElement("div",null,r.createElement("img",{src:ze.Z,alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Regulatory information"))),r.createElement(Ve,{to:"/terms-and-conditions/#clients",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iNy45ODYlIiB4Mj0iOTIuMDE0JSIgeTE9IjEwMCUiIHkyPSIwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJiIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iNTAuNzgxJSIgeTI9IjQ5LjIxOSUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRjQ0NEYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNGRjY0NDQiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0iYyIgeDE9IjAlIiB4Mj0iMTAwJSIgeTE9IjUxLjAyJSIgeTI9IjQ4Ljk4JSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJkIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iNTIlIiB5Mj0iNDglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY0NDRGIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2NDQ0Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImUiIHgxPSIwJSIgeDI9IjEwMCUiIHkxPSI1NS41NTYlIiB5Mj0iNDQuNDQ0JSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNDQ0RiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI0ZGNjQ0NCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMyAzKSI+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjxwYXRoIGZpbGw9InVybCgjYSkiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTkuMDIgMGMuNTA1IDAgLjk4Ni4yMDMgMS4zMzcuNTZsLjA5My4xMDEgMS4zNDggMS41ODloMS42ODVjLjM1OC4wMDYuNjk5LjE0Ljk2Mi4zNzZsLjEwNy4xMDhMMTYuNzkgNS4yNWguMDg1di4wOTZsLjAyOC4wMzFjLjE5My4yMi4zMTIuNDkyLjM0Ljc3OGwuMDA3LjE0M3YxMC4yOTZjMCAuNzc0LS42MzYgMS40LTEuNDIzIDEuNDA2SDYuNjgyYy0uNzg5IDAtMS40MzItLjYyOC0xLjQzMi0xLjQwNnYtLjg0NEgyLjE2N2ExLjQxOCAxLjQxOCAwIDAxLTEuNDEyLTEuMzFsLS4wMDUtLjExVjEuNDQ3QTEuNDEgMS40MSAwIDAxMi4wMzMuMDA2TDIuMTU5IDBIOS4wMnptNC40NTcgM0g2LjY4MkEuNjcuNjcgMCAwMDYgMy42NTZ2MTIuOTM4YzAgLjM2LjMwMy42NTYuNjgyLjY1Nmg5LjE0MmEuNjcuNjcgMCAwMC42NzYtLjY1NlY2LjI5NkEuNjMyLjYzMiAwIDAwMTYuNDI4IDZoLTEuNDM2Yy0uNzI3IDAtMS4zNDUtLjQ4OS0xLjQwNC0xLjEyOGwtLjAwNS0uMTAyLS4wNjktMS43NjZMMTMuNDc3IDN6TTkgLjc1SDIuMTU5YS42NTcuNjU3IDAgMDAtLjY1NS41OTVsLS4wMDQuMDkzVjE0LjMzYS42Ny42NyAwIDAwLjU4NC42NjVsLjA4My4wMDVINS4yNVYzLjY1NmMwLS43MzMuNTctMS4zMzIgMS4yOTQtMS40bC4xMzgtLjAwNkg5Vi43NXptNS4yODYgMi44MTNsLjA0NyAxLjE5MmMwIC4yMzYuMjM3LjQ1NS41NjcuNDlsLjA5Mi4wMDVoLjc5NGwtMS41LTEuNjg3ek05Ljc1MSAxLjAyTDkuNzUgMi4yNWgxLjA2NWwtLjkzNy0xLjEwM2ExLjE3MSAxLjE3MSAwIDAwLS4xMjctLjEyN3oiLz48cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iNy44NzUiIGZpbGw9InVybCgjYikiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iNS4yNSIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iOS4zNzUiIGZpbGw9InVybCgjYykiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIxIiB4PSI4LjYyNSIgeT0iMTAuODc1IiBmaWxsPSJ1cmwoI2IpIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMzc1Ii8+PHJlY3Qgd2lkdGg9IjUuMjUiIGhlaWdodD0iMSIgeD0iOC42MjUiIHk9IjEyLjM3NSIgZmlsbD0idXJsKCNjKSIgZmlsbC1ydWxlPSJub256ZXJvIiByeD0iLjM3NSIvPjxyZWN0IHdpZHRoPSIzLjc1IiBoZWlnaHQ9IjEiIHg9IjguNjI1IiB5PSIxMy44NzUiIGZpbGw9InVybCgjZCkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iNS42MjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iNy4xMjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iOC42MjUiIGZpbGw9InVybCgjZSkiIGZpbGwtcnVsZT0ibm9uemVybyIgcng9Ii4zNzUiLz48cmVjdCB3aWR0aD0iMi4yNSIgaGVpZ2h0PSIxIiB4PSIzLjM3NSIgeT0iMTAuMTI1IiBmaWxsPSJ1cmwoI2UpIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHJ4PSIuMzc1Ii8+PHJlY3Qgd2lkdGg9IjIuMjUiIGhlaWdodD0iMSIgeD0iMy4zNzUiIHk9IjExLjYyNSIgZmlsbD0idXJsKCNlKSIgZmlsbC1ydWxlPSJub256ZXJvIiByeD0iLjM3NSIvPjwvZz48L3N2Zz4K",alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Terms and conditions"))),r.createElement(Ve,{to:"/responsible/",onClick:i},r.createElement("div",null,r.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iMCUiIHgyPSIxMDAlIiB5MT0iMTAwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY0NDRGIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2NDQ0Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMyAzaDE4djE4SDN6Ii8+PHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTYuNjUgMEMxNy4zOTYgMCAxOCAuNjA0IDE4IDEuMzV2MTIuNmExLjM1IDEuMzUgMCAwMS0xLjM1IDEuMzVIMTEuN3YxLjhoMi4yNWEuNDUuNDUgMCAwMS4wOC44OTNsLS4wOC4wMDdoLTkuOWEuNDUuNDUgMCAwMS0uMDgtLjg5M2wuMDgtLjAwN0g2LjN2LTEuOEgxLjM1YTEuMzUgMS4zNSAwIDAxLTEuMzQ0LTEuMjJMMCAxMy45NVYxLjM1QzAgLjYwNC42MDQgMCAxLjM1IDB6TTEwLjggMTUuM0g3LjJ2MS44aDMuNnYtMS44em02LjMtMi43SC45djEuMzVjMCAuMjIuMTYuNDA1LjM3LjQ0M2wuMDguMDA3aDE1LjNhLjQ1LjQ1IDAgMDAuNDUtLjQ1VjEyLjZ6TTE2LjY1LjlIMS4zNWEuNDUuNDUgMCAwMC0uNDUuNDVWMTEuN2gxNi4yVjEuMzVjMC0uMjItLjE2LS40MDUtLjM3LS40NDNMMTYuNjUuOXptLTMuNDIgNC41MzhsLjA3LjAzOCAyLjcgMS44YS40NS40NSAwIDAxLS40MjguNzg3bC0uMDcyLS4wMzktMi4yMS0xLjQ3Mi0uNzEzIDIuMTRhLjQ1LjQ1IDAgMDEtLjU1My4yOWwtLjA3NS0uMDMtMS40NDUtLjcyMi0xLjU4IDIuMzdhLjQ1LjQ1IDAgMDEtLjU1Mi4xNjNsLS4wNzItLjAzOWEuNDUuNDUgMCAwMS0uMTYzLS41NTJsLjAzOS0uMDcyIDEuOC0yLjdhLjQ0OS40NDkgMCAwMS40OTctLjE4M2wuMDc4LjAzIDEuMzM1LjY2OC43MzctMi4yMDdhLjQ1LjQ1IDAgMDEuNjA3LS4yN3pNNS4zMTMgMS44OUExLjQ5NSAxLjQ5NSAwIDAxNi43OSAzLjI1NmwuMDA1LjEyOC0uMDAxLjc2NC45NjQuMDAxdjMuMzJjMCAuNTA4LS4yMTIuOTk0LS41ODYgMS4zNS0uMzcyLjM1My0uODczLjU1LTEuMzk0LjU1aC0uOTk5Yy0xLjA5NSAwLTEuOTg5LS44NS0xLjk4OS0xLjkwOFY0LjE0OWwxLjAyNS0uMDAxLjAwMS0uNzY3Yy4wMDYtLjgyLjY3LTEuNDg1IDEuNDk3LTEuNDkxem0xLjcyNSAyLjk3OUgzLjUxdjIuNTkyYzAgLjYxMy41IDEuMTI1IDEuMTQ2IDEuMTgzbC4xMjMuMDA1aC45OTlhMS4zIDEuMyAwIDAwLjg5Ny0uMzUyYy4yMzMtLjIyMS4zNjMtLjUxOS4zNjMtLjgyOHYtMi42ek00LjYzOSA1Ljk2NmEuNzI4LjcyOCAwIDAxMS4zOTEuMzI1LjcxOS43MTkgMCAwMS0uMjYxLjU2N3YuNjQ4YS40NS40NSAwIDExLS45IDB2LS42NDhhLjcyOC43MjggMCAwMS0uMjMtLjg5MnptLjY3NC0zLjM1NmEuNzgyLjc4MiAwIDAwLS43Ny42NzdsLS4wMDcuMDk3LS4wMDEuNzY0aDEuNTM5bC4wMDEtLjc2NGEuNzczLjc3MyAwIDAwLS43NjItLjc3NHoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiLz48L2c+PC9zdmc+Cg==",alt:"",width:"24",height:"24"})),r.createElement("span",null,(0,U.NC)("Secure and responsible trading")))),r.createElement(A,{header:(0,U.NC)("Partner"),header_style:Je,style:Xe},r.createElement(Ve,{to:"/partners/affiliate-ib/",onClick:i},r.createElement("div",null,r.createElement("img",{src:de,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Affiliates and IBs"))),r.createElement(Ve,{to:"/partners/payment-agent/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Te,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Payment agents"))),r.createElement(Ve,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:ve,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("API")))))))},Ke=function(e){var t=r.useContext(Ye.c).is_eu_country,n=(0,r.useRef)(),i=function(){e.closeOffCanvasMenu()},o=function(t){n.current.contains(t.target)||e.closeOffCanvasMenu()};return(0,r.useEffect)((function(){return document.addEventListener("mousedown",o,!1),function(){document.removeEventListener("mousedown",o,!1)}}),[]),r.createElement(We,{is_canvas_menu_open:e.is_canvas_menu_open,ref:n,is_eu_country:t},r.createElement(Fe,null,r.createElement(Ve,{to:"/partners/affiliate-ib/",onClick:i},r.createElement("div",null,r.createElement("img",{src:de,alt:"affiliate ib",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Affiliates and IBs"))),r.createElement(Ve,{to:"/partners/payment-agent/",onClick:i},r.createElement("div",null,r.createElement("img",{src:Te,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("Payment agents"))),r.createElement(Ve,{to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer",onClick:i},r.createElement("div",null,r.createElement("img",{src:ve,alt:"",width:"32",height:"32"})),r.createElement("span",null,(0,U.NC)("API")))))},$e=function(e){void 0===e&&(e=!1);var t=(0,r.useState)(e),n=t[0],i=t[1];return[n,function(){return i(!0)},function(){return i(!1)}]},et=(n(3249),(0,i.ZP)(P.xu).withConfig({displayName:"side-tab__StyledSideTab",componentId:"sc-1by0g10-0"})(["padding:0;display:flex;@media ","{justify-content:center;flex-direction:column;width:100%;}"],c.Z.tabletL),i.ZP.ol.withConfig({displayName:"side-tab__TabList",componentId:"sc-1by0g10-1"})(["width:",";list-style:none;"," @media ","{width:100%;}"],(function(e){return e.tab_width||"38.4rem"}),(function(e){return e.is_sticky&&(0,i.iv)(["position:sticky;height:fit-content;top:13rem;"])}),c.Z.tabletL),i.ZP.div.withConfig({displayName:"side-tab__TabContent",componentId:"sc-1by0g10-2"})(["flex:1;"]),i.ZP.li.withConfig({displayName:"side-tab__StyledTab",componentId:"sc-1by0g10-3"})(["cursor:pointer;width:38rem;margin:auto;padding:3px 0 3px 16px;transform:translateX(-16px);&.tab-active,&:hover{border-left:4px red solid;}& > p{color:var(--color-black-3);opacity:",";font-size:",";max-width:38.4rem;line-height:",";:hover{opacity:1;}}&.tab-active > p{opacity:1;}"],(function(e){var t=e.opacity;return null!=t?t:"0.32"}),(function(e){return e.font_size||"var(--text-size-s)"}),(function(e){var t=e.line_height;return null!=t?t:"30px"})),(0,i.iv)(["font-size:var(--text-size-m);color:var(--color-red);"])),tt=(i.ZP.li.withConfig({displayName:"side-tab__StyledDropDown",componentId:"sc-1by0g10-4"})(["padding:1rem 0;border-bottom:1px solid var(--color-red);display:flex;justify-content:space-between;align-items:center;","{","}"],g,et),i.ZP.div.withConfig({displayName:"side-tab__ItemWrapper",componentId:"sc-1by0g10-5"})(["display:flex;flex-direction:row;margin-bottom:1.4rem;"]),i.ZP.div.withConfig({displayName:"default-tab__TabContent",componentId:"zchzeg-0"})(["flex:1;width:100%;"])),nt=i.ZP.button.withConfig({displayName:"default-tab__TabButton",componentId:"zchzeg-1"})(["z-index:2;height:auto;padding:8px 24px 10px;display:flex;align-items:center;justify-content:center;cursor:pointer;background:transparent;outline:none;transition:border-color 0.2s ease-in;border:none;border-bottom:2px solid var(--color-grey-2);white-space:nowrap;@media ","{width:",";}"," &:hover,&:focus,&:active{border-bottom:2px solid ",";}"],c.Z.laptopM,(function(e){return e.mobile_tab_button_underline_length?e.mobile_tab_button_underline_length:"unset"}),(function(e){return e.selected&&(0,i.iv)(["border-color:var(--color-red);","{font-weight:bold;}"],g)}),(function(e){return e.selected?"var(--color-red)":"var(--color-red-2)"})),rt=i.ZP.div.withConfig({displayName:"default-tab__TabList",componentId:"zchzeg-2"})(["display:flex;width:100%;justify-content:",";position:relative;overflow:auto;::-webkit-scrollbar{display:none;}-ms-overflow-style:none;scrollbar-width:none;@media ","{justify-content:",";}@media ","{justify-content:",";}"],(function(e){return e.jc?e.jc:"center"}),c.Z.mobileL,(function(e){return e.jc_mobileL?e.jc_mobileL:"space-between"}),c.Z.laptopM,(function(e){return e.jc_laptopM?e.jc_laptopM:"center"})),it=i.ZP.div.withConfig({displayName:"default-tab__LineDivider",componentId:"zchzeg-3"})(["bottom:0;position:absolute;height:2px;width:",";background:var(--color-grey-2);z-index:1;"],(function(e){return e.line_divider_length?e.line_divider_length:"100%"})),ot=i.ZP.div.withConfig({displayName:"default-tab__Content",componentId:"zchzeg-4"})(["flex:1;width:100%;"]),at=(0,i.ZP)(g).withConfig({displayName:"default-tab__TextWrapper",componentId:"zchzeg-5"})(["text-align:center;font-size:var(--text-size-m);@media ","{font-size:",";}@media ","{font-size:",";}"],c.Z.tabletS,(function(e){var t=e.font_size;return null!=t?t:"var(--text-size-sm)"}),c.Z.mobileM,(function(e){var t=e.font_size;return null!=t?t:"var(--text-size-s)"})),ut=function(e){var t=e.children,n=e.route_from,i=e.tab_list,o=e.jc,a=e.jc_mobileL,u=e.jc_laptopM,c=e.line_divider_length,s=e.mobile_tab_button_underline_length,l=e.has_no_query,d=(0,r.useState)(0),f=d[0],p=d[1],g=l?function(e){var t=(0,r.useState)(e[0]);return[t[0],t[1]]}(i):function(e){var t=(0,r.useState)((0,C.FK)()&&(0,C.Vu)(e,(0,C.FK)())?(0,C.FK)():e[0]),n=t[0],i=t[1];return(0,r.useEffect)((function(){(0,C.FK)()&&(0,C.Vu)(e,(0,C.FK)())?(i((0,C.FK)()),(0,C.SM)()):(0,C.oN)(n)}),[]),(0,r.useEffect)((function(){(0,C.FK)()!==n&&(0,C.jU)()&&(0,C.oN)(n)}),[n]),(0,r.useEffect)((function(){(0,C.FK)()!==n&&(0,C.Vu)(e,(0,C.FK)())?(i((0,C.FK)()),(0,C.SM)()):(0,C.Vu)(e,(0,C.FK)())||(0,C.Bv)()}),[(0,C.FK)()]),[n,i]}(i),h=g[0],M=g[1];return(0,r.useEffect)((function(){p(i.indexOf(h))}),[h]),r.createElement(P.kC,{direction:"column"},r.createElement(rt,{role:"tablist",jc:o,jc_mobileL:a,jc_laptopM:u,line_divider_length:c},r.Children.map(t,(function(e,t){var o=e.props.label;return r.createElement(nt,{role:"tab",selected:f===t,"aria-selected":f===t?"true":"false",onClick:function(){return M(i[t])},mobile_tab_button_underline_length:s},r.createElement(at,{font_size:"markets"===n?"24px":void 0},o))})),r.createElement(it,{line_divider_length:c})),r.createElement(ot,null,r.Children.map(t,(function(e,t){return f===t?e:void 0}))))};ut.Panel=function(e){var t=e.children;return r.createElement(tt,{role:"tabpanel",tabindex:"0"},t)};var ct=(0,i.ZP)((function(e){return r.createElement(U.UE,e)})).withConfig({displayName:"localized-link-text__LocalizedLinkText",componentId:"sc-1rtd7wi-0"})([""," font-weight:",";font-size:",";text-decoration:none;cursor:pointer;&:hover{color:var(--color-red);text-decoration:underline;}@media ","{font-size:",";}"],p,(function(e){return e.weight||"normal"}),(function(e){return e.size||"1.6rem"}),c.Z.tabletL,(function(e){return e.size||"16px"})),st=["children"],lt=["children"],dt=i.ZP.span.withConfig({displayName:"timeline__Checkmark",componentId:"bzs07x-0"})(["display:inline-block;width:22px;height:22px;transform:rotate(45deg);&::before{content:'';position:absolute;width:2px;height:9px;background-color:",";left:11px;top:6px;}&::after{content:'';position:absolute;width:4px;height:2px;background-color:",";left:8px;top:13px;}"],(function(e){return e.color?e.color:"var(--color-white)"}),(function(e){return e.color?e.color:"var(--color-white)"})),ft=i.ZP.div.withConfig({displayName:"timeline__ContentWrapper",componentId:"bzs07x-1"})(["margin-top:0;margin-left:2rem;"]),pt=i.ZP.div.withConfig({displayName:"timeline__OvalWrapper",componentId:"bzs07x-2"})(["width:24px;height:24px;line-height:2.75rem;background-color:",";border-radius:50%;text-align:center;margin-right:0.8rem;position:absolute;padding-left:1px;left:-13px;"],(function(e){return e.color?e.color:"var(--color-red)"})),gt=i.ZP.div.withConfig({displayName:"timeline__FlexWrapper",componentId:"bzs07x-3"})(["display:flex;border-left:",";position:relative;padding-bottom:",";"],(function(e){return e.is_border?"var(--color-red) dashed 1px":"unset"}),(function(e){return e.pb?e.pb:"4rem"})),ht=function(){return r.createElement(pt,null,r.createElement(dt,null))},Mt=function(e){var t=e.children,n=(0,o.Z)(e,st);return r.createElement("div",n,t.map((function(e,n){return r.createElement(gt,{key:n,is_border:t.length!==n+1},r.createElement(ht,null),r.createElement(ft,null,r.createElement("div",null,e)))})))},mt=function(e){var t=e.children,n=(0,o.Z)(e,lt);return r.createElement("div",n,t)};Mt.Item=mt;i.ZP.ul.withConfig({displayName:"lists__Ul",componentId:"sc-1nquwra-0"})(["list-style-type:disc;font-size:var(--text-size-s);padding-left:2rem;color:var(--color-black);"]),i.ZP.li.withConfig({displayName:"lists__Li",componentId:"sc-1nquwra-1"})(["margin-bottom:0.8rem;&:last-child{margin-bottom:0;}"]);var yt,jt=n(4530);function vt(){return(vt=Object.assign||function(e){for(var t=1;t0?c:n?[n]:[]},t.I=function(e,t,n){return r.reduce((function(n,r){return r.plugin[e]?n.then((function(){return r.plugin[e](t,r.options)})):n}),Promise.resolve())}},8110:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var r=function(e){return e=e||Object.create(null),{on:function(t,n){(e[t]||(e[t]=[])).push(n)},off:function(t,n){e[t]&&e[t].splice(e[t].indexOf(n)>>>0,1)},emit:function(t,n){(e[t]||[]).slice().map((function(e){e(n)})),(e["*"]||[]).slice().map((function(e){e(t,n)}))}}}()},2257:function(e,t,n){"use strict";n.d(t,{UD:function(){return f},Cj:function(){return g},GA:function(){return p},DS:function(){return d}});var r=n(2098),i=n(1578),o=function(e){return void 0===e?e:"/"===e?"/":"/"===e.charAt(e.length-1)?e.slice(0,-1):e},a=n(5166),u=new Map,c=[],s=function(e){var t=decodeURIComponent(e);return(0,i.Z)(t,decodeURIComponent("/move-to-deriv")).split("#")[0].split("?")[0]};function l(e){return e.startsWith("/")||e.startsWith("https://")||e.startsWith("http://")?e:new URL(e,window.location.href+(window.location.href.endsWith("/")?"":"/")).pathname}var d=function(e){c=e},f=function(e){var t=h(e),n=c.map((function(e){var t=e.path;return{path:e.matchPath,originalPath:t}})),i=(0,r.pick)(n,t);return i?o(i.route.originalPath):null},p=function(e){var t=h(e),n=c.map((function(e){var t=e.path;return{path:e.matchPath,originalPath:t}})),i=(0,r.pick)(n,t);return i?i.params:{}},g=function e(t){var n=s(l(t));if(u.has(n))return u.get(n);var r=(0,a.J)(t);if(r)return e(r.toPath);var i=f(n);return i||(i=h(t)),u.set(n,i),i},h=function(e){var t=s(l(e));return"/index.html"===t&&(t="/"),t=o(t)}},5444:function(e,t,n){"use strict";n.r(t),n.d(t,{Link:function(){return i.ZP},withAssetPrefix:function(){return i.mc},withPrefix:function(){return i.dq},graphql:function(){return p},parsePath:function(){return i.cP},navigate:function(){return i.c4},useScrollRestoration:function(){return o.p2},StaticQueryContext:function(){return s},StaticQuery:function(){return d},PageRenderer:function(){return u.a},useStaticQuery:function(){return f},prefetchPathname:function(){return c}});var r=n(7294),i=n(8037),o=n(9679),a=n(861),u=n.n(a),c=n(8741).ZP.enqueue,s=r.createContext({});function l(e){var t=e.staticQueryData,n=e.data,i=e.query,o=e.render,a=n?n.data:t[i]&&t[i].data;return r.createElement(r.Fragment,null,a&&o(a),!a&&r.createElement("div",null,"Loading (StaticQuery)"))}var d=function(e){var t=e.data,n=e.query,i=e.render,o=e.children;return r.createElement(s.Consumer,null,(function(e){return r.createElement(l,{data:t,query:n,render:i||o,staticQueryData:e})}))},f=function(e){var t;r.useContext;var n=r.useContext(s);if(isNaN(Number(e)))throw new Error("useStaticQuery was called with a string but expects to be called using `graphql`. Try this:\n\nimport { useStaticQuery, graphql } from 'gatsby';\n\nuseStaticQuery(graphql`"+e+"`);\n");if(null!==(t=n[e])&&void 0!==t&&t.data)return n[e].data;throw new Error("The result of this StaticQuery could not be fetched.\n\nThis is likely a bug in Gatsby and if refreshing the page does not fix it, please open an issue in https://github.com/gatsbyjs/gatsby/issues")};function p(){throw new Error("It appears like Gatsby is misconfigured. Gatsby related `graphql` calls are supposed to only be evaluated at compile time, and then compiled away. Unfortunately, something went wrong and the query was left in the compiled code.\n\nUnless your site has a complex or custom babel/Gatsby configuration this is likely a bug in Gatsby.")}},8741:function(e,t,n){"use strict";n.d(t,{uQ:function(){return l},kL:function(){return y},ZP:function(){return N},hs:function(){return w},jN:function(){return v},N1:function(){return j}});var r=n(5413),i=n(2385),o=function(e){if("undefined"==typeof document)return!1;var t=document.createElement("link");try{if(t.relList&&"function"==typeof t.relList.supports)return t.relList.supports(e)}catch(e){return!1}return!1}("prefetch")?function(e,t){return new Promise((function(n,r){if("undefined"!=typeof document){var i=document.createElement("link");i.setAttribute("rel","prefetch"),i.setAttribute("href",e),Object.keys(t).forEach((function(e){i.setAttribute(e,t[e])})),i.onload=n,i.onerror=r,(document.getElementsByTagName("head")[0]||document.getElementsByName("script")[0].parentNode).appendChild(i)}else r()}))}:function(e){return new Promise((function(t,n){var r=new XMLHttpRequest;r.open("GET",e,!0),r.onload=function(){200===r.status?t():n()},r.send(null)}))},a={},u=function(e,t){return new Promise((function(n){a[e]?n():o(e,t).then((function(){n(),a[e]=!0})).catch((function(){}))}))},c=n(8110),s=n(2257),l={Error:"error",Success:"success"},d=function(e){return e&&e.default||e},f=function(e){return"/move-to-deriv/page-data/"+("/"===e?"index":function(e){return(e="/"===e[0]?e.slice(1):e).endsWith("/")?e.slice(0,-1):e}(e))+"/page-data.json"};function p(e,t){return void 0===t&&(t="GET"),new Promise((function(n,r){var i=new XMLHttpRequest;i.open(t,e,!0),i.onreadystatechange=function(){4==i.readyState&&n(i)},i.send(null)}))}var g,h=function(e,t){void 0===t&&(t=null);var n={componentChunkName:e.componentChunkName,path:e.path,webpackCompilationHash:e.webpackCompilationHash,matchPath:e.matchPath,staticQueryHashes:e.staticQueryHashes};return{component:t,json:e.result,page:n}},M=function(){function e(e,t){this.inFlightNetworkRequests=new Map,this.pageDb=new Map,this.inFlightDb=new Map,this.staticQueryDb={},this.pageDataDb=new Map,this.prefetchTriggered=new Set,this.prefetchCompleted=new Set,this.loadComponent=e,(0,s.DS)(t)}var t=e.prototype;return t.memoizedGet=function(e){var t=this,n=this.inFlightNetworkRequests.get(e);return n||(n=p(e,"GET"),this.inFlightNetworkRequests.set(e,n)),n.then((function(n){return t.inFlightNetworkRequests.delete(e),n})).catch((function(n){throw t.inFlightNetworkRequests.delete(e),n}))},t.setApiRunner=function(e){this.apiRunner=e,this.prefetchDisabled=e("disableCorePrefetching").some((function(e){return e}))},t.fetchPageDataJson=function(e){var t=this,n=e.pagePath,r=e.retries,i=void 0===r?0:r,o=f(n);return this.memoizedGet(o).then((function(r){var o=r.status,a=r.responseText;if(200===o)try{var u=JSON.parse(a);if(void 0===u.path)throw new Error("not a valid pageData response");return Object.assign(e,{status:l.Success,payload:u})}catch(e){}return 404===o||200===o?"/404.html"===n?Object.assign(e,{status:l.Error}):t.fetchPageDataJson(Object.assign(e,{pagePath:"/404.html",notFound:!0})):500===o?Object.assign(e,{status:l.Error}):i<3?t.fetchPageDataJson(Object.assign(e,{retries:i+1})):Object.assign(e,{status:l.Error})}))},t.loadPageDataJson=function(e){var t=this,n=(0,s.Cj)(e);if(this.pageDataDb.has(n)){var r=this.pageDataDb.get(n);return Promise.resolve(r)}return this.fetchPageDataJson({pagePath:n}).then((function(e){return t.pageDataDb.set(n,e),e}))},t.findMatchPath=function(e){return(0,s.UD)(e)},t.loadPage=function(e){var t=this,n=(0,s.Cj)(e);if(this.pageDb.has(n)){var r=this.pageDb.get(n);return r.error?{error:r.error,status:r.status}:Promise.resolve(r.payload)}if(this.inFlightDb.has(n))return this.inFlightDb.get(n);var i=Promise.all([this.loadAppData(),this.loadPageDataJson(n)]).then((function(e){var r=e[1];if(r.status===l.Error)return{status:l.Error};var i=r.payload,o=i,a=o.componentChunkName,u=o.staticQueryHashes,s=void 0===u?[]:u,d={},f=t.loadComponent(a).then((function(t){var n;return d.createdAt=new Date,!t||t instanceof Error?(d.status=l.Error,d.error=t):(d.status=l.Success,!0===r.notFound&&(d.notFound=!0),i=Object.assign(i,{webpackCompilationHash:e[0]?e[0].webpackCompilationHash:""}),n=h(i,t)),n})),p=Promise.all(s.map((function(e){if(t.staticQueryDb[e]){var n=t.staticQueryDb[e];return{staticQueryHash:e,jsonPayload:n}}return t.memoizedGet("/move-to-deriv/page-data/sq/d/"+e+".json").then((function(t){var n=JSON.parse(t.responseText);return{staticQueryHash:e,jsonPayload:n}})).catch((function(){throw new Error("We couldn't load \"/move-to-deriv/page-data/sq/d/"+e+'.json"')}))}))).then((function(e){var n={};return e.forEach((function(e){var r=e.staticQueryHash,i=e.jsonPayload;n[r]=i,t.staticQueryDb[r]=i})),n}));return Promise.all([f,p]).then((function(e){var r,i=e[0],o=e[1];return i&&(r=Object.assign({},i,{staticQueryResults:o}),d.payload=r,c.Z.emit("onPostLoadPageResources",{page:r,pageResources:r})),t.pageDb.set(n,d),d.error?{error:d.error,status:d.status}:r})).catch((function(e){return{error:e,status:l.Error}}))}));return i.then((function(){t.inFlightDb.delete(n)})).catch((function(e){throw t.inFlightDb.delete(n),e})),this.inFlightDb.set(n,i),i},t.loadPageSync=function(e,t){void 0===t&&(t={});var n=(0,s.Cj)(e);if(this.pageDb.has(n)){var r,i=this.pageDb.get(n);if(i.payload)return i.payload;if(null!==(r=t)&&void 0!==r&&r.withErrorDetails)return{error:i.error,status:i.status}}},t.shouldPrefetch=function(e){return!!function(){if("connection"in navigator&&void 0!==navigator.connection){if((navigator.connection.effectiveType||"").includes("2g"))return!1;if(navigator.connection.saveData)return!1}return!0}()&&!this.pageDb.has(e)},t.prefetch=function(e){var t=this;if(!this.shouldPrefetch(e))return!1;if(this.prefetchTriggered.has(e)||(this.apiRunner("onPrefetchPathname",{pathname:e}),this.prefetchTriggered.add(e)),this.prefetchDisabled)return!1;var n=(0,s.Cj)(e);return this.doPrefetch(n).then((function(){t.prefetchCompleted.has(e)||(t.apiRunner("onPostPrefetchPathname",{pathname:e}),t.prefetchCompleted.add(e))})),!0},t.doPrefetch=function(e){var t=this,n=f(e);return u(n,{crossOrigin:"anonymous",as:"fetch"}).then((function(){return t.loadPageDataJson(e)}))},t.hovering=function(e){this.loadPage(e)},t.getResourceURLsForPathname=function(e){var t=(0,s.Cj)(e),n=this.pageDataDb.get(t);if(n){var r=h(n.payload);return[].concat((0,i.Z)(m(r.page.componentChunkName)),[f(t)])}return null},t.isPageNotFound=function(e){var t=(0,s.Cj)(e),n=this.pageDb.get(t);return!n||n.notFound},t.loadAppData=function(e){var t=this;return void 0===e&&(e=0),this.memoizedGet("/move-to-deriv/page-data/app-data.json").then((function(n){var r,i=n.status,o=n.responseText;if(200!==i&&e<3)return t.loadAppData(e+1);if(200===i)try{var a=JSON.parse(o);if(void 0===a.webpackCompilationHash)throw new Error("not a valid app-data response");r=a}catch(e){}return r}))},e}(),m=function(e){return(window.___chunkMapping[e]||[]).map((function(e){return"/move-to-deriv"+e}))},y=function(e){function t(t,n){return e.call(this,(function(e){if(!t.components[e])throw new Error("We couldn't find the correct component chunk with the name "+e);return t.components[e]().then(d).catch((function(e){return e}))}),n)||this}(0,r.Z)(t,e);var n=t.prototype;return n.doPrefetch=function(t){return e.prototype.doPrefetch.call(this,t).then((function(e){if(e.status!==l.Success)return Promise.resolve();var t=e.payload,n=t.componentChunkName,r=m(n);return Promise.all(r.map(u)).then((function(){return t}))}))},n.loadPageDataJson=function(t){return e.prototype.loadPageDataJson.call(this,t).then((function(e){return e.notFound?p(t,"HEAD").then((function(t){return 200===t.status?{status:l.Error}:e})):e}))},t}(M),j=function(e){g=e},v={enqueue:function(e){return g.prefetch(e)},getResourceURLsForPathname:function(e){return g.getResourceURLsForPathname(e)},loadPage:function(e){return g.loadPage(e)},loadPageSync:function(e,t){return void 0===t&&(t={}),g.loadPageSync(e,t)},prefetch:function(e){return g.prefetch(e)},isPageNotFound:function(e){return g.isPageNotFound(e)},hovering:function(e){return g.hovering(e)},loadAppData:function(){return g.loadAppData()}},N=v;function w(){return g?g.staticQueryDb:{}}},804:function(e,t,n){"use strict";var r=n(5413),i=n(7294),o=n(7343),a=n(2257),u=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=Object.assign({},this.props,{params:Object.assign({},(0,a.GA)(this.props.location.pathname),this.props.pageResources.json.pageContext.__params)}),t=(0,i.createElement)(this.props.pageResources.component,Object.assign({},e,{key:this.props.path||this.props.pageResources.page.path}));return(0,o.h)("wrapPageElement",{element:t,props:e},t,(function(t){return{element:t.result,props:e}})).pop()},t}(i.Component);t.Z=u},2871:function(e,t,n){"use strict";var r=n(5413),i=n(7343),o=n(7294),a=n(3935),u=n(9499),c=n(9679),s=n(9228),l=n.n(s),d=n(5444),f=n(8741),p=n(5166),g=n(8110),h={id:"gatsby-announcer",style:{position:"absolute",top:0,width:1,height:1,padding:0,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",border:0},"aria-live":"assertive","aria-atomic":"true"},M=n(2393),m=n(8037);function y(e){var t=(0,p.J)(e);return null!=t&&(window.___replace(t.toPath),!0)}var j=function(e,t){y(e.pathname)||(0,i.h)("onPreRouteUpdate",{location:e,prevLocation:t})},v=function(e,t){y(e.pathname)||(0,i.h)("onRouteUpdate",{location:e,prevLocation:t})},N=function(e,t){if(void 0===t&&(t={}),"number"!=typeof e){var n=(0,m.cP)(e).pathname,r=(0,p.J)(n);if(r&&(e=r.toPath,n=(0,m.cP)(e).pathname),window.___swUpdated)window.location=n;else{var o=setTimeout((function(){g.Z.emit("onDelayedLoadPageResources",{pathname:n}),(0,i.h)("onRouteUpdateDelayed",{location:window.location})}),1e3);f.ZP.loadPage(n).then((function(r){if(!r||r.status===f.uQ.Error)return window.history.replaceState({},"",location.href),window.location=n,void clearTimeout(o);r&&r.page.webpackCompilationHash!==window.___webpackCompilationHash&&("serviceWorker"in navigator&&null!==navigator.serviceWorker.controller&&"activated"===navigator.serviceWorker.controller.state&&navigator.serviceWorker.controller.postMessage({gatsbyApi:"clearPathResources"}),window.location=n),(0,u.navigate)(e,t),clearTimeout(o)}))}}else M.V5.navigate(e)};function w(e,t){var n=this,r=t.location,o=r.pathname,a=r.hash,u=(0,i.h)("shouldUpdateScroll",{prevRouterProps:e,pathname:o,routerProps:{location:r},getSavedScrollPosition:function(e){return[0,n._stateStorage.read(e,e.key)]}});if(u.length>0)return u[u.length-1];if(e&&e.location.pathname===o)return a?decodeURI(a.slice(1)):[0,0];return!0}var I=function(e){function t(t){var n;return(n=e.call(this,t)||this).announcementRef=o.createRef(),n}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidUpdate=function(e,t){var n=this;requestAnimationFrame((function(){var e="new page at "+n.props.location.pathname;document.title&&(e=document.title);var t=document.querySelectorAll("#gatsby-focus-wrapper h1");t&&t.length&&(e=t[0].textContent);var r="Navigated to "+e;n.announcementRef.current&&(n.announcementRef.current.innerText!==r&&(n.announcementRef.current.innerText=r))}))},n.render=function(){return o.createElement("div",Object.assign({},h,{ref:this.announcementRef}))},t}(o.Component),L=function(e,t){var n,r;return e.href!==t.href||(null==e||null===(n=e.state)||void 0===n?void 0:n.key)!==(null==t||null===(r=t.state)||void 0===r?void 0:r.key)},b=function(e){function t(t){var n;return n=e.call(this,t)||this,j(t.location,null),n}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){v(this.props.location,null)},n.shouldComponentUpdate=function(e){return!!L(e.location,this.props.location)&&(j(this.props.location,e.location),!0)},n.componentDidUpdate=function(e){L(e.location,this.props.location)&&v(this.props.location,e.location)},n.render=function(){return o.createElement(o.Fragment,null,this.props.children,o.createElement(I,{location:location}))},t}(o.Component),S=n(804),D=n(4999);function A(e,t){for(var n in e)if(!(n in t))return!0;for(var r in t)if(e[r]!==t[r])return!0;return!1}var x=function(e){function t(t){var n;n=e.call(this)||this;var r=t.location,i=t.pageResources;return n.state={location:Object.assign({},r),pageResources:i||f.ZP.loadPageSync(r.pathname,{withErrorDetails:!0})},n}(0,r.Z)(t,e),t.getDerivedStateFromProps=function(e,t){var n=e.location;return t.location.href!==n.href?{pageResources:f.ZP.loadPageSync(n.pathname,{withErrorDetails:!0}),location:Object.assign({},n)}:{location:Object.assign({},n)}};var n=t.prototype;return n.loadResources=function(e){var t=this;f.ZP.loadPage(e).then((function(n){n&&n.status!==f.uQ.Error?t.setState({location:Object.assign({},window.location),pageResources:n}):(window.history.replaceState({},"",location.href),window.location=e)}))},n.shouldComponentUpdate=function(e,t){return t.pageResources?this.state.pageResources!==t.pageResources||(this.state.pageResources.component!==t.pageResources.component||(this.state.pageResources.json!==t.pageResources.json||(!(this.state.location.key===t.location.key||!t.pageResources.page||!t.pageResources.page.matchPath&&!t.pageResources.page.path)||function(e,t,n){return A(e.props,t)||A(e.state,n)}(this,e,t)))):(this.loadResources(e.location.pathname),!1)},n.render=function(){return this.props.children(this.state)},t}(o.Component),C=n(1578),E=new f.kL(D,[]);(0,f.N1)(E),E.setApiRunner(i.h),window.asyncRequires=D,window.___emitter=g.Z,window.___loader=f.jN,M.V5.listen((function(e){e.location.action=e.action})),window.___push=function(e){return N(e,{replace:!1})},window.___replace=function(e){return N(e,{replace:!0})},window.___navigate=function(e,t){return N(e,t)},y(window.location.pathname),(0,i.I)("onClientEntry").then((function(){(0,i.h)("registerServiceWorker").filter(Boolean).length>0&&n(154);var e=function(e){return o.createElement(u.BaseContext.Provider,{value:{baseuri:"/",basepath:"/"}},o.createElement(S.Z,e))},t=o.createContext({}),s=function(e){function n(){return e.apply(this,arguments)||this}return(0,r.Z)(n,e),n.prototype.render=function(){var e=this.props.children;return o.createElement(u.Location,null,(function(n){var r=n.location;return o.createElement(x,{location:r},(function(n){var r=n.pageResources,i=n.location,a=(0,f.hs)();return o.createElement(d.StaticQueryContext.Provider,{value:a},o.createElement(t.Provider,{value:{pageResources:r,location:i}},e))}))}))},n}(o.Component),p=function(n){function i(){return n.apply(this,arguments)||this}return(0,r.Z)(i,n),i.prototype.render=function(){var n=this;return o.createElement(t.Consumer,null,(function(t){var r=t.pageResources,i=t.location;return o.createElement(b,{location:i},o.createElement(c.$C,{location:i,shouldUpdateScroll:w},o.createElement(u.Router,{basepath:"/move-to-deriv",location:i,id:"gatsby-focus-wrapper"},o.createElement(e,Object.assign({path:"/404.html"===r.page.path?(0,C.Z)(i.pathname,"/move-to-deriv"):encodeURI(r.page.matchPath||r.page.path)},n.props,{location:i,pageResources:r},r.json)))))}))},i}(o.Component),g=window,h=g.pagePath,M=g.location;h&&"/move-to-deriv"+h!==M.pathname&&!(E.findMatchPath((0,C.Z)(M.pathname,"/move-to-deriv"))||"/404.html"===h||h.match(/^\/404\/?$/)||h.match(/^\/offline-plugin-app-shell-fallback\/?$/))&&(0,u.navigate)("/move-to-deriv"+h+M.search+M.hash,{replace:!0}),f.jN.loadPage(M.pathname).then((function(e){if(!e||e.status===f.uQ.Error){var t="page resources for "+M.pathname+" not found. Not rendering React";if(e&&e.error)throw console.error(t),e.error;throw new Error(t)}window.___webpackCompilationHash=e.page.webpackCompilationHash;var n=(0,i.h)("wrapRootElement",{element:o.createElement(p,null)},o.createElement(p,null),(function(e){return{element:e.result}})).pop(),r=function(){var e=o.useRef(!1);return o.useEffect((function(){e.current||(e.current=!0,performance.mark("onInitialClientRender"),(0,i.h)("onInitialClientRender"))}),[]),o.createElement(s,null,n)},u=(0,i.h)("replaceHydrateFunction",void 0,a.createRoot?a.createRoot:a.hydrate)[0];l()((function(){var e="undefined"!=typeof window?document.getElementById("___gatsby"):null;u===a.createRoot?u(e,{hydrate:!0}).render(o.createElement(r,null)):u(o.createElement(r,null),e)}))}))}))},6947:function(e,t,n){"use strict";n.r(t);var r=n(7294),i=n(8741),o=n(804);t.default=function(e){var t=e.location,n=i.ZP.loadPageSync(t.pathname);return n?r.createElement(o.Z,Object.assign({location:t,pageResources:n},n.json)):null}},861:function(e,t,n){var r;e.exports=(r=n(6947))&&r.default||r},3639:function(e,t){t.O=function(e){return e}},5166:function(e,t,n){"use strict";n.d(t,{J:function(){return a}});var r=JSON.parse('[{"fromPath":"/move-to-deriv/en/404.htm","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404.html"},{"fromPath":"/move-to-deriv/en/404.htm/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404.html"},{"fromPath":"/move-to-deriv/en/404","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404/"},{"fromPath":"/move-to-deriv/en/404/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/404/"},{"fromPath":"/move-to-deriv/en","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/"},{"fromPath":"/move-to-deriv/en/","isPermanent":true,"ignoreCase":true,"redirectInBrowser":true,"toPath":"/move-to-deriv/"}]'),i=new Map,o=new Map;function a(e){var t=i.get(e);return t||(t=o.get(e.toLowerCase())),t}r.forEach((function(e){e.ignoreCase?o.set(e.fromPath,e):i.set(e.fromPath,e)}))},154:function(e,t,n){"use strict";n.r(t);var r=n(7343);"https:"!==window.location.protocol&&"localhost"!==window.location.hostname?console.error("Service workers can only be used over HTTPS, or on localhost for development"):"serviceWorker"in navigator&&navigator.serviceWorker.register("/move-to-deriv/sw.js").then((function(e){e.addEventListener("updatefound",(function(){(0,r.h)("onServiceWorkerUpdateFound",{serviceWorker:e});var t=e.installing;console.log("installingWorker",t),t.addEventListener("statechange",(function(){switch(t.state){case"installed":navigator.serviceWorker.controller?(window.___swUpdated=!0,(0,r.h)("onServiceWorkerUpdateReady",{serviceWorker:e}),window.___failedResources&&(console.log("resources failed, SW updated - reloading"),window.location.reload())):(console.log("Content is now available offline!"),(0,r.h)("onServiceWorkerInstalled",{serviceWorker:e}));break;case"redundant":console.error("The installing service worker became redundant."),(0,r.h)("onServiceWorkerRedundant",{serviceWorker:e});break;case"activated":(0,r.h)("onServiceWorkerActive",{serviceWorker:e})}}))}))})).catch((function(e){console.error("Error during service worker registration:",e)}))},1578:function(e,t,n){"use strict";function r(e,t){return void 0===t&&(t=""),t?e===t?"/":e.startsWith(t+"/")?e.slice(t.length):e:e}n.d(t,{Z:function(){return r}})},9037:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{wrapRootElement:function(){return wrapRootElement},onInitialClientRender:function(){return onInitialClientRender},onClientEntry:function(){return onClientEntry},onPreRouteUpdate:function(){return onPreRouteUpdate},onRouteUpdate:function(){return onRouteUpdate},wrapPageElement:function(){return wrapPageElement}});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(7294),nprogress__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(2075),nprogress__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(nprogress__WEBPACK_IMPORTED_MODULE_1__),_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(949),_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__),_src_components_localization__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(8838),_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(9982),_src_common_storage__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(4215),_src_themes_media__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(2343),_src_store__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(8802),_src_common_live_chat_redirection_checking_js__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(773),common_utility__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(4845),common_constants__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(476),is_browser="undefined"!=typeof window,checkDomain=function checkDomain(){return eval(decodeURIComponent("var%20curhost%20%3D%20window.location.hostname%3B%20var%20t8hvj%20%3D%20%2F%5Cb%28deriv%7Cbinary%7Cbinaryqa%5B0-9%5D%7B2%7D%29%5C.%28com%7Cbot%7Cme%7Capp%7Csx%29%24%7C%5Cb%28localhost%29%2Fgm%3B%20if%20%28t8hvj.test%28curhost%29%20%3D%3D%20false%29%7Balert%28%22Not%20our%20domain%22%29%7D"))},sendTags=function(e){var t=_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.get("i18n")||"",n=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.ge)(),r=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.KR)(n)||{loginid:"",residence:""},i=r.loginid,o=r.residence;e.getTags().then((function(n){return n.result["Login ID"]&&n.result["Site Language"]&&n.result.Residence?null:e.setTags({"Login ID":i,"Site Language":t.toLowerCase(),Residence:o})})).catch((function(e){return console.error(e),null}))},pushwooshInit=function(e){e.push(["init",{logLevel:"error",applicationCode:common_constants__WEBPACK_IMPORTED_MODULE_10__.U8,safariWebsitePushID:"web.com.deriv",defaultNotificationTitle:"Deriv.com",defaultNotificationImage:"https://deriv.com/favicons/favicon-192x192.png"}]),e.push(["onReady",function(t){try{e.isSubscribed().then((function(t){t||e.subscribe()}))}catch(e){}sendTags(t)}])},wrapRootElement=function(e){var t=e.element;return react__WEBPACK_IMPORTED_MODULE_0__.createElement(_src_store__WEBPACK_IMPORTED_MODULE_7__.N,null,react__WEBPACK_IMPORTED_MODULE_0__.createElement(_src_themes_media__WEBPACK_IMPORTED_MODULE_6__.C1,null,t))},onInitialClientRender=function(){if(is_browser){window.location.pathname.match(/^(\/ach\/)|\/ach$/)&&((0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.yv)()||_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.set("i18n","ach"));var e=_src_common_storage__WEBPACK_IMPORTED_MODULE_5__.j7.get("i18n");if(!(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.yv)()&&e&&e.match("ach")){var t=document.createElement("script");t.type="text/javascript",t.text="\n var _jipt = []; _jipt.push(['project', 'deriv-com']);\n var crowdin = document.createElement(\"script\");\n crowdin.setAttribute('src', '//cdn.crowdin.com/jipt/jipt.js');\n document.head.appendChild(crowdin);\n ",document.head.appendChild(t)}}nprogress__WEBPACK_IMPORTED_MODULE_1___default().done()},onClientEntry=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().start();var e=window.location.hostname===common_constants__WEBPACK_IMPORTED_MODULE_10__.iC,t=new _deriv_web_push_notifications__WEBPACK_IMPORTED_MODULE_2__.Pushwoosh;(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.fN)()&&pushwooshInit(t),!(0,_src_common_websocket_config__WEBPACK_IMPORTED_MODULE_4__.RG)()&&e&&((0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({src:"https://www.googletagmanager.com/gtm.js?id=GTM-TNX2ZKH",id:"gtm-test-container"}),(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({text:"\n (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\n })(window,document,'script','dataLayer','GTM-TNX2ZKH');"})),(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.Gx)({src:"https://static.deriv.com/scripts/cookie.js",async:!0}),(0,_src_common_live_chat_redirection_checking_js__WEBPACK_IMPORTED_MODULE_8__.C)()},onPreRouteUpdate=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().start()},onRouteUpdate=function(){nprogress__WEBPACK_IMPORTED_MODULE_1___default().done(),checkDomain();var e=window.dataLayer,t=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.ge)(),n=(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.KR)(t),r=!!n;setTimeout((function(){null==e||e.push(Object.assign({event:"page_load",loggedIn:r,language:(0,common_utility__WEBPACK_IMPORTED_MODULE_9__.G3)()},r&&{visitorId:n.loginid,currency:n.currency,email:n.email,userId:n.user_id}))}),50)},wrapPageElement=_src_components_localization__WEBPACK_IMPORTED_MODULE_3__.q7},5262:function(e){e.exports={en:{is_default:!0,path:"en",display_name:"English",short_name:"EN",affiliate_lang:0},pt:{path:"pt",display_name:"Português",short_name:"PT",affiliate_lang:9},es:{path:"es",display_name:"Español",short_name:"ES",affiliate_lang:8},ru:{path:"ru",display_name:"Русский",short_name:"RU",affiliate_lang:1},fr:{path:"fr",display_name:"Français",short_name:"FR",affiliate_lang:2},th:{path:"th",display_name:"Thai",short_name:"TH",affiliate_lang:12},id:{path:"id",display_name:"Indonesia",short_name:"ID",affiliate_lang:4},vi:{path:"vi",display_name:"Tiếng Việt",short_name:"VI",affiliate_lang:6},it:{path:"it",display_name:"Italiano",short_name:"IT",affiliate_lang:3},zh_cn:{path:"zh-cn",display_name:"简体中文",short_name:"简体",affiliate_lang:10},pl:{path:"pl",display_name:"Polish",short_name:"PL",affiliate_lang:5},zh_tw:{path:"zh-tw",display_name:"繁體中文",short_name:"繁體",affiliate_lang:11},ach:{path:"ach",display_name:"Crowdin",short_name:"CR"}}},6911:function(e,t,n){"use strict";var r=n(8580);t.Z=void 0;var i=r(n(3246)),o=r(n(4362)),a=r(n(5666)),u=r(n(3793)),c=r(n(7294)),s=r(n(5697)),l=r(n(6807)),d=n(1430),f=n(3053),p=n(4669),g=n(6837),h=n(3096),M=n(4185),m=n(574),y=n(1152),j=n(5734),v=function(e){function t(t){var n;(n=e.call(this,t)||this).intersectionListener=function(){var e=(0,p.inImageCache)(n.props);n.state.isVisible||"function"!=typeof n.props.onStartLoad||n.props.onStartLoad({wasCached:e}),n.imageRef=(0,g.activatePictureRef)(n.imageRef,n.props,n.selfRef),n.setState((function(e){return{isVisible:!0,imageState:e.imageState+1}}),(function(){n.setState((function(t){return{imgLoaded:e,imgCached:(0,g.hasActivatedPictureRefs)(n.imageRef),imageState:t.imageState+1}}))}))};var r=(0,d.convertProps)(t),i=!0,u=!1,c=r.fadeIn,s=(0,p.inImageCache)(r);!s&&(0,j.isBrowser)()&&window.IntersectionObserver&&(i=!1,u=!0),(0,j.isBrowser)()||(i=!1),r.critical&&(i=!0,u=!1);var f=!(r.critical&&!c||(0,j.isBrowser)()),h=(0,M.fixClassName)(r)[0];return n.backgroundStyles=(0,M.presetBackgroundStyles)((0,l.default)(r.className)),n.handleImageLoaded=n.handleImageLoaded.bind((0,a.default)(n)),n.handleRef=n.handleRef.bind((0,a.default)(n)),n.imageRef=(0,g.createPictureRef)((0,o.default)({},r,{isVisible:i}),n.handleImageLoaded),n.selfRef=null,n.state={isVisible:i,imgLoaded:!1,IOSupported:u,fadeIn:c,hasNoScript:f,seenBefore:s,imageState:0,currentClassNames:h},n}(0,u.default)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.backgroundStyles=(0,M.presetBackgroundStyles)((0,l.default)(this.props.className)),this.state.isVisible&&"function"==typeof this.props.onStartLoad&&this.props.onStartLoad({wasCached:(0,p.inImageCache)(this.props)}),(this.props.critical||this.state.seenBefore)&&(0,g.imageReferenceCompleted)(this.imageRef,this.props)&&this.handleImageLoaded();var e=(0,M.fixClassName)(this.props)[0];this.setState({currentClassNames:e})},n.componentDidUpdate=function(e){var t=this;if((0,f.imagePropsChanged)(this.props,e)){var n=(0,d.convertProps)(this.props),r=(0,p.inImageCache)(n),i=(0,M.fixClassName)(n)[0];this.setState({isVisible:r||n.critical,imgLoaded:r,seenBefore:r,currentClassNames:i},(function(){t.bgImage=(0,f.getCurrentFromData)({data:t.imageRef,propName:"currentSrc",returnArray:!0})||(0,f.getCurrentFromData)({data:t.imageRef,propName:"src",returnArray:!0}),t.imageRef=(0,g.createPictureRef)((0,o.default)({},n,{isVisible:t.state.isVisible}),t.handleImageLoaded)}))}},n.componentWillUnmount=function(){this.imageRef&&(Array.isArray(this.imageRef)?this.imageRef.forEach((function(e){e&&!(0,j.isString)(e)&&(e.onload=null)})):this.imageRef.onload=null),this.cleanUpListeners&&this.cleanUpListeners()},n.handleRef=function(e){this.selfRef=e,this.state.IOSupported&&e&&(this.cleanUpListeners=(0,y.listenToIntersections)(e,this.intersectionListener,this.props.rootMargin))},n.handleImageLoaded=function(){(0,p.activateCacheForImage)(this.props),this.setState((function(e){return{imgLoaded:!0,imageState:e.imageState+1}})),this.state.seenBefore&&this.setState({fadeIn:!1}),this.props.onLoad&&this.props.onLoad()},n.render=function(){var e=(0,M.fixOpacity)((0,d.convertProps)(this.props),this.props.preserveStackingContext),t=(e.className,e.style),n=void 0===t?{}:t,r=e.fluid,a=e.fixed,u=e.backgroundColor,s=e.durationFadeIn,l=e.Tag,p=e.children,g=e.keepStatic,y=(0,i.default)(e,["className","style","fluid","fixed","backgroundColor","durationFadeIn","Tag","children","keepStatic"]),j=(0,d.stripRemainingProps)(y),v="boolean"==typeof u?"lightgray":void 0!==u?u:"",N=!0===this.state.fadeIn&&!this.state.imgCached||"soft"===this.props.fadeIn,w=N?s/2+"ms":"none",I=(0,o.default)({position:"relative"},n);this.props.preserveStackingContext||(I.opacity=.99);var L=(0,f.getCurrentSrcData)({fluid:r,fixed:a,returnArray:!0}),b=(0,f.getCurrentSrcData)({fluid:r,fixed:a})||{};if(r||a)a&&(I.width=n.width||L.width,I.height=n.height||L.height,I.display="inline-block","inherit"===n.display&&delete I.display);else{if(!g)return null;b.srcSet=""}var S=(0,h.switchImageSettings)({image:L,bgImage:this.bgImage,imageRef:this.imageRef,state:this.state});this.bgImage=S.nextImageArray||S.nextImage||this.bgImage;var D=(0,m.createPseudoStyles)((0,o.default)({className:this.state.currentClassNames,transitionDelay:w,bgColor:v,backgroundStyles:this.backgroundStyles,style:n,fadeIn:N},S,{originalData:r||a})),A=(0,m.createNoScriptStyles)({image:L,bgColor:v,className:this.state.currentClassNames,backgroundStyles:this.backgroundStyles,style:n}),x=(r?"fluid":"")+(a?"fixed":"")+"-"+JSON.stringify(b.srcSet),C=(0,o.default)({},this.backgroundStyles,I);return c.default.createElement(l,(0,o.default)({className:this.state.currentClassNames,style:C,ref:this.handleRef,key:x},j),c.default.createElement("style",{dangerouslySetInnerHTML:{__html:D}}),this.state.hasNoScript&&c.default.createElement("noscript",null,c.default.createElement("style",{dangerouslySetInnerHTML:{__html:A}})),p)},t}(c.default.Component);v.defaultProps={critical:!1,fadeIn:!0,durationFadeIn:500,Tag:"div",preserveStackingContext:!1,rootMargin:"200px",keepStatic:!1};var N=s.default.shape({width:s.default.number.isRequired,height:s.default.number.isRequired,src:s.default.string.isRequired,srcSet:s.default.string.isRequired,base64:s.default.string,tracedSVG:s.default.string,srcWebp:s.default.string,srcSetWebp:s.default.string,srcAvif:s.default.string,srcSetAvif:s.default.string,media:s.default.string}),w=s.default.shape({aspectRatio:s.default.number.isRequired,src:s.default.string.isRequired,srcSet:s.default.string.isRequired,sizes:s.default.string,base64:s.default.string,tracedSVG:s.default.string,srcWebp:s.default.string,srcSetWebp:s.default.string,srcAvif:s.default.string,srcSetAvif:s.default.string,media:s.default.string});v.propTypes={fixed:s.default.oneOfType([N,s.default.arrayOf(N),s.default.arrayOf(s.default.oneOfType([N,s.default.string]))]),fluid:s.default.oneOfType([w,s.default.arrayOf(w),s.default.arrayOf(s.default.oneOfType([w,s.default.string]))]),fadeIn:s.default.oneOfType([s.default.string,s.default.bool]),durationFadeIn:s.default.number,className:s.default.oneOfType([s.default.string,s.default.object]),critical:s.default.bool,crossOrigin:s.default.oneOfType([s.default.string,s.default.bool]),style:s.default.oneOfType([s.default.object,s.default.array]),backgroundColor:s.default.oneOfType([s.default.string,s.default.bool]),onLoad:s.default.func,onError:s.default.func,onStartLoad:s.default.func,Tag:s.default.oneOfType([s.default.string,s.default.func]),preserveStackingContext:s.default.bool,rootMargin:s.default.string,keepStatic:s.default.bool};var I=v;t.Z=I},6807:function(e,t,n){"use strict";t.__esModule=!0,t.default=t.getBackgroundStylesForSingleClass=t.getStyleRules=t.getStyleRulesForClassName=void 0;var r=n(5734),i=function(e){for(var t=(0,r.isBrowser)()?window.document.styleSheets:[],n=0;n0&&void 0!==e[0].style)switch(e[0].style.constructor.name||e[0].style.constructor.toString()){case"CSS2Properties":case"[object MSStyleCSSProperties]":Object.values(e[0].style).forEach((function(n){t[(0,r.toCamelCase)(n)]=e[0].style[n]}));break;case"CSSStyleDeclaration":t=e[0].style;break;default:console.error("Unknown style object prototype")}return t};t.getStyleRules=o;var a=function(e){if(e&&(0,r.isString)(e)){var t=i("."+e);if((null==t?void 0:t.length)>0&&void 0!==t[0].style)return Object.keys(o(t)).filter((function(e){return 0===e.indexOf("background")&&""!==t[0].style[e]})).reduce((function(e,n){return e[(0,r.toCamelCase)(n)]=t[0].style[n],e}),{})}return{}};t.getBackgroundStylesForSingleClass=a;var u=function(e){if((0,r.isBrowser)()){var t=(0,r.stringToArray)(e);if(t instanceof Array){var n=[];return t.forEach((function(e){return n.push(a(e))})),Object.assign.apply(Object,n)}return a(e)}return{}};t.default=u},6254:function(e,t){"use strict";t.__esModule=!0,t.resetComponentClassCache=t.activateCacheForComponentClass=t.inComponentClassCache=void 0;var n=Object.create({});t.inComponentClassCache=function(e){return n[e]||!1};t.activateCacheForComponentClass=function(e){e&&(n[e]=!0)};t.resetComponentClassCache=function(){for(var e in n)delete n[e]}},1430:function(e,t,n){"use strict";var r=n(8580);t.__esModule=!0,t.convertProps=t.stripRemainingProps=void 0;var i=r(n(4362)),o=r(n(5404)),a=n(9810);t.stripRemainingProps=function(e){return(0,o.default)(e)};t.convertProps=function(e){var t=(0,i.default)({},e),n=t.fixed;return t.fluid&&(0,a.hasArtDirectionSupport)(e,"fluid")&&(t.fluid=(0,a.groupByMedia)(t.fluid)),n&&(0,a.hasArtDirectionSupport)(e,"fixed")&&(t.fixed=(0,a.groupByMedia)(t.fixed)),t}},4669:function(e,t,n){"use strict";t.__esModule=!0,t.resetImageCache=t.activateCacheForMultipleImages=t.activateCacheForImage=t.allInImageCache=t.inImageCache=void 0;var r=n(1430),i=n(9810),o=n(3053),a=n(5734),u=Object.create({}),c=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=!1);var c=(0,r.convertProps)(e),l=(0,o.hasImageArray)(c)&&!(0,i.hasArtDirectionArray)(c);if(l&&!n)return s(e);var d=l?(0,o.getSelectedImage)(c,t):(0,o.getImageSrcKey)(c);if((0,a.isObject)(d)){var f=(0,o.getImageSrcKey)({fluid:d,fixed:d});return u[f]||!1}return u[d]||!1};t.inImageCache=c;var s=function(e){var t=(0,r.convertProps)(e);return(t.fluid||t.fixed).every((function(e,n){return c(t,n,!0)}))};t.allInImageCache=s;var l=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=!1);var c=(0,r.convertProps)(e),s=(0,o.hasImageArray)(c)&&!(0,i.hasArtDirectionArray)(c);if(s&&!n)return d(e);var l=s?(0,o.getSelectedImage)(c,t):(0,o.getImageSrcKey)(c);if(l)if((0,a.isObject)(l)){var f=(0,o.getImageSrcKey)({fluid:l,fixed:l});u[f]=!0}else u[l]=!0};t.activateCacheForImage=l;var d=function(e){var t=(0,r.convertProps)(e);(t.fluid||t.fixed).forEach((function(e,n){return l(t,n,!0)}))};t.activateCacheForMultipleImages=d;t.resetImageCache=function(){for(var e in u)delete u[e]}},3096:function(e,t,n){"use strict";t.__esModule=!0,t.switchImageSettings=void 0;var r=n(3053),i=n(9810),o=n(5734);t.switchImageSettings=function(e){var t,n,a=e.image,u=e.bgImage,c=e.imageRef,s=e.state,l=(0,r.getCurrentFromData)({data:c,propName:"currentSrc"}),d=Array.isArray(a)&&!(0,i.hasArtDirectionArray)({fluid:a}),f=Array.isArray(u)?(0,o.filteredJoin)(u):u,p=d&&s.seenBefore&&!!l;if(d){l||(t=(0,r.getCurrentFromData)({data:a,propName:"tracedSVG",returnArray:d}),t=(0,o.combineArray)((0,r.getCurrentFromData)({data:a,propName:"base64",returnArray:d}),t)),t=(0,o.combineArray)((0,r.getCurrentFromData)({data:a,propName:"CSS_STRING",addUrl:!1,returnArray:d}),t),(s.imgLoaded||l)&&s.isVisible&&(l?(t=(0,o.combineArray)((0,r.getCurrentFromData)({data:c,propName:"currentSrc",returnArray:d}),t),p=!0):(t=(0,o.combineArray)((0,r.getCurrentFromData)({data:c,propName:"src",returnArray:d}),t),p=!0)),t=(0,o.combineArray)(t,u);var g=(0,r.createDummyImageArray)(a.length);n=t=(0,o.combineArray)(t,g),t=(0,o.filteredJoin)(t)}else t="",t=(0,r.getCurrentFromData)({data:a,propName:"tracedSVG"})||(0,r.getCurrentFromData)({data:a,propName:"base64"}),s.imgLoaded&&s.isVisible&&(t=l,p=!0);var h=s.imageState%2;!d&&""===t&&s.imgLoaded&&s.isVisible&&c&&!c.currentSrc&&(t=(0,r.getCurrentFromData)({data:c,propName:"src",checkLoaded:!1}),p=!0),t||(t=f);var M={lastImage:f,nextImage:t,afterOpacity:h,finalImage:p};return n&&(M.nextImageArray=n),M}},6837:function(e,t,n){"use strict";t.__esModule=!0,t.imageReferenceCompleted=t.hasPictureRef=t.hasActivatedPictureRefs=t.activateMultiplePictureRefs=t.activatePictureRef=t.createMultiplePictureRefs=t.createPictureRef=void 0;var r=n(1430),i=n(3053),o=n(9810),a=n(5734),u=n(4669),c=function(e,t,n,u){void 0===u&&(u=!1);var c=(0,r.convertProps)(e);if((0,a.isBrowser)()&&(void 0!==c.fluid||void 0!==c.fixed)){if((0,i.hasImageArray)(c)&&!(0,o.hasArtDirectionArray)(c)&&!u)return s(e,t);var d=new Image;return d.onload=function(){return t()},d.complete||"function"!=typeof c.onLoad||d.addEventListener("load",c.onLoad),"function"==typeof c.onError&&d.addEventListener("error",c.onError),c.crossOrigin&&(d.crossOrigin=c.crossOrigin),!c.critical&&!c.isVisible||u?d:l(d,c,n,u)}return null};t.createPictureRef=c;var s=function(e,t){var n=(0,r.convertProps)(e),i=(n.fluid||n.fixed).map((function(e,r){return c(n,t,r,!0)}));return n.critical||n.isVisible?l(i,n):i};t.createMultiplePictureRefs=s;var l=function(e,t,n,u,c){void 0===n&&(n=null),void 0===u&&(u=0),void 0===c&&(c=!1);var s=(0,r.convertProps)(t);if((0,a.isBrowser)()&&(void 0!==s.fluid||void 0!==s.fixed)){var l=(0,i.hasImageArray)(s)&&!(0,o.hasArtDirectionArray)(s);if(l&&!c)return d(e,t,n);var f=document.createElement("body"),p=l?(0,i.getSelectedImage)(s,u):(0,i.getCurrentSrcData)(s);if(!p)return null;if((0,a.isString)(p))return p;if(n&&(e.width=n.offsetWidth,e.height=n.offsetHeight),(0,i.hasPictureElement)()){var g=document.createElement("picture");if(n&&(g.width=e.width,g.height=e.height),(0,o.hasArtDirectionArray)(s))(0,o.createArtDirectionSources)(s).reverse().forEach((function(e){return g.appendChild(e)}));var h=(0,o.createSourceElementForSrcSet)(p,"avif");h&&g.appendChild(h);var M=(0,o.createSourceElementForSrcSet)(p,"webp");M&&g.appendChild(M),g.appendChild(e),f.appendChild(g)}return e.sizes=p.sizes||"",e.srcset=p.srcSet||"",e.src=p.src||"",e}return null};t.activatePictureRef=l;var d=function(e,t,n){return e.map((function(e,r){return l(e,t,n,r,!0)}))};t.activateMultiplePictureRefs=d;t.hasActivatedPictureRefs=function(e){return Array.isArray(e)?e.every((function(e){return f(e)})):f(e)};var f=function(e){return(0,a.isString)(e)||!!e&&!!e.currentSrc};t.hasPictureRef=f;t.imageReferenceCompleted=function(e,t){return e?Array.isArray(e)?e.every((function(e){return(0,i.imageLoaded)(e)}))||(0,u.inImageCache)(t):(0,i.imageLoaded)(e)||(0,u.inImageCache)(t):(0,a.isString)(e)}},3053:function(e,t,n){"use strict";t.__esModule=!0,t.imageLoaded=t.createDummyImageArray=t.imageArrayPropsChanged=t.imagePropsChanged=t.hasImageUrl=t.isBase64=t.getUrlString=t.getSelectedImage=t.getCurrentSrcData=t.getImageSrcKey=t.getCurrentFromData=t.hasImageArray=t.hasPictureElement=void 0;var r=n(9810),i=n(5734);t.hasPictureElement=function(){return"undefined"!=typeof HTMLPictureElement||(0,i.isBrowser)()};var o=function(e){return Boolean(e.fluid&&Array.isArray(e.fluid)||e.fixed&&Array.isArray(e.fixed))};t.hasImageArray=o;t.getCurrentFromData=function(e){var t=e.data,n=e.propName,o=e.addUrl,c=void 0===o||o,s=e.returnArray,l=void 0!==s&&s,f=e.checkLoaded,p=void 0===f||f;if(!t||!n)return"";var g="tracedSVG"===n;if(Array.isArray(t)&&!(0,r.hasArtDirectionArray)({fluid:t})){var h=t.map((function(e){return"currentSrc"===n||"src"===n?p?d(e)&&e[n]||"":e[n]:"CSS_STRING"===n&&(0,i.isString)(e)||(0,i.isString)(e)?e:e&&n in e?e[n]:""}));return u({imageString:h,tracedSVG:g,addUrl:c,returnArray:l})}if((0,r.hasArtDirectionArray)({fluid:t})&&("currentSrc"===n||"src"===n||"base64"===n||g)){var M=a({fluid:t});return n in M?u({imageString:M[n],tracedSVG:g,addUrl:c}):""}return"object"!=typeof t?"":"currentSrc"!==n&&"src"!==n||!(n in t)?n in t?u({imageString:t[n],tracedSVG:g,addUrl:c}):"":u({imageString:p?d(t)&&t[n]||"":t[n],addUrl:c})};t.getImageSrcKey=function(e){var t=e.fluid,n=e.fixed,r=a({fluid:t,fixed:n});return r&&r.src||null};var a=function(e,t){var n=e.fluid,a=e.fixed,u=e.returnArray;void 0===t&&(t=0);var c=n||a;if(o({fluid:n,fixed:a})){if(u)return c;if((0,i.isBrowser)()&&(0,r.hasArtDirectionArray)({fluid:n,fixed:a})){var s=c.slice().reverse(),l=s.findIndex(r.matchesMedia);if(-1!==l)return s[l]}return c[t]}return c};t.getCurrentSrcData=a;t.getSelectedImage=function(e,t){var n=e.fluid,r=e.fixed;void 0===t&&(t=0);var i=n||r;return o({fluid:n,fixed:r})?i[t]||i[0]:i};var u=function(e){var t=e.imageString,n=e.tracedSVG,r=void 0!==n&&n,o=e.addUrl,a=void 0===o||o,u=e.returnArray,l=void 0!==u&&u,d=e.hasImageUrls,f=void 0!==d&&d;if(Array.isArray(t)){var p=t.map((function(e){if(e){var t=c(e),n=f||s(e),i=e&&r?'"'+e+'"':e&&!t&&!r&&n?"'"+e+"'":e;return a&&e?"url("+i+")":i}return e}));return l?p:(0,i.filteredJoin)(p)}var g=c(t),h=f||s(t),M=t&&r?'"'+t+'"':t&&!g&&!r&&h?"'"+t+"'":t;return t?a?"url("+M+")":M:""};t.getUrlString=u;var c=function(e){return(0,i.isString)(e)&&-1!==e.indexOf("base64")};t.isBase64=c;var s=function(e){return(0,i.isString)(e)&&"http"===e.substr(0,4)};t.hasImageUrl=s;t.imagePropsChanged=function(e,t){return e.fluid&&!t.fluid||e.fixed&&!t.fixed||l(e,t)||e.fluid&&t.fluid&&e.fluid.src!==t.fluid.src||e.fixed&&t.fixed&&e.fixed.src!==t.fixed.src};var l=function(e,t){var n=Array.isArray(e.fluid),r=Array.isArray(t.fluid),i=Array.isArray(e.fixed),o=Array.isArray(t.fixed);return!!(n&&!r||i&&!o||!n&&r||!i&&o)||(n&&r?e.fluid.length!==t.fluid.length||e.fluid.some((function(e,n){return e.src!==t.fluid[n].src})):i&&o?e.fixed.length!==t.fixed.length||e.fixed.some((function(e,n){return e.src!==t.fixed[n].src})):void 0)};t.imageArrayPropsChanged=l;t.createDummyImageArray=function(e){var t=u({imageString:"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="});return Array(e).fill(t)};var d=function(e){return!!e&&((0,i.isString)(e)||e.complete&&0!==e.naturalWidth&&0!==e.naturalHeight)};t.imageLoaded=d},1152:function(e,t,n){"use strict";t.__esModule=!0,t.listenToIntersections=t.getIO=t.callbackIO=void 0;var r,i=n(5734),o=new WeakMap,a=function(e){e.forEach((function(e){if(o.has(e.target)){var t=o.get(e.target);(e.isIntersecting||e.intersectionRatio>0)&&(r.unobserve(e.target),o.delete(e.target),t())}}))};t.callbackIO=a;var u=function(e){return void 0===r&&(0,i.isBrowser)()&&window.IntersectionObserver&&(r=new window.IntersectionObserver(a,{rootMargin:e})),r};t.getIO=u;t.listenToIntersections=function(e,t,n){void 0===n&&(n="200px");var r=u(n);return r?(r.observe(e),o.set(e,t),function(){r.unobserve(e),o.delete(e)}):function(){}}},9810:function(e,t,n){"use strict";var r=n(8580);t.__esModule=!0,t.matchesMedia=t.hasArtDirectionArray=t.hasArtDirectionSupport=t.createArtDirectionSources=t.createSourceElementForSrcSet=t.groupByMedia=void 0;var i=r(n(6151)),o=n(5734);t.groupByMedia=function(e){var t=[],n=(0,i.default)(e,"media");return n.forEach((function(e){return!e.media&&t.push(e)})),t.length,n};var a=function(e,t){var n=document.createElement("source"),r="srcSet"+(0,o.capitalize)(t);return r in e&&(n.type="image/"+t,n.srcset=e[r]),e.sizes&&(n.sizes=e.sizes),e.media&&(n.media=e.media),n.srcset?n:null};t.createSourceElementForSrcSet=a;t.createArtDirectionSources=function(e){var t=e.fluid,n=e.fixed;return(t||n).reduce((function(e,t){if(!t.media)return e;var n=a(t,"webp"),r=a(t,"avif");return n&&e.push(n),r&&e.push(r),e}),[])};var u=function(e,t){return e[t]&&Array.isArray(e[t])&&e[t].some((function(e){return!!e&&void 0!==e.media}))};t.hasArtDirectionSupport=u;t.hasArtDirectionArray=function(e){return u(e,"fluid")||u(e,"fixed")};t.matchesMedia=function(e){var t=e.media;return!!t&&((0,o.isBrowser)()&&void 0!==window.matchMedia&&!!window.matchMedia(t).matches)}},5734:function(e,t){"use strict";t.__esModule=!0,t.combineArray=t.filteredJoin=t.hashString=t.stringToArray=t.capitalize=t.toKebabCase=t.toCamelCase=t.isObject=t.isString=t.isBrowser=void 0;t.isBrowser=function(){return"undefined"!=typeof window&&void 0!==window.document};var n=function(e){return"[object String]"===Object.prototype.toString.call(e)};t.isString=n;t.isObject=function(e){return"[object Object]"===Object.prototype.toString.call(e)};t.toCamelCase=function(e){return n(e)&&-1!==e.indexOf("-")&&e.toLowerCase().replace(/(?:^\w|-|[A-Z]|\b\w)/g,(function(e,t){return 0===t?e.toLowerCase():e.toUpperCase()})).replace(/\s|\W+/g,"")||e};t.toKebabCase=function(e){return n(e)&&e.replace(/\s|\W+/g,"").replace(/[A-Z]/g,(function(e){return"-"+e.toLowerCase()}))};t.capitalize=function(e){return(null==e?void 0:e.charAt(0).toUpperCase())+e.slice(1)};t.stringToArray=function(e,t){return void 0===t&&(t=" "),e instanceof Array?e:!!n(e)&&(e.includes(t)?e.split(t):[e])};t.hashString=function(e){return n(e)&&[].reduce.call(e,(function(e,t){return 0|(e=(e<<5)-e+t.charCodeAt(0))}),0)};t.filteredJoin=function(e){return e.filter((function(e){return""!==e})).join()};t.combineArray=function(e,t){return Array.isArray(e)?e.map((function(e,n){return e||t&&t[n]})):[e]}},574:function(e,t,n){"use strict";var r=n(8580);t.__esModule=!0,t.createNoScriptStyles=t.createStyleImage=t.createPseudoStyles=t.createPseudoElementMediaQuery=t.createPseudoElementWithContent=t.createPseudoElement=void 0;var i=r(n(4362)),o=n(4185),a=n(3053),u=n(9810),c=n(5734),s=function(e,t){void 0===t&&(t=":before");var n=(0,o.escapeClassNames)(e),r=(0,c.stringToArray)(n),i="";return Array.isArray(r)&&(r=r.filter((function(e){return""!==e}))).length>0&&(i="."+r.join(".")+t),i};t.createPseudoElement=s;var l=function(e,t){return"\n "+e+" {\n opacity: 1;\n background-image: "+t+";\n }"};t.createPseudoElementWithContent=l;var d=function(e,t,n,r){return"\n @media "+t+" {\n "+l(e,n)+"\n }\n "+(r&&"@media "+t+" {\n "+l(e,r)+"\n }")+"\n "};t.createPseudoElementMediaQuery=d;t.createPseudoStyles=function(e){var t=e.className,n=e.transitionDelay,r=e.lastImage,a=e.nextImage,u=e.afterOpacity,c=e.bgColor,l=e.fadeIn,d=e.backgroundStyles,p=e.style,g=e.finalImage,h=e.originalData,M=s(t),m=s(t,":after"),y=(0,i.default)({},d,p);return"\n "+M+",\n "+m+" {\n content: '';\n display: block;\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n "+(c&&"background-color: "+c+";")+"\n "+(0,o.setTransitionStyles)(n,l)+"\n "+(0,o.kebabifyBackgroundStyles)(y)+"\n }\n "+M+" {\n z-index: -100;\n "+((!u||g)&&f(a,h)||"")+"\n "+(u&&r&&f(r,h)||"")+"\n opacity: "+Number(!u)+"; \n }\n "+m+" {\n z-index: -101;\n "+((u||g)&&f(a,h)||"")+"\n "+(!u&&r&&f(r,h)||"")+"\n "+(g?"opacity: "+Number(u)+";":"")+"\n }\n "};var f=function(e,t){var n=(0,a.hasImageArray)({fluid:t})&&!(0,u.hasArtDirectionArray)({fluid:t});return((0,c.isBrowser)()||n)&&e?"background-image: "+e+";":""};t.createStyleImage=f;t.createNoScriptStyles=function(e){var t=e.className,n=e.image;if(n){var r=Array.isArray(n)&&!(0,u.hasArtDirectionArray)({fluid:n}),i=(0,a.getCurrentFromData)({data:n,propName:"src",checkLoaded:!1,addUrl:!1,returnArray:r}),o=(0,a.getUrlString)({imageString:i,hasImageUrls:!0,returnArray:r}),f="";if(r){var p=(0,a.getCurrentFromData)({data:n,propName:"CSS_STRING",addUrl:!1,returnArray:r});f=(0,c.filteredJoin)((0,c.combineArray)(o,p))}var g=s(t);return(0,u.hasArtDirectionArray)({fluid:n})?n.map((function(e){var t=(0,a.getUrlString)({imageString:e.src}),n=(0,a.getUrlString)({imageString:e.srcWebp||""});return e.media?d(g,e.media,t,n):d(g,"screen",t,n)})).join(""):l(g,f||o)}return""}},4185:function(e,t,n){"use strict";var r=n(8580);t.__esModule=!0,t.presetBackgroundStyles=t.fixOpacity=t.setTransitionStyles=t.kebabifyBackgroundStyles=t.escapeClassNames=t.fixClassName=void 0;var i=r(n(4362)),o=r(n(3246)),a=r(n(8693)),u=n(1430),c=n(6254),s=n(3053),l=n(5734);t.fixClassName=function(e){var t=e.className,n=(0,o.default)(e,["className"]),r=(0,u.convertProps)(n),i=(0,c.inComponentClassCache)(t),d=(0,s.getCurrentSrcData)(r),f=a.default.generate(),p=" gbi-"+(0,l.hashString)(d&&d.srcSet||t||"noclass")+"-"+f,g=(""+(t||"")+((i||!t?p:"")||"")).trim();return i||(0,c.activateCacheForComponentClass)(t),[g]};t.escapeClassNames=function(e){if(e){var t=(0,l.isBrowser)()&&window._gbiSpecialChars?window._gbiSpecialChars:"undefined"!=typeof __GBI_SPECIAL_CHARS__?__GBI_SPECIAL_CHARS__:":/",n=new RegExp("["+t+"]","g");return e.replace(n,"\\$&")}return e};t.kebabifyBackgroundStyles=function(e){return(0,l.isString)(e)?e:e instanceof Object?Object.keys(e).filter((function(t){return 0===t.indexOf("background")&&""!==e[t]})).reduce((function(t,n){return""+t+(0,l.toKebabCase)(n)+": "+e[n]+";\n"}),""):""};t.setTransitionStyles=function(e,t){return void 0===e&&(e="0.25s"),void 0===t&&(t=!0),t?"transition: opacity 0.5s ease "+e+";":"transition: none;"};t.fixOpacity=function(e){var t=(0,i.default)({},e);if(!t.preserveStackingContext)try{t.style&&t.style.opacity&&(isNaN(t.style.opacity)||t.style.opacity>.99)&&(t.style.opacity=.99)}catch(e){}return t};t.presetBackgroundStyles=function(e){return(0,i.default)({},{backgroundPosition:"center",backgroundRepeat:"no-repeat",backgroundSize:"cover"},e)}},2450:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AnchorLink=d;var r=u(n(7294)),i=n(5444),o=u(n(5697)),a=n(9650);function u(e){return e&&e.__esModule?e:{default:e}}function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function s(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e3;(0,o.default)(e,{duration:n,offset:t})}t.isDevelopment=false},7033:function(e,t){"use strict";t.onRouteUpdate=function(e,t){setTimeout((function(){var e=t.dataLayerName?window[t.dataLayerName]:window.dataLayer,n=t.routeChangeEventName?t.routeChangeEventName:"gatsby-route-change";e.push({event:n})}),50)}},6802:function(e,t,n){"use strict";n.d(t,{G:function(){return T},L:function(){return v},M:function(){return D},P:function(){return S},_:function(){return s},a:function(){return u},b:function(){return h},c:function(){return Y},d:function(){return g},g:function(){return M}});var r=n(7294),i=(n(4041),n(1224),n(5697)),o=n.n(i),a=n(3935);function u(){return(u=Object.assign||function(e){for(var t=1;t=0||(i[n]=e[n]);return i}var l=new Set,d=function(){return"undefined"!=typeof HTMLImageElement&&"loading"in HTMLImageElement.prototype};function f(e){e&&l.add(e)}function p(e){return l.has(e)}var g=function(e){var t;return function(e){var t,n;return Boolean(null==e||null==(t=e.images)||null==(n=t.fallback)?void 0:n.src)}(e)?e:function(e){return Boolean(null==e?void 0:e.gatsbyImageData)}(e)?e.gatsbyImageData:null==e||null==(t=e.childImageSharp)?void 0:t.gatsbyImageData};function h(e,t,r,i,o,a,c,s){var l,d;return void 0===s&&(s={}),null!=c&&c.current&&!("objectFit"in document.documentElement.style)&&(c.current.dataset.objectFit=null!=(l=s.objectFit)?l:"cover",c.current.dataset.objectPosition=""+(null!=(d=s.objectPosition)?d:"50% 50%"),function(e){try{var t=function(){window.objectFitPolyfill(e.current)},r=function(){if(!("objectFitPolyfill"in window))return Promise.resolve(n.e(231).then(n.t.bind(n,7231,23))).then((function(){}))}();Promise.resolve(r&&r.then?r.then(t):t())}catch(e){return Promise.reject(e)}}(c)),u({},r,{loading:i,shouldLoad:e,"data-main-image":"",style:u({},s,{opacity:t?1:0}),onLoad:function(e){if(!t){f(a);var n=e.currentTarget,r=new Image;r.src=n.currentSrc,r.decode?r.decode().catch((function(){})).then((function(){o(!0)})):o(!0)}},ref:c})}function M(e,t,n,r,i,o,a,c){var s={};o&&(s.backgroundColor=o,"fixed"===n?(s.width=r,s.height=i,s.backgroundColor=o,s.position="relative"):("constrained"===n||"fullWidth"===n)&&(s.position="absolute",s.top=0,s.left=0,s.bottom=0,s.right=0)),a&&(s.objectFit=a),c&&(s.objectPosition=c);var l=u({},e,{"aria-hidden":!0,"data-placeholder-image":"",style:u({opacity:t?0:1,transition:"opacity 500ms linear"},s)});return l}var m,y=["children"],j=function(e){var t=e.layout,n=e.width,i=e.height;return"fullWidth"===t?r.createElement("div",{"aria-hidden":!0,style:{paddingTop:i/n*100+"%"}}):"constrained"===t?r.createElement("div",{style:{maxWidth:n,display:"block"}},r.createElement("img",{alt:"",role:"presentation","aria-hidden":"true",src:"data:image/svg+xml;charset=utf-8,%3Csvg height='"+i+"' width='"+n+"' xmlns='http://www.w3.org/2000/svg' version='1.1'%3E%3C/svg%3E",style:{maxWidth:"100%",display:"block",position:"static"}})):null},v=function(e){var t=e.children,n=s(e,y);return r.createElement(r.Fragment,null,r.createElement(j,Object.assign({},n)),t,!1)},N=["src","srcSet","loading","alt","shouldLoad","innerRef"],w=["fallback","sources","shouldLoad"],I=function(e){var t=e.src,n=e.srcSet,i=e.loading,o=e.alt,a=void 0===o?"":o,u=e.shouldLoad,c=e.innerRef,l=s(e,N);return r.createElement("img",Object.assign({},l,{decoding:"async",loading:i,src:u?t:void 0,"data-src":u?void 0:t,srcSet:u?n:void 0,"data-srcset":u?void 0:n,alt:a,ref:c}))},L=(0,r.forwardRef)((function(e,t){var n=e.fallback,i=e.sources,o=void 0===i?[]:i,a=e.shouldLoad,u=void 0===a||a,c=s(e,w),l=c.sizes||(null==n?void 0:n.sizes),d=r.createElement(I,Object.assign({},c,n,{sizes:l,shouldLoad:u,innerRef:t}));return o.length?r.createElement("picture",null,o.map((function(e){var t=e.media,n=e.srcSet,i=e.type;return r.createElement("source",{key:t+"-"+i+"-"+n,type:i,media:t,srcSet:u?n:void 0,"data-srcset":u?void 0:n,sizes:l})})),d):d}));I.propTypes={src:i.string.isRequired,alt:i.string.isRequired,sizes:i.string,srcSet:i.string,shouldLoad:i.bool},L.displayName="Picture",L.propTypes={alt:i.string.isRequired,shouldLoad:i.bool,fallback:(0,i.exact)({src:i.string.isRequired,srcSet:i.string,sizes:i.string}),sources:(0,i.arrayOf)((0,i.oneOfType)([(0,i.exact)({media:i.string.isRequired,type:i.string,sizes:i.string,srcSet:i.string.isRequired}),(0,i.exact)({media:i.string,type:i.string.isRequired,sizes:i.string,srcSet:i.string.isRequired})]))};var b=["fallback"],S=function(e){var t=e.fallback,n=s(e,b);return t?r.createElement(L,Object.assign({},n,{fallback:{src:t},"aria-hidden":!0,alt:""})):r.createElement("div",Object.assign({},n))};S.displayName="Placeholder",S.propTypes={fallback:i.string,sources:null==(m=L.propTypes)?void 0:m.sources,alt:function(e,t,n){return e[t]?new Error("Invalid prop `"+t+"` supplied to `"+n+"`. Validation failed."):null}};var D=(0,r.forwardRef)((function(e,t){return r.createElement(r.Fragment,null,r.createElement(L,Object.assign({ref:t},e)),r.createElement("noscript",null,r.createElement(L,Object.assign({},e,{shouldLoad:!0}))))}));D.displayName="MainImage",D.propTypes=L.propTypes;var A=function(e,t,n){return e.alt||""===e.alt?o().string.apply(o(),[e,t,n].concat([].slice.call(arguments,3))):new Error('The "alt" prop is required in '+n+'. If the image is purely presentational then pass an empty string: e.g. alt="". Learn more: https://a11y-style-guide.com/style-guide/section-media.html')},x={image:o().object.isRequired,alt:A},C=["style","className"],E=function(e){var t,i;function o(t){var n;return(n=e.call(this,t)||this).root=(0,r.createRef)(),n.hydrated={current:!1},n.forceRender={current:!1},n.lazyHydrator=null,n.ref=(0,r.createRef)(),n.state={isLoading:d(),isLoaded:!1},n}i=e,(t=o).prototype=Object.create(i.prototype),t.prototype.constructor=t,c(t,i);var l=o.prototype;return l._lazyHydrate=function(e,t){var r=this,i=this.root.current.querySelector("[data-gatsby-image-ssr]");return d()&&i&&!this.hydrated.current?(this.hydrated.current=!0,Promise.resolve()):n.e(776).then(n.bind(n,8776)).then((function(n){r.lazyHydrator=(0,n.lazyHydrate)(u({image:e.image.images,isLoading:t.isLoading,isLoaded:t.isLoaded,toggleIsLoaded:function(){null==e.onLoad||e.onLoad(),r.setState({isLoaded:!0})},ref:r.ref},e),r.root,r.hydrated,r.forceRender)}))},l._setupIntersectionObserver=function(e){var t=this;void 0===e&&(e=!0),n.e(175).then(n.bind(n,7175)).then((function(n){var r=(0,n.createIntersectionObserver)((function(){if(t.root.current){var n=JSON.stringify(t.props.image.images);null==t.props.onStartLoad||t.props.onStartLoad({wasCached:e&&p(n)}),t.setState({isLoading:!0,isLoaded:e&&p(n)})}}));t.root.current&&(t.unobserveRef=r(t.root))}))},l.shouldComponentUpdate=function(e,t){var n=this,r=!1;return this.state.isLoading||!t.isLoading||t.isLoaded||(this.forceRender.current=!0),this.props.image.images!==e.image.images&&(this.unobserveRef&&(this.unobserveRef(),this.hydrated.current&&this.lazyHydrator&&(0,a.render)(null,this.root.current)),this.setState({isLoading:!1,isLoaded:!1},(function(){n._setupIntersectionObserver(!1)})),r=!0),this.root.current&&!r&&this._lazyHydrate(e,t),!1},l.componentDidMount=function(){if(this.root.current){var e=this.root.current.querySelector("[data-gatsby-image-ssr]"),t=JSON.stringify(this.props.image.images);if(d()&&e){var n,r;if(null==(n=(r=this.props).onStartLoad)||n.call(r,{wasCached:!1}),e.complete){var i,o;null==(i=(o=this.props).onLoad)||i.call(o),f(t)}else{var a=this;e.addEventListener("load",(function n(){e.removeEventListener("load",n),null==a.props.onLoad||a.props.onLoad(),f(t)}))}return}this._setupIntersectionObserver(!0)}},l.componentWillUnmount=function(){this.unobserveRef&&(this.unobserveRef(),this.hydrated.current&&this.lazyHydrator&&this.lazyHydrator())},l.render=function(){var e=this.props.as||"div",t=this.props.image,n=t.width,i=t.height,o=t.layout,a=function(e,t,n){var r={},i="gatsby-image-wrapper";return"fixed"===n?(r.width=e,r.height=t):"constrained"===n&&(i="gatsby-image-wrapper gatsby-image-wrapper-constrained"),{className:i,"data-gatsby-image-wrapper":"",style:r}}(n,i,o),c=a.style,l=a.className,d=s(a,C),f=this.props.className;this.props.class&&(f=this.props.class);var p=function(e,t,n){var r=null;return"fullWidth"===e&&(r=''),"constrained"===e&&(r='
"),r}(o,n,i);return r.createElement(e,Object.assign({},d,{style:u({},c,this.props.style,{backgroundColor:this.props.backgroundColor}),className:l+(f?" "+f:""),ref:this.root,dangerouslySetInnerHTML:{__html:p},suppressHydrationWarning:!0}))},o}(r.Component),T=function(e){if(!e.image)return null;var t=e.image,n=JSON.stringify([t.width,t.height,t.layout,e.className,e.class,e.backgroundColor]);return r.createElement(E,Object.assign({key:n},e))};T.propTypes=x,T.displayName="GatsbyImage";var z,O=["src","__imageData","__error","width","height","aspectRatio","tracedSVGOptions","placeholder","formats","quality","transformOptions","jpgOptions","pngOptions","webpOptions","avifOptions","blurredOptions"],k=function(e,t){return"fullWidth"!==e.layout||"width"!==t&&"height"!==t||!e[t]?o().number.apply(o(),[e,t].concat([].slice.call(arguments,2))):new Error('"'+t+'" '+e[t]+" may not be passed when layout is fullWidth.")},_=new Set(["fixed","fullWidth","constrained"]),P={src:o().string.isRequired,alt:A,width:k,height:k,sizes:o().string,layout:function(e){if(void 0!==e.layout&&!_.has(e.layout))return new Error("Invalid value "+e.layout+'" provided for prop "layout". Defaulting to "constrained". Valid values are "fixed", "fullWidth" or "constrained".')}},U=(z=T,function(e){var t=e.src,n=e.__imageData,i=e.__error,o=s(e,O);return i&&console.warn(i),n?r.createElement(z,Object.assign({image:n},o)):(console.warn("Image not loaded",t),null)});function Y(e){var t=e.children;return(0,r.useEffect)((function(){n.e(776).then(n.bind(n,8776))}),[]),t}U.displayName="StaticImage",U.propTypes=P},6988:function(e,t,n){"use strict";n.r(t),n.d(t,{wrapRootElement:function(){return o}});var r=n(7294),i=n(6802);function o(e){var t=e.element;return r.createElement(i.c,null,t)}},1224:function(e){"use strict";var t=function(e,t){if("string"!=typeof e&&!Array.isArray(e))throw new TypeError("Expected the input to be `string | string[]`");t=Object.assign({pascalCase:!1},t);var n;return 0===(e=Array.isArray(e)?e.map((function(e){return e.trim()})).filter((function(e){return e.length})).join("-"):e.trim()).length?"":1===e.length?t.pascalCase?e.toUpperCase():e.toLowerCase():(e!==e.toLowerCase()&&(e=function(e){for(var t=!1,n=!1,r=!1,i=0;i1?(r[0]in n&&!(0,a.Qr)(n[r[0]])||(n[r[0]]={}),this.set(r.slice(1),t,n[r[0]])):n[r[0]]=t},getObject:function(e){return JSON.parse(this.get(e)||"{}")},setObject:function(e,t){this.set(e,JSON.stringify(t))},remove:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1?e(t[r[0]],r.slice(1)):t?function(e){return l(e)?e:a()(!0,Array.isArray(e)?[]:{},e)}(t[r[0]]):void 0},p=function(){return s()&&location.hash?location.hash.slice(1).replace(/(\/)$/g,""):""},g=function(e){s()&&(location.hash="#"+e)},h=function(){return s()&&location?location.pathname:""},M=function(){s&&window.history.back()},m=function(e,t){return e.includes(t)},y=function(){return s()?localStorage.getItem("i18n")||navigator.language:null},j=function(e,t,n){return void 0===n&&(n=""),""+e+n+"?lang="+(u.qT.includes(t)?t:"en").toUpperCase()},v=function(e){return"th"===e?"en":e},N=function(){return s()?localStorage.getItem("jipt_language_code_deriv-com")||navigator.language:null},w=function(e){return i().getJSON("client_information",{domain:e})},I=function(e){return i().getJSON("utm_data",{domain:e})},L=function(){var e=S();return!!w(e)},b=function(e){var t=S();return"gb"===(w(t)||{residence:""}).residence||(0,c.Iy)(e)};var S=function(){return s()&&window.location.hostname.includes(u.mn)?u.mn:"binary.sx"},D=function(e,t,n){return"/"+e+(t?"":n)},A=function(e){return e.replace(/\/(?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+?(\/)|(\/['\x2DA-Za-z]+)/,"")},x=function(e){var t=new Date;return new Date(t.getFullYear(),t.getMonth(),t.getDate()+e)},C=function(e){return null==e},E=function(e){return function(e){try{return JSON.parse(e)&&!!e}catch(e){return!1}}(e)?JSON.parse(e):e},T=["mt5","bot","derivx"],z=function(){return T.filter((function(e){return window.location.pathname.includes(e)&&e}))},O=function(e){var t=document.createElement("script");Object.keys(e).forEach((function(n){t.setAttribute(n,e[n])})),document.body.appendChild(t)},k=function(e){var t=e;return"zh_tw"===e?t="zh-tw":"zh_cn"===e&&(t="zh-cn"),t}},9982:function(e,t,n){"use strict";n.d(t,{rh:function(){return f},wm:function(){return p},yv:function(){return u},fN:function(){return l},RG:function(){return d}});var r,i=n(4845),o=n(476),a={production:[{hostname:"deriv.com",app_id:11780},{hostname:"deriv.me",app_id:1411}],staging:{hostname:"staging.deriv.com",app_id:16303},test:{app_id:11780},local:{hostname:"localhost",app_id:10613}},u=function(){return(0,i.jU)()&&a.production.some((function(e){return e.hostname===window.location.hostname}))},c=null===(r=((0,i.jU)()&&a.production.filter((function(e){return e.hostname===window.location.hostname})))[0])||void 0===r?void 0:r.app_id,s=function(){return(0,i.jU)()&&a.staging.hostname===window.location.hostname},l=function(){return u()||s()},d=function(){return(0,i.jU)()&&a.local.hostname===window.location.hostname},f=function(){var e=null;if((0,i.jU)()){var t=window.localStorage.getItem("config.app_id");t?e=t:s()?(window.localStorage.removeItem("config.default_app_id"),e=a.staging.app_id):"".length?(window.localStorage.setItem("config.default_app_id",""),e=""):d()?e=a.local.app_id:(window.localStorage.removeItem("config.default_app_id"),e=u()?c:a.test.app_id)}return e},p=function(){var e;return(0,i.jU)()&&(e=window.localStorage.getItem("config.server_url")),e||(e=o.Ej),"wss://"+e+"/websockets/v3"}},612:function(e,t,n){"use strict";n.d(t,{U8:function(){return l}});var r,i=n(2385),o=n(6848),a=n(9),u=n(1292),c=n(6299),s=Object.keys(c.d).sort((function(e,t){return c.d[t]-c.d[e]})).reduce((function(e,t){return e[t]=function(){return(0,a.iv)(["@media (max-width:","px){",";}"],c.d[t],a.iv.apply(void 0,arguments))},e}),{}),l=function(e){return function(t){return Object.keys(s).reduce((function(n,a){if(!t[a])return n;var u=s[a](r||(r=(0,o.Z)([" \n ","\n "])),e(t[a]));return[].concat((0,i.Z)(n),[u])}),[])}},d=function(e){var t=e.m,n=e.mt,r=e.ml,i=e.mr,o=e.mb,c=e.p,s=e.pt,l=e.pl,d=e.pr,f=e.pb,p=e.min_width,g=e.max_width,h=e.min_height,M=e.max_height,m=e.width,y=e.height;return(0,a.iv)(["min-width:",";max-width:",";min-height:",";max-height:",";width:",";height:",";"," ",""],p,g,h,M,m,y,(0,u.m)({m:t,mt:n,ml:r,mr:i,mb:o}),(0,u.C)({p:c,pt:s,pl:l,pr:d,pb:f}))},f=l(d),p=a.ZP.div.withConfig({displayName:"box__Box",componentId:"sc-1xw8x8l-0"})(["width:",";height:",";min-height:",";max-width:",";position:",";background:",";"," ",""],(function(e){return e.width?e.width:""}),(function(e){return e.height?e.height:""}),(function(e){return e.min_height?e.min_height:""}),(function(e){return e.max_width?e.max_width:""}),(function(e){return e.position?e.position:""}),(function(e){return e.background||e.bg?e.background||e.bg:""}),d,f);t.ZP=p},7513:function(e,t,n){"use strict";n.d(t,{xu:function(){return i.ZP},W2:function(){return l},ax:function(){return y},kC:function(){return c},s7:function(){return g},HJ:function(){return Ye},S$:function(){return h},di:function(){return Ze.ZP}});var r=n(9),i=n(612),o=n(6299),a=function(e){var t=e.jc,n=e.ai,i=e.fw,o=e.fd;return(0,r.iv)(["justify-content:",";align-items:",";flex-wrap:",";flex-direction:",";"],t,n,i,o)},u=(0,i.U8)(a),c=(0,r.ZP)(i.ZP).withConfig({displayName:"flex__Flex",componentId:"sc-5wunlu-0"})(["display:flex;width:",";height:",";flex-wrap:",";justify-content:",";align-items:",";flex-direction:",";@media ","{flex-direction:",";align-items:",";justify-content:",";flex-wrap:",";}",""],(function(e){return e.width?e.width:"100%"}),(function(e){return e.height?e.height:"100%"}),(function(e){return e.wrap||e.fw?e.wrap||e.fw:""}),(function(e){return e.jc?e.jc:"center"}),(function(e){return e.ai?e.ai:""}),(function(e){return e.direction||e.fd?e.direction||e.fd:""}),o.Z.tablet,(function(e){return e.tablet_direction?e.tablet_direction:""}),(function(e){return e.tablet_ai?e.tablet_ai:""}),(function(e){return e.tablet_jc?e.tablet_jc:""}),(function(e){return e.tablet_fw}),u),s=(0,i.U8)(a),l=(0,r.ZP)(i.ZP).withConfig({displayName:"container__Container",componentId:"sc-1od8u1d-0"})(["margin:0 auto;display:flex;align-items:",";justify-content:",";flex-direction:",";flex-wrap:",";width:80%;@media ","{max-width:1200px;}@media ","{width:84%;}@media ","{flex-direction:",";}@media ","{max-width:1600px;}@media ","{width:90%;padding-left:0;padding-right:0;flex-direction:",";}",""],(function(e){return e.align||e.ai?e.align||e.ai:"center"}),(function(e){return e.justify||e.jc?e.justify||e.jc:"center"}),(function(e){return e.direction||e.fd?e.direction||e.fd:"row"}),(function(e){return e.wrap||e.fw?e.wrap||e.fw:""}),o.Z.desktop,o.Z.laptopL,o.Z.laptopM,(function(e){return e.laptop_direction}),o.Z.desktopL,o.Z.tabletL,(function(e){return e.tablet_direction}),s),d=((0,r.ZP)(l).withConfig({displayName:"small-container__SmallContainer",componentId:"sc-1tdg31h-0"})(["width:60%;max-width:62.5rem;@media ","{max-width:792px;}@media ","{width:60%;}@media ","{max-width:1000px;}@media ","{width:90%;padding-left:0;padding-right:0;}"],o.Z.desktop,o.Z.laptopL,o.Z.desktopL,o.Z.tabletL),n(5697)),f=n.n(d),p=(0,r.ZP)(l).withConfig({displayName:"flex-grid-container__FlexGridContainer",componentId:"sc-1f651nj-0"})(["flex-wrap:wrap;align-items:stretch;align-content:stretch;justify-content:",";width:100%;& > *{flex-shrink:0;width:",";margin:",";@media ","{margin:",";width:",";}}& >:nth-child(","n + 1){margin-left:0;}& >:nth-child(","n + 1){&:not(:first-child){margin-right:0;}}"],(function(e){return e.justify?e.justify:"space-between"}),(function(e){return e.content_width?e.content_width:"48%"}),(function(e){return e.gap?e.gap:"0 1.5rem"}),o.Z.tabletL,(function(e){return e.mobile_gap?e.mobile_gap:"1.5rem 0"}),(function(e){return e.mobile_content_width?e.mobile_content_width:"48%"}),(function(e){return e.grid}),(function(e){return parseInt(e.grid)-1})),g=p;p.propTypes={content_width:f().oneOfType([f().string,f().number]),gap:f().string,grid:f().oneOfType([f().string,f().number]),justify:f().string};var h=(0,r.ZP)(i.ZP).attrs({as:"section"}).withConfig({displayName:"section-container__SectionContainer",componentId:"sc-1vu2hou-0"})(["width:100%;padding:",";position:",";background-color:var(--color-",");"],(function(e){return e.padding||"8rem 0"}),(function(e){return e.position||"static"}),(function(e){return e.background||"white"})),M=((0,r.ZP)(l).withConfig({displayName:"grid-container__GridContainer",componentId:"sc-60cfwo-0"})(["text-align:",";display:block;"],(function(e){return e.align||"left"})),(0,r.ZP)(i.ZP).withConfig({displayName:"css-grid__CssGrid",componentId:"sxb8i9-0"})(["display:grid;height:",";margin:",";grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";align-items:",";justify-items:",";background-color:",";@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}@media ","{grid-template-columns:",";grid-gap:",";grid-template-rows:",";grid-column-gap:",";grid-row-gap:",";}"],(function(e){return e.height||"100%"}),(function(e){return e.margin||"0"}),(function(e){return e.columns||"auto"}),(function(e){return e.grid_gap||""}),(function(e){return e.rows||"auto"}),(function(e){return e.column_gap||""}),(function(e){return e.row_gap||""}),(function(e){return e.align||"start"}),(function(e){return e.justify||"unset"}),(function(e){return e.bgcolor||"none"}),o.Z.laptopL,(function(e){return e.laptop_columns?e.laptop_columns:e.columns}),(function(e){return e.laptop_grid_gap?e.laptop_grid_gap:e.grid_gap}),(function(e){return e.laptop_rows?e.laptop_rows:e.rows}),(function(e){return e.laptop_column_gap?e.laptop_column_gap:e.column_gap}),(function(e){return e.laptop_row_gap?e.laptop_row_gap:e.row_gap}),o.Z.tabletL,(function(e){return e.tablet_columns?e.tablet_columns:e.columns}),(function(e){return e.tablet_grid_gap?e.tablet_grid_gap:e.grid_gap}),(function(e){return e.tablet_rows?e.tablet_rows:e.rows}),(function(e){return e.tablet_column_gap?e.tablet_column_gap:e.column_gap}),(function(e){return e.tablet_row_gap?e.tablet_row_gap:e.row_gap}),o.Z.tabletS,(function(e){return e.mobile_columns?e.mobile_columns:e.columns}),(function(e){return e.mobile_grid_gap?e.mobile_grid_gap:e.grid_gap}),(function(e){return e.mobile_rows?e.mobile_rows:e.rows}),(function(e){return e.mobile_column_gap?e.mobile_column_gap:e.column_gap}),(function(e){return e.mobile_row_gap?e.mobile_row_gap:e.row_gap}))),m=r.ZP.div.withConfig({displayName:"css-grid__CssGridColumn",componentId:"sxb8i9-1"})(["padding:",";align-self:",";justify-self:",";background-color:",";height:",";"],(function(e){return e.padding||"0"}),(function(e){return e.align||"stretch"}),(function(e){return e.justify||"initial"}),(function(e){return e.bgcolor||"none"}),(function(e){return e.height||"auto"})),y=M;M.propTypes={align:f().string,bgcolor:f().string,column_gap:f().string,columns:f().string,justify:f().string,margin:f().string,row_gap:f().string},m.propTypes={align:f().string,bgcolor:f().string,height:f().string,justify:f().string,padding:f().string};var j,v,N,w,I=n(2385),L=n(7294),b=n(4839),S=n.n(b),D=n(3302),A=n.n(D),x=n(6494),C=n.n(x),E="bodyAttributes",T="htmlAttributes",z="titleAttributes",O={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title"},k=(Object.keys(O).map((function(e){return O[e]})),"charset"),_="cssText",P="href",U="http-equiv",Y="innerHTML",Z="itemprop",R="name",Q="property",W="rel",G="src",B="target",V={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},H="defaultTitle",F="defer",J="encodeSpecialCharacters",X="onChangeClientState",q="titleTemplate",K=Object.keys(V).reduce((function(e,t){return e[V[t]]=t,e}),{}),$=[O.NOSCRIPT,O.SCRIPT,O.STYLE],ee="data-react-helmet",te="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ne=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},re=function(){function e(e,t){for(var n=0;n=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n},ae=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t},ue=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return!1===t?String(e):String(e).replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")},ce=function(e){var t=pe(e,O.TITLE),n=pe(e,q);if(n&&t)return n.replace(/%s/g,(function(){return Array.isArray(t)?t.join(""):t}));var r=pe(e,H);return t||r||void 0},se=function(e){return pe(e,X)||function(){}},le=function(e,t){return t.filter((function(t){return void 0!==t[e]})).map((function(t){return t[e]})).reduce((function(e,t){return ie({},e,t)}),{})},de=function(e,t){return t.filter((function(e){return void 0!==e[O.BASE]})).map((function(e){return e[O.BASE]})).reverse().reduce((function(t,n){if(!t.length)for(var r=Object.keys(n),i=0;i=0;n--){var r=e[n];if(r.hasOwnProperty(t))return r[t]}return null},ge=(j=Date.now(),function(e){var t=Date.now();t-j>16?(j=t,e(t)):setTimeout((function(){ge(e)}),0)}),he=function(e){return clearTimeout(e)},Me="undefined"!=typeof window?window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||ge:n.g.requestAnimationFrame||ge,me="undefined"!=typeof window?window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||he:n.g.cancelAnimationFrame||he,ye=function(e){return console&&"function"==typeof console.warn&&console.warn(e)},je=null,ve=function(e,t){var n=e.baseTag,r=e.bodyAttributes,i=e.htmlAttributes,o=e.linkTags,a=e.metaTags,u=e.noscriptTags,c=e.onChangeClientState,s=e.scriptTags,l=e.styleTags,d=e.title,f=e.titleAttributes;Ie(O.BODY,r),Ie(O.HTML,i),we(d,f);var p={baseTag:Le(O.BASE,n),linkTags:Le(O.LINK,o),metaTags:Le(O.META,a),noscriptTags:Le(O.NOSCRIPT,u),scriptTags:Le(O.SCRIPT,s),styleTags:Le(O.STYLE,l)},g={},h={};Object.keys(p).forEach((function(e){var t=p[e],n=t.newTags,r=t.oldTags;n.length&&(g[e]=n),r.length&&(h[e]=p[e].oldTags)})),t&&t(),c(e,g,h)},Ne=function(e){return Array.isArray(e)?e.join(""):e},we=function(e,t){void 0!==e&&document.title!==e&&(document.title=Ne(e)),Ie(O.TITLE,t)},Ie=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var r=n.getAttribute(ee),i=r?r.split(","):[],o=[].concat(i),a=Object.keys(t),u=0;u=0;d--)n.removeAttribute(o[d]);i.length===o.length?n.removeAttribute(ee):n.getAttribute(ee)!==a.join(",")&&n.setAttribute(ee,a.join(","))}},Le=function(e,t){var n=document.head||document.querySelector(O.HEAD),r=n.querySelectorAll(e+"["+"data-react-helmet]"),i=Array.prototype.slice.call(r),o=[],a=void 0;return t&&t.length&&t.forEach((function(t){var n=document.createElement(e);for(var r in t)if(t.hasOwnProperty(r))if(r===Y)n.innerHTML=t.innerHTML;else if(r===_)n.styleSheet?n.styleSheet.cssText=t.cssText:n.appendChild(document.createTextNode(t.cssText));else{var u=void 0===t[r]?"":t[r];n.setAttribute(r,u)}n.setAttribute(ee,"true"),i.some((function(e,t){return a=t,n.isEqualNode(e)}))?i.splice(a,1):o.push(n)})),i.forEach((function(e){return e.parentNode.removeChild(e)})),o.forEach((function(e){return n.appendChild(e)})),{oldTags:i,newTags:o}},be=function(e){return Object.keys(e).reduce((function(t,n){var r=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+r:r}),"")},Se=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[V[n]||n]=e[n],t}),t)},De=function(e,t,n){switch(e){case O.TITLE:return{toComponent:function(){return e=t.title,n=t.titleAttributes,(r={key:e})[ee]=!0,i=Se(n,r),[L.createElement(O.TITLE,i,e)];var e,n,r,i},toString:function(){return function(e,t,n,r){var i=be(n),o=Ne(t);return i?"<"+e+' data-react-helmet="true" '+i+">"+ue(o,r)+"":"<"+e+' data-react-helmet="true">'+ue(o,r)+""}(e,t.title,t.titleAttributes,n)}};case E:case T:return{toComponent:function(){return Se(t)},toString:function(){return be(t)}};default:return{toComponent:function(){return function(e,t){return t.map((function(t,n){var r,i=((r={key:n})[ee]=!0,r);return Object.keys(t).forEach((function(e){var n=V[e]||e;if(n===Y||n===_){var r=t.innerHTML||t.cssText;i.dangerouslySetInnerHTML={__html:r}}else i[n]=t[e]})),L.createElement(e,i)}))}(e,t)},toString:function(){return function(e,t,n){return t.reduce((function(t,r){var i=Object.keys(r).filter((function(e){return!(e===Y||e===_)})).reduce((function(e,t){var i=void 0===r[t]?t:t+'="'+ue(r[t],n)+'"';return e?e+" "+i:i}),""),o=r.innerHTML||r.cssText||"",a=-1===$.indexOf(e);return t+"<"+e+' data-react-helmet="true" '+i+(a?"/>":">"+o+"")}),"")}(e,t,n)}}}},Ae=function(e){var t=e.baseTag,n=e.bodyAttributes,r=e.encode,i=e.htmlAttributes,o=e.linkTags,a=e.metaTags,u=e.noscriptTags,c=e.scriptTags,s=e.styleTags,l=e.title,d=void 0===l?"":l,f=e.titleAttributes;return{base:De(O.BASE,t,r),bodyAttributes:De(E,n,r),htmlAttributes:De(T,i,r),link:De(O.LINK,o,r),meta:De(O.META,a,r),noscript:De(O.NOSCRIPT,u,r),script:De(O.SCRIPT,c,r),style:De(O.STYLE,s,r),title:De(O.TITLE,{title:d,titleAttributes:f},r)}},xe=S()((function(e){return{baseTag:de([P,B],e),bodyAttributes:le(E,e),defer:pe(e,F),encode:pe(e,J),htmlAttributes:le(T,e),linkTags:fe(O.LINK,[W,P],e),metaTags:fe(O.META,[R,k,U,Q,Z],e),noscriptTags:fe(O.NOSCRIPT,[Y],e),onChangeClientState:se(e),scriptTags:fe(O.SCRIPT,[G,Y],e),styleTags:fe(O.STYLE,[_],e),title:ce(e),titleAttributes:le(z,e)}}),(function(e){je&&me(je),e.defer?je=Me((function(){ve(e,(function(){je=null}))})):(ve(e),je=null)}),Ae)((function(){return null})),Ce=(v=xe,w=N=function(e){function t(){return ne(this,t),ae(this,e.apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.shouldComponentUpdate=function(e){return!A()(this.props,e)},t.prototype.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case O.SCRIPT:case O.NOSCRIPT:return{innerHTML:t};case O.STYLE:return{cssText:t}}throw new Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")},t.prototype.flattenArrayTypeChildren=function(e){var t,n=e.child,r=e.arrayTypeChildren,i=e.newChildProps,o=e.nestedChildren;return ie({},r,((t={})[n.type]=[].concat(r[n.type]||[],[ie({},i,this.mapNestedChildrenToProps(n,o))]),t))},t.prototype.mapObjectTypeChildren=function(e){var t,n,r=e.child,i=e.newProps,o=e.newChildProps,a=e.nestedChildren;switch(r.type){case O.TITLE:return ie({},i,((t={})[r.type]=a,t.titleAttributes=ie({},o),t));case O.BODY:return ie({},i,{bodyAttributes:ie({},o)});case O.HTML:return ie({},i,{htmlAttributes:ie({},o)})}return ie({},i,((n={})[r.type]=ie({},o),n))},t.prototype.mapArrayTypeChildrenToProps=function(e,t){var n=ie({},t);return Object.keys(e).forEach((function(t){var r;n=ie({},n,((r={})[t]=e[t],r))})),n},t.prototype.warnOnInvalidChildren=function(e,t){return!0},t.prototype.mapChildrenToProps=function(e,t){var n=this,r={};return L.Children.forEach(e,(function(e){if(e&&e.props){var i=e.props,o=i.children,a=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).reduce((function(t,n){return t[K[n]||n]=e[n],t}),t)}(oe(i,["children"]));switch(n.warnOnInvalidChildren(e,o),e.type){case O.LINK:case O.META:case O.NOSCRIPT:case O.SCRIPT:case O.STYLE:r=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:r,newChildProps:a,nestedChildren:o});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:a,nestedChildren:o})}}})),t=this.mapArrayTypeChildrenToProps(r,t)},t.prototype.render=function(){var e=this.props,t=e.children,n=oe(e,["children"]),r=ie({},n);return t&&(r=this.mapChildrenToProps(t,r)),L.createElement(v,r)},re(t,null,[{key:"canUseDOM",set:function(e){v.canUseDOM=e}}]),t}(L.Component),N.propTypes={base:f().object,bodyAttributes:f().object,children:f().oneOfType([f().arrayOf(f().node),f().node]),defaultTitle:f().string,defer:f().bool,encodeSpecialCharacters:f().bool,htmlAttributes:f().object,link:f().arrayOf(f().object),meta:f().arrayOf(f().object),noscript:f().arrayOf(f().object),onChangeClientState:f().func,script:f().arrayOf(f().object),style:f().arrayOf(f().object),title:f().string,titleAttributes:f().object,titleTemplate:f().string},N.defaultProps={defer:!0,encodeSpecialCharacters:!0},N.peek=v.peek,N.rewind=function(){var e=v.rewind();return e||(e=Ae({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}})),e},w);Ce.renderStatic=Ce.rewind;var Ee=n(5444),Te=n(8838),ze=n(5262),Oe=n.n(ze),ke=n.p+"static/og_deriv-7765b1f93af49430017646938596af4f.png",_e=["/careers","/careers/"],Pe=Object.keys(Oe());Pe.push("x-default");var Ue=function(e){var t=e.description,n=e.meta,r=e.title,i=e.no_index,o=e.has_organization_schema,a=e.meta_attributes,u=[];u=(0,Ee.useStaticQuery)("764694655");var c="staging"==={}.GATSBY_ENV,s=t||u.site.siteMetadata.description,l=u.site.siteMetadata.siteUrl,d=L.useContext(Te.RD),f=d.locale,p=d.pathname,g="/"===p.charAt(0)?p:"/"+p,h=(0,Te.NC)("Online trading with Deriv | Simple. Flexible. Reliable."),M=(0,Te.NC)("Trading platforms designed with you in mind."),m=!1,y="",j={};if(g){var v=g.split("/"),N=v[1],w=N.replace("-","_");y=g,Pe.includes(w)&&(v.splice(1,1),y=v.join("/")),"ach"===N&&(m=!0)}o&&(j={"@context":"https://schema.org","@type":"Organization",name:"Deriv",alternateName:"Deriv.com",url:"https://deriv.com",logo:"https://deriv.com/static/1b57a116945933314eefeec0030c8e9d/2a4de/logo.png",sameAs:["https://www.facebook.com/derivdotcom","https://www.twitter.com/derivdotcom","https://www.instagram.com/deriv_official","https://youtube.com/c/Derivdotcom","https://www.linkedin.com/company/derivdotcom/","https://deriv.com"]});var b=_e.includes(y);return L.createElement(Ce,{htmlAttributes:{lang:f},title:r,defer:!1,meta:[{name:"description",content:s},{name:"google",content:"notranslate"},{property:"og:title",content:(null==a?void 0:a.og_title)||h},{property:"og:site_name",content:r},{property:"og:description",content:(null==a?void 0:a.og_description)||M},{property:"og:type",content:(null==a?void 0:a.og_type)||"website"},{property:"og:locale",content:f},{property:"og:image",content:(null==a?void 0:a.og_img)||ke},{property:"og:image:width",content:(null==a?void 0:a.og_img_width)||"600"},{property:"og:image:height",content:(null==a?void 0:a.og_img_height)||"315"},{name:"twitter:card",content:"summary"},{name:"twitter:creator",content:u.site.siteMetadata.author},{name:"twitter:title",content:r},{name:"twitter:description",content:s},{name:"format-detection",content:"telephone=no"},{name:"yandex-verification",content:"4ddb94bbff872c63"},{name:"referrer",content:"origin"},{name:"version",content:{}.GATSBY_DERIV_VERSION}].concat((0,I.Z)(i||c||m?[{name:"robots",content:"noindex"}]:[])).concat(n)},o&&L.createElement("script",{type:"application/ld+json"},JSON.stringify(j)),!b&&Pe.map((function(e){if("ach"!==e){var t=e.replace("_","-"),n=""+l+("en"===e||"x-default"===e?"":"/"+t)+y;return L.createElement("link",{rel:"alternate",hrefLang:t,href:n,key:t})}})))};Ue.defaultProps={meta:[]};var Ye=Ue,Ze=n(3249)},3249:function(e,t,n){"use strict";var r=n(2385),i=n(2265),o=n(7294),a=n(2343),u=n(8802),c=["children","max_width"],s=["children","min_width"];t.ZP={Eu:function(e){var t=e.children;return o.useContext(u.c).is_eu_country?o.createElement(o.Fragment,null,t):null},NonEU:function(e){var t=e.children;return!1===o.useContext(u.c).is_eu_country?o.createElement(o.Fragment,null,t):null},Mobile:function(e){var t=e.children,n=e.min_width,u=(0,i.Z)(e,s);return o.createElement(a.pU,Object.assign({between:["start"].concat((0,r.Z)(n?[n]:["tabletL"]))},u),t)},Desktop:function(e){var t=e.children,n=e.max_width,r=(0,i.Z)(e,c);return o.createElement(a.pU,Object.assign({greaterThanOrEqual:n||"tabletL"},r),t)}}},9843:function(e,t,n){"use strict";n.d(t,{O:function(){return i}});var r=n(7294),i=function(e,t,n,i){void 0===i&&(i="click");var o=function(r){if(e.current&&!e.current.contains(r.target)){if(n&&n.current.contains(r.target))return;t()}};r.useEffect((function(){return document.addEventListener(i,o),function(){document.removeEventListener(i,o)}}),[])}},4133:function(e,t,n){"use strict";n.d(t,{Z:function(){return s}});var r=n(7294),i=n(4215),o=n(4845),a=n(9982),u=n(476),c={init:function(){var e,t=(0,a.wm)()+"?app_id="+(0,a.rh)()+"&l="+("ach"===(0,o.G3)()?(0,o.Wo)():null===(e=(0,o.G3)())||void 0===e?void 0:e.replace("-","_"))+"&brand="+u.K_.toLowerCase();return new WebSocket(t)}},s=function(){var e=function(e,t,n){var a=new i.eR(t),u=(0,r.useState)((function(){var n=a.get(t);return n?(0,o.sz)(n):e})),c=u[0],s=u[1];return(0,r.useEffect)((function(){(0,o.MX)(c)?a.remove():a.set(t,JSON.stringify(c),n)}),[t,c]),[c,s]}(null,"website_status",{expires:(0,o.Cp)(7)}),t=e[0],n=e[1],a=(0,r.useState)(!0),u=a[0],s=a[1];return(0,r.useEffect)((function(){if(s(!0),t)s(!1);else{var e=c.init();e.onopen=function(){e.send(JSON.stringify({website_status:1}))},e.onmessage=function(t){var r=JSON.parse(t.data);if(!r.error){var i=r.website_status,o=i.clients_country,a=i.crypto_config;n({clients_country:o,crypto_config:a})}s(!1),e.close()}}}),[t]),[t,n,u]}},258:function(e,t,n){"use strict";n.d(t,{L:function(){return i},v:function(){return o}});var r=n(7294),i=r.createContext(!0),o=function(e){var t=e.has_mounted,n=e.show_cookie_banner,o=e.children,a=e.setModalPayload,u=e.toggleModal;return r.createElement(i.Provider,{value:{has_mounted:t,show_cookie_banner:n,setModalPayload:a,toggleModal:u}},o)}},8838:function(e,t,n){"use strict";n.d(t,{Ww:function(){return ae},RD:function(){return r.RD},Xx:function(){return bt},UE:function(){return ue.U},Wm:function(){return ot},q7:function(){return r.q7},NC:function(){return et}});var r=n(316),i=n(7294),o=n(4176),a=n.n(o),u=n(4191),c=n.n(u),s=n(3891),l=n.n(s),d=n(408),f=n.n(d),p=n(624),g=n.n(p);function h(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function M(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};y=M(M({},y),e)}(e.options.react),function(e){m=e}(e)}};function L(){if(console&&console.warn){for(var e,t=arguments.length,n=new Array(t),r=0;r2&&void 0!==arguments[2]?arguments[2]:{};if(!t.languages||!t.languages.length)return S("i18n.languages were undefined or empty",t.languages),!0;var r=t.languages[0],i=!!t.options&&t.options.fallbackLng,o=t.languages[t.languages.length-1];if("cimode"===r.toLowerCase())return!0;var a=function(e,n){var r=t.services.backendConnector.state["".concat(e,"|").concat(n)];return-1===r||2===r};return!(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1&&t.services.backendConnector.backend&&t.isLanguageChangingTo&&!a(t.isLanguageChangingTo,e))&&(!!t.hasResourceBundle(r,e)||(!t.services.backendConnector.backend||!(!a(r,e)||i&&!a(o,e))))}function x(e){return e.displayName||e.name||("string"==typeof e&&e.length>0?e:"Unknown")}function C(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function E(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},n=t.i18n,r=(0,i.useContext)(j)||{},o=r.i18n,a=r.defaultNS,u=n||o||w();if(u&&!u.reportNamespaces&&(u.reportNamespaces=new N),!u){S("You will need to pass in an i18next instance by using initReactI18next");var s=function(e){return Array.isArray(e)?e[e.length-1]:e},l=[s,{},!1];return l.t=s,l.i18n={},l.ready=!1,l}u.options.react&&void 0!==u.options.react.wait&&S("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");var d=E(E(E({},v()),u.options.react),t),f=d.useSuspense,p=e||a||u.options&&u.options.defaultNS;p="string"==typeof p?[p]:p||["translation"],u.reportNamespaces.addUsedNamespaces&&u.reportNamespaces.addUsedNamespaces(p);var g=(u.isInitialized||u.initializedStoreOnce)&&p.every((function(e){return A(e,u,d)}));function h(){return u.getFixedT(null,"fallback"===d.nsMode?p:p[0])}var M=(0,i.useState)(h),m=c()(M,2),y=m[0],I=m[1],L=(0,i.useRef)(!0);(0,i.useEffect)((function(){var e=d.bindI18n,t=d.bindI18nStore;function n(){L.current&&I(h)}return L.current=!0,g||f||D(u,p,(function(){L.current&&I(h)})),e&&u&&u.on(e,n),t&&u&&u.store.on(t,n),function(){L.current=!1,e&&u&&e.split(" ").forEach((function(e){return u.off(e,n)})),t&&u&&t.split(" ").forEach((function(e){return u.store.off(e,n)}))}}),[u,p.join()]);var b=(0,i.useRef)(!0);(0,i.useEffect)((function(){L.current&&!b.current&&I(h),b.current=!1}),[u]);var x=[y,u,g];if(x.t=y,x.i18n=u,x.ready=g,g)return x;if(!g&&!f)return x;throw new Promise((function(e){D(u,p,(function(){e()}))}))}var z=["forwardedRef"];function O(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function k(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};return function(n){function r(r){var o=r.forwardedRef,a=l()(r,z),u=T(e,a),s=c()(u,3),d=s[0],f=s[1],p=s[2],g=k(k({},a),{},{t:d,i18n:f,tReady:p});return t.withRef&&o?g.ref=o:!t.withRef&&o&&(g.forwardedRef=o),i.createElement(n,g)}r.displayName="withI18nextTranslation(".concat(x(n),")"),r.WrappedComponent=n;return t.withRef?i.forwardRef((function(e,t){return i.createElement(r,Object.assign({},e,{forwardedRef:t}))})):r}}()((function(e){var t=e.i18n,n=e.is_high_nav,r=e.short_name,o=i.useState(t.language),a=o[0],u=o[1],c=function(){var e=(0,i.useState)(!1),t=e[0],n=e[1],r=(0,i.useState)(!1),o=r[0],a=r[1];return(0,i.useEffect)((function(){var e=setInterval((function(){a((0,R.KR)((0,R.ge)()))}),1e3);return function(){return clearInterval(e)}}),[]),(0,i.useEffect)((function(){o?JSON.stringify(o)!=JSON.stringify(t)&&n(o):n(!1)}),[o]),t}();i.useEffect((function(){u(t.language)}),[t.language]),i.useEffect((function(){if(!U().get("lang_is_fixed")&&c.preferred_language){var e=c.preferred_language.toLowerCase();if(e!==a){var t=e.replace("_","-");l({target:{id:"/"+t+"/"}})}}}),[c]);var s,l=function(e){var t=e.target.id,n=a||"en",r="/en/"===t?"/":t;if("/"+n+"/"!==t){var i=window.location.pathname,o=window.location.hash,u=""+r+("en"===n?i.replace(/\//,""):(0,R.Lz)(i))+o;"/ach/"===r?(localStorage.setItem("i18n","ach"),window.location.href=u):(0,_.navigate)(u,{hrefLang:r})}};return i.createElement(ne,{onChange:l,option_list:ie.map((function(e){if(!oe.includes(e)||!(0,re.yv)()){var t=Z()[e],n=t.display_name,r=t.path,i=t.short_name;return{value:"/"+r+"/",text:n,is_selected:Z()[a].short_name===i,path:r}}})),default_option:(s=Z()[a],{short_name:s.short_name,path:s.path}),has_short_name:!!r,is_high_nav:!!n})})),ue=n(2818);function ce(e){return(ce="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function se(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function le(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};de(this,e),this.init(t,n)}return pe(e,[{key:"init",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.prefix=t.prefix||"i18next:",this.logger=e||Ne,this.options=t,this.debug=t.debug}},{key:"setDebug",value:function(e){this.debug=e}},{key:"log",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n1?t-1:0),r=1;r-1?e.replace(/###/g,"."):e}function i(){return!e||"string"==typeof e}for(var o="string"!=typeof t?[].concat(t):t.split(".");o.length>1;){if(i())return{};var a=r(o.shift());!e[a]&&n&&(e[a]=new n),e=Object.prototype.hasOwnProperty.call(e,a)?e[a]:{}}return i()?{}:{obj:e,k:r(o.shift())}}function Ae(e,t,n){var r=De(e,t,Object);r.obj[r.k]=n}function xe(e,t){var n=De(e,t),r=n.obj,i=n.k;if(r)return r[i]}function Ce(e,t,n){var r=xe(e,n);return void 0!==r?r:xe(t,n)}function Ee(e,t,n){for(var r in t)"__proto__"!==r&&"constructor"!==r&&(r in e?"string"==typeof e[r]||e[r]instanceof String||"string"==typeof t[r]||t[r]instanceof String?n&&(e[r]=t[r]):Ee(e[r],t[r],n):e[r]=t[r]);return e}function Te(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}var ze={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};function Oe(e){return"string"==typeof e?e.replace(/[&<>"'\/]/g,(function(e){return ze[e]})):e}var ke="undefined"!=typeof window&&window.navigator&&window.navigator.userAgent&&window.navigator.userAgent.indexOf("MSIE")>-1;function _e(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:".";if(e){if(e[t])return e[t];for(var r=t.split(n),i=e,o=0;oo+a;)a++,c=i[u=r.slice(o,o+a).join(n)];if(void 0===c)return;if("string"==typeof c)return c;if(u&&"string"==typeof c[u])return c[u];var s=r.slice(o+a).join(n);return s?_e(c,s,n):void 0}i=i[r[o]]}return i}}var Pe=function(e){function t(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{ns:["translation"],defaultNS:"translation"};return de(this,t),n=me(this,ye(t).call(this)),ke&&Ie.call((0,Me.Z)(n)),n.data=e||{},n.options=r,void 0===n.options.keySeparator&&(n.options.keySeparator="."),void 0===n.options.ignoreJSONStructure&&(n.options.ignoreJSONStructure=!0),n}return ve(t,e),pe(t,[{key:"addNamespaces",value:function(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}},{key:"removeNamespaces",value:function(e){var t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=void 0!==r.keySeparator?r.keySeparator:this.options.keySeparator,o=void 0!==r.ignoreJSONStructure?r.ignoreJSONStructure:this.options.ignoreJSONStructure,a=[e,t];n&&"string"!=typeof n&&(a=a.concat(n)),n&&"string"==typeof n&&(a=a.concat(i?n.split(i):n)),e.indexOf(".")>-1&&(a=e.split("."));var u=xe(this.data,a);return u||!o||"string"!=typeof n?u:_e(this.data&&this.data[e]&&this.data[e][t],n,i)}},{key:"addResource",value:function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{silent:!1},o=this.options.keySeparator;void 0===o&&(o=".");var a=[e,t];n&&(a=a.concat(o?n.split(o):n)),e.indexOf(".")>-1&&(r=t,t=(a=e.split("."))[1]),this.addNamespaces(t),Ae(this.data,a,r),i.silent||this.emit("added",e,t,n,r)}},{key:"addResources",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{silent:!1};for(var i in n)"string"!=typeof n[i]&&"[object Array]"!==Object.prototype.toString.apply(n[i])||this.addResource(e,t,i,n[i],{silent:!0});r.silent||this.emit("added",e,t,n)}},{key:"addResourceBundle",value:function(e,t,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{silent:!1},a=[e,t];e.indexOf(".")>-1&&(r=n,n=t,t=(a=e.split("."))[1]),this.addNamespaces(t);var u=xe(this.data,a)||{};r?Ee(u,n,i):u=le({},u,n),Ae(this.data,a,u),o.silent||this.emit("added",e,t,n)}},{key:"removeResourceBundle",value:function(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}},{key:"hasResourceBundle",value:function(e,t){return void 0!==this.getResource(e,t)}},{key:"getResourceBundle",value:function(e,t){return t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI?le({},{},this.getResource(e,t)):this.getResource(e,t)}},{key:"getDataByLanguage",value:function(e){return this.data[e]}},{key:"toJSON",value:function(){return this.data}}]),t}(Ie),Ue={processors:{},addPostProcessor:function(e){this.processors[e.name]=e},handle:function(e,t,n,r,i){var o=this;return e.forEach((function(e){o.processors[e]&&(t=o.processors[e].process(t,n,r,i))})),t}},Ye={},Ze=function(e){function t(e){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return de(this,t),n=me(this,ye(t).call(this)),ke&&Ie.call((0,Me.Z)(n)),Se(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],e,(0,Me.Z)(n)),n.options=r,void 0===n.options.keySeparator&&(n.options.keySeparator="."),n.logger=we.create("translator"),n}return ve(t,e),pe(t,[{key:"changeLanguage",value:function(e){e&&(this.language=e)}},{key:"exists",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}},n=this.resolve(e,t);return n&&void 0!==n.res}},{key:"extractFromKey",value:function(e,t){var n=void 0!==t.nsSeparator?t.nsSeparator:this.options.nsSeparator;void 0===n&&(n=":");var r=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,i=t.ns||this.options.defaultNS;if(n&&e.indexOf(n)>-1){var o=e.match(this.interpolator.nestingRegexp);if(o&&o.length>0)return{key:e,namespaces:i};var a=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(a[0])>-1)&&(i=a.shift()),e=a.join(r)}return"string"==typeof i&&(i=[i]),{key:e,namespaces:i}}},{key:"translate",value:function(e,n,r){var i=this;if("object"!==ce(n)&&this.options.overloadTranslationOptionHandler&&(n=this.options.overloadTranslationOptionHandler(arguments)),n||(n={}),null==e)return"";Array.isArray(e)||(e=[String(e)]);var o=void 0!==n.keySeparator?n.keySeparator:this.options.keySeparator,a=this.extractFromKey(e[e.length-1],n),u=a.key,c=a.namespaces,s=c[c.length-1],l=n.lng||this.language,d=n.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(l&&"cimode"===l.toLowerCase()){if(d){var f=n.nsSeparator||this.options.nsSeparator;return s+f+u}return u}var p=this.resolve(e,n),g=p&&p.res,h=p&&p.usedKey||u,M=p&&p.exactUsedKey||u,m=Object.prototype.toString.apply(g),y=["[object Number]","[object Function]","[object RegExp]"],j=void 0!==n.joinArrays?n.joinArrays:this.options.joinArrays,v=!this.i18nFormat||this.i18nFormat.handleAsObject,N="string"!=typeof g&&"boolean"!=typeof g&&"number"!=typeof g;if(v&&g&&N&&y.indexOf(m)<0&&("string"!=typeof j||"[object Array]"!==m)){if(!n.returnObjects&&!this.options.returnObjects)return this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!"),this.options.returnedObjectHandler?this.options.returnedObjectHandler(h,g,le({},n,{ns:c})):"key '".concat(u," (").concat(this.language,")' returned an object instead of string.");if(o){var w="[object Array]"===m,I=w?[]:{},L=w?M:h;for(var b in g)if(Object.prototype.hasOwnProperty.call(g,b)){var S="".concat(L).concat(o).concat(b);I[b]=this.translate(S,le({},n,{joinArrays:!1,ns:c})),I[b]===S&&(I[b]=g[b])}g=I}}else if(v&&"string"==typeof j&&"[object Array]"===m)(g=g.join(j))&&(g=this.extendTranslation(g,e,n,r));else{var D=!1,A=!1,x=void 0!==n.count&&"string"!=typeof n.count,C=t.hasDefaultValue(n),E=x?this.pluralResolver.getSuffix(l,n.count):"",T=n["defaultValue".concat(E)]||n.defaultValue;!this.isValidLookup(g)&&C&&(D=!0,g=T),this.isValidLookup(g)||(A=!0,g=u);var z=C&&T!==g&&this.options.updateMissing;if(A||D||z){if(this.logger.log(z?"updateKey":"missingKey",l,s,u,z?T:g),o){var O=this.resolve(u,le({},n,{keySeparator:!1}));O&&O.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}var k=[],_=this.languageUtils.getFallbackCodes(this.options.fallbackLng,n.lng||this.language);if("fallback"===this.options.saveMissingTo&&_&&_[0])for(var P=0;P<_.length;P++)k.push(_[P]);else"all"===this.options.saveMissingTo?k=this.languageUtils.toResolveHierarchy(n.lng||this.language):k.push(n.lng||this.language);var U=function(e,t,r){i.options.missingKeyHandler?i.options.missingKeyHandler(e,s,t,z?r:g,z,n):i.backendConnector&&i.backendConnector.saveMissing&&i.backendConnector.saveMissing(e,s,t,z?r:g,z,n),i.emit("missingKey",e,s,t,g)};this.options.saveMissing&&(this.options.saveMissingPlurals&&x?k.forEach((function(e){i.pluralResolver.getSuffixes(e).forEach((function(t){U([e],u+t,n["defaultValue".concat(t)]||T)}))})):U(k,u,T))}g=this.extendTranslation(g,e,n,p,r),A&&g===u&&this.options.appendNamespaceToMissingKey&&(g="".concat(s,":").concat(u)),A&&this.options.parseMissingKeyHandler&&(g=this.options.parseMissingKeyHandler(g))}return g}},{key:"extendTranslation",value:function(e,t,n,r,i){var o=this;if(this.i18nFormat&&this.i18nFormat.parse)e=this.i18nFormat.parse(e,n,r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init(le({},n,{interpolation:le({},this.options.interpolation,n.interpolation)}));var a,u=n.interpolation&&n.interpolation.skipOnVariables||this.options.interpolation.skipOnVariables;if(u){var c=e.match(this.interpolator.nestingRegexp);a=c&&c.length}var s=n.replace&&"string"!=typeof n.replace?n.replace:n;if(this.options.interpolation.defaultVariables&&(s=le({},this.options.interpolation.defaultVariables,s)),e=this.interpolator.interpolate(e,s,n.lng||this.language,n),u){var l=e.match(this.interpolator.nestingRegexp);a<(l&&l.length)&&(n.nest=!1)}!1!==n.nest&&(e=this.interpolator.nest(e,(function(){for(var e=arguments.length,r=new Array(e),a=0;a1&&void 0!==arguments[1]?arguments[1]:{};return"string"==typeof e&&(e=[e]),e.forEach((function(e){if(!a.isValidLookup(t)){var c=a.extractFromKey(e,u),s=c.key;n=s;var l=c.namespaces;a.options.fallbackNS&&(l=l.concat(a.options.fallbackNS));var d=void 0!==u.count&&"string"!=typeof u.count,f=void 0!==u.context&&"string"==typeof u.context&&""!==u.context,p=u.lngs?u.lngs:a.languageUtils.toResolveHierarchy(u.lng||a.language,u.fallbackLng);l.forEach((function(e){a.isValidLookup(t)||(o=e,!Ye["".concat(p[0],"-").concat(e)]&&a.utils&&a.utils.hasLoadedNamespace&&!a.utils.hasLoadedNamespace(o)&&(Ye["".concat(p[0],"-").concat(e)]=!0,a.logger.warn('key "'.concat(n,'" for languages "').concat(p.join(", "),'" won\'t get resolved as namespace "').concat(o,'" was not yet loaded'),"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),p.forEach((function(n){if(!a.isValidLookup(t)){i=n;var o,c,l=s,p=[l];if(a.i18nFormat&&a.i18nFormat.addLookupKeys)a.i18nFormat.addLookupKeys(p,s,n,e,u);else d&&(o=a.pluralResolver.getSuffix(n,u.count)),d&&f&&p.push(l+o),f&&p.push(l+="".concat(a.options.contextSeparator).concat(u.context)),d&&p.push(l+=o);for(;c=p.pop();)a.isValidLookup(t)||(r=c,t=a.getResource(n,e,c,u))}})))}))}})),{res:t,usedKey:n,exactUsedKey:r,usedLng:i,usedNS:o}}},{key:"isValidLookup",value:function(e){return!(void 0===e||!this.options.returnNull&&null===e||!this.options.returnEmptyString&&""===e)}},{key:"getResource",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return this.i18nFormat&&this.i18nFormat.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}}],[{key:"hasDefaultValue",value:function(e){var t="defaultValue";for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)&&t===n.substring(0,t.length)&&void 0!==e[n])return!0;return!1}}]),t}(Ie);function Re(e){return e.charAt(0).toUpperCase()+e.slice(1)}var Qe=function(){function e(t){de(this,e),this.options=t,this.whitelist=this.options.supportedLngs||!1,this.supportedLngs=this.options.supportedLngs||!1,this.logger=we.create("languageUtils")}return pe(e,[{key:"getScriptPartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return null;var t=e.split("-");return 2===t.length?null:(t.pop(),"x"===t[t.length-1].toLowerCase()?null:this.formatLanguageCode(t.join("-")))}},{key:"getLanguagePartFromCode",value:function(e){if(!e||e.indexOf("-")<0)return e;var t=e.split("-");return this.formatLanguageCode(t[0])}},{key:"formatLanguageCode",value:function(e){if("string"==typeof e&&e.indexOf("-")>-1){var t=["hans","hant","latn","cyrl","cans","mong","arab"],n=e.split("-");return this.options.lowerCaseLng?n=n.map((function(e){return e.toLowerCase()})):2===n.length?(n[0]=n[0].toLowerCase(),n[1]=n[1].toUpperCase(),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=Re(n[1].toLowerCase()))):3===n.length&&(n[0]=n[0].toLowerCase(),2===n[1].length&&(n[1]=n[1].toUpperCase()),"sgn"!==n[0]&&2===n[2].length&&(n[2]=n[2].toUpperCase()),t.indexOf(n[1].toLowerCase())>-1&&(n[1]=Re(n[1].toLowerCase())),t.indexOf(n[2].toLowerCase())>-1&&(n[2]=Re(n[2].toLowerCase()))),n.join("-")}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}},{key:"isWhitelisted",value:function(e){return this.logger.deprecate("languageUtils.isWhitelisted",'function "isWhitelisted" will be renamed to "isSupportedCode" in the next major - please make sure to rename it\'s usage asap.'),this.isSupportedCode(e)}},{key:"isSupportedCode",value:function(e){return("languageOnly"===this.options.load||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}},{key:"getBestMatchFromCodes",value:function(e){var t,n=this;return e?(e.forEach((function(e){if(!t){var r=n.formatLanguageCode(e);n.options.supportedLngs&&!n.isSupportedCode(r)||(t=r)}})),!t&&this.options.supportedLngs&&e.forEach((function(e){if(!t){var r=n.getLanguagePartFromCode(e);if(n.isSupportedCode(r))return t=r;t=n.options.supportedLngs.find((function(e){if(0===e.indexOf(r))return e}))}})),t||(t=this.getFallbackCodes(this.options.fallbackLng)[0]),t):null}},{key:"getFallbackCodes",value:function(e,t){if(!e)return[];if("function"==typeof e&&(e=e(t)),"string"==typeof e&&(e=[e]),"[object Array]"===Object.prototype.toString.apply(e))return e;if(!t)return e.default||[];var n=e[t];return n||(n=e[this.getScriptPartFromCode(t)]),n||(n=e[this.formatLanguageCode(t)]),n||(n=e[this.getLanguagePartFromCode(t)]),n||(n=e.default),n||[]}},{key:"toResolveHierarchy",value:function(e,t){var n=this,r=this.getFallbackCodes(t||this.options.fallbackLng||[],e),i=[],o=function(e){e&&(n.isSupportedCode(e)?i.push(e):n.logger.warn("rejecting language code not found in supportedLngs: ".concat(e)))};return"string"==typeof e&&e.indexOf("-")>-1?("languageOnly"!==this.options.load&&o(this.formatLanguageCode(e)),"languageOnly"!==this.options.load&&"currentOnly"!==this.options.load&&o(this.getScriptPartFromCode(e)),"currentOnly"!==this.options.load&&o(this.getLanguagePartFromCode(e))):"string"==typeof e&&o(this.formatLanguageCode(e)),r.forEach((function(e){i.indexOf(e)<0&&o(n.formatLanguageCode(e))})),i}}]),e}(),We=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","pt","pt-BR","tg","tl","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","et","eu","fi","fo","fur","fy","gl","gu","ha","hi","hu","hy","ia","it","kk","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt-PT","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","ht","id","ja","jbo","ka","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","cnr","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21},{lngs:["he","iw"],nr:[1,2,20,21],fc:22}],Ge={1:function(e){return Number(e>1)},2:function(e){return Number(1!=e)},3:function(e){return 0},4:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},5:function(e){return Number(0==e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5)},6:function(e){return Number(1==e?0:e>=2&&e<=4?1:2)},7:function(e){return Number(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2)},8:function(e){return Number(1==e?0:2==e?1:8!=e&&11!=e?2:3)},9:function(e){return Number(e>=2)},10:function(e){return Number(1==e?0:2==e?1:e<7?2:e<11?3:4)},11:function(e){return Number(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3)},12:function(e){return Number(e%10!=1||e%100==11)},13:function(e){return Number(0!==e)},14:function(e){return Number(1==e?0:2==e?1:3==e?2:3)},15:function(e){return Number(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2)},16:function(e){return Number(e%10==1&&e%100!=11?0:0!==e?1:2)},17:function(e){return Number(1==e||e%10==1&&e%100!=11?0:1)},18:function(e){return Number(0==e?0:1==e?1:2)},19:function(e){return Number(1==e?0:0==e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3)},20:function(e){return Number(1==e?0:0==e||e%100>0&&e%100<20?1:2)},21:function(e){return Number(e%100==1?1:e%100==2?2:e%100==3||e%100==4?3:0)},22:function(e){return Number(1==e?0:2==e?1:(e<0||e>10)&&e%10==0?2:3)}};function Be(){var e={};return We.forEach((function(t){t.lngs.forEach((function(n){e[n]={numbers:t.nr,plurals:Ge[t.fc]}}))})),e}var Ve=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};de(this,e),this.languageUtils=t,this.options=n,this.logger=we.create("pluralResolver"),this.rules=Be()}return pe(e,[{key:"addRule",value:function(e,t){this.rules[e]=t}},{key:"getRule",value:function(e){return this.rules[e]||this.rules[this.languageUtils.getLanguagePartFromCode(e)]}},{key:"needsPlural",value:function(e){var t=this.getRule(e);return t&&t.numbers.length>1}},{key:"getPluralFormsOfKey",value:function(e,t){return this.getSuffixes(e).map((function(e){return t+e}))}},{key:"getSuffixes",value:function(e){var t=this,n=this.getRule(e);return n?n.numbers.map((function(n){return t.getSuffix(e,n)})):[]}},{key:"getSuffix",value:function(e,t){var n=this,r=this.getRule(e);if(r){var i=r.noAbs?r.plurals(t):r.plurals(Math.abs(t)),o=r.numbers[i];this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]&&(2===o?o="plural":1===o&&(o=""));var a=function(){return n.options.prepend&&o.toString()?n.options.prepend+o.toString():o.toString()};return"v1"===this.options.compatibilityJSON?1===o?"":"number"==typeof o?"_plural_".concat(o.toString()):a():"v2"===this.options.compatibilityJSON||this.options.simplifyPluralSuffix&&2===r.numbers.length&&1===r.numbers[0]?a():this.options.prepend&&i.toString()?this.options.prepend+i.toString():i.toString()}return this.logger.warn("no plural rule found for: ".concat(e)),""}}]),e}(),He=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};de(this,e),this.logger=we.create("interpolator"),this.options=t,this.format=t.interpolation&&t.interpolation.format||function(e){return e},this.init(t)}return pe(e,[{key:"init",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e.interpolation||(e.interpolation={escapeValue:!0});var t=e.interpolation;this.escape=void 0!==t.escape?t.escape:Oe,this.escapeValue=void 0===t.escapeValue||t.escapeValue,this.useRawValueToEscape=void 0!==t.useRawValueToEscape&&t.useRawValueToEscape,this.prefix=t.prefix?Te(t.prefix):t.prefixEscaped||"{{",this.suffix=t.suffix?Te(t.suffix):t.suffixEscaped||"}}",this.formatSeparator=t.formatSeparator?t.formatSeparator:t.formatSeparator||",",this.unescapePrefix=t.unescapeSuffix?"":t.unescapePrefix||"-",this.unescapeSuffix=this.unescapePrefix?"":t.unescapeSuffix||"",this.nestingPrefix=t.nestingPrefix?Te(t.nestingPrefix):t.nestingPrefixEscaped||Te("$t("),this.nestingSuffix=t.nestingSuffix?Te(t.nestingSuffix):t.nestingSuffixEscaped||Te(")"),this.nestingOptionsSeparator=t.nestingOptionsSeparator?t.nestingOptionsSeparator:t.nestingOptionsSeparator||",",this.maxReplaces=t.maxReplaces?t.maxReplaces:1e3,this.alwaysFormat=void 0!==t.alwaysFormat&&t.alwaysFormat,this.resetRegExp()}},{key:"reset",value:function(){this.options&&this.init(this.options)}},{key:"resetRegExp",value:function(){var e="".concat(this.prefix,"(.+?)").concat(this.suffix);this.regexp=new RegExp(e,"g");var t="".concat(this.prefix).concat(this.unescapePrefix,"(.+?)").concat(this.unescapeSuffix).concat(this.suffix);this.regexpUnescape=new RegExp(t,"g");var n="".concat(this.nestingPrefix,"(.+?)").concat(this.nestingSuffix);this.nestingRegexp=new RegExp(n,"g")}},{key:"interpolate",value:function(e,t,n,r){var i,o,a,u=this,c=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{};function s(e){return e.replace(/\$/g,"$$$$")}var l=function(e){if(e.indexOf(u.formatSeparator)<0){var i=Ce(t,c,e);return u.alwaysFormat?u.format(i,void 0,n,le({},r,t,{interpolationkey:e})):i}var o=e.split(u.formatSeparator),a=o.shift().trim(),s=o.join(u.formatSeparator).trim();return u.format(Ce(t,c,a),s,n,le({},r,t,{interpolationkey:a}))};this.resetRegExp();var d=r&&r.missingInterpolationHandler||this.options.missingInterpolationHandler,f=r&&r.interpolation&&r.interpolation.skipOnVariables||this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:function(e){return s(e)}},{regex:this.regexp,safeValue:function(e){return u.escapeValue?s(u.escape(e)):s(e)}}].forEach((function(t){for(a=0;i=t.regex.exec(e);){if(void 0===(o=l(i[1].trim())))if("function"==typeof d){var n=d(e,i,r);o="string"==typeof n?n:""}else{if(f){o=i[0];continue}u.logger.warn("missed to pass in variable ".concat(i[1]," for interpolating ").concat(e)),o=""}else"string"==typeof o||u.useRawValueToEscape||(o=be(o));var c=t.safeValue(o);if(e=e.replace(i[0],c),f?(t.regex.lastIndex+=c.length,t.regex.lastIndex-=i[0].length):t.regex.lastIndex=0,++a>=u.maxReplaces)break}})),e}},{key:"nest",value:function(e,t){var n,r,i=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=le({},o);function u(e,t){var n=this.nestingOptionsSeparator;if(e.indexOf(n)<0)return e;var r=e.split(new RegExp("".concat(n,"[ ]*{"))),i="{".concat(r[1]);e=r[0],i=(i=this.interpolate(i,a)).replace(/'/g,'"');try{a=JSON.parse(i),t&&(a=le({},t,a))}catch(t){return this.logger.warn("failed parsing options string in nesting for key ".concat(e),t),"".concat(e).concat(n).concat(i)}return delete a.defaultValue,e}for(a.applyPostProcessor=!1,delete a.defaultValue;n=this.nestingRegexp.exec(e);){var c=[],s=!1;if(-1!==n[0].indexOf(this.formatSeparator)&&!/{.*}/.test(n[1])){var l=n[1].split(this.formatSeparator).map((function(e){return e.trim()}));n[1]=l.shift(),c=l,s=!0}if((r=t(u.call(this,n[1].trim(),a),a))&&n[0]===e&&"string"!=typeof r)return r;"string"!=typeof r&&(r=be(r)),r||(this.logger.warn("missed to resolve ".concat(n[1]," for nesting ").concat(e)),r=""),s&&(r=c.reduce((function(e,t){return i.format(e,t,o.lng,le({},o,{interpolationkey:n[1].trim()}))}),r.trim())),e=e.replace(n[0],r),this.regexp.lastIndex=0}return e}}]),e}();var Fe=function(e){function t(e,n,r){var i,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return de(this,t),i=me(this,ye(t).call(this)),ke&&Ie.call((0,Me.Z)(i)),i.backend=e,i.store=n,i.services=r,i.languageUtils=r.languageUtils,i.options=o,i.logger=we.create("backendConnector"),i.state={},i.queue=[],i.backend&&i.backend.init&&i.backend.init(r,o.backend,o),i}return ve(t,e),pe(t,[{key:"queueLoad",value:function(e,t,n,r){var i=this,o=[],a=[],u=[],c=[];return e.forEach((function(e){var r=!0;t.forEach((function(t){var u="".concat(e,"|").concat(t);!n.reload&&i.store.hasResourceBundle(e,t)?i.state[u]=2:i.state[u]<0||(1===i.state[u]?a.indexOf(u)<0&&a.push(u):(i.state[u]=1,r=!1,a.indexOf(u)<0&&a.push(u),o.indexOf(u)<0&&o.push(u),c.indexOf(t)<0&&c.push(t)))})),r||u.push(e)})),(o.length||a.length)&&this.queue.push({pending:a,loaded:{},errors:[],callback:r}),{toLoad:o,pending:a,toLoadLanguages:u,toLoadNamespaces:c}}},{key:"loaded",value:function(e,t,n){var r=e.split("|"),i=r[0],o=r[1];t&&this.emit("failedLoading",i,o,t),n&&this.store.addResourceBundle(i,o,n),this.state[e]=t?-1:2;var a={};this.queue.forEach((function(n){var r,u,c,s,l,d;r=n.loaded,u=o,s=De(r,[i],Object),l=s.obj,d=s.k,l[d]=l[d]||[],c&&(l[d]=l[d].concat(u)),c||l[d].push(u),function(e,t){for(var n=e.indexOf(t);-1!==n;)e.splice(n,1),n=e.indexOf(t)}(n.pending,e),t&&n.errors.push(t),0!==n.pending.length||n.done||(Object.keys(n.loaded).forEach((function(e){a[e]||(a[e]=[]),n.loaded[e].length&&n.loaded[e].forEach((function(t){a[e].indexOf(t)<0&&a[e].push(t)}))})),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())})),this.emit("loaded",a),this.queue=this.queue.filter((function(e){return!e.done}))}},{key:"read",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:350,a=arguments.length>5?arguments[5]:void 0;return e.length?this.backend[n](e,t,(function(u,c){u&&c&&i<5?setTimeout((function(){r.read.call(r,e,t,n,i+1,2*o,a)}),o):a(u,c)})):a(null,{})}},{key:"prepareLoading",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3?arguments[3]:void 0;if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),i&&i();"string"==typeof e&&(e=this.languageUtils.toResolveHierarchy(e)),"string"==typeof t&&(t=[t]);var o=this.queueLoad(e,t,r,i);if(!o.toLoad.length)return o.pending.length||i(),null;o.toLoad.forEach((function(e){n.loadOne(e)}))}},{key:"load",value:function(e,t,n){this.prepareLoading(e,t,{},n)}},{key:"reload",value:function(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}},{key:"loadOne",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=e.split("|"),i=r[0],o=r[1];this.read(i,o,"read",void 0,void 0,(function(r,a){r&&t.logger.warn("".concat(n,"loading namespace ").concat(o," for language ").concat(i," failed"),r),!r&&a&&t.logger.log("".concat(n,"loaded namespace ").concat(o," for language ").concat(i),a),t.loaded(e,r,a)}))}},{key:"saveMissing",value:function(e,t,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};this.services.utils&&this.services.utils.hasLoadedNamespace&&!this.services.utils.hasLoadedNamespace(t)?this.logger.warn('did not save key "'.concat(n,'" as the namespace "').concat(t,'" was not yet loaded'),"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!"):null!=n&&""!==n&&(this.backend&&this.backend.create&&this.backend.create(e,t,n,r,null,le({},o,{isUpdate:i})),e&&e[0]&&this.store.addResource(e[0],t,n,r))}}]),t}(Ie);function Je(){return{debug:!1,initImmediate:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,whitelist:!1,nonExplicitWhitelist:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!0,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:function(e){var t={};if("object"===ce(e[1])&&(t=e[1]),"string"==typeof e[1]&&(t.defaultValue=e[1]),"string"==typeof e[2]&&(t.tDescription=e[2]),"object"===ce(e[2])||"object"===ce(e[3])){var n=e[3]||e[2];Object.keys(n).forEach((function(e){t[e]=n[e]}))}return t},interpolation:{escapeValue:!0,format:function(e,t,n,r){return e},prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!1}}}function Xe(e){return"string"==typeof e.ns&&(e.ns=[e.ns]),"string"==typeof e.fallbackLng&&(e.fallbackLng=[e.fallbackLng]),"string"==typeof e.fallbackNS&&(e.fallbackNS=[e.fallbackNS]),e.whitelist&&(e.whitelist&&e.whitelist.indexOf("cimode")<0&&(e.whitelist=e.whitelist.concat(["cimode"])),e.supportedLngs=e.whitelist),e.nonExplicitWhitelist&&(e.nonExplicitSupportedLngs=e.nonExplicitWhitelist),e.supportedLngs&&e.supportedLngs.indexOf("cimode")<0&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),e}function qe(){}var Ke=new(function(e){function t(){var e,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1?arguments[1]:void 0;if(de(this,t),e=me(this,ye(t).call(this)),ke&&Ie.call((0,Me.Z)(e)),e.options=Xe(n),e.services={},e.logger=we,e.modules={external:[]},r&&!e.isInitialized&&!n.isClone){if(!e.options.initImmediate)return e.init(n,r),me(e,(0,Me.Z)(e));setTimeout((function(){e.init(n,r)}),0)}return e}return ve(t,e),pe(t,[{key:"init",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;function r(e){return e?"function"==typeof e?new e:e:null}if("function"==typeof t&&(n=t,t={}),t.whitelist&&!t.supportedLngs&&this.logger.deprecate("whitelist",'option "whitelist" will be renamed to "supportedLngs" in the next major - please make sure to rename this option asap.'),t.nonExplicitWhitelist&&!t.nonExplicitSupportedLngs&&this.logger.deprecate("whitelist",'options "nonExplicitWhitelist" will be renamed to "nonExplicitSupportedLngs" in the next major - please make sure to rename this option asap.'),this.options=le({},Je(),this.options,Xe(t)),this.format=this.options.interpolation.format,n||(n=qe),!this.options.isClone){this.modules.logger?we.init(r(this.modules.logger),this.options):we.init(null,this.options);var i=new Qe(this.options);this.store=new Pe(this.options.resources,this.options);var o=this.services;o.logger=we,o.resourceStore=this.store,o.languageUtils=i,o.pluralResolver=new Ve(i,{prepend:this.options.pluralSeparator,compatibilityJSON:this.options.compatibilityJSON,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),o.interpolator=new He(this.options),o.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},o.backendConnector=new Fe(r(this.modules.backend),o.resourceStore,o,this.options),o.backendConnector.on("*",(function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i1?n-1:0),i=1;i0&&"dev"!==a[0]&&(this.options.lng=a[0])}this.services.languageDetector||this.options.lng||this.logger.warn("init: no languageDetector is used and no lng is defined");var u=["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"];u.forEach((function(t){e[t]=function(){var n;return(n=e.store)[t].apply(n,arguments)}}));var c=["addResource","addResources","addResourceBundle","removeResourceBundle"];c.forEach((function(t){e[t]=function(){var n;return(n=e.store)[t].apply(n,arguments),e}}));var s=Le(),l=function(){var t=function(t,r){e.isInitialized&&e.logger.warn("init: i18next is already initialized. You should call init just once!"),e.isInitialized=!0,e.options.isClone||e.logger.log("initialized",e.options),e.emit("initialized",e.options),s.resolve(r),n(t,r)};if(e.languages&&"v1"!==e.options.compatibilityAPI&&!e.isInitialized)return t(null,e.t.bind(e));e.changeLanguage(e.options.lng,t)};return this.options.resources||!this.options.initImmediate?l():setTimeout(l,0),s}},{key:"loadResources",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:qe,r=n,i="string"==typeof e?e:this.language;if("function"==typeof e&&(r=e),!this.options.resources||this.options.partialBundledLanguages){if(i&&"cimode"===i.toLowerCase())return r();var o=[],a=function(e){e&&t.services.languageUtils.toResolveHierarchy(e).forEach((function(e){o.indexOf(e)<0&&o.push(e)}))};if(i)a(i);else{var u=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);u.forEach((function(e){return a(e)}))}this.options.preload&&this.options.preload.forEach((function(e){return a(e)})),this.services.backendConnector.load(o,this.options.ns,r)}else r(null)}},{key:"reloadResources",value:function(e,t,n){var r=Le();return e||(e=this.languages),t||(t=this.options.ns),n||(n=qe),this.services.backendConnector.reload(e,t,(function(e){r.resolve(),n(e)})),r}},{key:"use",value:function(e){if(!e)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return"backend"===e.type&&(this.modules.backend=e),("logger"===e.type||e.log&&e.warn&&e.error)&&(this.modules.logger=e),"languageDetector"===e.type&&(this.modules.languageDetector=e),"i18nFormat"===e.type&&(this.modules.i18nFormat=e),"postProcessor"===e.type&&Ue.addPostProcessor(e),"3rdParty"===e.type&&this.modules.external.push(e),this}},{key:"changeLanguage",value:function(e,t){var n=this;this.isLanguageChangingTo=e;var r=Le();this.emit("languageChanging",e);var i=function(i){e||i||!n.services.languageDetector||(i=[]);var o="string"==typeof i?i:n.services.languageUtils.getBestMatchFromCodes(i);o&&(n.language||(n.language=o,n.languages=n.services.languageUtils.toResolveHierarchy(o)),n.translator.language||n.translator.changeLanguage(o),n.services.languageDetector&&n.services.languageDetector.cacheUserLanguage(o)),n.loadResources(o,(function(e){!function(e,i){i?(n.language=i,n.languages=n.services.languageUtils.toResolveHierarchy(i),n.translator.changeLanguage(i),n.isLanguageChangingTo=void 0,n.emit("languageChanged",i),n.logger.log("languageChanged",i)):n.isLanguageChangingTo=void 0,r.resolve((function(){return n.t.apply(n,arguments)})),t&&t(e,(function(){return n.t.apply(n,arguments)}))}(e,o)}))};return e||!this.services.languageDetector||this.services.languageDetector.async?!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect(i):i(e):i(this.services.languageDetector.detect()),r}},{key:"getFixedT",value:function(e,t){var n=this,r=function e(t,r){var i;if("object"!==ce(r)){for(var o=arguments.length,a=new Array(o>2?o-2:0),u=2;u1&&void 0!==arguments[1]?arguments[1]:{};if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;var r=this.languages[0],i=!!this.options&&this.options.fallbackLng,o=this.languages[this.languages.length-1];if("cimode"===r.toLowerCase())return!0;var a=function(e,n){var r=t.services.backendConnector.state["".concat(e,"|").concat(n)];return-1===r||2===r};if(n.precheck){var u=n.precheck(this,a);if(void 0!==u)return u}return!!this.hasResourceBundle(r,e)||(!this.services.backendConnector.backend||!(!a(r,e)||i&&!a(o,e)))}},{key:"loadNamespaces",value:function(e,t){var n=this,r=Le();return this.options.ns?("string"==typeof e&&(e=[e]),e.forEach((function(e){n.options.ns.indexOf(e)<0&&n.options.ns.push(e)})),this.loadResources((function(e){r.resolve(),t&&t(e)})),r):(t&&t(),Promise.resolve())}},{key:"loadLanguages",value:function(e,t){var n=Le();"string"==typeof e&&(e=[e]);var r=this.options.preload||[],i=e.filter((function(e){return r.indexOf(e)<0}));return i.length?(this.options.preload=r.concat(i),this.loadResources((function(e){n.resolve(),t&&t(e)})),n):(t&&t(),Promise.resolve())}},{key:"dir",value:function(e){if(e||(e=this.languages&&this.languages.length>0?this.languages[0]:this.language),!e)return"rtl";return["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam"].indexOf(this.services.languageUtils.getLanguagePartFromCode(e))>=0?"rtl":"ltr"}},{key:"createInstance",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;return new t(e,n)}},{key:"cloneInstance",value:function(){var e=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:qe,i=le({},this.options,n,{isClone:!0}),o=new t(i),a=["store","services","language"];return a.forEach((function(t){o[t]=e[t]})),o.services=le({},this.services),o.services.utils={hasLoadedNamespace:o.hasLoadedNamespace.bind(o)},o.translator=new Ze(o.services,o.options),o.translator.on("*",(function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function st(e){var t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(ut()[n[1]]||"/"===e.charAt(e.length-2))&&(t.voidElement=!0),t.name.startsWith("!--"))){var r=e.indexOf("--\x3e");return{type:"comment",comment:-1!==r?e.slice(4,r):""}}for(var i=new RegExp(ct),o=null;null!==(o=i.exec(e));)if(o[0].trim())if(o[1]){var a=o[1].trim(),u=[a,""];a.indexOf("=")>-1&&(u=a.split("=")),t.attrs[u[0]]=u[1],i.lastIndex--}else o[2]&&(t.attrs[o[2]]=o[3].trim().substring(1,o[3].length-1));return t}var lt=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,dt=/^\s*$/,ft=Object.create(null);function pt(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(pt,"")+"";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var gt={parse:function(e,t){t||(t={}),t.components||(t.components=ft);var n,r=[],i=[],o=-1,a=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");r.push({type:"text",content:-1===u?e:e.substring(0,u)})}return e.replace(lt,(function(u,c){if(a){if(u!=="")return;a=!1}var s,l="/"!==u.charAt(1),d=u.startsWith("\x3c!--"),f=c+u.length,p=e.charAt(f);if(d){var g=st(u);return o<0?(r.push(g),r):((s=i[o]).children.push(g),r)}if(l&&(o++,"tag"===(n=st(u)).type&&t.components[n.name]&&(n.type="component",a=!0),n.voidElement||a||!p||"<"===p||n.children.push({type:"text",content:e.slice(f,e.indexOf("<",f))}),0===o&&r.push(n),(s=i[o-1])&&s.children.push(n),i[o]=n),(!l||n.voidElement)&&(o>-1&&(n.voidElement||n.name===u.slice(2,-1))&&(o--,n=-1===o?r:i[o]),!a&&"<"!==p&&p)){s=-1===o?r:i[o].children;var h=e.indexOf("<",f),M=e.slice(f,-1===h?void 0:h);dt.test(M)&&(M=" "),(h>-1&&o+s.length>=0||" "!==M)&&s.push({type:"text",content:M})}})),r},stringify:function(e){return e.reduce((function(e,t){return e+pt("",t)}),"")}},ht=["format"],Mt=["children","count","parent","i18nKey","tOptions","values","defaults","components","ns","i18n","t"];function mt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function yt(e){for(var t=1;t0:!!n}function vt(e){return e?e&&e.children?e.children:e.props&&e.props.children:[]}function Nt(e){return Array.isArray(e)?e:[e]}function wt(e,t){if(!e)return"";var n="",r=Nt(e),o=t.transKeepBasicHtmlNodesFor||[];return r.forEach((function(e,r){if("string"==typeof e)n+="".concat(e);else if(i.isValidElement(e)){var a=Object.keys(e.props).length,u=o.indexOf(e.type)>-1,c=e.props.children;if(!c&&u&&0===a)n+="<".concat(e.type,"/>");else if(c||u&&0===a)if(e.props.i18nIsDynamicList)n+="<".concat(r,">");else if(u&&1===a&&"string"==typeof c)n+="<".concat(e.type,">").concat(c,"");else{var s=wt(c,t);n+="<".concat(r,">").concat(s,"")}else n+="<".concat(r,">")}else if(null===e)L("Trans: the passed in value is invalid - seems you passed in a null child.");else if("object"===he()(e)){var d=e.format,f=l()(e,ht),p=Object.keys(f);if(1===p.length){var g=d?"".concat(p[0],", ").concat(d):p[0];n+="{{".concat(g,"}}")}else L("react-i18next: the passed in object contained more than one variable - the object should look like {{ value, format }} where format is optional.",e)}else L("Trans: the passed in value is invalid - seems you passed in a variable like {number} - please pass in variables for interpolation as full objects like {{number}}.",e)})),n}function It(e,t,n,r,o){if(""===t)return[];var a=r.transKeepBasicHtmlNodesFor||[],u=t&&new RegExp(a.join("|")).test(t);if(!e&&!u)return[t];var c={};!function e(t){Nt(t).forEach((function(t){"string"!=typeof t&&(jt(t)?e(vt(t)):"object"!==he()(t)||i.isValidElement(t)||Object.assign(c,t))}))}(e);var s=n.services.interpolator.interpolate(t,yt(yt({},c),o),n.language),l=gt.parse("<0>".concat(s,""));function d(e,t,n){var r=vt(e),o=p(r,t.children,n);return function(e){return"[object Array]"===Object.prototype.toString.call(e)&&e.every((function(e){return i.isValidElement(e)}))}(r)&&0===o.length?r:o}function f(e,t,n,r,o){e.dummy&&(e.children=t),n.push(i.cloneElement(e,yt(yt({},e.props),{},{key:r}),o?void 0:t))}function p(t,n,o){var c=Nt(t);return Nt(n).reduce((function(t,n,s){var l,g,h,M=n.children&&n.children[0]&&n.children[0].content;if("tag"===n.type){var m=c[parseInt(n.name,10)];!m&&1===o.length&&o[0][n.name]&&(m=o[0][n.name]),m||(m={});var y=0!==Object.keys(n.attrs).length?(l={props:n.attrs},(h=yt({},g=m)).props=Object.assign(l.props,g.props),h):m,j=i.isValidElement(y),v=j&&jt(n,!0)&&!n.voidElement,N=u&&"object"===he()(y)&&y.dummy&&!j,w="object"===he()(e)&&null!==e&&Object.hasOwnProperty.call(e,n.name);if("string"==typeof y)t.push(y);else if(jt(y)||v){f(y,d(y,n,o),t,s)}else if(N){var I=p(c,n.children,o);t.push(i.cloneElement(y,yt(yt({},y.props),{},{key:s}),I))}else if(Number.isNaN(parseFloat(n.name))){if(w)f(y,d(y,n,o),t,s,n.voidElement);else if(r.transSupportBasicHtmlNodes&&a.indexOf(n.name)>-1)if(n.voidElement)t.push(i.createElement(n.name,{key:"".concat(n.name,"-").concat(s)}));else{var L=p(c,n.children,o);t.push(i.createElement(n.name,{key:"".concat(n.name,"-").concat(s)},L))}else if(n.voidElement)t.push("<".concat(n.name," />"));else{var b=p(c,n.children,o);t.push("<".concat(n.name,">").concat(b,""))}}else if("object"!==he()(y)||j)1===n.children.length&&M?t.push(i.cloneElement(y,yt(yt({},y.props),{},{key:s}),M)):t.push(i.cloneElement(y,yt(yt({},y.props),{},{key:s})));else{var S=n.children[0]?M:null;S&&t.push(S)}}else if("text"===n.type){var D=r.transWrapTextNodes;D?t.push(i.createElement(D,{key:"".concat(n.name,"-").concat(s)},n.content)):t.push(n.content)}return t}),[])}return vt(p([{dummy:!0,children:e}],l,Nt(e||[]))[0])}function Lt(e){var t=e.children,n=e.count,r=e.parent,o=e.i18nKey,a=e.tOptions,u=void 0===a?{}:a,c=e.values,s=e.defaults,d=e.components,f=e.ns,p=e.i18n,g=e.t,h=l()(e,Mt),M=(0,i.useContext)(j)||{},m=M.i18n,y=M.defaultNS,N=p||m||w();if(!N)return S("You will need to pass in an i18next instance by using i18nextReactModule"),t;var I=g||N.t.bind(N)||function(e){return e},L=yt(yt({},v()),N.options&&N.options.react),b=f||I.ns||y||N.options&&N.options.defaultNS;b="string"==typeof b?[b]:b||["translation"];var D=s||wt(t,L)||L.transEmptyNodeValue||o,A=L.hashTransKey,x=o||(A?A(D):D),C=c?u.interpolation:{interpolation:yt(yt({},u.interpolation),{},{prefix:"#$?",suffix:"?$#"})},E=yt(yt(yt(yt({},u),{},{count:n},c),C),{},{defaultValue:D,ns:b}),T=It(d||t,x?I(x,E):D,N,L,E),z=void 0!==r?r:L.defaultTransParent;return z?i.createElement(z,h,T):T}var bt=function(e){var t=e.translate_text,n=e.values,r=e.components;return i.createElement(Lt,{defaults:t,values:n,components:r})}},316:function(e,t,n){"use strict";n.d(t,{RD:function(){return d},q7:function(){return p}});var r,i=n(7294),o=n(6848),a=n(9),u=(0,a.iv)(["html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}*[hidden]{display:none;}body{line-height:1;}ol,ul{list-style:none;}li{outline:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}input::-ms-clear{display:none;}"]),c=(0,a.iv)([":root{--color-black:#0e0e0e;--color-black-2:#2a2a2a;--color-black-3:#333333;--color-black-4:#182039;--color-black-5:#6e6e6e;--color-black-6:#000000;--color-black-7:#0f0d0f;--color-black-8:#151717;--color-white:#ffffff;--color-red:#ff444f;--color-red-1:#dd573a;--color-red-2:#ffe8e9;--color-red-3:#d43e47;--color-red-4:#ff4449;--color-red-5:#ff0024;--color-grey:#9b9b9b;--color-grey-1:#f4f4f4;--color-grey-2:#e8e8e8;--color-grey-3:#646464;--color-grey-4:#fafbfb;--color-grey-5:#999999;--color-grey-6:#e6e9e9;--color-grey-7:#d6dadb;--color-grey-8:#f2f3f4;--color-grey-9:#c8d6d738;--color-grey-10:#c8d6d738;--color-grey-11:#efefef;--color-grey-12:#585252;--color-grey-13:#656868;--color-grey-14:#c8d6d7;--color-grey-15:#d8d8d8;--color-grey-16:#777777;--color-grey-17:#d6d6d6;--color-grey-18:#f4f4f6;--color-grey-19:#c2c2c2;--color-grey-20:#e0e0e0;--color-grey-21:#e5e5e5;--color-grey-22:#eaeced;--color-grey-23:#fbfbfb;--color-grey-24:#eff2f5;--color-grey-25:#f9fafc;--color-grey-26:#e9eaec;--color-grey-27:#f8a2a8;--color-grey-28:#f3f5f8;--color-grey-29:#edeeef;--color-grey-30:#f5f7fa;--color-grey-31:#f8fafc;--color-grey-32:#dcdee0;--color-grey-33:#8e9190;--color-grey-34:#e7e7e7;--color-grey-35:#f5f7f9;--color-grey-36:#f3f3f3;--color-grey-37:#fafbfd;--color-grey-38:#d6d7d8;--color-grey-39:#f7fafb;--color-grey-40:#b3b3b3;--color-grey-41:#f8fafb;--color-grey-42:#f5f8f9;--color-green:#85acb0;--color-blue:#4c76be;--color-blue-2:#365899;--color-blue-3:#2a3052;--color-blue-4:#f1f6f7;--color-blue-5:#85abaf;--color-blue-6:#4fb5b3;--color-blue-7:#4bb4b3;--color-blue-8:#003b81;--color-blue-9:#305f8b;--color-blue-10:#dee7f2;--color-yellow:#fff2df;--color-yellow-2:#4c3c08;--color-yellow-3:#ffc71b;--color-orange:#ff6544;--color-orange-2:#ff7457;--color-orange-3:#33140e;--color-green-1:#bccdce;--color-green-2:#e2ebec;--color-green-3:#2e8836;--color-brown:#33140e;--text-size-xxs:1.2rem;--text-size-xs:1.4rem;--text-size-s:1.6rem;--text-size-sm:2rem;--text-size-m:2.4rem;--text-size-l:3.2rem;--text-size-xl:4.8rem;--text-size-xxl:6.4rem;--text-size-header-1:3.6rem;--text-size-header-2:2.8rem;--text-size-header-3:7.2rem;--text-size-header-4:4rem;--text-size-header-5:4.8rem;}"]),s=n(6299),l=(0,a.vJ)(r||(r=(0,o.Z)(["\n ","\n ","\n\n i { font-style: italic }\n * {\n font-family: 'IBM Plex Sans', sans-serif;\n\n &, &::before, &::after {\n box-sizing: border-box;\n }\n }\n html {\n font-size: 62.5%; /* 1rem = 10px */\n box-sizing: border-box;\n\n @media "," {\n font-size: 75.5%; /* 1rem = 12px */\n }\n @media "," {\n font-size: 58%; /* 1rem = 9px */\n }\n @media "," {\n font-size: 50%; /* 1rem = 8px */\n }\n }\n body {\n font-family: 'IBM Plex Sans', sans-serif;\n margin: 0;\n padding: 0;\n background: var(--color-black);\n }\n"])),u,c,s.Z.desktopL,s.Z.laptop,s.Z.tabletL),d=i.createContext(),f=function(e){var t=e.children,n=e.pageContext,r=n.locale,o=n.pathname;return i.createElement(d.Provider,{value:{locale:r,pathname:o}},i.createElement(l,null),t)},p=function(e){var t=e.element,n=e.props;return i.createElement(f,n,t)}},2818:function(e,t,n){"use strict";n.d(t,{S:function(){return y},U:function(){return I}});var r=n(2265),i=n(7294),o=n(9),a=n(5444),u=n(9869),c=n(258),s=n(5262),l=n.n(s),d=n(316),f=n(476),p=n(4845),g=n(8802),h=["external"],M=["aria_label","children","mounted","has_no_end_slash","is_anchor","locale","to"],m=["aria_label","children","mounted","is_mail_link","locale","onClick","ref","rel","style","target","to","type"],y=(0,o.iv)(["color:var(--color-white);text-decoration:none;padding:0.5rem 1rem;transition:text-shadow 0.25s;position:relative;&::before{content:'';position:absolute;transition:width 0.25s;height:0.2rem;width:0;background-color:var(--color-red);bottom:0;}&:hover{text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);&::before{width:1.6rem;}}&.active{text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);}",""],(function(e){return e.active&&(0,o.iv)(["text-shadow:0 0 0.8px var(--color-white),0 0 0.8px var(--color-white);&::before{width:1.6rem;}"])})),j=(0,o.iv)(["",""],(function(e){return e.disabled&&"\n pointer-events: none;\n opacity: 0.32;"})),v=o.ZP.a.withConfig({displayName:"localized-link__StyledAnchor",componentId:"ym4sms-0"})(["",""],j),N=(0,o.ZP)(u.P).withConfig({displayName:"localized-link__StyledAnchorLink",componentId:"ym4sms-1"})(["",""],j),w=(0,o.ZP)(a.Link).withConfig({displayName:"localized-link__StyledGatsbyLink",componentId:"ym4sms-2"})(["",""],j),I=i.forwardRef((function(e,t){var n=e.external,o=(0,r.Z)(e,h),a=(0,i.useContext)(d.RD).locale,u=(0,i.useState)(!1),c=u[0],s=u[1];return(0,i.useEffect)((function(){s(!0)}),[]),n||"true"===n?i.createElement(T,Object.assign({mounted:c,locale:a,ref:t},o)):i.createElement(b,Object.assign({mounted:c,locale:a,ref:t},o))}));I.displayName="LocalizedLink";var L=["careers"],b=function(e){var t=e.aria_label,n=e.children,o=e.mounted,a=e.has_no_end_slash,u=e.is_anchor,c=e.locale,s=e.to,d=(0,r.Z)(e,M),f=l()[c],g=f.is_default,h=f.path,m=L.includes(s.replace(/\/$/,"")),y="/"===s,j=(0,p.UY)(h,y,s),v=g||m?s:j;return v=a?v.replace(/\/$/,""):v,u?i.createElement(N,Object.assign({title:t,to:v,disabled:!o},d)):i.createElement(w,Object.assign({"aria-label":t,to:v,disabled:!o},d),n)},S=["affiliate_sign_in","affiliate_sign_up"],D=["dbot","deriv_app","mt5","derivx"],A=["binary","smart_trader"],x=["blog","community","api","zoho"],C=["tnc/security-and-privacy.pdf"],E=["terms_and_conditions/#clients"],T=function(e){var t=e.aria_label,n=e.children,o=e.mounted,a=e.is_mail_link,u=e.locale,s=e.onClick,d=e.ref,h=e.rel,M=e.style,y=e.target,j=e.to,N=e.type,w=(0,r.Z)(e,m),I=(0,i.useContext)(g.c).is_eu_country,L=(0,i.useContext)(c.L),b=L.setModalPayload,T=L.toggleModal,z=l()[u].affiliate_lang,O=function(e,t,n,r){return D.includes(e)?(0,p.qf)(f.Dr[e],t,n):S.includes(e)?f.Dr[e]+"?lang="+r:A.includes(e)?f.Dr[e]+"/"+(0,p.j3)(t)+"/"+n+".html":x.includes(e)?""+f.Dr[e]+n:E.includes(e)?f.Dr.domain_full_url+("en"===t?"":"/"+t)+"/"+e.replace(/_/g,"-"):C.includes(e)?f.Dr.domain_full_url+"/"+e.replace(/_/g,"-"):n}(N,(0,p.mC)(u),j,z),k=I&&!a&&!S.includes(N)&&!D.includes(N)&&!x.includes(N)&&!E.includes(N)&&!C.includes(N),_=y;(E.includes(N)||C.includes(N))&&(_="__blank");return i.createElement(v,Object.assign({style:M||{cursor:"pointer"},"aria-label":t,href:k?"":O,onClick:k?function(e){k&&(e.preventDefault(),b({to:O,target:y,rel:h,ref:d,aria_label:t}),T()),"function"==typeof s&&s(e)}:null,disabled:!o,target:_,rel:h},w),n)}},8802:function(e,t,n){"use strict";n.d(t,{c:function(){return a},N:function(){return u}});var r=n(7294),i=n(4133),o=n(8475),a=r.createContext(),u=function(e){var t=e.children,n=(0,i.Z)(),u=n[0],c=n[1],s=n[2],l=(0,r.useState)(null),d=l[0],f=l[1],p=(0,r.useState)(!1),g=p[0],h=p[1],M=(0,r.useState)(null),m=M[0],y=M[1];return(0,r.useEffect)((function(){u&&(f(!!(0,o.x3)(u.clients_country)),h((0,o.yv)(u.clients_country)),m||y(u.crypto_config))}),[u]),r.createElement(a.Provider,{value:{is_eu_country:d,is_p2p_allowed_country:g,crypto_config:m,website_status:u,website_status_loading:s,setWebsiteStatus:c}},t)}},6299:function(e,t,n){"use strict";n.d(t,{d:function(){return r}});var r={mobileS:320,mobileM:375,mobileL:425,tabletS:576,bp680:680,bp749:749,tablet:768,bp769:769,tabletL:992,laptop:1024,bp1060:1060,laptopM:1200,laptopL:1440,desktopS:1680,desktop:1980},i={mobileS:"(max-width: "+r.mobileS+"px)",mobileM:"(max-width: "+r.mobileM+"px)",mobileL:"(max-width: "+r.mobileL+"px)",tabletS:"(max-width: "+r.tabletS+"px)",tablet:"(max-width: "+r.tablet+"px)",tabletL:"(max-width: "+r.tabletL+"px)",laptopS:"(min-width: "+r.tabletL+"px)",laptop:"(max-width: "+r.laptop+"px)",laptopM:"(max-width: "+r.laptopM+"px)",laptopL:"(max-width: "+r.laptopL+"px)",desktopS:"(min-width: "+r.desktopS+"px)",desktop:"(max-width: "+r.desktop+"px)",desktopL:"(min-width: "+r.desktop+"px)"};t.Z=i},1292:function(e,t,n){"use strict";n.d(t,{m:function(){return i},C:function(){return o}});var r=n(9),i=function(e){var t=e.m,n=e.mt,i=e.ml,o=e.mr,a=e.mb;return(0,r.iv)(["margin:",";margin-top:",";margin-right:",";margin-bottom:",";margin-left:",";"],t||null,n||null,o||null,a||null,i||null)},o=function(e){var t=e.p,n=e.pt,i=e.pl,o=e.pr,a=e.pb;return(0,r.iv)(["padding:",";padding-top:",";padding-bottom:",";padding-right:",";padding-left:",";"],t||null,n||null,a||null,o||null,i||null)}},2343:function(e,t,n){"use strict";n.d(t,{pU:function(){return a},C1:function(){return u}});var r=n(6705),i=n(6299),o=(0,r.Wm)({breakpoints:{start:0,mobileS:i.d.mobileS,mobileM:i.d.mobileM,mobileL:i.d.mobileL,tabletS:i.d.tabletS,bp680:i.d.bp680,bp749:i.d.bp749,tablet:i.d.tablet,bp769:i.d.bp769,tabletL:i.d.tabletL,laptop:i.d.laptop,bp1060:i.d.bp1060,laptopM:i.d.laptopM,laptopL:i.d.laptopL,desktopS:i.d.desktopS,desktop:i.d.desktop}}),a=(o.createMediaStyle(),o.Media),u=o.MediaContextProvider},9499:function(e,t,n){"use strict";n.r(t),n.d(t,{BaseContext:function(){return P},Link:function(){return H},Location:function(){return O},LocationProvider:function(){return k},Match:function(){return $},Redirect:function(){return K},Router:function(){return U},ServerLocation:function(){return _},createHistory:function(){return w},createMemorySource:function(){return I},globalHistory:function(){return b},isRedirect:function(){return J},matchPath:function(){return s},navigate:function(){return S},redirectTo:function(){return X},useLocation:function(){return ee},useMatch:function(){return re},useNavigate:function(){return te},useParams:function(){return ne}});var r=n(7294),i=n(1143),o=n.n(i),a=n(3639),u=function(e,t){return e.substr(0,t.length)===t},c=function(e,t){for(var n=void 0,r=void 0,i=t.split("?")[0],a=m(i),u=""===a[0],c=M(e),s=0,l=c.length;st.score?-1:e.index-t.index}))},m=function(e){return e.replace(/(^\/+|\/+$)/g,"").split("/")},y=function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r0})))&&n.length>0?"?"+n.join("&"):"")},j=["uri","path"],v=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},u=a.state,c=a.replace,s=void 0!==c&&c;if("number"==typeof t)e.history.go(t);else{u=v({},u,{key:Date.now()+""});try{i||s?e.history.replaceState(u,null,t):e.history.pushState(u,null,t)}catch(n){e.location[s?"replace":"assign"](t)}}r=N(e),i=!0;var l=new Promise((function(e){return o=e}));return n.forEach((function(e){return e({location:r,action:"PUSH"})})),l}}},I=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=e.indexOf("?"),n={pathname:t>-1?e.substr(0,t):e,search:t>-1?e.substr(t):""},r=0,i=[n],o=[null];return{get location(){return i[r]},addEventListener:function(e,t){},removeEventListener:function(e,t){},history:{get entries(){return i},get index(){return r},get state(){return o[r]},pushState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;r++,i.push({pathname:u,search:s.length?"?"+s:s}),o.push(e)},replaceState:function(e,t,n){var a=n.split("?"),u=a[0],c=a[1],s=void 0===c?"":c;i[r]={pathname:u,search:s},o[r]=e},go:function(e){var t=r+e;t<0||t>o.length-1||(r=t)}}}},L=!("undefined"==typeof window||!window.document||!window.document.createElement),b=w(L?window:I()),S=b.navigate,D=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function x(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function C(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function E(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var T=function(e,t){var n=(0,r.createContext)(t);return n.displayName=e,n},z=T("Location"),O=function(e){var t=e.children;return r.createElement(z.Consumer,null,(function(e){return e?t(e):r.createElement(k,null,t)}))},k=function(e){function t(){var n,r;x(this,t);for(var i=arguments.length,o=Array(i),a=0;a-1?(o=t.substring(0,i),a=t.substring(i)):o=t,r.createElement(z.Provider,{value:{location:{pathname:o,search:a,hash:""},navigate:function(){throw new Error("You can't call navigate on the server.")}}},n)},P=T("Base",{baseuri:"/",basepath:"/",navigate:b.navigate}),U=function(e){return r.createElement(P.Consumer,null,(function(t){return r.createElement(O,null,(function(n){return r.createElement(Y,D({},t,n,e))}))}))},Y=function(e){function t(){return x(this,t),C(this,e.apply(this,arguments))}return E(t,e),t.prototype.render=function(){var e=this.props,t=e.location,n=e.navigate,i=e.basepath,o=e.primary,a=e.children,u=(e.baseuri,e.component),s=void 0===u?"div":u,d=A(e,["location","navigate","basepath","primary","children","baseuri","component"]),f=r.Children.toArray(a).reduce((function(e,t){var n=oe(i)(t);return e.concat(n)}),[]),p=t.pathname,g=c(f,p);if(g){var h=g.params,M=g.uri,m=g.route,y=g.route.value;i=m.default?i:m.path.replace(/\*$/,"");var j=D({},h,{uri:M,location:t,navigate:function(e,t){return n(l(e,M),t)}}),v=r.cloneElement(y,j,y.props.children?r.createElement(U,{location:t,primary:o},y.props.children):void 0),N=o?R:s,w=o?D({uri:M,location:t,component:s},d):d;return r.createElement(P.Provider,{value:{baseuri:M,basepath:i,navigate:j.navigate}},r.createElement(N,w,v))}return null},t}(r.PureComponent);Y.defaultProps={primary:!0};var Z=T("Focus"),R=function(e){var t=e.uri,n=e.location,i=e.component,o=A(e,["uri","location","component"]);return r.createElement(Z.Consumer,null,(function(e){return r.createElement(G,D({},o,{component:i,requestFocus:e,uri:t,location:n}))}))},Q=!0,W=0,G=function(e){function t(){var n,r;x(this,t);for(var i=arguments.length,o=Array(i),a=0;ae.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(i[n]=e[n]);return i}n.d(t,{Z:function(){return r}})},8992:function(e,t,n){"use strict";function r(e,t){return(r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}n.d(t,{Z:function(){return r}})},6848:function(e,t,n){"use strict";function r(e,t){return t||(t=e.slice(0)),e.raw=t,e}n.d(t,{Z:function(){return r}})},2385:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o},e.exports.default=e.exports,e.exports.__esModule=!0},3246:function(e){e.exports=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i},e.exports.default=e.exports,e.exports.__esModule=!0},4675:function(e){function t(n,r){return e.exports=t=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.default=e.exports,e.exports.__esModule=!0,t(n,r)}e.exports=t,e.exports.default=e.exports,e.exports.__esModule=!0},4191:function(e,t,n){var r=n(968),i=n(799),o=n(4866),a=n(3417);e.exports=function(e,t){return r(e)||i(e,t)||o(e,t)||a()},e.exports.default=e.exports,e.exports.__esModule=!0},5576:function(e){function t(n){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?(e.exports=t=function(e){return typeof e},e.exports.default=e.exports,e.exports.__esModule=!0):(e.exports=t=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.default=e.exports,e.exports.__esModule=!0),t(n)}e.exports=t,e.exports.default=e.exports,e.exports.__esModule=!0},4866:function(e,t,n){var r=n(6322);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},1143:function(e){"use strict";e.exports=function(e,t,n,r,i,o,a,u){if(!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var s=[n,r,i,o,a,u],l=0;(c=new Error(t.replace(/%s/g,(function(){return s[l++]})))).name="Invariant Violation"}throw c.framesToPop=1,c}}}},function(e){"use strict";e.O(0,[774,532,240],(function(){return t=2871,e(e.s=t);var t}));e.O()}]); -//# sourceMappingURL=app-8de1cf6a0556988c22c3.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/chunk-map.json b/src/root_files/_common/move-to-deriv/chunk-map.json index eb00faff43989..899f71597fe29 100644 --- a/src/root_files/_common/move-to-deriv/chunk-map.json +++ b/src/root_files/_common/move-to-deriv/chunk-map.json @@ -1 +1 @@ -{"polyfill":["/polyfill-7e0b734c0e1a2da648d6.js"],"app":["/app-8de1cf6a0556988c22c3.js"],"component---src-pages-404-js":["/component---src-pages-404-js-eb089a2e5bf7e308370d.js"],"component---src-pages-index-js":["/component---src-pages-index-js-d6f2a947660a6f1b3cfd.js"]} \ No newline at end of file +{"polyfill":["/polyfill-7e0b734c0e1a2da648d6.js"],"app":["/app-4bfdd98a49fbdb2259a9.js"],"component---src-pages-404-js":["/component---src-pages-404-js-49357921b7f4e3ddc0c6.js"],"component---src-pages-index-js":["/component---src-pages-index-js-2d52965d5626708130c2.js"]} \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/commons-e9038af46337fa9cc60e.js b/src/root_files/_common/move-to-deriv/commons-e9038af46337fa9cc60e.js new file mode 100644 index 0000000000000..0110bf1799652 --- /dev/null +++ b/src/root_files/_common/move-to-deriv/commons-e9038af46337fa9cc60e.js @@ -0,0 +1,3 @@ +/*! For license information please see commons-e9038af46337fa9cc60e.js.LICENSE.txt */ +(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[351],{9829:function(e,t){"use strict";var i="function"==typeof Symbol&&Symbol.for,n=i?Symbol.for("react.element"):60103,r=i?Symbol.for("react.portal"):60106,a=i?Symbol.for("react.fragment"):60107,o=i?Symbol.for("react.strict_mode"):60108,M=i?Symbol.for("react.profiler"):60114,c=i?Symbol.for("react.provider"):60109,u=i?Symbol.for("react.context"):60110,l=i?Symbol.for("react.async_mode"):60111,g=i?Symbol.for("react.concurrent_mode"):60111,N=i?Symbol.for("react.forward_ref"):60112,m=i?Symbol.for("react.suspense"):60113,j=i?Symbol.for("react.suspense_list"):60120,s=i?Symbol.for("react.memo"):60115,d=i?Symbol.for("react.lazy"):60116,L=i?Symbol.for("react.block"):60121,y=i?Symbol.for("react.fundamental"):60117,I=i?Symbol.for("react.responder"):60118,D=i?Symbol.for("react.scope"):60119;function p(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case l:case g:case a:case M:case o:case m:return e;default:switch(e=e&&e.$$typeof){case u:case N:case d:case s:case c:return e;default:return t}}case r:return t}}}function x(e){return p(e)===g}t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===g||e===M||e===o||e===m||e===j||"object"==typeof e&&null!==e&&(e.$$typeof===d||e.$$typeof===s||e.$$typeof===c||e.$$typeof===u||e.$$typeof===N||e.$$typeof===y||e.$$typeof===I||e.$$typeof===D||e.$$typeof===L)}},8026:function(e,t,i){"use strict";e.exports=i(9829)},5417:function(e,t,i){var n=i(111),r=i(3157),a=i(5112)("species");e.exports=function(e,t){var i;return r(e)&&("function"!=typeof(i=e.constructor)||i!==Array&&!r(i.prototype)?n(i)&&null===(i=i[a])&&(i=void 0):i=void 0),new(void 0===i?Array:i)(0===t?0:t)}},6790:function(e,t,i){"use strict";var n=i(3157),r=i(7466),a=i(9974),o=function(e,t,i,M,c,u,l,g){for(var N,m=c,j=0,s=!!l&&a(l,g,3);j0&&n(N))m=o(e,t,N,r(N.length),m,u-1)-1;else{if(m>=9007199254740991)throw TypeError("Exceed the acceptable array length");e[m]=N}m++}j++}return m};e.exports=o},9974:function(e,t,i){var n=i(3099);e.exports=function(e,t,i){if(n(e),void 0===t)return e;switch(i){case 0:return function(){return e.call(t)};case 1:return function(i){return e.call(t,i)};case 2:return function(i,n){return e.call(t,i,n)};case 3:return function(i,n,r){return e.call(t,i,n,r)}}return function(){return e.apply(t,arguments)}}},3157:function(e,t,i){var n=i(4326);e.exports=Array.isArray||function(e){return"Array"==n(e)}},4944:function(e,t,i){"use strict";var n=i(2109),r=i(6790),a=i(7908),o=i(7466),M=i(9958),c=i(5417);n({target:"Array",proto:!0},{flat:function(){var e=arguments.length?arguments[0]:void 0,t=a(this),i=o(t.length),n=c(t,0);return n.length=r(n,t,t,i,0,void 0===e?1:M(e)),n}})},3324:function(e,t,i){"use strict";i.d(t,{zx:function(){return u},Qj:function(){return N}});i(4944);var n=i(9),r=i(5697),a=i.n(r),o=i(1292),M=(0,n.iv)(["border-radius:6px;padding:10px 16px;font-size:14px;transition:all 0.25s;font-weight:bold;height:fit-content;width:",";"," &:focus,&:active{outline:none;transform:scale(0.95);}"," ",""],(function(e){return e.width}),(function(e){return e.primary?(0,n.iv)(["border:2px solid var(--color-red);color:var(--color-red);background:transparent;&:hover{background-color:var(--color-red);color:var(--color-white);}"]):e.secondary?(0,n.iv)(["border:2px solid var(--color-red);color:var(--color-white);background:var(--color-red);&:hover{background-color:var(--color-red-3);border-color:var(--color-red-3);}"]):e.tertiary?(0,n.iv)(["border:2px solid var(--color-grey-5);color:var(--color-black);background:transparent;&:hover{background-color:rgba(0,0,0,0.08);}"]):e.flat?(0,n.iv)(["background:transparent;color:var(--color-red);border:none;&:hover{background:rgba(255,68,79,0.08);}"]):e.social?(0,n.iv)(["background:",";border:",";svg{width:2.2rem;height:2.2rem;}&:hover{background:var(--color-grey-4);}"],(function(e){return"google"===e.provider?"var(--color-white)":"facebook"===e.provider?"var(--color-blue)":void 0}),(function(e){return"google"===e.provider?"1px solid var(--color-grey-5);":"none"})):e.white?(0,n.iv)(["border:2px solid var(--color-white);color:var(--color-white);background:transparent;&:hover{background:var(--color-white);color:var(--color-red);}"]):void 0}),o.C,o.m),c=n.ZP.button.withConfig({displayName:"button__Button",componentId:"sc-16zlxpb-0"})([""," &:hover{cursor:pointer;}",""],M,(function(e){return e.disabled?(0,n.iv)(["pointer-events:none;opacity:0.32;"]):e.loading?(0,n.iv)(["width:8rem;height:8rem;border:10 px solid var(--color-black);border-radius:50%;animation:sweep 1s linear alternate infinite,rotates 0.8s linear infinite;"]):void 0}));c.propTypes={children:a().oneOfType([a().arrayOf(a().node),a().node]).isRequired,onClick:a().func,type:a().string};var u=c,l=i(4443),g=i(6299),N=(0,n.ZP)(l.UE).withConfig({displayName:"link-button__LinkButton",componentId:"sc-1889ev8-0"})([""," text-align:center;text-decoration:none;padding:",";@media ","{font-size:14px;padding:",";}"],M,(function(e){return e.hero&&"17px 24px"}),g.Z.tabletL,(function(e){return e.hero&&"10px 16px"})),m=(i(7294),i(2466));n.ZP.div.withConfig({displayName:"input__RelativeWrapper",componentId:"sc-1hfhi87-0"})(["position:relative;"]),n.ZP.div.withConfig({displayName:"input__InputWrapper",componentId:"sc-1hfhi87-1"})(["width:100%;border:",";border-radius:4px;@media ","{height:5rem;}&:hover{border-color:var(--color-grey-5);& > label{color:var(--color-",");}}&:focus-within{border-color:",";}"," "," ",""],(function(e){return e.border||"1px solid var(--color-grey-2)"}),g.Z.tabletL,(function(e){return e.labelHoverColor||"black-3"}),(function(e){return e.focusBorder||"var(--color-green)"}),(function(e){return!e.error&&(0,n.iv)(["border-color:var(--color-grey-7);"])}),(function(e){return e.error&&(0,n.iv)(["border-color:var(--color-red-1) !important;& > label{color:var(--color-red-1) !important;}"])}),(function(e){return e.disabled&&(0,n.iv)(["opacity:0.32;pointer-events:none;"])})),n.ZP.img.withConfig({displayName:"input__StyledError",componentId:"sc-1hfhi87-2"})(["position:absolute;right:0.8rem;top:1.2rem;height:1.6rem;width:1.6rem;cursor:pointer;@media ","{right:2rem;top:1.6rem;}"],g.Z.tablet),n.ZP.input.withConfig({displayName:"input__StyledInput",componentId:"sc-1hfhi87-3"})(["background:var(--color-",");color:var(--color-",");font-size:var(--text-size-s);padding:1rem 1rem 1rem 0.8rem;height:",";width:100%;display:block;border:none;border-radius:4px;@media ","{height:100%;& ~ label{font-size:1.75rem;top:1.5rem;}}@media ","{font-size:14px;& ~ label{font-size:1.5rem;top:1.75rem;}}&::placeholder{opacity:",";transition:opacity 0.25s;padding-left:0.3rem;}&:focus{outline:none;& ~ label{transform:translate(-0.6rem,-2rem) scale(0.7);color:var(--color-",");background-color:var(--color-",");@media ","{transform:translate(-0.6rem,-20px) scale(0.7);}}&::placeholder{opacity:1;color:var(--color-grey-5);","}}&:valid{","}"],(function(e){return e.inputBackground||"none"}),(function(e){return e.inputColor||"black"}),(function(e){return e.height||"40px"}),g.Z.tabletL,g.Z.mobileL,(function(e){return e.showLabel?0:1}),(function(e){return e.labelFocusColor||"green"}),(function(e){return e.background||"grey-1"}),g.Z.mobileL,(function(e){return e.label&&(0,n.iv)(["font-size:14px;"])}),(function(e){return e.value&&(0,n.iv)(["& ~ label{transform:translate(-0.6rem,-2rem) scale(0.7);color:var(--color-black-3);@media ","{top:9px;}background-color:var(--color-",");}"],g.Z.tabletL,(function(e){return e.background||"grey-1"}))})),(0,n.ZP)(m.xv).withConfig({displayName:"input__ErrorMessages",componentId:"sc-1hfhi87-4"})(["padding-left:0.8rem;font-size:1.2rem;min-height:16px;"]),n.ZP.label.withConfig({displayName:"input__StyledLabel",componentId:"sc-1hfhi87-5"})(["color:var(--color-",");font-size:var(--text-size-xs);position:absolute;pointer-events:none;left:0.8rem;top:1.4rem;transition:0.25s ease transform;transform:translateZ(0);padding:0 0.4rem;background:none;"],(function(e){return e.labelColor||"grey"}))},6659:function(e,t,i){"use strict";i.d(t,{qc:function(){return c},Ko:function(){return u},Fe:function(){return l},SJ:function(){return g},B3:function(){return N},Dx:function(){return m},rU:function(){return j},gM:function(){return s},zO:function(){return d},rq:function(){return L},iz:function(){return I},Mk:function(){return D},qy:function(){return p},f0:function(){return x},OT:function(){return T},$q:function(){return z},xO:function(){return E},L9:function(){return h},ec:function(){return C},VZ:function(){return w},ps:function(){return A}});var n=i(9),r=i(7513),a=i(2466),o=i(4443),M=i(6299),c=n.ZP.footer.withConfig({displayName:"style__DefaultFooter",componentId:"y1eemc-0"})(["background-color:var(--color-grey-25);width:100%;margin:0 auto;margin-bottom:",";padding-bottom:1.6rem;@media (max-width:1090px){margin-bottom:",";}@media (max-width:991px){margin-bottom:",";}@media (max-width:826px){margin-bottom:",";}@media (max-width:710px){margin-bottom:",";}@media (max-width:538px){margin-bottom:",";}","{@media ","{width:100%;}}@media ","{padding-bottom:6rem;}"],(function(e){return e.is_eu_country&&"7.3rem"}),(function(e){return e.is_eu_country&&"9rem"}),(function(e){return e.is_eu_country&&"11rem"}),(function(e){return e.is_eu_country&&"12.2rem"}),(function(e){return e.is_eu_country&&"10.6rem"}),(function(e){return e.is_eu_country&&"13.8rem"}),r.W2,M.Z.tabletL,M.Z.mobileL),u=(0,n.ZP)(r.ax).withConfig({displayName:"style__FooterGrid",componentId:"y1eemc-1"})(["width:100%;grid-template-columns:2fr;grid-template-areas:'logo logo' 'links links' 'disclaimer disclaimer' 'copyright social' 'copyright eulogowrapper';@media ","{grid-template-columns:1fr;grid-template-areas:'logo' 'links' 'social' 'disclaimer' 'eulogowrapper' 'copyright';}"],M.Z.tabletL),l=n.ZP.div.withConfig({displayName:"style__DerivLogoWrapper",componentId:"y1eemc-2"})(["display:flex;justify-content:space-between;grid-area:logo;background:var(--color-grey-25);padding:4rem 0 2rem 0;@media ","{margin-left:2rem;}"],M.Z.tabletL),g=n.ZP.div.withConfig({displayName:"style__LinksWrapper",componentId:"y1eemc-3"})(["grid-area:links;background:var(--color-grey-25);padding:0.8rem 0 2.4rem 0;border-bottom:1px solid var(--color-grey-26);border-top:2px solid var(--color-grey-26);@media ","{padding:0;}"],M.Z.tabletL),N=(0,n.ZP)(r.kC).withConfig({displayName:"style__LinksCol",componentId:"y1eemc-4"})(["flex-direction:column;width:fit-content;min-width:100px;margin-right:40px;:last-child{margin-right:0;}@media (min-width:993px) and (max-width:1050px){min-width:0;max-width:100px;}"]),m=(0,n.ZP)(a.xv).withConfig({displayName:"style__Title",componentId:"y1eemc-5"})(["color:var(--color-black-6);font-weight:bold;"]),j=(0,n.ZP)(a.Fg).withConfig({displayName:"style__Link",componentId:"y1eemc-6"})(["color:var(--color-black-3);font-size:var(--text-size-xs);line-height:1.5;"]),s=(n.ZP.div.withConfig({displayName:"style__AcademyWrapper",componentId:"y1eemc-7"})(["color:var(--color-red-1);font-size:var(--text-size-xs);line-height:1.5;margin-top:10px;"]),n.ZP.div.withConfig({displayName:"style__LinkWrapper",componentId:"y1eemc-8"})(["margin-top:",";@media ","{","{font-size:var(--text-size-xs);}","{font-size:var(--text-size-xs);}}"],(function(e){return"true"==e.first_child?"0.8rem":"1.6rem"}),M.Z.laptopM,m,j)),d=n.ZP.div.withConfig({displayName:"style__DisclaimerWrapper",componentId:"y1eemc-9"})(["grid-area:disclaimer;background:var(--color-grey-25);"]),L=(0,n.ZP)(a.xv).withConfig({displayName:"style__DisclaimerParagraph",componentId:"y1eemc-10"})(["font-size:var(--text-size-xs);margin-top:",";@media ","{width:90%;margin:2rem auto 0;font-size:var(--text-size-sm);}"],(function(e){return e.no_margin?"0":"2rem"}),M.Z.tabletL),y=(0,n.iv)(["font-weight:bold;color:var(--color-black-3);font-size:var(--text-size-xs);text-decoration:none;:hover{text-decoration:underline;}@media ","{font-size:var(--text-size-sm);}"],M.Z.tabletL),I=n.ZP.a.withConfig({displayName:"style__StaticAsset",componentId:"y1eemc-11"})(["",""],y),D=(0,n.ZP)(o.UE).withConfig({displayName:"style__StaticAssetLink",componentId:"y1eemc-12"})(["",""],y),p=n.ZP.div.withConfig({displayName:"style__RiskWarning",componentId:"y1eemc-13"})(["background-color:var(--color-grey-28);border-left:4px solid var(--color-grey-27);padding:1.6rem;margin-top:2rem;@media ","{border-top:2px solid var(--color-grey-27);border-left:none;width:90%;margin:4rem auto 0;padding:1rem;p{padding:0;width:100%;}}"],M.Z.tabletL),x=(0,n.ZP)(a.Fg).withConfig({displayName:"style__BoldLink",componentId:"y1eemc-14"})(["font-weight:bold;color:var(--color-black-3);font-size:var(--text-size-xs);@media ","{font-size:var(--text-size-sm);}"],M.Z.tabletL),T=(0,n.ZP)(r.kC).withConfig({displayName:"style__CopyrightWrapper",componentId:"y1eemc-15"})(["grid-area:copyright;background:var(--color-grey-25);justify-content:flex-start;align-items:center;p{font-size:var(--text-size-xs);line-height:1.14;}@media ","{width:90%;margin:0 auto;padding:2rem 0;p{font-size:1.75rem;line-height:1.5;}}"],M.Z.tabletL),z=(0,n.ZP)(r.kC).withConfig({displayName:"style__EuLogoWrapper",componentId:"y1eemc-16"})(["grid-area:eulogowrapper;"]),E=n.ZP.div.withConfig({displayName:"style__SocialWrapper",componentId:"y1eemc-17"})(["grid-area:social;background:var(--color-grey-25);margin:1.6rem 0;img{margin-left:1.6rem;}@media ","{display:flex;justify-content:center;margin:3rem 0 1rem;a:first-child{img{margin-left:0;}}}"],M.Z.tabletL),h=n.ZP.img.withConfig({displayName:"style__StyledGamstop",componentId:"y1eemc-18"})(["margin-right:2.4rem;"]),C=n.ZP.div.withConfig({displayName:"style__StyledCoatArms",componentId:"y1eemc-19"})(["margin-right:2.4rem;"]),w=n.ZP.img.withConfig({displayName:"style__StyledMgaLogo",componentId:"y1eemc-20"})(["margin-right:2.4rem;"]),A=n.ZP.img.withConfig({displayName:"style__StyledLogo",componentId:"y1eemc-21"})(["width:18.2rem;"])},4508:function(e,t,i){"use strict";i.d(t,{Z:function(){return a}});var n=i(7294),r=i(6659);var a=function(){return n.createElement(r.Fe,null,n.createElement(r.ps,{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDcgMjUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9Ii0zODguMTMiIHkxPSIxMzIxLjQ0IiB4Mj0iLTM4OC4xMyIgeTI9IjEzMjAuNDQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMjYuOTEgMCAwIC0yNSAxMDQ1Ny44NCAzMzAzNikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZjY1NDQiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZjQ0NDkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PGcgZGF0YS1uYW1lPSIyLS1sb2dvZ3JhbSI+PGcgZGF0YS1uYW1lPSJsb2dvL2xvZ29ncmFtIj48cGF0aCBkPSJNNS44NiAwbDkuNzMgMTIuNUwwIDI1aDE1Ljc0YTkuODMgOS44MyAwIDAwOS42MS03LjUzbDEuMzEtNS41N2E5LjYgOS42IDAgMDAtMS45LTguMjNBOS45IDkuOSAwIDAwMTcuMDUgMHoiIGZpbGw9InVybCgjYSkiLz48cGF0aCBkYXRhLW5hbWU9IlBhdGgiIGZpbGw9IiNiNTFhMzEiIGQ9Ik0xNS41OCAxMi41M0w4Ljc0IDI1SDBsMTUuNTgtMTIuNDd6Ii8+PC9nPjwvZz48cGF0aCBkPSJNMTI5LjU3IDFsMy4xNSAxNi43OEwxNDEuNTYgMUgxNDdsLTEzLjM0IDI0aC00LjQ2TDEyNCAxek00OC4zNSAxQzU1Ljc1IDEgNjAgNi4xOCA1OC44MSAxMi45M1YxM2ExNC43MSAxNC43MSAwIDAxLTE0LjYyIDEySDM1bDQuMTUtMjR6bTUxLjg1IDBjMyAwIDUuMjYuODYgNi41NiAyLjQ0YTYuNTcgNi41NyAwIDAxMS4wOSA1LjQ4di4wN2E5LjMyIDkuMzIgMCAwMS02LjQ0IDcuNDRsNC4zMyA4LjU3aC02LjE3bC01Ljc1LTEyLjM1aDRjMi41NyAwIDQuMjgtMS4zOCA0LjY0LTMuMzl2LS4wN2MuNC0yLjI2LTEtMy40Mi0zLjU0LTMuNDJoLTUuMjVMOTAuMjggMjVIODVsNC4yMy0yNHpNMTE4IDFsLTQgMjRoLTVsNC0yNHpNODQgMWwtLjgyIDQuN0g3MC41MmwtLjg1IDQuODdoOC4xOGwtLjg1IDQuN2gtOC4xNGwtLjg4IDVoMTIuODRMODAgMjVINjJsNC4xNy0yNHpNNDcuNzcgNmgtNC4xNkw0MSAyMGg0LjE3YTguNTMgOC41MyAwIDAwOC42OC02LjkzVjEzYy43OC00LjExLTEuNjYtNy02LjA4LTd6Ii8+PC9nPjwvZz48L3N2Zz4=",alt:"logo",width:"147",height:"25"}))}},4216:function(e,t,i){"use strict";i.d(t,{v:function(){return Hi},Z:function(){return Fi}});var n=i(7294),r=i(9756);function a(){return(a=Object.assign?Object.assign.bind():function(e){for(var t=1;t a{pointer-events:",";cursor:",";}@media (max-width:991px){display:none;}"],(function(e){return e.mounted?"1":"0"}),(function(e){return e.move||e.has_scrolled?"all 0.25s":"none"}),(function(e){return e.hide_signup_login?0:e.move&&!e.hide_signup_login?(e.button_ref.current&&e.mounted&&(e.button_ref.current.style.opacity=1),0):e.button_ref.current&&e.mounted?(e.button_ref.current.style.opacity=0,e.button_ref.current.offsetWidth+2+"px"):"300px"}),(function(e){return e.move?"visible":"none"}),(function(e){return e.move?"pointer":"default"})),et=h.ZP.div.withConfig({displayName:"nav__NavGetTrading",componentId:"nysfdc-13"})(["display:inline-flex;text-align:right;align-items:center;justify-content:center;padding:0;"]),tt=h.ZP.li.withConfig({displayName:"nav__NavLink",componentId:"nysfdc-14"})(["list-style-type:none;display:flex;align-items:center;text-align:center;margin-right:2.4rem;&:last-child{margin-right:0;}@media ","{margin-right:1rem;}",""],Y.Z.laptopM,(function(e){if(e.margin)return"margin: 0 4rem;"})),it=(0,h.ZP)(S.UE).withConfig({displayName:"nav__StyledLink",componentId:"nysfdc-15"})(["",""],we.S),nt=h.ZP.span.withConfig({displayName:"nav__StyledButton",componentId:"nysfdc-16"})([""," cursor:pointer;user-select:none;white-space:nowrap;@media ","{padding:0.5rem 0.8rem;}"],we.S,Y.Z.laptopM),rt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__SignupButton",componentId:"nysfdc-17"})(["margin-left:1.6rem;opacity:0;"]),at=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LinkSignupButton",componentId:"nysfdc-18"})(["opacity:0;margin-left:1.6rem;margin-right:10px;"]),ot=h.ZP.img.withConfig({displayName:"nav__HamburgerMenu",componentId:"nysfdc-19"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;}"]),Mt=h.ZP.img.withConfig({displayName:"nav__HamburgerMenuPartners",componentId:"nysfdc-20"})(["cursor:pointer;display:none;@media (max-width:991px){display:block;cursor:pointer;}"]),ct=h.ZP.img.withConfig({displayName:"nav__CloseMenu",componentId:"nysfdc-21"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;}"]),ut=h.ZP.img.withConfig({displayName:"nav__CloseMenuPartners",componentId:"nysfdc-22"})(["cursor:pointer;display:none;@media ","{display:block;cursor:pointer;}"],Y.Z.tabletL),lt=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLinkMobileMain",componentId:"nysfdc-23"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;margin-left:2rem;}"]),gt=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLinkMobile",componentId:"nysfdc-24"})(["cursor:pointer;display:none;@media ","{display:block;cursor:pointer;margin-left:2rem;}"],Y.Z.tabletL),Nt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__NowrapButton",componentId:"nysfdc-25"})(["white-space:nowrap;"]),mt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__MobileButton",componentId:"nysfdc-26"})(["display:none;font-size:14px;margin-left:",";@media (max-width:1060px){display:block;}@media ","{font-size:12px;}"],(function(e){var t=e.margin_left;return null!=t?t:"1.6rem"}),Y.Z.mobileL),jt=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LinkMobileLogin",componentId:"nysfdc-27"})(["display:none;font-size:14px;@media ","{display:block;margin-left:auto;}@media ","{font-size:var(--text-size-xxs);margin-left:10px;}"],Y.Z.tabletL,Y.Z.mobileL),st=function(e,t){window.scrollY>400?e():t()},dt=h.ZP.div.withConfig({displayName:"nav__MobileRightMain",componentId:"nysfdc-28"})(["margin-left:auto;display:none;align-items:center;@media (max-width:1060px){display:flex;}"]),Lt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoDescription",componentId:"nysfdc-29"})(["@media (max-width:525px){display:none;}"]),yt=function(){(0,C.dg)(),ke.redirectToLogin()},It=function(){var e=(0,C.dg)(),t=(0,C.qf)(ve.MN+"/"+e,(0,C.G3)());window.location.href=t},Dt=function(e){var t=e.is_ppc,i=e.is_ppc_redirect,r=e.is_logged_in,a=e.hide_signup_login,o=e.academy_logo,M=e.no_language,c=(0,f.zi)(),u=c[0],l=c[1],g=c[2];return n.createElement(Fe,{width:"95%"},u?n.createElement(ct,{src:_e,alt:"close menu",onClick:g,width:"16px"}):n.createElement(ot,{src:be,alt:"hamburger",onClick:l,width:"16px"}),n.createElement(lt,{to:"/","aria-label":(0,S.NC)("Home")},n.createElement(A.kC,null,n.createElement("img",{src:Ye,alt:"logo only",width:"115px"}),n.createElement(Lt,{ai:"center"},n.createElement(Be,null),o?n.createElement("img",{src:Ze,alt:"Academy"}):n.createElement("img",{src:Qe,alt:"logo combined shape"})))),n.createElement(dt,null,!M&&n.createElement(S.Ww,{short_name:"true",is_high_nav:!0}),!a&&n.createElement(n.Fragment,null,r?n.createElement(mt,{margin_left:"0.8rem",onClick:It,primary:!0},n.createElement("span",null,(0,S.NC)("Get Trading"))):n.createElement(mt,{id:"dm-mobile-nav-login-button",margin_left:"0.8rem",onClick:yt,primary:!0},n.createElement("span",null,(0,S.NC)("Log in"))))),n.createElement(f.o3,{is_canvas_menu_open:u,closeOffCanvasMenu:g,is_ppc:t,is_ppc_redirect:i}))},pt=function(e){var t=e.base,i=e.is_ppc,r=e.is_ppc_redirect,a=e.is_logged_in,o=e.hide_signup_login,M=e.academy_logo,c=e.no_language,u=(0,k.useStaticQuery)("2998272888"),l=(0,n.useRef)(null),g=(0,n.useRef)(null),N=(0,n.useState)(!1),m=N[0],j=N[1],s=(0,n.useState)(!1),d=s[0],L=s[1],y=(0,n.useState)(""),I=y[0],D=y[1],p=(0,n.useState)(null),x=p[0],T=p[1],z=(0,n.useState)(null),E=z[0],h=z[1],C=Gt(),w=C[0],A=C[1],O=C[2],v=Ce("main"),b=r?"/landing/signup/":"/signup/",_=(0,n.useCallback)((function(){L(!0),st(A,O)})),Y=function(e){return e===I||e===v},Q=function(e,t){D(e),t&&T(t)},Z=function(){return!c&&n.createElement(S.Ww,{short_name:"true",is_high_nav:!0})};return(0,Ee.O)(g,(function(){return D("")}),E),(0,n.useEffect)((function(){return j(!0),document.addEventListener("scroll",_,{passive:!0}),function(){document.removeEventListener("scroll",_)}}),[]),n.createElement(n.Fragment,null,I&&n.createElement(ze,{key:I,current_ref:x,parent:I,is_ppc:i,is_ppc_redirect:r,setActiveDropdown:function(e){return h(e)}}),n.createElement(Fe,null,n.createElement(Xe,null,n.createElement(Re,{to:r?"/landing":t||"/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:u.deriv,alt:(0,S.NC)("Deriv"),max_width:"16.4rem",width:"100%",height:"auto"})),n.createElement(Be,null),M?n.createElement("img",{src:Ze,alt:"Academy"}):n.createElement("img",{src:Qe,alt:"logo combined shape"})),n.createElement($e,{ref:g},n.createElement(tt,{onClick:function(e){return Q("trade",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Trade"),active:Y("trade")},(0,S.NC)("Trade"))),n.createElement(tt,{onClick:function(e){return Q("markets",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Markets"),active:Y("markets")},(0,S.NC)("Markets"))),n.createElement(tt,{onClick:function(e){return Q("about",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("About us"),active:Y("about")},(0,S.NC)("About us"))),n.createElement(tt,{onClick:function(e){return Q("resources",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Resources"),active:Y("resources")},(0,S.NC)("Resources")))),a?n.createElement(et,null,n.createElement(Z,null),n.createElement(Nt,{onClick:It,primary:!0},n.createElement("span",null,(0,S.NC)("Get Trading")))):n.createElement(Ke,{move:w,hide_signup_login:o,button_ref:l,mounted:m,has_scrolled:d},n.createElement(Z,null),!o&&n.createElement(Nt,{id:"dm-nav-login-button",onClick:yt,primary:!0},n.createElement("span",null,(0,S.NC)("Log in"))),n.createElement(S.UE,{id:"dm-signup",to:b},!o&&n.createElement(rt,{id:"dm-nav-signup",ref:l,secondary:"true"},n.createElement("span",null,(0,S.NC)("Create free demo account")))))))},xt=function(e){var t=e.base,i=e.is_ppc_redirect,r=e.is_ppc,a=e.hide_signup_login,o=e.academy_logo,M=e.no_language,c=(0,n.useState)(!1),u=c[0],l=c[1];return(0,n.useEffect)((function(){l((0,C.jl)());var e=setInterval((function(){l((0,C.jl)())}),800);return function(){return clearInterval(e)}}),[]),n.createElement(n.Fragment,null,n.createElement(Pe,null,n.createElement(He,null,n.createElement(A.di.Desktop,{max_width:"bp1060"},n.createElement(pt,{no_language:M,academy_logo:o,base:t,is_ppc:r,is_ppc_redirect:i,is_logged_in:u,hide_signup_login:a})),n.createElement(A.di.Mobile,{min_width:"bp1060"},n.createElement(Dt,{no_language:M,academy_logo:o,is_ppc:r,is_logged_in:u,hide_signup_login:a})))),n.createElement(Hi,null))},Tt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__Auto",componentId:"nysfdc-30"})(["@media ","{width:100%;}"],Y.Z.mobileM),zt=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LeftButton",componentId:"nysfdc-31"})(["margin-left:0.8rem;@media ","{padding:1rem;}"],Y.Z.mobileL),Et=(0,h.ZP)(Re).withConfig({displayName:"nav__StyledLogo",componentId:"nysfdc-32"})(["max-width:31rem;@media ","{display:none;}@media (max-width:340px){& svg{width:11rem;}}"],Y.Z.mobileL),ht=h.ZP.div.withConfig({displayName:"nav__NavInterimContainer",componentId:"nysfdc-33"})(["position:relative;"]),Ct=function(e){var t=e.interim_type;return n.createElement(We,null,n.createElement(ht,null,n.createElement(A.W2,{jc:"space-between",p:"2.4rem 0"},n.createElement(A.kC,{ai:"center",jc:"flex-start"},n.createElement(A.di.Desktop,null,n.createElement(Et,{to:"/interim/"+t,"aria-label":(0,S.NC)("Home")},n.createElement(A.kC,{ai:"center"},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkwIiBoZWlnaHQ9IjI3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCB4MT0iNTAlIiB5MT0iMCUiIHgyPSI1MCUiIHkyPSIxMDAlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNjU0NCIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjQ0NDkiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNNi4xMyAwdi4wM0wxNi4zMTQgMTMuNSAwIDI2Ljk3VjI3aDE2LjQ3NGM0LjgwNyAwIDguOTc5LTMuMzczIDEwLjA2LTguMTM2bDEuMzYzLTYuMDA4YTEwLjYzIDEwLjYzIDAgMDAtMS45OC04Ljg5NEExMC4yNjEgMTAuMjYxIDAgMDAxNy44NCAwSDYuMTN6IiBmaWxsPSJ1cmwoI2EpIi8+PHBhdGggZmlsbD0iI0I1MUEzMSIgZD0iTTE2LjMwOCAxMy41MjdMOS4xNDQgMjdIMHoiLz48cGF0aCBkPSJNMTM5Ljg4MyAwbDMuNjIgMTguODhMMTUzLjY3IDBoNi4yNTRMMTQ0LjU4IDI3aC01LjEyM2wtNS45NzctMjdoNi40MDJ6TTQ5LjkzMSAwYzguMjc5IDAgMTMuMDEgNS43ODIgMTEuNzAyIDEzLjMyN2wtLjAxMy4wNzZDNjAuMzEgMjAuOTUgNTMuNTcgMjYuODEgNDUuMjgyIDI2LjgxSDM1TDM5LjY0NyAwaDEwLjI4NHptNTcuMjIgMGMzLjM1MiAwIDUuNzg0Ljk1OSA3LjIwMyAyLjcyIDEuMjEgMS40OTIgMS42NCAzLjYgMS4xOTcgNi4xMjdsLS4wMTMuMDc3Yy0uNzQyIDQuMzI2LTMuNTEgNy4wNDYtNy4wODIgOC4zMTFsNC43NzggOS41NzRoLTYuNzhsLTYuMzEtMTMuNzkzaDQuMzY0YzIuODI2IDAgNC43MTItMS41NDEgNS4xMDMtMy43OTFsLjAxNC0uMDc2Yy40MzgtMi41MjMtMS4wNy0zLjgyNS0zLjg5NS0zLjgyNWgtNS43NTRsLTMuNzI3IDIxLjQ4NWgtNS44TDk1LjA5NiAwaDEyLjA1NHptMjEuNjIgMGwtNC42NDcgMjYuODA5aC01LjgwMkwxMjIuOTcyIDBoNS44em0tMzkuNCAwbC0uOTEyIDUuMjQ3SDc0LjMzNmwtLjk0NSA1LjQzOGg5LjExOGwtLjkxIDUuMjQ3aC05LjExN2wtLjk3NiA1LjYyNWgxNC4zMTNsLS45MSA1LjI0N0g2NC44MzRMNjkuNDgxIDBoMTkuODl6TTQ5LjAwOCA1LjMyNGgtNC40ODFsLTIuODA0IDE2LjE2MWg0LjQ4NGM0Ljc0NCAwIDguNTEtMy4yNTUgOS4zMzQtOC4wMDVsLjAxMy0uMDc3Yy44MjQtNC43NDctMS43OTktOC4wOC02LjU0Ni04LjA4eiIgZmlsbD0iI0ZGRiIvPjwvZz48cGF0aCBzdHJva2U9IiNGRkYiIGQ9Ik0xNzkuNSAwdjI3Ii8+PC9nPjwvc3ZnPg==",alt:"logo",width:"190",height:"27"}),n.createElement("img",{src:Qe,alt:"logo combined shape desktop",width:"120",height:"17"})))),n.createElement(A.di.Mobile,null,n.createElement(gt,{to:"/interim/"+t,"aria-label":(0,S.NC)("Home")},n.createElement(A.kC,null,n.createElement("img",{src:Ye,alt:"logo only 2",width:"115",height:"27"}),n.createElement(Lt,{ai:"center"},n.createElement(Be,null),n.createElement("img",{src:Qe,alt:"logo combined shape mobile",width:"120",height:"17"})))))),n.createElement(Tt,{jc:"flex-end",ai:"center"},n.createElement(S.Ww,{short_name:"true"}),n.createElement(zt,{secondary:!0,to:"/"},(0,S.NC)("Explore Deriv.com"))))),n.createElement(Hi,null))},wt=function(e){var t=e.is_ppc;return n.createElement(n.Fragment,null,n.createElement(qe,null,n.createElement(Re,{mw:"31rem",to:"/","aria-label":(0,S.NC)("Home")},n.createElement(A.kC,{ai:"center"},n.createElement("img",{src:Ye,alt:"logo only nav static",width:"160px",height:"27px"}),n.createElement(Be,null),n.createElement("img",{src:Qe,alt:"logo combined shape nav static",width:"120",height:"17"})))),n.createElement(Hi,{is_ppc:t}))},At=h.ZP.div.withConfig({displayName:"nav__DerivHomeWrapper",componentId:"nysfdc-34"})(["background-color:var(--color-black);border-bottom:1px solid rgba(255,255,255,0.1);height:3rem;"]),ft=(0,h.ZP)(S.UE).withConfig({displayName:"nav__HomeLink",componentId:"nysfdc-35"})(["margin-right:3.2rem;text-decoration:none;"]),St=(0,h.ZP)(A.W2).withConfig({displayName:"nav__HomeContainer",componentId:"nysfdc-36"})(["height:100%;"]),Ot=h.ZP.ul.withConfig({displayName:"nav__StyledNavCenter",componentId:"nysfdc-37"})(["text-align:center;padding:0;display:flex;justify-content:center;line-height:1.2;margin-left:13.3rem;white-space:nowrap;@media (max-width:1300px){font-size:12px;}@media (max-width:991px){display:none;}"]),vt=(0,h.ZP)(Ke).withConfig({displayName:"nav__StyledNavRight",componentId:"nysfdc-38"})(["margin-left:auto;transform:translateX( "," );> a{pointer-events:visible;cursor:pointer;}> a:last-child{pointer-events:",";cursor:",";opacity:",";}"],(function(e){return e.move?(e.button_ref.current&&e.mounted&&(e.button_ref.current.style.opacity=1),"50px"):e.button_ref.current&&e.mounted?(e.button_ref.current.style.opacity=0,e.button_ref.current.offsetWidth+50+"px"):"225px"}),(function(e){return e.move?"visible":"none"}),(function(e){return e.move?"pointer":"default"}),(function(e){return e.move?1:0})),kt=(0,h.ZP)(Fe).withConfig({displayName:"nav__StyledNavWrapper",componentId:"nysfdc-39"})(["justify-content:flex-start;@media ","{justify-content:",";}","{margin:0 2.4rem;}"],Y.Z.tabletL,(function(e){return e.no_login_signup?"flex-start":"space-between"}),gt),bt=(0,h.ZP)(A.di.Mobile).withConfig({displayName:"nav__Mobile",componentId:"nysfdc-40"})(["width:100%;"]),_t=h.ZP.img.withConfig({displayName:"nav__ResLogo",componentId:"nysfdc-41"})(["width:115px;@media ","{width:98px;}@media (max-width:336px){width:82px;}"],Y.Z.mobileM),Yt=(0,h.ZP)(Re).withConfig({displayName:"nav__NavLogoLink",componentId:"nysfdc-42"})(["@media (max-width:1300px){& svg,.gatsby-image-wrapper{width:25rem;}}@media (max-width:1150px){& svg,.gatsby-image-wrapper{width:23rem;}}@media (max-width:1105px){& svg,.gatsby-image-wrapper{width:23rem;}}"]),Qt=(0,h.ZP)(A.W2).withConfig({displayName:"nav__LSContainer",componentId:"nysfdc-43"})(["text-align:right;margin-left:200px;"]),Zt=(0,h.ZP)(A.di.Desktop).withConfig({displayName:"nav__DesktopLS",componentId:"nysfdc-44"})(["z-index:2;"]),Ut=(0,h.ZP)(A.W2).withConfig({displayName:"nav__StyledContainer",componentId:"nysfdc-45"})(["margin:0;"]),Pt=function(e){var t=e.no_login_signup,i=(0,n.useRef)(null),r=(0,n.useRef)(null),a=Gt(),o=a[0],M=a[1],c=a[2],u=(0,n.useState)(!1),l=u[0],g=u[1],N=(0,n.useState)(!1),m=N[0],j=N[1],s=Ce("partners"),d=function(){j(!0),st(M,c)};(0,n.useEffect)((function(){if(g(!0),!t)return document.addEventListener("scroll",d,{passive:!0}),function(){document.removeEventListener("scroll",d)}}),[]);var L=(0,f.zi)(),y=L[0],I=L[1],D=L[2];return n.createElement(n.Fragment,null,n.createElement(Ge,{ref:i},n.createElement(At,null,n.createElement(St,{justify:"space-between"},n.createElement(Ut,{justify:"flex-start"},n.createElement(ft,{to:"/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("Deriv website"))),n.createElement(ft,{to:"/story/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("About us"))),n.createElement(ft,{to:"/contact_us/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("Contact us")))),n.createElement(Zt,null,n.createElement(Qt,null,n.createElement(S.Ww,{short_name:"true"}))))),n.createElement(Je,null,n.createElement(kt,{no_login_signup:!0},n.createElement(Ve,null,n.createElement(Yt,{to:"/partners/","aria-label":(0,S.NC)("Partners")},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyODQiIGhlaWdodD0iMjciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0icHJlZml4X19hIiB4MT0iNTAlIiB4Mj0iNTAlIiB5MT0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY2NTQ0Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY0NDQ5Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0xOTIgMjEuNzUyVjVoNy4yYzEuNTUyIDAgMi43NTIuNDU2IDMuNiAxLjM2OC44NDguOTEyIDEuMjcyIDIuMTM2IDEuMjcyIDMuNjcycy0uNDI0IDIuNzYtMS4yNzIgMy42NzJjLS44NDguOTEyLTIuMDQ4IDEuMzY4LTMuNiAxLjM2OGgtNC40ODh2Ni42NzJIMTkyem0yLjcxMi05LjA0OGg0LjMyYy42ODggMCAxLjIyNC0uMTggMS42MDgtLjU0LjM4NC0uMzYuNTc2LS44NzYuNTc2LTEuNTQ4VjkuNDY0YzAtLjY3Mi0uMTkyLTEuMTg4LS41NzYtMS41NDgtLjM4NC0uMzYtLjkyLS41NC0xLjYwOC0uNTRoLTQuMzJ2NS4zMjh6TTIxNiAyMS43NTJjLS42ODggMC0xLjIxNi0uMTk2LTEuNTg0LS41ODgtLjM2OC0uMzkyLS41OTItLjg5Mi0uNjcyLTEuNWgtLjEyYy0uMjQuNzg0LS42OCAxLjM3Ni0xLjMyIDEuNzc2LS42NC40LTEuNDE2LjYtMi4zMjguNi0xLjI5NiAwLTIuMjkyLS4zMzYtMi45ODgtMS4wMDgtLjY5Ni0uNjcyLTEuMDQ0LTEuNTc2LTEuMDQ0LTIuNzEyIDAtMS4yNDguNDUyLTIuMTg0IDEuMzU2LTIuODA4LjkwNC0uNjI0IDIuMjI4LS45MzYgMy45NzItLjkzNmgyLjI1NlYxMy41MmMwLS43NjgtLjIwOC0xLjM2LS42MjQtMS43NzYtLjQxNi0uNDE2LTEuMDY0LS42MjQtMS45NDQtLjYyNC0uNzM2IDAtMS4zMzYuMTYtMS44LjQ4LS40NjQuMzItLjg1Ni43MjgtMS4xNzYgMS4yMjRsLTEuNTYtMS40MTZjLjQxNi0uNzA0IDEtMS4yODQgMS43NTItMS43NC43NTItLjQ1NiAxLjczNi0uNjg0IDIuOTUyLS42ODQgMS42MTYgMCAyLjg1Ni4zNzYgMy43MiAxLjEyOC44NjQuNzUyIDEuMjk2IDEuODMyIDEuMjk2IDMuMjR2Ni4yNjRoMS4zMnYyLjEzNkgyMTZ6bS01LjI4LTEuNzA0Yy44MTYgMCAxLjQ4OC0uMTggMi4wMTYtLjU0LjUyOC0uMzYuNzkyLS44NDQuNzkyLTEuNDUydi0xLjhoLTIuMjA4Yy0xLjgwOCAwLTIuNzEyLjU2LTIuNzEyIDEuNjh2LjQzMmMwIC41Ni4xODguOTguNTY0IDEuMjYuMzc2LjI4Ljg5Mi40MiAxLjU0OC40MnptOS4zMTIgMS43MDRWOS4yNzJoMi42MTZ2Mi40aC4xMmMuMTc2LS42NC41NDQtMS4yIDEuMTA0LTEuNjhzMS4zMzYtLjcyIDIuMzI4LS43MmguNjk2djIuNTJoLTEuMDMyYy0xLjA0IDAtMS44MzYuMTY4LTIuMzg4LjUwNC0uNTUyLjMzNi0uODI4LjgzMi0uODI4IDEuNDg4djcuOTY4aC0yLjYxNnptMTIuNjQ4IDBjLS45MTIgMC0xLjYtLjIzNi0yLjA2NC0uNzA4LS40NjQtLjQ3Mi0uNjk2LTEuMTQtLjY5Ni0yLjAwNHYtNy42MzJoLTEuOTQ0VjkuMjcyaDEuMDU2Yy40MzIgMCAuNzMyLS4wOTYuOS0uMjg4LjE2OC0uMTkyLjI1Mi0uNTA0LjI1Mi0uOTM2VjUuODY0aDIuMzUydjMuNDA4aDIuNjE2djIuMTM2aC0yLjYxNnY4LjIwOGgyLjQyNHYyLjEzNmgtMi4yOHptNS4zMDQgMFY5LjI3MmgyLjYxNnYyLjA2NGguMTJhNC4xMTQgNC4xMTQgMCAwMTEuMjM2LTEuNjhjLjU1Mi0uNDQ4IDEuMzA4LS42NzIgMi4yNjgtLjY3MiAxLjI4IDAgMi4yNzYuNDIgMi45ODggMS4yNi43MTIuODQgMS4wNjggMi4wMzYgMS4wNjggMy41ODh2Ny45MmgtMi42MTZ2LTcuNTg0YzAtMS45NTItLjc4NC0yLjkyOC0yLjM1Mi0yLjkyOC0uMzM2IDAtLjY2OC4wNDQtLjk5Ni4xMzItLjMyOC4wODgtLjYyLjIyLS44NzYuMzk2LS4yNTYuMTc2LS40Ni40LS42MTIuNjcyYTEuOTM2IDEuOTM2IDAgMDAtLjIyOC45NnY4LjM1MmgtMi42MTZ6bTE4LjgxNi4yODhjLS44OTYgMC0xLjY5Ni0uMTUyLTIuNC0uNDU2YTQuOTc3IDQuOTc3IDAgMDEtMS44LTEuMzA4Yy0uNDk2LS41NjgtLjg3Ni0xLjI1Ni0xLjE0LTIuMDY0LS4yNjQtLjgwOC0uMzk2LTEuNzA4LS4zOTYtMi43IDAtLjk5Mi4xMzItMS44OTIuMzk2LTIuNy4yNjQtLjgwOC42NDQtMS40OTYgMS4xNC0yLjA2NGE0Ljk3NyA0Ljk3NyAwIDAxMS44LTEuMzA4Yy43MDQtLjMwNCAxLjUwNC0uNDU2IDIuNC0uNDU2LjkxMiAwIDEuNzE2LjE2IDIuNDEyLjQ4LjY5Ni4zMiAxLjI3Ni43NjQgMS43NCAxLjMzMmE1Ljc5MSA1Ljc5MSAwIDAxMS4wNDQgMS45OGMuMjMyLjc1Mi4zNDggMS41Ni4zNDggMi40MjR2Ljk4NGgtOC41Njh2LjQwOGMwIC45Ni4yODQgMS43NDguODUyIDIuMzY0LjU2OC42MTYgMS4zOC45MjQgMi40MzYuOTI0Ljc2OCAwIDEuNDE2LS4xNjggMS45NDQtLjUwNGE0LjM5MyA0LjM5MyAwIDAwMS4zNDQtMS4zNjhsMS41MzYgMS41MTJjLS40NjQuNzY4LTEuMTM2IDEuMzgtMi4wMTYgMS44MzYtLjg4LjQ1Ni0xLjkwNC42ODQtMy4wNzIuNjg0em0wLTExLjAxNmMtLjQ0OCAwLS44Ni4wOC0xLjIzNi4yNC0uMzc2LjE2LS42OTYuMzg0LS45Ni42NzJhMy4wMjEgMy4wMjEgMCAwMC0uNjEyIDEuMDMyYy0uMTQ0LjQtLjIxNi44NC0uMjE2IDEuMzJ2LjE2OGg1LjgwOHYtLjI0YzAtLjk2LS4yNDgtMS43MzItLjc0NC0yLjMxNi0uNDk2LS41ODQtMS4xNzYtLjg3Ni0yLjA0LS44NzZ6bTguNDQ4IDEwLjcyOFY5LjI3MmgyLjYxNnYyLjRoLjEyYy4xNzYtLjY0LjU0NC0xLjIgMS4xMDQtMS42OHMxLjMzNi0uNzIgMi4zMjgtLjcyaC42OTZ2Mi41MmgtMS4wMzJjLTEuMDQgMC0xLjgzNi4xNjgtMi4zODguNTA0LS41NTIuMzM2LS44MjguODMyLS44MjggMS40ODh2Ny45NjhoLTIuNjE2em0xMy4xNTIuMjg4Yy0xLjE4NCAwLTIuMTc2LS4yMDgtMi45NzYtLjYyNGE2LjUyOCA2LjUyOCAwIDAxLTIuMDg4LTEuNzI4bDEuNjgtMS41MzZjLjQ2NC41Ni45OC45OTYgMS41NDggMS4zMDguNTY4LjMxMiAxLjIyOC40NjggMS45OC40NjguNzY4IDAgMS4zNC0uMTQ4IDEuNzE2LS40NDQuMzc2LS4yOTYuNTY0LS43MDguNTY0LTEuMjM2IDAtLjQtLjEzMi0uNzQtLjM5Ni0xLjAycy0uNzI0LS40Ni0xLjM4LS41NGwtMS4xNTItLjE0NGMtMS4yOC0uMTYtMi4yODQtLjUzMi0zLjAxMi0xLjExNi0uNzI4LS41ODQtMS4wOTItMS40NTItMS4wOTItMi42MDQgMC0uNjA4LjExMi0xLjE0OC4zMzYtMS42MmEzLjM4IDMuMzggMCAwMS45NDgtMS4yYy40MDgtLjMyOC44OTYtLjU4IDEuNDY0LS43NTZhNi4zNDUgNi4zNDUgMCAwMTEuODg0LS4yNjRjMS4xMiAwIDIuMDM2LjE3NiAyLjc0OC41MjhhNi4zMSA2LjMxIDAgMDExLjkwOCAxLjQ2NGwtMS42MDggMS41MzZjLS4zMi0uMzg0LS43NC0uNzE2LTEuMjYtLjk5NnMtMS4xMTYtLjQyLTEuNzg4LS40MmMtLjcyIDAtMS4yNTIuMTQ0LTEuNTk2LjQzMmExLjQgMS40IDAgMDAtLjUxNiAxLjEyOGMwIC40OC4xNTIuODQuNDU2IDEuMDguMzA0LjI0Ljc5Mi40MTYgMS40NjQuNTI4bDEuMTUyLjE0NGMxLjM3Ni4yMDggMi4zOC42MTIgMy4wMTIgMS4yMTIuNjMyLjYuOTQ4IDEuNDA0Ljk0OCAyLjQxMiAwIC42MDgtLjExNiAxLjE1Ni0uMzQ4IDEuNjQ0YTMuNjEgMy42MSAwIDAxLS45OTYgMS4yNiA0LjY2MiA0LjY2MiAwIDAxLTEuNTYuODE2Yy0uNjA4LjE5Mi0xLjI4OC4yODgtMi4wNC4yODh6Ii8+PGcgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBmaWxsPSJ1cmwoI3ByZWZpeF9fYSkiIGQ9Ik02LjEzIDB2LjAzTDE2LjMxNCAxMy41IDAgMjYuOTdWMjdoMTYuNDc0YzQuODA3IDAgOC45NzktMy4zNzMgMTAuMDYtOC4xMzZsMS4zNjMtNi4wMDhhMTAuNjMgMTAuNjMgMCAwMC0xLjk4LTguODk0QTEwLjI2IDEwLjI2IDAgMDAxNy44NCAwSDYuMTN6Ii8+PHBhdGggZmlsbD0iI0I1MUEzMSIgZD0iTTE2LjMwOCAxMy41MjdMOS4xNDQgMjdIMHoiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTM5Ljg4MyAwbDMuNjIgMTguODhMMTUzLjY3IDBoNi4yNTRMMTQ0LjU4IDI3aC01LjEyM0wxMzMuNDggMGg2LjQwMnpNNDkuOTMxIDBjOC4yNzkgMCAxMy4wMSA1Ljc4MiAxMS43MDIgMTMuMzI3bC0uMDEzLjA3NkM2MC4zMSAyMC45NSA1My41NyAyNi44MSA0NS4yODIgMjYuODFIMzVMMzkuNjQ3IDBoMTAuMjg0em01Ny4yMiAwYzMuMzUyIDAgNS43ODQuOTU5IDcuMjAzIDIuNzIgMS4yMSAxLjQ5MiAxLjY0IDMuNiAxLjE5NyA2LjEyN2wtLjAxMy4wNzdjLS43NDIgNC4zMjYtMy41MSA3LjA0Ni03LjA4MiA4LjMxMWw0Ljc3OCA5LjU3NGgtNi43OGwtNi4zMS0xMy43OTNoNC4zNjRjMi44MjYgMCA0LjcxMi0xLjU0MSA1LjEwMy0zLjc5MWwuMDE0LS4wNzZjLjQzOC0yLjUyMy0xLjA3LTMuODI1LTMuODk1LTMuODI1aC01Ljc1NGwtMy43MjcgMjEuNDg1aC01LjhMOTUuMDk2IDBoMTIuMDU0em0yMS42MiAwbC00LjY0NyAyNi44MDloLTUuODAyTDEyMi45NzIgMGg1Ljh6bS0zOS40IDBsLS45MTIgNS4yNDdINzQuMzM2bC0uOTQ1IDUuNDM4aDkuMTE4bC0uOTEgNS4yNDdoLTkuMTE3bC0uOTc2IDUuNjI1aDE0LjMxM2wtLjkxIDUuMjQ3SDY0LjgzNEw2OS40ODEgMGgxOS44OXpNNDkuMDA4IDUuMzI0aC00LjQ4MWwtMi44MDQgMTYuMTYxaDQuNDg0YzQuNzQ0IDAgOC41MS0zLjI1NSA5LjMzNC04LjAwNWwuMDEzLS4wNzdjLjgyNC00Ljc0Ny0xLjc5OS04LjA4LTYuNTQ2LTguMDh6Ii8+PC9nPjxwYXRoIHN0cm9rZT0iI0ZGRiIgZD0iTTE3NiAwdjI3Ii8+PC9nPjwvc3ZnPg==",alt:"logo partner"}))),n.createElement(Ot,null,n.createElement(tt,null,n.createElement(it,{active:"affiliate"===s,activeClassName:"active",to:"/partners/affiliate-ib/","aria-label":(0,S.NC)("Affiliates and IBs")},(0,S.NC)("Affiliates and IBs"))),n.createElement(tt,null,n.createElement(it,{active:"payment"===s,activeClassName:"active",to:"/partners/payment-agent/","aria-label":(0,S.NC)("Payment agents")},(0,S.NC)("Payment agents"))),n.createElement(tt,null,n.createElement(it,{active:"api"===s,activeClassName:"active",to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer","aria-label":(0,S.NC)("API")},(0,S.NC)("API")))),!t&&n.createElement(vt,{move:o,button_ref:r,mounted:l,has_scrolled:m},n.createElement(he.Qj,{to:ve.YH,external:"true",type:"affiliate_sign_in",target:"_blank",primary:!0,style:{width:"16rem"}},n.createElement("span",null,(0,S.NC)("Affiliate & IB log in"))),n.createElement(at,{id:"dm-nav-affiliate-signup",to:ve.z8,external:"true",type:"affiliate_sign_up",target:"_blank",ref:r,secondary:"true",style:{width:"18rem"}},n.createElement("span",null,(0,S.NC)("Affiliate & IB sign up")))),y?n.createElement(ut,{src:_e,alt:"close menu 2",onClick:D,width:"16px"}):n.createElement(Mt,{src:be,alt:"hamburger menu2",onClick:I,width:"16px"}),n.createElement(bt,null,n.createElement(A.kC,{ai:"center"},n.createElement(gt,{to:"/partners/","aria-label":(0,S.NC)("Home")},n.createElement(_t,{src:Ye,alt:"reslogo"})),n.createElement(A.kC,{ml:"auto",ai:"center",width:"auto"},n.createElement(S.Ww,{short_name:"true",is_high_nav:!0})),!t&&n.createElement(jt,{to:ve.YH,type:"affiliate_sign_in",external:"true",target:"_blank",primary:!0},n.createElement(A.di.Desktop,null,n.createElement("span",null,(0,S.NC)("Affiliate & IB log in"))),n.createElement(A.di.Mobile,null,n.createElement("span",null,(0,S.NC)("Log in")))))),n.createElement(f.jT,{is_canvas_menu_open:y,closeOffCanvasMenu:D})))),n.createElement(Hi,null))};function Gt(e){void 0===e&&(e=!1);var t=(0,n.useState)(e),i=t[0],r=t[1];return[i,function(){return r(!i)},function(){return r(!1)}]}(0,h.ZP)(he.Qj).withConfig({displayName:"nav__ButtonWrapper",componentId:"sc-145loah-0"})(["min-width:102px;width:auto;height:auto;white-space:nowrap;@media ","{min-width:76px;font-size:12px;padding:8px 3px;}"],Y.Z.tablet);var Wt=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"sc-145loah-1"})(["background-color:var(--color-black);width:100%;position:fixed;z-index:3;top:0;padding:16px 1%;@media ","{padding:16px;}@media ","{padding:16px 0;}"],Y.Z.tablet,Y.Z.mobileL),Rt=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"sc-145loah-2"})(["justify-content:space-between;"]),Bt=h.ZP.div.withConfig({displayName:"nav__LogoWrapper",componentId:"sc-145loah-3"})(["display:inline-block;"]),Ht=(0,h.ZP)(S.UE).withConfig({displayName:"nav__StyledLogoLink",componentId:"sc-145loah-4"})(["@media ","{img{width:168px;height:16px;}}"],Y.Z.tablet);var Jt=function(){return n.createElement(Wt,null,n.createElement(Rt,null,n.createElement(Bt,null,n.createElement(Ht,{to:"/","aria-label":"Home"},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjg2IiBoZWlnaHQ9IjI3IiBmaWxsPSJub25lIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik02LjEzIDB2LjAyOUwxNi4zMTQgMTMuNSAwIDI2Ljk3MVYyN2gxNi40NzRjNC44MDggMCA4Ljk3OS0zLjM3MyAxMC4wNi04LjEzNmwxLjM2My02LjAwN2ExMC42MyAxMC42MyAwIDAgMC0xLjk4LTguODk0QzIzLjk1OSAxLjQ1OSAyMC45ODUgMCAxNy44MzkgMEg2LjEzeiIgZmlsbD0idXJsKCNBKSIvPjxwYXRoIGQ9Ik0xNi4zMDggMTMuNTI2TDkuMTQ0IDI2Ljk5OUgwbDE2LjMwOC0xMy40NzN6IiBmaWxsPSIjYjUxYTMxIi8+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTEzOS44ODMgMGwzLjYyIDE4Ljg4TDE1My42NyAwaDYuMjU0bC0xNS4zNDMgMjdoLTUuMTIzbC01Ljk3Ny0yN2g2LjQwMnpNNDkuOTMxIDBjOC4yNzkgMCAxMy4wMSA1Ljc4MyAxMS43MDIgMTMuMzI3bC0uMDEzLjA3NmMtMS4zMSA3LjU0Ny04LjA1MSAxMy40MDYtMTYuMzM5IDEzLjQwNkgzNUwzOS42NDcgMGgxMC4yODR6bTU3LjIxOSAwYzMuMzUzIDAgNS43ODUuOTU5IDcuMjA0IDIuNzIgMS4yMSAxLjQ5MiAxLjY0IDMuNiAxLjE5NyA2LjEyN2wtLjAxMy4wNzdjLS43NDIgNC4zMjctMy41MSA3LjA0Ny03LjA4MiA4LjMxMWw0Ljc3OCA5LjU3NGgtNi43ODFsLTYuMzA5LTEzLjc5M2g0LjM2NGMyLjgyNiAwIDQuNzEyLTEuNTQxIDUuMTAzLTMuNzkxbC4wMTQtLjA3NmMuNDM4LTIuNTIyLTEuMDY5LTMuODI1LTMuODk1LTMuODI1aC01Ljc1NGwtMy43MjcgMjEuNDg1aC01LjhMOTUuMDk2IDBoMTIuMDU0em0yMS42MjIgMGwtNC42NDggMjYuODA5aC01LjgwMkwxMjIuOTcxIDBoNS44MDF6TTg5LjM3MSAwbC0uOTEyIDUuMjQ3SDc0LjMzNmwtLjk0NSA1LjQzOGg5LjExOGwtLjkxIDUuMjQ3aC05LjExOGwtLjk3NiA1LjYyNWgxNC4zMTRsLS45MSA1LjI0N0g2NC44MzRMNjkuNDgxIDBoMTkuODl6TTQ5LjAwOCA1LjMyNGgtNC40ODFsLTIuODA0IDE2LjE2Mmg0LjQ4M2M0Ljc0NSAwIDguNTExLTMuMjU2IDkuMzM0LTguMDA2bC4wMTMtLjA3NmMuODIzLTQuNzQ3LTEuNzk5LTguMDgtNi41NDYtOC4wOHpNMTY4IDBoMXYyN2gtMXptMTAuODQ4IDUuMjQ4aDguMTM2YzEuMzkyIDAgMi40NzIuMzkyIDMuMjQgMS4xNzYuNzg0Ljc4NCAxLjE3NiAxLjgyNCAxLjE3NiAzLjEyIDAgLjY0LS4wODggMS4xODQtLjI2NCAxLjYzMi0uMTYuNDQ4LS4zODQuODE2LS42NzIgMS4xMDRhMi41OCAyLjU4IDAgMCAxLS45ODQuNjQ4Yy0uMzY4LjEyOC0uNzY4LjItMS4yLjIxNnYuMTQ0YTMuOTQgMy45NCAwIDAgMSAxLjI0OC4yMTYgMy40NyAzLjQ3IDAgMCAxIDEuMjI0LjY5NmMuMzY4LjMwNC42NzIuNzA0LjkxMiAxLjIuMjU2LjQ5Ni4zODQgMS4xMDQuMzg0IDEuODI0IDAgLjY1Ni0uMTEyIDEuMjgtLjMzNiAxLjg3Mi0uMjA4LjU3Ni0uNTA0IDEuMDgtLjg4OCAxLjUxMmE0LjM1IDQuMzUgMCAwIDEtMS4zNjggMS4wMzJjLS41MjguMjQtMS4xMDQuMzYtMS43MjguMzZoLTguODhWNS4yNDh6bTMuNjQ4IDEzLjY4aDQuMmMuNDggMCAuODU2LS4xMjggMS4xMjgtLjM4NC4yODgtLjI3Mi40MzItLjY0OC40MzItMS4xMjhWMTYuNmMwLS40OC0uMTQ0LS44NDgtLjQzMi0xLjEwNC0uMjcyLS4yNzItLjY0OC0uNDA4LTEuMTI4LS40MDhoLTQuMnYzLjg0em0wLTYuODE2aDMuNjI0Yy40OCAwIC44NTYtLjEzNiAxLjEyOC0uNDA4cy40MDgtLjY0OC40MDgtMS4xMjh2LS43MmMwLS40OC0uMTM2LS44NTYtLjQwOC0xLjEyOHMtLjY0OC0uNDA4LTEuMTI4LS40MDhoLTMuNjI0djMuNzkyeiIvPjx1c2UgeGxpbms6aHJlZj0iI0IiLz48cGF0aCBkPSJNMjEzLjUyMiAyMi4yODhjLTEuNDcyIDAtMi43Mi0uMjQ4LTMuNzQ0LS43NDQtMS4wMjQtLjUxMi0xLjg5Ni0xLjE2OC0yLjYxNi0xLjk2OGwyLjQtMi40MjRjMS4xMzYgMS4yOCAyLjUzNiAxLjkyIDQuMiAxLjkyLjg5NiAwIDEuNTYtLjE4NCAxLjk5Mi0uNTUycy42NDgtLjg1Ni42NDgtMS40NjRjMC0uNDY0LS4xMjgtLjg0OC0uMzg0LTEuMTUyLS4yNTYtLjMyLS43NzYtLjUzNi0xLjU2LS42NDhsLTEuNjU2LS4yMTZjLTEuNzc2LS4yMjQtMy4wOC0uNzYtMy45MTItMS42MDgtLjgxNi0uODQ4LTEuMjI0LTEuOTc2LTEuMjI0LTMuMzg0IDAtLjc1Mi4xNDQtMS40NC40MzItMi4wNjRhNC42MyA0LjYzIDAgMCAxIDEuMjI0LTEuNjA4Yy41NDQtLjQ0OCAxLjItLjc5MiAxLjk2OC0xLjAzMi43ODQtLjI1NiAxLjY3Mi0uMzg0IDIuNjY0LS4zODQgMS4yNjQgMCAyLjM3Ni4yIDMuMzM2LjZzMS43ODQuOTg0IDIuNDcyIDEuNzUybC0yLjQyNCAyLjQ0OGMtLjQtLjQ2NC0uODg4LS44NC0xLjQ2NC0xLjEyOC0uNTYtLjMwNC0xLjI3Mi0uNDU2LTIuMTM2LS40NTYtLjgxNiAwLTEuNDI0LjE0NC0xLjgyNC40MzJzLS42LjY4OC0uNiAxLjJjMCAuNTc2LjE1Mi45OTIuNDU2IDEuMjQ4LjMyLjI1Ni44MzIuNDQgMS41MzYuNTUybDEuNjU2LjI2NGMxLjcyOC4yNzIgMy4wMDguODA4IDMuODQgMS42MDguODMyLjc4NCAxLjI0OCAxLjkwNCAxLjI0OCAzLjM2IDAgLjgtLjE0NCAxLjUzNi0uNDMyIDIuMjA4cy0uNzEyIDEuMjQ4LTEuMjcyIDEuNzI4Yy0uNTQ0LjQ4LTEuMjI0Ljg1Ni0yLjA0IDEuMTI4LS44MTYuMjU2LTEuNzQ0LjM4NC0yLjc4NC4zODR6bTE3LjA4OC0yLjRoLS4xMmMtLjA5Ni4zMzYtLjI0OC42NTYtLjQ1Ni45Ni0uMjA4LjI4OC0uNDY0LjU0NC0uNzY4Ljc2OC0uMjg4LjIwOC0uNjI0LjM2OC0xLjAwOC40OGEzLjQ4IDMuNDggMCAwIDEtMS4xNTIuMTkyYy0xLjYgMC0yLjgwOC0uNTYtMy42MjQtMS42OC0uODE2LTEuMTM2LTEuMjI0LTIuNzc2LTEuMjI0LTQuOTJzLjQwOC0zLjc3NiAxLjIyNC00Ljg5NiAyLjAyNC0xLjY4IDMuNjI0LTEuNjhjLjgxNiAwIDEuNTM2LjIyNCAyLjE2LjY3Mi42NC40NDggMS4wNDggMS4wMjQgMS4yMjQgMS43MjhoLjEyVjkuNGgzLjU1MnYxNy40aC0zLjU1MnYtNi45MTJ6bS0yLjMyOC0uNDhjLjY3MiAwIDEuMjI0LS4xNiAxLjY1Ni0uNDguNDQ4LS4zMzYuNjcyLS43OTIuNjcyLTEuMzY4di0zLjcyYzAtLjU3Ni0uMjI0LTEuMDI0LS42NzItMS4zNDQtLjQzMi0uMzM2LS45ODQtLjUwNC0xLjY1Ni0uNTA0YTIuMiAyLjIgMCAwIDAtMS42OC43MmMtLjQzMi40NjQtLjY0OCAxLjA5Ni0uNjQ4IDEuODk2djIuMTg0YzAgLjguMjE2IDEuNDQuNjQ4IDEuOTIuNDQ4LjQ2NCAxLjAwOC42OTYgMS42OC42OTZ6bTE2LjY0Mi40OGgtLjEyYTQuMDUgNC4wNSAwIDAgMS0uNDU2LjkxMmMtLjE3Ni4yODgtLjQwOC41NDQtLjY5Ni43NjhzLS42MzIuNC0xLjAzMi41MjhjLS4zODQuMTI4LS44MzIuMTkyLTEuMzQ0LjE5Mi0xLjI5NiAwLTIuMjgtLjQyNC0yLjk1Mi0xLjI3Mi0uNjU2LS44NjQtLjk4NC0yLjA5Ni0uOTg0LTMuNjk2VjkuNGgzLjU1MnY3LjYwOGMwIC43NjguMTM2IDEuMzYuNDA4IDEuNzc2cy43MzYuNjI0IDEuMzkyLjYyNGEyLjg4IDIuODggMCAwIDAgLjgxNi0uMTJjLjI3Mi0uMDguNTEyLS4xOTIuNzItLjMzNi4yMDgtLjE2LjM3Ni0uMzUyLjUwNC0uNTc2YTEuNTcgMS41NyAwIDAgMCAuMTkyLS43OTJWOS40aDMuNTUyVjIyaC0zLjU1MnYtMi4xMTJ6TTI2MS4wOTMgMjJjLS42NCAwLTEuMTc2LS4yLTEuNjA4LS42LS40MTYtLjQtLjY4LS45MzYtLjc5Mi0xLjYwOGgtLjE0NGMtLjE5Mi44MTYtLjYxNiAxLjQ0LTEuMjcyIDEuODcyLS42NTYuNDE2LTEuNDY0LjYyNC0yLjQyNC42MjQtMS4yNjQgMC0yLjIzMi0uMzM2LTIuOTA0LTEuMDA4cy0xLjAwOC0xLjU2LTEuMDA4LTIuNjY0YzAtMS4zMjguNDgtMi4zMTIgMS40NC0yLjk1Mi45NzYtLjY1NiAyLjI5Ni0uOTg0IDMuOTYtLjk4NGgxLjk5MnYtLjc5MmMwLS42MDgtLjE2LTEuMDg4LS40OC0xLjQ0LS4zMi0uMzY4LS44NTYtLjU1Mi0xLjYwOC0uNTUyLS43MDQgMC0xLjI2NC4xNTItMS42OC40NTZhNC41MSA0LjUxIDAgMCAwLTEuMDMyIDEuMDMybC0yLjExMi0xLjg3MmE1LjQzIDUuNDMgMCAwIDEgMS45Mi0xLjc1MmMuNzg0LS40MzIgMS44NC0uNjQ4IDMuMTY4LS42NDggMS43OTIgMCAzLjEzNi4zOTIgNC4wMzIgMS4xNzZzMS4zNDQgMS45MjggMS4zNDQgMy40MzJ2NS41MmgxLjE3NlYyMmgtMS45Njh6bS00LjkyLTIuMTg0Yy41OTIgMCAxLjA5Ni0uMTI4IDEuNTEyLS4zODQuNDMyLS4yNTYuNjQ4LS42NzIuNjQ4LTEuMjQ4di0xLjQ4OGgtMS43MjhjLTEuMzkyIDAtMi4wODguNDcyLTIuMDg4IDEuNDE2di4zNmMwIC40NjQuMTQ0LjgwOC40MzIgMS4wMzIuMjg4LjIwOC42OTYuMzEyIDEuMjI0LjMxMnpNMjY1LjQ0NSAyMlY5LjRoMy41NTJ2Mi43MzZoLjEyYTMuNzQgMy43NCAwIDAgMSAuMzM2LTEuMDA4Yy4xNi0uMzM2LjM2OC0uNjMyLjYyNC0uODg4LjI3Mi0uMjU2LjU5Mi0uNDU2Ljk2LS42LjM2OC0uMTYuOC0uMjQgMS4yOTYtLjI0aC42MjR2My4zMTJoLS44ODhjLTEuMDQgMC0xLjgxNi4xMzYtMi4zMjguNDA4LS40OTYuMjcyLS43NDQuNzc2LS43NDQgMS41MTJWMjJoLTMuNTUyeiIvPjx1c2UgeGxpbms6aHJlZj0iI0IiIHg9IjgwLjM2OCIvPjwvZz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9IkEiIHgxPSIxNC4wODEiIHkxPSIwIiB4Mj0iMTQuMDgxIiB5Mj0iMjciIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmY2NTQ0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmY0NDQ5Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBpZD0iQiIgZD0iTTE5OS45MTkgMjIuMjg4Yy0uOTYgMC0xLjgxNi0uMTUyLTIuNTY4LS40NTYtLjc1Mi0uMzItMS4zOTItLjc2LTEuOTItMS4zMi0uNTEyLS41NzYtLjkwNC0xLjI3Mi0xLjE3Ni0yLjA4OC0uMjU2LS44MTYtLjM4NC0xLjcyOC0uMzg0LTIuNzM2IDAtLjk5Mi4xMjgtMS44ODguMzg0LTIuNjg4LjI1Ni0uODE2LjYzMi0xLjUxMiAxLjEyOC0yLjA4OC41MTItLjU3NiAxLjEzNi0xLjAxNiAxLjg3Mi0xLjMyLjczNi0uMzIgMS41NzYtLjQ4IDIuNTItLjQ4IDEuMDQgMCAxLjkyOC4xNzYgMi42NjQuNTI4Ljc1Mi4zNTIgMS4zNi44MjQgMS44MjQgMS40MTYuNDguNTkyLjgyNCAxLjI4IDEuMDMyIDIuMDY0LjIyNC43NjguMzM2IDEuNTc2LjMzNiAyLjQyNFYxNi42aC04LjA4OHYuMTkyYzAgLjgzMi4yMjQgMS40OTYuNjcyIDEuOTkyLjQ0OC40OCAxLjE1Mi43MiAyLjExMi43Mi43MzYgMCAxLjMzNi0uMTQ0IDEuOC0uNDMyLjQ2NC0uMzA0Ljg5Ni0uNjY0IDEuMjk2LTEuMDhsMS43NzYgMi4yMDhjLS41Ni42NTYtMS4yOTYgMS4xNjgtMi4yMDggMS41MzYtLjg5Ni4zNjgtMS45Mi41NTItMy4wNzIuNTUyem0tLjA3Mi0xMC41NmMtLjcyIDAtMS4yODguMjQtMS43MDQuNzItLjQuNDY0LS42IDEuMDg4LS42IDEuODcydi4xOTJoNC40MTZ2LS4yMTZjMC0uNzY4LS4xNzYtMS4zODQtLjUyOC0xLjg0OC0uMzM2LS40OC0uODY0LS43Mi0xLjU4NC0uNzJ6Ii8+PC9kZWZzPjwvc3ZnPgo=",width:"278",height:"27"}))),false))},Ft=((0,h.ZP)(he.Qj).withConfig({displayName:"footer__ButtonWrapper",componentId:"r7my8u-0"})(["max-width:102px;white-space:nowrap;"]),(0,h.ZP)(A.S$).withConfig({displayName:"footer__Section",componentId:"r7my8u-1"})(["background-color:",";padding:0;"],(function(e){return"var(--color-"+e.color+")"}))),Xt=((0,h.ZP)(A.W2).withConfig({displayName:"footer__ContentContainer",componentId:"r7my8u-2"})(["max-width:1440px;flex-direction:row-reverse;@media ","{flex-direction:column;}"],Y.Z.laptop),h.ZP.div.withConfig({displayName:"footer__FollowUsContainer",componentId:"r7my8u-3"})(["display:grid;grid-template-columns:68px repeat(4,26.67px);grid-column-gap:21px;grid-template-areas:' follow-us icon icon icon icon ';"]),h.ZP.img.withConfig({displayName:"footer__IconWrapper",componentId:"r7my8u-4"})(["width:32px;height:32px;grid-area:icon;margin-top:10px;"]),(0,h.ZP)(f.et).withConfig({displayName:"footer__ImageWrapper",componentId:"r7my8u-5"})(["max-height:402px;max-width:588px;width:100%;overflow:hidden;position:relative;bottom:60px;@media ","{max-width:250px;max-height:224px;margin:0 auto;bottom:40px;}"],Y.Z.tablet),h.ZP.div.withConfig({displayName:"footer__TextContainer",componentId:"r7my8u-6"})(["display:grid;justify-content:start;padding:80px 0 72px;grid-row-gap:24px;margin-right:104px;@media ","{padding:0 0 28px;margin:0;justify-content:center;}"],Y.Z.laptop),(0,h.ZP)(f.h4).withConfig({displayName:"footer__Title",componentId:"r7my8u-7"})(["max-width:400px;width:fit-content;font-size:48px;font-weight:700;line-height:60px;color:var(--color-white);@media ","{max-width:250px;font-size:28px;line-height:34px;}"],Y.Z.tablet),(0,h.ZP)(f.xv).withConfig({displayName:"footer__TextWrapper",componentId:"r7my8u-8"})(["display:",";max-width:",";width:fit-content;font-size:",";font-weight:400;line-height:",";color:var(--color-white);padding:",";margin:",";@media ","{grid-area:",";margin:",";}@media ","{max-width:",";font-size:",";line-height:",";padding:",";margin:0;}"],(function(e){return e.display}),(function(e){var t=e.max_width;return t?t[0]:"unset"}),(function(e){var t;return null!==(t=e.font_size[0])&&void 0!==t?t:"unset"}),(function(e){var t;return null!==(t=e.line_height[0])&&void 0!==t?t:"unset"}),(function(e){var t=e.padding;return t?t[0]:0}),(function(e){return e.margin}),Y.Z.laptopM,(function(e){return e.grid_area}),(function(e){var t=e.margin;return null!=t?t:"0 auto"}),Y.Z.mobileL,(function(e){var t,i=e.max_width;return i?null!==(t=i[1])&&void 0!==t?t:i[0]:"unset"}),(function(e){var t,i,n=e.font_size;return null!==(t=null!==(i=n[1])&&void 0!==i?i:n[0])&&void 0!==t?t:"unset"}),(function(e){var t,i,n=e.line_height;return null!==(t=null!==(i=n[1])&&void 0!==i?i:n[0])&&void 0!==t?t:"unset"}),(function(e){var t,i=e.padding;return i?null!==(t=i[1])&&void 0!==t?t:i[0]:0})));(0,h.ZP)(Xt).attrs({as:"a"}).withConfig({displayName:"footer__Link",componentId:"r7my8u-9"})(["color:var(--color-red);text-decoration:none;"]);var Vt=function(){(0,k.useStaticQuery)("3480019573");return n.createElement(n.Fragment,null,!1,n.createElement(Ft,{color:"black-3"},n.createElement(Xt,{max_width:["100%"],font_size:["14px"],line_height:["19.6px"],padding:["21px 120px","19px 16px"]},"© ",(0,S.NC)("2021 Deriv | All rights reserved"))))},qt=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"sc-16qeu2d-0"})(["background-color:var(--color-black);width:100%;position:fixed;z-index:3;top:0;padding:22px 1%;height:72px;@media ","{padding:16px;height:48px;}@media ","{padding:16px 0;}"],Y.Z.tabletL,Y.Z.mobileL),$t=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"sc-16qeu2d-1"})(["justify-content:space-between;@media ","{justify-content:center;}"],Y.Z.tabletL),Kt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoWrapper",componentId:"sc-16qeu2d-2"})(["align-items:center;width:293px;@media ","{width:176px;}"],Y.Z.tabletL),ei=h.ZP.img.withConfig({displayName:"nav__ImgWrapper",componentId:"sc-16qeu2d-3"})(["width:120px;height:16px;@media ","{width:75px;height:10px;}"],Y.Z.tabletL),ti=h.ZP.div.withConfig({displayName:"nav__Line",componentId:"sc-16qeu2d-4"})(["width:1px;height:28px;margin-right:8px;margin-left:8px;background-color:var(--color-white);@media ","{height:16px;}"],Y.Z.tabletL),ii=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLink",componentId:"sc-16qeu2d-5"})(["text-decoration:none;width:100%;"]),ni=function(e){var t=e.is_ppc,i=(0,k.useStaticQuery)("2998272888");return n.createElement(n.Fragment,null,n.createElement(qt,null,n.createElement($t,null,n.createElement(Kt,null,n.createElement(ii,{to:"/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:i.deriv,alt:(0,S.NC)("Deriv"),max_width:"16.4rem",width:"100%",height:"auto"})),n.createElement(ti,null),n.createElement(ei,{src:Qe})))),n.createElement(Hi,{is_ppc:t}))},ri=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"d0midy-0"})(["background-color:",";width:100%;position:fixed;z-index:5;top:0;padding:16px 1%;height:72px;@media ","{padding:16px;height:64px;}@media ","{padding:16px 0;}"],(function(e){return e.background?"transparent":"var(--color-black)"}),Y.Z.tabletL,Y.Z.mobileL),ai=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"d0midy-1"})(["justify-content:space-between;@media ","{justify-content:center;}"],Y.Z.tabletL),oi=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoWrapper",componentId:"d0midy-2"})(["align-items:center;width:138px;"]),Mi=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLink",componentId:"d0midy-3"})(["text-decoration:none;width:100%;"]),ci=(0,h.ZP)(A.kC).withConfig({displayName:"nav__BtnWrapper",componentId:"d0midy-4"})(["justify-content:flex-end;@media ","{display:none;}"],Y.Z.tabletL),ui=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__StyledLinkRightButton",componentId:"d0midy-5"})(["padding:10px 16px;background:var(--color-green-3);border:2px solid var(--color-green-3);"]),li=function(){var e=(0,k.useStaticQuery)("1808069570"),t=(0,n.useState)(0),i=t[0],r=t[1],a=(0,n.useState)(!0),o=a[0],M=a[1],c=(0,n.useCallback)((function(){var e=window.pageYOffset;M(i>e&&i-e>70||e<10),r(e)}),[]);return(0,n.useEffect)((function(){return window.addEventListener("scroll",c),function(){return window.removeEventListener("scroll",c)}}),[i,o,c]),n.createElement(n.Fragment,null,n.createElement(ri,{background:o},n.createElement(ai,null,n.createElement(oi,null,n.createElement(Mi,{to:"https://deriv.com/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:e.binary,alt:(0,S.NC)("Binary"),max_width:"16.4rem",width:"100%",height:"auto"}))),n.createElement(ci,null,n.createElement(ui,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},(0,S.NC)("Take me to Deriv"))))),n.createElement(Hi,{no_eu_banner:!0}))},gi=i(6659),Ni=i(4508),mi=function(){return n.createElement(n.Fragment,null,n.createElement(gi.zO,null,n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.",components:[n.createElement(gi.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(gi.rq,null,(0,S.NC)("Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.")),n.createElement(gi.rq,null,(0,S.NC)("This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(gi.qy,null,n.createElement(A.di.Desktop,null,n.createElement(gi.rq,{no_margin:!0},n.createElement(S.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:71}})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."}))),n.createElement(A.di.Mobile,null,n.createElement(gi.rq,{no_margin:!0},n.createElement(S.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:71}})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."}))))))},ji=h.ZP.footer.withConfig({displayName:"footer__DefaultFooter",componentId:"sc-9b1zlb-0"})(["background-color:var(--color-grey-25);width:100%;margin:0 auto;padding-bottom:2rem;","{@media ","{width:100%;}}"],A.W2,Y.Z.tabletL),si=function(e){var t=e.type;return n.createElement(ji,{is_eu_country:!1},n.createElement(A.W2,null,n.createElement(gi.Ko,null,n.createElement(Ni.Z,{type:t}),n.createElement(mi,null))))},di=(0,h.ZP)(A.kC).withConfig({displayName:"nav-careers__CareerRight",componentId:"sc-7zho0s-0"})(["width:auto;justify-self:flex-end;"]),Li=(0,h.ZP)(he.Qj).withConfig({displayName:"nav-careers__CareerButton",componentId:"sc-7zho0s-1"})(["@media ","{font-size:12px;}@media ","{font-size:9px;}@media ","{margin-left:4px;}"],Y.Z.tabletS,Y.Z.mobileL,Y.Z.mobileM),yi=(0,h.ZP)(it).withConfig({displayName:"nav-careers__CareerLink",componentId:"sc-7zho0s-2"})(["@media ","{font-size:9px;padding:4px;}"],Y.Z.mobileM),Ii=(0,h.ZP)(Re).withConfig({displayName:"nav-careers__CareerLogo",componentId:"sc-7zho0s-3"})(["margin-right:3.2rem;@media ","{margin-right:0;max-width:100px;}@media ","{max-width:80px;& .gatsby-image-wrapper{width:80px;}}"],Y.Z.tabletS,Y.Z.mobileL),Di=(0,h.ZP)(Ve).withConfig({displayName:"nav-careers__CareerNavLeft",componentId:"sc-7zho0s-4"})(["@media ","{display:flex;}"],Y.Z.tabletL),pi=function(){var e=(0,k.useStaticQuery)("2998272888"),t=n.useContext(Ue.L).has_mounted,i=Ce("careers");return n.createElement(n.Fragment,null,n.createElement(Ge,null,n.createElement(Je,null,n.createElement(Fe,{offset_px_mobile:4},n.createElement(Di,null,n.createElement(Ii,{to:"/","aria-label":"Home"},n.createElement(f.et,{data:e.deriv,alt:"Deriv",width:"16.4rem",height:"auto"})),n.createElement(yi,{active:"home"===i,activeClassName:"active",to:"/careers/","aria-label":"Careers",partiallyActive:!0},"HOME"),n.createElement(yi,{active:"locations"===i,activeClassName:"active",to:"/careers/locations/","aria-label":"Locations",partiallyActive:!0},"LOCATIONS"),n.createElement(yi,{activeClassName:"active",to:"/besquare/","aria-label":"BeSquare"},"BESQUARE")),n.createElement(di,{jc:"flex-end",ai:"center"},t&&n.createElement(Li,{external:"true",secondary:!0,type:"zoho",to:"/",target:"_blank",rel:"noopener noreferrer",ml:"2.4rem"},"Explore jobs"))))),n.createElement(Hi,null))};var xi=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__ModalWrapper",componentId:"hemsmb-0"})(["position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:200;"]),Ti=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__ModalCard",componentId:"hemsmb-1"})(["position:relative;z-index:210;display:flex;flex-direction:column;border-radius:6px;box-shadow:2px 2px 10px rgba(0,0,0,0.3);width:100%;max-width:44rem;background:var(--color-white);padding:2.4rem;@media ","{width:80%;}"],Y.Z.mobileL),zi=h.ZP.img.withConfig({displayName:"_eu-redirect-modal__CloseButton",componentId:"hemsmb-2"})(["&:hover{cursor:pointer;}"]),Ei=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__Background",componentId:"hemsmb-3"})(["position:absolute;width:100%;height:100%;top:0;left:0;background-color:var(--color-black);opacity:0.4;"]),hi=(0,h.ZP)(A.kC).withConfig({displayName:"_eu-redirect-modal__Action",componentId:"hemsmb-4"})(["justify-content:space-between;align-items:center;"]),Ci=(0,h.iv)(["border-radius:6px;padding:1rem 1.6rem;transition:all 0.25s;height:fit-content;cursor:pointer;text-decoration:none;"]),wi=h.ZP.a.withConfig({displayName:"_eu-redirect-modal__Proceed",componentId:"hemsmb-5"})([""," border:2px solid var(--color-red);color:var(--color-white);background:var(--color-red);&:hover{background-color:var(--color-red-3);border-color:var(--color-red-3);}"],Ci),Ai=h.ZP.span.withConfig({displayName:"_eu-redirect-modal__Cancel",componentId:"hemsmb-6"})([""," border:2px solid var(--color-grey-5);color:var(--color-black);background:transparent;margin-right:0.8rem;&:hover{background-color:rgba(0,0,0,0.08);}"],Ci),fi=function(e){var t=e.toggle,i=e.is_open,r=e.closeModal,a=e.to,o=e.target,M=e.rel,c=e.ref,u=e.aria_label,l=function(e){27===e.keyCode&&r()};return(0,n.useEffect)((function(){return document.addEventListener("keydown",l,!1),function(){document.removeEventListener("keydown",l,!1)}}),[]),i&&n.createElement(xi,null,n.createElement(Ti,null,n.createElement(hi,null,n.createElement(f.xv,{weight:"bold"},n.createElement(S.Xx,{translate_text:"Redirect notice"})),n.createElement(zi,{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTMuNzA3IDIuMjkzTDggNi41ODdsNC4yOTMtNC4yOTRhMSAxIDAgMDExLjQxNCAxLjQxNEw5LjQxNCA4LjAwMWw0LjI5MyA0LjI5NWExIDEgMCAwMS0xLjQxNCAxLjQxNEw4IDkuNDE2IDMuNzA3IDEzLjcxYTEgMSAwIDAxLTEuNDE0LTEuNDE0bDQuMjkyLTQuMjk1LTQuMjkyLTQuMjk0YTEgMSAwIDAxMS40MTQtMS40MTR6Ii8+PC9zdmc+",alt:"close-2",onClick:t})),n.createElement("div",null,n.createElement(f.xv,{size:"var(--text-size-xs)",m:"2.4rem 0"},n.createElement(S.Xx,{translate_text:"You are being redirected to an external website."}))),n.createElement(A.kC,{jc:"flex-end"},n.createElement(Ai,{onClick:function(){return r()}},n.createElement(f.xv,{size:"var(--text-size-xs)",weight:"bold"},n.createElement(S.Xx,{translate_text:"Cancel"}))),n.createElement(wi,{target:o,rel:M,ref:c,href:a,"aria-label":u,onClick:t},n.createElement(f.xv,{size:"var(--text-size-xs)",weight:"bold",color:"white"},n.createElement(S.Xx,{translate_text:"Proceed"}))))),n.createElement(Ei,{onClick:t}))},Si=(0,h.F4)(["from{opacity:0;transform:translateY(0);}to{opacity:1;transform:translateY(-18.4rem);}"]),Oi=(0,h.F4)(["from{opacity:1;transform:translateY(-18.4rem);}to{opacity:0;transform:translateY(0);}"]),vi=h.ZP.div.withConfig({displayName:"cookie-banner__Wrapper",componentId:"sc-16ttzo8-0"})(["position:fixed;width:384px;min-height:188px;padding:24px;left:2.4rem;bottom:-9rem;transition:translate 0.3s ease-in-out,opacity 0.3s ease-in-out;z-index:200;border-radius:8px;box-shadow:0 0 12px 0 rgba(14,14,14,0.16);background-color:var(--color-white);animation-name:",";animation-fill-mode:both;animation-duration:0.3s;@media ","{bottom:-7rem;}@media (max-width:1269px){bottom:-6rem;}@media ","{bottom:-4rem;}@media ","{width:100%;height:14.6rem;padding:16px;left:unset;border-radius:unset;min-height:unset;bottom:-6.1rem;}@media (max-width:711px){bottom:-7.7rem;}@media (max-width:539px){bottom:-4.5rem;}@media ","{bottom:-4.5rem;height:16.8rem;}"],(function(e){return e.is_open?Si:Oi}),Y.Z.laptopM,Y.Z.tabletL,Y.Z.tablet,Y.Z.mobileS),ki=(0,h.ZP)(he.zx).withConfig({displayName:"cookie-banner__StyledButton",componentId:"sc-16ttzo8-1"})(["@media ","{font-size:1.4rem;padding:3px 8px;}"],Y.Z.tablet),bi=(0,h.ZP)(f.xv).withConfig({displayName:"cookie-banner__StyledText",componentId:"sc-16ttzo8-2"})(["font-size:14px;margin-bottom:16px;@media ","{font-size:12px;margin-bottom:8px;}@media ","{font-size:10px;margin-bottom:8px;}"],Y.Z.tablet,Y.Z.mobileL),_i=(0,h.ZP)(f.Th).withConfig({displayName:"cookie-banner__LinkText",componentId:"sc-16ttzo8-3"})(["font-size:14px;@media ","{font-size:12px;}@media ","{font-size:10px;}"],Y.Z.tablet,Y.Z.mobileL),Yi=function(e){var t=e.onAccept,i=e.onDecline,r=e.is_open;return n.createElement(vi,{is_open:r},n.createElement(bi,null,n.createElement(S.Xx,{translate_text:"Cookies help us to give you a better experience and personalised content on our site. "}),n.createElement(S.Xx,{translate_text:"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.",components:[n.createElement(_i,{key:0,to:"/terms-and-conditions/#clients",color:"red"})]})),n.createElement(A.kC,null,n.createElement(ki,{tertiary:!0,onClick:i,mr:"0.8rem"},(0,S.NC)("Don't accept")),n.createElement(ki,{secondary:!0,onClick:t},(0,S.NC)("Accept"))))},Qi=E((function(){return i.e(562).then(i.bind(i,9562))})),Zi=E((function(){return i.e(989).then(i.bind(i,6989))})),Ui=(0,C.jU)()&&window.dataLayer,Pi="tracking_status",Gi=new Se.eR(Pi),Wi=h.ZP.section.withConfig({displayName:"layout__CFDWrapper",componentId:"sc-1uofsdx-0"})(["background-color:var(--color-grey-25);background-size:cover;display:flex;align-items:center;justify-content:center;width:100%;min-height:7.4rem;height:fit-content;padding:1.7rem 0 1.5rem;position:fixed;bottom:0;box-shadow:inset 0 1px 0 0 var(--color-grey-21);z-index:100;@media (max-width:826px){padding:0.8rem 0;height:12.4rem;}@media (max-width:710px){height:10.8rem;}@media (max-width:538px){height:14rem;}"]),Ri=(0,h.ZP)(A.W2).withConfig({displayName:"layout__CFDContainer",componentId:"sc-1uofsdx-1"})(["@media ","{width:90%;}@media ","{width:95%;}@media ","{margin:1rem auto;}@media ","{margin:2rem auto;}@media ","{margin:1rem auto;}"],Y.Z.bp1060,Y.Z.tabletL,Y.Z.tabletS,Y.Z.mobileL,Y.Z.mobileM),Bi=(0,h.ZP)(f.xv).withConfig({displayName:"layout__CFDText",componentId:"sc-1uofsdx-2"})(["@media ","{font-size:14px;}@media ","{font-size:12px;}@media ","{font-size:10px;}"],Y.Z.bp1060,Y.Z.tablet,Y.Z.mobileL),Hi=function(e){var t=e.is_ppc,i=e.no_eu_banner,r=n.useContext(Q.c).is_eu_country;return!t&&!r||i?n.createElement(n.Fragment,null):n.createElement(Wi,null,n.createElement(Ri,null,n.createElement(Bi,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. <0>{{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62},components:[n.createElement("strong",{key:0})]}))))},Ji=h.ZP.main.withConfig({displayName:"layout__Main",componentId:"sc-1uofsdx-3"})(["margin-top:",";background:var(--color-white);height:100%;position:relative;"],(function(e){return e.margin_top&&e.margin_top+"rem"||"7rem"})),Fi=function(e){var t=e.children,i=e.interim_type,r=e.is_ppc,a=e.is_ppc_redirect,o=e.margin_top,M=e.no_live_chat,c=e.no_login_signup,u=e.type,l=n.useContext(Q.c).is_eu_country,g=n.useState(!1),N=g[0],m=g[1],j=n.useState(!1),s=j[0],d=j[1],L=function(e){void 0===e&&(e=!1);var t=(0,n.useState)(e),i=t[0],r=t[1];return[i,function(){return r(!i)},function(){return r(!1)}]}(),y=L[0],I=L[1],D=L[2],p=n.useState({}),x=p[0],T=p[1],z=w(),E=z[0],h=z[1],A="static"===u;n.useEffect((function(){(0,C.jU)()&&window.scrollTo(0,0)}),[]),n.useEffect((function(){if("boolean"==typeof l){var e=Gi.get(Pi);l&&!e&&d(!0),(!l||"accepted"===e)&&!E&&Ui&&h({event:"allow_tracking"}),m(!0)}}),[l]);var f=n.createElement(n.Fragment,null),S=n.createElement(n.Fragment,null);switch(u){case"academy":f=n.createElement(xt,{academy_logo:!0,no_language:!0}),S=n.createElement(Qi,{academy:!0});break;case"static":f=n.createElement(wt,{is_ppc:r});break;case"interim":f=n.createElement(Ct,{interim_type:i}),S=n.createElement(v,null);break;case"partners":f=n.createElement(Pt,{no_login_signup:c}),S=n.createElement(Qi,null);break;case"ebook":f=n.createElement(xt,{hide_signup_login:!0}),S=n.createElement(Qi,null);break;case"landing-page":f=n.createElement(xt,{hide_signup_login:!0,no_language:!0}),S=n.createElement(Qi,null);break;case"jump-indices":f=n.createElement(ni,null),S=n.createElement(Qi,{is_ppc:r,is_ppc_redirect:a});break;case"careers":f=n.createElement(pi,null),S=n.createElement(Qi,{no_language:!0,type:u});break;case"be-square":f=n.createElement(Jt,null),S=n.createElement(Vt,null);break;case"binary-to-deriv":f=n.createElement(li,null),S=n.createElement(si,{is_ppc:r,is_ppc_redirect:a});break;default:f=n.createElement(xt,{is_ppc_redirect:a,is_ppc:r}),S=n.createElement(Qi,{is_ppc:r,is_ppc_redirect:a})}return n.createElement(Ue.v,{has_mounted:N,show_cookie_banner:s,toggleModal:I,setModalPayload:T},f,n.createElement(Ji,{margin_top:o,is_static:A},t),s&&n.createElement(Yi,{onAccept:function(){Gi.set(Pi,"accepted"),!E&&Ui&&h({event:"allow_tracking"}),d(!1)},onDecline:function(){Gi.set(Pi,"declined"),d(!1)},is_open:s}),!M&&n.createElement(Zi,{is_banner_shown:s}),S,n.createElement(fi,{toggle:I,is_open:y,closeModal:D,to:x.to,target:x.target,rel:x.rel,ref:x.ref,aria_label:x.aria_label}))}}}]); +//# sourceMappingURL=commons-e9038af46337fa9cc60e.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/commons-f65cf158402c4ff26cd8.js b/src/root_files/_common/move-to-deriv/commons-f65cf158402c4ff26cd8.js deleted file mode 100644 index 73e6e300c10c5..0000000000000 --- a/src/root_files/_common/move-to-deriv/commons-f65cf158402c4ff26cd8.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! For license information please see commons-f65cf158402c4ff26cd8.js.LICENSE.txt */ -(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[351],{9829:function(e,t){"use strict";var i="function"==typeof Symbol&&Symbol.for,n=i?Symbol.for("react.element"):60103,r=i?Symbol.for("react.portal"):60106,a=i?Symbol.for("react.fragment"):60107,o=i?Symbol.for("react.strict_mode"):60108,M=i?Symbol.for("react.profiler"):60114,c=i?Symbol.for("react.provider"):60109,u=i?Symbol.for("react.context"):60110,l=i?Symbol.for("react.async_mode"):60111,g=i?Symbol.for("react.concurrent_mode"):60111,N=i?Symbol.for("react.forward_ref"):60112,m=i?Symbol.for("react.suspense"):60113,j=i?Symbol.for("react.suspense_list"):60120,s=i?Symbol.for("react.memo"):60115,d=i?Symbol.for("react.lazy"):60116,L=i?Symbol.for("react.block"):60121,y=i?Symbol.for("react.fundamental"):60117,I=i?Symbol.for("react.responder"):60118,D=i?Symbol.for("react.scope"):60119;function p(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case l:case g:case a:case M:case o:case m:return e;default:switch(e=e&&e.$$typeof){case u:case N:case d:case s:case c:return e;default:return t}}case r:return t}}}function x(e){return p(e)===g}t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===g||e===M||e===o||e===m||e===j||"object"==typeof e&&null!==e&&(e.$$typeof===d||e.$$typeof===s||e.$$typeof===c||e.$$typeof===u||e.$$typeof===N||e.$$typeof===y||e.$$typeof===I||e.$$typeof===D||e.$$typeof===L)}},8026:function(e,t,i){"use strict";e.exports=i(9829)},5417:function(e,t,i){var n=i(111),r=i(3157),a=i(5112)("species");e.exports=function(e,t){var i;return r(e)&&("function"!=typeof(i=e.constructor)||i!==Array&&!r(i.prototype)?n(i)&&null===(i=i[a])&&(i=void 0):i=void 0),new(void 0===i?Array:i)(0===t?0:t)}},6790:function(e,t,i){"use strict";var n=i(3157),r=i(7466),a=i(9974),o=function(e,t,i,M,c,u,l,g){for(var N,m=c,j=0,s=!!l&&a(l,g,3);j0&&n(N))m=o(e,t,N,r(N.length),m,u-1)-1;else{if(m>=9007199254740991)throw TypeError("Exceed the acceptable array length");e[m]=N}m++}j++}return m};e.exports=o},9974:function(e,t,i){var n=i(3099);e.exports=function(e,t,i){if(n(e),void 0===t)return e;switch(i){case 0:return function(){return e.call(t)};case 1:return function(i){return e.call(t,i)};case 2:return function(i,n){return e.call(t,i,n)};case 3:return function(i,n,r){return e.call(t,i,n,r)}}return function(){return e.apply(t,arguments)}}},3157:function(e,t,i){var n=i(4326);e.exports=Array.isArray||function(e){return"Array"==n(e)}},4944:function(e,t,i){"use strict";var n=i(2109),r=i(6790),a=i(7908),o=i(7466),M=i(9958),c=i(5417);n({target:"Array",proto:!0},{flat:function(){var e=arguments.length?arguments[0]:void 0,t=a(this),i=o(t.length),n=c(t,0);return n.length=r(n,t,t,i,0,void 0===e?1:M(e)),n}})},3324:function(e,t,i){"use strict";i.d(t,{zx:function(){return u},Qj:function(){return N}});i(4944);var n=i(9),r=i(5697),a=i.n(r),o=i(1292),M=(0,n.iv)(["border-radius:6px;padding:10px 16px;font-size:14px;transition:all 0.25s;font-weight:bold;height:fit-content;width:",";"," &:focus,&:active{outline:none;transform:scale(0.95);}"," ",""],(function(e){return e.width}),(function(e){return e.primary?(0,n.iv)(["border:2px solid var(--color-red);color:var(--color-red);background:transparent;&:hover{background-color:var(--color-red);color:var(--color-white);}"]):e.secondary?(0,n.iv)(["border:2px solid var(--color-red);color:var(--color-white);background:var(--color-red);&:hover{background-color:var(--color-red-3);border-color:var(--color-red-3);}"]):e.tertiary?(0,n.iv)(["border:2px solid var(--color-grey-5);color:var(--color-black);background:transparent;&:hover{background-color:rgba(0,0,0,0.08);}"]):e.flat?(0,n.iv)(["background:transparent;color:var(--color-red);border:none;&:hover{background:rgba(255,68,79,0.08);}"]):e.social?(0,n.iv)(["background:",";border:",";svg{width:2.2rem;height:2.2rem;}&:hover{background:var(--color-grey-4);}"],(function(e){return"google"===e.provider?"var(--color-white)":"facebook"===e.provider?"var(--color-blue)":void 0}),(function(e){return"google"===e.provider?"1px solid var(--color-grey-5);":"none"})):e.white?(0,n.iv)(["border:2px solid var(--color-white);color:var(--color-white);background:transparent;&:hover{background:var(--color-white);color:var(--color-red);}"]):void 0}),o.C,o.m),c=n.ZP.button.withConfig({displayName:"button__Button",componentId:"sc-16zlxpb-0"})([""," &:hover{cursor:pointer;}",""],M,(function(e){return e.disabled?(0,n.iv)(["pointer-events:none;opacity:0.32;"]):e.loading?(0,n.iv)(["width:8rem;height:8rem;border:10 px solid var(--color-black);border-radius:50%;animation:sweep 1s linear alternate infinite,rotates 0.8s linear infinite;"]):void 0}));c.propTypes={children:a().oneOfType([a().arrayOf(a().node),a().node]).isRequired,onClick:a().func,type:a().string};var u=c,l=i(8838),g=i(6299),N=(0,n.ZP)(l.UE).withConfig({displayName:"link-button__LinkButton",componentId:"sc-1889ev8-0"})([""," text-align:center;text-decoration:none;padding:",";@media ","{font-size:14px;padding:",";}"],M,(function(e){return e.hero&&"17px 24px"}),g.Z.tabletL,(function(e){return e.hero&&"10px 16px"})),m=(i(7294),i(2466));n.ZP.div.withConfig({displayName:"input__RelativeWrapper",componentId:"sc-1hfhi87-0"})(["position:relative;"]),n.ZP.div.withConfig({displayName:"input__InputWrapper",componentId:"sc-1hfhi87-1"})(["width:100%;border:",";border-radius:4px;@media ","{height:5rem;}&:hover{border-color:var(--color-grey-5);& > label{color:var(--color-",");}}&:focus-within{border-color:",";}"," "," ",""],(function(e){return e.border||"1px solid var(--color-grey-2)"}),g.Z.tabletL,(function(e){return e.labelHoverColor||"black-3"}),(function(e){return e.focusBorder||"var(--color-green)"}),(function(e){return!e.error&&(0,n.iv)(["border-color:var(--color-grey-7);"])}),(function(e){return e.error&&(0,n.iv)(["border-color:var(--color-red-1) !important;& > label{color:var(--color-red-1) !important;}"])}),(function(e){return e.disabled&&(0,n.iv)(["opacity:0.32;pointer-events:none;"])})),n.ZP.img.withConfig({displayName:"input__StyledError",componentId:"sc-1hfhi87-2"})(["position:absolute;right:0.8rem;top:1.2rem;height:1.6rem;width:1.6rem;cursor:pointer;@media ","{right:2rem;top:1.6rem;}"],g.Z.tablet),n.ZP.input.withConfig({displayName:"input__StyledInput",componentId:"sc-1hfhi87-3"})(["background:var(--color-",");color:var(--color-",");font-size:var(--text-size-s);padding:1rem 1rem 1rem 0.8rem;height:",";width:100%;display:block;border:none;border-radius:4px;@media ","{height:100%;& ~ label{font-size:1.75rem;top:1.5rem;}}@media ","{font-size:14px;& ~ label{font-size:1.5rem;top:1.75rem;}}&::placeholder{opacity:",";transition:opacity 0.25s;padding-left:0.3rem;}&:focus{outline:none;& ~ label{transform:translate(-0.6rem,-2rem) scale(0.7);color:var(--color-",");background-color:var(--color-",");@media ","{transform:translate(-0.6rem,-20px) scale(0.7);}}&::placeholder{opacity:1;color:var(--color-grey-5);","}}&:valid{","}"],(function(e){return e.inputBackground||"none"}),(function(e){return e.inputColor||"black"}),(function(e){return e.height||"40px"}),g.Z.tabletL,g.Z.mobileL,(function(e){return e.showLabel?0:1}),(function(e){return e.labelFocusColor||"green"}),(function(e){return e.background||"grey-1"}),g.Z.mobileL,(function(e){return e.label&&(0,n.iv)(["font-size:14px;"])}),(function(e){return e.value&&(0,n.iv)(["& ~ label{transform:translate(-0.6rem,-2rem) scale(0.7);color:var(--color-black-3);@media ","{top:9px;}background-color:var(--color-",");}"],g.Z.tabletL,(function(e){return e.background||"grey-1"}))})),(0,n.ZP)(m.xv).withConfig({displayName:"input__ErrorMessages",componentId:"sc-1hfhi87-4"})(["padding-left:0.8rem;font-size:1.2rem;min-height:16px;"]),n.ZP.label.withConfig({displayName:"input__StyledLabel",componentId:"sc-1hfhi87-5"})(["color:var(--color-",");font-size:var(--text-size-xs);position:absolute;pointer-events:none;left:0.8rem;top:1.4rem;transition:0.25s ease transform;transform:translateZ(0);padding:0 0.4rem;background:none;"],(function(e){return e.labelColor||"grey"}))},6659:function(e,t,i){"use strict";i.d(t,{qc:function(){return c},Ko:function(){return u},Fe:function(){return l},SJ:function(){return g},B3:function(){return N},Dx:function(){return m},rU:function(){return j},gM:function(){return s},zO:function(){return d},rq:function(){return L},iz:function(){return I},Mk:function(){return D},qy:function(){return p},f0:function(){return x},OT:function(){return T},$q:function(){return z},xO:function(){return E},L9:function(){return h},ec:function(){return C},VZ:function(){return w},ps:function(){return A}});var n=i(9),r=i(7513),a=i(2466),o=i(8838),M=i(6299),c=n.ZP.footer.withConfig({displayName:"style__DefaultFooter",componentId:"y1eemc-0"})(["background-color:var(--color-grey-25);width:100%;margin:0 auto;margin-bottom:",";padding-bottom:1.6rem;@media (max-width:1090px){margin-bottom:",";}@media (max-width:991px){margin-bottom:",";}@media (max-width:826px){margin-bottom:",";}@media (max-width:710px){margin-bottom:",";}@media (max-width:538px){margin-bottom:",";}","{@media ","{width:100%;}}@media ","{padding-bottom:6rem;}"],(function(e){return e.is_eu_country&&"7.3rem"}),(function(e){return e.is_eu_country&&"9rem"}),(function(e){return e.is_eu_country&&"11rem"}),(function(e){return e.is_eu_country&&"12.2rem"}),(function(e){return e.is_eu_country&&"10.6rem"}),(function(e){return e.is_eu_country&&"13.8rem"}),r.W2,M.Z.tabletL,M.Z.mobileL),u=(0,n.ZP)(r.ax).withConfig({displayName:"style__FooterGrid",componentId:"y1eemc-1"})(["width:100%;grid-template-columns:2fr;grid-template-areas:'logo logo' 'links links' 'disclaimer disclaimer' 'copyright social' 'copyright eulogowrapper';@media ","{grid-template-columns:1fr;grid-template-areas:'logo' 'links' 'social' 'disclaimer' 'eulogowrapper' 'copyright';}"],M.Z.tabletL),l=n.ZP.div.withConfig({displayName:"style__DerivLogoWrapper",componentId:"y1eemc-2"})(["display:flex;justify-content:space-between;grid-area:logo;background:var(--color-grey-25);padding:4rem 0 2rem 0;@media ","{margin-left:2rem;}"],M.Z.tabletL),g=n.ZP.div.withConfig({displayName:"style__LinksWrapper",componentId:"y1eemc-3"})(["grid-area:links;background:var(--color-grey-25);padding:0.8rem 0 2.4rem 0;border-bottom:1px solid var(--color-grey-26);border-top:2px solid var(--color-grey-26);@media ","{padding:0;}"],M.Z.tabletL),N=(0,n.ZP)(r.kC).withConfig({displayName:"style__LinksCol",componentId:"y1eemc-4"})(["flex-direction:column;width:fit-content;min-width:100px;margin-right:40px;:last-child{margin-right:0;}@media (min-width:993px) and (max-width:1050px){min-width:0;max-width:100px;}"]),m=(0,n.ZP)(a.xv).withConfig({displayName:"style__Title",componentId:"y1eemc-5"})(["color:var(--color-black-6);font-weight:bold;"]),j=(0,n.ZP)(a.Fg).withConfig({displayName:"style__Link",componentId:"y1eemc-6"})(["color:var(--color-black-3);font-size:var(--text-size-xs);line-height:1.5;"]),s=(n.ZP.div.withConfig({displayName:"style__AcademyWrapper",componentId:"y1eemc-7"})(["color:var(--color-red-1);font-size:var(--text-size-xs);line-height:1.5;margin-top:10px;"]),n.ZP.div.withConfig({displayName:"style__LinkWrapper",componentId:"y1eemc-8"})(["margin-top:",";@media ","{","{font-size:var(--text-size-xs);}","{font-size:var(--text-size-xs);}}"],(function(e){return"true"==e.first_child?"0.8rem":"1.6rem"}),M.Z.laptopM,m,j)),d=n.ZP.div.withConfig({displayName:"style__DisclaimerWrapper",componentId:"y1eemc-9"})(["grid-area:disclaimer;background:var(--color-grey-25);"]),L=(0,n.ZP)(a.xv).withConfig({displayName:"style__DisclaimerParagraph",componentId:"y1eemc-10"})(["font-size:var(--text-size-xs);margin-top:",";@media ","{width:90%;margin:2rem auto 0;font-size:var(--text-size-sm);}"],(function(e){return e.no_margin?"0":"2rem"}),M.Z.tabletL),y=(0,n.iv)(["font-weight:bold;color:var(--color-black-3);font-size:var(--text-size-xs);text-decoration:none;:hover{text-decoration:underline;}@media ","{font-size:var(--text-size-sm);}"],M.Z.tabletL),I=n.ZP.a.withConfig({displayName:"style__StaticAsset",componentId:"y1eemc-11"})(["",""],y),D=(0,n.ZP)(o.UE).withConfig({displayName:"style__StaticAssetLink",componentId:"y1eemc-12"})(["",""],y),p=n.ZP.div.withConfig({displayName:"style__RiskWarning",componentId:"y1eemc-13"})(["background-color:var(--color-grey-28);border-left:4px solid var(--color-grey-27);padding:1.6rem;margin-top:2rem;@media ","{border-top:2px solid var(--color-grey-27);border-left:none;width:90%;margin:4rem auto 0;padding:1rem;p{padding:0;width:100%;}}"],M.Z.tabletL),x=(0,n.ZP)(a.Fg).withConfig({displayName:"style__BoldLink",componentId:"y1eemc-14"})(["font-weight:bold;color:var(--color-black-3);font-size:var(--text-size-xs);@media ","{font-size:var(--text-size-sm);}"],M.Z.tabletL),T=(0,n.ZP)(r.kC).withConfig({displayName:"style__CopyrightWrapper",componentId:"y1eemc-15"})(["grid-area:copyright;background:var(--color-grey-25);justify-content:flex-start;align-items:center;p{font-size:var(--text-size-xs);line-height:1.14;}@media ","{width:90%;margin:0 auto;padding:2rem 0;p{font-size:1.75rem;line-height:1.5;}}"],M.Z.tabletL),z=(0,n.ZP)(r.kC).withConfig({displayName:"style__EuLogoWrapper",componentId:"y1eemc-16"})(["grid-area:eulogowrapper;"]),E=n.ZP.div.withConfig({displayName:"style__SocialWrapper",componentId:"y1eemc-17"})(["grid-area:social;background:var(--color-grey-25);margin:1.6rem 0;img{margin-left:1.6rem;}@media ","{display:flex;justify-content:center;margin:3rem 0 1rem;a:first-child{img{margin-left:0;}}}"],M.Z.tabletL),h=n.ZP.img.withConfig({displayName:"style__StyledGamstop",componentId:"y1eemc-18"})(["margin-right:2.4rem;"]),C=n.ZP.div.withConfig({displayName:"style__StyledCoatArms",componentId:"y1eemc-19"})(["margin-right:2.4rem;"]),w=n.ZP.img.withConfig({displayName:"style__StyledMgaLogo",componentId:"y1eemc-20"})(["margin-right:2.4rem;"]),A=n.ZP.img.withConfig({displayName:"style__StyledLogo",componentId:"y1eemc-21"})(["width:18.2rem;"])},4508:function(e,t,i){"use strict";i.d(t,{Z:function(){return a}});var n=i(7294),r=i(6659);var a=function(){return n.createElement(r.Fe,null,n.createElement(r.ps,{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDcgMjUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9Ii0zODguMTMiIHkxPSIxMzIxLjQ0IiB4Mj0iLTM4OC4xMyIgeTI9IjEzMjAuNDQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMjYuOTEgMCAwIC0yNSAxMDQ1Ny44NCAzMzAzNikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZjY1NDQiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZjQ0NDkiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PGcgZGF0YS1uYW1lPSIyLS1sb2dvZ3JhbSI+PGcgZGF0YS1uYW1lPSJsb2dvL2xvZ29ncmFtIj48cGF0aCBkPSJNNS44NiAwbDkuNzMgMTIuNUwwIDI1aDE1Ljc0YTkuODMgOS44MyAwIDAwOS42MS03LjUzbDEuMzEtNS41N2E5LjYgOS42IDAgMDAtMS45LTguMjNBOS45IDkuOSAwIDAwMTcuMDUgMHoiIGZpbGw9InVybCgjYSkiLz48cGF0aCBkYXRhLW5hbWU9IlBhdGgiIGZpbGw9IiNiNTFhMzEiIGQ9Ik0xNS41OCAxMi41M0w4Ljc0IDI1SDBsMTUuNTgtMTIuNDd6Ii8+PC9nPjwvZz48cGF0aCBkPSJNMTI5LjU3IDFsMy4xNSAxNi43OEwxNDEuNTYgMUgxNDdsLTEzLjM0IDI0aC00LjQ2TDEyNCAxek00OC4zNSAxQzU1Ljc1IDEgNjAgNi4xOCA1OC44MSAxMi45M1YxM2ExNC43MSAxNC43MSAwIDAxLTE0LjYyIDEySDM1bDQuMTUtMjR6bTUxLjg1IDBjMyAwIDUuMjYuODYgNi41NiAyLjQ0YTYuNTcgNi41NyAwIDAxMS4wOSA1LjQ4di4wN2E5LjMyIDkuMzIgMCAwMS02LjQ0IDcuNDRsNC4zMyA4LjU3aC02LjE3bC01Ljc1LTEyLjM1aDRjMi41NyAwIDQuMjgtMS4zOCA0LjY0LTMuMzl2LS4wN2MuNC0yLjI2LTEtMy40Mi0zLjU0LTMuNDJoLTUuMjVMOTAuMjggMjVIODVsNC4yMy0yNHpNMTE4IDFsLTQgMjRoLTVsNC0yNHpNODQgMWwtLjgyIDQuN0g3MC41MmwtLjg1IDQuODdoOC4xOGwtLjg1IDQuN2gtOC4xNGwtLjg4IDVoMTIuODRMODAgMjVINjJsNC4xNy0yNHpNNDcuNzcgNmgtNC4xNkw0MSAyMGg0LjE3YTguNTMgOC41MyAwIDAwOC42OC02LjkzVjEzYy43OC00LjExLTEuNjYtNy02LjA4LTd6Ii8+PC9nPjwvZz48L3N2Zz4=",alt:"logo",width:"147",height:"25"}))}},1340:function(e,t,i){"use strict";i.d(t,{v:function(){return Hi},Z:function(){return Fi}});var n=i(7294),r=i(2265);function a(){return(a=Object.assign||function(e){for(var t=1;t a{pointer-events:",";cursor:",";}@media (max-width:991px){display:none;}"],(function(e){return e.mounted?"1":"0"}),(function(e){return e.move||e.has_scrolled?"all 0.25s":"none"}),(function(e){return e.hide_signup_login?0:e.move&&!e.hide_signup_login?(e.button_ref.current&&e.mounted&&(e.button_ref.current.style.opacity=1),0):e.button_ref.current&&e.mounted?(e.button_ref.current.style.opacity=0,e.button_ref.current.offsetWidth+2+"px"):"300px"}),(function(e){return e.move?"visible":"none"}),(function(e){return e.move?"pointer":"default"})),et=h.ZP.div.withConfig({displayName:"nav__NavGetTrading",componentId:"nysfdc-13"})(["display:inline-flex;text-align:right;align-items:center;justify-content:center;padding:0;"]),tt=h.ZP.li.withConfig({displayName:"nav__NavLink",componentId:"nysfdc-14"})(["list-style-type:none;display:flex;align-items:center;text-align:center;margin-right:2.4rem;&:last-child{margin-right:0;}@media ","{margin-right:1rem;}",""],Y.Z.laptopM,(function(e){if(e.margin)return"margin: 0 4rem;"})),it=(0,h.ZP)(S.UE).withConfig({displayName:"nav__StyledLink",componentId:"nysfdc-15"})(["",""],we.S),nt=h.ZP.span.withConfig({displayName:"nav__StyledButton",componentId:"nysfdc-16"})([""," cursor:pointer;user-select:none;white-space:nowrap;@media ","{padding:0.5rem 0.8rem;}"],we.S,Y.Z.laptopM),rt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__SignupButton",componentId:"nysfdc-17"})(["margin-left:1.6rem;opacity:0;"]),at=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LinkSignupButton",componentId:"nysfdc-18"})(["opacity:0;margin-left:1.6rem;margin-right:10px;"]),ot=h.ZP.img.withConfig({displayName:"nav__HamburgerMenu",componentId:"nysfdc-19"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;}"]),Mt=h.ZP.img.withConfig({displayName:"nav__HamburgerMenuPartners",componentId:"nysfdc-20"})(["cursor:pointer;display:none;@media (max-width:991px){display:block;cursor:pointer;}"]),ct=h.ZP.img.withConfig({displayName:"nav__CloseMenu",componentId:"nysfdc-21"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;}"]),ut=h.ZP.img.withConfig({displayName:"nav__CloseMenuPartners",componentId:"nysfdc-22"})(["cursor:pointer;display:none;@media ","{display:block;cursor:pointer;}"],Y.Z.tabletL),lt=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLinkMobileMain",componentId:"nysfdc-23"})(["cursor:pointer;display:none;@media (max-width:1060px){display:block;cursor:pointer;margin-left:2rem;}"]),gt=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLinkMobile",componentId:"nysfdc-24"})(["cursor:pointer;display:none;@media ","{display:block;cursor:pointer;margin-left:2rem;}"],Y.Z.tabletL),Nt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__NowrapButton",componentId:"nysfdc-25"})(["white-space:nowrap;"]),mt=(0,h.ZP)(he.zx).withConfig({displayName:"nav__MobileButton",componentId:"nysfdc-26"})(["display:none;font-size:14px;margin-left:",";@media (max-width:1060px){display:block;}@media ","{font-size:12px;}"],(function(e){var t=e.margin_left;return null!=t?t:"1.6rem"}),Y.Z.mobileL),jt=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LinkMobileLogin",componentId:"nysfdc-27"})(["display:none;font-size:14px;@media ","{display:block;margin-left:auto;}@media ","{font-size:var(--text-size-xxs);margin-left:10px;}"],Y.Z.tabletL,Y.Z.mobileL),st=function(e,t){window.scrollY>400?e():t()},dt=h.ZP.div.withConfig({displayName:"nav__MobileRightMain",componentId:"nysfdc-28"})(["margin-left:auto;display:none;align-items:center;@media (max-width:1060px){display:flex;}"]),Lt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoDescription",componentId:"nysfdc-29"})(["@media (max-width:525px){display:none;}"]),yt=function(){(0,C.dg)(),ke.redirectToLogin()},It=function(){var e=(0,C.dg)(),t=(0,C.qf)(ve.MN+"/"+e,(0,C.G3)());window.location.href=t},Dt=function(e){var t=e.is_ppc,i=e.is_ppc_redirect,r=e.is_logged_in,a=e.hide_signup_login,o=e.academy_logo,M=e.no_language,c=(0,f.zi)(),u=c[0],l=c[1],g=c[2];return n.createElement(Fe,{width:"95%"},u?n.createElement(ct,{src:_e,alt:"close menu",onClick:g,width:"16px"}):n.createElement(ot,{src:be,alt:"hamburger",onClick:l,width:"16px"}),n.createElement(lt,{to:"/","aria-label":(0,S.NC)("Home")},n.createElement(A.kC,null,n.createElement("img",{src:Ye,alt:"logo only",width:"115px"}),n.createElement(Lt,{ai:"center"},n.createElement(Be,null),o?n.createElement("img",{src:Ze,alt:"Academy"}):n.createElement("img",{src:Qe,alt:"logo combined shape"})))),n.createElement(dt,null,!M&&n.createElement(S.Ww,{short_name:"true",is_high_nav:!0}),!a&&n.createElement(n.Fragment,null,r?n.createElement(mt,{margin_left:"0.8rem",onClick:It,primary:!0},n.createElement("span",null,(0,S.NC)("Get Trading"))):n.createElement(mt,{id:"dm-mobile-nav-login-button",margin_left:"0.8rem",onClick:yt,primary:!0},n.createElement("span",null,(0,S.NC)("Log in"))))),n.createElement(f.o3,{is_canvas_menu_open:u,closeOffCanvasMenu:g,is_ppc:t,is_ppc_redirect:i}))},pt=function(e){var t=e.base,i=e.is_ppc,r=e.is_ppc_redirect,a=e.is_logged_in,o=e.hide_signup_login,M=e.academy_logo,c=e.no_language,u=(0,k.useStaticQuery)("2998272888"),l=(0,n.useRef)(null),g=(0,n.useRef)(null),N=(0,n.useState)(!1),m=N[0],j=N[1],s=(0,n.useState)(!1),d=s[0],L=s[1],y=(0,n.useState)(""),I=y[0],D=y[1],p=(0,n.useState)(null),x=p[0],T=p[1],z=(0,n.useState)(null),E=z[0],h=z[1],C=Gt(),w=C[0],A=C[1],O=C[2],v=Ce("main"),b=r?"/landing/signup/":"/signup/",_=(0,n.useCallback)((function(){L(!0),st(A,O)})),Y=function(e){return e===I||e===v},Q=function(e,t){D(e),t&&T(t)},Z=function(){return!c&&n.createElement(S.Ww,{short_name:"true",is_high_nav:!0})};return(0,Ee.O)(g,(function(){return D("")}),E),(0,n.useEffect)((function(){return j(!0),document.addEventListener("scroll",_,{passive:!0}),function(){document.removeEventListener("scroll",_)}}),[]),n.createElement(n.Fragment,null,I&&n.createElement(ze,{key:I,current_ref:x,parent:I,is_ppc:i,is_ppc_redirect:r,setActiveDropdown:function(e){return h(e)}}),n.createElement(Fe,null,n.createElement(Xe,null,n.createElement(Re,{to:r?"/landing":t||"/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:u.deriv,alt:(0,S.NC)("Deriv"),max_width:"16.4rem",width:"100%",height:"auto"})),n.createElement(Be,null),M?n.createElement("img",{src:Ze,alt:"Academy"}):n.createElement("img",{src:Qe,alt:"logo combined shape"})),n.createElement($e,{ref:g},n.createElement(tt,{onClick:function(e){return Q("trade",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Trade"),active:Y("trade")},(0,S.NC)("Trade"))),n.createElement(tt,{onClick:function(e){return Q("markets",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Markets"),active:Y("markets")},(0,S.NC)("Markets"))),n.createElement(tt,{onClick:function(e){return Q("about",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("About us"),active:Y("about")},(0,S.NC)("About us"))),n.createElement(tt,{onClick:function(e){return Q("resources",e.target)}},n.createElement(nt,{"aria-label":(0,S.NC)("Resources"),active:Y("resources")},(0,S.NC)("Resources")))),a?n.createElement(et,null,n.createElement(Z,null),n.createElement(Nt,{onClick:It,primary:!0},n.createElement("span",null,(0,S.NC)("Get Trading")))):n.createElement(Ke,{move:w,hide_signup_login:o,button_ref:l,mounted:m,has_scrolled:d},n.createElement(Z,null),!o&&n.createElement(Nt,{id:"dm-nav-login-button",onClick:yt,primary:!0},n.createElement("span",null,(0,S.NC)("Log in"))),n.createElement(S.UE,{id:"dm-signup",to:b},!o&&n.createElement(rt,{id:"dm-nav-signup",ref:l,secondary:"true"},n.createElement("span",null,(0,S.NC)("Create free demo account")))))))},xt=function(e){var t=e.base,i=e.is_ppc_redirect,r=e.is_ppc,a=e.hide_signup_login,o=e.academy_logo,M=e.no_language,c=(0,n.useState)(!1),u=c[0],l=c[1];return(0,n.useEffect)((function(){l((0,C.jl)());var e=setInterval((function(){l((0,C.jl)())}),800);return function(){return clearInterval(e)}}),[]),n.createElement(n.Fragment,null,n.createElement(Pe,null,n.createElement(He,null,n.createElement(A.di.Desktop,{max_width:"bp1060"},n.createElement(pt,{no_language:M,academy_logo:o,base:t,is_ppc:r,is_ppc_redirect:i,is_logged_in:u,hide_signup_login:a})),n.createElement(A.di.Mobile,{min_width:"bp1060"},n.createElement(Dt,{no_language:M,academy_logo:o,is_ppc:r,is_logged_in:u,hide_signup_login:a})))),n.createElement(Hi,null))},Tt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__Auto",componentId:"nysfdc-30"})(["@media ","{width:100%;}"],Y.Z.mobileM),zt=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__LeftButton",componentId:"nysfdc-31"})(["margin-left:0.8rem;@media ","{padding:1rem;}"],Y.Z.mobileL),Et=(0,h.ZP)(Re).withConfig({displayName:"nav__StyledLogo",componentId:"nysfdc-32"})(["max-width:31rem;@media ","{display:none;}@media (max-width:340px){& svg{width:11rem;}}"],Y.Z.mobileL),ht=h.ZP.div.withConfig({displayName:"nav__NavInterimContainer",componentId:"nysfdc-33"})(["position:relative;"]),Ct=function(e){var t=e.interim_type;return n.createElement(We,null,n.createElement(ht,null,n.createElement(A.W2,{jc:"space-between",p:"2.4rem 0"},n.createElement(A.kC,{ai:"center",jc:"flex-start"},n.createElement(A.di.Desktop,null,n.createElement(Et,{to:"/interim/"+t,"aria-label":(0,S.NC)("Home")},n.createElement(A.kC,{ai:"center"},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkwIiBoZWlnaHQ9IjI3IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCB4MT0iNTAlIiB5MT0iMCUiIHgyPSI1MCUiIHkyPSIxMDAlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGNjU0NCIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRjQ0NDkiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJNNi4xMyAwdi4wM0wxNi4zMTQgMTMuNSAwIDI2Ljk3VjI3aDE2LjQ3NGM0LjgwNyAwIDguOTc5LTMuMzczIDEwLjA2LTguMTM2bDEuMzYzLTYuMDA4YTEwLjYzIDEwLjYzIDAgMDAtMS45OC04Ljg5NEExMC4yNjEgMTAuMjYxIDAgMDAxNy44NCAwSDYuMTN6IiBmaWxsPSJ1cmwoI2EpIi8+PHBhdGggZmlsbD0iI0I1MUEzMSIgZD0iTTE2LjMwOCAxMy41MjdMOS4xNDQgMjdIMHoiLz48cGF0aCBkPSJNMTM5Ljg4MyAwbDMuNjIgMTguODhMMTUzLjY3IDBoNi4yNTRMMTQ0LjU4IDI3aC01LjEyM2wtNS45NzctMjdoNi40MDJ6TTQ5LjkzMSAwYzguMjc5IDAgMTMuMDEgNS43ODIgMTEuNzAyIDEzLjMyN2wtLjAxMy4wNzZDNjAuMzEgMjAuOTUgNTMuNTcgMjYuODEgNDUuMjgyIDI2LjgxSDM1TDM5LjY0NyAwaDEwLjI4NHptNTcuMjIgMGMzLjM1MiAwIDUuNzg0Ljk1OSA3LjIwMyAyLjcyIDEuMjEgMS40OTIgMS42NCAzLjYgMS4xOTcgNi4xMjdsLS4wMTMuMDc3Yy0uNzQyIDQuMzI2LTMuNTEgNy4wNDYtNy4wODIgOC4zMTFsNC43NzggOS41NzRoLTYuNzhsLTYuMzEtMTMuNzkzaDQuMzY0YzIuODI2IDAgNC43MTItMS41NDEgNS4xMDMtMy43OTFsLjAxNC0uMDc2Yy40MzgtMi41MjMtMS4wNy0zLjgyNS0zLjg5NS0zLjgyNWgtNS43NTRsLTMuNzI3IDIxLjQ4NWgtNS44TDk1LjA5NiAwaDEyLjA1NHptMjEuNjIgMGwtNC42NDcgMjYuODA5aC01LjgwMkwxMjIuOTcyIDBoNS44em0tMzkuNCAwbC0uOTEyIDUuMjQ3SDc0LjMzNmwtLjk0NSA1LjQzOGg5LjExOGwtLjkxIDUuMjQ3aC05LjExN2wtLjk3NiA1LjYyNWgxNC4zMTNsLS45MSA1LjI0N0g2NC44MzRMNjkuNDgxIDBoMTkuODl6TTQ5LjAwOCA1LjMyNGgtNC40ODFsLTIuODA0IDE2LjE2MWg0LjQ4NGM0Ljc0NCAwIDguNTEtMy4yNTUgOS4zMzQtOC4wMDVsLjAxMy0uMDc3Yy44MjQtNC43NDctMS43OTktOC4wOC02LjU0Ni04LjA4eiIgZmlsbD0iI0ZGRiIvPjwvZz48cGF0aCBzdHJva2U9IiNGRkYiIGQ9Ik0xNzkuNSAwdjI3Ii8+PC9nPjwvc3ZnPg==",alt:"logo",width:"190",height:"27"}),n.createElement("img",{src:Qe,alt:"logo combined shape desktop",width:"120",height:"17"})))),n.createElement(A.di.Mobile,null,n.createElement(gt,{to:"/interim/"+t,"aria-label":(0,S.NC)("Home")},n.createElement(A.kC,null,n.createElement("img",{src:Ye,alt:"logo only 2",width:"115",height:"27"}),n.createElement(Lt,{ai:"center"},n.createElement(Be,null),n.createElement("img",{src:Qe,alt:"logo combined shape mobile",width:"120",height:"17"})))))),n.createElement(Tt,{jc:"flex-end",ai:"center"},n.createElement(S.Ww,{short_name:"true"}),n.createElement(zt,{secondary:!0,to:"/"},(0,S.NC)("Explore Deriv.com"))))),n.createElement(Hi,null))},wt=function(e){var t=e.is_ppc;return n.createElement(n.Fragment,null,n.createElement(qe,null,n.createElement(Re,{mw:"31rem",to:"/","aria-label":(0,S.NC)("Home")},n.createElement(A.kC,{ai:"center"},n.createElement("img",{src:Ye,alt:"logo only nav static",width:"160px",height:"27px"}),n.createElement(Be,null),n.createElement("img",{src:Qe,alt:"logo combined shape nav static",width:"120",height:"17"})))),n.createElement(Hi,{is_ppc:t}))},At=h.ZP.div.withConfig({displayName:"nav__DerivHomeWrapper",componentId:"nysfdc-34"})(["background-color:var(--color-black);border-bottom:1px solid rgba(255,255,255,0.1);height:3rem;"]),ft=(0,h.ZP)(S.UE).withConfig({displayName:"nav__HomeLink",componentId:"nysfdc-35"})(["margin-right:3.2rem;text-decoration:none;"]),St=(0,h.ZP)(A.W2).withConfig({displayName:"nav__HomeContainer",componentId:"nysfdc-36"})(["height:100%;"]),Ot=h.ZP.ul.withConfig({displayName:"nav__StyledNavCenter",componentId:"nysfdc-37"})(["text-align:center;padding:0;display:flex;justify-content:center;line-height:1.2;margin-left:13.3rem;white-space:nowrap;@media (max-width:1300px){font-size:12px;}@media (max-width:991px){display:none;}"]),vt=(0,h.ZP)(Ke).withConfig({displayName:"nav__StyledNavRight",componentId:"nysfdc-38"})(["margin-left:auto;transform:translateX( "," );> a{pointer-events:visible;cursor:pointer;}> a:last-child{pointer-events:",";cursor:",";opacity:",";}"],(function(e){return e.move?(e.button_ref.current&&e.mounted&&(e.button_ref.current.style.opacity=1),"50px"):e.button_ref.current&&e.mounted?(e.button_ref.current.style.opacity=0,e.button_ref.current.offsetWidth+50+"px"):"225px"}),(function(e){return e.move?"visible":"none"}),(function(e){return e.move?"pointer":"default"}),(function(e){return e.move?1:0})),kt=(0,h.ZP)(Fe).withConfig({displayName:"nav__StyledNavWrapper",componentId:"nysfdc-39"})(["justify-content:flex-start;@media ","{justify-content:",";}","{margin:0 2.4rem;}"],Y.Z.tabletL,(function(e){return e.no_login_signup?"flex-start":"space-between"}),gt),bt=(0,h.ZP)(A.di.Mobile).withConfig({displayName:"nav__Mobile",componentId:"nysfdc-40"})(["width:100%;"]),_t=h.ZP.img.withConfig({displayName:"nav__ResLogo",componentId:"nysfdc-41"})(["width:115px;@media ","{width:98px;}@media (max-width:336px){width:82px;}"],Y.Z.mobileM),Yt=(0,h.ZP)(Re).withConfig({displayName:"nav__NavLogoLink",componentId:"nysfdc-42"})(["@media (max-width:1300px){& svg,.gatsby-image-wrapper{width:25rem;}}@media (max-width:1150px){& svg,.gatsby-image-wrapper{width:23rem;}}@media (max-width:1105px){& svg,.gatsby-image-wrapper{width:23rem;}}"]),Qt=(0,h.ZP)(A.W2).withConfig({displayName:"nav__LSContainer",componentId:"nysfdc-43"})(["text-align:right;margin-left:200px;"]),Zt=(0,h.ZP)(A.di.Desktop).withConfig({displayName:"nav__DesktopLS",componentId:"nysfdc-44"})(["z-index:2;"]),Ut=(0,h.ZP)(A.W2).withConfig({displayName:"nav__StyledContainer",componentId:"nysfdc-45"})(["margin:0;"]),Pt=function(e){var t=e.no_login_signup,i=(0,n.useRef)(null),r=(0,n.useRef)(null),a=Gt(),o=a[0],M=a[1],c=a[2],u=(0,n.useState)(!1),l=u[0],g=u[1],N=(0,n.useState)(!1),m=N[0],j=N[1],s=Ce("partners"),d=function(){j(!0),st(M,c)};(0,n.useEffect)((function(){if(g(!0),!t)return document.addEventListener("scroll",d,{passive:!0}),function(){document.removeEventListener("scroll",d)}}),[]);var L=(0,f.zi)(),y=L[0],I=L[1],D=L[2];return n.createElement(n.Fragment,null,n.createElement(Ge,{ref:i},n.createElement(At,null,n.createElement(St,{justify:"space-between"},n.createElement(Ut,{justify:"flex-start"},n.createElement(ft,{to:"/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("Deriv website"))),n.createElement(ft,{to:"/story/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("About us"))),n.createElement(ft,{to:"/contact_us/"},n.createElement(f.xv,{color:"grey-19",size:"var(--text-size-xxs)"},(0,S.NC)("Contact us")))),n.createElement(Zt,null,n.createElement(Qt,null,n.createElement(S.Ww,{short_name:"true"}))))),n.createElement(Je,null,n.createElement(kt,{no_login_signup:!0},n.createElement(Ve,null,n.createElement(Yt,{to:"/partners/","aria-label":(0,S.NC)("Partners")},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyODQiIGhlaWdodD0iMjciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0icHJlZml4X19hIiB4MT0iNTAlIiB4Mj0iNTAlIiB5MT0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjRkY2NTQ0Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY0NDQ5Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0xOTIgMjEuNzUyVjVoNy4yYzEuNTUyIDAgMi43NTIuNDU2IDMuNiAxLjM2OC44NDguOTEyIDEuMjcyIDIuMTM2IDEuMjcyIDMuNjcycy0uNDI0IDIuNzYtMS4yNzIgMy42NzJjLS44NDguOTEyLTIuMDQ4IDEuMzY4LTMuNiAxLjM2OGgtNC40ODh2Ni42NzJIMTkyem0yLjcxMi05LjA0OGg0LjMyYy42ODggMCAxLjIyNC0uMTggMS42MDgtLjU0LjM4NC0uMzYuNTc2LS44NzYuNTc2LTEuNTQ4VjkuNDY0YzAtLjY3Mi0uMTkyLTEuMTg4LS41NzYtMS41NDgtLjM4NC0uMzYtLjkyLS41NC0xLjYwOC0uNTRoLTQuMzJ2NS4zMjh6TTIxNiAyMS43NTJjLS42ODggMC0xLjIxNi0uMTk2LTEuNTg0LS41ODgtLjM2OC0uMzkyLS41OTItLjg5Mi0uNjcyLTEuNWgtLjEyYy0uMjQuNzg0LS42OCAxLjM3Ni0xLjMyIDEuNzc2LS42NC40LTEuNDE2LjYtMi4zMjguNi0xLjI5NiAwLTIuMjkyLS4zMzYtMi45ODgtMS4wMDgtLjY5Ni0uNjcyLTEuMDQ0LTEuNTc2LTEuMDQ0LTIuNzEyIDAtMS4yNDguNDUyLTIuMTg0IDEuMzU2LTIuODA4LjkwNC0uNjI0IDIuMjI4LS45MzYgMy45NzItLjkzNmgyLjI1NlYxMy41MmMwLS43NjgtLjIwOC0xLjM2LS42MjQtMS43NzYtLjQxNi0uNDE2LTEuMDY0LS42MjQtMS45NDQtLjYyNC0uNzM2IDAtMS4zMzYuMTYtMS44LjQ4LS40NjQuMzItLjg1Ni43MjgtMS4xNzYgMS4yMjRsLTEuNTYtMS40MTZjLjQxNi0uNzA0IDEtMS4yODQgMS43NTItMS43NC43NTItLjQ1NiAxLjczNi0uNjg0IDIuOTUyLS42ODQgMS42MTYgMCAyLjg1Ni4zNzYgMy43MiAxLjEyOC44NjQuNzUyIDEuMjk2IDEuODMyIDEuMjk2IDMuMjR2Ni4yNjRoMS4zMnYyLjEzNkgyMTZ6bS01LjI4LTEuNzA0Yy44MTYgMCAxLjQ4OC0uMTggMi4wMTYtLjU0LjUyOC0uMzYuNzkyLS44NDQuNzkyLTEuNDUydi0xLjhoLTIuMjA4Yy0xLjgwOCAwLTIuNzEyLjU2LTIuNzEyIDEuNjh2LjQzMmMwIC41Ni4xODguOTguNTY0IDEuMjYuMzc2LjI4Ljg5Mi40MiAxLjU0OC40MnptOS4zMTIgMS43MDRWOS4yNzJoMi42MTZ2Mi40aC4xMmMuMTc2LS42NC41NDQtMS4yIDEuMTA0LTEuNjhzMS4zMzYtLjcyIDIuMzI4LS43MmguNjk2djIuNTJoLTEuMDMyYy0xLjA0IDAtMS44MzYuMTY4LTIuMzg4LjUwNC0uNTUyLjMzNi0uODI4LjgzMi0uODI4IDEuNDg4djcuOTY4aC0yLjYxNnptMTIuNjQ4IDBjLS45MTIgMC0xLjYtLjIzNi0yLjA2NC0uNzA4LS40NjQtLjQ3Mi0uNjk2LTEuMTQtLjY5Ni0yLjAwNHYtNy42MzJoLTEuOTQ0VjkuMjcyaDEuMDU2Yy40MzIgMCAuNzMyLS4wOTYuOS0uMjg4LjE2OC0uMTkyLjI1Mi0uNTA0LjI1Mi0uOTM2VjUuODY0aDIuMzUydjMuNDA4aDIuNjE2djIuMTM2aC0yLjYxNnY4LjIwOGgyLjQyNHYyLjEzNmgtMi4yOHptNS4zMDQgMFY5LjI3MmgyLjYxNnYyLjA2NGguMTJhNC4xMTQgNC4xMTQgMCAwMTEuMjM2LTEuNjhjLjU1Mi0uNDQ4IDEuMzA4LS42NzIgMi4yNjgtLjY3MiAxLjI4IDAgMi4yNzYuNDIgMi45ODggMS4yNi43MTIuODQgMS4wNjggMi4wMzYgMS4wNjggMy41ODh2Ny45MmgtMi42MTZ2LTcuNTg0YzAtMS45NTItLjc4NC0yLjkyOC0yLjM1Mi0yLjkyOC0uMzM2IDAtLjY2OC4wNDQtLjk5Ni4xMzItLjMyOC4wODgtLjYyLjIyLS44NzYuMzk2LS4yNTYuMTc2LS40Ni40LS42MTIuNjcyYTEuOTM2IDEuOTM2IDAgMDAtLjIyOC45NnY4LjM1MmgtMi42MTZ6bTE4LjgxNi4yODhjLS44OTYgMC0xLjY5Ni0uMTUyLTIuNC0uNDU2YTQuOTc3IDQuOTc3IDAgMDEtMS44LTEuMzA4Yy0uNDk2LS41NjgtLjg3Ni0xLjI1Ni0xLjE0LTIuMDY0LS4yNjQtLjgwOC0uMzk2LTEuNzA4LS4zOTYtMi43IDAtLjk5Mi4xMzItMS44OTIuMzk2LTIuNy4yNjQtLjgwOC42NDQtMS40OTYgMS4xNC0yLjA2NGE0Ljk3NyA0Ljk3NyAwIDAxMS44LTEuMzA4Yy43MDQtLjMwNCAxLjUwNC0uNDU2IDIuNC0uNDU2LjkxMiAwIDEuNzE2LjE2IDIuNDEyLjQ4LjY5Ni4zMiAxLjI3Ni43NjQgMS43NCAxLjMzMmE1Ljc5MSA1Ljc5MSAwIDAxMS4wNDQgMS45OGMuMjMyLjc1Mi4zNDggMS41Ni4zNDggMi40MjR2Ljk4NGgtOC41Njh2LjQwOGMwIC45Ni4yODQgMS43NDguODUyIDIuMzY0LjU2OC42MTYgMS4zOC45MjQgMi40MzYuOTI0Ljc2OCAwIDEuNDE2LS4xNjggMS45NDQtLjUwNGE0LjM5MyA0LjM5MyAwIDAwMS4zNDQtMS4zNjhsMS41MzYgMS41MTJjLS40NjQuNzY4LTEuMTM2IDEuMzgtMi4wMTYgMS44MzYtLjg4LjQ1Ni0xLjkwNC42ODQtMy4wNzIuNjg0em0wLTExLjAxNmMtLjQ0OCAwLS44Ni4wOC0xLjIzNi4yNC0uMzc2LjE2LS42OTYuMzg0LS45Ni42NzJhMy4wMjEgMy4wMjEgMCAwMC0uNjEyIDEuMDMyYy0uMTQ0LjQtLjIxNi44NC0uMjE2IDEuMzJ2LjE2OGg1LjgwOHYtLjI0YzAtLjk2LS4yNDgtMS43MzItLjc0NC0yLjMxNi0uNDk2LS41ODQtMS4xNzYtLjg3Ni0yLjA0LS44NzZ6bTguNDQ4IDEwLjcyOFY5LjI3MmgyLjYxNnYyLjRoLjEyYy4xNzYtLjY0LjU0NC0xLjIgMS4xMDQtMS42OHMxLjMzNi0uNzIgMi4zMjgtLjcyaC42OTZ2Mi41MmgtMS4wMzJjLTEuMDQgMC0xLjgzNi4xNjgtMi4zODguNTA0LS41NTIuMzM2LS44MjguODMyLS44MjggMS40ODh2Ny45NjhoLTIuNjE2em0xMy4xNTIuMjg4Yy0xLjE4NCAwLTIuMTc2LS4yMDgtMi45NzYtLjYyNGE2LjUyOCA2LjUyOCAwIDAxLTIuMDg4LTEuNzI4bDEuNjgtMS41MzZjLjQ2NC41Ni45OC45OTYgMS41NDggMS4zMDguNTY4LjMxMiAxLjIyOC40NjggMS45OC40NjguNzY4IDAgMS4zNC0uMTQ4IDEuNzE2LS40NDQuMzc2LS4yOTYuNTY0LS43MDguNTY0LTEuMjM2IDAtLjQtLjEzMi0uNzQtLjM5Ni0xLjAycy0uNzI0LS40Ni0xLjM4LS41NGwtMS4xNTItLjE0NGMtMS4yOC0uMTYtMi4yODQtLjUzMi0zLjAxMi0xLjExNi0uNzI4LS41ODQtMS4wOTItMS40NTItMS4wOTItMi42MDQgMC0uNjA4LjExMi0xLjE0OC4zMzYtMS42MmEzLjM4IDMuMzggMCAwMS45NDgtMS4yYy40MDgtLjMyOC44OTYtLjU4IDEuNDY0LS43NTZhNi4zNDUgNi4zNDUgMCAwMTEuODg0LS4yNjRjMS4xMiAwIDIuMDM2LjE3NiAyLjc0OC41MjhhNi4zMSA2LjMxIDAgMDExLjkwOCAxLjQ2NGwtMS42MDggMS41MzZjLS4zMi0uMzg0LS43NC0uNzE2LTEuMjYtLjk5NnMtMS4xMTYtLjQyLTEuNzg4LS40MmMtLjcyIDAtMS4yNTIuMTQ0LTEuNTk2LjQzMmExLjQgMS40IDAgMDAtLjUxNiAxLjEyOGMwIC40OC4xNTIuODQuNDU2IDEuMDguMzA0LjI0Ljc5Mi40MTYgMS40NjQuNTI4bDEuMTUyLjE0NGMxLjM3Ni4yMDggMi4zOC42MTIgMy4wMTIgMS4yMTIuNjMyLjYuOTQ4IDEuNDA0Ljk0OCAyLjQxMiAwIC42MDgtLjExNiAxLjE1Ni0uMzQ4IDEuNjQ0YTMuNjEgMy42MSAwIDAxLS45OTYgMS4yNiA0LjY2MiA0LjY2MiAwIDAxLTEuNTYuODE2Yy0uNjA4LjE5Mi0xLjI4OC4yODgtMi4wNC4yODh6Ii8+PGcgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBmaWxsPSJ1cmwoI3ByZWZpeF9fYSkiIGQ9Ik02LjEzIDB2LjAzTDE2LjMxNCAxMy41IDAgMjYuOTdWMjdoMTYuNDc0YzQuODA3IDAgOC45NzktMy4zNzMgMTAuMDYtOC4xMzZsMS4zNjMtNi4wMDhhMTAuNjMgMTAuNjMgMCAwMC0xLjk4LTguODk0QTEwLjI2IDEwLjI2IDAgMDAxNy44NCAwSDYuMTN6Ii8+PHBhdGggZmlsbD0iI0I1MUEzMSIgZD0iTTE2LjMwOCAxMy41MjdMOS4xNDQgMjdIMHoiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTM5Ljg4MyAwbDMuNjIgMTguODhMMTUzLjY3IDBoNi4yNTRMMTQ0LjU4IDI3aC01LjEyM0wxMzMuNDggMGg2LjQwMnpNNDkuOTMxIDBjOC4yNzkgMCAxMy4wMSA1Ljc4MiAxMS43MDIgMTMuMzI3bC0uMDEzLjA3NkM2MC4zMSAyMC45NSA1My41NyAyNi44MSA0NS4yODIgMjYuODFIMzVMMzkuNjQ3IDBoMTAuMjg0em01Ny4yMiAwYzMuMzUyIDAgNS43ODQuOTU5IDcuMjAzIDIuNzIgMS4yMSAxLjQ5MiAxLjY0IDMuNiAxLjE5NyA2LjEyN2wtLjAxMy4wNzdjLS43NDIgNC4zMjYtMy41MSA3LjA0Ni03LjA4MiA4LjMxMWw0Ljc3OCA5LjU3NGgtNi43OGwtNi4zMS0xMy43OTNoNC4zNjRjMi44MjYgMCA0LjcxMi0xLjU0MSA1LjEwMy0zLjc5MWwuMDE0LS4wNzZjLjQzOC0yLjUyMy0xLjA3LTMuODI1LTMuODk1LTMuODI1aC01Ljc1NGwtMy43MjcgMjEuNDg1aC01LjhMOTUuMDk2IDBoMTIuMDU0em0yMS42MiAwbC00LjY0NyAyNi44MDloLTUuODAyTDEyMi45NzIgMGg1Ljh6bS0zOS40IDBsLS45MTIgNS4yNDdINzQuMzM2bC0uOTQ1IDUuNDM4aDkuMTE4bC0uOTEgNS4yNDdoLTkuMTE3bC0uOTc2IDUuNjI1aDE0LjMxM2wtLjkxIDUuMjQ3SDY0LjgzNEw2OS40ODEgMGgxOS44OXpNNDkuMDA4IDUuMzI0aC00LjQ4MWwtMi44MDQgMTYuMTYxaDQuNDg0YzQuNzQ0IDAgOC41MS0zLjI1NSA5LjMzNC04LjAwNWwuMDEzLS4wNzdjLjgyNC00Ljc0Ny0xLjc5OS04LjA4LTYuNTQ2LTguMDh6Ii8+PC9nPjxwYXRoIHN0cm9rZT0iI0ZGRiIgZD0iTTE3NiAwdjI3Ii8+PC9nPjwvc3ZnPg==",alt:"logo partner"}))),n.createElement(Ot,null,n.createElement(tt,null,n.createElement(it,{active:"affiliate"===s,activeClassName:"active",to:"/partners/affiliate-ib/","aria-label":(0,S.NC)("Affiliates and IBs")},(0,S.NC)("Affiliates and IBs"))),n.createElement(tt,null,n.createElement(it,{active:"payment"===s,activeClassName:"active",to:"/partners/payment-agent/","aria-label":(0,S.NC)("Payment agents")},(0,S.NC)("Payment agents"))),n.createElement(tt,null,n.createElement(it,{active:"api"===s,activeClassName:"active",to:"",type:"api",target:"_blank",external:"true",rel:"noopener noreferrer","aria-label":(0,S.NC)("API")},(0,S.NC)("API")))),!t&&n.createElement(vt,{move:o,button_ref:r,mounted:l,has_scrolled:m},n.createElement(he.Qj,{to:ve.YH,external:"true",type:"affiliate_sign_in",target:"_blank",primary:!0,style:{width:"16rem"}},n.createElement("span",null,(0,S.NC)("Affiliate & IB log in"))),n.createElement(at,{id:"dm-nav-affiliate-signup",to:ve.z8,external:"true",type:"affiliate_sign_up",target:"_blank",ref:r,secondary:"true",style:{width:"18rem"}},n.createElement("span",null,(0,S.NC)("Affiliate & IB sign up")))),y?n.createElement(ut,{src:_e,alt:"close menu 2",onClick:D,width:"16px"}):n.createElement(Mt,{src:be,alt:"hamburger menu2",onClick:I,width:"16px"}),n.createElement(bt,null,n.createElement(A.kC,{ai:"center"},n.createElement(gt,{to:"/partners/","aria-label":(0,S.NC)("Home")},n.createElement(_t,{src:Ye,alt:"reslogo"})),n.createElement(A.kC,{ml:"auto",ai:"center",width:"auto"},n.createElement(S.Ww,{short_name:"true",is_high_nav:!0})),!t&&n.createElement(jt,{to:ve.YH,type:"affiliate_sign_in",external:"true",target:"_blank",primary:!0},n.createElement(A.di.Desktop,null,n.createElement("span",null,(0,S.NC)("Affiliate & IB log in"))),n.createElement(A.di.Mobile,null,n.createElement("span",null,(0,S.NC)("Log in")))))),n.createElement(f.jT,{is_canvas_menu_open:y,closeOffCanvasMenu:D})))),n.createElement(Hi,null))};function Gt(e){void 0===e&&(e=!1);var t=(0,n.useState)(e),i=t[0],r=t[1];return[i,function(){return r(!i)},function(){return r(!1)}]}(0,h.ZP)(he.Qj).withConfig({displayName:"nav__ButtonWrapper",componentId:"sc-145loah-0"})(["min-width:102px;width:auto;height:auto;white-space:nowrap;@media ","{min-width:76px;font-size:12px;padding:8px 3px;}"],Y.Z.tablet);var Wt=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"sc-145loah-1"})(["background-color:var(--color-black);width:100%;position:fixed;z-index:3;top:0;padding:16px 1%;@media ","{padding:16px;}@media ","{padding:16px 0;}"],Y.Z.tablet,Y.Z.mobileL),Rt=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"sc-145loah-2"})(["justify-content:space-between;"]),Bt=h.ZP.div.withConfig({displayName:"nav__LogoWrapper",componentId:"sc-145loah-3"})(["display:inline-block;"]),Ht=(0,h.ZP)(S.UE).withConfig({displayName:"nav__StyledLogoLink",componentId:"sc-145loah-4"})(["@media ","{img{width:168px;height:16px;}}"],Y.Z.tablet);var Jt=function(){return n.createElement(Wt,null,n.createElement(Rt,null,n.createElement(Bt,null,n.createElement(Ht,{to:"/","aria-label":"Home"},n.createElement("img",{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjg2IiBoZWlnaHQ9IjI3IiBmaWxsPSJub25lIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik02LjEzIDB2LjAyOUwxNi4zMTQgMTMuNSAwIDI2Ljk3MVYyN2gxNi40NzRjNC44MDggMCA4Ljk3OS0zLjM3MyAxMC4wNi04LjEzNmwxLjM2My02LjAwN2ExMC42MyAxMC42MyAwIDAgMC0xLjk4LTguODk0QzIzLjk1OSAxLjQ1OSAyMC45ODUgMCAxNy44MzkgMEg2LjEzeiIgZmlsbD0idXJsKCNBKSIvPjxwYXRoIGQ9Ik0xNi4zMDggMTMuNTI2TDkuMTQ0IDI2Ljk5OUgwbDE2LjMwOC0xMy40NzN6IiBmaWxsPSIjYjUxYTMxIi8+PGcgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTEzOS44ODMgMGwzLjYyIDE4Ljg4TDE1My42NyAwaDYuMjU0bC0xNS4zNDMgMjdoLTUuMTIzbC01Ljk3Ny0yN2g2LjQwMnpNNDkuOTMxIDBjOC4yNzkgMCAxMy4wMSA1Ljc4MyAxMS43MDIgMTMuMzI3bC0uMDEzLjA3NmMtMS4zMSA3LjU0Ny04LjA1MSAxMy40MDYtMTYuMzM5IDEzLjQwNkgzNUwzOS42NDcgMGgxMC4yODR6bTU3LjIxOSAwYzMuMzUzIDAgNS43ODUuOTU5IDcuMjA0IDIuNzIgMS4yMSAxLjQ5MiAxLjY0IDMuNiAxLjE5NyA2LjEyN2wtLjAxMy4wNzdjLS43NDIgNC4zMjctMy41MSA3LjA0Ny03LjA4MiA4LjMxMWw0Ljc3OCA5LjU3NGgtNi43ODFsLTYuMzA5LTEzLjc5M2g0LjM2NGMyLjgyNiAwIDQuNzEyLTEuNTQxIDUuMTAzLTMuNzkxbC4wMTQtLjA3NmMuNDM4LTIuNTIyLTEuMDY5LTMuODI1LTMuODk1LTMuODI1aC01Ljc1NGwtMy43MjcgMjEuNDg1aC01LjhMOTUuMDk2IDBoMTIuMDU0em0yMS42MjIgMGwtNC42NDggMjYuODA5aC01LjgwMkwxMjIuOTcxIDBoNS44MDF6TTg5LjM3MSAwbC0uOTEyIDUuMjQ3SDc0LjMzNmwtLjk0NSA1LjQzOGg5LjExOGwtLjkxIDUuMjQ3aC05LjExOGwtLjk3NiA1LjYyNWgxNC4zMTRsLS45MSA1LjI0N0g2NC44MzRMNjkuNDgxIDBoMTkuODl6TTQ5LjAwOCA1LjMyNGgtNC40ODFsLTIuODA0IDE2LjE2Mmg0LjQ4M2M0Ljc0NSAwIDguNTExLTMuMjU2IDkuMzM0LTguMDA2bC4wMTMtLjA3NmMuODIzLTQuNzQ3LTEuNzk5LTguMDgtNi41NDYtOC4wOHpNMTY4IDBoMXYyN2gtMXptMTAuODQ4IDUuMjQ4aDguMTM2YzEuMzkyIDAgMi40NzIuMzkyIDMuMjQgMS4xNzYuNzg0Ljc4NCAxLjE3NiAxLjgyNCAxLjE3NiAzLjEyIDAgLjY0LS4wODggMS4xODQtLjI2NCAxLjYzMi0uMTYuNDQ4LS4zODQuODE2LS42NzIgMS4xMDRhMi41OCAyLjU4IDAgMCAxLS45ODQuNjQ4Yy0uMzY4LjEyOC0uNzY4LjItMS4yLjIxNnYuMTQ0YTMuOTQgMy45NCAwIDAgMSAxLjI0OC4yMTYgMy40NyAzLjQ3IDAgMCAxIDEuMjI0LjY5NmMuMzY4LjMwNC42NzIuNzA0LjkxMiAxLjIuMjU2LjQ5Ni4zODQgMS4xMDQuMzg0IDEuODI0IDAgLjY1Ni0uMTEyIDEuMjgtLjMzNiAxLjg3Mi0uMjA4LjU3Ni0uNTA0IDEuMDgtLjg4OCAxLjUxMmE0LjM1IDQuMzUgMCAwIDEtMS4zNjggMS4wMzJjLS41MjguMjQtMS4xMDQuMzYtMS43MjguMzZoLTguODhWNS4yNDh6bTMuNjQ4IDEzLjY4aDQuMmMuNDggMCAuODU2LS4xMjggMS4xMjgtLjM4NC4yODgtLjI3Mi40MzItLjY0OC40MzItMS4xMjhWMTYuNmMwLS40OC0uMTQ0LS44NDgtLjQzMi0xLjEwNC0uMjcyLS4yNzItLjY0OC0uNDA4LTEuMTI4LS40MDhoLTQuMnYzLjg0em0wLTYuODE2aDMuNjI0Yy40OCAwIC44NTYtLjEzNiAxLjEyOC0uNDA4cy40MDgtLjY0OC40MDgtMS4xMjh2LS43MmMwLS40OC0uMTM2LS44NTYtLjQwOC0xLjEyOHMtLjY0OC0uNDA4LTEuMTI4LS40MDhoLTMuNjI0djMuNzkyeiIvPjx1c2UgeGxpbms6aHJlZj0iI0IiLz48cGF0aCBkPSJNMjEzLjUyMiAyMi4yODhjLTEuNDcyIDAtMi43Mi0uMjQ4LTMuNzQ0LS43NDQtMS4wMjQtLjUxMi0xLjg5Ni0xLjE2OC0yLjYxNi0xLjk2OGwyLjQtMi40MjRjMS4xMzYgMS4yOCAyLjUzNiAxLjkyIDQuMiAxLjkyLjg5NiAwIDEuNTYtLjE4NCAxLjk5Mi0uNTUycy42NDgtLjg1Ni42NDgtMS40NjRjMC0uNDY0LS4xMjgtLjg0OC0uMzg0LTEuMTUyLS4yNTYtLjMyLS43NzYtLjUzNi0xLjU2LS42NDhsLTEuNjU2LS4yMTZjLTEuNzc2LS4yMjQtMy4wOC0uNzYtMy45MTItMS42MDgtLjgxNi0uODQ4LTEuMjI0LTEuOTc2LTEuMjI0LTMuMzg0IDAtLjc1Mi4xNDQtMS40NC40MzItMi4wNjRhNC42MyA0LjYzIDAgMCAxIDEuMjI0LTEuNjA4Yy41NDQtLjQ0OCAxLjItLjc5MiAxLjk2OC0xLjAzMi43ODQtLjI1NiAxLjY3Mi0uMzg0IDIuNjY0LS4zODQgMS4yNjQgMCAyLjM3Ni4yIDMuMzM2LjZzMS43ODQuOTg0IDIuNDcyIDEuNzUybC0yLjQyNCAyLjQ0OGMtLjQtLjQ2NC0uODg4LS44NC0xLjQ2NC0xLjEyOC0uNTYtLjMwNC0xLjI3Mi0uNDU2LTIuMTM2LS40NTYtLjgxNiAwLTEuNDI0LjE0NC0xLjgyNC40MzJzLS42LjY4OC0uNiAxLjJjMCAuNTc2LjE1Mi45OTIuNDU2IDEuMjQ4LjMyLjI1Ni44MzIuNDQgMS41MzYuNTUybDEuNjU2LjI2NGMxLjcyOC4yNzIgMy4wMDguODA4IDMuODQgMS42MDguODMyLjc4NCAxLjI0OCAxLjkwNCAxLjI0OCAzLjM2IDAgLjgtLjE0NCAxLjUzNi0uNDMyIDIuMjA4cy0uNzEyIDEuMjQ4LTEuMjcyIDEuNzI4Yy0uNTQ0LjQ4LTEuMjI0Ljg1Ni0yLjA0IDEuMTI4LS44MTYuMjU2LTEuNzQ0LjM4NC0yLjc4NC4zODR6bTE3LjA4OC0yLjRoLS4xMmMtLjA5Ni4zMzYtLjI0OC42NTYtLjQ1Ni45Ni0uMjA4LjI4OC0uNDY0LjU0NC0uNzY4Ljc2OC0uMjg4LjIwOC0uNjI0LjM2OC0xLjAwOC40OGEzLjQ4IDMuNDggMCAwIDEtMS4xNTIuMTkyYy0xLjYgMC0yLjgwOC0uNTYtMy42MjQtMS42OC0uODE2LTEuMTM2LTEuMjI0LTIuNzc2LTEuMjI0LTQuOTJzLjQwOC0zLjc3NiAxLjIyNC00Ljg5NiAyLjAyNC0xLjY4IDMuNjI0LTEuNjhjLjgxNiAwIDEuNTM2LjIyNCAyLjE2LjY3Mi42NC40NDggMS4wNDggMS4wMjQgMS4yMjQgMS43MjhoLjEyVjkuNGgzLjU1MnYxNy40aC0zLjU1MnYtNi45MTJ6bS0yLjMyOC0uNDhjLjY3MiAwIDEuMjI0LS4xNiAxLjY1Ni0uNDguNDQ4LS4zMzYuNjcyLS43OTIuNjcyLTEuMzY4di0zLjcyYzAtLjU3Ni0uMjI0LTEuMDI0LS42NzItMS4zNDQtLjQzMi0uMzM2LS45ODQtLjUwNC0xLjY1Ni0uNTA0YTIuMiAyLjIgMCAwIDAtMS42OC43MmMtLjQzMi40NjQtLjY0OCAxLjA5Ni0uNjQ4IDEuODk2djIuMTg0YzAgLjguMjE2IDEuNDQuNjQ4IDEuOTIuNDQ4LjQ2NCAxLjAwOC42OTYgMS42OC42OTZ6bTE2LjY0Mi40OGgtLjEyYTQuMDUgNC4wNSAwIDAgMS0uNDU2LjkxMmMtLjE3Ni4yODgtLjQwOC41NDQtLjY5Ni43NjhzLS42MzIuNC0xLjAzMi41MjhjLS4zODQuMTI4LS44MzIuMTkyLTEuMzQ0LjE5Mi0xLjI5NiAwLTIuMjgtLjQyNC0yLjk1Mi0xLjI3Mi0uNjU2LS44NjQtLjk4NC0yLjA5Ni0uOTg0LTMuNjk2VjkuNGgzLjU1MnY3LjYwOGMwIC43NjguMTM2IDEuMzYuNDA4IDEuNzc2cy43MzYuNjI0IDEuMzkyLjYyNGEyLjg4IDIuODggMCAwIDAgLjgxNi0uMTJjLjI3Mi0uMDguNTEyLS4xOTIuNzItLjMzNi4yMDgtLjE2LjM3Ni0uMzUyLjUwNC0uNTc2YTEuNTcgMS41NyAwIDAgMCAuMTkyLS43OTJWOS40aDMuNTUyVjIyaC0zLjU1MnYtMi4xMTJ6TTI2MS4wOTMgMjJjLS42NCAwLTEuMTc2LS4yLTEuNjA4LS42LS40MTYtLjQtLjY4LS45MzYtLjc5Mi0xLjYwOGgtLjE0NGMtLjE5Mi44MTYtLjYxNiAxLjQ0LTEuMjcyIDEuODcyLS42NTYuNDE2LTEuNDY0LjYyNC0yLjQyNC42MjQtMS4yNjQgMC0yLjIzMi0uMzM2LTIuOTA0LTEuMDA4cy0xLjAwOC0xLjU2LTEuMDA4LTIuNjY0YzAtMS4zMjguNDgtMi4zMTIgMS40NC0yLjk1Mi45NzYtLjY1NiAyLjI5Ni0uOTg0IDMuOTYtLjk4NGgxLjk5MnYtLjc5MmMwLS42MDgtLjE2LTEuMDg4LS40OC0xLjQ0LS4zMi0uMzY4LS44NTYtLjU1Mi0xLjYwOC0uNTUyLS43MDQgMC0xLjI2NC4xNTItMS42OC40NTZhNC41MSA0LjUxIDAgMCAwLTEuMDMyIDEuMDMybC0yLjExMi0xLjg3MmE1LjQzIDUuNDMgMCAwIDEgMS45Mi0xLjc1MmMuNzg0LS40MzIgMS44NC0uNjQ4IDMuMTY4LS42NDggMS43OTIgMCAzLjEzNi4zOTIgNC4wMzIgMS4xNzZzMS4zNDQgMS45MjggMS4zNDQgMy40MzJ2NS41MmgxLjE3NlYyMmgtMS45Njh6bS00LjkyLTIuMTg0Yy41OTIgMCAxLjA5Ni0uMTI4IDEuNTEyLS4zODQuNDMyLS4yNTYuNjQ4LS42NzIuNjQ4LTEuMjQ4di0xLjQ4OGgtMS43MjhjLTEuMzkyIDAtMi4wODguNDcyLTIuMDg4IDEuNDE2di4zNmMwIC40NjQuMTQ0LjgwOC40MzIgMS4wMzIuMjg4LjIwOC42OTYuMzEyIDEuMjI0LjMxMnpNMjY1LjQ0NSAyMlY5LjRoMy41NTJ2Mi43MzZoLjEyYTMuNzQgMy43NCAwIDAgMSAuMzM2LTEuMDA4Yy4xNi0uMzM2LjM2OC0uNjMyLjYyNC0uODg4LjI3Mi0uMjU2LjU5Mi0uNDU2Ljk2LS42LjM2OC0uMTYuOC0uMjQgMS4yOTYtLjI0aC42MjR2My4zMTJoLS44ODhjLTEuMDQgMC0xLjgxNi4xMzYtMi4zMjguNDA4LS40OTYuMjcyLS43NDQuNzc2LS43NDQgMS41MTJWMjJoLTMuNTUyeiIvPjx1c2UgeGxpbms6aHJlZj0iI0IiIHg9IjgwLjM2OCIvPjwvZz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9IkEiIHgxPSIxNC4wODEiIHkxPSIwIiB4Mj0iMTQuMDgxIiB5Mj0iMjciIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmY2NTQ0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmY0NDQ5Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBpZD0iQiIgZD0iTTE5OS45MTkgMjIuMjg4Yy0uOTYgMC0xLjgxNi0uMTUyLTIuNTY4LS40NTYtLjc1Mi0uMzItMS4zOTItLjc2LTEuOTItMS4zMi0uNTEyLS41NzYtLjkwNC0xLjI3Mi0xLjE3Ni0yLjA4OC0uMjU2LS44MTYtLjM4NC0xLjcyOC0uMzg0LTIuNzM2IDAtLjk5Mi4xMjgtMS44ODguMzg0LTIuNjg4LjI1Ni0uODE2LjYzMi0xLjUxMiAxLjEyOC0yLjA4OC41MTItLjU3NiAxLjEzNi0xLjAxNiAxLjg3Mi0xLjMyLjczNi0uMzIgMS41NzYtLjQ4IDIuNTItLjQ4IDEuMDQgMCAxLjkyOC4xNzYgMi42NjQuNTI4Ljc1Mi4zNTIgMS4zNi44MjQgMS44MjQgMS40MTYuNDguNTkyLjgyNCAxLjI4IDEuMDMyIDIuMDY0LjIyNC43NjguMzM2IDEuNTc2LjMzNiAyLjQyNFYxNi42aC04LjA4OHYuMTkyYzAgLjgzMi4yMjQgMS40OTYuNjcyIDEuOTkyLjQ0OC40OCAxLjE1Mi43MiAyLjExMi43Mi43MzYgMCAxLjMzNi0uMTQ0IDEuOC0uNDMyLjQ2NC0uMzA0Ljg5Ni0uNjY0IDEuMjk2LTEuMDhsMS43NzYgMi4yMDhjLS41Ni42NTYtMS4yOTYgMS4xNjgtMi4yMDggMS41MzYtLjg5Ni4zNjgtMS45Mi41NTItMy4wNzIuNTUyem0tLjA3Mi0xMC41NmMtLjcyIDAtMS4yODguMjQtMS43MDQuNzItLjQuNDY0LS42IDEuMDg4LS42IDEuODcydi4xOTJoNC40MTZ2LS4yMTZjMC0uNzY4LS4xNzYtMS4zODQtLjUyOC0xLjg0OC0uMzM2LS40OC0uODY0LS43Mi0xLjU4NC0uNzJ6Ii8+PC9kZWZzPjwvc3ZnPgo=",width:"278",height:"27"}))),false))},Ft=((0,h.ZP)(he.Qj).withConfig({displayName:"footer__ButtonWrapper",componentId:"r7my8u-0"})(["max-width:102px;white-space:nowrap;"]),(0,h.ZP)(A.S$).withConfig({displayName:"footer__Section",componentId:"r7my8u-1"})(["background-color:",";padding:0;"],(function(e){return"var(--color-"+e.color+")"}))),Xt=((0,h.ZP)(A.W2).withConfig({displayName:"footer__ContentContainer",componentId:"r7my8u-2"})(["max-width:1440px;flex-direction:row-reverse;@media ","{flex-direction:column;}"],Y.Z.laptop),h.ZP.div.withConfig({displayName:"footer__FollowUsContainer",componentId:"r7my8u-3"})(["display:grid;grid-template-columns:68px repeat(4,26.67px);grid-column-gap:21px;grid-template-areas:' follow-us icon icon icon icon ';"]),h.ZP.img.withConfig({displayName:"footer__IconWrapper",componentId:"r7my8u-4"})(["width:32px;height:32px;grid-area:icon;margin-top:10px;"]),(0,h.ZP)(f.et).withConfig({displayName:"footer__ImageWrapper",componentId:"r7my8u-5"})(["max-height:402px;max-width:588px;width:100%;overflow:hidden;position:relative;bottom:60px;@media ","{max-width:250px;max-height:224px;margin:0 auto;bottom:40px;}"],Y.Z.tablet),h.ZP.div.withConfig({displayName:"footer__TextContainer",componentId:"r7my8u-6"})(["display:grid;justify-content:start;padding:80px 0 72px;grid-row-gap:24px;margin-right:104px;@media ","{padding:0 0 28px;margin:0;justify-content:center;}"],Y.Z.laptop),(0,h.ZP)(f.h4).withConfig({displayName:"footer__Title",componentId:"r7my8u-7"})(["max-width:400px;width:fit-content;font-size:48px;font-weight:700;line-height:60px;color:var(--color-white);@media ","{max-width:250px;font-size:28px;line-height:34px;}"],Y.Z.tablet),(0,h.ZP)(f.xv).withConfig({displayName:"footer__TextWrapper",componentId:"r7my8u-8"})(["display:",";max-width:",";width:fit-content;font-size:",";font-weight:400;line-height:",";color:var(--color-white);padding:",";margin:",";@media ","{grid-area:",";margin:",";}@media ","{max-width:",";font-size:",";line-height:",";padding:",";margin:0;}"],(function(e){return e.display}),(function(e){var t=e.max_width;return t?t[0]:"unset"}),(function(e){var t;return null!==(t=e.font_size[0])&&void 0!==t?t:"unset"}),(function(e){var t;return null!==(t=e.line_height[0])&&void 0!==t?t:"unset"}),(function(e){var t=e.padding;return t?t[0]:0}),(function(e){return e.margin}),Y.Z.laptopM,(function(e){return e.grid_area}),(function(e){var t=e.margin;return null!=t?t:"0 auto"}),Y.Z.mobileL,(function(e){var t,i=e.max_width;return i?null!==(t=i[1])&&void 0!==t?t:i[0]:"unset"}),(function(e){var t,i,n=e.font_size;return null!==(t=null!==(i=n[1])&&void 0!==i?i:n[0])&&void 0!==t?t:"unset"}),(function(e){var t,i,n=e.line_height;return null!==(t=null!==(i=n[1])&&void 0!==i?i:n[0])&&void 0!==t?t:"unset"}),(function(e){var t,i=e.padding;return i?null!==(t=i[1])&&void 0!==t?t:i[0]:0})));(0,h.ZP)(Xt).attrs({as:"a"}).withConfig({displayName:"footer__Link",componentId:"r7my8u-9"})(["color:var(--color-red);text-decoration:none;"]);var Vt=function(){(0,k.useStaticQuery)("3480019573");return n.createElement(n.Fragment,null,!1,n.createElement(Ft,{color:"black-3"},n.createElement(Xt,{max_width:["100%"],font_size:["14px"],line_height:["19.6px"],padding:["21px 120px","19px 16px"]},"© ",(0,S.NC)("2021 Deriv | All rights reserved"))))},qt=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"sc-16qeu2d-0"})(["background-color:var(--color-black);width:100%;position:fixed;z-index:3;top:0;padding:22px 1%;height:72px;@media ","{padding:16px;height:48px;}@media ","{padding:16px 0;}"],Y.Z.tabletL,Y.Z.mobileL),$t=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"sc-16qeu2d-1"})(["justify-content:space-between;@media ","{justify-content:center;}"],Y.Z.tabletL),Kt=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoWrapper",componentId:"sc-16qeu2d-2"})(["align-items:center;width:293px;@media ","{width:176px;}"],Y.Z.tabletL),ei=h.ZP.img.withConfig({displayName:"nav__ImgWrapper",componentId:"sc-16qeu2d-3"})(["width:120px;height:16px;@media ","{width:75px;height:10px;}"],Y.Z.tabletL),ti=h.ZP.div.withConfig({displayName:"nav__Line",componentId:"sc-16qeu2d-4"})(["width:1px;height:28px;margin-right:8px;margin-left:8px;background-color:var(--color-white);@media ","{height:16px;}"],Y.Z.tabletL),ii=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLink",componentId:"sc-16qeu2d-5"})(["text-decoration:none;width:100%;"]),ni=function(e){var t=e.is_ppc,i=(0,k.useStaticQuery)("2998272888");return n.createElement(n.Fragment,null,n.createElement(qt,null,n.createElement($t,null,n.createElement(Kt,null,n.createElement(ii,{to:"/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:i.deriv,alt:(0,S.NC)("Deriv"),max_width:"16.4rem",width:"100%",height:"auto"})),n.createElement(ti,null),n.createElement(ei,{src:Qe})))),n.createElement(Hi,{is_ppc:t}))},ri=(0,h.ZP)(A.S$).withConfig({displayName:"nav__Section",componentId:"d0midy-0"})(["background-color:",";width:100%;position:fixed;z-index:5;top:0;padding:16px 1%;height:72px;@media ","{padding:16px;height:64px;}@media ","{padding:16px 0;}"],(function(e){return e.background?"transparent":"var(--color-black)"}),Y.Z.tabletL,Y.Z.mobileL),ai=(0,h.ZP)(A.W2).withConfig({displayName:"nav__ContentContainer",componentId:"d0midy-1"})(["justify-content:space-between;@media ","{justify-content:center;}"],Y.Z.tabletL),oi=(0,h.ZP)(A.kC).withConfig({displayName:"nav__LogoWrapper",componentId:"d0midy-2"})(["align-items:center;width:138px;"]),Mi=(0,h.ZP)(S.UE).withConfig({displayName:"nav__LogoLink",componentId:"d0midy-3"})(["text-decoration:none;width:100%;"]),ci=(0,h.ZP)(A.kC).withConfig({displayName:"nav__BtnWrapper",componentId:"d0midy-4"})(["justify-content:flex-end;@media ","{display:none;}"],Y.Z.tabletL),ui=(0,h.ZP)(he.Qj).withConfig({displayName:"nav__StyledLinkRightButton",componentId:"d0midy-5"})(["padding:10px 16px;background:var(--color-green-3);border:2px solid var(--color-green-3);"]),li=function(){var e=(0,k.useStaticQuery)("1808069570"),t=(0,n.useState)(0),i=t[0],r=t[1],a=(0,n.useState)(!0),o=a[0],M=a[1],c=(0,n.useCallback)((function(){var e=window.pageYOffset;M(i>e&&i-e>70||e<10),r(e)}),[]);return(0,n.useEffect)((function(){return window.addEventListener("scroll",c),function(){return window.removeEventListener("scroll",c)}}),[i,o,c]),n.createElement(n.Fragment,null,n.createElement(ri,{background:o},n.createElement(ai,null,n.createElement(oi,null,n.createElement(Mi,{to:"https://deriv.com/","aria-label":(0,S.NC)("Home")},n.createElement(f.et,{data:e.binary,alt:(0,S.NC)("Binary"),max_width:"16.4rem",width:"100%",height:"auto"}))),n.createElement(ci,null,n.createElement(ui,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},(0,S.NC)("Take me to Deriv"))))),n.createElement(Hi,{no_eu_banner:!0}))},gi=i(6659),Ni=i(4508),mi=function(){return n.createElement(n.Fragment,null,n.createElement(gi.zO,null,n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (<0>licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.",components:[n.createElement(gi.iz,{key:0,target:"_blank",href:"/regulatory/Deriv_Investments_(Europe)_Limited.pdf",rel:"noopener noreferrer"})]})),n.createElement(gi.rq,null,(0,S.NC)("Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.")),n.createElement(gi.rq,null,(0,S.NC)("This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.")),n.createElement(gi.qy,null,n.createElement(A.di.Desktop,null,n.createElement(gi.rq,{no_margin:!0},n.createElement(S.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:65}})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."}))),n.createElement(A.di.Mobile,null,n.createElement(gi.rq,{no_margin:!0},n.createElement(S.Xx,{translate_text:"CFDs are considered complex derivatives and may not be suitable for retail clients."})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. {{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:65}})),n.createElement(gi.rq,null,n.createElement(S.Xx,{translate_text:"The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money."}))))))},ji=h.ZP.footer.withConfig({displayName:"footer__DefaultFooter",componentId:"sc-9b1zlb-0"})(["background-color:var(--color-grey-25);width:100%;margin:0 auto;padding-bottom:2rem;","{@media ","{width:100%;}}"],A.W2,Y.Z.tabletL),si=function(e){var t=e.type;return n.createElement(ji,{is_eu_country:!1},n.createElement(A.W2,null,n.createElement(gi.Ko,null,n.createElement(Ni.Z,{type:t}),n.createElement(mi,null))))},di=(0,h.ZP)(A.kC).withConfig({displayName:"nav-careers__CareerRight",componentId:"sc-7zho0s-0"})(["width:auto;justify-self:flex-end;"]),Li=(0,h.ZP)(he.Qj).withConfig({displayName:"nav-careers__CareerButton",componentId:"sc-7zho0s-1"})(["@media ","{font-size:12px;}@media ","{font-size:9px;}@media ","{margin-left:4px;}"],Y.Z.tabletS,Y.Z.mobileL,Y.Z.mobileM),yi=(0,h.ZP)(it).withConfig({displayName:"nav-careers__CareerLink",componentId:"sc-7zho0s-2"})(["@media ","{font-size:9px;padding:4px;}"],Y.Z.mobileM),Ii=(0,h.ZP)(Re).withConfig({displayName:"nav-careers__CareerLogo",componentId:"sc-7zho0s-3"})(["margin-right:3.2rem;@media ","{margin-right:0;max-width:100px;}@media ","{max-width:80px;& .gatsby-image-wrapper{width:80px;}}"],Y.Z.tabletS,Y.Z.mobileL),Di=(0,h.ZP)(Ve).withConfig({displayName:"nav-careers__CareerNavLeft",componentId:"sc-7zho0s-4"})(["@media ","{display:flex;}"],Y.Z.tabletL),pi=function(){var e=(0,k.useStaticQuery)("2998272888"),t=n.useContext(Ue.L).has_mounted,i=Ce("careers");return n.createElement(n.Fragment,null,n.createElement(Ge,null,n.createElement(Je,null,n.createElement(Fe,{offset_px_mobile:4},n.createElement(Di,null,n.createElement(Ii,{to:"/","aria-label":"Home"},n.createElement(f.et,{data:e.deriv,alt:"Deriv",width:"16.4rem",height:"auto"})),n.createElement(yi,{active:"home"===i,activeClassName:"active",to:"/careers/","aria-label":"Careers",partiallyActive:!0},"HOME"),n.createElement(yi,{active:"locations"===i,activeClassName:"active",to:"/careers/locations/","aria-label":"Locations",partiallyActive:!0},"LOCATIONS"),n.createElement(yi,{activeClassName:"active",to:"/besquare/","aria-label":"BeSquare"},"BESQUARE")),n.createElement(di,{jc:"flex-end",ai:"center"},t&&n.createElement(Li,{external:"true",secondary:!0,type:"zoho",to:"/",target:"_blank",rel:"noopener noreferrer",ml:"2.4rem"},"Explore jobs"))))),n.createElement(Hi,null))};var xi=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__ModalWrapper",componentId:"hemsmb-0"})(["position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:200;"]),Ti=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__ModalCard",componentId:"hemsmb-1"})(["position:relative;z-index:210;display:flex;flex-direction:column;border-radius:6px;box-shadow:2px 2px 10px rgba(0,0,0,0.3);width:100%;max-width:44rem;background:var(--color-white);padding:2.4rem;@media ","{width:80%;}"],Y.Z.mobileL),zi=h.ZP.img.withConfig({displayName:"_eu-redirect-modal__CloseButton",componentId:"hemsmb-2"})(["&:hover{cursor:pointer;}"]),Ei=h.ZP.div.withConfig({displayName:"_eu-redirect-modal__Background",componentId:"hemsmb-3"})(["position:absolute;width:100%;height:100%;top:0;left:0;background-color:var(--color-black);opacity:0.4;"]),hi=(0,h.ZP)(A.kC).withConfig({displayName:"_eu-redirect-modal__Action",componentId:"hemsmb-4"})(["justify-content:space-between;align-items:center;"]),Ci=(0,h.iv)(["border-radius:6px;padding:1rem 1.6rem;transition:all 0.25s;height:fit-content;cursor:pointer;text-decoration:none;"]),wi=h.ZP.a.withConfig({displayName:"_eu-redirect-modal__Proceed",componentId:"hemsmb-5"})([""," border:2px solid var(--color-red);color:var(--color-white);background:var(--color-red);&:hover{background-color:var(--color-red-3);border-color:var(--color-red-3);}"],Ci),Ai=h.ZP.span.withConfig({displayName:"_eu-redirect-modal__Cancel",componentId:"hemsmb-6"})([""," border:2px solid var(--color-grey-5);color:var(--color-black);background:transparent;margin-right:0.8rem;&:hover{background-color:rgba(0,0,0,0.08);}"],Ci),fi=function(e){var t=e.toggle,i=e.is_open,r=e.closeModal,a=e.to,o=e.target,M=e.rel,c=e.ref,u=e.aria_label,l=function(e){27===e.keyCode&&r()};return(0,n.useEffect)((function(){return document.addEventListener("keydown",l,!1),function(){document.removeEventListener("keydown",l,!1)}}),[]),i&&n.createElement(xi,null,n.createElement(Ti,null,n.createElement(hi,null,n.createElement(f.xv,{weight:"bold"},n.createElement(S.Xx,{translate_text:"Redirect notice"})),n.createElement(zi,{src:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzMzMyIgZD0iTTMuNzA3IDIuMjkzTDggNi41ODdsNC4yOTMtNC4yOTRhMSAxIDAgMDExLjQxNCAxLjQxNEw5LjQxNCA4LjAwMWw0LjI5MyA0LjI5NWExIDEgMCAwMS0xLjQxNCAxLjQxNEw4IDkuNDE2IDMuNzA3IDEzLjcxYTEgMSAwIDAxLTEuNDE0LTEuNDE0bDQuMjkyLTQuMjk1LTQuMjkyLTQuMjk0YTEgMSAwIDAxMS40MTQtMS40MTR6Ii8+PC9zdmc+",alt:"close-2",onClick:t})),n.createElement("div",null,n.createElement(f.xv,{size:"var(--text-size-xs)",m:"2.4rem 0"},n.createElement(S.Xx,{translate_text:"You are being redirected to an external website."}))),n.createElement(A.kC,{jc:"flex-end"},n.createElement(Ai,{onClick:function(){return r()}},n.createElement(f.xv,{size:"var(--text-size-xs)",weight:"bold"},n.createElement(S.Xx,{translate_text:"Cancel"}))),n.createElement(wi,{target:o,rel:M,ref:c,href:a,"aria-label":u,onClick:t},n.createElement(f.xv,{size:"var(--text-size-xs)",weight:"bold",color:"white"},n.createElement(S.Xx,{translate_text:"Proceed"}))))),n.createElement(Ei,{onClick:t}))},Si=(0,h.F4)(["from{opacity:0;transform:translateY(0);}to{opacity:1;transform:translateY(-18.4rem);}"]),Oi=(0,h.F4)(["from{opacity:1;transform:translateY(-18.4rem);}to{opacity:0;transform:translateY(0);}"]),vi=h.ZP.div.withConfig({displayName:"cookie-banner__Wrapper",componentId:"sc-16ttzo8-0"})(["position:fixed;width:384px;min-height:188px;padding:24px;left:2.4rem;bottom:-9rem;transition:translate 0.3s ease-in-out,opacity 0.3s ease-in-out;z-index:200;border-radius:8px;box-shadow:0 0 12px 0 rgba(14,14,14,0.16);background-color:var(--color-white);animation-name:",";animation-fill-mode:both;animation-duration:0.3s;@media ","{bottom:-7rem;}@media (max-width:1269px){bottom:-6rem;}@media ","{bottom:-4rem;}@media ","{width:100%;height:14.6rem;padding:16px;left:unset;border-radius:unset;min-height:unset;bottom:-6.1rem;}@media (max-width:711px){bottom:-7.7rem;}@media (max-width:539px){bottom:-4.5rem;}@media ","{bottom:-4.5rem;height:16.8rem;}"],(function(e){return e.is_open?Si:Oi}),Y.Z.laptopM,Y.Z.tabletL,Y.Z.tablet,Y.Z.mobileS),ki=(0,h.ZP)(he.zx).withConfig({displayName:"cookie-banner__StyledButton",componentId:"sc-16ttzo8-1"})(["@media ","{font-size:1.4rem;padding:3px 8px;}"],Y.Z.tablet),bi=(0,h.ZP)(f.xv).withConfig({displayName:"cookie-banner__StyledText",componentId:"sc-16ttzo8-2"})(["font-size:14px;margin-bottom:16px;@media ","{font-size:12px;margin-bottom:8px;}@media ","{font-size:10px;margin-bottom:8px;}"],Y.Z.tablet,Y.Z.mobileL),_i=(0,h.ZP)(f.Th).withConfig({displayName:"cookie-banner__LinkText",componentId:"sc-16ttzo8-3"})(["font-size:14px;@media ","{font-size:12px;}@media ","{font-size:10px;}"],Y.Z.tablet,Y.Z.mobileL),Yi=function(e){var t=e.onAccept,i=e.onDecline,r=e.is_open;return n.createElement(vi,{is_open:r},n.createElement(bi,null,n.createElement(S.Xx,{translate_text:"Cookies help us to give you a better experience and personalised content on our site. "}),n.createElement(S.Xx,{translate_text:"If you agree to our use of cookies, click on Accept. For more information, <0>see our policy.",components:[n.createElement(_i,{key:0,to:"/terms-and-conditions/#clients",color:"red"})]})),n.createElement(A.kC,null,n.createElement(ki,{tertiary:!0,onClick:i,mr:"0.8rem"},(0,S.NC)("Don't accept")),n.createElement(ki,{secondary:!0,onClick:t},(0,S.NC)("Accept"))))},Qi=E((function(){return i.e(562).then(i.bind(i,9562))})),Zi=E((function(){return i.e(989).then(i.bind(i,6989))})),Ui=(0,C.jU)()&&window.dataLayer,Pi="tracking_status",Gi=new Se.eR(Pi),Wi=h.ZP.section.withConfig({displayName:"layout__CFDWrapper",componentId:"sc-1uofsdx-0"})(["background-color:var(--color-grey-25);background-size:cover;display:flex;align-items:center;justify-content:center;width:100%;min-height:7.4rem;height:fit-content;padding:1.7rem 0 1.5rem;position:fixed;bottom:0;box-shadow:inset 0 1px 0 0 var(--color-grey-21);z-index:100;@media (max-width:826px){padding:0.8rem 0;height:12.4rem;}@media (max-width:710px){height:10.8rem;}@media (max-width:538px){height:14rem;}"]),Ri=(0,h.ZP)(A.W2).withConfig({displayName:"layout__CFDContainer",componentId:"sc-1uofsdx-1"})(["@media ","{width:90%;}@media ","{width:95%;}@media ","{margin:1rem auto;}@media ","{margin:2rem auto;}@media ","{margin:1rem auto;}"],Y.Z.bp1060,Y.Z.tabletL,Y.Z.tabletS,Y.Z.mobileL,Y.Z.mobileM),Bi=(0,h.ZP)(f.xv).withConfig({displayName:"layout__CFDText",componentId:"sc-1uofsdx-2"})(["@media ","{font-size:14px;}@media ","{font-size:12px;}@media ","{font-size:10px;}"],Y.Z.bp1060,Y.Z.tablet,Y.Z.mobileL),Hi=function(e){var t=e.is_ppc,i=e.no_eu_banner,r=n.useContext(Q.c).is_eu_country;return!t&&!r||i?n.createElement(n.Fragment,null):n.createElement(Wi,null,n.createElement(Ri,null,n.createElement(Bi,null,n.createElement(S.Xx,{translate_text:"CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. <0>{{loss_percent}}% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.",values:{loss_percent:62},components:[n.createElement("strong",{key:0})]}))))},Ji=h.ZP.main.withConfig({displayName:"layout__Main",componentId:"sc-1uofsdx-3"})(["margin-top:",";background:var(--color-white);height:100%;position:relative;"],(function(e){return e.margin_top&&e.margin_top+"rem"||"7rem"})),Fi=function(e){var t=e.children,i=e.interim_type,r=e.is_ppc,a=e.is_ppc_redirect,o=e.margin_top,M=e.no_live_chat,c=e.no_login_signup,u=e.type,l=n.useContext(Q.c).is_eu_country,g=n.useState(!1),N=g[0],m=g[1],j=n.useState(!1),s=j[0],d=j[1],L=function(e){void 0===e&&(e=!1);var t=(0,n.useState)(e),i=t[0],r=t[1];return[i,function(){return r(!i)},function(){return r(!1)}]}(),y=L[0],I=L[1],D=L[2],p=n.useState({}),x=p[0],T=p[1],z=w(),E=z[0],h=z[1],A="static"===u;n.useEffect((function(){(0,C.jU)()&&window.scrollTo(0,0)}),[]),n.useEffect((function(){if("boolean"==typeof l){var e=Gi.get(Pi);l&&!e&&d(!0),(!l||"accepted"===e)&&!E&&Ui&&h({event:"allow_tracking"}),m(!0)}}),[l]);var f=n.createElement(n.Fragment,null),S=n.createElement(n.Fragment,null);switch(u){case"academy":f=n.createElement(xt,{academy_logo:!0,no_language:!0}),S=n.createElement(Qi,{academy:!0});break;case"static":f=n.createElement(wt,{is_ppc:r});break;case"interim":f=n.createElement(Ct,{interim_type:i}),S=n.createElement(v,null);break;case"partners":f=n.createElement(Pt,{no_login_signup:c}),S=n.createElement(Qi,null);break;case"ebook":f=n.createElement(xt,{hide_signup_login:!0}),S=n.createElement(Qi,null);break;case"landing-page":f=n.createElement(xt,{hide_signup_login:!0,no_language:!0}),S=n.createElement(Qi,null);break;case"jump-indices":f=n.createElement(ni,null),S=n.createElement(Qi,{is_ppc:r,is_ppc_redirect:a});break;case"careers":f=n.createElement(pi,null),S=n.createElement(Qi,{no_language:!0,type:u});break;case"be-square":f=n.createElement(Jt,null),S=n.createElement(Vt,null);break;case"binary-to-deriv":f=n.createElement(li,null),S=n.createElement(si,{is_ppc:r,is_ppc_redirect:a});break;default:f=n.createElement(xt,{is_ppc_redirect:a,is_ppc:r}),S=n.createElement(Qi,{is_ppc:r,is_ppc_redirect:a})}return n.createElement(Ue.v,{has_mounted:N,show_cookie_banner:s,toggleModal:I,setModalPayload:T},f,n.createElement(Ji,{margin_top:o,is_static:A},t),s&&n.createElement(Yi,{onAccept:function(){Gi.set(Pi,"accepted"),!E&&Ui&&h({event:"allow_tracking"}),d(!1)},onDecline:function(){Gi.set(Pi,"declined"),d(!1)},is_open:s}),!M&&n.createElement(Zi,{is_banner_shown:s}),S,n.createElement(fi,{toggle:I,is_open:y,closeModal:D,to:x.to,target:x.target,rel:x.rel,ref:x.ref,aria_label:x.aria_label}))}}}]); -//# sourceMappingURL=commons-f65cf158402c4ff26cd8.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/component---src-pages-404-js-eb089a2e5bf7e308370d.js b/src/root_files/_common/move-to-deriv/component---src-pages-404-js-49357921b7f4e3ddc0c6.js similarity index 87% rename from src/root_files/_common/move-to-deriv/component---src-pages-404-js-eb089a2e5bf7e308370d.js rename to src/root_files/_common/move-to-deriv/component---src-pages-404-js-49357921b7f4e3ddc0c6.js index 39c51f71e7219..79e817dc76108 100644 --- a/src/root_files/_common/move-to-deriv/component---src-pages-404-js-eb089a2e5bf7e308370d.js +++ b/src/root_files/_common/move-to-deriv/component---src-pages-404-js-49357921b7f4e3ddc0c6.js @@ -1,2 +1,2 @@ -(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[883],{9616:function(e,t,n){"use strict";n.r(t);var o=n(7294),a=n(9),r=n(5444),i=n(4845),l=n(7513),c=n(1340),d=n(2466),s=n(8838),m=n(3324),u=a.ZP.div.withConfig({displayName:"sc-404__ImageWrapper",componentId:"sc-1ibso5y-0"})(["width:100%;max-width:59.4rem;"]),p=a.ZP.div.withConfig({displayName:"sc-404__PageNotFoundContainerInfo",componentId:"sc-1ibso5y-1"})(["margin-left:2.4rem;*{margin:1.6rem 0;}"]),f=a.ZP.div.withConfig({displayName:"sc-404__PageNotFoundContainer",componentId:"sc-1ibso5y-2"})(["display:flex;width:100%;justify-content:center;align-items:center;padding:16rem 0;flex-wrap:wrap;"]),g=a.ZP.div.withConfig({displayName:"sc-404__ButtonWrapper",componentId:"sc-1ibso5y-3"})(["margin-top:2.6rem;"]);t.default=(0,s.Wm)()((function(){var e=(0,r.useStaticQuery)("3911781478");return(0,i.jU)()&&o.createElement(c.Z,null,o.createElement(l.HJ,{title:(0,s.NC)("404 - Page not found | Deriv"),description:(0,s.NC)("The page you are looking for does not exist.")}),o.createElement(f,null,o.createElement(u,null,o.createElement(d.et,{data:e.page_not_found,alt:(0,s.NC)("Page not found")})),o.createElement(p,null,o.createElement(d.h4,{as:"h3",type:"sub-section-title"},(0,s.NC)("This channel doesn't work")),o.createElement(d.xv,null,(0,s.NC)("You may have followed a broken link, or the page has moved to a new address.")),o.createElement(d.xv,null,(0,s.NC)("Error code: 404 page not found")),o.createElement(g,null,o.createElement(m.Qj,{secondary:"true",to:"/"},(0,s.NC)("Go to the homepage"))))))}))}}]); -//# sourceMappingURL=component---src-pages-404-js-eb089a2e5bf7e308370d.js.map \ No newline at end of file +(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[883],{9616:function(e,t,n){"use strict";n.r(t);var o=n(7294),a=n(9),r=n(5444),i=n(4845),l=n(7513),c=n(4216),d=n(2466),s=n(4443),m=n(3324),u=a.ZP.div.withConfig({displayName:"sc-404__ImageWrapper",componentId:"sc-1ibso5y-0"})(["width:100%;max-width:59.4rem;"]),p=a.ZP.div.withConfig({displayName:"sc-404__PageNotFoundContainerInfo",componentId:"sc-1ibso5y-1"})(["margin-left:2.4rem;*{margin:1.6rem 0;}"]),f=a.ZP.div.withConfig({displayName:"sc-404__PageNotFoundContainer",componentId:"sc-1ibso5y-2"})(["display:flex;width:100%;justify-content:center;align-items:center;padding:16rem 0;flex-wrap:wrap;"]),g=a.ZP.div.withConfig({displayName:"sc-404__ButtonWrapper",componentId:"sc-1ibso5y-3"})(["margin-top:2.6rem;"]);t.default=(0,s.Wm)()((function(){var e=(0,r.useStaticQuery)("3911781478");return(0,i.jU)()&&o.createElement(c.Z,null,o.createElement(l.HJ,{title:(0,s.NC)("404 - Page not found | Deriv"),description:(0,s.NC)("The page you are looking for does not exist.")}),o.createElement(f,null,o.createElement(u,null,o.createElement(d.et,{data:e.page_not_found,alt:(0,s.NC)("Page not found")})),o.createElement(p,null,o.createElement(d.h4,{as:"h3",type:"sub-section-title"},(0,s.NC)("This channel doesn't work")),o.createElement(d.xv,null,(0,s.NC)("You may have followed a broken link, or the page has moved to a new address.")),o.createElement(d.xv,null,(0,s.NC)("Error code: 404 page not found")),o.createElement(g,null,o.createElement(m.Qj,{secondary:"true",to:"/"},(0,s.NC)("Go to the homepage"))))))}))}}]); +//# sourceMappingURL=component---src-pages-404-js-49357921b7f4e3ddc0c6.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/component---src-pages-index-js-d6f2a947660a6f1b3cfd.js b/src/root_files/_common/move-to-deriv/component---src-pages-index-js-2d52965d5626708130c2.js similarity index 99% rename from src/root_files/_common/move-to-deriv/component---src-pages-index-js-d6f2a947660a6f1b3cfd.js rename to src/root_files/_common/move-to-deriv/component---src-pages-index-js-2d52965d5626708130c2.js index df447738e2109..e22c4cd4c3c16 100644 --- a/src/root_files/_common/move-to-deriv/component---src-pages-index-js-d6f2a947660a6f1b3cfd.js +++ b/src/root_files/_common/move-to-deriv/component---src-pages-index-js-2d52965d5626708130c2.js @@ -1,2 +1,2 @@ -(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[678],{8994:function(e,t,i){"use strict";i.r(t),i.d(t,{default:function(){return we}});var a=i(7294),n=i(5444),r=i(9),o=i(2466),d=i(7513),l=i(4845),m=i(6299),p=function(){var e=(0,a.useState)(!1),t=e[0],i=e[1],n=(0,a.useState)((0,l.jU)()?window.innerWidth:0),r=n[0],o=n[1];(0,a.useEffect)((function(){if(!(0,l.jU)())return!1;var e=function(){return o(window.innerWidth)};return d(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),d()}}));var d=function(){i(!!(0,l.jU)()&&!!(r<=m.d.tablet))};return[t]},c=i(3324),g=i.p+"static/hero_desktop-96d6a94d9ac0b2e1d09080c9cb78e553.png",u=i.p+"static/hero_mobile-ec0c72898489d916a3b735bc37ea61a0.png",x=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__MainWrapper",componentId:"sc-160pht5-0"})(["position:relative;"]),h=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__BackgroundWrapper",componentId:"sc-160pht5-1"})(["background-image:url(",");background-attachment:fixed;background-repeat:no-repeat;background-size:cover;position:absolute;left:0;top:0;"],(function(e){return e.bg_image})),s=(0,r.ZP)(d.W2).withConfig({displayName:"_dHero__ParentWrapper",componentId:"sc-160pht5-2"})(["position:relative;z-index:2;padding:192px 0 120px;justify-content:flex-start;@media (max-width:1366px){width:90%;}@media ","{padding:86px 0 80px;}"],m.Z.tabletL),M=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__ItemsWrapper",componentId:"sc-160pht5-3"})(["flex-direction:row;height:478px;@media ","{height:500px;}@media ","{flex-direction:column-reverse;height:auto;max-width:58.8rem;}"],m.Z.desktopL,m.Z.tabletL),L=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__LeftWrapper",componentId:"sc-160pht5-4"})(["flex-direction:column;align-items:flex-start;width:588px;max-height:312px;margin-right:24px;@media (max-width:1222px){max-height:unset;padding-bottom:80px;}@media ","{width:100%;margin-right:0;max-height:unset;justify-content:center;padding-bottom:0;}"],m.Z.tabletL),w=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__RightWrapper",componentId:"sc-160pht5-5"})(["width:540px;@media ","{width:100%;margin:0 auto;}"],m.Z.tabletL),I=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__DesktopWrapper",componentId:"sc-160pht5-6"})(["@media ","{display:none;}"],m.Z.tablet),y=r.ZP.div.withConfig({displayName:"_dHero__MobileWrapper",componentId:"sc-160pht5-7"})(["display:none;@media ","{display:flex;justify-content:center;width:100%;}"],m.Z.tablet),N=(0,r.ZP)(o.h4).withConfig({displayName:"_dHero__StyledHeader",componentId:"sc-160pht5-8"})(["@media ","{font-size:80px;}@media ","{font-size:32px;line-height:40px;}"],m.Z.desktopL,m.Z.tablet),b=(0,r.ZP)(o.h4).withConfig({displayName:"_dHero__StyledSmallHeader",componentId:"sc-160pht5-9"})(["@media ","{font-size:18px;line-height:26px;}"],m.Z.tablet),f=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__BtnWrapper",componentId:"sc-160pht5-10"})(["margin-top:24px;justify-content:flex-start;"]),j=(0,r.ZP)(c.Qj).withConfig({displayName:"_dHero__StyledLinkButton",componentId:"sc-160pht5-11"})(["padding:10px 16px;background:var(--color-green-3);border:2px solid var(--color-green-3);"]),D=function(){var e=p()[0]?u:g,t=(0,n.useStaticQuery)("3614738892");return a.createElement(x,null,a.createElement(s,null,a.createElement(d.kC,null,a.createElement(M,null,a.createElement(L,null,a.createElement(N,{type:"hero",color:"white",mb:"32px",mt:"24px",tabletL:{max_width:"58.8rem",mb:"16px",mt:"16px"}},"It’s so easy to switch to Deriv"),a.createElement(b,{type:"heading-3",color:"white",weight:"normal",tabletL:{max_width:"58.8rem"}},"No sign up required — just use your Binary.com credentials"),a.createElement(y,null,a.createElement(f,null,a.createElement(j,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Take me to Deriv")))),a.createElement(w,null,a.createElement(o.lr,Object.assign({has_autoplay:!0,autoplay_interval:4500},{options:{loop:!0},container_style:{maxWidth:"100%",margin:"0 auto"},slide_style:{minWidth:"100%",position:"relative"}}),[{img:"hero_dmt5_banner",img_alt:"dmt5 banner",img_mobile:"hero_dmt5_banner_mobile",img_alt_mobile:"dmt5 banner mobile"},{img:"hero_dtrader_banner",img_alt:"dtrader banner",img_mobile:"hero_dtrader_banner_mobile",img_alt_mobile:"dtrader banner mobile"}].map((function(e,i){return a.createElement(d.kC,{key:i},a.createElement(I,null,a.createElement(o.et,{data:t[e.img],alt:e.img_alt,width:"100%"})))}))))))),a.createElement(h,{bg_image:e}))},_=(0,r.ZP)(d.S$).withConfig({displayName:"_dBanner__SectionWrapper",componentId:"rs5f31-0"})(["background:var(--color-white);padding:120px 0;@media ","{padding:40px 0;}"],m.Z.tabletL),S=function(){return a.createElement(_,null,a.createElement(d.kC,null,a.createElement(o.h4,{type:"heading-3",weight:"normal",align:"center",max_width:"90rem",as:"h3",tabletL:{max_width:"58.8rem"}},"We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.")))},E=i(4133),Z=i(8475),C=i(8838);var A="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0ZGNDQ0RiIgZD0iTTcuMjkzLjI5M2ExIDEgMCAwMDAgMS40MTRMMTIuNTg2IDdIMWExIDEgMCAwMDAgMmwxMS41ODYtLjAwMS01LjI5MyA1LjI5NGExIDEgMCAwMDEuNDE0IDEuNDE0bDctNyAuMDczLS4wODIuMDA3LS4wMDgtLjA4LjA5YS45MjcuOTI3IDAgMDAuMDk3LS4xMTJjLjAxOC0uMDI0LjAzNC0uMDQ5LjA1LS4wNzRsLjAyMS0uMDM3Yy4wMTEtLjAyLjAyMi0uMDQuMDMxLS4wNmwuMDIzLS4wNTMuMDIxLS4wNi4wMTQtLjA0NS4wMTYtLjA2NS4wMDktLjA1My4wMDctLjA1OC4wMDQtLjA3di0uMDRjMC0uMDIzLS4wMDItLjA0Ni0uMDA0LS4wN0wxNiA4YzAtLjA1LS4wMDQtLjEtLjAxMS0uMTQ5bC0uMDEtLjA1MmEuNzYyLjc2MiAwIDAwLS4wMTUtLjA2NWwtLjAxNC0uMDQ2LS4wMjEtLjA2LS4wMjMtLjA1MS0uMDMtLjA2MS0uMDIyLS4wMzdhMS4yIDEuMiAwIDAwLS4wNS0uMDc0bC0uMDE3LS4wMjJhLjk3Ljk3IDAgMDAtLjA4LS4wOWwtNy03YTEgMSAwIDAwLTEuNDE0IDB6Ii8+PC9zdmc+",T=i(476),v=(0,r.ZP)(d.W2).withConfig({displayName:"_favorite__StyledContainer",componentId:"ciwcd4-0"})(["@media ","{display:none;}"],m.Z.tabletS),k=(0,r.ZP)(d.kC).withConfig({displayName:"_favorite__ImageWrapper",componentId:"ciwcd4-1"})(["max-width:384px;position:relative;:first-child{margin-right:24px;}@media ","{margin:0 auto;:first-child{margin:0 auto 44px;}}"],m.Z.tabletL),z=(0,r.ZP)(C.UE).withConfig({displayName:"_favorite__LearnMore",componentId:"ciwcd4-2"})(["width:131px;height:40px;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:10px 16px;background:#ffffff;border-radius:100px;position:absolute;bottom:-8%;left:50%;transform:translate(-50%,-50%);filter:drop-shadow(0 0 24px rgba(0,0,0,0.08)) drop-shadow(0 24px 24px rgba(0,0,0,0.08));text-decoration:none;","{font-weight:bold;font-size:14px;line-height:20px;color:var(--color-red);}"],o.xv),P=r.ZP.img.withConfig({displayName:"_favorite__ArrowImg",componentId:"ciwcd4-3"})(["margin-left:8px;width:16px;height:16px;"]),Y=function(){var e=(0,n.useStaticQuery)("2800676821"),t=(0,E.Z)(),i=t[0],r=t[2],l=null==i?void 0:i.clients_country,m=(0,a.useState)(T.Ht),p=m[0],c=m[1],g=(0,a.useState)(T.EX),u=g[0],x=g[1];return(0,a.useEffect)((function(){(0,Z.ZD)(l)&&(c(T.Hd),x(T.Zm))}),[i]),a.createElement(v,null,a.createElement(d.kC,{fd:"column",mb:"120px",tabletL:{mb:"60px"}},a.createElement(o.h4,{type:"heading-2",align:"center",mb:"40px",tabletL:{mb:"24px"}},"Access your favourite platforms in one place"),a.createElement(d.kC,{tabletL:{fd:"column"}},a.createElement(k,null,a.createElement(o.et,{data:e.deriv_mt5_fav,alt:"Deriv MT5 favorite",width:"100%"}),a.createElement(z,{to:p,disabled:r},a.createElement(o.xv,null,"Learn more"),a.createElement(P,{src:A,alt:"arrow"}))),a.createElement(k,null,a.createElement(o.et,{data:e.dtrader_fav,alt:"Dtrader favorite",width:"100%"}),a.createElement(z,{to:u,disabled:r},a.createElement(o.xv,null,"Learn more"),a.createElement(P,{src:A,alt:"arrow"}))))))};var Q=(0,r.ZP)(d.W2).withConfig({displayName:"_benefits__ParentWrapper",componentId:"ujea8e-0"})(["flex-direction:row;justify-content:center;flex-wrap:wrap;max-width:964px;width:100%;@media ","{flex-direction:column;}"],m.Z.laptop),O=r.ZP.img.withConfig({displayName:"_benefits__Icon",componentId:"ujea8e-1"})(["width:48px;height:48px;"]),U=(0,r.ZP)(d.kC).withConfig({displayName:"_benefits__ContentWrapper",componentId:"ujea8e-2"})(["max-width:470px;margin-bottom:24px;:nth-child(odd){margin-left:24px;}@media ","{max-width:58.8rem;width:100%;padding:0 16px;:nth-child(odd){margin-left:0;}}"],m.Z.laptop),W=(0,r.ZP)(d.kC).withConfig({displayName:"_benefits__BtnWrapper",componentId:"ujea8e-3"})(["margin-top:16px;padding-bottom:80px;@media ","{margin-top:0;padding-bottom:0;}"],m.Z.laptop),G=(0,r.ZP)(c.Qj).withConfig({displayName:"_benefits__StyledLinkButton",componentId:"ujea8e-4"})(["padding:10px 16px;"]),B=(0,r.ZP)(o.h4).withConfig({displayName:"_benefits__StyledHeader",componentId:"ujea8e-5"})(["@media (min-width:1440px){font-size:32px;line-height:40px;}"]),H=[{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iI0ZGNjQ0NCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEgMTZoLTQuMThjLS40Mi0xLjE2LTEuNTItMi0yLjgyLTItMS4zIDAtMi40Ljg0LTIuODIgMkgxN2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxNGMxLjEgMCAyLS45IDItMlYxOGMwLTEuMS0uOS0yLTItMnptLTcgMGMuNTUgMCAxIC40NSAxIDFzLS40NSAxLTEgMS0xLS40NS0xLTEgLjQ1LTEgMS0xem0tNS4zIDEwLjcgMi41OSAyLjU5Yy4zOS4zOSAxLjAzLjM5IDEuNDEgMGw2LjU5LTYuNTlhLjk5Ni45OTYgMCAxIDAtMS40MS0xLjQxTDIyIDI3LjE3bC0xLjg5LTEuODhhLjk5Ni45OTYgMCAxIDAtMS40MSAxLjQxeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"No Signup required",header:"No sign-up required",desc:"Just log in with your Binary.com credentials and start trading right away."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzk4QkU3MSIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIgMTZIMTZjLS41NSAwLTEgLjQ1LTEgMXYyYzAgLjU1LjQ1IDEgMSAxaDE2Yy41NSAwIDEtLjQ1IDEtMXYtMmMwLS41NS0uNDUtMS0xLTF6bS0xNiA2aDE2Yy41NSAwIDEgLjQ1IDEgMXYxYzAgLjU1LS40NSAxLTEgMUgxNmMtLjU1IDAtMS0uNDUtMS0xdi0xYzAtLjU1LjQ1LTEgMS0xem0wIDVoMTZjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDFIMTZjLS41NSAwLTEtLjQ1LTEtMXMuNDUtMSAxLTF6bS0uNSA0aDE3Yy4yOCAwIC41LjIyLjUuNXMtLjIyLjUtLjUuNWgtMTdjLS4yOCAwLS41LS4yMi0uNS0uNXMuMjItLjUuNS0uNXoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=",icon_alt:"Over 100+ instruments",header:"Over 100+ instruments",desc:"Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzUwODVCNiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjMuMDgzIDMyLjgyYzAgLjY0LS41OSAxLjEyLTEuMjEuOTgtNC40Ny0xLTcuNzktNS4wMS03Ljc5LTkuOCAwLTQuNzkgMy4zMi04LjggNy43OS05LjhhLjk5OC45OTggMCAwIDEgMS4yMS45OHYxNy42NHptMi4wMy0xNy42NHY2LjgxYzAgLjU1LjQ1IDEgMSAxaDYuNzljLjY0IDAgMS4xMi0uNTkuOTgtMS4yMi0uODUtMy43Ni0zLjgtNi43Mi03LjU1LTcuNTctLjYzLS4xNC0xLjIyLjM0LTEuMjIuOTh6bTAgMTcuNjR2LTYuODFjMC0uNTUuNDUtMSAxLjAxLTEuMDFoNi43OWMuNjMgMCAxLjEyLjYuOTggMS4yMi0uODUgMy43Ni0zLjggNi43My03LjU2IDcuNTgtLjYzLjE0LTEuMjItLjM0LTEuMjItLjk4eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"An enhanced experience",header:"An enhanced experience",desc:"Trade confidently on a service created by a trusted online trading brand with over 20 years of experience. "},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzc4NjJBQSIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIgMjVoLTZjLS41NSAwLTEtLjQ1LTEtMXYtOGMwLS41NS40NS0xIDEtMWg2Yy41NSAwIDEgLjQ1IDEgMXY4YzAgLjU1LS40NSAxLTEgMXptMCA4aC02Yy0uNTUgMC0xLS40NS0xLTF2LTRjMC0uNTUuNDUtMSAxLTFoNmMuNTUgMCAxIC40NSAxIDF2NGMwIC41NS0uNDUgMS0xIDF6bTQgMGg2Yy41NSAwIDEtLjQ1IDEtMXYtOGMwLS41NS0uNDUtMS0xLTFoLTZjLS41NSAwLTEgLjQ1LTEgMXY4YzAgLjU1LjQ1IDEgMSAxem0tMS0xM3YtNGMwLS41NS40NS0xIDEtMWg2Yy41NSAwIDEgLjQ1IDEgMXY0YzAgLjU1LS40NSAxLTEgMWgtNmMtLjU1IDAtMS0uNDUtMS0xeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"Your favourites in one place",header:"Your favourites in one place",desc:"Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader. "},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzNGOUFBNyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIgMTRIMTRjLTEuMSAwLTIgLjktMiAydjEyYzAgMS4xLjkgMiAyIDJoN3YyaC0xYy0uNTUgMC0xIC40NS0xIDFzLjQ1IDEgMSAxaDZjLjU1IDAgMS0uNDUgMS0xcy0uNDUtMS0xLTFoLTF2LTJoMWMuNTUgMCAxLS40NSAxLTFzLS40NS0xLTEtMUgxNWMtLjU1IDAtMS0uNDUtMS0xVjE3YzAtLjU1LjQ1LTEgMS0xaDE2Yy41NSAwIDEgLjQ1IDEgMXYzYzAgLjU1LjQ1IDEgMSAxczEtLjQ1IDEtMXYtNGMwLTEuMS0uOS0yLTItMnptLTIgOSA1IC4wMWMuNTUgMCAxIC40NCAxIC45OXY5YzAgLjU1LS40NSAxLTEgMWgtNWMtLjU1IDAtMS0uNDUtMS0xdi05YzAtLjU1LjQ1LTEgMS0xem0wIDloNXYtN2gtNXY3em0tNy0xNCAuOTcgM0gyN2wtMi40NyAxLjc2Ljk0IDIuOTEtMi40Ny0xLjgtMi40NyAxLjguOTQtMi45MUwxOSAyMWgzLjAzbC45Ny0zeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"User-friendly, modern design",header:"User-friendly, modern design",desc:"Enjoy an intuitive interface that even new traders find easy to use."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iI0ZGQjIyQSIvPjxwYXRoIGQ9Ik0yNCAxNGMtNS41MiAwLTEwIDQuNDgtMTAgMTBzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwLTQuNDgtMTAtMTAtMTB6bTcuNDYgNy4xMi0yLjc4IDEuMTVhNC45ODIgNC45ODIgMCAwIDAtMi45NS0yLjk0bDEuMTUtMi43OGMyLjEuOCAzLjc3IDIuNDcgNC41OCA0LjU3ek0yNCAyN2MtMS42NiAwLTMtMS4zNC0zLTNzMS4zNC0zIDMtMyAzIDEuMzQgMyAzLTEuMzQgMy0zIDN6bS0yLjg3LTEwLjQ2IDEuMTcgMi43OGE1IDUgMCAwIDAtMi45OCAyLjk3bC0yLjc4LTEuMTZhNy45ODQgNy45ODQgMCAwIDEgNC41OS00LjU5em0tNC41OSAxMC4zMyAyLjc4LTEuMTVhNC45NjggNC45NjggMCAwIDAgMi45NyAyLjk2bC0xLjE3IDIuNzhhNy45OTYgNy45OTYgMCAwIDEtNC41OC00LjU5em0xMC4zNCA0LjU5LTEuMTUtMi43OGE0Ljk3OCA0Ljk3OCAwIDAgMCAyLjk1LTIuOTdsMi43OCAxLjE3YTguMDA3IDguMDA3IDAgMCAxLTQuNTggNC41OHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=",icon_alt:"Support when you need it",header:"Support when you need it",desc:"Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content. "}],R=function(){var e=(0,E.Z)(),t=e[0],i=e[2],n=null==t?void 0:t.clients_country,r=(0,a.useState)(T.tz),l=r[0],m=r[1];return(0,a.useEffect)((function(){(0,Z.ZD)(n)&&m(T.P_)}),[t]),a.createElement(Q,null,a.createElement(d.kC,{laptop:{p:"0 16px"}},a.createElement(B,{type:"heading-3",align:"center",mb:"40px",laptop:{max_width:"58.8rem",mb:"24px"}},"Deriv is everything you love about Binary.com, plus more")),H.map((function(e,t){return a.createElement(U,{key:t,jc:"flex-start"},a.createElement(d.kC,{mr:"16px",max_width:"48px"},a.createElement(O,{src:e.icon,alt:e.icon_alt})),a.createElement(d.kC,{fd:"column"},a.createElement(o.h4,{type:"subtitle-1",mb:"8px"},e.header),a.createElement(o.h4,{type:"paragraph-1",weight:"normal"},e.desc)))})),a.createElement(d.kC,null,a.createElement(W,null,a.createElement(G,{to:l,secondary:"true",disabled:i},"Explore Deriv now"))))},J=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ContentWrapper",componentId:"t96xdu-0"})(["position:relative;@media ","{display:none;}"],m.Z.tabletS),X=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ParentWrapper",componentId:"t96xdu-1"})(["max-width:100%;@media ","{max-width:1200px;}@media ","{flex-wrap:wrap;max-width:84rem;}@media ","{max-width:58.8rem;flex-wrap:nowrap;flex-direction:column;}"],m.Z.desktopS,m.Z.laptopM,m.Z.tablet),q=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ItemsWrapper",componentId:"t96xdu-2"})(["border-radius:8px;max-width:282px;box-shadow:0 4px 8px rgba(14,14,14,0.1);overflow:hidden;margin-right:24px;height:auto;max-height:420px;:last-child{margin-right:0;}@media ","{:nth-child(odd){margin-right:24px;}:last-child{margin-right:unset;}margin-right:0;margin-bottom:24px;}@media ","{margin:0 auto 24px;:nth-child(odd){margin-right:auto;}:last-child{margin:0 auto 0 !important;}}@media ","{max-width:100%;}"],m.Z.laptopM,m.Z.tablet,m.Z.mobileL),F=(0,r.ZP)(o.h4).withConfig({displayName:"_exclusive__StyledHeader",componentId:"t96xdu-3"})(["margin:0 0 8px;@media ","{font-size:24px;line-height:36px;}@media ","{font-size:24px;line-height:36px;max-width:264px;margin:0 auto 8px;}"],m.Z.desktopS,m.Z.tabletL),V=(0,r.ZP)(o.h4).withConfig({displayName:"_exclusive__StyledSmallHeader",componentId:"t96xdu-4"})(["@media ","{font-size:16px;line-height:24px;}@media ","{font-size:16px;line-height:24px;}"],m.Z.desktopS,m.Z.tabletL),$=function(){var e=(0,n.useStaticQuery)("3699305886");return a.createElement(d.W2,{fd:"column",pt:"40px",pb:"120px",tablet:{pb:"40px"}},a.createElement(d.kC,{fd:"column",mb:"40px",tabletL:{mb:"24px"}},a.createElement(o.h4,{as:"h2",type:"heading-2",align:"center",mb:"8px"},"Exclusively on Deriv"),a.createElement(o.h4,{as:"h3",type:"subtitle-1",align:"center",weight:"normal"},"There’s a bright future ahead."),a.createElement(o.h4,{as:"h3",type:"subtitle-1",align:"center",weight:"normal"},"Find these bonus features and more on Deriv:")),a.createElement(X,null,[{image:"multiplier",image_alt:"Multiplier",header:"Trade multipliers",desc:"Combine the upside of leverage trading with the simplicity and limited risk of options."},{image:"jump_indices",image_alt:"Jump Indices",header:"Trade Jump indices",desc:"Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7."},{image:"deriv_academy",image_alt:"Deriv Academy",header:"Upskill with Deriv Academy",desc:"Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more."},{image:"trade_in_the_moment",image_alt:"Trade in the moment",header:"Trade
in-the-moment",desc:"Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market. "}].map((function(t,i){return a.createElement(q,{key:i,fd:"column"},a.createElement(J,null,a.createElement(o.et,{data:e[t.image],alt:t.image_alt,width:"100%"})),a.createElement(d.kC,{fd:"column",p:"32px"},a.createElement(F,{type:"subtitle-1",align:"center",dangerouslySetInnerHTML:{__html:t.header}}),a.createElement(V,{type:"paragraph-1",weight:"normal",align:"center"},t.desc)))}))))},K=i.p+"static/pattern-5a57200c7a012ca7fceb48965c9c365d.png",ee=i.p+"static/pattern_mobile-346611f25fc9dfbec101c44bce240217.png",te=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__BannerWrapper",componentId:"sc-19uqb3f-0"})(["border-top:1px solid var(--color-grey-17);border-bottom:1px solid var(--color-grey-17);@media (min-width:1440px){background-image:url(",");background-repeat:no-repeat;background-size:cover;background-position:top right -65rem;}"],(function(e){return e.background_pattern})),ie=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__ParentWrapper",componentId:"sc-19uqb3f-1"})(["max-width:1440px;height:304px;z-index:3;overflow:hidden;@media ","{height:370px;}@media ","{height:280px;}@media ","{flex-direction:column;height:auto;}"],m.Z.desktopL,m.Z.laptop,m.Z.tablet),ae=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__LeftWrapper",componentId:"sc-19uqb3f-2"})(["padding-left:100px;padding-top:52px;width:35%;max-width:494px;@media (max-width:1414px){padding-left:36px;}@media (max-width:1325px){width:50%;}@media ","{padding-top:36px;width:58%;}@media ","{padding-left:0;padding-top:40px;width:100%;max-width:unset;margin-bottom:80px;}"],m.Z.laptopM,m.Z.tablet),ne=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightWrapper",componentId:"sc-19uqb3f-3"})(["justify-content:flex-start;max-width:946px;width:fit-content;position:relative;@media ","{justify-content:center;width:100%;max-width:unset;height:360px;}"],m.Z.tablet),re=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightItem",componentId:"sc-19uqb3f-4"})(["position:absolute;bottom:-2px;left:-54px;justify-content:flex-start;z-index:2;@media ","{justify-content:center;flex-direction:column;bottom:unset;left:50%;top:24%;transform:translate(-50%,-50%);}"],m.Z.tablet),oe=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightHeaderWrapper",componentId:"sc-19uqb3f-5"})(["@media (max-width:1325px){max-width:257px;}@media ","{max-width:100%;margin-top:40px;padding:0 16px;}"],m.Z.tablet),de=r.ZP.img.withConfig({displayName:"_footerBanner__PatternWrapper",componentId:"sc-19uqb3f-6"})(["width:100%;height:100%;@media (min-width:1440px){display:none;}"]),le=r.ZP.div.withConfig({displayName:"_footerBanner__PatternDivReplacer",componentId:"sc-19uqb3f-7"})(["display:none;@media (min-width:1440px){display:flex;width:946px;}"]),me=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__BtnWrapper",componentId:"sc-19uqb3f-8"})(["margin-top:24px;"]),pe=(0,r.ZP)(c.Qj).withConfig({displayName:"_footerBanner__StyledLinkButton",componentId:"sc-19uqb3f-9"})(["padding:10px 16px;"]),ce=(0,r.ZP)(c.Qj).withConfig({displayName:"_footerBanner__StyledLinkRightButton",componentId:"sc-19uqb3f-10"})(["padding:10px 16px;border:2px solid var(--color-white);"]),ge=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__ImageWrapper",componentId:"sc-19uqb3f-11"})(["max-width:561px;padding-top:36px;height:auto;align-items:flex-end;@media (max-width:1325px){max-width:550px;}@media ","{max-width:430px;}@media ","{padding-top:40px;max-width:280px;}"],m.Z.laptopM,m.Z.tablet),ue=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__DesktopWrapper",componentId:"sc-19uqb3f-12"})(["@media ","{display:none;}"],m.Z.tablet),xe=r.ZP.div.withConfig({displayName:"_footerBanner__MobileWrapper",componentId:"sc-19uqb3f-13"})(["display:none;@media ","{display:flex;justify-content:center;width:100%;}"],m.Z.tablet),he=(0,r.ZP)(o.h4).withConfig({displayName:"_footerBanner__StyledHeader",componentId:"sc-19uqb3f-14"})(["@media ","{font-size:32px;line-height:40px;}"],m.Z.tablet),se=(0,r.ZP)(o.h4).withConfig({displayName:"_footerBanner__StyledHeaderBottom",componentId:"sc-19uqb3f-15"})(["@media ","{font-size:32px;line-height:40px;}"],m.Z.tablet),Me=function(){var e=(0,n.useStaticQuery)("1494702810"),t=p()[0];return a.createElement(te,{background_pattern:K},a.createElement(ie,null,a.createElement(ae,null,a.createElement(d.kC,{fd:"column",mb:"8px",laptopM:{max_width:"360px"},tablet:{max_width:"328px"}},a.createElement(he,{as:"h3",type:"heading-3",mb:"8px",tablet:{align:"center"}},"Binary.com has moved to Deriv since 30 November"),a.createElement(o.h4,{type:"paragraph-1",weight:"normal",laptopM:{max_width:"320px"},tablet:{align:"center",p:"0 16px"}},"Start using Deriv with your Binary.com email and password."),a.createElement(me,{jc:"flex-start",tablet:{jc:"center"}},a.createElement(pe,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Trade on Deriv")))),a.createElement(ne,null,t?a.createElement(de,{src:ee,alt:""}):a.createElement(de,{src:K,alt:""}),a.createElement(le,null),a.createElement(re,null,a.createElement(ue,null,a.createElement(ge,null,a.createElement(o.et,{data:e.d_trader,alt:"DTrader",width:"100%"}))),a.createElement(xe,{tablet:{max_width:"280px"}},a.createElement(ge,null,a.createElement(o.et,{data:e.d_trader_mobile,alt:"DTrader",width:"100%"}))),a.createElement(oe,{fd:"column",height:"auto",max_width:"388px"},a.createElement(se,{type:"heading-3",color:"white",align:"center",tabletS:{max_width:"380px",m:"0 auto"}},"Want to continue trading?"),a.createElement(me,{height:"auto"},a.createElement(ce,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Try Deriv now")))))))},Le=i(1340),we=(0,C.Wm)()((function(){return a.createElement(Le.Z,{type:"binary-to-deriv",margin_top:"0",is_ppc:!0,no_live_chat:!0,is_ppc_redirect:!0},a.createElement(d.HJ,{title:(0,C.NC)("Binary to Deriv"),description:(0,C.NC)("Trade jump indices, the new synthetics with a twist"),no_index:!0}),a.createElement(D,null),a.createElement(S,null),a.createElement(Y,null),a.createElement(R,null),a.createElement($,null),a.createElement(Me,null))}))}}]); -//# sourceMappingURL=component---src-pages-index-js-d6f2a947660a6f1b3cfd.js.map \ No newline at end of file +(self.webpackChunkderiv_com=self.webpackChunkderiv_com||[]).push([[678],{8994:function(e,t,i){"use strict";i.r(t),i.d(t,{default:function(){return we}});var a=i(7294),n=i(5444),r=i(9),o=i(2466),d=i(7513),l=i(4845),m=i(6299),p=function(){var e=(0,a.useState)(!1),t=e[0],i=e[1],n=(0,a.useState)((0,l.jU)()?window.innerWidth:0),r=n[0],o=n[1];(0,a.useEffect)((function(){if(!(0,l.jU)())return!1;var e=function(){return o(window.innerWidth)};return d(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e),d()}}));var d=function(){i(!!(0,l.jU)()&&!!(r<=m.d.tablet))};return[t]},c=i(3324),g=i.p+"static/hero_desktop-96d6a94d9ac0b2e1d09080c9cb78e553.png",u=i.p+"static/hero_mobile-ec0c72898489d916a3b735bc37ea61a0.png",x=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__MainWrapper",componentId:"sc-160pht5-0"})(["position:relative;"]),h=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__BackgroundWrapper",componentId:"sc-160pht5-1"})(["background-image:url(",");background-attachment:fixed;background-repeat:no-repeat;background-size:cover;position:absolute;left:0;top:0;"],(function(e){return e.bg_image})),s=(0,r.ZP)(d.W2).withConfig({displayName:"_dHero__ParentWrapper",componentId:"sc-160pht5-2"})(["position:relative;z-index:2;padding:192px 0 120px;justify-content:flex-start;@media (max-width:1366px){width:90%;}@media ","{padding:86px 0 80px;}"],m.Z.tabletL),M=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__ItemsWrapper",componentId:"sc-160pht5-3"})(["flex-direction:row;height:478px;@media ","{height:500px;}@media ","{flex-direction:column-reverse;height:auto;max-width:58.8rem;}"],m.Z.desktopL,m.Z.tabletL),L=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__LeftWrapper",componentId:"sc-160pht5-4"})(["flex-direction:column;align-items:flex-start;width:588px;max-height:312px;margin-right:24px;@media (max-width:1222px){max-height:unset;padding-bottom:80px;}@media ","{width:100%;margin-right:0;max-height:unset;justify-content:center;padding-bottom:0;}"],m.Z.tabletL),w=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__RightWrapper",componentId:"sc-160pht5-5"})(["width:540px;@media ","{width:100%;margin:0 auto;}"],m.Z.tabletL),I=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__DesktopWrapper",componentId:"sc-160pht5-6"})(["@media ","{display:none;}"],m.Z.tablet),y=r.ZP.div.withConfig({displayName:"_dHero__MobileWrapper",componentId:"sc-160pht5-7"})(["display:none;@media ","{display:flex;justify-content:center;width:100%;}"],m.Z.tablet),N=(0,r.ZP)(o.h4).withConfig({displayName:"_dHero__StyledHeader",componentId:"sc-160pht5-8"})(["@media ","{font-size:80px;}@media ","{font-size:32px;line-height:40px;}"],m.Z.desktopL,m.Z.tablet),b=(0,r.ZP)(o.h4).withConfig({displayName:"_dHero__StyledSmallHeader",componentId:"sc-160pht5-9"})(["@media ","{font-size:18px;line-height:26px;}"],m.Z.tablet),f=(0,r.ZP)(d.kC).withConfig({displayName:"_dHero__BtnWrapper",componentId:"sc-160pht5-10"})(["margin-top:24px;justify-content:flex-start;"]),j=(0,r.ZP)(c.Qj).withConfig({displayName:"_dHero__StyledLinkButton",componentId:"sc-160pht5-11"})(["padding:10px 16px;background:var(--color-green-3);border:2px solid var(--color-green-3);"]),D=function(){var e=p()[0]?u:g,t=(0,n.useStaticQuery)("3614738892");return a.createElement(x,null,a.createElement(s,null,a.createElement(d.kC,null,a.createElement(M,null,a.createElement(L,null,a.createElement(N,{type:"hero",color:"white",mb:"32px",mt:"24px",tabletL:{max_width:"58.8rem",mb:"16px",mt:"16px"}},"It’s so easy to switch to Deriv"),a.createElement(b,{type:"heading-3",color:"white",weight:"normal",tabletL:{max_width:"58.8rem"}},"No sign up required — just use your Binary.com credentials"),a.createElement(y,null,a.createElement(f,null,a.createElement(j,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Take me to Deriv")))),a.createElement(w,null,a.createElement(o.lr,Object.assign({has_autoplay:!0,autoplay_interval:4500},{options:{loop:!0},container_style:{maxWidth:"100%",margin:"0 auto"},slide_style:{minWidth:"100%",position:"relative"}}),[{img:"hero_dmt5_banner",img_alt:"dmt5 banner",img_mobile:"hero_dmt5_banner_mobile",img_alt_mobile:"dmt5 banner mobile"},{img:"hero_dtrader_banner",img_alt:"dtrader banner",img_mobile:"hero_dtrader_banner_mobile",img_alt_mobile:"dtrader banner mobile"}].map((function(e,i){return a.createElement(d.kC,{key:i},a.createElement(I,null,a.createElement(o.et,{data:t[e.img],alt:e.img_alt,width:"100%"})))}))))))),a.createElement(h,{bg_image:e}))},_=(0,r.ZP)(d.S$).withConfig({displayName:"_dBanner__SectionWrapper",componentId:"rs5f31-0"})(["background:var(--color-white);padding:120px 0;@media ","{padding:40px 0;}"],m.Z.tabletL),S=function(){return a.createElement(_,null,a.createElement(d.kC,null,a.createElement(o.h4,{type:"heading-3",weight:"normal",align:"center",max_width:"90rem",as:"h3",tabletL:{max_width:"58.8rem"}},"We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.")))},E=i(4133),Z=i(8475),C=i(4443);var A="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0ZGNDQ0RiIgZD0iTTcuMjkzLjI5M2ExIDEgMCAwMDAgMS40MTRMMTIuNTg2IDdIMWExIDEgMCAwMDAgMmwxMS41ODYtLjAwMS01LjI5MyA1LjI5NGExIDEgMCAwMDEuNDE0IDEuNDE0bDctNyAuMDczLS4wODIuMDA3LS4wMDgtLjA4LjA5YS45MjcuOTI3IDAgMDAuMDk3LS4xMTJjLjAxOC0uMDI0LjAzNC0uMDQ5LjA1LS4wNzRsLjAyMS0uMDM3Yy4wMTEtLjAyLjAyMi0uMDQuMDMxLS4wNmwuMDIzLS4wNTMuMDIxLS4wNi4wMTQtLjA0NS4wMTYtLjA2NS4wMDktLjA1My4wMDctLjA1OC4wMDQtLjA3di0uMDRjMC0uMDIzLS4wMDItLjA0Ni0uMDA0LS4wN0wxNiA4YzAtLjA1LS4wMDQtLjEtLjAxMS0uMTQ5bC0uMDEtLjA1MmEuNzYyLjc2MiAwIDAwLS4wMTUtLjA2NWwtLjAxNC0uMDQ2LS4wMjEtLjA2LS4wMjMtLjA1MS0uMDMtLjA2MS0uMDIyLS4wMzdhMS4yIDEuMiAwIDAwLS4wNS0uMDc0bC0uMDE3LS4wMjJhLjk3Ljk3IDAgMDAtLjA4LS4wOWwtNy03YTEgMSAwIDAwLTEuNDE0IDB6Ii8+PC9zdmc+",T=i(476),v=(0,r.ZP)(d.W2).withConfig({displayName:"_favorite__StyledContainer",componentId:"ciwcd4-0"})(["@media ","{display:none;}"],m.Z.tabletS),k=(0,r.ZP)(d.kC).withConfig({displayName:"_favorite__ImageWrapper",componentId:"ciwcd4-1"})(["max-width:384px;position:relative;:first-child{margin-right:24px;}@media ","{margin:0 auto;:first-child{margin:0 auto 44px;}}"],m.Z.tabletL),z=(0,r.ZP)(C.UE).withConfig({displayName:"_favorite__LearnMore",componentId:"ciwcd4-2"})(["width:131px;height:40px;display:flex;flex-direction:row;justify-content:center;align-items:center;padding:10px 16px;background:#ffffff;border-radius:100px;position:absolute;bottom:-8%;left:50%;transform:translate(-50%,-50%);filter:drop-shadow(0 0 24px rgba(0,0,0,0.08)) drop-shadow(0 24px 24px rgba(0,0,0,0.08));text-decoration:none;","{font-weight:bold;font-size:14px;line-height:20px;color:var(--color-red);}"],o.xv),P=r.ZP.img.withConfig({displayName:"_favorite__ArrowImg",componentId:"ciwcd4-3"})(["margin-left:8px;width:16px;height:16px;"]),Y=function(){var e=(0,n.useStaticQuery)("2800676821"),t=(0,E.Z)(),i=t[0],r=t[2],l=null==i?void 0:i.clients_country,m=(0,a.useState)(T.Ht),p=m[0],c=m[1],g=(0,a.useState)(T.EX),u=g[0],x=g[1];return(0,a.useEffect)((function(){(0,Z.ZD)(l)&&(c(T.Hd),x(T.Zm))}),[i]),a.createElement(v,null,a.createElement(d.kC,{fd:"column",mb:"120px",tabletL:{mb:"60px"}},a.createElement(o.h4,{type:"heading-2",align:"center",mb:"40px",tabletL:{mb:"24px"}},"Access your favourite platforms in one place"),a.createElement(d.kC,{tabletL:{fd:"column"}},a.createElement(k,null,a.createElement(o.et,{data:e.deriv_mt5_fav,alt:"Deriv MT5 favorite",width:"100%"}),a.createElement(z,{to:p,disabled:r},a.createElement(o.xv,null,"Learn more"),a.createElement(P,{src:A,alt:"arrow"}))),a.createElement(k,null,a.createElement(o.et,{data:e.dtrader_fav,alt:"Dtrader favorite",width:"100%"}),a.createElement(z,{to:u,disabled:r},a.createElement(o.xv,null,"Learn more"),a.createElement(P,{src:A,alt:"arrow"}))))))};var Q=(0,r.ZP)(d.W2).withConfig({displayName:"_benefits__ParentWrapper",componentId:"ujea8e-0"})(["flex-direction:row;justify-content:center;flex-wrap:wrap;max-width:964px;width:100%;@media ","{flex-direction:column;}"],m.Z.laptop),O=r.ZP.img.withConfig({displayName:"_benefits__Icon",componentId:"ujea8e-1"})(["width:48px;height:48px;"]),U=(0,r.ZP)(d.kC).withConfig({displayName:"_benefits__ContentWrapper",componentId:"ujea8e-2"})(["max-width:470px;margin-bottom:24px;:nth-child(odd){margin-left:24px;}@media ","{max-width:58.8rem;width:100%;padding:0 16px;:nth-child(odd){margin-left:0;}}"],m.Z.laptop),W=(0,r.ZP)(d.kC).withConfig({displayName:"_benefits__BtnWrapper",componentId:"ujea8e-3"})(["margin-top:16px;padding-bottom:80px;@media ","{margin-top:0;padding-bottom:0;}"],m.Z.laptop),G=(0,r.ZP)(c.Qj).withConfig({displayName:"_benefits__StyledLinkButton",componentId:"ujea8e-4"})(["padding:10px 16px;"]),B=(0,r.ZP)(o.h4).withConfig({displayName:"_benefits__StyledHeader",componentId:"ujea8e-5"})(["@media (min-width:1440px){font-size:32px;line-height:40px;}"]),H=[{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iI0ZGNjQ0NCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzEgMTZoLTQuMThjLS40Mi0xLjE2LTEuNTItMi0yLjgyLTItMS4zIDAtMi40Ljg0LTIuODIgMkgxN2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxNGMxLjEgMCAyLS45IDItMlYxOGMwLTEuMS0uOS0yLTItMnptLTcgMGMuNTUgMCAxIC40NSAxIDFzLS40NSAxLTEgMS0xLS40NS0xLTEgLjQ1LTEgMS0xem0tNS4zIDEwLjcgMi41OSAyLjU5Yy4zOS4zOSAxLjAzLjM5IDEuNDEgMGw2LjU5LTYuNTlhLjk5Ni45OTYgMCAxIDAtMS40MS0xLjQxTDIyIDI3LjE3bC0xLjg5LTEuODhhLjk5Ni45OTYgMCAxIDAtMS40MSAxLjQxeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"No Signup required",header:"No sign-up required",desc:"Just log in with your Binary.com credentials and start trading right away."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzk4QkU3MSIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIgMTZIMTZjLS41NSAwLTEgLjQ1LTEgMXYyYzAgLjU1LjQ1IDEgMSAxaDE2Yy41NSAwIDEtLjQ1IDEtMXYtMmMwLS41NS0uNDUtMS0xLTF6bS0xNiA2aDE2Yy41NSAwIDEgLjQ1IDEgMXYxYzAgLjU1LS40NSAxLTEgMUgxNmMtLjU1IDAtMS0uNDUtMS0xdi0xYzAtLjU1LjQ1LTEgMS0xem0wIDVoMTZjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDFIMTZjLS41NSAwLTEtLjQ1LTEtMXMuNDUtMSAxLTF6bS0uNSA0aDE3Yy4yOCAwIC41LjIyLjUuNXMtLjIyLjUtLjUuNWgtMTdjLS4yOCAwLS41LS4yMi0uNS0uNXMuMjItLjUuNS0uNXoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=",icon_alt:"Over 100+ instruments",header:"Over 100+ instruments",desc:"Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzUwODVCNiIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjMuMDgzIDMyLjgyYzAgLjY0LS41OSAxLjEyLTEuMjEuOTgtNC40Ny0xLTcuNzktNS4wMS03Ljc5LTkuOCAwLTQuNzkgMy4zMi04LjggNy43OS05LjhhLjk5OC45OTggMCAwIDEgMS4yMS45OHYxNy42NHptMi4wMy0xNy42NHY2LjgxYzAgLjU1LjQ1IDEgMSAxaDYuNzljLjY0IDAgMS4xMi0uNTkuOTgtMS4yMi0uODUtMy43Ni0zLjgtNi43Mi03LjU1LTcuNTctLjYzLS4xNC0xLjIyLjM0LTEuMjIuOTh6bTAgMTcuNjR2LTYuODFjMC0uNTUuNDUtMSAxLjAxLTEuMDFoNi43OWMuNjMgMCAxLjEyLjYuOTggMS4yMi0uODUgMy43Ni0zLjggNi43My03LjU2IDcuNTgtLjYzLjE0LTEuMjItLjM0LTEuMjItLjk4eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"An enhanced experience",header:"An enhanced experience",desc:"Trade confidently on a service created by a trusted online trading brand with over 20 years of experience. "},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzc4NjJBQSIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjIgMjVoLTZjLS41NSAwLTEtLjQ1LTEtMXYtOGMwLS41NS40NS0xIDEtMWg2Yy41NSAwIDEgLjQ1IDEgMXY4YzAgLjU1LS40NSAxLTEgMXptMCA4aC02Yy0uNTUgMC0xLS40NS0xLTF2LTRjMC0uNTUuNDUtMSAxLTFoNmMuNTUgMCAxIC40NSAxIDF2NGMwIC41NS0uNDUgMS0xIDF6bTQgMGg2Yy41NSAwIDEtLjQ1IDEtMXYtOGMwLS41NS0uNDUtMS0xLTFoLTZjLS41NSAwLTEgLjQ1LTEgMXY4YzAgLjU1LjQ1IDEgMSAxem0tMS0xM3YtNGMwLS41NS40NS0xIDEtMWg2Yy41NSAwIDEgLjQ1IDEgMXY0YzAgLjU1LS40NSAxLTEgMWgtNmMtLjU1IDAtMS0uNDUtMS0xeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"Your favourites in one place",header:"Your favourites in one place",desc:"Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader. "},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iIzNGOUFBNyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzIgMTRIMTRjLTEuMSAwLTIgLjktMiAydjEyYzAgMS4xLjkgMiAyIDJoN3YyaC0xYy0uNTUgMC0xIC40NS0xIDFzLjQ1IDEgMSAxaDZjLjU1IDAgMS0uNDUgMS0xcy0uNDUtMS0xLTFoLTF2LTJoMWMuNTUgMCAxLS40NSAxLTFzLS40NS0xLTEtMUgxNWMtLjU1IDAtMS0uNDUtMS0xVjE3YzAtLjU1LjQ1LTEgMS0xaDE2Yy41NSAwIDEgLjQ1IDEgMXYzYzAgLjU1LjQ1IDEgMSAxczEtLjQ1IDEtMXYtNGMwLTEuMS0uOS0yLTItMnptLTIgOSA1IC4wMWMuNTUgMCAxIC40NCAxIC45OXY5YzAgLjU1LS40NSAxLTEgMWgtNWMtLjU1IDAtMS0uNDUtMS0xdi05YzAtLjU1LjQ1LTEgMS0xem0wIDloNXYtN2gtNXY3em0tNy0xNCAuOTcgM0gyN2wtMi40NyAxLjc2Ljk0IDIuOTEtMi40Ny0xLjgtMi40NyAxLjguOTQtMi45MUwxOSAyMWgzLjAzbC45Ny0zeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==",icon_alt:"User-friendly, modern design",header:"User-friendly, modern design",desc:"Enjoy an intuitive interface that even new traders find easy to use."},{icon:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiByeD0iOCIgZmlsbD0iI0ZGQjIyQSIvPjxwYXRoIGQ9Ik0yNCAxNGMtNS41MiAwLTEwIDQuNDgtMTAgMTBzNC40OCAxMCAxMCAxMCAxMC00LjQ4IDEwLTEwLTQuNDgtMTAtMTAtMTB6bTcuNDYgNy4xMi0yLjc4IDEuMTVhNC45ODIgNC45ODIgMCAwIDAtMi45NS0yLjk0bDEuMTUtMi43OGMyLjEuOCAzLjc3IDIuNDcgNC41OCA0LjU3ek0yNCAyN2MtMS42NiAwLTMtMS4zNC0zLTNzMS4zNC0zIDMtMyAzIDEuMzQgMyAzLTEuMzQgMy0zIDN6bS0yLjg3LTEwLjQ2IDEuMTcgMi43OGE1IDUgMCAwIDAtMi45OCAyLjk3bC0yLjc4LTEuMTZhNy45ODQgNy45ODQgMCAwIDEgNC41OS00LjU5em0tNC41OSAxMC4zMyAyLjc4LTEuMTVhNC45NjggNC45NjggMCAwIDAgMi45NyAyLjk2bC0xLjE3IDIuNzhhNy45OTYgNy45OTYgMCAwIDEtNC41OC00LjU5em0xMC4zNCA0LjU5LTEuMTUtMi43OGE0Ljk3OCA0Ljk3OCAwIDAgMCAyLjk1LTIuOTdsMi43OCAxLjE3YTguMDA3IDguMDA3IDAgMCAxLTQuNTggNC41OHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=",icon_alt:"Support when you need it",header:"Support when you need it",desc:"Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content. "}],R=function(){var e=(0,E.Z)(),t=e[0],i=e[2],n=null==t?void 0:t.clients_country,r=(0,a.useState)(T.tz),l=r[0],m=r[1];return(0,a.useEffect)((function(){(0,Z.ZD)(n)&&m(T.P_)}),[t]),a.createElement(Q,null,a.createElement(d.kC,{laptop:{p:"0 16px"}},a.createElement(B,{type:"heading-3",align:"center",mb:"40px",laptop:{max_width:"58.8rem",mb:"24px"}},"Deriv is everything you love about Binary.com, plus more")),H.map((function(e,t){return a.createElement(U,{key:t,jc:"flex-start"},a.createElement(d.kC,{mr:"16px",max_width:"48px"},a.createElement(O,{src:e.icon,alt:e.icon_alt})),a.createElement(d.kC,{fd:"column"},a.createElement(o.h4,{type:"subtitle-1",mb:"8px"},e.header),a.createElement(o.h4,{type:"paragraph-1",weight:"normal"},e.desc)))})),a.createElement(d.kC,null,a.createElement(W,null,a.createElement(G,{to:l,secondary:"true",disabled:i},"Explore Deriv now"))))},J=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ContentWrapper",componentId:"t96xdu-0"})(["position:relative;@media ","{display:none;}"],m.Z.tabletS),X=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ParentWrapper",componentId:"t96xdu-1"})(["max-width:100%;@media ","{max-width:1200px;}@media ","{flex-wrap:wrap;max-width:84rem;}@media ","{max-width:58.8rem;flex-wrap:nowrap;flex-direction:column;}"],m.Z.desktopS,m.Z.laptopM,m.Z.tablet),q=(0,r.ZP)(d.kC).withConfig({displayName:"_exclusive__ItemsWrapper",componentId:"t96xdu-2"})(["border-radius:8px;max-width:282px;box-shadow:0 4px 8px rgba(14,14,14,0.1);overflow:hidden;margin-right:24px;height:auto;max-height:420px;:last-child{margin-right:0;}@media ","{:nth-child(odd){margin-right:24px;}:last-child{margin-right:unset;}margin-right:0;margin-bottom:24px;}@media ","{margin:0 auto 24px;:nth-child(odd){margin-right:auto;}:last-child{margin:0 auto 0 !important;}}@media ","{max-width:100%;}"],m.Z.laptopM,m.Z.tablet,m.Z.mobileL),F=(0,r.ZP)(o.h4).withConfig({displayName:"_exclusive__StyledHeader",componentId:"t96xdu-3"})(["margin:0 0 8px;@media ","{font-size:24px;line-height:36px;}@media ","{font-size:24px;line-height:36px;max-width:264px;margin:0 auto 8px;}"],m.Z.desktopS,m.Z.tabletL),V=(0,r.ZP)(o.h4).withConfig({displayName:"_exclusive__StyledSmallHeader",componentId:"t96xdu-4"})(["@media ","{font-size:16px;line-height:24px;}@media ","{font-size:16px;line-height:24px;}"],m.Z.desktopS,m.Z.tabletL),$=function(){var e=(0,n.useStaticQuery)("3699305886");return a.createElement(d.W2,{fd:"column",pt:"40px",pb:"120px",tablet:{pb:"40px"}},a.createElement(d.kC,{fd:"column",mb:"40px",tabletL:{mb:"24px"}},a.createElement(o.h4,{as:"h2",type:"heading-2",align:"center",mb:"8px"},"Exclusively on Deriv"),a.createElement(o.h4,{as:"h3",type:"subtitle-1",align:"center",weight:"normal"},"There’s a bright future ahead."),a.createElement(o.h4,{as:"h3",type:"subtitle-1",align:"center",weight:"normal"},"Find these bonus features and more on Deriv:")),a.createElement(X,null,[{image:"multiplier",image_alt:"Multiplier",header:"Trade multipliers",desc:"Combine the upside of leverage trading with the simplicity and limited risk of options."},{image:"jump_indices",image_alt:"Jump Indices",header:"Trade Jump indices",desc:"Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7."},{image:"deriv_academy",image_alt:"Deriv Academy",header:"Upskill with Deriv Academy",desc:"Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more."},{image:"trade_in_the_moment",image_alt:"Trade in the moment",header:"Trade
in-the-moment",desc:"Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market. "}].map((function(t,i){return a.createElement(q,{key:i,fd:"column"},a.createElement(J,null,a.createElement(o.et,{data:e[t.image],alt:t.image_alt,width:"100%"})),a.createElement(d.kC,{fd:"column",p:"32px"},a.createElement(F,{type:"subtitle-1",align:"center",dangerouslySetInnerHTML:{__html:t.header}}),a.createElement(V,{type:"paragraph-1",weight:"normal",align:"center"},t.desc)))}))))},K=i.p+"static/pattern-5a57200c7a012ca7fceb48965c9c365d.png",ee=i.p+"static/pattern_mobile-346611f25fc9dfbec101c44bce240217.png",te=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__BannerWrapper",componentId:"sc-19uqb3f-0"})(["border-top:1px solid var(--color-grey-17);border-bottom:1px solid var(--color-grey-17);@media (min-width:1440px){background-image:url(",");background-repeat:no-repeat;background-size:cover;background-position:top right -65rem;}"],(function(e){return e.background_pattern})),ie=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__ParentWrapper",componentId:"sc-19uqb3f-1"})(["max-width:1440px;height:304px;z-index:3;overflow:hidden;@media ","{height:370px;}@media ","{height:280px;}@media ","{flex-direction:column;height:auto;}"],m.Z.desktopL,m.Z.laptop,m.Z.tablet),ae=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__LeftWrapper",componentId:"sc-19uqb3f-2"})(["padding-left:100px;padding-top:52px;width:35%;max-width:494px;@media (max-width:1414px){padding-left:36px;}@media (max-width:1325px){width:50%;}@media ","{padding-top:36px;width:58%;}@media ","{padding-left:0;padding-top:40px;width:100%;max-width:unset;margin-bottom:80px;}"],m.Z.laptopM,m.Z.tablet),ne=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightWrapper",componentId:"sc-19uqb3f-3"})(["justify-content:flex-start;max-width:946px;width:fit-content;position:relative;@media ","{justify-content:center;width:100%;max-width:unset;height:360px;}"],m.Z.tablet),re=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightItem",componentId:"sc-19uqb3f-4"})(["position:absolute;bottom:-2px;left:-54px;justify-content:flex-start;z-index:2;@media ","{justify-content:center;flex-direction:column;bottom:unset;left:50%;top:24%;transform:translate(-50%,-50%);}"],m.Z.tablet),oe=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__RightHeaderWrapper",componentId:"sc-19uqb3f-5"})(["@media (max-width:1325px){max-width:257px;}@media ","{max-width:100%;margin-top:40px;padding:0 16px;}"],m.Z.tablet),de=r.ZP.img.withConfig({displayName:"_footerBanner__PatternWrapper",componentId:"sc-19uqb3f-6"})(["width:100%;height:100%;@media (min-width:1440px){display:none;}"]),le=r.ZP.div.withConfig({displayName:"_footerBanner__PatternDivReplacer",componentId:"sc-19uqb3f-7"})(["display:none;@media (min-width:1440px){display:flex;width:946px;}"]),me=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__BtnWrapper",componentId:"sc-19uqb3f-8"})(["margin-top:24px;"]),pe=(0,r.ZP)(c.Qj).withConfig({displayName:"_footerBanner__StyledLinkButton",componentId:"sc-19uqb3f-9"})(["padding:10px 16px;"]),ce=(0,r.ZP)(c.Qj).withConfig({displayName:"_footerBanner__StyledLinkRightButton",componentId:"sc-19uqb3f-10"})(["padding:10px 16px;border:2px solid var(--color-white);"]),ge=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__ImageWrapper",componentId:"sc-19uqb3f-11"})(["max-width:561px;padding-top:36px;height:auto;align-items:flex-end;@media (max-width:1325px){max-width:550px;}@media ","{max-width:430px;}@media ","{padding-top:40px;max-width:280px;}"],m.Z.laptopM,m.Z.tablet),ue=(0,r.ZP)(d.kC).withConfig({displayName:"_footerBanner__DesktopWrapper",componentId:"sc-19uqb3f-12"})(["@media ","{display:none;}"],m.Z.tablet),xe=r.ZP.div.withConfig({displayName:"_footerBanner__MobileWrapper",componentId:"sc-19uqb3f-13"})(["display:none;@media ","{display:flex;justify-content:center;width:100%;}"],m.Z.tablet),he=(0,r.ZP)(o.h4).withConfig({displayName:"_footerBanner__StyledHeader",componentId:"sc-19uqb3f-14"})(["@media ","{font-size:32px;line-height:40px;}"],m.Z.tablet),se=(0,r.ZP)(o.h4).withConfig({displayName:"_footerBanner__StyledHeaderBottom",componentId:"sc-19uqb3f-15"})(["@media ","{font-size:32px;line-height:40px;}"],m.Z.tablet),Me=function(){var e=(0,n.useStaticQuery)("1494702810"),t=p()[0];return a.createElement(te,{background_pattern:K},a.createElement(ie,null,a.createElement(ae,null,a.createElement(d.kC,{fd:"column",mb:"8px",laptopM:{max_width:"360px"},tablet:{max_width:"328px"}},a.createElement(he,{as:"h3",type:"heading-3",mb:"8px",tablet:{align:"center"}},"Binary.com has moved to Deriv since 30 November"),a.createElement(o.h4,{type:"paragraph-1",weight:"normal",laptopM:{max_width:"320px"},tablet:{align:"center",p:"0 16px"}},"Start using Deriv with your Binary.com email and password."),a.createElement(me,{jc:"flex-start",tablet:{jc:"center"}},a.createElement(pe,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Trade on Deriv")))),a.createElement(ne,null,t?a.createElement(de,{src:ee,alt:""}):a.createElement(de,{src:K,alt:""}),a.createElement(le,null),a.createElement(re,null,a.createElement(ue,null,a.createElement(ge,null,a.createElement(o.et,{data:e.d_trader,alt:"DTrader",width:"100%"}))),a.createElement(xe,{tablet:{max_width:"280px"}},a.createElement(ge,null,a.createElement(o.et,{data:e.d_trader_mobile,alt:"DTrader",width:"100%"}))),a.createElement(oe,{fd:"column",height:"auto",max_width:"388px"},a.createElement(se,{type:"heading-3",color:"white",align:"center",tabletS:{max_width:"380px",m:"0 auto"}},"Want to continue trading?"),a.createElement(me,{height:"auto"},a.createElement(ce,{to:"https://oauth.deriv.com/oauth2/authorize?app_id=16929&l=en&brand=deriv",rel:"noopener noreferrer",secondary:"true"},"Try Deriv now")))))))},Le=i(4216),we=(0,C.Wm)()((function(){return a.createElement(Le.Z,{type:"binary-to-deriv",margin_top:"0",is_ppc:!0,no_live_chat:!0,is_ppc_redirect:!0},a.createElement(d.HJ,{title:(0,C.NC)("Binary to Deriv"),description:(0,C.NC)("Trade jump indices, the new synthetics with a twist"),no_index:!0}),a.createElement(D,null),a.createElement(S,null),a.createElement(Y,null),a.createElement(R,null),a.createElement($,null),a.createElement(Me,null))}))}}]); +//# sourceMappingURL=component---src-pages-index-js-2d52965d5626708130c2.js.map \ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/es/404.html b/src/root_files/_common/move-to-deriv/es/404.html index 0e7058b809a23..f0218b9012c90 100644 --- a/src/root_files/_common/move-to-deriv/es/404.html +++ b/src/root_files/_common/move-to-deriv/es/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/es/404/index.html b/src/root_files/_common/move-to-deriv/es/404/index.html index e1df972fae087..65529051faf52 100644 --- a/src/root_files/_common/move-to-deriv/es/404/index.html +++ b/src/root_files/_common/move-to-deriv/es/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/es/index.html b/src/root_files/_common/move-to-deriv/es/index.html index 995b8ffe213a9..1fc6a898a760c 100644 --- a/src/root_files/_common/move-to-deriv/es/index.html +++ b/src/root_files/_common/move-to-deriv/es/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Los CFDs se consideran derivados complejos y pueden no ser adecuados para clientes minoristas.

Los CFD son instrumentos complejos e implican un alto riesgo de perder dinero rápidamente debido al apalancamiento. El 65% de las cuentas de inversores minoristas pierden dinero cuando operan con CFD con este proveedor. Usted debe considerar si entiende cómo funcionan los CFD y si puede permitirse el riesgo de perder su dinero.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Los CFDs se consideran derivados complejos y pueden no ser adecuados para clientes minoristas.

Los CFD son instrumentos complejos e implican un alto riesgo de perder dinero rápidamente debido al apalancamiento. El 65% de las cuentas de inversores minoristas pierden dinero cuando operan con CFD con este proveedor. Usted debe considerar si entiende cómo funcionan los CFD y si puede permitirse el riesgo de perder su dinero.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Los CFDs se consideran derivados complejos y pueden no ser adecuados para clientes minoristas.

Los CFD son instrumentos complejos e implican un alto riesgo de perder dinero rápidamente debido al apalancamiento. El 71% de las cuentas de inversores minoristas pierden dinero cuando operan con CFD con este proveedor. Usted debe considerar si entiende cómo funcionan los CFD y si puede permitirse el riesgo de perder su dinero.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Los CFDs se consideran derivados complejos y pueden no ser adecuados para clientes minoristas.

Los CFD son instrumentos complejos e implican un alto riesgo de perder dinero rápidamente debido al apalancamiento. El 71% de las cuentas de inversores minoristas pierden dinero cuando operan con CFD con este proveedor. Usted debe considerar si entiende cómo funcionan los CFD y si puede permitirse el riesgo de perder su dinero.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/favicon-32x32.png b/src/root_files/_common/move-to-deriv/favicon-32x32.png index aceee974e175c..344bacec10882 100644 Binary files a/src/root_files/_common/move-to-deriv/favicon-32x32.png and b/src/root_files/_common/move-to-deriv/favicon-32x32.png differ diff --git a/src/root_files/_common/move-to-deriv/fr/404.html b/src/root_files/_common/move-to-deriv/fr/404.html index 59de5961c0d02..e4d68f0e0f784 100644 --- a/src/root_files/_common/move-to-deriv/fr/404.html +++ b/src/root_files/_common/move-to-deriv/fr/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/fr/404/index.html b/src/root_files/_common/move-to-deriv/fr/404/index.html index 2ee91d9fffcc5..a03a4a992c36b 100644 --- a/src/root_files/_common/move-to-deriv/fr/404/index.html +++ b/src/root_files/_common/move-to-deriv/fr/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/fr/index.html b/src/root_files/_common/move-to-deriv/fr/index.html index cea20260a2333..bec6aa326c55a 100644 --- a/src/root_files/_common/move-to-deriv/fr/index.html +++ b/src/root_files/_common/move-to-deriv/fr/index.html @@ -356,6 +356,6 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Les CFD sont considérés comme des dérivés complexes et peuvent ne pas convenir aux clients de détail.

Les CFD sont des instruments complexes et comportent un risque élevé de perdre de l'argent rapidement en raison de l'effet de levier. 65% des comptes d'investisseurs particuliers perdent de l'argent lorsqu'ils négocient des CFD avec ce fournisseur. Vous devez vous demander si vous comprenez comment fonctionnent les CFD et si vous pouvez vous permettre de prendre le risque élevé de perdre votre argent. -

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Les CFD sont considérés comme des dérivés complexes et peuvent ne pas convenir aux clients de détail.

Les CFD sont des instruments complexes et comportent un risque élevé de perdre de l'argent rapidement en raison de l'effet de levier. 65% des comptes d'investisseurs particuliers perdent de l'argent lorsqu'ils négocient des CFD avec ce fournisseur. Vous devez vous demander si vous comprenez comment fonctionnent les CFD et si vous pouvez vous permettre de prendre le risque élevé de perdre votre argent. -

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Les CFD sont considérés comme des dérivés complexes et peuvent ne pas convenir aux clients de détail.

Les CFD sont des instruments complexes et comportent un risque élevé de perdre de l'argent rapidement en raison de l'effet de levier. 71% des comptes d'investisseurs particuliers perdent de l'argent lorsqu'ils négocient des CFD avec ce fournisseur. Vous devez vous demander si vous comprenez comment fonctionnent les CFD et si vous pouvez vous permettre de prendre le risque élevé de perdre votre argent. +

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Les CFD sont considérés comme des dérivés complexes et peuvent ne pas convenir aux clients de détail.

Les CFD sont des instruments complexes et comportent un risque élevé de perdre de l'argent rapidement en raison de l'effet de levier. 71% des comptes d'investisseurs particuliers perdent de l'argent lorsqu'ils négocient des CFD avec ce fournisseur. Vous devez vous demander si vous comprenez comment fonctionnent les CFD et si vous pouvez vous permettre de prendre le risque élevé de perdre votre argent. +

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/id/404.html b/src/root_files/_common/move-to-deriv/id/404.html index 72cc668daf06a..d0c9ffbffd31b 100644 --- a/src/root_files/_common/move-to-deriv/id/404.html +++ b/src/root_files/_common/move-to-deriv/id/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/id/404/index.html b/src/root_files/_common/move-to-deriv/id/404/index.html index 1d9525aed4fcb..9792bb7b037c5 100644 --- a/src/root_files/_common/move-to-deriv/id/404/index.html +++ b/src/root_files/_common/move-to-deriv/id/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/id/index.html b/src/root_files/_common/move-to-deriv/id/index.html index c83dd72cc97c4..df937e267b1d0 100644 --- a/src/root_files/_common/move-to-deriv/id/index.html +++ b/src/root_files/_common/move-to-deriv/id/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD dianggap sebagai derivatif kompleks dan mungkin tidak cocok untuk klien ritel.

CFD adalah instrumen kompleks dan memiliki risiko tinggi kehilangan dana dengan cepat sehubungan dengan leverage. 65% akun investor ritel mengalami kerugian pada trading CFD dengan penyedia ini. Anda perlu mempertimbangkan apakah Anda memahami cara kerja CFD dengan baik dan apakah Anda mampu mengambil risiko tinggi dimana Anda akan kehilangan semua dana Anda.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD dianggap sebagai derivatif kompleks dan mungkin tidak cocok untuk klien ritel.

CFD adalah instrumen kompleks dan memiliki risiko tinggi kehilangan dana dengan cepat sehubungan dengan leverage. 65% akun investor ritel mengalami kerugian pada trading CFD dengan penyedia ini. Anda perlu mempertimbangkan apakah Anda memahami cara kerja CFD dengan baik dan apakah Anda mampu mengambil risiko tinggi dimana Anda akan kehilangan semua dana Anda.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD dianggap sebagai derivatif kompleks dan mungkin tidak cocok untuk klien ritel.

CFD adalah instrumen kompleks dan memiliki risiko tinggi kehilangan dana dengan cepat sehubungan dengan leverage. 71% akun investor ritel mengalami kerugian pada trading CFD dengan penyedia ini. Anda perlu mempertimbangkan apakah Anda memahami cara kerja CFD dengan baik dan apakah Anda mampu mengambil risiko tinggi dimana Anda akan kehilangan semua dana Anda.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD dianggap sebagai derivatif kompleks dan mungkin tidak cocok untuk klien ritel.

CFD adalah instrumen kompleks dan memiliki risiko tinggi kehilangan dana dengan cepat sehubungan dengan leverage. 71% akun investor ritel mengalami kerugian pada trading CFD dengan penyedia ini. Anda perlu mempertimbangkan apakah Anda memahami cara kerja CFD dengan baik dan apakah Anda mampu mengambil risiko tinggi dimana Anda akan kehilangan semua dana Anda.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/index.html b/src/root_files/_common/move-to-deriv/index.html index 42c0abd216027..7ed3254cc70b5 100644 --- a/src/root_files/_common/move-to-deriv/index.html +++ b/src/root_files/_common/move-to-deriv/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFDs are considered complex derivatives and may not be suitable for retail clients.

CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 65% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFDs are considered complex derivatives and may not be suitable for retail clients.

CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 65% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFDs are considered complex derivatives and may not be suitable for retail clients.

CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 71% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFDs are considered complex derivatives and may not be suitable for retail clients.

CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. 71% of retail investor accounts lose money when trading CFDs with this provider. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/it/404.html b/src/root_files/_common/move-to-deriv/it/404.html index dd6157c17ceb6..54a488ef0a4e4 100644 --- a/src/root_files/_common/move-to-deriv/it/404.html +++ b/src/root_files/_common/move-to-deriv/it/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/it/404/index.html b/src/root_files/_common/move-to-deriv/it/404/index.html index 050b8015948b2..b4034b1d95380 100644 --- a/src/root_files/_common/move-to-deriv/it/404/index.html +++ b/src/root_files/_common/move-to-deriv/it/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/it/index.html b/src/root_files/_common/move-to-deriv/it/index.html index 1d9780eb83c24..480ef741e7763 100644 --- a/src/root_files/_common/move-to-deriv/it/index.html +++ b/src/root_files/_common/move-to-deriv/it/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

I CFD sono derivati complessi e potrebbero non essere adatti per i clienti al dettaglio.

I CFD sono strumenti complessi che implicano un rischio elevato di perdite rapide di denaro a causa della leva finanziaria. Il 65% degli investitori al dettaglio subisce perdite effettuando trading su CFD con questo fornitore. Ti invitiamo a valutare se sei effettivamente in grado di comprendere il funzionamento dei CFD e nelle condizioni di correre l'elevato rischio di perdere del denaro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

I CFD sono derivati complessi e potrebbero non essere adatti per i clienti al dettaglio.

I CFD sono strumenti complessi che implicano un rischio elevato di perdite rapide di denaro a causa della leva finanziaria. Il 65% degli investitori al dettaglio subisce perdite effettuando trading su CFD con questo fornitore. Ti invitiamo a valutare se sei effettivamente in grado di comprendere il funzionamento dei CFD e nelle condizioni di correre l'elevato rischio di perdere del denaro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

I CFD sono derivati complessi e potrebbero non essere adatti per i clienti al dettaglio.

I CFD sono strumenti complessi che implicano un rischio elevato di perdite rapide di denaro a causa della leva finanziaria. Il 71% degli investitori al dettaglio subisce perdite effettuando trading su CFD con questo fornitore. Ti invitiamo a valutare se sei effettivamente in grado di comprendere il funzionamento dei CFD e nelle condizioni di correre l'elevato rischio di perdere del denaro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

I CFD sono derivati complessi e potrebbero non essere adatti per i clienti al dettaglio.

I CFD sono strumenti complessi che implicano un rischio elevato di perdite rapide di denaro a causa della leva finanziaria. Il 71% degli investitori al dettaglio subisce perdite effettuando trading su CFD con questo fornitore. Ti invitiamo a valutare se sei effettivamente in grado di comprendere il funzionamento dei CFD e nelle condizioni di correre l'elevato rischio di perdere del denaro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/page-data/app-data.json b/src/root_files/_common/move-to-deriv/page-data/app-data.json index 312d14137cf94..37502b89e766a 100644 --- a/src/root_files/_common/move-to-deriv/page-data/app-data.json +++ b/src/root_files/_common/move-to-deriv/page-data/app-data.json @@ -1 +1 @@ -{"webpackCompilationHash":"7290f9984283385f3814"} +{"webpackCompilationHash":"9cc7d164a425996b827d"} diff --git a/src/root_files/_common/move-to-deriv/pl/404.html b/src/root_files/_common/move-to-deriv/pl/404.html index 1384868bc525f..db623178c8333 100644 --- a/src/root_files/_common/move-to-deriv/pl/404.html +++ b/src/root_files/_common/move-to-deriv/pl/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/pl/404/index.html b/src/root_files/_common/move-to-deriv/pl/404/index.html index 8ecb17c77058c..804d05b2bcba2 100644 --- a/src/root_files/_common/move-to-deriv/pl/404/index.html +++ b/src/root_files/_common/move-to-deriv/pl/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/pl/index.html b/src/root_files/_common/move-to-deriv/pl/index.html index c011248fbcb4e..23927f13ebf52 100644 --- a/src/root_files/_common/move-to-deriv/pl/index.html +++ b/src/root_files/_common/move-to-deriv/pl/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Kontrakty CFD są uznawane za złożone instrumenty pochodne i mogą nie być odpowiednie dla klientów detalicznych.

Kontrakty na różnice kursowe (CFDs) są złożonymi instrumentami i wiążą się z dużym ryzykiem szybkiej utraty pieniędzy z powodu dźwigni finansowej. 65% inwestorów detalicznych traci pieniądze podczas handlowania kontraktami na różnice kursowe oferowanymi przez tego usługodawcę. Zastanów się, czy rozumiesz, jak działają kontrakty CFD i czy możesz sobie pozwolić na wysokie ryzyko utraty pieniędzy.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Kontrakty CFD są uznawane za złożone instrumenty pochodne i mogą nie być odpowiednie dla klientów detalicznych.

Kontrakty na różnice kursowe (CFDs) są złożonymi instrumentami i wiążą się z dużym ryzykiem szybkiej utraty pieniędzy z powodu dźwigni finansowej. 65% inwestorów detalicznych traci pieniądze podczas handlowania kontraktami na różnice kursowe oferowanymi przez tego usługodawcę. Zastanów się, czy rozumiesz, jak działają kontrakty CFD i czy możesz sobie pozwolić na wysokie ryzyko utraty pieniędzy.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Kontrakty CFD są uznawane za złożone instrumenty pochodne i mogą nie być odpowiednie dla klientów detalicznych.

Kontrakty na różnice kursowe (CFDs) są złożonymi instrumentami i wiążą się z dużym ryzykiem szybkiej utraty pieniędzy z powodu dźwigni finansowej. 71% inwestorów detalicznych traci pieniądze podczas handlowania kontraktami na różnice kursowe oferowanymi przez tego usługodawcę. Zastanów się, czy rozumiesz, jak działają kontrakty CFD i czy możesz sobie pozwolić na wysokie ryzyko utraty pieniędzy.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Kontrakty CFD są uznawane za złożone instrumenty pochodne i mogą nie być odpowiednie dla klientów detalicznych.

Kontrakty na różnice kursowe (CFDs) są złożonymi instrumentami i wiążą się z dużym ryzykiem szybkiej utraty pieniędzy z powodu dźwigni finansowej. 71% inwestorów detalicznych traci pieniądze podczas handlowania kontraktami na różnice kursowe oferowanymi przez tego usługodawcę. Zastanów się, czy rozumiesz, jak działają kontrakty CFD i czy możesz sobie pozwolić na wysokie ryzyko utraty pieniędzy.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/pt/404.html b/src/root_files/_common/move-to-deriv/pt/404.html index 2757e886f34a6..0b50adafc1468 100644 --- a/src/root_files/_common/move-to-deriv/pt/404.html +++ b/src/root_files/_common/move-to-deriv/pt/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/pt/404/index.html b/src/root_files/_common/move-to-deriv/pt/404/index.html index 77c4cc8643810..0cd4d1cfba88a 100644 --- a/src/root_files/_common/move-to-deriv/pt/404/index.html +++ b/src/root_files/_common/move-to-deriv/pt/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/pt/index.html b/src/root_files/_common/move-to-deriv/pt/index.html index 68c5f3dfbfaba..d3e829bb3c969 100644 --- a/src/root_files/_common/move-to-deriv/pt/index.html +++ b/src/root_files/_common/move-to-deriv/pt/index.html @@ -355,6 +355,6 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Os CFDs são considerados derivados complexos e podem não ser adequados para clientes de varejo.

-Os CFDs são instrumentos complexos e apresentam um alto risco de perder dinheiro rapidamente devido à alavancagem. 65% das contas de investidores de varejo perdem dinheiro ao negociar CFDs com este provedor. Você deve considerar se entende como os CFDs funcionam e se pode correr o risco de perder seu dinheiro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Os CFDs são considerados derivados complexos e podem não ser adequados para clientes de varejo.

-Os CFDs são instrumentos complexos e apresentam um alto risco de perder dinheiro rapidamente devido à alavancagem. 65% das contas de investidores de varejo perdem dinheiro ao negociar CFDs com este provedor. Você deve considerar se entende como os CFDs funcionam e se pode correr o risco de perder seu dinheiro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

Os CFDs são considerados derivados complexos e podem não ser adequados para clientes de varejo.

+Os CFDs são instrumentos complexos e apresentam um alto risco de perder dinheiro rapidamente devido à alavancagem. 71% das contas de investidores de varejo perdem dinheiro ao negociar CFDs com este provedor. Você deve considerar se entende como os CFDs funcionam e se pode correr o risco de perder seu dinheiro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

Os CFDs são considerados derivados complexos e podem não ser adequados para clientes de varejo.

+Os CFDs são instrumentos complexos e apresentam um alto risco de perder dinheiro rapidamente devido à alavancagem. 71% das contas de investidores de varejo perdem dinheiro ao negociar CFDs com este provedor. Você deve considerar se entende como os CFDs funcionam e se pode correr o risco de perder seu dinheiro.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ru/404.html b/src/root_files/_common/move-to-deriv/ru/404.html index 7adc1ee1c91cc..d745262b74402 100644 --- a/src/root_files/_common/move-to-deriv/ru/404.html +++ b/src/root_files/_common/move-to-deriv/ru/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ru/404/index.html b/src/root_files/_common/move-to-deriv/ru/404/index.html index f28aa1c437085..ae5661f75056a 100644 --- a/src/root_files/_common/move-to-deriv/ru/404/index.html +++ b/src/root_files/_common/move-to-deriv/ru/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/ru/index.html b/src/root_files/_common/move-to-deriv/ru/index.html index 81b1bbda582da..50dc569184e27 100644 --- a/src/root_files/_common/move-to-deriv/ru/index.html +++ b/src/root_files/_common/move-to-deriv/ru/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD считаются сложными производными финансовыми инструментами и могут не подходить для розничных клиентов.

CFD - это сложные инструменты, сопряженные с высоким риском быстрой потери средств из-за эффекта кредитного плеча. 65% счетов розничных инвесторов теряют деньги при торговле CFD с этим провайдером. Пожалуйста, убедитесь, что вы хорошо понимаете принципы работы CFD и готовы нести риск потери своих средств.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD считаются сложными производными финансовыми инструментами и могут не подходить для розничных клиентов.

CFD - это сложные инструменты, сопряженные с высоким риском быстрой потери средств из-за эффекта кредитного плеча. 65% счетов розничных инвесторов теряют деньги при торговле CFD с этим провайдером. Пожалуйста, убедитесь, что вы хорошо понимаете принципы работы CFD и готовы нести риск потери своих средств.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD считаются сложными производными финансовыми инструментами и могут не подходить для розничных клиентов.

CFD - это сложные инструменты, сопряженные с высоким риском быстрой потери средств из-за эффекта кредитного плеча. 71% счетов розничных инвесторов теряют деньги при торговле CFD с этим провайдером. Пожалуйста, убедитесь, что вы хорошо понимаете принципы работы CFD и готовы нести риск потери своих средств.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD считаются сложными производными финансовыми инструментами и могут не подходить для розничных клиентов.

CFD - это сложные инструменты, сопряженные с высоким риском быстрой потери средств из-за эффекта кредитного плеча. 71% счетов розничных инвесторов теряют деньги при торговле CFD с этим провайдером. Пожалуйста, убедитесь, что вы хорошо понимаете принципы работы CFD и готовы нести риск потери своих средств.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/th/404.html b/src/root_files/_common/move-to-deriv/th/404.html index 64dcc1b78ad02..070dc222f6afb 100644 --- a/src/root_files/_common/move-to-deriv/th/404.html +++ b/src/root_files/_common/move-to-deriv/th/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/th/404/index.html b/src/root_files/_common/move-to-deriv/th/404/index.html index 2cd7aa613001b..6d9b4b0fda39b 100644 --- a/src/root_files/_common/move-to-deriv/th/404/index.html +++ b/src/root_files/_common/move-to-deriv/th/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/th/index.html b/src/root_files/_common/move-to-deriv/th/index.html index bdfedf32d8e3b..b867a1c4a7954 100644 --- a/src/root_files/_common/move-to-deriv/th/index.html +++ b/src/root_files/_common/move-to-deriv/th/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD ถือเป็นอนุพันธ์ที่ซับซ้อนและอาจไม่เหมาะสำหรับลูกค้ารายย่อย

CFD คือเครื่องมือทางการเงินที่มีความซับซ้อน และมีความเสี่ยงสูงในการสูญเสียเงินอย่างรวดเร็วตามอัตราเลเวอเรจ 65% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อทําการเทรด CFD กับผู้ให้บริการรายนี้ คุณควรพิจารณาว่าคุณเข้าใจว่า CFDs ทํางานอย่างไรและคุณสามารถเสี่ยงต่อการสูญเสียเงินของคุณหรือไม่

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD ถือเป็นอนุพันธ์ที่ซับซ้อนและอาจไม่เหมาะสำหรับลูกค้ารายย่อย

CFD คือเครื่องมือทางการเงินที่มีความซับซ้อน และมีความเสี่ยงสูงในการสูญเสียเงินอย่างรวดเร็วตามอัตราเลเวอเรจ 65% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อทําการเทรด CFD กับผู้ให้บริการรายนี้ คุณควรพิจารณาว่าคุณเข้าใจว่า CFDs ทํางานอย่างไรและคุณสามารถเสี่ยงต่อการสูญเสียเงินของคุณหรือไม่

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFD ถือเป็นอนุพันธ์ที่ซับซ้อนและอาจไม่เหมาะสำหรับลูกค้ารายย่อย

CFD คือเครื่องมือทางการเงินที่มีความซับซ้อน และมีความเสี่ยงสูงในการสูญเสียเงินอย่างรวดเร็วตามอัตราเลเวอเรจ 71% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อทําการเทรด CFD กับผู้ให้บริการรายนี้ คุณควรพิจารณาว่าคุณเข้าใจว่า CFDs ทํางานอย่างไรและคุณสามารถเสี่ยงต่อการสูญเสียเงินของคุณหรือไม่

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFD ถือเป็นอนุพันธ์ที่ซับซ้อนและอาจไม่เหมาะสำหรับลูกค้ารายย่อย

CFD คือเครื่องมือทางการเงินที่มีความซับซ้อน และมีความเสี่ยงสูงในการสูญเสียเงินอย่างรวดเร็วตามอัตราเลเวอเรจ 71% ของบัญชีนักลงทุนรายย่อยสูญเสียเงินเมื่อทําการเทรด CFD กับผู้ให้บริการรายนี้ คุณควรพิจารณาว่าคุณเข้าใจว่า CFDs ทํางานอย่างไรและคุณสามารถเสี่ยงต่อการสูญเสียเงินของคุณหรือไม่

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/vi/404.html b/src/root_files/_common/move-to-deriv/vi/404.html index 75cc528a8efb5..d1cef8956008d 100644 --- a/src/root_files/_common/move-to-deriv/vi/404.html +++ b/src/root_files/_common/move-to-deriv/vi/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/vi/404/index.html b/src/root_files/_common/move-to-deriv/vi/404/index.html index 632dbd98a513e..6c983fa9d5ec5 100644 --- a/src/root_files/_common/move-to-deriv/vi/404/index.html +++ b/src/root_files/_common/move-to-deriv/vi/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/vi/index.html b/src/root_files/_common/move-to-deriv/vi/index.html index 2f625bb48f327..071b5dc634f96 100644 --- a/src/root_files/_common/move-to-deriv/vi/index.html +++ b/src/root_files/_common/move-to-deriv/vi/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFDs được coi là các dẫn xuất phức tạp và có thể không phù hợp với các khách hàng bán lẻ.

CFD là công cụ phức tạp và có nguy cơ mất tiền nhanh chóng do đòn bẩy. 65% tài khoản nhà đầu tư lẻ bị mất tiền khi giao dịch CFD với nhà cung cấp này. Bạn nên xem xét liệu mình có hiểu cách hoạt động của CFD hay không và liệu bạn có đủ khả năng chấp nhận rủi ro mất tiền cao hay không.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFDs được coi là các dẫn xuất phức tạp và có thể không phù hợp với các khách hàng bán lẻ.

CFD là công cụ phức tạp và có nguy cơ mất tiền nhanh chóng do đòn bẩy. 65% tài khoản nhà đầu tư lẻ bị mất tiền khi giao dịch CFD với nhà cung cấp này. Bạn nên xem xét liệu mình có hiểu cách hoạt động của CFD hay không và liệu bạn có đủ khả năng chấp nhận rủi ro mất tiền cao hay không.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

CFDs được coi là các dẫn xuất phức tạp và có thể không phù hợp với các khách hàng bán lẻ.

CFD là công cụ phức tạp và có nguy cơ mất tiền nhanh chóng do đòn bẩy. 71% tài khoản nhà đầu tư lẻ bị mất tiền khi giao dịch CFD với nhà cung cấp này. Bạn nên xem xét liệu mình có hiểu cách hoạt động của CFD hay không và liệu bạn có đủ khả năng chấp nhận rủi ro mất tiền cao hay không.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

CFDs được coi là các dẫn xuất phức tạp và có thể không phù hợp với các khách hàng bán lẻ.

CFD là công cụ phức tạp và có nguy cơ mất tiền nhanh chóng do đòn bẩy. 71% tài khoản nhà đầu tư lẻ bị mất tiền khi giao dịch CFD với nhà cung cấp này. Bạn nên xem xét liệu mình có hiểu cách hoạt động của CFD hay không và liệu bạn có đủ khả năng chấp nhận rủi ro mất tiền cao hay không.

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/webpack-runtime-e2eb179fe5c8ce5a31e0.js b/src/root_files/_common/move-to-deriv/webpack-runtime-dea7a0b5ec8be92d6649.js similarity index 93% rename from src/root_files/_common/move-to-deriv/webpack-runtime-e2eb179fe5c8ce5a31e0.js rename to src/root_files/_common/move-to-deriv/webpack-runtime-dea7a0b5ec8be92d6649.js index 055db990ec442..d66b7333c1af4 100644 --- a/src/root_files/_common/move-to-deriv/webpack-runtime-e2eb179fe5c8ce5a31e0.js +++ b/src/root_files/_common/move-to-deriv/webpack-runtime-dea7a0b5ec8be92d6649.js @@ -1,2 +1,2 @@ -!function(){"use strict";var e,t,n,r,o,u={},i={};function c(e){var t=i[e];if(void 0!==t)return t.exports;var n=i[e]={exports:{}};return u[e].call(n.exports,n,n.exports,c),n.exports}c.m=u,e=[],c.O=function(t,n,r,o){if(!n){var u=1/0;for(a=0;a=o)&&Object.keys(c.O).every((function(e){return c.O[e](n[f])}))?n.splice(f--,1):(i=!1,o0&&e[a-1][2]>o;a--)e[a]=e[a-1];e[a]=[n,r,o]},c.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(t,{a:t}),t},n=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},c.t=function(e,r){if(1&r&&(e=this(e)),8&r)return e;if("object"==typeof e&&e){if(4&r&&e.__esModule)return e;if(16&r&&"function"==typeof e.then)return e}var o=Object.create(null);c.r(o);var u={};t=t||[null,n({}),n([]),n(n)];for(var i=2&r&&e;"object"==typeof i&&!~t.indexOf(i);i=n(i))Object.getOwnPropertyNames(i).forEach((function(t){u[t]=function(){return e[t]}}));return u.default=function(){return e},c.d(o,u),o},c.d=function(e,t){for(var n in t)c.o(t,n)&&!c.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},c.f={},c.e=function(e){return Promise.all(Object.keys(c.f).reduce((function(t,n){return c.f[n](e,t),t}),[]))},c.u=function(e){return({351:"commons",678:"component---src-pages-index-js",883:"component---src-pages-404-js"}[e]||e)+"-"+{175:"a5225420f58acaf373a7",231:"d06d1b8ce8c645723d6d",351:"f65cf158402c4ff26cd8",562:"3bc8ff6b93b3ba9a85c7",678:"d6f2a947660a6f1b3cfd",776:"584c75f2f784b4de8ec0",883:"eb089a2e5bf7e308370d",989:"bbf5c001be029b5a6957"}[e]+".js"},c.miniCssF=function(e){return"styles.fd90c19009dccee30eab.css"},c.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r={},o="deriv-com:",c.l=function(e,t,n,u){if(r[e])r[e].push(t);else{var i,f;if(void 0!==n)for(var a=document.getElementsByTagName("script"),d=0;d=o)&&Object.keys(c.O).every((function(e){return c.O[e](n[f])}))?n.splice(f--,1):(i=!1,o0&&e[a-1][2]>o;a--)e[a]=e[a-1];e[a]=[n,r,o]},c.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return c.d(t,{a:t}),t},n=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},c.t=function(e,r){if(1&r&&(e=this(e)),8&r)return e;if("object"==typeof e&&e){if(4&r&&e.__esModule)return e;if(16&r&&"function"==typeof e.then)return e}var o=Object.create(null);c.r(o);var u={};t=t||[null,n({}),n([]),n(n)];for(var i=2&r&&e;"object"==typeof i&&!~t.indexOf(i);i=n(i))Object.getOwnPropertyNames(i).forEach((function(t){u[t]=function(){return e[t]}}));return u.default=function(){return e},c.d(o,u),o},c.d=function(e,t){for(var n in t)c.o(t,n)&&!c.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},c.f={},c.e=function(e){return Promise.all(Object.keys(c.f).reduce((function(t,n){return c.f[n](e,t),t}),[]))},c.u=function(e){return({351:"commons",678:"component---src-pages-index-js",883:"component---src-pages-404-js"}[e]||e)+"-"+{175:"a5225420f58acaf373a7",231:"d06d1b8ce8c645723d6d",351:"e9038af46337fa9cc60e",562:"2fe3822883db712e4db2",678:"2d52965d5626708130c2",776:"584c75f2f784b4de8ec0",883:"49357921b7f4e3ddc0c6",989:"bbf5c001be029b5a6957"}[e]+".js"},c.miniCssF=function(e){return"styles.fd90c19009dccee30eab.css"},c.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),c.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r={},o="deriv-com:",c.l=function(e,t,n,u){if(r[e])r[e].push(t);else{var i,f;if(void 0!==n)for(var a=document.getElementsByTagName("script"),d=0;d
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/zh-cn/404/index.html b/src/root_files/_common/move-to-deriv/zh-cn/404/index.html index 748a70494e027..4c79e05586d26 100644 --- a/src/root_files/_common/move-to-deriv/zh-cn/404/index.html +++ b/src/root_files/_common/move-to-deriv/zh-cn/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/zh-cn/index.html b/src/root_files/_common/move-to-deriv/zh-cn/index.html index cd959087adeb6..c9d2f93f0230b 100644 --- a/src/root_files/_common/move-to-deriv/zh-cn/index.html +++ b/src/root_files/_common/move-to-deriv/zh-cn/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

差价合约被视为是复杂的衍生产品,可能不适合零售客户。

差价合约是复杂的工具,并且由于杠杆作用,资金迅速亏损的风险很高。与此提供商进行差价合约交易时有65% 的零售投资者账户蒙受亏损。您必须考虑自己是否了解差价合约的运作方式, 以及是否能够承担资金亏损的高风险。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

差价合约被视为是复杂的衍生产品,可能不适合零售客户。

差价合约是复杂的工具,并且由于杠杆作用,资金迅速亏损的风险很高。与此提供商进行差价合约交易时有65% 的零售投资者账户蒙受亏损。您必须考虑自己是否了解差价合约的运作方式, 以及是否能够承担资金亏损的高风险。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

差价合约被视为是复杂的衍生产品,可能不适合零售客户。

差价合约是复杂的工具,并且由于杠杆作用,资金迅速亏损的风险很高。与此提供商进行差价合约交易时有71% 的零售投资者账户蒙受亏损。您必须考虑自己是否了解差价合约的运作方式, 以及是否能够承担资金亏损的高风险。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

差价合约被视为是复杂的衍生产品,可能不适合零售客户。

差价合约是复杂的工具,并且由于杠杆作用,资金迅速亏损的风险很高。与此提供商进行差价合约交易时有71% 的零售投资者账户蒙受亏损。您必须考虑自己是否了解差价合约的运作方式, 以及是否能够承担资金亏损的高风险。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/zh-tw/404.html b/src/root_files/_common/move-to-deriv/zh-tw/404.html index acf26981ffaf7..dfe0d4ee15569 100644 --- a/src/root_files/_common/move-to-deriv/zh-tw/404.html +++ b/src/root_files/_common/move-to-deriv/zh-tw/404.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/zh-tw/404/index.html b/src/root_files/_common/move-to-deriv/zh-tw/404/index.html index 7e0df2742d370..124dedf31ca5f 100644 --- a/src/root_files/_common/move-to-deriv/zh-tw/404/index.html +++ b/src/root_files/_common/move-to-deriv/zh-tw/404/index.html @@ -36,4 +36,4 @@ @media (max-width:992px){html{font-size:50%;}}/*!sc*/ body{font-family:'IBM Plex Sans',sans-serif;margin:0;padding:0;background:var(--color-black);}/*!sc*/ data-styled.g1[id="sc-global-cAAOrD1"]{content:"sc-global-cAAOrD1,"}/*!sc*/ -
\ No newline at end of file +
\ No newline at end of file diff --git a/src/root_files/_common/move-to-deriv/zh-tw/index.html b/src/root_files/_common/move-to-deriv/zh-tw/index.html index 31e8c6c345ba1..f7bf4f2dedd78 100644 --- a/src/root_files/_common/move-to-deriv/zh-tw/index.html +++ b/src/root_files/_common/move-to-deriv/zh-tw/index.html @@ -355,4 +355,4 @@ data-styled.g291[id="_footerBanner__StyledHeader-sc-19uqb3f-14"]{content:"eQzDOI,"}/*!sc*/ @media (max-width:768px){.dmwQBa{font-size:32px;line-height:40px;}}/*!sc*/ data-styled.g292[id="_footerBanner__StyledHeaderBottom-sc-19uqb3f-15"]{content:"dmwQBa,"}/*!sc*/ -

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority under the Investments Services Act to provide investment services in the European Union. It is also authorised and subject to limited regulations by the Financial Conduct Authority in the UK. Details about the extent of our authorisation and regulation by the Financial Conduct Authority are available from us on request.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

差價合約被視為是複雜的衍生產品,可能不適合零售客戶。

差價合約是複雜的工具, 並且由於槓桿作用,資金迅速虧損的風險很高。與此提供商進行差價合約交易時有65% 的零售投資者帳戶蒙受虧損。您必須考慮自己是否了解差價合約的運作方式, 以及是否能夠承擔資金虧損的高風險。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

差價合約被視為是複雜的衍生產品,可能不適合零售客戶。

差價合約是複雜的工具, 並且由於槓桿作用,資金迅速虧損的風險很高。與此提供商進行差價合約交易時有65% 的零售投資者帳戶蒙受虧損。您必須考慮自己是否了解差價合約的運作方式, 以及是否能夠承擔資金虧損的高風險。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file +

It’s so easy to switch to Deriv

No sign up required — just use your Binary.com credentials

We’ve moved our trading platforms to Deriv so we can focus on boosting your trading experience.

Access your favourite platforms in one place

Deriv MT5 favorite

Learn more

arrow
Dtrader favorite

Learn more

arrow

Deriv is everything you love about Binary.com, plus more

No Signup required

No sign-up required

Just log in with your Binary.com credentials and start trading right away.

Over 100+ instruments

Over 100+ instruments

Trade what you like — forex, commodities, stocks, stock indices, and synthetic indices.

An enhanced experience

An enhanced experience

Trade confidently on a service created by a trusted online trading brand with over 20 years of experience.

Your favourites in one place

Your favourites in one place

Trade the way you like on the Deriv MetaTrader 5 (DMT5) and DTrader.

User-friendly, modern design

User-friendly, modern design

Enjoy an intuitive interface that even new traders find easy to use.

Support when you need it

Support when you need it

Get access to round-the-clock customer support, an enriched Help Centre, plus other helpful content.

Exclusively on Deriv

There’s a bright future ahead.

Find these bonus features and more on Deriv:

Multiplier

Trade multipliers

Combine the upside of leverage trading with the simplicity and limited risk of options.

Jump Indices

Trade Jump indices

Experience equal probability of an upward or downward price jump every 20 minutes on average. Available 24/7.

Deriv Academy

Upskill with Deriv Academy

Boost your trading skills at our learning hub. Get the know-how on markets, trade types, platforms, plus more.

Trade in the moment

Trade
in-the-moment

Experience powerful, in-line charts for seamless trading. No more scrolling or taking your eyes off the market.

Binary.com has moved to Deriv since 30 November

Start using Deriv with your Binary.com email and password.

DTrader
DTrader

Want to continue trading?

logo

Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara BKR 9033, Malta, is licensed in Malta (licence no. IS/70156) and regulated by the Malta Financial Services Authority, Triq l-Imdina, Zone 1. Central Business District, Birkirkara, CBD 1010, Malta, under the Investments Services Act to provide investment services in the European Union.

Deriv Limited - 13 Castle Street, St. Helier, JE2 3BT, Jersey - is the holding company for the above subsidiaries.

This website’s services are not available in certain countries, including the USA, Canada, and Hong Kong, or to persons below 18.

差價合約被視為是複雜的衍生產品,可能不適合零售客戶。

差價合約是複雜的工具, 並且由於槓桿作用,資金迅速虧損的風險很高。與此提供商進行差價合約交易時有71% 的零售投資者帳戶蒙受虧損。您必須考慮自己是否了解差價合約的運作方式, 以及是否能夠承擔資金虧損的高風險。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

差價合約被視為是複雜的衍生產品,可能不適合零售客戶。

差價合約是複雜的工具, 並且由於槓桿作用,資金迅速虧損的風險很高。與此提供商進行差價合約交易時有71% 的零售投資者帳戶蒙受虧損。您必須考慮自己是否了解差價合約的運作方式, 以及是否能夠承擔資金虧損的高風險。

The products mentioned here may be affected by changes in currency exchange rates. If you invest in these products, you may lose some or all of your investment, and the value of your investment may fluctuate. You should never invest money that you cannot afford to lose and never trade with borrowed money.

\ No newline at end of file diff --git a/src/sass/_common/base/constants.scss b/src/sass/_common/base/constants.scss index 1f81d1bd570ea..bc3b4a5faa3f2 100644 --- a/src/sass/_common/base/constants.scss +++ b/src/sass/_common/base/constants.scss @@ -28,6 +28,8 @@ $COLOR_SHARP_RED: #cc2e3d; // Utility colors $COLOR_BLACK: $black; $COLOR_WHITE: $white; +$COLOR_NEW_DARK_GRAY: #333333; +$COLOR_NEW_LIGHT_GRAY: #efefef; $COLOR_DARK_WHITE: #ccc; $COLOR_SHADY_WHITE: #f2f3f4; $COLOR_DARK_RED: #cc0033; diff --git a/src/sass/_common/base/language_base.scss b/src/sass/_common/base/language_base.scss index dc07f305d7ab7..6ee9dd4c2aa7d 100644 --- a/src/sass/_common/base/language_base.scss +++ b/src/sass/_common/base/language_base.scss @@ -92,6 +92,12 @@ body.ES { } } +body.ES, body.PT { + .ui-accordion .ui-accordion-icons { + padding-right: 1em; + } +} + body.RU { #frm_verify_email button { font-size: $FONT_SIZE_XS; diff --git a/src/sass/_common/common.scss b/src/sass/_common/common.scss index 7021b95fccb31..4b19dd42f3c71 100755 --- a/src/sass/_common/common.scss +++ b/src/sass/_common/common.scss @@ -1234,4 +1234,18 @@ label + input { .font-style-normal { font-style: normal; -} \ No newline at end of file +} + +.redirect-loader { + position: fixed; + height: 100vh; + width: 100%; + background: $COLOR_WHITE; + z-index: 1000; + top: 0; + left: 0; + display: flex; + align-items: center; + justify-content: center; + transition: none !important; +} diff --git a/src/sass/_common/components.scss b/src/sass/_common/components.scss index b5db764ccfa92..33d44bed6228f 100644 --- a/src/sass/_common/components.scss +++ b/src/sass/_common/components.scss @@ -356,7 +356,7 @@ position: relative; &.has_margin { - margin-bottom: 30px; + margin-bottom: 10px; } a { position: relative; diff --git a/src/sass/_common/header.scss b/src/sass/_common/header.scss index 07fc47bb8f94b..e9c6edb0ff2d3 100644 --- a/src/sass/_common/header.scss +++ b/src/sass/_common/header.scss @@ -22,6 +22,7 @@ body #topbar { color: $COLOR_WHITE; white-space: nowrap; text-decoration: none; + cursor: pointer; } #select_language { top: -3px; diff --git a/src/sass/app/components/market.scss b/src/sass/app/components/market.scss index aea26769044e7..9a9d783351196 100644 --- a/src/sass/app/components/market.scss +++ b/src/sass/app/components/market.scss @@ -1,3 +1,22 @@ +@mixin market_name($FONT-SIZE, $FONT-WEIGHT, $COLOR) { + font-size: $FONT-SIZE; + padding: 10px 0; + font-weight: $FONT-WEIGHT; + flex: 1 0 auto; + color: $COLOR; + transition: none; +} +@mixin sticky($FONT-WEIGHT) { + position: absolute; + width: 431px; + top: 60px; + background: $COLOR_WHITE; + @media (max-width: 767px) { + top: 123px; + width: calc(100% - $FONT-WEIGHT); + } +} + .markets { min-width: 120px; position: relative; @@ -136,10 +155,35 @@ font-weight: 600; border-right: 2px solid $COLOR_BLUE; } + &.subgroup-active { + text-decoration: none; + font-weight: 600; + } + &.subgroup { + margin-left: 25px; + } span:nth-of-type(2) { margin-left: 10px; } } + .accordion { + display: flex; + flex-direction: column; + + .accordion-label { + &:hover { + text-decoration: none; + } + } + .accordion-content { + flex-direction: column; + display: none; + + &--active { + display: block; + } + } + } .mobile { display: none; @@ -226,6 +270,16 @@ background-size: contain; } } + &.accordion-icon { + background-image: svg-url(''); + background-size: contain; + transform: rotate(90deg); + margin-left: 8.5px; + + &.active { + transform: rotate(270deg); + } + } } // For mobile devices @media (min-width: 320px) and (max-width: 767px) { @@ -255,25 +309,13 @@ padding-bottom: 80px; } .market_name { - font-size: 18px; - padding: 10px 0; - font-weight: 400; - flex: 1 0 auto; - color: $COLOR_BLUE; - transition: none; + @include market_name(18px, 500, $COLOR_BLUE); @media (min-width: 320px) and (max-width: 767px) { - font-size: 20px; + font-size: 16px; } &.sticky { - position: absolute; - width: 431px; - top: 60px; - background: $COLOR_WHITE; - @media (max-width: 767px) { - top: 123px; - width: calc(100% - 20px); - } + @include sticky(16px); } &.put_under { z-index: -1; @@ -286,13 +328,89 @@ margin-bottom: 10px; .submarket_name { - font-size: 12px; - padding: 10px 0 0; + @include market_name(12px, 400, $COLOR_ORANGE); + } + .symbols { + display: flex; + flex-wrap: wrap; + flex-direction: row; flex: 1 0 auto; - font-weight: 300; - color: $COLOR_ORANGE; - @media (min-width: 320px) and (max-width: 767px) { + + .symbol_name { + padding: 5px; + margin: 10px 0 5px 5px; + line-height: 18px; + cursor: pointer; + width: 162px; font-size: 14px; + font-weight: 500; + transition: all 0.2s; + @media (min-width: 320px) and (max-width: 767px) { + width: 200px; + font-size: 14px; + } + + &:hover { + background: $COLOR_GRAY; + } + &.active { + background: $COLOR_BLUE; + color: $COLOR_WHITE; + @media (min-width: 320px) and (max-width: 767px) { + background: $COLOR_BLUE; + color: $COLOR_WHITE; + font-weight: normal; + padding-left: 5px; + } + } + } + } + } + } + .subgroup { + display: flex; + flex-direction: column; + flex: 0 0 auto; + padding-bottom: 40px; + + &:last-of-type { + padding-bottom: 80px; + } + .label { + @include market_name(18px,700, $COLOR_BLUE); + + &.sticky { + @include sticky(18px); + } + &.put_under { + z-index: -1; + } + } + .subgroup_name { + @include market_name(18px,500, $COLOR_BLUE); + @media (min-width: 320px) and (max-width: 767px) { + font-size: 16px; + } + + @media (min-width: 767px) { + &.sticky { + @include sticky(16px); + } + &.put_under { + z-index: -1; + } + } + } + .submarket { + display: flex; + flex-direction: column; + flex: 1 0 auto; + margin-bottom: 10px; + + .submarket_name { + @include market_name(12px, 400, $COLOR_ORANGE); + @media (min-width: 320px) and (max-width: 767px) { + font-size: 12px; } } .symbols { @@ -308,11 +426,11 @@ cursor: pointer; width: 162px; font-size: 14px; - font-weight: 400; + font-weight: 500; transition: all 0.2s; @media (min-width: 320px) and (max-width: 767px) { width: 200px; - font-size: 16px; + font-size: 14px; } &:hover { diff --git a/src/sass/app/metatrader.scss b/src/sass/app/metatrader.scss index 199ca016630cd..b4588cd24b958 100644 --- a/src/sass/app/metatrader.scss +++ b/src/sass/app/metatrader.scss @@ -204,7 +204,7 @@ .mt-icon { float: right; } - .mt-login { + .mt-type, .mt-login { padding-left: 3px; font-size: 90%; } @@ -497,8 +497,9 @@ #account_desc { .button { span { - padding: 10px 5px; - line-height: 18px; + font-size: $FONT_SIZE_S; + padding: 10px; + line-height: 15px; width: 95%; } } diff --git a/src/sass/app/sell_popup.scss b/src/sass/app/sell_popup.scss index 44d3160fe9b63..20c6350601edf 100644 --- a/src/sass/app/sell_popup.scss +++ b/src/sass/app/sell_popup.scss @@ -141,6 +141,7 @@ font-style: italic; } #trade_details_bottom { + padding-bottom: 20px; @media screen and (max-width: 480px) { padding-bottom: 25px; } diff --git a/src/sass/app/trade.scss b/src/sass/app/trade.scss index 359933d65049c..9889009e84167 100644 --- a/src/sass/app/trade.scss +++ b/src/sass/app/trade.scss @@ -518,7 +518,6 @@ display: flex; flex-direction: column; line-height: 1.4em; - padding: 0 10px; } } #contract_purchase_spots { @@ -537,11 +536,29 @@ background-color: rgba(204, 0, 0, 0.1); } } + #contract_purchase_cost, #contract_purchase_payout, #contract_purchase_profit, #contract_purchase_loss { + @media screen and (max-width: 375px) { + &--amount { + font-size: 4vw; + } + } + } #contract_purchase_payout { border-right: 1px solid $COLOR_GRAY; + display: flex; + position: relative; + justify-content: space-between; } #contract_purchase_profit { - border-left: 1px solid $COLOR_GRAY; + display: flex; + position: relative; + justify-content: space-between; + } + #contract_purchase_cost { + border-right: 1px solid $COLOR_GRAY; + display: flex; + position: relative; + justify-content: space-between; } .contract_amount, .contract_payout, .payout, .stake { @include BIDIR_VALUE(padding, 3px, 3px); diff --git a/src/sass/static/home.scss b/src/sass/static/home.scss index 4e38b1f7f1bab..d9632862b3fc4 100644 --- a/src/sass/static/home.scss +++ b/src/sass/static/home.scss @@ -21,11 +21,6 @@ width: 100%; } } - #banner { - background: url('../images/pages/home/home-banner.png') no-repeat; - background-position: left top; - background-size: 100% 70%; - } .small-image { width: 10%; margin: 0 1em; @@ -187,3 +182,88 @@ } } } + +#signupbanner.banner-container { + display: flex; + justify-content: center; + background: url('../images/pages/home/home-banner.png') no-repeat; + background-position: right top; + background-size: contain; + background-color: $COLOR_NEW_LIGHT_GRAY; + + .image-container { + display: flex; + flex: 1; + height: 35vw; + max-width: 508px; + max-height: 400px; + background: url('../images/deriv/deriv-signup.png') no-repeat; + background-position: right top; + background-size: contain; + } + .content-container { + display: flex; + flex-direction: column; + flex: 1; + align-items: flex-start; + justify-content: center; + max-width: 508px; + padding: 32px; + + p, h2 { + line-height: 22px; + } + h2 { + font-weight: 300px; + } + p { + font-weight: 400; + color: $COLOR_NEW_DARK_GRAY; + } + .button-container { + display: flex; + gap: 16px; + + .create-account { + color: $COLOR_BLACK; + background: $COLOR_WHITE; + + &:hover { + background-color: $COLOR_GRAY; + } + } + } + } +} +@media screen and (max-width: 768px) { + #signupbanner.banner-container { + flex-direction: column; + height: unset; + background: unset; + background-color: $COLOR_NEW_LIGHT_GRAY; + align-items: center; + + .image-container { + flex: unset; + max-width: unset; + max-height: unset; + width: 100%; + height: 80vw; + background: url('../images/deriv/deriv-signup-mobile.png') no-repeat; + background-size: contain; + } + .content-container { + align-items: center; + max-width: unset; + padding: 16px; + + p, h2 { + text-align: center; + } + .button-container { + flex-direction: column; + width: 100%; + } + } + } +} \ No newline at end of file diff --git a/src/sass/static/pages.scss b/src/sass/static/pages.scss index db705ca3c1bf2..8e87e245c6b01 100644 --- a/src/sass/static/pages.scss +++ b/src/sass/static/pages.scss @@ -638,6 +638,11 @@ body #_elev_io { .margin-top-17 { margin-top: 17px; } + .regulatory-images { + display: flex; + flex-direction: row; + align-items: center; + } } .tour-content#content { @@ -843,6 +848,124 @@ body #not_authenticated_financial ul.checked > li { } } +.lightbox .warning-scam-message-content { + padding: 25px; + padding-bottom: 20px; + + .warning-scam-message-title { + @media (min-width: 320px) and (max-width: 767px) { + font-size: 20px; + margin-bottom: 8px; + } + } + .warning-scam-message-subtitle { + @media (min-width: 320px) and (max-width: 767px) { + font-size: 14px; + } + } + .warning-scam-message-title-secondary { + color: $COLOR_BLACK; + @media (min-width: 320px) and (max-width: 767px) { + font-size: 18px; + margin-bottom: 8px; + } + } + .warning-scam-message-text-secondary { + font-size: 16px; + margin-bottom: 24px; + @media (min-width: 320px) and (max-width: 767px) { + font-size: 14px; + } + } + .warning-scam-message-info-message { + display: flex; + padding-left: 16px; + margin-bottom: 24px; + } + .warning-scam-message-content-info-message { + display: flex; + padding-left: 8px; + margin-bottom: 24px; + } + .warning-scam-message-scam-title-text { + font-weight: 300; + margin-bottom: 0; + color: $COLOR_BLACK; + @media (min-width: 320px) and (max-width: 767px) { + font-size: 16px; + } + } + .warning-scam-message-correct-content { + display: flex; + border: solid $COLOR_GREEN; + border-radius: 4px; + padding: 16px 8px; + margin-bottom: 24px; + flex-direction: column; + justify-content: center; + @media (min-width: 320px) and (max-width: 767px) { + padding: 22px 8px; + } + } + .warning-scam-message-wrong-content { + display: flex; + border: solid $COLOR_RED; + border-radius: 4px; + padding: 16px 8px; + margin-bottom: 24px; + flex-direction: column; + justify-content: center; + @media (min-width: 320px) and (max-width: 767px) { + padding: 22px 8px; + } + } + .warning-scam-message-link-container { + display: flex; + margin-left: 24px; + border-radius: 4px; + border: solid $COLOR_GRAY_SHADE; + background-color: $COLOR_LIGHT_GRAY; + justify-content: center; + align-items: center; + } + .warning-scam-message-link { + margin: 8px 0; + @media (min-width: 320px) and (max-width: 767px) { + font-size: 16px; + } + } + .warning-scam-message-checkbox-container { + display: flex; + } + .warning-scam-message-button-icon-container { + padding: 24px; + display: flex; + justify-content: space-between; + @media (min-width: 320px) and (max-width: 767px) { + padding-top: 40px; + flex-direction: column-reverse; + align-items: center; + justify-content: center; + } + } + #warning_scam_message_button { + margin-bottom: 0; + @media (min-width: 320px) and (max-width: 767px) { + margin-bottom: 24px; + } + } + .warning-scam-message-acknowledge-message { + @media (min-width: 320px) and (max-width: 767px) { + font-size: 14px; + } + } + .icon-sm { + height: 16px; + width: 16px; + margin: 3px 8px 0 0; + } +} + .lightbox #set_currency { padding: 25px; padding-bottom: 20px; @@ -2203,6 +2326,8 @@ body #not_authenticated_financial ul.checked > li { } &-image { border: 2px solid $COLOR_GRAY; + width: 100%; + height: auto; } } diff --git a/src/templates/_common/_layout/footer.jsx b/src/templates/_common/_layout/footer.jsx index 07c1668cb7f03..e55af0ccb7d30 100644 --- a/src/templates/_common/_layout/footer.jsx +++ b/src/templates/_common/_layout/footer.jsx @@ -52,7 +52,7 @@ const Footer = () => ( { text: it.L('Binary.com in Numbers'), href: it.url_for('binary-in-numbers') }, { text: it.L('Careers'), href: it.deriv_career_url , target: '_blank' }, { text: it.L('Patents'), href: it.url_for('legal/us_patents') }, - { text: it.L('Contact Us'), href: it.url_for('contact') }, + { text: it.L('Contact Us'), href: 'https://deriv.com/help-centre' }, ]} /> @@ -104,7 +104,7 @@ const Footer = () => ( header={it.L('Partner With Us')} items={[ { text: it.L('Affiliate and IB Programme'), href: it.url_for('affiliate-ib') }, - { text: it.L('API'), href: 'https://developers.binary.com', target: '_blank' }, + { text: it.L('API'), href: 'https://api.deriv.com/docs', target: '_blank' }, /* { text: it.L('Charitable Activities'), href: it.url_for('charity') }, */ { text: it.L('All Partnership Options'), href: it.url_for('partners') }, ]} @@ -136,7 +136,7 @@ const Footer = () => ( { media: 'youtube', href: 'https://www.youtube.com/user/BinaryTradingVideos' }, { media: 'facebook', href: 'https://www.facebook.com/derivdotcom' }, { media: 'twitter', href: 'https://www.twitter.com/derivdotcom' }, - { media: 'telegram', href: 'https://t.me/binarydotcom' }, + { media: 'telegram', href: 'https://t.me/derivdotcomofficial' }, { media: 'reddit', href: 'https://www.reddit.com/user/Deriv_official/' }, ]} /> @@ -149,7 +149,7 @@ const Footer = () => ( {it.L('In the EU, financial products are offered by Deriv Investments (Europe) Limited, W Business Centre, Level 3, Triq Dun Karm, Birkirkara, BKR 9033, Malta, regulated as a Category 3 Investment Services provider by the Malta Financial Services Authority ([_1]licence no. IS/70156[_2]).', ``, '')}

- {it.L('Outside the EU, financial products are offered by Deriv (SVG) LLC, Hinds Building, Kingstown, St. Vincent and the Grenadines; Deriv (V) Ltd, Govant Building, Port Vila, PO Box 1276, Vanuatu, regulated by the Vanuatu Financial Services Commission; Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, regulated by the British Virgin Islands Financial Services Commission ([_3]licence no. SIBA/L/18/1114[_4]); and Deriv (FX) Ltd, Lot No. F16, First Floor, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, regulated by the Labuan Financial Services Authority to carry on a money-broking business ([_5]licence no. MB/18/0024[_6]).', + {it.L('Outside the EU, financial products are offered by Deriv (SVG) LLC, Hinds Building, Kingstown, St. Vincent and the Grenadines; Deriv (V) Ltd, Govant Building, Port Vila, PO Box 1276, Vanuatu, regulated by the Vanuatu Financial Services Commission ([_1]view licence[_2]); Deriv (BVI) Ltd, Kingston Chambers, P.O. Box 173, Road Town, Tortola, British Virgin Islands, regulated by the British Virgin Islands Financial Services Commission ([_3]licence no. SIBA/L/18/1114[_4]); and Deriv (FX) Ltd, Lot No. F16, First Floor, Paragon Labuan, Jalan Tun Mustapha, 87000 Labuan, Malaysia, regulated by the Labuan Financial Services Authority to carry on a money-broking business ([_5]licence no. MB/18/0024[_6]).', ``, '', ``, '', ``, '')} @@ -188,7 +188,7 @@ const Footer = () => ( { media: 'facebook', href: 'https://www.facebook.com/derivUK/' }, { media: 'twitter', href: 'https://www.twitter.com/deriv_uk/' }, { media: 'instagram', href: 'https://www.instagram.com/deriv_uk/' }, - { media: 'telegram', href: 'https://t.me/binarydotcom' }, + { media: 'telegram', href: 'https://t.me/derivdotcomofficial' }, { media: 'reddit', href: 'https://www.reddit.com/user/Deriv_official/' }, ]} /> @@ -200,7 +200,7 @@ const Footer = () => ( { media: 'facebook', href: 'https://www.facebook.com/derivEU/' }, { media: 'twitter', href: 'https://www.twitter.com/deriv_eu/' }, { media: 'instagram', href: 'https://www.instagram.com/deriv_eu/' }, - { media: 'telegram', href: 'https://t.me/binarydotcom' }, + { media: 'telegram', href: 'https://t.me/derivdotcomofficial' }, { media: 'reddit', href: 'https://www.reddit.com/user/Deriv_official/' }, ]} /> diff --git a/src/templates/_common/_layout/layout.jsx b/src/templates/_common/_layout/layout.jsx index 8dae88046d7a5..56af2f8e95555 100644 --- a/src/templates/_common/_layout/layout.jsx +++ b/src/templates/_common/_layout/layout.jsx @@ -13,6 +13,7 @@ import GameCloseBanner from '../components/game_close_banner.jsx'; import GameCloseBannerIom from '../components/game_close_banner_iom.jsx'; import EuCloseBanner from '../components/eu_close_banner.jsx'; import EuClosePopup from '../components/eu_close_popup.jsx'; +import WarningScamMessage from '../../app/user/warning_scam_message.jsx'; import RedirectBanner from '../components/EU_UK_redirect_banner.jsx'; export const CONTENT_PLACEHOLDER = 'CONTENT_PLACEHOLDER'; @@ -50,6 +51,7 @@ const Layout = () => { +

@@ -70,6 +72,7 @@ const Layout = () => { + ); diff --git a/src/templates/_common/includes/elevio.jsx b/src/templates/_common/includes/elevio.jsx index 821a25c324072..8272f3ff79c77 100644 --- a/src/templates/_common/includes/elevio.jsx +++ b/src/templates/_common/includes/elevio.jsx @@ -2,7 +2,7 @@ import React from 'react'; const Elevio = () => ( - +
{it.L('NEED HELP?')} @@ -18,6 +18,6 @@ const Elevio = () => (
-
+ ); export default Elevio; diff --git a/src/templates/app/cashier/payment_methods.jsx b/src/templates/app/cashier/payment_methods.jsx index d5b61a6cbe9a0..030a93a0b7acc 100644 --- a/src/templates/app/cashier/payment_methods.jsx +++ b/src/templates/app/cashier/payment_methods.jsx @@ -1,634 +1,7 @@ import React from 'react'; -import { CashierNote } from './index.jsx'; -import { Table } from '../../_common/components/elements.jsx'; -const Button = ({ url, real, className, text }) => ( - - {text} - +const PaymentMethods = () => ( +
); -const TableTitle = ({ title, className, dataShow, dataAnchor }) => ( -

{title}

-); - -const PaymentLogo = ({ logo }) => ( - -); - -const TableValues = ({ value }) => { - const values = Array.isArray(value) ? value : [value]; - return ( - - { values.reduce((arr, e, inx) => arr === null ? [e] : [...arr,
, e], null) } -
- ); -}; - -const ReferenceLink = ({ href, className = '', title = '' }) => ( - -); - -const ReferenceLinks = ({ pdf_file, video_link }) => ( - - {!pdf_file && !video_link && } - {pdf_file && } - {video_link && } - -); - -const CustomTableHead = ({ data }) => ( - - {data.map((item, index) => ( - {item.text} - ))} - -); - -const CustomTableData = ({ data }) => ( - - {data.map((item, index) => ( -
- {item.td && {item.td}} - {item.td_list && - item.td_list.map((td, inx_td) => ( -

{td.text}

- )) - } -
- ))} -
-); - -const PaymentMethods = () => { - const head = [ - { text: it.L('Method') }, - { attributes: { colSpan: 5, className: 'th-list' }, custom_th : , - }, - ]; - - const deposit = 'Deposit: '; - const withdrawal = 'Withdrawal: '; - const period = '[_1] day'; - const instant = 'Instant'; - const period_range = '[_1] to [_2] days'; - const not_applicable = 'Not applicable'; - const blockchain_confirmations = '[_1] blockchain confirmations'; - - const createLink = (href) => (`
${href}`); - - return ( -
-

{it.L('Available payment methods')}

- -

{it.L('This is a complete list of supported payment methods. We\'ll show you which payment methods are available in your location on the deposit page.')}

- -
-

-

- -
- - }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'paytrust', - dataShow: '-eucountry', - row : [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : paytrust88.com') }, - { td_list: [ - { text: 'USD' }, - { text: '25 - 10,000' }, - { text: 'N/A' }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - - ], - }, - { - id : 'zing-pay', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'help-2-pay', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'dragon-pheonix', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - ], - }} - /> - - -
}, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'mastercard', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'maestro', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - ], - }} - /> - -
-

{it.L('Note:')} {it.L('Mastercard and Maestro withdrawals are only available for UK Clients.')}

-
- - -
}, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'perfect-money', - dataShow: '-eucountry', - row : [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'skrill', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'neteller', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'webmoney', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'qiwi', - dataShow: '-eucountry', - row : [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'paysafe', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'jeton', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : www.jeton.com') }, - { td_list: [ - { text: 'USD EUR' }, - { text: '5 - 10,000' }, - { text: 'N/A' }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'sticpay', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : https://www.sticpay.com') }, - { td_list: [ - { text: 'USD GBP EUR' }, - { text: '5 - 10,000' }, - { text: '5 - 10,000' }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'airtm', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : https://www.airtm.io') }, - { td_list: [ - { text: 'USD' }, - { text: '5 - 2,500' }, - { text: '5 - 2,500' }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - ], - }} - /> - -
, - }, - ], - ], - tbody: [ - { - id : 'bitcoin', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'usdc', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: '—' }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'ethereum-black', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'litecoin', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - { - id : 'tether', - row: [ - { text: }, - { attributes: { colSpan: 5, className: 'toggler' }, custom_td : }, - { text: }, - { text: }, - ], - }, - ]} - />, - }, - ], - }, - ], - }} - /> - -
-

{it.L('Note:')} {it.L('Figures have been rounded.')}

-
- - -
-

{it.L('Note:')}

-
    -
  1. {it.L('The minimum amount for withdrawal will vary depending on the latest exchange rates.')}
  2. -
  3. {it.L('Additional processing time may be required by your bank or money transfer services for the funds to be credited to your payment account.')}
  4. -
-
- - ); -}; - export default PaymentMethods; diff --git a/src/templates/app/endpoint.jsx b/src/templates/app/endpoint.jsx index 27c349cf39422..ad19f6f8ec492 100644 --- a/src/templates/app/endpoint.jsx +++ b/src/templates/app/endpoint.jsx @@ -19,7 +19,7 @@ const Endpoint = () => ( type='text' label={it.L('OAuth App ID')} attributes={{ maxLength: 5 }} - hint={it.L('You have to register and get App ID before you can use different OAuth server for authentication. For more information refer to OAuth details on https://developers.binary.com/.')} + hint={it.L('You have to register and get App ID before you can use different OAuth server for authentication. For more information refer to OAuth details on https://api.deriv.com/docs.')} />
diff --git a/src/templates/app/logged_in.jsx b/src/templates/app/logged_in.jsx index 8407c435108cf..a4847a70b9d2c 100644 --- a/src/templates/app/logged_in.jsx +++ b/src/templates/app/logged_in.jsx @@ -21,12 +21,6 @@ const LoggedIn = () => ( -
diff --git a/src/templates/app/new_account/welcome_onboarding.jsx b/src/templates/app/new_account/welcome_onboarding.jsx index 1e34bdb4dd0cc..5a1a0c9d181bb 100644 --- a/src/templates/app/new_account/welcome_onboarding.jsx +++ b/src/templates/app/new_account/welcome_onboarding.jsx @@ -11,7 +11,7 @@ const WelcomePageOnboarding = () => { desc : it.L('[_1]Maximise returns[_2] by [_3]risking more[_4] than you put in.', '', '','', ''), url : it.url_for('user/metatrader'), action_id : 'cfd', - sub_options: ['Forex', 'Synthetics', 'Stocks and indices', 'Cryptocurrencies', 'Commodities'], + sub_options: ['Forex', 'Derived', 'Stocks and indices', 'Cryptocurrencies', 'Commodities'], }, { icon : 'images/pages/welcome/doptions.svg', @@ -19,7 +19,7 @@ const WelcomePageOnboarding = () => { desc : it.L('Earn [_1]fixed returns[_2] by [_3]risking only[_4] what you put in.', '', '', '', ''), url : it.url_for('trading'), action_id : 'd_ptions', - sub_options: ['Forex', 'Synthetics', 'Stocks and indices', 'Commodities'], + sub_options: ['Forex', 'Derived', 'Stocks and indices', 'Commodities'], }, { icon : 'images/pages/welcome/notsure.svg', diff --git a/src/templates/app/trade/trading.jsx b/src/templates/app/trade/trading.jsx index fe20bd59d501c..4f6bf4201b7b1 100644 --- a/src/templates/app/trade/trading.jsx +++ b/src/templates/app/trade/trading.jsx @@ -1,7 +1,6 @@ import React from 'react'; import Analysis from './analysis.jsx'; import Portfolio from '../user/portfolio.jsx'; -import Loading from '../../_common/components/loading.jsx'; import DerivBanner from '../../_common/components/deriv_banner.jsx'; const Trading = () => ( @@ -214,7 +213,7 @@ const Trading = () => (

{it.L('Ready to trade?')}

- + {it.L('Open a free account')}

{it.L('Already have an account?')}

@@ -304,9 +303,6 @@ const Trading = () => (
-
- -
); diff --git a/src/templates/app/user/authenticate.jsx b/src/templates/app/user/authenticate.jsx index 5e4f013657038..585ebbffe6b42 100644 --- a/src/templates/app/user/authenticate.jsx +++ b/src/templates/app/user/authenticate.jsx @@ -48,6 +48,11 @@ const Authenticate = () => ( />
+
+

+ +

+
diff --git a/src/templates/app/user/metatrader.jsx b/src/templates/app/user/metatrader.jsx index f1980b39c9268..e7fa56b2a5aca 100644 --- a/src/templates/app/user/metatrader.jsx +++ b/src/templates/app/user/metatrader.jsx @@ -25,7 +25,7 @@ const AccountDesc = ({ title, description, account_type, landing_company_short,

- {it.L('Find out more')} + {it.L('Compare MetaTrader 5 accounts')}

@@ -242,29 +242,17 @@ const Metatrader = () => ( ]} /> - {/* */} - - {/* */} + />
@@ -520,7 +508,7 @@ const Metatrader = () => (

{it.L('How to manage your funds')}

-

{it.L('Deposits and withdrawals for your MetaTrader 5 account always pass through your binary options account.')}

+

{it.L('Deposits and withdrawals for your MT5 account always pass through your binary options account.')}

@@ -548,7 +536,7 @@ const Metatrader = () => (
- +
', '')} /> @@ -570,7 +558,7 @@ const Metatrader = () => (
- +
', '')} /> diff --git a/src/templates/app/user/warning_scam_message.jsx b/src/templates/app/user/warning_scam_message.jsx new file mode 100644 index 0000000000000..fb7f49821cb5a --- /dev/null +++ b/src/templates/app/user/warning_scam_message.jsx @@ -0,0 +1,50 @@ +import React from 'react'; + +const WarningScamMessage = () => ( + +
+
+

{it.L('Beware of the fake links.')}

+

{it.L('A link can contain the word "Binary" and still be fake.')}

+

{it.L('Do not get lured to fake "Binary" pages!')}

+

{it.L('You may see links to websites with a fake Binary login page where you’ll get scammed for your money. ')}

+
+ +

{it.L('Do not trust and give away your credentials on fake websites, ads or emails.')}

+
+
+
+ +

+ {it.L('Only log in to your account at this secure link, never elsewhere.')} +

+
+
+

https://binary.com

+
+
+
+
+ +

+ {it.L('Fake links often contain the word that looks like "Binary" but look out for these differences.')} +

+
+
+

{it.L('Examples')}: https://binakyos.me

+
+
+
+ + +
+
+ + +
+
+
+
+); + +export default WarningScamMessage; diff --git a/src/templates/static/about/careers.jsx b/src/templates/static/about/careers.jsx index 1786875cdf212..64fcdb8d79272 100644 --- a/src/templates/static/about/careers.jsx +++ b/src/templates/static/about/careers.jsx @@ -167,14 +167,6 @@ const Careers = () => {
- (

{it.L('[_1]\'s IT team is responsible for the design, development, and operation of our high-traffic web applications. As our Security Researcher, we expect you to stay informed about the latest security bulletins and findings, and actively monitor our software development pipeline to find and raise potential security issues.', it.website_name)}

-

{it.L('As a strong proponent of open source, we encourage publication of findings, methods, and tools via GitHub and our technical blog at [_1] You will also assist our developers in understanding and patching the bugs that you find.', 'https://tech.binary.com/')}

-

{it.L('You will also encourage security awareness throughout the organisation via regular communication on security best practices and the latest online threats.')}

(

{it.L('Don\'t have a [_1] account yet?', it.website_name)}

- {it.L('Create free account')} + {it.L('Create free account')}
); diff --git a/src/templates/static/home.jsx b/src/templates/static/home.jsx index 6e65e9d872322..71951c0ec34d8 100644 --- a/src/templates/static/home.jsx +++ b/src/templates/static/home.jsx @@ -1,10 +1,6 @@ import React from 'react'; -import FormVerifyEmail from '../_common/includes/form_verify_email.jsx'; -import { SocialButton } from '../_common/components/elements.jsx'; import PaymentLogo from '../_common/components/payment_logo.jsx'; -import { - SeparatorLine, - SeparatorLineWithText } from '../_common/components/separator_line.jsx'; +import { SeparatorLine } from '../_common/components/separator_line.jsx'; import { TabContainer, TabContentContainer, @@ -82,12 +78,15 @@ const AccountsTabContent = ({ image_one, image_two, image_three, + image_four, list_header_one, list_header_two, list_header_three, + list_header_four, list_text_one, list_text_two, list_text_three, + list_text_four, }) => (
@@ -128,6 +127,13 @@ const AccountsTabContent = ({ list_text={list_text_three} /> } + { list_header_four && + + }
@@ -170,32 +176,21 @@ const Home = () => {
-