1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Merge remote-tracking branch 'origin/develop' into master-sync

This commit is contained in:
ryanml 2021-11-12 08:46:00 -07:00
commit 575f4eaba9
324 changed files with 11761 additions and 5495 deletions

View File

@ -5,12 +5,12 @@ set -u
set -o pipefail
# To get the latest version, see <https://www.ubuntuupdates.org/ppa/google_chrome?dist=stable>
CHROME_VERSION='93.0.4577.63-1'
CHROME_VERSION='95.0.4638.69-1'
CHROME_BINARY="google-chrome-stable_${CHROME_VERSION}_amd64.deb"
CHROME_BINARY_URL="https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/${CHROME_BINARY}"
# To retrieve this checksum, run the `wget` and `shasum` commands below
CHROME_BINARY_SHA512SUM='4102ba417b41820da68b7e8e12018ed2268f30e0210f8f227aeeabf6bd9265dd95ad206993d5626ac1c70a07185fd3ed4eef8a71ee2f5b0770015302c0d26f58'
CHROME_BINARY_SHA512SUM='f07d16ec0a41120c40064d030e9e5240ed740b9b24c50eaede7b9bfd9a9678821c0252b40bfcd57e933a708b08d761482c3be5b3006eee605c41f5dc9e21f456'
wget -O "${CHROME_BINARY}" -t 5 "${CHROME_BINARY_URL}"

View File

@ -4,46 +4,45 @@ ignores:
# webapp deps
#
- "@babel/runtime"
- "@fortawesome/fontawesome-free"
- "punycode"
- '@babel/runtime'
- '@fortawesome/fontawesome-free'
- 'punycode'
#
# dev deps
#
# safety fallback for npm lifecycle scripts, not used normally
- "@lavamoat/preinstall-always-fail"
- '@lavamoat/preinstall-always-fail'
# used in testing + ci
- "@metamask/auto-changelog" # invoked as `auto-changelog`
- "@metamask/forwarder"
- "@metamask/test-dapp"
- "@sentry/cli" # invoked as `sentry-cli`
- "chromedriver"
- "depcheck" # ooo meta
- "ganache-cli"
- "geckodriver"
- "jest"
- "lavamoat-viz"
- "prettier-plugin-sort-json" # automatically imported by prettier
- "source-map-explorer"
- '@metamask/auto-changelog' # invoked as `auto-changelog`
- '@metamask/forwarder'
- '@metamask/test-dapp'
- '@sentry/cli' # invoked as `sentry-cli`
- 'chromedriver'
- 'depcheck' # ooo meta
- 'ganache-cli'
- 'geckodriver'
- 'jest'
- 'lavamoat-viz'
- 'prettier-plugin-sort-json' # automatically imported by prettier
- 'source-map-explorer'
# development tool
- "yarn-deduplicate"
- "improved-yarn-audit"
- 'yarn-deduplicate'
- 'improved-yarn-audit'
# storybook
- "@storybook/core"
- "@storybook/addon-backgrounds"
- "@storybook/addon-toolbars"
- "style-loader"
- "css-loader"
- "sass-loader"
- "resolve-url-loader"
- '@storybook/core'
- '@storybook/addon-essentials'
- '@storybook/addon-a11y'
- 'style-loader'
- 'css-loader'
- 'sass-loader'
- 'resolve-url-loader'
# files depcheck should not parse
ignorePatterns:
# seems to incorrectly parse scss @include pragmas?
- "**/*.scss"
- '**/*.scss'
# self-contained bundle used for testing
- "**/send-eth-with-private-key-test/web3js.js"
- "**/send-eth-with-private-key-test/ethereumjs-tx.js"
- '**/send-eth-with-private-key-test/web3js.js'
- '**/send-eth-with-private-key-test/ethereumjs-tx.js'

View File

@ -1,3 +1,5 @@
const { version: reactVersion } = require('react/package.json');
module.exports = {
root: true,
parser: '@babel/eslint-parser',
@ -189,9 +191,10 @@ module.exports = {
'app/scripts/lockdown-more.js',
'development/**/*.js',
'test/e2e/**/*.js',
'test/lib/wait-until-called.js',
'test/env.js',
'test/setup.js',
'test/helpers/protect-intrinsics-helpers.js',
'test/lib/wait-until-called.js',
'jest.config.js',
],
parserOptions: {
@ -202,6 +205,7 @@ module.exports = {
files: [
'app/scripts/lockdown-run.js',
'app/scripts/lockdown-more.js',
'test/helpers/protect-intrinsics-helpers.js',
'test/unit-global/protect-intrinsics.test.js',
],
globals: {
@ -213,7 +217,12 @@ module.exports = {
settings: {
react: {
version: 'detect',
// If this is set to 'detect', ESLint will import React in order to find
// its version. Because we run ESLint in the build system under LavaMoat,
// this means that detecting the React version requires a LavaMoat policy
// for all of React, in the build system. That's a no-go, so we grab it
// from React's package.json.
version: reactVersion,
},
},
};

70
.github/workflows/codeql-analysis.yml vendored Normal file
View File

@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ develop, Version-v*, cla-signatures, master, snaps ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '28 12 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

View File

@ -1,37 +1,41 @@
// import { useGlobals } from '@storybook/api';
const { useGlobals } = require('@storybook/api')
const React = require("react")
const { addons, types } = require("@storybook/addons")
const { Icons, IconButton } = require('@storybook/components')
const localeList = require('../../app/_locales/index.json')
const { useEffect } = React
const { useGlobals } = require('@storybook/api');
const React = require('react');
const { addons, types } = require('@storybook/addons');
const { Icons, IconButton } = require('@storybook/components');
const localeList = require('../../app/_locales/index.json');
const { useEffect } = React;
addons.register("i18n-party", () => {
addons.add("i18n-party", {
title: "rotates through every i18n locale",
addons.register('i18n-party', () => {
addons.add('i18n-party', {
title: 'rotates through every i18n locale',
//👇 Sets the type of UI element in Storybook
type: types.TOOL,
match: () => true,
render: (...args) => {
// https://github.com/storybookjs/storybook/blob/6490a0d646dbaa293b76bbde477daca615efe789/addons/toolbars/src/components/MenuToolbar.tsx#L2
const [globals, updateGlobals] = useGlobals()
const [globals, updateGlobals] = useGlobals();
useEffect(() => {
if (!globals.localeParty) return
if (!globals.localeParty) return;
const interval = setInterval((...args) => {
const currentIndex = localeList.findIndex(({ code }) => code === globals.locale)
const nextIndex = (currentIndex + 1) % localeList.length
const nextLocale = localeList[nextIndex].code
updateGlobals({ locale: nextLocale })
}, 2000)
return () => clearInterval(interval)
})
const currentIndex = localeList.findIndex(
({ code }) => code === globals.locale,
);
const nextIndex = (currentIndex + 1) % localeList.length;
const nextLocale = localeList[nextIndex].code;
updateGlobals({ locale: nextLocale });
}, 2000);
return () => clearInterval(interval);
});
return (
<IconButton onClick={() => updateGlobals({ localeParty: !globals.localeParty })}>
<Icons icon={globals.localeParty ? 'star' : 'starhollow'}/>
<IconButton
onClick={() => updateGlobals({ localeParty: !globals.localeParty })}
>
<Icons icon={globals.localeParty ? 'star' : 'starhollow'} />
<span>&nbsp;Shuffle i18n locale</span>
</IconButton>
)
);
},
})
})
});
});

View File

@ -3,19 +3,21 @@ const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
stories: ['../ui/**/*.stories.js'],
stories: ['../ui/**/*.stories.js', '../ui/**/*.stories.mdx'],
addons: [
'@storybook/addon-knobs',
'@storybook/addon-essentials',
'@storybook/addon-actions',
'@storybook/addon-backgrounds',
'@storybook/addon-toolbars',
'@storybook/addon-a11y',
'@storybook/addon-knobs',
'./i18n-party-addon/register.js',
],
// Uses babel.config.js settings and prevents "Missing class properties transform" error
babel: async (options) => ({ overrides: options.overrides }),
webpackFinal: async (config) => {
config.context = process.cwd()
config.context = process.cwd();
config.node = {
__filename: true
}
__filename: true,
};
config.module.strictExportPresence = true;
config.module.rules.push({
test: /\.scss$/,

View File

@ -8,11 +8,11 @@ import '../ui/css/index.scss';
import localeList from '../app/_locales/index.json';
import * as allLocales from './locales';
import { I18nProvider, LegacyI18nProvider } from './i18n';
import MetaMetricsProviderStorybook from './metametrics'
import MetaMetricsProviderStorybook from './metametrics';
import testData from './test-data.js';
import { Router } from "react-router-dom";
import { createBrowserHistory } from "history";
import { _setBackgroundConnection } from '../ui/store/actions'
import { Router } from 'react-router-dom';
import { createBrowserHistory } from 'history';
import { _setBackgroundConnection } from '../ui/store/actions';
addParameters({
backgrounds: {
@ -38,28 +38,24 @@ export const globalTypes = {
},
};
const styles = {
height: '100vh',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
};
export const getNewState = (state, props) => {
return Object.assign(state, props);
}
};
export const store = configureStore(testData);
const history = createBrowserHistory();
const proxiedBackground = new Proxy({}, {
const proxiedBackground = new Proxy(
{},
{
get(_, method) {
return function() {
action(`Background call: ${method}`)()
return new Promise(() => {})
}
}
})
_setBackgroundConnection(proxiedBackground)
return function () {
action(`Background call: ${method}`)();
return new Promise(() => {});
};
},
},
);
_setBackgroundConnection(proxiedBackground);
const metamaskDecorator = (story, context) => {
const currentLocale = context.globals.locale;
@ -73,9 +69,7 @@ const metamaskDecorator = (story, context) => {
current={current}
en={allLocales.en}
>
<LegacyI18nProvider>
<div style={styles}>{story()}</div>
</LegacyI18nProvider>
<LegacyI18nProvider>{story()}</LegacyI18nProvider>
</I18nProvider>
</MetaMetricsProviderStorybook>
</Router>

View File

@ -1258,7 +1258,6 @@ const state = {
ledger: "m/44'/60'/0'/0/0",
},
networksTabSelectedRpcUrl: '',
networksTabIsInAddMode: false,
loadingMethodData: false,
show3BoxModalAfterImport: false,
threeBoxLastUpdated: null,

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "ክፍያ መጨመር የመከወኛ ጊዜን ሊቀንስ ቢችልም ይህ ግን ዋስትና የለውም።"
},
"customRPC": {
"message": "ብጁ RPC"
},
"customToken": {
"message": "ብጁ ተለዋጭ ስም"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "አስርዮሽ ቢያንስ 0 ቢበዛ ደግሞ 36 መሆን አለባቸው።"
},
"defaultNetwork": {
"message": "የ Ether ግብይቶች ንቡር አውታረ መረብ Mainnet ነው።"
},
"delete": {
"message": "ሰርዝ"
},
@ -620,9 +614,6 @@
"newContract": {
"message": "አዲስ ኮንትራት"
},
"newNetwork": {
"message": "አዲስ አውታረ መረብ"
},
"newPassword": {
"message": "አዲስ የይለፍ ቃል (ቢያንስ 8 ቁምፊዎች)"
},
@ -671,12 +662,6 @@
"on": {
"message": "በርቷል"
},
"optionalBlockExplorerUrl": {
"message": "ኤክስፕሎረር URL አግድ (አማራጭ)"
},
"optionalCurrencySymbol": {
"message": "ምልክት (አማራጭ)"
},
"origin": {
"message": "መነሻ"
},
@ -856,9 +841,6 @@
"selectAnAccount": {
"message": "መለያ ይምረጡ"
},
"selectAnAccountHelp": {
"message": "መለያውን በ MetaMask ለማየት ይምረጡ"
},
"selectEachPhrase": {
"message": "እባክዎ እያንዳንዱን ሐረግ በመምረጥ ትክክለኛነቱን ያረጋግጡ።"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "قد تؤدي زيادة الرسوم إلى تقليل أزمنة المعالجة، ولكن ذلك غير مضمون."
},
"customRPC": {
"message": "آر بي سي مخصص"
},
"customToken": {
"message": "عملة رمزية مخصصة"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "يجب أن تكون الكسور العشرية صفراً على الأقل، وألا تزيد عن 36 كسراً."
},
"defaultNetwork": {
"message": "الشبكة الافتراضية لمعاملات الأثير هي الشبكة الرئيسية."
},
"delete": {
"message": "حذف"
},
@ -616,9 +610,6 @@
"newContract": {
"message": "عقد جديد"
},
"newNetwork": {
"message": "شبكة جديدة"
},
"newPassword": {
"message": "كلمة مرور جديدة (8 أحرف كحد أدنى)"
},
@ -667,12 +658,6 @@
"on": {
"message": "تشغيل"
},
"optionalBlockExplorerUrl": {
"message": "العنوان الإلكتروني لمستكشف البلوكات (اختياري)"
},
"optionalCurrencySymbol": {
"message": "الرمز (اختياري)"
},
"origin": {
"message": "الأصل"
},
@ -852,9 +837,6 @@
"selectAnAccount": {
"message": "قم بتحديد حساب"
},
"selectAnAccountHelp": {
"message": "حدد الحساب لعرضه في MetaMask"
},
"selectEachPhrase": {
"message": "يُرجى تحديد كل عبارة للتأكد من صحتها."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Увеличаването на таксата може да намали времето за обработка, но това не е гарантирано."
},
"customRPC": {
"message": "RPC по избор"
},
"customToken": {
"message": "Персонализиран маркер"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Десетичните знаци трябва да бъдат най-малко 0 и не повече от 36."
},
"defaultNetwork": {
"message": "Мрежата по подразбиране за Ether транзакции е Mainnet."
},
"delete": {
"message": "Изтриване"
},
@ -619,9 +613,6 @@
"newContract": {
"message": "Нов договор"
},
"newNetwork": {
"message": "Нова мрежа"
},
"newPassword": {
"message": "Нова парола (мин. 8 символа)"
},
@ -670,12 +661,6 @@
"on": {
"message": "Включено"
},
"optionalBlockExplorerUrl": {
"message": "Блокиране на Explorer URL (по избор)"
},
"optionalCurrencySymbol": {
"message": "Символ (по избор)"
},
"origin": {
"message": "Произход"
},
@ -855,9 +840,6 @@
"selectAnAccount": {
"message": "Изберете акаунт"
},
"selectAnAccountHelp": {
"message": "Изберете акаунта за преглед в MetaMask"
},
"selectEachPhrase": {
"message": "Моля, изберете всяка фраза, за да се уверите, че е правилна."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "ফী বৃদ্ধি করা প্রক্রিয়াকরণের সময় কমাতে পারে, কিন্তু সেটির নিশ্চয়তা দেওয়া হয় না।"
},
"customRPC": {
"message": "কাস্টম RPC"
},
"customToken": {
"message": "কাস্টম টোকেন"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "দশমিকগুলি অবশ্যই অন্তত 0 হতে হবে, এবং 36 এর উপর হবে না।"
},
"defaultNetwork": {
"message": "ইথার লেনদেনগুলির জন্য ডিফল্ট নেটওয়ার্কটি হল মেন নেট।"
},
"delete": {
"message": "মুছুন"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "নতুন কন্ট্র্যাক্ট"
},
"newNetwork": {
"message": "নতুন নেটওয়ার্ক"
},
"newPassword": {
"message": "নতুন পাসওয়ার্ড (অন্তত 8 অক্ষরের)"
},
@ -674,12 +665,6 @@
"on": {
"message": "চালু"
},
"optionalBlockExplorerUrl": {
"message": "এক্সপ্লোরার URL ব্লক করুন (ঐচ্ছিক)"
},
"optionalCurrencySymbol": {
"message": "প্রতীক (ঐচ্ছিক)"
},
"origin": {
"message": "উৎস"
},
@ -859,9 +844,6 @@
"selectAnAccount": {
"message": "একটি অ্যাকাউন্ট নির্বাচন করুন"
},
"selectAnAccountHelp": {
"message": "MetaMask এ দেখতে অ্যাকাউন্টটি নির্বাচন করুন"
},
"selectEachPhrase": {
"message": "ফ্রেজগুলি সঠিক তা নিশ্চিত করতে অনুগ্রহ করে প্রতিটি ফ্রেজ নির্বাচন করুন।"
},

View File

@ -254,9 +254,6 @@
"customGasSubTitle": {
"message": "Augmentar la tarifa pot disminuir els temps de processament, però això no està garantit."
},
"customRPC": {
"message": "RPC a mida"
},
"customToken": {
"message": "Fitxa a Mida"
},
@ -266,9 +263,6 @@
"decimalsMustZerotoTen": {
"message": "Els decimals han de ser al menys 0, i no més de 36."
},
"defaultNetwork": {
"message": "La xarxa per defecte per a les transaccions Ether és Mainnet."
},
"delete": {
"message": "Suprimeix"
},
@ -607,9 +601,6 @@
"newContract": {
"message": "Nou Contracte"
},
"newNetwork": {
"message": "Nova Xarxa"
},
"newPassword": {
"message": "Nova contrasenya (mínim 8 caràcters)"
},
@ -658,12 +649,6 @@
"on": {
"message": "Activat"
},
"optionalBlockExplorerUrl": {
"message": "Bloqueja l'URL d'Explorer (opcional)"
},
"optionalCurrencySymbol": {
"message": "Símbol (opcional)"
},
"origin": {
"message": "Origen"
},
@ -837,9 +822,6 @@
"selectAnAccount": {
"message": "Selecciona un Compte"
},
"selectAnAccountHelp": {
"message": "Selecciona el compte que vols veure a MetaMask"
},
"selectEachPhrase": {
"message": "Si us plau selecciona cada frase per a assegurar-te que és correcta."
},

View File

@ -88,9 +88,6 @@
"customGas": {
"message": "Nastavit palivo"
},
"customRPC": {
"message": "Vlastní RPC"
},
"customToken": {
"message": "Vlastní token"
},
@ -100,9 +97,6 @@
"decimalsMustZerotoTen": {
"message": "Desetinných míst musí být od 0 do 36."
},
"defaultNetwork": {
"message": "Výchozí síť pro Etherové transakce je Mainnet."
},
"depositEther": {
"message": "Vložit Ether"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Forøgelse af gebyr kan mindske bearbejdningstiden, men det er ikke en garanti."
},
"customRPC": {
"message": "Tilpasset RPC"
},
"customToken": {
"message": "Brugerdefineret Token"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Decimaler skal være mindst 0 og højst 36."
},
"defaultNetwork": {
"message": "Standardnetværket for Ether-transaktioner er Mainnet."
},
"delete": {
"message": "Slet"
},
@ -607,9 +601,6 @@
"newContract": {
"message": "Ny Kontrakt"
},
"newNetwork": {
"message": "Nyt Netværk"
},
"newPassword": {
"message": "Ny adgangskode (min. 8 tegn)"
},
@ -658,12 +649,6 @@
"on": {
"message": "Til"
},
"optionalBlockExplorerUrl": {
"message": "Blok-stifinder-URL (valgfrit)"
},
"optionalCurrencySymbol": {
"message": "Symbol (valgfrit)"
},
"parameters": {
"message": "Parametre"
},
@ -840,9 +825,6 @@
"selectAnAccount": {
"message": "Vælg en Konto"
},
"selectAnAccountHelp": {
"message": "Vælg kontoen der skal vises i MetaMask"
},
"selectEachPhrase": {
"message": "Vælg venligst hver sætning, for at sikre at de er korrekte."
},

View File

@ -248,9 +248,6 @@
"customGasSubTitle": {
"message": "Höhere Gebühren können Bearbeitungszeiten verkürzen, wofür es allerdings keine Garantie gibt."
},
"customRPC": {
"message": "Spezieller RPC"
},
"customToken": {
"message": "Custom-Token"
},
@ -260,9 +257,6 @@
"decimalsMustZerotoTen": {
"message": "Die Dezimalangabe muss mindestens 0 und nicht höher als 36 sein."
},
"defaultNetwork": {
"message": "Das Standardnetzwerk für Ether Transaktionen ist das Mainnet."
},
"delete": {
"message": "Löschen"
},
@ -602,9 +596,6 @@
"newContract": {
"message": "Neuer Smart Contract"
},
"newNetwork": {
"message": "Neues Netzwerk"
},
"newPassword": {
"message": "Neues Passwort (min. 8 Zeichen)"
},
@ -650,9 +641,6 @@
"on": {
"message": "An"
},
"optionalBlockExplorerUrl": {
"message": "Block-Explorer-URL (optional)"
},
"origin": {
"message": "Ursprung"
},
@ -697,7 +685,7 @@
"message": "Datenschutzrichtlinie"
},
"privateKeyWarning": {
"message": "Warnung: Niemals jemanden deinen Private Key mitteilen. Jeder der im Besitz deines Private Keys ist, kann jegliches Guthaben deines Accounts stehlen."
"message": "Warnung: Niemals jemandem deinen Private Key mitteilen. Jeder der im Besitz deines Private Keys ist, kann jegliches Guthaben deines Accounts stehlen."
},
"privateNetwork": {
"message": "Privates Netzwerk"
@ -828,9 +816,6 @@
"selectAnAccount": {
"message": "Ein Konto auswählen"
},
"selectAnAccountHelp": {
"message": "Wählen Sie das Konto aus, das in MetaMask angezeigt werden soll."
},
"selectEachPhrase": {
"message": "Bitte wählen Sie jede Phrase aus, um sicherzustellen, dass sie korrekt ist."
},
@ -964,7 +949,7 @@
"message": "Hierdurch werden ein neues Wallet und eine mnemonische Phrase erzeugt"
},
"tips": {
"message": "Trinkgelder"
"message": "Tipps"
},
"to": {
"message": "An"

View File

@ -254,9 +254,6 @@
"customGasSubTitle": {
"message": "Η αύξηση των τελών μπορεί να μειώσει τους χρόνους επεξεργασίας, αλλά αυτό δεν είναι εγγυημένο."
},
"customRPC": {
"message": "Προσαρμοσμένο RPC"
},
"customToken": {
"message": "Προσαρμοσμένο Token"
},
@ -266,9 +263,6 @@
"decimalsMustZerotoTen": {
"message": "Τα δεκαδικά πρέπει να είναι τουλάχιστον 0 και όχι πάνω από 36."
},
"defaultNetwork": {
"message": "Το προεπιλεγμένο δίκτυο για συναλλαγές Ether είναι το Mainnet."
},
"delete": {
"message": "Διαγραφή"
},
@ -620,9 +614,6 @@
"newContract": {
"message": "Νέα Σύμβαση"
},
"newNetwork": {
"message": "Νέο Δίκτυο"
},
"newPassword": {
"message": "Νέος Κωδικός Πρόσβασης (ελάχιστο 8 χαρακτήρες)"
},
@ -671,12 +662,6 @@
"on": {
"message": "Ενεργό"
},
"optionalBlockExplorerUrl": {
"message": "Διεύθυνση URL Εξερευνητή Μπλοκ (προαιρετικό)"
},
"optionalCurrencySymbol": {
"message": "Σύμβολο (προαιρετικό)"
},
"origin": {
"message": "Προέλευση"
},
@ -856,9 +841,6 @@
"selectAnAccount": {
"message": "Επιλέξτε Λογαριασμό"
},
"selectAnAccountHelp": {
"message": "Επιλέξτε τον λογαριασμό για προβολή στο MetaMask"
},
"selectEachPhrase": {
"message": "Παρακαλούμε επιλέξτε κάθε φράση, για να βεβαιωθείτε ότι είναι σωστή."
},

View File

@ -43,6 +43,9 @@
"activityLog": {
"message": "activity log"
},
"addANetwork": {
"message": "Add a network"
},
"addAcquiredTokens": {
"message": "Add the tokens you've acquired using MetaMask"
},
@ -79,6 +82,9 @@
"addFriendsAndAddresses": {
"message": "Add friends and addresses you trust"
},
"addNFT": {
"message": "Add NFT"
},
"addNetwork": {
"message": "Add Network"
},
@ -107,7 +113,7 @@
"message": "Advanced Options"
},
"advancedSettingsDescription": {
"message": "Access developer features, download State Logs, Reset Account, setup testnets and custom RPC"
"message": "Access developer features, download State Logs, Reset Account, setup test networks and custom RPC"
},
"affirmAgree": {
"message": "I Agree"
@ -139,9 +145,9 @@
"allowExternalExtensionTo": {
"message": "Allow this external extension to:"
},
"allowOriginSpendToken": {
"message": "Allow $1 to spend your $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
"allowSpendToken": {
"message": "Give permission to access your $1?",
"description": "$1 is the symbol of the token that are requesting to spend"
},
"allowThisSiteTo": {
"message": "Allow this site to:"
@ -153,9 +159,6 @@
"amount": {
"message": "Amount"
},
"amountWithColon": {
"message": "Amount:"
},
"appDescription": {
"message": "An Ethereum Wallet in your Browser",
"description": "The description of the application"
@ -183,6 +186,9 @@
"approved": {
"message": "Approved"
},
"approvedAmountWithColon": {
"message": "Approved Amount:"
},
"asset": {
"message": "Asset"
},
@ -549,9 +555,6 @@
"customGasSubTitle": {
"message": "Increasing fee may decrease processing times, but it is not guaranteed."
},
"customRPC": {
"message": "Custom RPC"
},
"customSpendLimit": {
"message": "Custom Spend Limit"
},
@ -591,7 +594,8 @@
"message": "Decrypt request"
},
"defaultNetwork": {
"message": "The default network for Ether transactions is Mainnet."
"message": "The default network for Ether transactions is Mainnet. You can also $1 test networks $2.",
"description": "$1 is the 'enable' or 'disable' key, depending on whether the display of test networks is enabled or not. $2 is a clickable link with text defined by the 'here' key. The link will open to the advanced settings where users can enable the display of test networks in the network dropdown."
},
"delete": {
"message": "Delete"
@ -617,6 +621,9 @@
"directDepositEtherExplainer": {
"message": "If you already have some Ether, the quickest way to get Ether in your new wallet by direct deposit."
},
"disable": {
"message": "disable"
},
"disconnect": {
"message": "Disconnect"
},
@ -768,6 +775,9 @@
"editPermission": {
"message": "Edit Permission"
},
"enable": {
"message": "enable"
},
"enableFromSettings": {
"message": " Enable it from Settings."
},
@ -891,6 +901,9 @@
"etherscanView": {
"message": "View account on Etherscan"
},
"etherscanViewOn": {
"message": "View on Etherscan"
},
"expandView": {
"message": "Expand view"
},
@ -1055,6 +1068,9 @@
"goerli": {
"message": "Goerli Test Network"
},
"grantedToWithColon": {
"message": "Granted To:"
},
"happyToSeeYou": {
"message": "Were happy to see you."
},
@ -1114,7 +1130,7 @@
"message": "import using Secret Recovery Phrase"
},
"importAccountMsg": {
"message": " Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts "
"message": "Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts"
},
"importAccountSeedPhrase": {
"message": "Import a wallet with Secret Recovery Phrase"
@ -1168,6 +1184,9 @@
"insufficientFunds": {
"message": "Insufficient funds."
},
"insufficientFundsForGas": {
"message": "Insufficient funds for gas"
},
"insufficientTokens": {
"message": "Insufficient tokens."
},
@ -1330,6 +1349,9 @@
"lockTimeTooGreat": {
"message": "Lock time is too great"
},
"lowPriorityMessage": {
"message": "Future transactions will queue after this one. This price was last seen was some time ago."
},
"mainnet": {
"message": "Ethereum Mainnet"
},
@ -1433,6 +1455,9 @@
"message": "verify the network details",
"description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key."
},
"missingNFT": {
"message": "Don't see your NFT?"
},
"missingToken": {
"message": "Don't see your token?"
},
@ -1529,8 +1554,8 @@
"newContract": {
"message": "New Contract"
},
"newNetwork": {
"message": "New Network"
"newNetworkAdded": {
"message": "“$1” was successfully added!"
},
"newPassword": {
"message": "New password (min 8 chars)"
@ -1551,6 +1576,9 @@
"message": "Nonce is higher than suggested nonce of $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nfts": {
"message": "NFTs"
},
"noAccountsFound": {
"message": "No accounts found for the given search query"
},
@ -1563,6 +1591,9 @@
"noConversionRateAvailable": {
"message": "No Conversion Rate Available"
},
"noNFTs": {
"message": "No NFTs yet"
},
"noThanks": {
"message": "No Thanks"
},
@ -1755,11 +1786,8 @@
"optional": {
"message": "Optional"
},
"optionalBlockExplorerUrl": {
"message": "Block Explorer URL (optional)"
},
"optionalCurrencySymbol": {
"message": "Currency Symbol (optional)"
"optionalWithParanthesis": {
"message": "(Optional)"
},
"or": {
"message": "or"
@ -1801,6 +1829,9 @@
"permissionCheckedIconDescription": {
"message": "You have approved this permission"
},
"permissionRequest": {
"message": "Permission Request"
},
"permissionUncheckedIconDescription": {
"message": "You have not approved this permission"
},
@ -2108,13 +2139,6 @@
"selectAnAccountAlreadyConnected": {
"message": "This account has already been connected to MetaMask"
},
"selectAnAccountHelp": {
"message": "Select an account to view in MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Don't see your account? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Please select each phrase in order to make sure it is correct."
},
@ -2122,7 +2146,7 @@
"message": "Select HD Path"
},
"selectPathHelp": {
"message": "If you don't see your existing Ledger accounts below, try switching paths to \"Legacy (MEW / MyCrypto)\""
"message": "If you don't see the accounts you expect, try switching the HD path."
},
"selectType": {
"message": "Select Type"
@ -2172,10 +2196,10 @@
"message": "Select this to show gas price and limit controls directly on the send and confirm screens."
},
"showFiatConversionInTestnets": {
"message": "Show Conversion on Testnets"
"message": "Show Conversion on test networks"
},
"showFiatConversionInTestnetsDescription": {
"message": "Select this to show fiat conversion on Testnets"
"message": "Select this to show fiat conversion on test networks"
},
"showHexData": {
"message": "Show Hex Data"
@ -2201,6 +2225,12 @@
"showSeedPhrase": {
"message": "Show Secret Recovery Phrase"
},
"showTestnetNetworks": {
"message": "Show test networks"
},
"showTestnetNetworksDescription": {
"message": "Select this to show test networks in network list"
},
"sigRequest": {
"message": "Signature Request"
},
@ -2289,6 +2319,13 @@
"statusNotConnected": {
"message": "Not connected"
},
"step1LatticeWallet": {
"message": "Make sure your Lattice1 is ready to connect"
},
"step1LatticeWalletMsg": {
"message": "You can connect MetaMask to your Lattice1 device once it is set up and online. Unlock your device and have your Device ID ready. For more on using hardware wallets, $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"step1LedgerWallet": {
"message": "Download Ledger app"
},
@ -2652,12 +2689,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Allow this site to switch the network?"
},
"switchLedgerPaths": {
"message": "Switch Ledger paths"
},
"switchLedgerPathsText": {
"message": "Select the Ledger path to view other accounts"
},
"switchNetwork": {
"message": "Switch network"
},
@ -2734,9 +2765,6 @@
"message": "To: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "To:"
},
"token": {
"message": "Token"
},
@ -2785,6 +2813,12 @@
"transactionDetailGasHeading": {
"message": "Estimated gas fee"
},
"transactionDetailGasHeadingV2": {
"message": "Gas"
},
"transactionDetailGasInfoV2": {
"message": "estimated"
},
"transactionDetailGasTooltipConversion": {
"message": "Learn more about gas fees"
},
@ -2866,14 +2900,13 @@
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Do you trust this site? By granting this permission, youre allowing $1 to withdraw your $2 and automate transactions for you.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
"message": "By granting permission, you are allowing the following $1 to access your funds"
},
"tryAgain": {
"message": "Try again"
},
"turnOnTokenDetection": {
"message": "Turn on Token Detection"
"message": "Turn on enhanced token detection"
},
"typePassword": {
"message": "Type your MetaMask password"

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Permitir que esta extensión externa haga lo siguiente:"
},
"allowOriginSpendToken": {
"message": "¿Permitir que $1 gaste su $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Permitir que este sitio haga lo siguiente:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Importe"
},
"amountWithColon": {
"message": "Importe:"
},
"appDescription": {
"message": "Una cartera de Ethereum en el explorador",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Aumentar la cuota puede disminuir los tiempos de procesamiento, pero no está garantizado."
},
"customRPC": {
"message": "RPC personalizada"
},
"customSpendLimit": {
"message": "Límite de gastos personalizado"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Descifrar solicitud"
},
"defaultNetwork": {
"message": "La red predeterminada para las transacciones de ether es la red principal."
},
"delete": {
"message": "Eliminar"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Contrato nuevo"
},
"newNetwork": {
"message": "Red nueva"
},
"newPassword": {
"message": "Contraseña nueva (mín. de 8 caracteres)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Conéctese solo con sitios de confianza."
},
"optionalBlockExplorerUrl": {
"message": "Dirección URL del explorador de bloques (opcional)"
},
"optionalCurrencySymbol": {
"message": "Símbolo de moneda (opcional)"
},
"origin": {
"message": "Origen"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Esta cuenta ya se conectó a MetaMask."
},
"selectAnAccountHelp": {
"message": "Seleccione una cuenta para verla en MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "¿No ve su cuenta? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Seleccione cada frase para garantizar que sea correcta."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "¿Le permite a este sitio cambiar la red?"
},
"switchLedgerPaths": {
"message": "Cambiar rutas de acceso al Ledger"
},
"switchLedgerPathsText": {
"message": "Seleccione la ruta de acceso al Ledger para ver otras cuentas"
},
"switchNetwork": {
"message": "Cambiar red"
},
@ -2201,9 +2166,6 @@
"message": "Para: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Para:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Tuvimos problemas al cargar los saldos de token. Puede verlos ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "¿Este sitio es de confianza? Al conceder este permiso, autoriza que $1 retire su $2 y automatice las transacciones por usted.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Vuelva a intentarlo"
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Permitir que esta extensión externa haga lo siguiente:"
},
"allowOriginSpendToken": {
"message": "¿Permitir que $1 gaste su $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Permitir que este sitio haga lo siguiente:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Importe"
},
"amountWithColon": {
"message": "Importe:"
},
"appDescription": {
"message": "Una cartera de Ethereum en el explorador",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Aumentar la cuota puede disminuir los tiempos de procesamiento, pero no está garantizado."
},
"customRPC": {
"message": "RPC personalizada"
},
"customSpendLimit": {
"message": "Límite de gastos personalizado"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Descifrar solicitud"
},
"defaultNetwork": {
"message": "La red predeterminada para las transacciones de ether es la red principal."
},
"delete": {
"message": "Eliminar"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Contrato nuevo"
},
"newNetwork": {
"message": "Red nueva"
},
"newPassword": {
"message": "Contraseña nueva (mín. de 8 caracteres)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Conéctese solo con sitios de confianza."
},
"optionalBlockExplorerUrl": {
"message": "Dirección URL del explorador de bloques (opcional)"
},
"optionalCurrencySymbol": {
"message": "Símbolo de moneda (opcional)"
},
"origin": {
"message": "Origen"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Esta cuenta ya se conectó a MetaMask."
},
"selectAnAccountHelp": {
"message": "Seleccione una cuenta para verla en MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "¿No ve su cuenta? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Seleccione cada frase para garantizar que sea correcta."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "¿Le permite a este sitio cambiar la red?"
},
"switchLedgerPaths": {
"message": "Cambiar rutas de acceso al Ledger"
},
"switchLedgerPathsText": {
"message": "Seleccione la ruta de acceso al Ledger para ver otras cuentas"
},
"switchNetwork": {
"message": "Cambiar red"
},
@ -2201,9 +2166,6 @@
"message": "Para: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Para:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Tuvimos problemas al cargar los saldos de token. Puede verlos ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "¿Este sitio es de confianza? Al conceder este permiso, autoriza que $1 retire su $2 y automatice las transacciones por usted.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Vuelva a intentarlo"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Tasu suurendamine võib töötlemisaegu vähendada, kuid see ei ole tagatud."
},
"customRPC": {
"message": "Kohandatud RPC"
},
"customToken": {
"message": "Kohandatud luba"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Kümnendkohad peavad olema vähemalt 0 ja mitte üle 36."
},
"defaultNetwork": {
"message": "Etheri tehingute vaikevõrk on peavõrk."
},
"delete": {
"message": "Kustuta"
},
@ -613,9 +607,6 @@
"newContract": {
"message": "Uus kontakt"
},
"newNetwork": {
"message": "Uus võrk"
},
"newPassword": {
"message": "Uus parool (vähemalt 8 tähemärki)"
},
@ -664,12 +655,6 @@
"on": {
"message": "Sees"
},
"optionalBlockExplorerUrl": {
"message": "Blokeeri Exploreri URL (valikuline)"
},
"optionalCurrencySymbol": {
"message": "Sümbol (valikuline)"
},
"origin": {
"message": "Päritolu"
},
@ -849,9 +834,6 @@
"selectAnAccount": {
"message": "Valige konto"
},
"selectAnAccountHelp": {
"message": "Valige konto, mida MetaMaskis vaadata"
},
"selectEachPhrase": {
"message": "Valige iga fraas, veendumaks, et see on õige."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "اضافه نمودن فیس ممکن زمان پروسس را کاهش دهد، اما تضمین نمیشود."
},
"customRPC": {
"message": "RPC رایج"
},
"customToken": {
"message": "رمزیاب دلخواه"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "اعشاریه ها باید حد اقل 0، و بیشتر از 36 نباشند."
},
"defaultNetwork": {
"message": "شبکه خودکار برای معاملات Ether عبارت است از Mainnet."
},
"delete": {
"message": "حذف"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "قرارداد جدید"
},
"newNetwork": {
"message": "شبکه جدید"
},
"newPassword": {
"message": "رمز عبور جدید (حداقل 8 حرف)"
},
@ -674,12 +665,6 @@
"on": {
"message": "روشن"
},
"optionalBlockExplorerUrl": {
"message": "بلاک کردن مرورگر URL (انتخابی)"
},
"optionalCurrencySymbol": {
"message": "سمبول (انتخابی)"
},
"origin": {
"message": "مبدأ"
},
@ -859,9 +844,6 @@
"selectAnAccount": {
"message": "یک حساب را انتخاب کنید"
},
"selectAnAccountHelp": {
"message": "برای مشاهده MetaMask حساب را انتخاب نمایید"
},
"selectEachPhrase": {
"message": "لطفًا جهت اطمینان از درستی، هر عبارت را انتخاب کنید."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Taksan korottaminen saattaa vähentää käsittelyaikaa, mutta siitä ei anneta takeita."
},
"customRPC": {
"message": "Mukautettu RPC"
},
"customToken": {
"message": "Mukautettu tietue"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Desimaalien on oltava vähintään 0 ja korkeintaan 36."
},
"defaultNetwork": {
"message": "Oletusverkko Ether-tapahtumille on Mainnet."
},
"delete": {
"message": "Poista"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "Uusi sopimus"
},
"newNetwork": {
"message": "Uusi verkko"
},
"newPassword": {
"message": "Uusi salasana (väh. 8 merkkiä)"
},
@ -671,12 +662,6 @@
"on": {
"message": "Käytössä"
},
"optionalBlockExplorerUrl": {
"message": "Estä Explorerin URL-osoite (valinnainen)"
},
"optionalCurrencySymbol": {
"message": "Symboli (valinnainen)"
},
"origin": {
"message": "Alkuperä"
},
@ -856,9 +841,6 @@
"selectAnAccount": {
"message": "Valitse tili"
},
"selectAnAccountHelp": {
"message": "Valitse MetaMaskissa näytettävä tili"
},
"selectEachPhrase": {
"message": "Ole hyvä ja valitse jokainen teksti järjestyksessä varmistaaksesi, että se on oikein."
},

View File

@ -245,9 +245,6 @@
"decimalsMustZerotoTen": {
"message": "Ang mga decimal ay hindi dapat bumaba sa 0, at hindi lumampas sa 36."
},
"defaultNetwork": {
"message": "Ang default na network para sa mga transaksyon ng Ether ay Mainnet."
},
"delete": {
"message": "I-delete"
},
@ -557,9 +554,6 @@
"newContract": {
"message": "Bagong Contract"
},
"newNetwork": {
"message": "Bagong Network"
},
"newPassword": {
"message": "Bagong Password (min 8 char)"
},
@ -605,12 +599,6 @@
"on": {
"message": "Naka-on"
},
"optionalBlockExplorerUrl": {
"message": "Block Explorer URL (opsyonal)"
},
"optionalCurrencySymbol": {
"message": "Simbolo (opsyonal)"
},
"origin": {
"message": "Pinanggalingan"
},
@ -777,9 +765,6 @@
"selectAnAccount": {
"message": "Pumili ng Account"
},
"selectAnAccountHelp": {
"message": "Piliin ang account na titingnan sa MetaMask"
},
"selectEachPhrase": {
"message": "Pakipili ang bawat parirala para tiyaking tama ito."
},

View File

@ -248,9 +248,6 @@
"customGasSubTitle": {
"message": "Augmenter le tarif peut faire baisser le temps de traitement, mais cela n'est pas garanti."
},
"customRPC": {
"message": "RPC personnalisé"
},
"customToken": {
"message": "Jeton personnalisé"
},
@ -260,9 +257,6 @@
"decimalsMustZerotoTen": {
"message": "Les décimales doivent être plus grandes que 0 et inférieures à 36."
},
"defaultNetwork": {
"message": "Le réseau par défaut pour les transactions Ether est le \"Réseau principal Ethereum\"."
},
"delete": {
"message": "Supprimer"
},
@ -608,9 +602,6 @@
"newContract": {
"message": "Nouveau contrat"
},
"newNetwork": {
"message": "Nouveau réseau"
},
"newPassword": {
"message": "Nouveau mot de passe (min 8 caractères)"
},
@ -656,12 +647,6 @@
"on": {
"message": "Activé"
},
"optionalBlockExplorerUrl": {
"message": "URL de l'explorateur de blocs (facultatif)"
},
"optionalCurrencySymbol": {
"message": "Symbole (facultatif)"
},
"origin": {
"message": "Origine"
},
@ -841,9 +826,6 @@
"selectAnAccount": {
"message": "Selectionner un compte"
},
"selectAnAccountHelp": {
"message": "Selectionner le compte à afficher dans MetaMask"
},
"selectEachPhrase": {
"message": "Veuillez sélectionner chaque phrase afin de vous assurer qu'elle est correcte."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "הגדלת התשלום עשויה לצמצם את זמני העיבוד, אבל אין ערובה לכך."
},
"customRPC": {
"message": "RPC מותאם אישית"
},
"customToken": {
"message": "אסימון מותאם אישית"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "מספרים עשרוניים חייבים להיות לפחות 0 ולא מעל 36."
},
"defaultNetwork": {
"message": "רשת ברירת המחדל לעסקאות Ether היא Mainnet."
},
"delete": {
"message": "מחיקה"
},
@ -620,9 +614,6 @@
"newContract": {
"message": "חוזה חדש"
},
"newNetwork": {
"message": "רשת חדשה"
},
"newPassword": {
"message": "ססמה חדשה (לפחות 8 תווים)"
},
@ -671,12 +662,6 @@
"on": {
"message": "פועל"
},
"optionalBlockExplorerUrl": {
"message": "חסום כתובת URL של אקספלורר (אופציונלי)"
},
"optionalCurrencySymbol": {
"message": "סמל (אופציונלי)"
},
"origin": {
"message": "מקור"
},
@ -853,9 +838,6 @@
"selectAnAccount": {
"message": "בחר חשבון"
},
"selectAnAccountHelp": {
"message": "בחר את החשבון לצפייה ב- MetaMask"
},
"selectEachPhrase": {
"message": "נא לבחור כל צירוף מילים כדי להבטיח שהוא נכון."
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "इस बाहरी एक्सटेंशन को इसकी अनुमति दें:"
},
"allowOriginSpendToken": {
"message": "$1 को आपका $2 खर्च करने की अनुमति दें?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "इस साइट को इसकी अनुमति दें:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "राशि"
},
"amountWithColon": {
"message": "राशि:"
},
"appDescription": {
"message": "आपके ब्राउज़र में एक Ethereum वॉलेट",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "शुल्क बढ़ाने से प्रसंस्करण समय में कमी हो सकती है, लेकिन इसकी गारंटी नहीं होती है।"
},
"customRPC": {
"message": "कस्टम RPC"
},
"customSpendLimit": {
"message": "कस्टम खर्च सीमा"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "अनुरोध डिक्रिप्ट करें"
},
"defaultNetwork": {
"message": "Ether के लेनदेन के लिए डिफ़ॉल्ट नेटवर्क Mainnet है।"
},
"delete": {
"message": "हटाएँ"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "नया अनुबंध"
},
"newNetwork": {
"message": "नया नेटवर्क"
},
"newPassword": {
"message": "नया पासवर्ड (न्यूनतम 8 वर्ण)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "केवल उन साइटों से कनेक्ट करें, जिन पर आप भरोसा करते हैं।"
},
"optionalBlockExplorerUrl": {
"message": "ब्लॉक एक्सप्लोरर URL (वैकल्पिक)"
},
"optionalCurrencySymbol": {
"message": "मुद्रा प्रतीक (वैकल्पिक)"
},
"origin": {
"message": "उत्पत्ति"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "यह खाता पहले ही MetaMask से जुड़ा हुआ है"
},
"selectAnAccountHelp": {
"message": "MetaMask में देखने के लिए खाते का चयन करें।"
},
"selectAnAccountHelpDirections": {
"message": "अपना खाता नहीं देख पा रहे हैं? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "कृपया प्रत्येक वाक्यांश का चयन करें, ताकि यह सुनिश्चित हो सके कि यह सही है।"
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "इस साइट को नेटवर्क स्विच करने की अनुमति दें?"
},
"switchLedgerPaths": {
"message": "Ledger पथ स्विच करें"
},
"switchLedgerPathsText": {
"message": "अन्य खाते देखने के लिए Ledger पथ का चयन करें"
},
"switchNetwork": {
"message": "नेटवर्क स्विच करें"
},
@ -2201,9 +2166,6 @@
"message": "प्रति: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "प्रति:"
},
"token": {
"message": "टोकन"
},
@ -2281,10 +2243,6 @@
"message": "हमें आपके टोकन की शेषराशि लोड करने में परेशानी हुई। आप उन्हें देख सकते हैं ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "क्या आप इस साइट पर भरोसा करते हैं? यह अनुमति देकर, आप $1 को अपने $2 की निकासी करने और आपके लिए लेनदेनों को स्वचालित करने की अनुमति दे रहे हैं।",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "पुनः प्रयास करें"
},

View File

@ -70,18 +70,12 @@
"customGas": {
"message": "अनुकूलित करें गैस"
},
"customRPC": {
"message": "कस्टम RPC"
},
"decimal": {
"message": "दशमलव परिशुद्धता"
},
"decimalsMustZerotoTen": {
"message": "दशमलव कम से कम 0 होनी चाहिए, और 36 से अधिक नहीं होनी चाहिए।"
},
"defaultNetwork": {
"message": "ईथर लेनदेन के लिए डिफ़ॉल्ट नेटवर्क मुख्य नेट है।"
},
"depositEther": {
"message": "जमा - Ether"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Povećavanjem se naknade može smanjiti vrijeme obrade, ali se ne jamči."
},
"customRPC": {
"message": "Prilagođeni RPC"
},
"customToken": {
"message": "Prilagođeni token"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Decimalni brojevni ne smiju biti 0 i ne smiju prekoračivati 36."
},
"defaultNetwork": {
"message": "Zadana je mreža za transakcije Ether glavna mreža."
},
"delete": {
"message": "Izbriši"
},
@ -616,9 +610,6 @@
"newContract": {
"message": "Novi ugovor"
},
"newNetwork": {
"message": "Nova mreža"
},
"newPassword": {
"message": "Nova lozinka (najmanje osam znakova)"
},
@ -667,12 +658,6 @@
"on": {
"message": "Uključi"
},
"optionalBlockExplorerUrl": {
"message": "Blokiraj Explorerov URL (neobavezno)"
},
"optionalCurrencySymbol": {
"message": "Simbol (neobavezno)"
},
"origin": {
"message": "Podrijetlo"
},
@ -852,9 +837,6 @@
"selectAnAccount": {
"message": "Odaberi račun"
},
"selectAnAccountHelp": {
"message": "Odaberi račun za prikaz u usluzi MetaMask"
},
"selectEachPhrase": {
"message": "Odaberite svaku rečenicu kako biste provjerili je li točna."
},

View File

@ -136,9 +136,6 @@
"customGas": {
"message": "Koutim Gaz"
},
"customRPC": {
"message": "Koutim RPC"
},
"customToken": {
"message": "Koutim Token"
},
@ -148,9 +145,6 @@
"decimalsMustZerotoTen": {
"message": "Desimal yo dwe omwen 0, epi pa dwe plis pase 36."
},
"defaultNetwork": {
"message": "Dfo rezo a pou tranzaksyon Ether se Mainnet."
},
"depositEther": {
"message": "Depo Ether"
},
@ -531,9 +525,6 @@
"selectAnAccount": {
"message": "Chwazi yon kont"
},
"selectAnAccountHelp": {
"message": "Chwazi kont pou wè nan MetaMask"
},
"selectHdPath": {
"message": "Chwazi chemen HD"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "A díj növelése csökkentheti a feldolgozási időt, de ez nem garantált."
},
"customRPC": {
"message": "Egyedi RPC"
},
"customToken": {
"message": "Egyéni token"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "A tizedesjegyek száma 0 és 36 között legyen . "
},
"defaultNetwork": {
"message": "Az Ether tranzakciók alapértelmezett hálózata a Mainnet."
},
"delete": {
"message": "Törlés"
},
@ -616,9 +610,6 @@
"newContract": {
"message": "Új szerződés"
},
"newNetwork": {
"message": "Új hálózat"
},
"newPassword": {
"message": "Új jelszó (minimum 8 karakter)"
},
@ -667,12 +658,6 @@
"on": {
"message": "Be"
},
"optionalBlockExplorerUrl": {
"message": "Explorer URL letiltása (nem kötelező)"
},
"optionalCurrencySymbol": {
"message": "Szimbólum (opcionális)"
},
"origin": {
"message": "Eredet"
},
@ -852,9 +837,6 @@
"selectAnAccount": {
"message": "Válasszon fiókot"
},
"selectAnAccountHelp": {
"message": "Válássza ki a MetaMask-ban megtekinteni kívánt fiókot"
},
"selectEachPhrase": {
"message": "Kérjük, válassza ki az egyes mondatokat, hogy meggyőződjön azok helyességéről. "
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Izinkan ekstensi eksternal ini untuk:"
},
"allowOriginSpendToken": {
"message": "Izinkan $1 untuk menggunakan $2 Anda?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Izinkan situs ini untuk:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Jumlah"
},
"amountWithColon": {
"message": "Jumlah:"
},
"appDescription": {
"message": "Dompet Ethereum di Browser Anda",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Menaikkan biaya dapat mengurangi waktu pemrosesan, namun tidak dijamin."
},
"customRPC": {
"message": "RPC Kustom"
},
"customSpendLimit": {
"message": "Batas Penggunaan Kustom"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Dekrip permintaan"
},
"defaultNetwork": {
"message": "Jaringan default untuk transaksi Ether adalah Jaringan Utama."
},
"delete": {
"message": "Hapus"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Kontrak Baru"
},
"newNetwork": {
"message": "Jaringan Baru"
},
"newPassword": {
"message": "Kata sandi baru (min. 8 karakter)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Hanya hubungkan ke situs yang Anda percayai."
},
"optionalBlockExplorerUrl": {
"message": "URL Block Explorer (opsional)"
},
"optionalCurrencySymbol": {
"message": "Simbol Mata Uang (opsional)"
},
"origin": {
"message": "Asal"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Akun ini sudah terhubung ke MetaMask."
},
"selectAnAccountHelp": {
"message": "Pilih akun untuk dilihat di MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Tidak melihat akun Anda? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Pilih masing-masing frasa untuk memastikan kebenarannya."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Izinkan situs ini untuk beralih jaringan?"
},
"switchLedgerPaths": {
"message": "Beralih jalur Ledger"
},
"switchLedgerPathsText": {
"message": "Pilih jalur Ledger untuk melihat akun lain"
},
"switchNetwork": {
"message": "Beralih jaringan"
},
@ -2201,9 +2166,6 @@
"message": "Untuk: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Untuk:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Kami mengalami masalah saat memuat saldo token Anda. Anda dapat melihatnya ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Anda percaya situs ini? Dengan memberikan izin ini, Anda mengizinkan $1 untuk menarik $2 Anda dan mengotomatiskan transaksi untuk Anda.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Coba lagi"
},

View File

@ -103,10 +103,6 @@
"allowExternalExtensionTo": {
"message": "Permetti a questa estensione di:"
},
"allowOriginSpendToken": {
"message": "Vuoi consentire a $1 di spendere $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Permetti a questo sito di:"
},
@ -117,9 +113,6 @@
"amount": {
"message": "Importo"
},
"amountWithColon": {
"message": "Importo:"
},
"appDescription": {
"message": "Ethereum Browser Extension",
"description": "The description of the application"
@ -408,9 +401,6 @@
"customGasSubTitle": {
"message": "Incrementare il costo potrebbe diminuire il tempo di elaborazione, ma non è garantito."
},
"customRPC": {
"message": "RPC Personalizzata"
},
"customSpendLimit": {
"message": "Limite Spesa Personalizzato"
},
@ -446,9 +436,6 @@
"decryptRequest": {
"message": "Decifra richiesta"
},
"defaultNetwork": {
"message": "La rete predefinita per transazioni in Ether è la Rete Ethereum Principale."
},
"delete": {
"message": "Elimina"
},
@ -1007,9 +994,6 @@
"newContract": {
"message": "Nuovo Contratto"
},
"newNetwork": {
"message": "Nuova Rete"
},
"newPassword": {
"message": "Nuova Password (minimo 8 caratteri)"
},
@ -1093,12 +1077,6 @@
"onlyConnectTrust": {
"message": "Connettiti solo con siti di cui ti fidi."
},
"optionalBlockExplorerUrl": {
"message": "URL del Block Explorer (opzionale)"
},
"optionalCurrencySymbol": {
"message": "Simbolo (opzionale)"
},
"origin": {
"message": "Origine"
},
@ -1328,9 +1306,6 @@
"selectAnAccount": {
"message": "Seleziona un Account"
},
"selectAnAccountHelp": {
"message": "Selezione l'account da visualizzare in MetaMask"
},
"selectEachPhrase": {
"message": "Per favore seleziona ogni frase in ordine per assicurarti che sia corretta."
},
@ -1793,9 +1768,6 @@
"message": "A: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "To:"
},
"token": {
"message": "Token"
},
@ -1867,10 +1839,6 @@
"message": "Abbiamo avuto un problema a caricare il bilancio dei tuoi token. Puoi vederlo ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Ti fidi di questo sito? Autorizzandolo, stai consentendo a $1 di ritirare i tuoi $2 e automatizzare transazioni per te.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Prova di nuovo"
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "この外部拡張機能に次の操作を許可します"
},
"allowOriginSpendToken": {
"message": "$1 に $2 の使用を許可しますか?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "このサイトに次の操作を許可します"
},
@ -144,9 +140,6 @@
"amount": {
"message": "金額"
},
"amountWithColon": {
"message": "金額:"
},
"appDescription": {
"message": "ブラウザーにあるイーサリアム ウォレット",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "手数料を増やすと処理時間は減少する可能性がありますが、減少しない場合もあります。"
},
"customRPC": {
"message": "カスタム RPC"
},
"customSpendLimit": {
"message": "カスタム使用限度額"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "リクエストの復号"
},
"defaultNetwork": {
"message": "Ether 取引のためのデフォルトのネットワークはメインネットです。"
},
"delete": {
"message": "削除"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "新しいコントラクト"
},
"newNetwork": {
"message": "新しいネットワーク"
},
"newPassword": {
"message": "新しいパスワード (最低 8 文字)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "信頼するサイトにのみ接続します。"
},
"optionalBlockExplorerUrl": {
"message": "ブロック エクスプローラーの URL (オプション)"
},
"optionalCurrencySymbol": {
"message": "通貨記号 (オプション)"
},
"origin": {
"message": "起点"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "このアカウントはすでに MetaMask に接続されています"
},
"selectAnAccountHelp": {
"message": "MetaMask で表示するアカウントを選択します。"
},
"selectAnAccountHelpDirections": {
"message": "アカウントが表示されません。$1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "各フレーズを選択して、各フレーズが正しいことを確認してください。"
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "このサイトのネットワーク変更を許可しますか?"
},
"switchLedgerPaths": {
"message": "レジャー パスの切り替え"
},
"switchLedgerPathsText": {
"message": "レジャー パスを選択して他のアカウントを表示します"
},
"switchNetwork": {
"message": "ネットワークの切り替え"
},
@ -2201,9 +2166,6 @@
"message": "移動先:$1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "移動先:"
},
"token": {
"message": "トークン"
},
@ -2281,10 +2243,6 @@
"message": "トークン バランスのロードに問題があります。トークン バランスを表示できます",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "このサイトを信頼しますか?許可を与えることにより、$1 は $2 を取り消して、トランザクションを自動化できます。",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "再試行"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "ಹೆಚ್ಚುತ್ತಿರುವ ಶುಲ್ಕವು ಪ್ರಕ್ರಿಯೆಗೊಳಿಸುವ ಸಮಯದಲ್ಲಿ ಕಡಿಮೆಯಾಗುತ್ತದೆ ಆದರೆ ಇದು ಖಚಿತವಾಗಿಲ್ಲ."
},
"customRPC": {
"message": "ಕಸ್ಟಮ್ RPC"
},
"customToken": {
"message": "ಕಸ್ಟಮ್ ಟೋಕನ್"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "ದಶಮಾಂಶಗಳು ಕನಿಷ್ಟ 0 ಆಗಿರಬೇಕು ಮತ್ತು 36 ಕ್ಕಿಂತ ಹೆಚ್ಚಿರಬಾರದು"
},
"defaultNetwork": {
"message": "ಎಥರ್ ವಹಿವಾಟುಗಳಿಗಾಗಿ ಡೀಫಾಲ್ಟ್ ನೆಟ್‌ವರ್ಕ್ ಪ್ರಮುಖವಾಗಿರುವ ನೆಟ್ ಆಗಿದೆ."
},
"delete": {
"message": "ಅಳಿಸಿ"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "ಹೊಸ ಒಪ್ಪಂದ"
},
"newNetwork": {
"message": "ಹೊಸ ನೆಟ್‌ವರ್ಕ್"
},
"newPassword": {
"message": "ಹೊಸ ಪಾಸ್‌ವರ್ಡ್ (ಕನಿಷ್ಟ 8 ಅಕ್ಷರಗಳು)"
},
@ -674,12 +665,6 @@
"on": {
"message": "ಆನ್‌"
},
"optionalBlockExplorerUrl": {
"message": "ಅನ್ವೇಷಕ URL ಅನ್ನು ನಿರ್ಬಂಧಿಸಿ (ಐಚ್ಛಿಕ)"
},
"optionalCurrencySymbol": {
"message": "ಚಿಹ್ನೆ (ಐಚ್ಛಿಕ)"
},
"origin": {
"message": "ಮೂಲ"
},
@ -859,9 +844,6 @@
"selectAnAccount": {
"message": "ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ"
},
"selectAnAccountHelp": {
"message": "MetaMask ನಲ್ಲಿ ವೀಕ್ಷಿಸಲು ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ"
},
"selectEachPhrase": {
"message": "ಅದು ಸರಿಯಾಗಿದೆಯೆ ಎಂಬುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು ದಯವಿಟ್ಟು ಪ್ರತಿ ಫ್ರೇಸ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ."
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "이 외부 확장을 통해 다음을 하도록 허용:"
},
"allowOriginSpendToken": {
"message": "$1에서 $2을(를) 지출하도록 허용하시겠어요?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "이 사이트에서 다음을 하도록 허용:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "금액"
},
"amountWithColon": {
"message": "금액:"
},
"appDescription": {
"message": "브라우저의 이더리움 지갑",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "수수료를 올리면 처리 시간이 단축되기도 하지만 항상 그렇지는 않습니다."
},
"customRPC": {
"message": "맞춤형 RPC"
},
"customSpendLimit": {
"message": "맞춤형 지출 한도"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "요청 암호 해독"
},
"defaultNetwork": {
"message": "Ether 거래의 기본 네트워크는 메인 넷입니다."
},
"delete": {
"message": "삭제"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "새 계약"
},
"newNetwork": {
"message": "새 네트워크"
},
"newPassword": {
"message": "새 암호(8자 이상)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "신뢰하는 사이트만 연결하세요."
},
"optionalBlockExplorerUrl": {
"message": "블록 탐색기 URL(선택 사항)"
},
"optionalCurrencySymbol": {
"message": "통화 기호(선택 사항)"
},
"origin": {
"message": "원본"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "이 계정은 이미 MetaMask와 연결되어 있습니다."
},
"selectAnAccountHelp": {
"message": "MetaMask에서 확인할 계정을 선택하십시오."
},
"selectAnAccountHelpDirections": {
"message": "계정을 찾을 수 없습니까? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "각 구문을 선택하여 구문이 올바른지 확인하세요."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "이 사이트가 네트워크를 전환하도록 허용하시겠어요?"
},
"switchLedgerPaths": {
"message": "Ledger 경로 전환"
},
"switchLedgerPathsText": {
"message": "다른 계정을 보려면 Ledger 경로를 선택하세요."
},
"switchNetwork": {
"message": "네트워크 전환"
},
@ -2201,9 +2166,6 @@
"message": "수신: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "수신:"
},
"token": {
"message": "토큰"
},
@ -2281,10 +2243,6 @@
"message": "토큰 잔액을 로드하는 도중 문제가 발생했습니다. 다음에서 잔액을 확인하세요. ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "이 사이트를 신뢰하시나요? 이 권한을 부여하면 $1에서 귀하의 $2을(를) 인출하고 거래를 자동으로 처리하게 됩니다.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "다시 시도"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Didinant mokestį gali mažėti apdorojimo trukmė, bet tai negarantuojama."
},
"customRPC": {
"message": "Pritaikytas RPC"
},
"customToken": {
"message": "Pritaikytas žetonas"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Turi būti bent 0 skaitmenų po kablelio, bet ne daugiau kaip 36."
},
"defaultNetwork": {
"message": "Numatytasis „Ether“ operacijų tinklas yra pagrindinis tinklas."
},
"delete": {
"message": "Ištrinti"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "Nauja sutartis"
},
"newNetwork": {
"message": "Naujas tinklas"
},
"newPassword": {
"message": "Naujas slaptažodis (bent 8 ženklai)"
},
@ -674,12 +665,6 @@
"on": {
"message": "Įjungta"
},
"optionalBlockExplorerUrl": {
"message": "Blokuoti naršyklės URL (pasirinktinai)"
},
"optionalCurrencySymbol": {
"message": "Simbolis (nebūtinas)"
},
"origin": {
"message": "Kilmė"
},
@ -859,9 +844,6 @@
"selectAnAccount": {
"message": "Pasirinkite paskyrą"
},
"selectAnAccountHelp": {
"message": "Pasirinkite paskyrą peržiūrėti „MetaMask“"
},
"selectEachPhrase": {
"message": "Pasirinkite kiekvieną frazę, kad patikrintumėte, ar ji tinkama"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Nodevas palielināšana var saīsināt apstrādes laiku, bet ne garantēti."
},
"customRPC": {
"message": "Pielāgots RPC izsaukums"
},
"customToken": {
"message": "Pielāgots marķieris"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Daļskaitļiem jābūt diapazonā no 0 līdz 36."
},
"defaultNetwork": {
"message": "Galvenais Ether darījumu tīkls ir Mainnet."
},
"delete": {
"message": "Dzēst"
},
@ -619,9 +613,6 @@
"newContract": {
"message": "Jauns līgums"
},
"newNetwork": {
"message": "Jauns tīkls"
},
"newPassword": {
"message": "Jauna parole (vism. 8 rakstzīmes)"
},
@ -670,12 +661,6 @@
"on": {
"message": "Iesl."
},
"optionalBlockExplorerUrl": {
"message": "Bloķēt Explorer URL (pēc izvēles)"
},
"optionalCurrencySymbol": {
"message": "Simbols (neobligāti)"
},
"origin": {
"message": "Avots"
},
@ -855,9 +840,6 @@
"selectAnAccount": {
"message": "Atlasiet kontu"
},
"selectAnAccountHelp": {
"message": "Atlasiet kontu, ko skatīt MetaMask"
},
"selectEachPhrase": {
"message": "Lūdzu, atlasiet katru frāzi, lai pārliecinātos par tās pareizību."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Meningkatkan fi mungkin akan mengurangkan masa pemprosesan, tetapi ia tidak dijamin."
},
"customRPC": {
"message": "RPC Tersuai"
},
"customToken": {
"message": "Token Tersuai"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Perpuluhan mestilah sekurang-kurangnya 0, dan tidak melebihi 36."
},
"defaultNetwork": {
"message": "Rangkaian lalai untuk transaksi Ether ialah Net Utama."
},
"delete": {
"message": "Padam"
},
@ -603,9 +597,6 @@
"newContract": {
"message": "Kontrak Baru"
},
"newNetwork": {
"message": "Rangkaian Baru"
},
"newPassword": {
"message": "Kata Laluan Baru (min 8 aks)"
},
@ -651,12 +642,6 @@
"on": {
"message": "Hidupkan"
},
"optionalBlockExplorerUrl": {
"message": "Sekat URL Explorer (pilihan)"
},
"optionalCurrencySymbol": {
"message": "Simbol (pilihan)"
},
"origin": {
"message": "Asal"
},
@ -836,9 +821,6 @@
"selectAnAccount": {
"message": "Pilih Akaun"
},
"selectAnAccountHelp": {
"message": "Pilih akaun untuk dilihat dalam MetaMask"
},
"selectEachPhrase": {
"message": "Sila pilih setiap ungkapan untuk memastikan ia betul."
},

View File

@ -67,18 +67,12 @@
"customGas": {
"message": "Pas Gas aan"
},
"customRPC": {
"message": "Aangepaste RPC"
},
"decimal": {
"message": "Decimalen van precisie"
},
"decimalsMustZerotoTen": {
"message": "Decimalen moeten minimaal 0 en niet meer dan 36 zijn."
},
"defaultNetwork": {
"message": "Het standaardnetwerk voor Ether-transacties is Mainnet."
},
"depositEther": {
"message": "Stort Ether"
},

View File

@ -254,9 +254,6 @@
"customGasSubTitle": {
"message": "Økt gebyr kan redusere behandlingstiden, men det er ikke garantert."
},
"customRPC": {
"message": "Tilpasset RPC"
},
"customToken": {
"message": "Egendefinert token "
},
@ -266,9 +263,6 @@
"decimalsMustZerotoTen": {
"message": "Desimaler må være minst 0, og ikke flere enn 36."
},
"defaultNetwork": {
"message": "Standardnettverket for Ether-transaksjoner er Mainnet."
},
"delete": {
"message": "Slett"
},
@ -610,9 +604,6 @@
"newContract": {
"message": "Ny kontaktperson"
},
"newNetwork": {
"message": "Nytt nettverk "
},
"newPassword": {
"message": "Nytt passord (minimum 8 tegn)"
},
@ -661,12 +652,6 @@
"on": {
"message": "På"
},
"optionalBlockExplorerUrl": {
"message": "Blokker Explorer URL (valgfritt)"
},
"optionalCurrencySymbol": {
"message": "Symbol (valgfritt)"
},
"origin": {
"message": "Opprinnelse"
},
@ -843,9 +828,6 @@
"selectAnAccount": {
"message": "Velg en konto"
},
"selectAnAccountHelp": {
"message": "Velg konto for å vise i MetaMask"
},
"selectEachPhrase": {
"message": "Velg hver frase for å kontrollere at den er riktig."
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Payagan ang external extension na ito na:"
},
"allowOriginSpendToken": {
"message": "Payagan ang $1 na gastusin ang iyong $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Payagan ang site na ito na:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Halaga"
},
"amountWithColon": {
"message": "Halaga:"
},
"appDescription": {
"message": "Ethereum Wallet sa iyong Browser",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Kapag dinagdagan ang bayarin, mababawasan ang mga oras ng pagproseso, pero hindi ito garantisado."
},
"customRPC": {
"message": "Custom na RPC"
},
"customSpendLimit": {
"message": "Custom na Limitasyon sa Paggastos"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "I-decrypt ang request"
},
"defaultNetwork": {
"message": "Ang default na network para sa mga transaksyon ng Ether ay ang Mainnet."
},
"delete": {
"message": "I-delete"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Bagong Kontrata"
},
"newNetwork": {
"message": "Bagong Network"
},
"newPassword": {
"message": "Bagong password (min na 8 char)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Kumonekta lang sa mga site na pinagkakatiwalaan mo."
},
"optionalBlockExplorerUrl": {
"message": "URL ng Block Explorer (opsyonal)"
},
"optionalCurrencySymbol": {
"message": "Simbolo ng Currency (opsyonal)"
},
"origin": {
"message": "Pinagmulan"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Nakakonekta na ang account na ito sa MetaMask"
},
"selectAnAccountHelp": {
"message": "Pumili ng account na titingnan sa MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Hindi makita ang iyong account? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Pakipili ang bawat phrase para matiyak na tama ito."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Payagang palitan ng site na ito ang network?"
},
"switchLedgerPaths": {
"message": "Magpalit ng path ng Ledger"
},
"switchLedgerPathsText": {
"message": "Piliin ang path ng Ledger para tingnan ang iba pang account"
},
"switchNetwork": {
"message": "Lumipat ng network"
},
@ -2201,9 +2166,6 @@
"message": "Para kay/sa: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Para kay/sa:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Nagkaproblema kami sa pag-load ng mga balanse ng iyong token. Puwede mong tingnan ang mga iyon ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Pinagkakatiwalaan mo ba ang site na ito? Sa pamamagitan ng pagbibigay ng pahintulot na ito, pinapayagan mo ang $1 na i-withdraw ang iyong $2 at i-automate ang mga transaksyon para sa iyo.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Subukan ulit"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Zwiększenie opłaty może skrócić czas przetwarzania transakcji, ale nie jest to gwarantowane."
},
"customRPC": {
"message": "Własne RPC"
},
"customToken": {
"message": "Własny token"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Liczb po przecinku musi być co najmniej 0 i nie więcej niż 36."
},
"defaultNetwork": {
"message": "Domyślna sieć dla Eteru to Mainnet."
},
"delete": {
"message": "Usuń"
},
@ -620,9 +614,6 @@
"newContract": {
"message": "Nowy kontrakt"
},
"newNetwork": {
"message": "Nowa sieć"
},
"newPassword": {
"message": "Nowe hasło (min. 8 znaków)"
},
@ -668,12 +659,6 @@
"on": {
"message": "Włączone"
},
"optionalBlockExplorerUrl": {
"message": "Adres URL przeglądarki łańcucha bloków (opcjonalnie)"
},
"optionalCurrencySymbol": {
"message": "Symbol (opcjonalnie)"
},
"origin": {
"message": "Pochodzenie"
},
@ -853,9 +838,6 @@
"selectAnAccount": {
"message": "Wybierz konto"
},
"selectAnAccountHelp": {
"message": "Wybierz konto do przeglądania w MetaMask"
},
"selectEachPhrase": {
"message": "Wybierz każdą frazę, aby upewnić się, że jest poprawna."
},

View File

@ -70,18 +70,12 @@
"customGas": {
"message": "Customizar Gas"
},
"customRPC": {
"message": "Customizar RPC"
},
"decimal": {
"message": "Precisão em Decimais"
},
"decimalsMustZerotoTen": {
"message": "Decimais devem ser no mínimo 0 e não passar de 36."
},
"defaultNetwork": {
"message": "A rede pré definida para transações em Ether é a Mainnet."
},
"depositEther": {
"message": "Depositar Ether"
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Permitir que esta extensão externa:"
},
"allowOriginSpendToken": {
"message": "Permitir que $1 gaste seus(suas) $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Permitir que este site:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Valor"
},
"amountWithColon": {
"message": "Valor:"
},
"appDescription": {
"message": "Uma carteira do Ethereum no seu navegador",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Aumentar a taxa pode diminuir o tempo de processamento, mas não é garantia."
},
"customRPC": {
"message": "RPC personalizada"
},
"customSpendLimit": {
"message": "Limite de gastos personalizado"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Descriptografar solicitação"
},
"defaultNetwork": {
"message": "A rede padrão das transações em ether é a Mainnet."
},
"delete": {
"message": "Excluir"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Novo contrato"
},
"newNetwork": {
"message": "Nova rede"
},
"newPassword": {
"message": "Nova senha (mín. 8 caract.)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Conecte-se somente com sites em quem você confia."
},
"optionalBlockExplorerUrl": {
"message": "URL do Block Explorer (opcional)"
},
"optionalCurrencySymbol": {
"message": "Símbolo de moeda (opcional)"
},
"origin": {
"message": "Origem"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Esta conta já foi conectada ao MetaMask"
},
"selectAnAccountHelp": {
"message": "Selecione uma conta a ser exibida no MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Não está vendo sua conta? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Selecione cada frase para garantir que esteja correta."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Permitir que este site mude a rede?"
},
"switchLedgerPaths": {
"message": "Mudar caminhos do Ledger"
},
"switchLedgerPathsText": {
"message": "Selecione o caminho do Ledger para ver outras contas"
},
"switchNetwork": {
"message": "Trocar de rede"
},
@ -2201,9 +2166,6 @@
"message": "Até: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Até:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Tivemos dificuldade para carregar os saldos do seu token. Você pode exibi-los ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Você confia neste site? Ao conceder esta permissão, você está permitindo que $1 saque seus(suas) $2 e automatize as transações por você.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Tente novamente"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Creșterea taxei poate reduce timpii de procesare, dar acest lucru nu este garantat."
},
"customRPC": {
"message": "RPC particularizat"
},
"customToken": {
"message": "Token personalizat"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Zecimalele trebuie să fie cel puțin 0, dar nu peste 36."
},
"defaultNetwork": {
"message": "Rețeaua implicită pentru tranzacțiile cu Ether este Mainnet."
},
"delete": {
"message": "Șterge"
},
@ -610,9 +604,6 @@
"newContract": {
"message": "Contract nou"
},
"newNetwork": {
"message": "Rețea nouă"
},
"newPassword": {
"message": "Parola Nouă (minimum 8 caractere)"
},
@ -661,12 +652,6 @@
"on": {
"message": "Activat"
},
"optionalBlockExplorerUrl": {
"message": "URL explorator bloc (opțional)"
},
"optionalCurrencySymbol": {
"message": "Simbol (opțional)"
},
"origin": {
"message": "Origine"
},
@ -846,9 +831,6 @@
"selectAnAccount": {
"message": "Selectați un cont"
},
"selectAnAccountHelp": {
"message": "Selectați contul de vizualizat în MetaMask"
},
"selectEachPhrase": {
"message": "Vă rugăm să selectați fiecare expresie pentru a vă asigura că este corectă."
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Разрешить этому внешнему расширению:"
},
"allowOriginSpendToken": {
"message": "Разрешить $1 потратить ваши $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Разрешить этому сайту:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Сумма"
},
"amountWithColon": {
"message": "Сумма:"
},
"appDescription": {
"message": "Кошелек Ethereum в вашем браузере",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Увеличение комиссии может сократить время обработки, но это не гарантируется."
},
"customRPC": {
"message": "Пользовательский RPC"
},
"customSpendLimit": {
"message": "Пользовательский предел расходов"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Расшифровать запрос"
},
"defaultNetwork": {
"message": "Сетью по умолчанию для транзакций Ether является Mainnet."
},
"delete": {
"message": "Удалить"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Новый контракт"
},
"newNetwork": {
"message": "Новая сеть"
},
"newPassword": {
"message": "Новый пароль (мин.8 знаков)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Подключайтесь только к сайтам, которым доверяете."
},
"optionalBlockExplorerUrl": {
"message": "URL-адрес проводника блока (необязательно)"
},
"optionalCurrencySymbol": {
"message": "Символ валюты (необязательно)"
},
"origin": {
"message": "Источник"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Этот счет уже подключен к MetaMask"
},
"selectAnAccountHelp": {
"message": "Выберите счет для просмотра в MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Не видите свой счет? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Выберите каждую фразу, чтобы убедиться, что она верна."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Разрешить этому сайту переключить сеть?"
},
"switchLedgerPaths": {
"message": "Переключить пути Ledger"
},
"switchLedgerPathsText": {
"message": "Выберите путь Ledger для просмотра других счетов"
},
"switchNetwork": {
"message": "Переключить сеть"
},
@ -2201,9 +2166,6 @@
"message": "Адресат $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Адресат"
},
"token": {
"message": "Токен"
},
@ -2281,10 +2243,6 @@
"message": "У нас возникли проблемы с загрузкой вашего баланса токенов. Вы можете просмотреть их ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Вы доверяете этому сайту? Предоставляя это разрешение, вы разрешаете $1 вывести ваши $2 и автоматизировать транзакции для вас.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Попробуйте еще раз"
},

View File

@ -251,9 +251,6 @@
"customGasSubTitle": {
"message": "Zvýšenie poplatku môže skrátiť dobu spracovania, nie je to však zaručené."
},
"customRPC": {
"message": "Vlastní RPC"
},
"customToken": {
"message": "Vlastní token"
},
@ -263,9 +260,6 @@
"decimalsMustZerotoTen": {
"message": "Desetinných míst musí být od 0 do 36."
},
"defaultNetwork": {
"message": "Výchozí síť pro Etherové transakce je Mainnet."
},
"delete": {
"message": "Odstrániť"
},
@ -595,9 +589,6 @@
"newContract": {
"message": "Nový kontrakt"
},
"newNetwork": {
"message": "Nová sieť"
},
"newPassword": {
"message": "Nové heslo (min 8 znaků)"
},
@ -643,12 +634,6 @@
"on": {
"message": "Zapnuté"
},
"optionalBlockExplorerUrl": {
"message": "Blokovať URL Explorera (voliteľné)"
},
"optionalCurrencySymbol": {
"message": "Symbol (voliteľné)"
},
"origin": {
"message": "Pôvod"
},
@ -822,9 +807,6 @@
"selectAnAccount": {
"message": "Vybrať účet"
},
"selectAnAccountHelp": {
"message": "Vyberte účet, ktorý chcete zobraziť v MetaMask"
},
"selectEachPhrase": {
"message": "Vyberte každú frázu, aby ste sa uistili, že je správna."
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Povečanje lahko skrajša čas obdelave, vendar ni zagotovljeno."
},
"customRPC": {
"message": "RPC po meri"
},
"customToken": {
"message": "Žeton po meri"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Decimalk mora biti med 0 in 36."
},
"defaultNetwork": {
"message": "Privzeto omrežje za transkacije je glavno omrežje."
},
"delete": {
"message": "Izbriši"
},
@ -611,9 +605,6 @@
"newContract": {
"message": "Nova pogodba"
},
"newNetwork": {
"message": "Novo omrežje"
},
"newPassword": {
"message": "Novo geslo (min 8 znakov)"
},
@ -662,12 +653,6 @@
"on": {
"message": "Vklopljeno"
},
"optionalBlockExplorerUrl": {
"message": "Blokiraj URL Explorerja (poljubno)"
},
"optionalCurrencySymbol": {
"message": "Simbol (nezahtevano)"
},
"origin": {
"message": "Izvor"
},
@ -847,9 +832,6 @@
"selectAnAccount": {
"message": "Izberi račun"
},
"selectAnAccountHelp": {
"message": "Izberi račun za prikaz v MetaMask"
},
"selectEachPhrase": {
"message": "Izberite vsako geslo ter se prepričajte, da je pravilno."
},

View File

@ -254,9 +254,6 @@
"customGasSubTitle": {
"message": "Povećanje naknade može smanjiti vreme obrade, ali to nije zagarantovano."
},
"customRPC": {
"message": "Korisnički definisan RPC"
},
"customToken": {
"message": "Prilagođeni token"
},
@ -266,9 +263,6 @@
"decimalsMustZerotoTen": {
"message": "Decimalni broj mora biti najmanje 0, a ne veći od 36."
},
"defaultNetwork": {
"message": "Podrazumevana mreža za Ether transakcije je Mainnet."
},
"delete": {
"message": "Избриши"
},
@ -614,9 +608,6 @@
"newContract": {
"message": "Novi ugovor"
},
"newNetwork": {
"message": "Nova mreža"
},
"newPassword": {
"message": "Nova lozinka (minimalno 8 karaktera)"
},
@ -665,12 +656,6 @@
"on": {
"message": "Укључено"
},
"optionalBlockExplorerUrl": {
"message": "Blokirajte URL Explorer-a (opciono)"
},
"optionalCurrencySymbol": {
"message": "Simbol (opciono)"
},
"origin": {
"message": "Извор"
},
@ -850,9 +835,6 @@
"selectAnAccount": {
"message": "Izaberite nalog"
},
"selectAnAccountHelp": {
"message": "Izaberite nalog za prikaz u MetaMask-u"
},
"selectEachPhrase": {
"message": "Molimo vas izaberite svaki izraz kako biste proverili da je tačan."
},

View File

@ -251,9 +251,6 @@
"customGasSubTitle": {
"message": "Att öka avgiften kan minska behandlingstiden, men det är inte garanterat att göra det."
},
"customRPC": {
"message": "Anpassad RPC"
},
"customToken": {
"message": "Anpassad token"
},
@ -263,9 +260,6 @@
"decimalsMustZerotoTen": {
"message": "Decimalerna måste vara minst 0 och inte över 36."
},
"defaultNetwork": {
"message": "Standardnätverket för Ether-transaktioner är Mainnet."
},
"delete": {
"message": "Radera"
},
@ -607,9 +601,6 @@
"newContract": {
"message": "Nytt kontrakt"
},
"newNetwork": {
"message": "Nytt nätverk"
},
"newPassword": {
"message": "Nytt lösenord (minst 8 tecken)"
},
@ -658,12 +649,6 @@
"on": {
"message": "På"
},
"optionalBlockExplorerUrl": {
"message": "Block Explorer URL (valfritt)"
},
"optionalCurrencySymbol": {
"message": "Symbol (frivillig)"
},
"origin": {
"message": "Ursprung"
},
@ -843,9 +828,6 @@
"selectAnAccount": {
"message": "Välj ett konto"
},
"selectAnAccountHelp": {
"message": "Välj konto att visa i MetaMask"
},
"selectEachPhrase": {
"message": "Välj varje fras för att säkerställa att den är korrekt."
},

View File

@ -251,9 +251,6 @@
"customGasSubTitle": {
"message": "Ada iliyoongezeka inaweza kupunguza muda wa uchakataji, lakini haihakikishwi."
},
"customRPC": {
"message": "RPC Maalumu"
},
"customToken": {
"message": "Kianzio Maalumu"
},
@ -263,9 +260,6 @@
"decimalsMustZerotoTen": {
"message": "Desimali zinapaswa kuwa angalau 0, na si zaidi ya 36."
},
"defaultNetwork": {
"message": "Mtandao chaguomsingi wa miamala ya Ether ni Mainnet."
},
"delete": {
"message": "Futa"
},
@ -601,9 +595,6 @@
"newContract": {
"message": "Mkataba Mpya"
},
"newNetwork": {
"message": "Mtandao Mpya"
},
"newPassword": {
"message": "Nenosiri Jipya (kiwango cha chini herufi 8)"
},
@ -652,12 +643,6 @@
"on": {
"message": "Imewashwa"
},
"optionalBlockExplorerUrl": {
"message": "URL ya Block Explorer URL (hiari)"
},
"optionalCurrencySymbol": {
"message": "Ishara (hiari)"
},
"origin": {
"message": "Asili"
},
@ -837,9 +822,6 @@
"selectAnAccount": {
"message": "Chagua Akaunti"
},
"selectAnAccountHelp": {
"message": "Chagua akaunti kuangalia kwenye MetaMask"
},
"selectEachPhrase": {
"message": "Tafadhali chagua kila kirai ili kuhakikisha kuwa hii ni sahihi."
},

View File

@ -103,9 +103,6 @@
"customGas": {
"message": "எரிவாயுவைத் தனிப்பயனாக்குங்கள்"
},
"customRPC": {
"message": "விருப்ப RPC ஐ"
},
"customToken": {
"message": "தனிப்பயன் டோக்கன்"
},
@ -115,9 +112,6 @@
"decimalsMustZerotoTen": {
"message": "தசமங்கள் குறைந்தபட்சம் 0, மற்றும் 36 க்கு மேல் இருக்க வேண்டும்."
},
"defaultNetwork": {
"message": "எதிர் பரிவர்த்தனைகளுக்கான முன்னிருப்பு வலையமைப்பு முதன்மை நிகரமாகும்."
},
"delete": {
"message": "நீக்கு"
},

View File

@ -109,18 +109,12 @@
"customGasSubTitle": {
"message": "การเพิ่มค่าธรรมเนียมอาจลดเวลาดำเนินการ แต่ก็ไม่แน่เสมอไป"
},
"customRPC": {
"message": "กำหนดค่า RPC เอง"
},
"decimal": {
"message": "ตำแหน่งของทศนิยม"
},
"decimalsMustZerotoTen": {
"message": "จำนวนต้องมากกว่า 0 และไม่เกิน 36"
},
"defaultNetwork": {
"message": "ค่าเริ่มต้นของเครือข่ายสำหรับทำรายการธุรกรรมอีเธอร์คือ Mainnet"
},
"delete": {
"message": "ลบ"
},

View File

@ -97,10 +97,6 @@
"allowExternalExtensionTo": {
"message": "Payagan ang external extension na ito na:"
},
"allowOriginSpendToken": {
"message": "Payagan ang $1 na gastusin ang iyong $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Payagan ang site na ito na:"
},
@ -111,9 +107,6 @@
"amount": {
"message": "Halaga"
},
"amountWithColon": {
"message": "Halaga:"
},
"appDescription": {
"message": "Ethereum Wallet sa iyong Browser",
"description": "The description of the application"
@ -396,9 +389,6 @@
"customGasSubTitle": {
"message": "Kapag dinagdagan ang bayarin, mababawasan ang mga oras ng pagproseso, pero hindi ito garantisado."
},
"customRPC": {
"message": "Custom na RPC"
},
"customSpendLimit": {
"message": "Custom na Limitasyon sa Paggastos"
},
@ -434,9 +424,6 @@
"decryptRequest": {
"message": "I-decrypt ang request"
},
"defaultNetwork": {
"message": "Ang default na network para sa mga transaksyon ng Ether ay ang Mainnet."
},
"delete": {
"message": "I-delete"
},
@ -1001,9 +988,6 @@
"newContract": {
"message": "Bagong Kontrata"
},
"newNetwork": {
"message": "Bagong Network"
},
"newPassword": {
"message": "Bagong password (min na 8 char)"
},
@ -1084,12 +1068,6 @@
"onlyConnectTrust": {
"message": "Kumonekta lang sa mga site na pinagkakatiwalaan mo."
},
"optionalBlockExplorerUrl": {
"message": "URL ng Block Explorer (opsyonal)"
},
"optionalCurrencySymbol": {
"message": "Simbolo ng Currency (opsyonal)"
},
"origin": {
"message": "Pinagmulan"
},
@ -1319,9 +1297,6 @@
"selectAnAccount": {
"message": "Pumili ng Account"
},
"selectAnAccountHelp": {
"message": "Piliin ang account na titingnan sa MetaMask"
},
"selectEachPhrase": {
"message": "Pakipili ang bawat phrase para matiyak na tama ito."
},
@ -1749,9 +1724,6 @@
"message": "Para kay/sa: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Para kay/sa:"
},
"token": {
"message": "Token"
},
@ -1823,10 +1795,6 @@
"message": "Nagkaproblema kami sa pag-load ng mga balanse ng iyong token. Puwede mong tingnan ang mga iyon ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Pinagkakatiwalaan mo ba ang site na ito? Sa pamamagitan ng pagbibigay ng pahintulot na ito, pinapayagan mo ang $1 na i-withdraw ang iyong $2 at i-automate ang mga transaksyon para sa iyo.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Subukan ulit"
},

View File

@ -88,9 +88,6 @@
"customGas": {
"message": "Gas'i özelleştir"
},
"customRPC": {
"message": "Özel RPC"
},
"customToken": {
"message": "Özel Jeton"
},
@ -100,9 +97,6 @@
"decimalsMustZerotoTen": {
"message": "Ondalıklar en azından 0 olmalı ve 36'dan büyük olmamalı."
},
"defaultNetwork": {
"message": "Ether işlemleri için varsayılan ağ Mainnet."
},
"depositEther": {
"message": "Ether yatır"
},

View File

@ -257,9 +257,6 @@
"customGasSubTitle": {
"message": "Збільшення комісії може призвести до зменшення часу обробки, але це не гарантується."
},
"customRPC": {
"message": "Налаштувати RPC"
},
"customToken": {
"message": "Користувацький токен"
},
@ -269,9 +266,6 @@
"decimalsMustZerotoTen": {
"message": "Кількість розрядів після коми: від 0 до 36."
},
"defaultNetwork": {
"message": "Мережа для транзакцій з Ether за замовчуванням - Mainnet."
},
"delete": {
"message": "Видалити"
},
@ -623,9 +617,6 @@
"newContract": {
"message": "Новий контракт"
},
"newNetwork": {
"message": "Нова мережа"
},
"newPassword": {
"message": "Новий пароль (мінімум 8 символів)"
},
@ -674,12 +665,6 @@
"on": {
"message": "Увімкнути"
},
"optionalBlockExplorerUrl": {
"message": "Блокувати Explorer URL (не обов'язково)"
},
"optionalCurrencySymbol": {
"message": "Символ (не обов'язково)"
},
"origin": {
"message": "Походження"
},
@ -859,9 +844,6 @@
"selectAnAccount": {
"message": "Виберіть обліковий запис"
},
"selectAnAccountHelp": {
"message": "Оберіть обліковий запис для перегляду в MetaMask"
},
"selectEachPhrase": {
"message": "Виберіть кожну фразу, щоб переконатися, що вона правильна."
},

View File

@ -130,10 +130,6 @@
"allowExternalExtensionTo": {
"message": "Cho phép tiện ích bên ngoài này:"
},
"allowOriginSpendToken": {
"message": "Cho phép $1 chi tiêu $2 của bạn?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "Cho phép trang web này:"
},
@ -144,9 +140,6 @@
"amount": {
"message": "Số tiền"
},
"amountWithColon": {
"message": "Số tiền:"
},
"appDescription": {
"message": "Ví Ethereum trên trình duyệt của bạn",
"description": "The description of the application"
@ -474,9 +467,6 @@
"customGasSubTitle": {
"message": "Việc tăng phí có thể giúp giảm thời gian xử lý, nhưng điều này không được đảm bảo."
},
"customRPC": {
"message": "RPC tùy chỉnh"
},
"customSpendLimit": {
"message": "Giới hạn chi tiêu tùy chỉnh"
},
@ -512,9 +502,6 @@
"decryptRequest": {
"message": "Yêu cầu của Decrypt"
},
"defaultNetwork": {
"message": "Mạng mặc định cho các giao dịch Ether là Mạng chính thức."
},
"delete": {
"message": "Xóa"
},
@ -1193,9 +1180,6 @@
"newContract": {
"message": "Hợp đồng mới"
},
"newNetwork": {
"message": "Mạng mới"
},
"newPassword": {
"message": "Mật khẩu mới (tối thiểu 8 ký tự)"
},
@ -1334,12 +1318,6 @@
"onlyConnectTrust": {
"message": "Chỉ kết nối với các trang web mà bạn tin tưởng."
},
"optionalBlockExplorerUrl": {
"message": "URL trình khám phá khối (không bắt buộc)"
},
"optionalCurrencySymbol": {
"message": "Ký hiệu tiền tệ (không bắt buộc)"
},
"origin": {
"message": "Nguồn gốc"
},
@ -1638,13 +1616,6 @@
"selectAnAccountAlreadyConnected": {
"message": "Tài khoản này đã được kết nối với MetaMask"
},
"selectAnAccountHelp": {
"message": "Chọn một tài khoản để xem trong MetaMask."
},
"selectAnAccountHelpDirections": {
"message": "Bạn không thấy tài khoản của mình? $1",
"description": "$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
"selectEachPhrase": {
"message": "Vui lòng chọn từng cụm mật khẩu theo thứ tự để đảm bảo sự chính xác."
},
@ -2125,12 +2096,6 @@
"switchEthereumChainConfirmationTitle": {
"message": "Cho phép trang web này chuyển mạng?"
},
"switchLedgerPaths": {
"message": "Chuyển đường dẫn Ledger"
},
"switchLedgerPathsText": {
"message": "Chọn đường dẫn Ledger để xem các tài khoản khác"
},
"switchNetwork": {
"message": "Chuyển mạng"
},
@ -2201,9 +2166,6 @@
"message": "Đến: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "Đến:"
},
"token": {
"message": "Token"
},
@ -2281,10 +2243,6 @@
"message": "Chúng tôi đã gặp phải vấn đề khi tải số dư token của bạn. Bạn có thể xem số dư ",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "Bạn có tin tưởng trang web này không? Bằng việc cấp quyền này, bạn sẽ cho phép $1 rút $2 của bạn và tự động thực hiện các giao dịch cho bạn.",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "Thử lại"
},

View File

@ -103,10 +103,6 @@
"allowExternalExtensionTo": {
"message": "允许这个外部扩展到:"
},
"allowOriginSpendToken": {
"message": "允许 $1 使用您的 $2?",
"description": "$1 is the url of the site and $2 is the symbol of the token they are requesting to spend"
},
"allowThisSiteTo": {
"message": "允许本网站:"
},
@ -117,9 +113,6 @@
"amount": {
"message": "数额"
},
"amountWithColon": {
"message": "数额:"
},
"appDescription": {
"message": "以太坊浏览器插件",
"description": "The description of the application"
@ -405,9 +398,6 @@
"customGasSubTitle": {
"message": "提升费用可能会缩短处理时间,但不保证绝对有效。"
},
"customRPC": {
"message": "自定义 RPC"
},
"customSpendLimit": {
"message": "自定义消费限额"
},
@ -443,9 +433,6 @@
"decryptRequest": {
"message": "解密请求"
},
"defaultNetwork": {
"message": "默认以太坊Ether交易网络为主网。"
},
"delete": {
"message": "删除"
},
@ -516,7 +503,7 @@
"message": "编辑权限"
},
"encryptionPublicKeyNotice": {
"message": "$1 希望得到您的加密公钥。同意后该网站将可以您发送加密信息。",
"message": "$1 希望得到您的加密公钥。同意后该网站将可以您发送加密信息。",
"description": "$1 is the web3 site name"
},
"encryptionPublicKeyRequest": {
@ -1004,9 +991,6 @@
"newContract": {
"message": "新合约"
},
"newNetwork": {
"message": "新增网络"
},
"newPassword": {
"message": "新密码(至少 8 个字符)"
},
@ -1087,12 +1071,6 @@
"onlyConnectTrust": {
"message": "只连接您信任的网站。"
},
"optionalBlockExplorerUrl": {
"message": "区块浏览器 URL选填"
},
"optionalCurrencySymbol": {
"message": "符号(选填)"
},
"origin": {
"message": "来源"
},
@ -1322,9 +1300,6 @@
"selectAnAccount": {
"message": "选择一个账户"
},
"selectAnAccountHelp": {
"message": "选择在 MetaMask 中查看的账户"
},
"selectEachPhrase": {
"message": "请选择每个单词,以确保其正确性。"
},
@ -1773,9 +1748,6 @@
"message": "至:$1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toWithColon": {
"message": "至:"
},
"token": {
"message": "代币"
},
@ -1847,10 +1819,6 @@
"message": "我们无法加载您的代币余额。您可以查看它们",
"description": "Followed by a link (here) to view token balances"
},
"trustSiteApprovePermission": {
"message": "您信任这个网站吗?授权即表示您允许 $1 提取您的 $2并为您自动进行交易。",
"description": "$1 is the url requesting permission and $2 is the symbol of the currency that the request is for"
},
"tryAgain": {
"message": "重试"
},

View File

@ -266,9 +266,6 @@
"customGasSubTitle": {
"message": "提升費用可能會加快處理時間,但不保證"
},
"customRPC": {
"message": "自訂 RPC"
},
"customToken": {
"message": "自訂代幣"
},
@ -278,9 +275,6 @@
"decimalsMustZerotoTen": {
"message": "小數點後位數至少為0, 最多為36."
},
"defaultNetwork": {
"message": "預設以太幣交易網路為主網路"
},
"delete": {
"message": "刪除"
},
@ -629,9 +623,6 @@
"newContract": {
"message": "建立新合約"
},
"newNetwork": {
"message": "新增網路"
},
"newPassword": {
"message": "新密碼至少8個字元"
},
@ -674,12 +665,6 @@
"on": {
"message": "開啟"
},
"optionalBlockExplorerUrl": {
"message": "區塊鏈瀏覽器 URL非必要"
},
"optionalCurrencySymbol": {
"message": "Symbol (可選)"
},
"origin": {
"message": "來源"
},

View File

@ -1,337 +0,0 @@
{
"chunks": [
{
"color": [0, 0, 0],
"faces": [
[11, 12, 13],
[36, 15, 37],
[37, 38, 36],
[31, 39, 22],
[22, 21, 31],
[31, 15, 36],
[36, 39, 31],
[64, 65, 66],
[75, 69, 26],
[26, 80, 75],
[75, 80, 38],
[38, 37, 75],
[38, 80, 39],
[39, 36, 38],
[39, 80, 26],
[26, 22, 39]
]
},
{
"color": [236, 229, 220],
"faces": [
[19, 20, 21],
[21, 22, 19],
[20, 19, 23],
[23, 24, 20],
[23, 25, 24],
[19, 22, 26],
[26, 27, 19],
[23, 28, 29],
[23, 29, 30],
[25, 23, 30],
[21, 20, 24],
[24, 31, 21],
[24, 25, 30],
[29, 51, 52],
[52, 30, 29],
[27, 26, 69],
[69, 70, 27],
[70, 71, 72],
[72, 27, 70],
[72, 71, 73],
[51, 74, 72],
[52, 51, 72],
[73, 52, 72],
[69, 71, 70],
[71, 69, 75],
[52, 73, 71],
[19, 27, 74],
[74, 28, 19],
[51, 29, 28],
[28, 74, 51],
[74, 27, 72],
[28, 23, 19]
]
},
{
"color": [119, 228, 171],
"faces": [
[5, 4, 35],
[57, 59, 79]
]
},
{
"color": [80, 157, 116],
"faces": [
[4, 5, 2],
[2, 5, 6],
[57, 56, 55],
[58, 59, 55],
[2, 1, 4],
[55, 59, 57]
]
},
{
"color": [67, 127, 95],
"faces": [
[0, 1, 2],
[2, 3, 0],
[6, 3, 2],
[7, 8, 9],
[10, 3, 6],
[10, 50, 7],
[7, 3, 10],
[7, 9, 3],
[49, 0, 9],
[3, 9, 0],
[53, 54, 55],
[55, 56, 53],
[55, 54, 58],
[60, 61, 62],
[63, 58, 54],
[63, 60, 89],
[60, 63, 54],
[60, 54, 61],
[88, 61, 53],
[54, 53, 61]
]
},
{
"color": [119, 228, 207],
"faces": [
[59, 5, 35],
[35, 79, 59]
]
},
{
"color": [163, 230, 235],
"faces": [
[14, 15, 11],
[11, 16, 14],
[16, 13, 12],
[17, 33, 10],
[17, 18, 34],
[34, 33, 17],
[11, 15, 31],
[18, 12, 11],
[41, 64, 37],
[64, 41, 40],
[66, 65, 40],
[67, 63, 77],
[67, 77, 76],
[76, 68, 67],
[75, 37, 64],
[68, 64, 66]
]
},
{
"color": [204, 237, 236],
"faces": [
[10, 6, 17],
[31, 18, 11],
[14, 16, 40],
[40, 41, 14],
[63, 67, 58],
[64, 68, 75],
[14, 41, 37],
[37, 15, 14],
[5, 59, 40],
[40, 16, 5]
]
},
{
"color": [207, 248, 247],
"faces": [
[6, 5, 16],
[16, 17, 6],
[12, 17, 16],
[58, 67, 40],
[40, 59, 58],
[40, 67, 66]
]
},
{
"color": [127, 185, 228],
"faces": [
[33, 34, 24],
[71, 76, 77]
]
},
{
"color": [119, 200, 228],
"faces": [
[31, 24, 18],
[24, 34, 18],
[35, 4, 42],
[4, 1, 42],
[42, 43, 44],
[44, 35, 42],
[45, 43, 42],
[42, 10, 45],
[30, 32, 24],
[30, 33, 32],
[33, 30, 10],
[44, 43, 46],
[43, 45, 47],
[47, 46, 43],
[48, 47, 45],
[45, 30, 48],
[30, 45, 10],
[49, 42, 0],
[8, 7, 42],
[50, 42, 7],
[50, 10, 42],
[1, 0, 42],
[42, 9, 8],
[42, 49, 9],
[75, 68, 71],
[71, 68, 76],
[79, 81, 57],
[57, 81, 56],
[82, 79, 35],
[35, 44, 82],
[81, 79, 82],
[82, 83, 81],
[84, 63, 81],
[81, 83, 84],
[44, 46, 85],
[85, 82, 44],
[71, 78, 52],
[52, 78, 77],
[77, 63, 52],
[82, 85, 83],
[83, 85, 86],
[86, 84, 83],
[87, 52, 84],
[84, 86, 87],
[52, 63, 84],
[88, 53, 81],
[62, 81, 60],
[89, 60, 81],
[89, 81, 63],
[56, 81, 53],
[81, 62, 61],
[81, 61, 88],
[48, 87, 86],
[86, 47, 48],
[47, 86, 85],
[85, 46, 47],
[48, 30, 52],
[52, 87, 48]
]
},
{
"color": [95, 167, 211],
"faces": [
[24, 32, 33],
[77, 78, 71]
]
},
{
"color": [119, 222, 228],
"faces": [
[17, 12, 18],
[13, 16, 11],
[67, 68, 66],
[65, 64, 40]
]
}
],
"positions": [
[111.024597, 52.604599, 46.225899],
[114.025002, 87.673302, 58.9818],
[66.192001, 80.898003, 55.394299],
[72.113297, 35.491798, 30.871401],
[97.804497, 116.560997, 73.978798],
[16.7623, 58.010899, 58.078201],
[52.608898, 30.3641, 42.556099],
[106.881401, 31.945499, 46.9133],
[113.484596, 38.6049, 49.121498],
[108.6633, 43.2332, 46.315399],
[101.216599, 15.9822, 46.308201],
[16.6605, -16.2883, 93.618698],
[40.775002, -10.2288, 85.276398],
[23.926901, -2.5103, 86.736504],
[11.1691, -7.0037, 99.377602],
[9.5692, -34.393902, 141.671997],
[12.596, 7.1655, 88.740997],
[61.180901, 8.8142, 76.996803],
[39.719501, -28.927099, 88.963799],
[13.7962, -68.575699, 132.057007],
[15.2674, -62.32, 129.688004],
[14.8446, -52.6096, 140.113007],
[12.8917, -49.771599, 144.740997],
[35.604198, -71.758003, 81.063904],
[47.462502, -68.606102, 63.369701],
[38.2486, -64.730202, 38.909901],
[-12.8917, -49.771599, 144.740997],
[-13.7962, -68.575699, 132.057007],
[17.802099, -71.758003, 81.063904],
[19.1243, -69.0168, 49.420101],
[38.2486, -66.275597, 17.776199],
[12.8928, -36.703499, 141.671997],
[109.283997, -93.589897, 27.824301],
[122.117996, -36.8894, 35.025002],
[67.7668, -30.197001, 78.417801],
[33.180698, 101.851997, 25.3186],
[9.4063, -35.589802, 150.722],
[-9.5692, -34.393902, 141.671997],
[-9.4063, -35.589802, 150.722],
[11.4565, -37.899399, 150.722],
[-12.596, 7.1655, 88.740997],
[-11.1691, -7.0037, 99.377602],
[70.236504, 62.836201, -3.9475],
[47.263401, 54.293999, -27.414801],
[28.7302, 91.731102, -24.972601],
[69.167603, 6.5862, -12.7757],
[28.7302, 49.1003, -48.3596],
[31.903, 5.692, -47.821999],
[35.075802, -34.432899, -16.280899],
[115.284103, 48.681499, 48.684101],
[110.842796, 28.4821, 49.176201],
[-19.1243, -69.0168, 49.420101],
[-38.2486, -66.275597, 17.776199],
[-111.024597, 52.604599, 46.225899],
[-72.113297, 35.491798, 30.871401],
[-66.192001, 80.898003, 55.394299],
[-114.025002, 87.673302, 58.9818],
[-97.804497, 116.560997, 73.978798],
[-52.608898, 30.3641, 42.556099],
[-16.7623, 58.010899, 58.078201],
[-106.881401, 31.945499, 46.9133],
[-108.6633, 43.2332, 46.315399],
[-113.484596, 38.6049, 49.121498],
[-101.216599, 15.9822, 46.308201],
[-16.6605, -16.2883, 93.618698],
[-23.926901, -2.5103, 86.736504],
[-40.775002, -10.2288, 85.276398],
[-61.180901, 8.8142, 76.996803],
[-39.719501, -28.927099, 88.963799],
[-14.8446, -52.6096, 140.113007],
[-15.2674, -62.32, 129.688004],
[-47.462502, -68.606102, 63.369701],
[-35.604198, -71.758003, 81.063904],
[-38.2486, -64.730202, 38.909901],
[-17.802099, -71.758003, 81.063904],
[-12.8928, -36.703499, 141.671997],
[-67.7668, -30.197001, 78.417801],
[-122.117996, -36.8894, 35.025002],
[-109.283997, -93.589897, 27.824301],
[-33.180698, 101.851997, 25.3186],
[-11.4565, -37.899399, 150.722],
[-70.236504, 62.836201, -3.9475],
[-28.7302, 91.731102, -24.972601],
[-47.263401, 54.293999, -27.414801],
[-69.167603, 6.5862, -12.7757],
[-28.7302, 49.1003, -48.3596],
[-31.903, 5.692, -47.821999],
[-35.075802, -34.432899, -16.280899],
[-115.284103, 48.681499, 48.684101],
[-110.842796, 28.4821, 49.176201]
]
}

View File

@ -0,0 +1,830 @@
{
"chunks": [
{
"faces": [
[0, 1, 2],
[2, 3, 0],
[4, 5, 2],
[6, 3, 2],
[2, 5, 6],
[7, 8, 9],
[10, 3, 6],
[10, 50, 7],
[7, 3, 10],
[7, 9, 3],
[49, 0, 9],
[3, 9, 0],
[2, 1, 4]
],
"name": "left ear",
"gradient": "left-ear-gradient"
},
{
"faces": [
[53, 54, 55],
[55, 56, 53],
[57, 56, 55],
[58, 59, 55],
[55, 54, 58],
[60, 61, 62],
[63, 58, 54],
[63, 60, 89],
[60, 63, 54],
[60, 54, 61],
[88, 61, 53],
[54, 53, 61],
[55, 59, 57]
],
"name": "right ear",
"gradient": "right-ear-gradient"
},
{
"color": [22, 22, 22],
"faces": [[11, 12, 13]],
"name": "left eye"
},
{
"color": [22, 22, 22],
"faces": [[64, 65, 66]],
"name": "right eye"
},
{
"faces": [
[14, 15, 11],
[11, 16, 14]
],
"name": "left inner eye",
"gradient": "left-inner-eye-gradient"
},
{
"faces": [[17, 12, 18]],
"name": "left outer eye",
"gradient": "left-outer-eye-gradient"
},
{
"faces": [[41, 64, 37]],
"name": "right lower inner eye",
"gradient": "right-inner-eye-gradient"
},
{
"faces": [[67, 68, 66]],
"name": "right outer eye",
"gradient": "right-outer-eye-gradient"
},
{
"color": [192, 173, 158],
"faces": [
[19, 20, 21],
[21, 22, 19],
[20, 19, 23],
[23, 24, 20],
[23, 25, 24],
[19, 22, 26],
[26, 27, 19],
[23, 28, 29],
[23, 29, 30],
[25, 23, 30],
[29, 51, 52],
[52, 30, 29],
[27, 26, 69],
[69, 70, 27],
[70, 71, 72],
[72, 27, 70],
[72, 71, 73],
[51, 74, 72],
[52, 51, 72],
[73, 52, 72],
[19, 27, 74],
[74, 28, 19],
[51, 29, 28],
[28, 74, 51],
[74, 27, 72],
[28, 23, 19]
],
"name": "lower chin"
},
{
"color": [215, 193, 179],
"faces": [
[21, 20, 24],
[24, 31, 21]
],
"name": "left lower snout"
},
{
"color": [215, 193, 179],
"faces": [
[69, 71, 70],
[71, 69, 75]
],
"name": "right lower snout"
},
{
"faces": [[31, 24, 18]],
"name": "left upper snout",
"gradient": "left-upper-snout-gradient"
},
{
"faces": [
[6, 5, 16],
[16, 17, 6]
],
"name": "left forehead",
"gradient": "left-forehead-gradient"
},
{
"faces": [
[24, 32, 33],
[33, 34, 24]
],
"name": "left lower cheek",
"gradient": "left-lower-cheek-gradient"
},
{
"faces": [[5, 4, 35]],
"name": "left top ear",
"gradient": "left-top-ear-gradient"
},
{
"faces": [[75, 68, 71]],
"name": "right upper snout",
"gradient": "right-upper-snout-gradient"
},
{
"faces": [
[58, 67, 40],
[40, 59, 58]
],
"name": "right forhead",
"gradient": "right-forehead-gradient"
},
{
"faces": [
[71, 76, 77],
[77, 78, 71]
],
"name": "right lower cheek",
"gradient": "right-lower-cheek-gradient"
},
{
"faces": [[24, 34, 18]],
"name": "left middle cheek",
"gradient": "left-middle-cheek-gradient"
},
{
"color": [35, 151, 119],
"faces": [
[16, 13, 12],
[12, 17, 16],
[13, 16, 11]
],
"name": "left above eye"
},
{
"faces": [[71, 68, 76]],
"name": "right middle cheek",
"gradient": "right-middle-cheek-gradient"
},
{
"color": [35, 151, 119],
"faces": [
[40, 67, 66],
[66, 65, 40],
[65, 64, 40]
],
"name": "right above eye"
},
{
"color": [22, 22, 22],
"faces": [
[36, 15, 37],
[37, 38, 36],
[31, 39, 22],
[22, 21, 31],
[31, 15, 36],
[36, 39, 31],
[75, 69, 26],
[26, 80, 75],
[75, 80, 38],
[38, 37, 75],
[38, 80, 39],
[39, 36, 38],
[39, 80, 26],
[26, 22, 39]
],
"name": "nose"
},
{
"faces": [
[17, 33, 10],
[17, 18, 34],
[34, 33, 17],
[10, 6, 17]
],
"name": "left upper cheek",
"gradient": "left-upper-cheek-gradient"
},
{
"faces": [
[11, 15, 31],
[31, 18, 11],
[18, 12, 11]
],
"name": "left below eye",
"gradient": "left-below-eye-gradient"
},
{
"faces": [
[14, 16, 40],
[40, 41, 14],
[59, 5, 35],
[35, 79, 59],
[14, 41, 37],
[37, 15, 14],
[5, 59, 40],
[40, 16, 5]
],
"name": "forehead",
"gradient": "forehead-gradient"
},
{
"faces": [
[67, 63, 77],
[67, 77, 76],
[76, 68, 67],
[63, 67, 58]
],
"name": "right upper cheek",
"gradient": "right-upper-cheek-gradient"
},
{
"faces": [
[64, 68, 75],
[75, 37, 64],
[68, 64, 66]
],
"name": "right below eye",
"gradient": "right-below-eye-gradient"
},
{
"faces": [
[35, 4, 42],
[4, 1, 42],
[42, 43, 44],
[44, 35, 42],
[45, 43, 42],
[42, 10, 45],
[30, 32, 24],
[24, 25, 30],
[30, 33, 32],
[33, 30, 10],
[44, 43, 46],
[43, 45, 47],
[47, 46, 43],
[48, 47, 45],
[45, 30, 48],
[30, 45, 10],
[49, 42, 0],
[8, 7, 42],
[50, 42, 7],
[50, 10, 42],
[1, 0, 42],
[42, 9, 8],
[42, 49, 9],
[79, 81, 57],
[57, 81, 56],
[82, 79, 35],
[35, 44, 82],
[81, 79, 82],
[82, 83, 81],
[84, 63, 81],
[81, 83, 84],
[44, 46, 85],
[85, 82, 44],
[52, 73, 71],
[71, 78, 52],
[52, 78, 77],
[77, 63, 52],
[82, 85, 83],
[83, 85, 86],
[86, 84, 83],
[87, 52, 84],
[84, 86, 87],
[52, 63, 84],
[88, 53, 81],
[62, 81, 60],
[89, 60, 81],
[89, 81, 63],
[56, 81, 53],
[81, 62, 61],
[81, 61, 88],
[48, 87, 86],
[86, 47, 48],
[47, 86, 85],
[85, 46, 47],
[48, 30, 52],
[52, 87, 48]
],
"name": "back",
"gradient": "back-gradient"
},
{
"faces": [[57, 59, 79]],
"name": "right top ear",
"gradient": "right-top-ear-gradient"
},
{
"faces": [[64, 41, 40]],
"name": "right inner upper eye",
"gradient": "right-inner-eye-gradient"
}
],
"gradients": {
"forehead-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#23FE4A"
},
{
"offset": 1,
"stop-color": "#BAD8EF"
}
],
"x1": "50%",
"y1": "20.232164948453608%",
"x2": "50%",
"y2": "74.87123711340206%",
"gradientUnits": "userSpaceOnUse"
},
"right-upper-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#20B475"
},
{
"offset": 1,
"stop-color": "#70BDCE"
}
],
"x1": "77.19501199040768%",
"y1": "44.68123711340206%",
"x2": "77.19501199040768%",
"y2": "68.2861855670103%",
"gradientUnits": "userSpaceOnUse"
},
"left-upper-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#20B475"
},
{
"offset": 1,
"stop-color": "#70BDCE"
}
],
"x1": "22.820719424460435%",
"y1": "44.68123711340206%",
"x2": "22.820719424460435%",
"y2": "68.2861855670103%",
"gradientUnits": "userSpaceOnUse"
},
"right-below-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#85BBE1"
},
{
"offset": 1,
"stop-color": "#7CCACA"
}
],
"x1": "54.34676258992806%",
"y1": "68.26917525773197%",
"x2": "65.3001438848921%",
"y2": "68.26917525773197%",
"gradientUnits": "userSpaceOnUse"
},
"left-below-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#7CCACA"
},
{
"offset": 1,
"stop-color": "#85BBE1"
}
],
"x1": "34.731223021582736%",
"y1": "68.26917525773197%",
"x2": "45.65323741007194%",
"y2": "68.26917525773197%",
"gradientUnits": "userSpaceOnUse"
},
"right-ear-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#074F1E"
},
{
"offset": 0.4286,
"stop-color": "#05541C"
},
{
"offset": 0.62,
"stop-color": "#006A13"
},
{
"offset": 1,
"stop-color": "#007514"
}
],
"x1": "61.443549160671466%",
"y1": "44.51773195876289%",
"x2": "93.802206235012%",
"y2": "24.439072164948456%",
"gradientUnits": "userSpaceOnUse"
},
"left-ear-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#074F1E"
},
{
"offset": 0.4286,
"stop-color": "#05541C"
},
{
"offset": 0.62,
"stop-color": "#006A13"
},
{
"offset": 1,
"stop-color": "#007514"
}
],
"x1": "32.7432134292566%",
"y1": "44.33329896907217%",
"x2": "4.853390887290168%",
"y2": "19.18181443298969%",
"gradientUnits": "userSpaceOnUse"
},
"left-outer-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#43C3A2"
},
{
"offset": 1,
"stop-color": "#4FAFC0"
},
{
"offset": 1,
"stop-color": "#4FAFC0"
}
],
"x1": "27.575539568345324%",
"y1": "60.519278350515464%",
"x2": "34.982350119904076%",
"y2": "60.519278350515464%",
"gradientUnits": "userSpaceOnUse"
},
"right-outer-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#4FAFC0"
},
{
"offset": 1,
"stop-color": "#43C3A2"
}
],
"x1": "65.01764988009592%",
"y1": "60.519278350515464%",
"x2": "72.42446043165468%",
"y2": "60.519278350515464%",
"gradientUnits": "userSpaceOnUse"
},
"right-lower-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#59ADCB"
},
{
"offset": 1,
"stop-color": "#436CC8"
}
],
"x1": "77.93247002398083%",
"y1": "68.15113402061857%",
"x2": "77.93247002398083%",
"y2": "86.82577319587631%",
"gradientUnits": "userSpaceOnUse"
},
"left-lower-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#59ADCB"
},
{
"offset": 1,
"stop-color": "#436CC8"
}
],
"x1": "22.083165467625896%",
"y1": "68.15113402061857%",
"x2": "22.083165467625896%",
"y2": "86.82577319587631%",
"gradientUnits": "userSpaceOnUse"
},
"left-top-ear-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#0ED54A"
},
{
"offset": 1,
"stop-color": "#0ED54A"
}
],
"x1": "13.954513189448441%",
"y1": "22.055670103092787%",
"x2": "44.146762589928066%",
"y2": "22.055670103092787%",
"gradientUnits": "userSpaceOnUse"
},
"right-top-ear-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#0ED54A"
},
{
"offset": 1,
"stop-color": "#11EB36"
}
],
"x1": "55.85333333333334%",
"y1": "22.055670103092787%",
"x2": "86.04556354916068%",
"y2": "22.055670103092787%",
"gradientUnits": "userSpaceOnUse"
},
"left-forehead-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#15DC5D"
},
{
"offset": 1,
"stop-color": "#48CA9F"
}
],
"x1": "36.3947242206235%",
"y1": "34.11144329896908%",
"x2": "36.3947242206235%",
"y2": "53.59649484536083%",
"gradientUnits": "userSpaceOnUse"
},
"right-forehead-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#15DC5D"
},
{
"offset": 1,
"stop-color": "#48CA9F"
}
],
"x1": "63.6052757793765%",
"y1": "34.11144329896908%",
"x2": "63.6052757793765%",
"y2": "53.59649484536083%",
"gradientUnits": "userSpaceOnUse"
},
"left-upper-snout-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#54A8CF"
},
{
"offset": 1,
"stop-color": "#5393E3"
}
],
"x1": "38.829736211031175%",
"y1": "68.28865979381443%",
"x2": "38.829736211031175%",
"y2": "81.55670103092784%",
"gradientUnits": "userSpaceOnUse"
},
"right-upper-snout-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#54A8CF"
},
{
"offset": 1,
"stop-color": "#5393E3"
}
],
"x1": "61.17026378896883%",
"y1": "68.28865979381443%",
"x2": "61.17026378896883%",
"y2": "81.55670103092784%",
"gradientUnits": "userSpaceOnUse"
},
"right-middle-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#32819D"
},
{
"offset": 0.3363,
"stop-color": "#447DCD"
}
],
"x1": "69.9137649880096%",
"y1": "51.063505154639174%",
"x2": "69.9137649880096%",
"y2": "85.81041237113402%",
"gradientUnits": "userSpaceOnUse"
},
"left-middle-cheek-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#32819D"
},
{
"offset": 0.3363,
"stop-color": "#447DCD"
}
],
"x1": "30.086330935251798%",
"y1": "68.15092783505153%",
"x2": "30.086330935251798%",
"y2": "81.55752577319588%",
"gradientUnits": "userSpaceOnUse"
},
"right-inner-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#53A9CB"
},
{
"offset": 1,
"stop-color": "#44C0A6"
}
],
"x1": "55.38244604316547%",
"y1": "74.87123711340206%",
"x2": "55.38244604316547%",
"y2": "53.59659793814433%",
"gradientUnits": "userSpaceOnUse"
},
"left-inner-eye-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#53A9CB"
},
{
"offset": 1,
"stop-color": "#44C0A6"
}
],
"x1": "43.58177458033573%",
"y1": "64.2339175257732%",
"x2": "45.65323741007194%",
"y2": "64.2339175257732%",
"gradientUnits": "userSpaceOnUse"
},
"back-gradient": {
"type": "linear",
"stops": [
{
"stop-color": "#27FC4E"
},
{
"offset": 1,
"stop-color": "#446FC9"
}
],
"x1": "50%",
"y1": "0%",
"x2": "50%",
"y2": "100%",
"gradientUnits": "userSpaceOnUse"
}
},
"positions": [
[111.024597, 52.604599, 46.225899],
[114.025002, 87.673302, 58.9818],
[66.192001, 80.898003, 55.394299],
[72.113297, 35.491798, 30.871401],
[97.804497, 116.560997, 73.978798],
[16.7623, 58.010899, 58.078201],
[52.608898, 30.3641, 42.556099],
[106.881401, 31.945499, 46.9133],
[113.484596, 38.6049, 49.121498],
[108.6633, 43.2332, 46.315399],
[101.216599, 15.9822, 46.308201],
[16.6605, -16.2883, 93.618698],
[40.775002, -10.2288, 85.276398],
[23.926901, -2.5103, 86.736504],
[11.1691, -7.0037, 99.377602],
[9.5692, -34.393902, 141.671997],
[12.596, 7.1655, 88.740997],
[61.180901, 8.8142, 76.996803],
[39.719501, -28.927099, 88.963799],
[13.7962, -68.575699, 132.057007],
[15.2674, -62.32, 129.688004],
[14.8446, -52.6096, 140.113007],
[12.8917, -49.771599, 144.740997],
[35.604198, -71.758003, 81.063904],
[47.462502, -68.606102, 63.369701],
[38.2486, -64.730202, 38.909901],
[-12.8917, -49.771599, 144.740997],
[-13.7962, -68.575699, 132.057007],
[17.802099, -71.758003, 81.063904],
[19.1243, -69.0168, 49.420101],
[38.2486, -66.275597, 17.776199],
[12.8928, -36.703499, 141.671997],
[109.283997, -93.589897, 27.824301],
[122.117996, -36.8894, 35.025002],
[67.7668, -30.197001, 78.417801],
[33.180698, 101.851997, 25.3186],
[9.4063, -35.589802, 150.722],
[-9.5692, -34.393902, 141.671997],
[-9.4063, -35.589802, 150.722],
[11.4565, -37.899399, 150.722],
[-12.596, 7.1655, 88.740997],
[-11.1691, -7.0037, 99.377602],
[70.236504, 62.836201, -3.9475],
[47.263401, 54.293999, -27.414801],
[28.7302, 91.731102, -24.972601],
[69.167603, 6.5862, -12.7757],
[28.7302, 49.1003, -48.3596],
[31.903, 5.692, -47.821999],
[35.075802, -34.432899, -16.280899],
[115.284103, 48.681499, 48.684101],
[110.842796, 28.4821, 49.176201],
[-19.1243, -69.0168, 49.420101],
[-38.2486, -66.275597, 17.776199],
[-111.024597, 52.604599, 46.225899],
[-72.113297, 35.491798, 30.871401],
[-66.192001, 80.898003, 55.394299],
[-114.025002, 87.673302, 58.9818],
[-97.804497, 116.560997, 73.978798],
[-52.608898, 30.3641, 42.556099],
[-16.7623, 58.010899, 58.078201],
[-106.881401, 31.945499, 46.9133],
[-108.6633, 43.2332, 46.315399],
[-113.484596, 38.6049, 49.121498],
[-101.216599, 15.9822, 46.308201],
[-16.6605, -16.2883, 93.618698],
[-23.926901, -2.5103, 86.736504],
[-40.775002, -10.2288, 85.276398],
[-61.180901, 8.8142, 76.996803],
[-39.719501, -28.927099, 88.963799],
[-14.8446, -52.6096, 140.113007],
[-15.2674, -62.32, 129.688004],
[-47.462502, -68.606102, 63.369701],
[-35.604198, -71.758003, 81.063904],
[-38.2486, -64.730202, 38.909901],
[-17.802099, -71.758003, 81.063904],
[-12.8928, -36.703499, 141.671997],
[-67.7668, -30.197001, 78.417801],
[-122.117996, -36.8894, 35.025002],
[-109.283997, -93.589897, 27.824301],
[-33.180698, 101.851997, 25.3186],
[-11.4565, -37.899399, 150.722],
[-70.236504, 62.836201, -3.9475],
[-28.7302, 91.731102, -24.972601],
[-47.263401, 54.293999, -27.414801],
[-69.167603, 6.5862, -12.7757],
[-28.7302, 49.1003, -48.3596],
[-31.903, 5.692, -47.821999],
[-35.075802, -34.432899, -16.280899],
[-115.284103, 48.681499, 48.684101],
[-110.842796, 28.4821, 49.176201]
]
}

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 847 B

After

Width:  |  Height:  |  Size: 847 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 172 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,7 @@
{
"applications": {
"gecko": {
"id": "webextension-beta@metamask.io"
}
}
}

View File

@ -0,0 +1,824 @@
{
"chunks": [
{
"faces": [
[0, 1, 2],
[2, 3, 0],
[4, 5, 2],
[6, 3, 2],
[2, 5, 6],
[7, 8, 9],
[10, 3, 6],
[10, 50, 7],
[7, 3, 10],
[7, 9, 3],
[49, 0, 9],
[3, 9, 0],
[2, 1, 4]
],
"name": "left ear",
"gradient": "left-ear-gradient"
},
{
"faces": [
[53, 54, 55],
[55, 56, 53],
[57, 56, 55],
[58, 59, 55],
[55, 54, 58],
[60, 61, 62],
[63, 58, 54],
[63, 60, 89],
[60, 63, 54],
[60, 54, 61],
[88, 61, 53],
[54, 53, 61],
[55, 59, 57]
],
"name": "right ear",
"gradient": "right-ear-gradient"
},
{
"color": [22, 22, 22],
"faces": [[11, 12, 13]],
"name": "left eye"
},
{
"color": [22, 22, 22],
"faces": [[64, 65, 66]],
"name": "right eye"
},
{
"faces": [
[14, 15, 11],
[11, 16, 14]
],
"name": "left inner eye",
"gradient": "left-inner-eye-gradient"
},
{
"faces": [[17, 12, 18]],
"name": "left outer eye",
"gradient": "left-outer-eye-gradient"
},
{
"faces": [[41, 64, 37]],
"name": "right lower inner eye",
"gradient": "right-inner-eye-gradient"
},
{
"faces": [[67, 68, 66]],
"name": "right outer eye",
"gradient": "right-outer-eye-gradient"
},
{
"color": [223, 117, 84],
"faces": [
[19, 20, 21],
[21, 22, 19],
[20, 19, 23],
[23, 24, 20],
[23, 25, 24],
[19, 22, 26],
[26, 27, 19],
[23, 28, 29],
[23, 29, 30],
[25, 23, 30],
[29, 51, 52],
[52, 30, 29],
[27, 26, 69],
[69, 70, 27],
[70, 71, 72],
[72, 27, 70],
[72, 71, 73],
[51, 74, 72],
[52, 51, 72],
[73, 52, 72],
[19, 27, 74],
[74, 28, 19],
[51, 29, 28],
[28, 74, 51],
[74, 27, 72],
[28, 23, 19]
],
"name": "lower chin"
},
{
"color": [255, 159, 90],
"faces": [
[21, 20, 24],
[24, 31, 21]
],
"name": "left lower snout"
},
{
"color": [255, 159, 90],
"faces": [
[69, 71, 70],
[71, 69, 75]
],
"name": "right lower snout"
},
{
"color": [147, 131, 250],
"faces": [[31, 24, 18]],
"name": "left upper snout"
},
{
"faces": [
[6, 5, 16],
[16, 17, 6]
],
"name": "left forehead",
"gradient": "left-forehead-gradient"
},
{
"faces": [
[24, 32, 33],
[33, 34, 24]
],
"name": "left lower cheek",
"gradient": "left-lower-cheek-gradient"
},
{
"faces": [[5, 4, 35]],
"name": "left top ear",
"gradient": "left-top-ear-gradient"
},
{
"color": [147, 131, 250],
"faces": [[75, 68, 71]],
"name": "right upper snout"
},
{
"faces": [
[58, 67, 40],
[40, 59, 58]
],
"name": "right forhead",
"gradient": "right-forehead-gradient"
},
{
"faces": [
[71, 76, 77],
[77, 78, 71]
],
"name": "right lower cheek",
"gradient": "right-lower-cheek-gradient"
},
{
"faces": [[24, 34, 18]],
"name": "left middle cheek",
"gradient": "left-middle-cheek-gradient"
},
{
"color": [156, 90, 221],
"faces": [
[16, 13, 12],
[12, 17, 16],
[13, 16, 11]
],
"name": "left above eye"
},
{
"faces": [[71, 68, 76]],
"name": "right middle cheek",
"gradient": "right-middle-cheek-gradient"
},
{
"color": [156, 90, 221],
"faces": [
[40, 67, 66],
[66, 65, 40],
[65, 64, 40]
],
"name": "right above eye"
},
{
"color": [22, 22, 22],
"faces": [
[36, 15, 37],
[37, 38, 36],
[31, 39, 22],
[22, 21, 31],
[31, 15, 36],
[36, 39, 31],
[75, 69, 26],
[26, 80, 75],
[75, 80, 38],
[38, 37, 75],
[38, 80, 39],
[39, 36, 38],
[39, 80, 26],
[26, 22, 39]
],
"name": "nose"
},
{
"faces": [
[17, 33, 10],
[17, 18, 34],
[34, 33, 17],
[10, 6, 17]
],
"name": "left upper cheek",
"gradient": "left-upper-cheek-gradient"
},
{
"faces": [
[11, 15, 31],
[31, 18, 11],
[18, 12, 11]
],
"name": "left below eye",
"gradient": "left-below-eye-gradient"
},
{
"faces": [
[14, 16, 40],
[40, 41, 14],
[59, 5, 35],
[35, 79, 59],
[14, 41, 37],
[37, 15, 14],
[5, 59, 40],
[40, 16, 5]
],
"name": "forehead",
"gradient": "forehead-gradient"
},
{
"faces": [
[67, 63, 77],
[67, 77, 76],
[76, 68, 67],
[63, 67, 58]
],
"name": "right upper cheek",
"gradient": "right-upper-cheek-gradient"
},
{
"faces": [
[64, 68, 75],
[75, 37, 64],
[68, 64, 66]
],
"name": "right below eye",
"gradient": "right-below-eye-gradient"
},
{
"faces": [
[35, 4, 42],
[4, 1, 42],
[42, 43, 44],
[44, 35, 42],
[45, 43, 42],
[42, 10, 45],
[30, 32, 24],
[24, 25, 30],
[30, 33, 32],
[33, 30, 10],
[44, 43, 46],
[43, 45, 47],
[47, 46, 43],
[48, 47, 45],
[45, 30, 48],
[30, 45, 10],
[49, 42, 0],
[8, 7, 42],
[50, 42, 7],
[50, 10, 42],
[1, 0, 42],
[42, 9, 8],
[42, 49, 9],
[79, 81, 57],
[57, 81, 56],
[82, 79, 35],
[35, 44, 82],
[81, 79, 82],
[82, 83, 81],
[84, 63, 81],
[81, 83, 84],
[44, 46, 85],
[85, 82, 44],
[52, 73, 71],
[71, 78, 52],
[52, 78, 77],
[77, 63, 52],
[82, 85, 83],
[83, 85, 86],
[86, 84, 83],
[87, 52, 84],
[84, 86, 87],
[52, 63, 84],
[88, 53, 81],
[62, 81, 60],
[89, 60, 81],
[89, 81, 63],
[56, 81, 53],
[81, 62, 61],
[81, 61, 88],
[48, 87, 86],
[86, 47, 48],
[47, 86, 85],
[85, 46, 47],
[48, 30, 52],
[52, 87, 48]
],
"name": "back",
"gradient": "back-gradient"
},
{
"faces": [[57, 59, 79]],
"name": "right top ear",
"gradient": "right-top-ear-gradient"
},
{
"faces": [[64, 41, 40]],
"name": "right inner upper eye",
"gradient": "right-inner-eye-gradient"
}
],
"gradients": {
"left-inner-eye-gradient": {
"type": "linear",
"x1": "41.97721822541966%",
"y1": "67.79239690721649%",
"x2": "44.56654676258992%",
"y2": "67.79239690721649%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BA86F3"
},
{
"offset": "0.5281",
"stop-color": "#B786F4"
},
{
"offset": "0.8987",
"stop-color": "#AE86F5"
},
{
"offset": "1",
"stop-color": "#AA86F6"
}
]
},
"right-inner-eye-gradient": {
"type": "linear",
"x1": "56.72805755395684%",
"y1": "81.08904639175258%",
"x2": "56.72805755395684%",
"y2": "54.49574742268041%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BA86F3"
},
{
"offset": "0.5281",
"stop-color": "#B786F4"
},
{
"offset": "0.8987",
"stop-color": "#AE86F5"
},
{
"offset": "1",
"stop-color": "#AA86F6"
}
]
},
"left-middle-cheek-gradient": {
"type": "linear",
"x1": "25.107913669064747%",
"y1": "72.68865979381442%",
"x2": "25.107913669064747%",
"y2": "89.44690721649484%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#6848BA"
},
{
"offset": "0.3363",
"stop-color": "#6356D5"
}
]
},
"right-middle-cheek-gradient": {
"type": "linear",
"x1": "74.89208633093526%",
"y1": "51.32938144329896%",
"x2": "74.89208633093526%",
"y2": "94.76301546391753%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#6848BA"
},
{
"offset": "0.3363",
"stop-color": "#6356D5"
}
]
},
"right-forehead-gradient": {
"type": "linear",
"x1": "67.00671462829736%",
"y1": "30.13930412371134%",
"x2": "67.00671462829736%",
"y2": "54.49561855670103%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#DC69E6"
},
{
"offset": "1",
"stop-color": "#C289F3"
}
]
},
"left-forehead-gradient": {
"type": "linear",
"x1": "32.99340527577938%",
"y1": "30.13930412371134%",
"x2": "32.99340527577938%",
"y2": "54.49561855670103%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#DC69E6"
},
{
"offset": "1",
"stop-color": "#C289F3"
}
]
},
"right-top-ear-gradient": {
"type": "linear",
"x1": "95.056858513189448%",
"y1": "15.06958762886598%",
"x2": "57.31654676258992%",
"y2": "15.06958762886598%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BB65ED"
},
{
"offset": "1",
"stop-color": "#E560E3"
}
]
},
"left-top-ear-gradient": {
"type": "linear",
"x1": "4.943141486810552%",
"y1": "15.06958762886598%",
"x2": "42.68345323741008%",
"y2": "15.06958762886598%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BB65ED"
},
{
"offset": "1",
"stop-color": "#E560E3"
}
]
},
"left-lower-cheek-gradient": {
"type": "linear",
"x1": "15.103956834532372%",
"y1": "72.6889175257732%",
"x2": "15.103956834532372%",
"y2": "96.03221649484537%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#906EF7"
},
{
"offset": "1",
"stop-color": "#575ADE"
}
]
},
"right-lower-cheek-gradient": {
"type": "linear",
"x1": "84.91570743405276%",
"y1": "72.6889175257732%",
"x2": "84.91570743405276%",
"y2": "96.03221649484537%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#906EF7"
},
{
"offset": "1",
"stop-color": "#575ADE"
}
]
},
"right-outer-eye-gradient": {
"type": "linear",
"x1": "68.7720623501199%",
"y1": "63.14909793814433%",
"x2": "78.03057553956835%",
"y2": "63.14909793814433%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BA86F3"
},
{
"offset": "0.5281",
"stop-color": "#B786F4"
},
{
"offset": "0.8987",
"stop-color": "#AE86F5"
},
{
"offset": "1",
"stop-color": "#AA86F6"
}
]
},
"left-outer-eye-gradient": {
"type": "linear",
"x1": "21.969424460431654%",
"y1": "63.14909793814433%",
"x2": "31.227937649880094%",
"y2": "63.14909793814433%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#BA86F3"
},
{
"offset": "0.5281",
"stop-color": "#B786F4"
},
{
"offset": "0.8987",
"stop-color": "#AE86F5"
},
{
"offset": "1",
"stop-color": "#AA86F6"
}
]
},
"left-ear-gradient": {
"type": "linear",
"x1": "50%",
"y1": "30%",
"x2": "4%",
"y2": "4%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#541758"
},
{
"offset": "0.4286",
"stop-color": "#4F206C"
},
{
"offset": "0.62",
"stop-color": "#4D2577"
},
{
"offset": "1",
"stop-color": "#8B45B6"
}
]
},
"right-ear-gradient": {
"type": "linear",
"x1": "50%",
"y1": "30%",
"x2": "96%",
"y2": "4%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#541758"
},
{
"offset": "0.4286",
"stop-color": "#4F206C"
},
{
"offset": "0.62",
"stop-color": "#4D2577"
},
{
"offset": "1",
"stop-color": "#8B45B6"
}
]
},
"left-below-eye-gradient": {
"type": "linear",
"x1": "30.914028776978412%",
"y1": "72.83646907216496%",
"x2": "44.56654676258992%",
"y2": "72.83646907216496%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#C8A8F7"
},
{
"offset": "1",
"stop-color": "#BAAAFB"
}
]
},
"right-below-eye-gradient": {
"type": "linear",
"x1": "55.43345323741007%",
"y1": "72.83646907216496%",
"x2": "69.12517985611511%",
"y2": "72.83646907216496%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#C8A8F7"
},
{
"offset": "1",
"stop-color": "#BAAAFB"
}
]
},
"left-upper-cheek-gradient": {
"type": "linear",
"x1": "16.02589928057554%",
"y1": "43.35154639175258%",
"x2": "16.02589928057554%",
"y2": "72.85773195876288%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#B65FE5"
},
{
"offset": "1",
"stop-color": "#ADA2FC"
}
]
},
"right-upper-cheek-gradient": {
"type": "linear",
"x1": "83.99364508393285%",
"y1": "43.35154639175258%",
"x2": "83.99364508393285%",
"y2": "72.85773195876288%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#B65FE5"
},
{
"offset": "1",
"stop-color": "#ADA2FC"
}
]
},
"forehead-gradient": {
"type": "linear",
"x1": "50%",
"y1": "12.790180412371136%",
"x2": "50%",
"y2": "81.08904639175258%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#FB7FE4"
},
{
"offset": "1",
"stop-color": "#BCABFB"
}
]
},
"back-gradient": {
"type": "linear",
"x1": "50%",
"y1": "12.790180412371136%",
"x2": "50%",
"y2": "81.08904639175258%",
"gradientUnits": "userSpaceOnUse",
"stops": [
{
"stop-color": "#FB7FE4"
},
{
"offset": "1",
"stop-color": "#5C5CE0"
}
]
}
},
"positions": [
[111.024597, 52.604599, 46.225899],
[114.025002, 87.673302, 58.9818],
[66.192001, 80.898003, 55.394299],
[72.113297, 35.491798, 30.871401],
[97.804497, 116.560997, 73.978798],
[16.7623, 58.010899, 58.078201],
[52.608898, 30.3641, 42.556099],
[106.881401, 31.945499, 46.9133],
[113.484596, 38.6049, 49.121498],
[108.6633, 43.2332, 46.315399],
[101.216599, 15.9822, 46.308201],
[16.6605, -16.2883, 93.618698],
[40.775002, -10.2288, 85.276398],
[23.926901, -2.5103, 86.736504],
[11.1691, -7.0037, 99.377602],
[9.5692, -34.393902, 141.671997],
[12.596, 7.1655, 88.740997],
[61.180901, 8.8142, 76.996803],
[39.719501, -28.927099, 88.963799],
[13.7962, -68.575699, 132.057007],
[15.2674, -62.32, 129.688004],
[14.8446, -52.6096, 140.113007],
[12.8917, -49.771599, 144.740997],
[35.604198, -71.758003, 81.063904],
[47.462502, -68.606102, 63.369701],
[38.2486, -64.730202, 38.909901],
[-12.8917, -49.771599, 144.740997],
[-13.7962, -68.575699, 132.057007],
[17.802099, -71.758003, 81.063904],
[19.1243, -69.0168, 49.420101],
[38.2486, -66.275597, 17.776199],
[12.8928, -36.703499, 141.671997],
[109.283997, -93.589897, 27.824301],
[122.117996, -36.8894, 35.025002],
[67.7668, -30.197001, 78.417801],
[33.180698, 101.851997, 25.3186],
[9.4063, -35.589802, 150.722],
[-9.5692, -34.393902, 141.671997],
[-9.4063, -35.589802, 150.722],
[11.4565, -37.899399, 150.722],
[-12.596, 7.1655, 88.740997],
[-11.1691, -7.0037, 99.377602],
[70.236504, 62.836201, -3.9475],
[47.263401, 54.293999, -27.414801],
[28.7302, 91.731102, -24.972601],
[69.167603, 6.5862, -12.7757],
[28.7302, 49.1003, -48.3596],
[31.903, 5.692, -47.821999],
[35.075802, -34.432899, -16.280899],
[115.284103, 48.681499, 48.684101],
[110.842796, 28.4821, 49.176201],
[-19.1243, -69.0168, 49.420101],
[-38.2486, -66.275597, 17.776199],
[-111.024597, 52.604599, 46.225899],
[-72.113297, 35.491798, 30.871401],
[-66.192001, 80.898003, 55.394299],
[-114.025002, 87.673302, 58.9818],
[-97.804497, 116.560997, 73.978798],
[-52.608898, 30.3641, 42.556099],
[-16.7623, 58.010899, 58.078201],
[-106.881401, 31.945499, 46.9133],
[-108.6633, 43.2332, 46.315399],
[-113.484596, 38.6049, 49.121498],
[-101.216599, 15.9822, 46.308201],
[-16.6605, -16.2883, 93.618698],
[-23.926901, -2.5103, 86.736504],
[-40.775002, -10.2288, 85.276398],
[-61.180901, 8.8142, 76.996803],
[-39.719501, -28.927099, 88.963799],
[-14.8446, -52.6096, 140.113007],
[-15.2674, -62.32, 129.688004],
[-47.462502, -68.606102, 63.369701],
[-35.604198, -71.758003, 81.063904],
[-38.2486, -64.730202, 38.909901],
[-17.802099, -71.758003, 81.063904],
[-12.8928, -36.703499, 141.671997],
[-67.7668, -30.197001, 78.417801],
[-122.117996, -36.8894, 35.025002],
[-109.283997, -93.589897, 27.824301],
[-33.180698, 101.851997, 25.3186],
[-11.4565, -37.899399, 150.722],
[-70.236504, 62.836201, -3.9475],
[-28.7302, 91.731102, -24.972601],
[-47.263401, 54.293999, -27.414801],
[-69.167603, 6.5862, -12.7757],
[-28.7302, 49.1003, -48.3596],
[-31.903, 5.692, -47.821999],
[-35.075802, -34.432899, -16.280899],
[-115.284103, 48.681499, 48.684101],
[-110.842796, 28.4821, 49.176201]
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 902 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,102 @@
<svg width="35" height="33" viewBox="0 0 35 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M19.5935 17.7525L20.1702 9.81845L22.5182 4.16699H12.481L14.8289 9.81845L15.4056 17.7525L15.5841 20.2551L15.5979 26.4153H19.4013L19.415 20.2551L19.5935 17.7525Z" fill="url(#paint0_linear)"/>
<path d="M32.3221 16.2259L25.1408 14.1221L27.3103 17.4084L24.0698 23.7337L28.3539 23.6787H34.725L32.3221 16.2259Z" fill="url(#paint1_linear)"/>
<path d="M9.8585 14.1221L2.67726 16.2259L0.288086 23.6787H6.65921L10.9295 23.7337L7.68903 17.4084L9.8585 14.1221Z" fill="url(#paint2_linear)"/>
<path d="M20.3076 21.7263L19.4014 26.4152L20.0604 26.8689L24.0699 23.7338L24.1934 20.585L20.3076 21.7263Z" fill="#ACACAC"/>
<path d="M10.8193 20.585L10.9292 23.7338L14.9386 26.8689L15.5977 26.4152L14.6914 21.7263L10.8193 20.585Z" fill="#ACACAC"/>
<path d="M33.8468 10.8216L35.0002 5.21144L33.2701 0L20.061 9.81785L24.9904 14.2455L32.3227 16.2256L33.9018 14.3693L33.2152 13.8742L34.3137 12.8705L33.4761 12.2104L34.5746 11.3717L33.8468 10.8216Z" fill="url(#paint3_linear)"/>
<path d="M1.15317 10.8216L-0.000226729 5.21144L1.72986 0L14.939 9.81785L10.0096 14.2455L2.67729 16.2256L1.09824 14.3693L1.78479 13.8742L0.686317 12.8705L1.5239 12.2104L0.425429 11.3717L1.15317 10.8216Z" fill="url(#paint4_linear)"/>
<path d="M7.68945 17.4082L10.8201 20.5846L10.9299 23.7334L7.68945 17.4082Z" fill="#8D8D8D"/>
<path d="M27.3108 17.4082L24.0703 23.7334L24.1939 20.5846L27.3108 17.4082Z" fill="#8D8D8D"/>
<path d="M24.7153 29.137L20.0605 26.8682L20.4313 29.907L20.3901 31.1858L24.7153 29.137Z" fill="#FF9F5A"/>
<path d="M10.2842 29.137L14.6094 31.1858L14.5819 29.907L14.9389 26.8682L10.2842 29.137Z" fill="#FF9F5A"/>
<path d="M28.354 23.6787L24.7153 29.1377L32.5007 31.2827L34.7251 23.6787H28.354Z" fill="url(#paint5_linear)"/>
<path d="M0.288574 23.6787L2.49925 31.2827L10.2847 29.1377L6.6597 23.6787H0.288574Z" fill="url(#paint6_linear)"/>
<path d="M1.72998 0L14.9391 9.81785L12.8657 4.1664L1.72998 0Z" fill="#757575"/>
<path d="M22.1344 4.1664L20.061 9.81785L33.2701 0L22.1344 4.1664Z" fill="#757575"/>
<path d="M9.85844 14.1213L7.68896 17.4077L15.4057 17.7514L14.9389 9.81738L9.85844 14.1213Z" fill="url(#paint7_linear)"/>
<path d="M25.141 14.1213L20.0606 9.81738L19.5938 17.7514L27.3105 17.4077L25.141 14.1213Z" fill="url(#paint8_linear)"/>
<path d="M10.2842 29.1373L14.9389 26.8685L10.9295 23.7334L10.2842 29.1373Z" fill="url(#paint9_linear)"/>
<path d="M20.061 26.8685L24.7158 29.1373L24.0704 23.7334L20.061 26.8685Z" fill="url(#paint10_linear)"/>
<path d="M24.0698 23.7337L24.7152 29.1377L28.3539 23.6787L24.0698 23.7337Z" fill="url(#paint11_linear)"/>
<path d="M10.9297 23.7337L10.2843 29.1377L6.64565 23.6787L10.9297 23.7337Z" fill="url(#paint12_linear)"/>
<path d="M27.3105 17.4082L19.5938 17.752L20.3078 21.7259L21.4474 19.3333L24.1936 20.5846L27.3105 17.4082Z" fill="#666666"/>
<path d="M10.8196 20.5846L13.552 19.3333L14.6917 21.7259L15.4057 17.752L7.68896 17.4082L10.8196 20.5846Z" fill="#666666"/>
<path d="M20.308 21.7258L19.4155 20.2545L19.594 17.752L20.308 21.7258Z" fill="#8D8D8D"/>
<path d="M14.6919 21.7258L15.4059 17.752L15.5844 20.2545L14.6919 21.7258Z" fill="#8D8D8D"/>
<path d="M19.4156 20.2549L20.3081 21.7262L19.4019 26.4151L19.4156 20.2549Z" fill="#8D8D8D"/>
<path d="M15.5844 20.2549L15.5981 26.4151L14.6919 21.7262L15.5844 20.2549Z" fill="#8D8D8D"/>
<path d="M20.4148 31.169L20.4313 29.9067L20.088 29.6042H14.9115L14.5819 29.9067L14.6094 31.1855L10.2842 29.1367L11.7946 30.3743L14.8703 32.5056H20.1292L23.2049 30.3743L24.7153 29.1367L20.4148 31.169Z" fill="#DF7554"/>
<path d="M20.0607 26.8688L19.4016 26.415H15.5981L14.939 26.8688L14.582 29.9077L14.9116 29.6052H20.0881L20.4314 29.9077L20.0607 26.8688Z" fill="#161616" stroke="#161616" stroke-width="0.0657594" stroke-miterlimit="10" stroke-linejoin="round"/>
<path d="M21.4478 19.333L20.3081 21.7256L24.1939 20.5843L21.4478 19.333Z" fill="#161616"/>
<path d="M13.5523 19.333L14.6919 21.7256L10.8198 20.5843L13.5523 19.333Z" fill="#161616"/>
<path d="M33.9015 14.3693L33.215 13.8742L34.3135 12.8705L33.4759 12.2104L34.5743 11.3717L33.8466 10.8216L35 5.21144L33.2699 0L22.1342 4.1664H12.8658L1.73009 0L0 5.21144L1.16712 10.8216L0.425657 11.3717L1.52413 12.2104L0.686544 12.8705L1.78501 13.8742L1.09847 14.3693L2.67752 16.2256L0.288348 23.6783L2.49902 31.2824L10.2844 29.1373L14.9392 26.8685L14.5588 29.9431L14.9117 29.6186L20.0883 29.6048L20.4315 29.9073L20.0608 26.8685L24.7156 29.1373L32.501 31.2824L34.7254 23.6783L32.3225 16.2256L33.9015 14.3693Z" fill="url(#paint13_linear)" fill-opacity="0.1" style="mix-blend-mode:color-dodge"/>
<path d="M33.9015 14.3693L33.215 13.8742L34.3135 12.8705L33.4759 12.2104L34.5743 11.3717L33.8466 10.8216L35 5.21144L33.2699 0L22.1342 4.1664H12.8658L1.73009 0L0 5.21144L1.16712 10.8216L0.425657 11.3717L1.52413 12.2104L0.686544 12.8705L1.78501 13.8742L1.09847 14.3693L2.67752 16.2256L0.288348 23.6783L2.49902 31.2824L10.2844 29.1373L14.9392 26.8685L15.5845 26.4009H16.5457H18.468H19.4292L20.0608 26.8685L24.7156 29.1373L32.501 31.2824L34.7254 23.6783L32.3225 16.2256L33.9015 14.3693Z" fill="url(#paint14_radial)" style="mix-blend-mode:overlay"/>
</g>
<defs>
<linearGradient id="paint0_linear" x1="17.4996" y1="4.16699" x2="17.4996" y2="26.4153" gradientUnits="userSpaceOnUse">
<stop stop-color="#8F8F8F"/>
<stop offset="1" stop-color="#AEAEAE"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="29.3974" y1="14.1221" x2="29.3974" y2="23.7337" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="5.6088" y1="14.1221" x2="5.6088" y2="23.7337" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint3_linear" x1="24.3725" y1="13.4755" x2="36.9499" y2="3.6613" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint4_linear" x1="10.6275" y1="13.4755" x2="-1.94986" y2="3.6613" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint5_linear" x1="29.7202" y1="23.6787" x2="29.7202" y2="31.2827" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint6_linear" x1="5.28661" y1="23.6787" x2="5.28661" y2="31.2827" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint7_linear" x1="11.5473" y1="9.81738" x2="11.5473" y2="17.7514" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint8_linear" x1="23.4521" y1="9.81738" x2="23.4521" y2="17.7514" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint9_linear" x1="12.6116" y1="32.3962" x2="12.6116" y2="-3.33511" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint10_linear" x1="22.3884" y1="32.3962" x2="22.3884" y2="-3.33511" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint11_linear" x1="26.2118" y1="16.7209" x2="26.2118" y2="30.8694" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint12_linear" x1="8.78767" y1="16.7209" x2="8.78767" y2="30.8694" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint13_linear" x1="17.4382" y1="4.12515" x2="17.4382" y2="34.1012" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</linearGradient>
<radialGradient id="paint14_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.4382 3.50637) rotate(90) scale(28.876 32.3077)">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</radialGradient>
<clipPath id="clip0">
<rect width="35" height="32.5749" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -0,0 +1,116 @@
<svg width="1532" height="247" viewBox="0 0 1532 247" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M148.354 134.603L152.72 74.4431L170.498 31.5908H94.5015L112.279 74.4431L116.645 134.603L117.997 153.579L118.101 200.289H146.898L147.002 153.579L148.354 134.603Z" fill="url(#paint0_linear)"/>
<path d="M244.727 123.029L190.355 107.077L206.781 131.996L182.246 179.957L214.682 179.54H262.92L244.727 123.029Z" fill="url(#paint1_linear)"/>
<path d="M74.6449 107.077L20.2726 123.029L2.18311 179.54H50.4216L82.7539 179.957L58.2188 131.996L74.6449 107.077Z" fill="url(#paint2_linear)"/>
<path d="M153.76 164.735L146.899 200.289L151.889 203.729L182.246 179.957L183.182 156.081L153.76 164.735Z" fill="#ACACAC"/>
<path d="M81.9224 156.081L82.7541 179.957L113.111 203.729L118.101 200.289L111.24 164.735L81.9224 156.081Z" fill="#ACACAC"/>
<path d="M256.267 82.0553L265 39.5158L251.9 0L151.889 74.4441L189.211 108.017L244.727 123.031L256.683 108.955L251.485 105.202L259.802 97.5906L253.46 92.5859L261.777 86.2258L256.267 82.0553Z" fill="url(#paint3_linear)"/>
<path d="M8.73266 82.0553L-0.000171178 39.5158L13.0991 0L113.111 74.4441L75.7884 108.017L20.2725 123.031L8.31682 108.955L13.5149 105.202L5.19795 97.5906L11.5396 92.5859L3.22265 86.2258L8.73266 82.0553Z" fill="url(#paint4_linear)"/>
<path d="M58.2188 131.997L81.9222 156.082L82.7539 179.958L58.2188 131.997Z" fill="#8D8D8D"/>
<path d="M206.781 131.997L182.246 179.958L183.181 156.082L206.781 131.997Z" fill="#8D8D8D"/>
<path d="M187.132 220.935L151.889 203.731L154.696 226.774L154.384 236.47L187.132 220.935Z" fill="#FF9F5A"/>
<path d="M77.8677 220.934L110.616 236.469L110.408 226.773L113.111 203.73L77.8677 220.934Z" fill="#FF9F5A"/>
<path d="M214.682 179.542L187.132 220.935L246.079 237.2L262.921 179.542H214.682Z" fill="url(#paint5_linear)"/>
<path d="M2.18311 179.542L18.921 237.2L77.8677 220.935L50.4216 179.542H2.18311Z" fill="url(#paint6_linear)"/>
<path d="M13.0991 0L113.111 74.4441L97.4126 31.5918L13.0991 0Z" fill="#757575"/>
<path d="M167.587 31.5918L151.889 74.4441L251.9 0L167.587 31.5918Z" fill="#757575"/>
<path d="M74.6448 107.079L58.2188 131.998L116.646 134.604L113.111 74.4443L74.6448 107.079Z" fill="url(#paint7_linear)"/>
<path d="M190.355 107.079L151.889 74.4443L148.354 134.604L206.781 131.998L190.355 107.079Z" fill="url(#paint8_linear)"/>
<path d="M77.8677 220.934L113.111 203.731L82.7539 179.959L77.8677 220.934Z" fill="url(#paint9_linear)"/>
<path d="M151.889 203.731L187.132 220.934L182.246 179.959L151.889 203.731Z" fill="url(#paint10_linear)"/>
<path d="M182.246 179.958L187.132 220.934L214.682 179.541L182.246 179.958Z" fill="url(#paint11_linear)"/>
<path d="M82.7539 179.958L77.8677 220.934L50.3177 179.541L82.7539 179.958Z" fill="url(#paint12_linear)"/>
<path d="M206.781 131.997L148.354 134.604L153.761 164.736L162.389 146.594L183.182 156.082L206.781 131.997Z" fill="#666666"/>
<path d="M81.9222 156.082L102.611 146.594L111.24 164.736L116.646 134.604L58.2188 131.997L81.9222 156.082Z" fill="#666666"/>
<path d="M153.76 164.736L147.002 153.579L148.354 134.604L153.76 164.736Z" fill="#8D8D8D"/>
<path d="M111.24 164.736L116.646 134.604L117.997 153.579L111.24 164.736Z" fill="#8D8D8D"/>
<path d="M147.003 153.58L153.76 164.736L146.899 200.29L147.003 153.58Z" fill="#8D8D8D"/>
<path d="M117.997 153.58L118.101 200.29L111.24 164.736L117.997 153.58Z" fill="#8D8D8D"/>
<path d="M154.571 236.345L154.696 226.773L152.097 224.48H112.903L110.408 226.773L110.616 236.47L77.8677 220.935L89.3035 230.318L112.591 246.479H152.409L175.696 230.318L187.132 220.935L154.571 236.345Z" fill="#DF7554"/>
<path d="M151.889 203.731L146.899 200.29H118.101L113.111 203.731L110.408 226.773L112.903 224.479H152.097L154.696 226.773L151.889 203.731Z" fill="#161616" stroke="#161616" stroke-width="0.0657594" stroke-miterlimit="10" stroke-linejoin="round"/>
<path d="M162.389 146.594L153.76 164.736L183.182 156.082L162.389 146.594Z" fill="#161616"/>
<path d="M102.611 146.594L111.24 164.736L81.9224 156.082L102.611 146.594Z" fill="#161616"/>
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L110.231 227.044L112.903 224.583L152.097 224.479L154.696 226.773L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint13_linear)" fill-opacity="0.1" style="mix-blend-mode:color-dodge"/>
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L117.997 200.186H125.275H139.829H147.107L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint14_radial)" style="mix-blend-mode:overlay"/>
</g>
<path d="M1166.17 120.732C1159.42 116.127 1151.72 112.742 1144.35 108.759C1139.75 106.295 1134.84 103.855 1130.83 100.47C1124.08 94.944 1125.3 83.5933 1132.67 78.6647C1143.11 71.9189 1160.02 75.603 1161.86 89.7167C1161.86 90.0154 1162.16 90.339 1162.48 90.339H1178.15C1178.44 90.339 1178.77 90.0403 1178.77 89.7167C1177.85 79.8844 1174.16 71.9189 1167.41 66.6916C1160.94 61.763 1153.27 59 1145.27 59C1104.11 59 1100.42 102.611 1122.54 116.426C1125 117.969 1146.82 129.021 1154.49 133.626C1162.16 138.53 1164.62 147.143 1161.24 153.888C1158.17 160.335 1150.18 164.318 1142.48 164.019C1133.89 163.721 1127.12 158.792 1124.98 151.424C1124.68 150.204 1124.36 147.74 1124.36 146.52C1124.36 146.222 1124.06 145.898 1123.73 145.898H1106.85C1106.55 145.898 1106.23 146.197 1106.23 146.52C1106.23 158.792 1109.29 165.563 1117.58 171.711C1125.25 177.536 1133.87 180 1142.78 180C1165.82 180 1177.8 166.807 1180.26 153.291C1182.13 140.372 1178.14 128.399 1166.17 120.732Z" fill="#24292E"/>
<path d="M433.192 61.4634H425.522H417.229C416.931 61.4634 416.607 61.7621 416.607 61.7621L402.786 107.514C402.487 108.136 401.865 108.136 401.566 107.514L388.044 61.7621C388.044 61.4634 387.745 61.4634 387.421 61.4634H379.129H371.758H361.623C361.299 61.4634 361 61.7621 361 62.0608V178.754C361 179.053 361.299 179.377 361.623 179.377H378.506C378.805 179.377 379.129 179.078 379.129 178.754V90.0145C379.129 89.3922 380.05 89.0935 380.349 89.7158L394.469 135.766L395.39 138.828C395.39 139.126 395.689 139.126 396.013 139.126H408.912C409.211 139.126 409.535 138.828 409.535 138.828L410.456 135.766L424.576 89.7158C424.576 89.0935 425.497 89.4171 425.497 90.0145V178.754C425.497 179.053 425.796 179.377 426.12 179.377H443.003C443.302 179.377 443.626 179.078 443.626 178.754V62.0608C443.626 61.7621 443.327 61.4385 443.003 61.4385L433.192 61.4634Z" fill="#24292E"/>
<path d="M907.506 61.4634C907.207 61.4634 906.883 61.7621 906.883 61.7621L893.063 107.514C892.764 108.136 892.141 108.136 891.842 107.514L878.022 61.7621C878.022 61.4634 877.723 61.4634 877.399 61.4634H851.6C851.301 61.4634 850.978 61.7621 850.978 62.0857V178.779C850.978 179.078 851.276 179.402 851.6 179.402H868.484C868.783 179.402 869.106 179.103 869.106 178.779V90.0145C869.106 89.3922 870.028 89.0935 870.327 89.7158L884.446 135.766L885.368 138.828C885.368 139.126 885.667 139.126 885.99 139.126H898.89C899.189 139.126 899.512 138.828 899.512 138.828L900.434 135.766L914.553 89.7158C914.852 89.0935 915.773 89.0935 915.773 90.0145V178.754C915.773 179.053 916.072 179.377 916.396 179.377H933.28C933.579 179.377 933.902 179.078 933.902 178.754V62.0608C933.902 61.7621 933.604 61.4385 933.28 61.4385L907.506 61.4634Z" fill="#24292E"/>
<path d="M690.01 61.4648H658.359H641.475H610.148C609.849 61.4648 609.525 61.7635 609.525 62.0871V76.5245C609.525 76.8232 609.824 77.1468 610.148 77.1468H640.877V178.482C640.877 178.781 641.176 179.104 641.5 179.104H658.384C658.683 179.104 659.006 178.806 659.006 178.482V77.1219H689.711C690.01 77.1219 690.333 76.8232 690.333 76.4996V62.0623C690.632 61.7635 690.309 61.4648 690.01 61.4648Z" fill="#24292E"/>
<path d="M789.545 179.377H804.91C805.208 179.377 805.532 179.078 805.532 178.456L773.582 61.4637C773.582 61.165 773.284 61.165 772.96 61.165H767.133H756.699H751.17C750.872 61.165 750.548 61.4637 750.548 61.4637L718.897 178.456C718.897 178.755 719.196 179.377 719.52 179.377H734.884C735.183 179.377 735.507 179.078 735.507 179.078L744.721 145.001C744.721 144.703 745.02 144.703 745.343 144.703H779.435C779.733 144.703 780.057 145.001 780.057 145.001L789.271 179.078C788.922 179.054 789.246 179.377 789.545 179.377ZM749.004 127.776L761.281 82.3232C761.58 81.7009 762.202 81.7009 762.501 82.3232L774.778 127.776C774.778 128.075 774.479 128.697 774.155 128.697H749.577C749.303 128.398 749.004 128.1 749.004 127.776Z" fill="#24292E"/>
<path d="M1051.59 179.377H1066.96C1067.26 179.377 1067.58 179.078 1067.58 178.456L1035.63 61.4637C1035.63 61.165 1035.33 61.165 1035.01 61.165H1029.18H1018.75H1012.92C1012.62 61.165 1012.3 61.4637 1012.3 61.4637L980.646 178.456C980.646 178.755 980.944 179.377 981.268 179.377H996.633C996.932 179.377 997.255 179.078 997.255 179.078L1006.47 145.001C1006.47 144.703 1006.77 144.703 1007.09 144.703H1041.18C1041.48 144.703 1041.81 145.001 1041.81 145.001L1051.02 179.078C1050.97 179.054 1051.27 179.377 1051.59 179.377ZM1011.03 127.776L1023.3 82.3232C1023.6 81.7009 1024.22 81.7009 1024.52 82.3232L1036.8 127.776C1036.8 128.075 1036.5 128.697 1036.18 128.697H1011.6C1011.35 128.398 1011.03 128.1 1011.03 127.776Z" fill="#24292E"/>
<path d="M512.132 162.176V125.934C512.132 125.635 512.431 125.311 512.755 125.311H557.604C557.903 125.311 558.227 125.013 558.227 124.689V110.252C558.227 109.953 557.928 109.629 557.604 109.629H512.755C512.456 109.629 512.132 109.331 512.132 109.007V77.7427C512.132 77.444 512.431 77.1204 512.755 77.1204H563.755C564.054 77.1204 564.377 76.8217 564.377 76.4981V62.0608C564.377 61.7621 564.079 61.4385 563.755 61.4385H512.132H494.626C494.327 61.4385 494.003 61.7372 494.003 62.0608V77.0955V109.331V124.988V162.45V178.406C494.003 178.705 494.302 179.028 494.626 179.028H512.132H566.195C566.494 179.028 566.818 178.73 566.818 178.406V163.048C566.818 162.749 566.519 162.425 566.195 162.425H512.755C512.456 162.799 512.132 162.475 512.132 162.176Z" fill="#24292E"/>
<path d="M1320.39 178.132L1262.02 117.645C1261.72 117.346 1261.72 117.022 1262.02 116.724L1314.54 62.3844C1314.83 62.0857 1314.54 61.4634 1314.24 61.4634H1292.72C1292.42 61.4634 1292.42 61.4634 1292.42 61.7621L1247.87 108.136C1247.57 108.435 1246.95 108.136 1246.95 107.837V62.0608C1246.95 61.7621 1246.65 61.4385 1246.33 61.4385H1229.44C1229.15 61.4385 1228.82 61.7372 1228.82 62.0608V178.754C1228.82 179.053 1229.12 179.377 1229.44 179.377H1246.33C1246.63 179.377 1246.95 179.078 1246.95 178.754V127.178C1246.95 126.556 1247.57 126.257 1247.87 126.88L1298.25 179.078L1298.55 179.377H1320.06C1320.69 179.377 1320.99 178.754 1320.39 178.132Z" fill="#24292E"/>
<rect x="1338" y="27" width="194" height="84" rx="12" fill="#24292E"/>
<path d="M1358 50.6376H1380.89V58.7139H1366.33V65.515H1377.7V73.5913H1366.33V88.3624H1358V50.6376Z" fill="white"/>
<path d="M1386.55 50.6376H1394.87V80.2861H1410.28V88.3624H1386.55V50.6376Z" fill="white"/>
<path d="M1427.39 50.6376H1434.94L1450.86 88.3624H1442.17L1438.87 80.3924H1423.46L1420.16 88.3624H1411.47L1427.39 50.6376ZM1426.45 73.0599H1435.83L1431.16 61.7425L1426.45 73.0599Z" fill="white"/>
<path d="M1464.82 89C1461.85 89 1459.18 88.4155 1456.81 87.2466C1454.43 86.0422 1452.51 84.3774 1451.04 82.252L1457.43 76.7793C1458.34 78.1253 1459.51 79.188 1460.94 79.9673C1462.38 80.7112 1463.77 81.0831 1465.13 81.0831C1466.53 81.0831 1467.63 80.7997 1468.43 80.233C1469.24 79.6308 1469.64 78.8692 1469.64 77.9482C1469.64 76.9918 1469.24 76.1594 1468.43 75.451C1467.67 74.7425 1466.34 74.0695 1464.45 73.4319L1461.83 72.5286C1458.8 71.5014 1456.47 70.0845 1454.87 68.2779C1453.26 66.436 1452.46 64.2221 1452.46 61.6362C1452.46 59.7943 1452.77 58.1649 1453.4 56.748C1454.06 55.2956 1454.95 54.0736 1456.07 53.0817C1457.22 52.0899 1458.59 51.3283 1460.16 50.797C1461.73 50.2657 1463.44 50 1465.29 50C1467.56 50 1469.69 50.3896 1471.68 51.1689C1473.67 51.9482 1475.54 53.2943 1477.29 55.2071L1471.84 61.0518C1470.97 59.9891 1469.97 59.2098 1468.85 58.7139C1467.74 58.1826 1466.58 57.9169 1465.4 57.9169C1464.84 57.9169 1464.28 57.97 1463.72 58.0763C1463.2 58.1826 1462.73 58.3597 1462.31 58.6076C1461.89 58.8556 1461.54 59.1567 1461.26 59.5109C1461.01 59.8651 1460.89 60.2902 1460.89 60.7861C1460.89 61.8134 1461.35 62.6281 1462.25 63.2302C1463.2 63.797 1464.66 64.4346 1466.65 65.1431L1469.27 66.0995C1471.96 67.0913 1474.11 68.5082 1475.72 70.3501C1477.36 72.1921 1478.16 74.53 1478.13 77.3638C1478.13 79.064 1477.79 80.6403 1477.13 82.0926C1476.47 83.5095 1475.54 84.7316 1474.35 85.7589C1473.2 86.7861 1471.81 87.5831 1470.16 88.1499C1468.56 88.7166 1466.78 89 1464.82 89Z" fill="white"/>
<path d="M1492.17 71.4659V88.3624H1483.9V50.6376H1492.17V66.4183L1504.8 50.6376H1515.01L1500.35 68.7561L1518 88.3624H1507.31L1492.17 71.4659Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear" x1="132.5" y1="31.5908" x2="132.5" y2="200.289" gradientUnits="userSpaceOnUse">
<stop stop-color="#8F8F8F"/>
<stop offset="1" stop-color="#AEAEAE"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="222.583" y1="107.077" x2="222.583" y2="179.957" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="42.4685" y1="107.077" x2="42.4685" y2="179.957" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint3_linear" x1="184.533" y1="102.178" x2="279.867" y2="27.8973" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint4_linear" x1="80.4668" y1="102.178" x2="-14.8672" y2="27.8973" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint5_linear" x1="225.027" y1="179.542" x2="225.027" y2="237.2" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint6_linear" x1="40.0254" y1="179.542" x2="40.0254" y2="237.2" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint7_linear" x1="87.4322" y1="74.4443" x2="87.4322" y2="134.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint8_linear" x1="177.568" y1="74.4443" x2="177.568" y2="134.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint9_linear" x1="95.4893" y1="245.645" x2="95.4893" y2="-25.2885" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint10_linear" x1="169.51" y1="245.645" x2="169.51" y2="-25.2885" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint11_linear" x1="198.464" y1="126.784" x2="198.464" y2="234.065" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint12_linear" x1="66.5358" y1="126.784" x2="66.5358" y2="234.065" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint13_linear" x1="132.032" y1="31.279" x2="132.032" y2="258.573" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</linearGradient>
<radialGradient id="paint14_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(132.032 26.5872) rotate(90) scale(218.953 244.615)">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</radialGradient>
<clipPath id="clip0">
<rect width="265" height="247" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,116 @@
<svg width="1532" height="247" viewBox="0 0 1532 247" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M148.354 134.603L152.72 74.4431L170.498 31.5908H94.5015L112.279 74.4431L116.645 134.603L117.997 153.579L118.101 200.289H146.898L147.002 153.579L148.354 134.603Z" fill="url(#paint0_linear)"/>
<path d="M244.727 123.029L190.355 107.077L206.781 131.996L182.246 179.957L214.682 179.54H262.92L244.727 123.029Z" fill="url(#paint1_linear)"/>
<path d="M74.6449 107.077L20.2726 123.029L2.18311 179.54H50.4216L82.7539 179.957L58.2188 131.996L74.6449 107.077Z" fill="url(#paint2_linear)"/>
<path d="M153.76 164.735L146.899 200.289L151.889 203.729L182.246 179.957L183.182 156.081L153.76 164.735Z" fill="#ACACAC"/>
<path d="M81.9224 156.081L82.7541 179.957L113.111 203.729L118.101 200.289L111.24 164.735L81.9224 156.081Z" fill="#ACACAC"/>
<path d="M256.267 82.0553L265 39.5158L251.9 0L151.889 74.4441L189.211 108.017L244.727 123.031L256.683 108.955L251.485 105.202L259.802 97.5906L253.46 92.5859L261.777 86.2258L256.267 82.0553Z" fill="url(#paint3_linear)"/>
<path d="M8.73266 82.0553L-0.000171178 39.5158L13.0991 0L113.111 74.4441L75.7884 108.017L20.2725 123.031L8.31682 108.955L13.5149 105.202L5.19795 97.5906L11.5396 92.5859L3.22265 86.2258L8.73266 82.0553Z" fill="url(#paint4_linear)"/>
<path d="M58.2188 131.997L81.9222 156.082L82.7539 179.958L58.2188 131.997Z" fill="#8D8D8D"/>
<path d="M206.781 131.997L182.246 179.958L183.181 156.082L206.781 131.997Z" fill="#8D8D8D"/>
<path d="M187.132 220.935L151.889 203.731L154.696 226.774L154.384 236.47L187.132 220.935Z" fill="#FF9F5A"/>
<path d="M77.8677 220.934L110.616 236.469L110.408 226.773L113.111 203.73L77.8677 220.934Z" fill="#FF9F5A"/>
<path d="M214.682 179.542L187.132 220.935L246.079 237.2L262.921 179.542H214.682Z" fill="url(#paint5_linear)"/>
<path d="M2.18311 179.542L18.921 237.2L77.8677 220.935L50.4216 179.542H2.18311Z" fill="url(#paint6_linear)"/>
<path d="M13.0991 0L113.111 74.4441L97.4126 31.5918L13.0991 0Z" fill="#757575"/>
<path d="M167.587 31.5918L151.889 74.4441L251.9 0L167.587 31.5918Z" fill="#757575"/>
<path d="M74.6448 107.079L58.2188 131.998L116.646 134.604L113.111 74.4443L74.6448 107.079Z" fill="url(#paint7_linear)"/>
<path d="M190.355 107.079L151.889 74.4443L148.354 134.604L206.781 131.998L190.355 107.079Z" fill="url(#paint8_linear)"/>
<path d="M77.8677 220.934L113.111 203.731L82.7539 179.959L77.8677 220.934Z" fill="url(#paint9_linear)"/>
<path d="M151.889 203.731L187.132 220.934L182.246 179.959L151.889 203.731Z" fill="url(#paint10_linear)"/>
<path d="M182.246 179.958L187.132 220.934L214.682 179.541L182.246 179.958Z" fill="url(#paint11_linear)"/>
<path d="M82.7539 179.958L77.8677 220.934L50.3177 179.541L82.7539 179.958Z" fill="url(#paint12_linear)"/>
<path d="M206.781 131.997L148.354 134.604L153.761 164.736L162.389 146.594L183.182 156.082L206.781 131.997Z" fill="#666666"/>
<path d="M81.9222 156.082L102.611 146.594L111.24 164.736L116.646 134.604L58.2188 131.997L81.9222 156.082Z" fill="#666666"/>
<path d="M153.76 164.736L147.002 153.579L148.354 134.604L153.76 164.736Z" fill="#8D8D8D"/>
<path d="M111.24 164.736L116.646 134.604L117.997 153.579L111.24 164.736Z" fill="#8D8D8D"/>
<path d="M147.003 153.58L153.76 164.736L146.899 200.29L147.003 153.58Z" fill="#8D8D8D"/>
<path d="M117.997 153.58L118.101 200.29L111.24 164.736L117.997 153.58Z" fill="#8D8D8D"/>
<path d="M154.571 236.345L154.696 226.773L152.097 224.48H112.903L110.408 226.773L110.616 236.47L77.8677 220.935L89.3035 230.318L112.591 246.479H152.409L175.696 230.318L187.132 220.935L154.571 236.345Z" fill="#DF7554"/>
<path d="M151.889 203.731L146.899 200.29H118.101L113.111 203.731L110.408 226.773L112.903 224.479H152.097L154.696 226.773L151.889 203.731Z" fill="#161616" stroke="#161616" stroke-width="0.0657594" stroke-miterlimit="10" stroke-linejoin="round"/>
<path d="M162.389 146.594L153.76 164.736L183.182 156.082L162.389 146.594Z" fill="#161616"/>
<path d="M102.611 146.594L111.24 164.736L81.9224 156.082L102.611 146.594Z" fill="#161616"/>
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L110.231 227.044L112.903 224.583L152.097 224.479L154.696 226.773L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint13_linear)" fill-opacity="0.1" style="mix-blend-mode:color-dodge"/>
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L117.997 200.186H125.275H139.829H147.107L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint14_radial)" style="mix-blend-mode:overlay"/>
</g>
<path d="M1166.17 120.732C1159.42 116.127 1151.72 112.742 1144.35 108.759C1139.75 106.295 1134.84 103.855 1130.83 100.47C1124.08 94.944 1125.3 83.5933 1132.67 78.6647C1143.11 71.9189 1160.02 75.603 1161.86 89.7167C1161.86 90.0154 1162.16 90.339 1162.48 90.339H1178.15C1178.44 90.339 1178.77 90.0403 1178.77 89.7167C1177.85 79.8844 1174.16 71.9189 1167.41 66.6916C1160.94 61.763 1153.27 59 1145.27 59C1104.11 59 1100.42 102.611 1122.54 116.426C1125 117.969 1146.82 129.021 1154.49 133.626C1162.16 138.53 1164.62 147.143 1161.24 153.888C1158.17 160.335 1150.18 164.318 1142.48 164.019C1133.89 163.721 1127.12 158.792 1124.98 151.424C1124.68 150.204 1124.36 147.74 1124.36 146.52C1124.36 146.222 1124.06 145.898 1123.73 145.898H1106.85C1106.55 145.898 1106.23 146.197 1106.23 146.52C1106.23 158.792 1109.29 165.563 1117.58 171.711C1125.25 177.536 1133.87 180 1142.78 180C1165.82 180 1177.8 166.807 1180.26 153.291C1182.13 140.372 1178.14 128.399 1166.17 120.732Z" fill="white"/>
<path d="M433.192 61.4634H425.522H417.229C416.931 61.4634 416.607 61.7621 416.607 61.7621L402.786 107.514C402.487 108.136 401.865 108.136 401.566 107.514L388.044 61.7621C388.044 61.4634 387.745 61.4634 387.421 61.4634H379.129H371.758H361.623C361.299 61.4634 361 61.7621 361 62.0608V178.754C361 179.053 361.299 179.377 361.623 179.377H378.506C378.805 179.377 379.129 179.078 379.129 178.754V90.0145C379.129 89.3922 380.05 89.0935 380.349 89.7158L394.469 135.766L395.39 138.828C395.39 139.126 395.689 139.126 396.013 139.126H408.912C409.211 139.126 409.535 138.828 409.535 138.828L410.456 135.766L424.576 89.7158C424.576 89.0935 425.497 89.4171 425.497 90.0145V178.754C425.497 179.053 425.796 179.377 426.12 179.377H443.003C443.302 179.377 443.626 179.078 443.626 178.754V62.0608C443.626 61.7621 443.327 61.4385 443.003 61.4385L433.192 61.4634Z" fill="white"/>
<path d="M907.506 61.4634C907.207 61.4634 906.883 61.7621 906.883 61.7621L893.063 107.514C892.764 108.136 892.141 108.136 891.842 107.514L878.022 61.7621C878.022 61.4634 877.723 61.4634 877.399 61.4634H851.6C851.301 61.4634 850.978 61.7621 850.978 62.0857V178.779C850.978 179.078 851.276 179.402 851.6 179.402H868.484C868.783 179.402 869.106 179.103 869.106 178.779V90.0145C869.106 89.3922 870.028 89.0935 870.327 89.7158L884.446 135.766L885.368 138.828C885.368 139.126 885.667 139.126 885.99 139.126H898.89C899.189 139.126 899.512 138.828 899.512 138.828L900.434 135.766L914.553 89.7158C914.852 89.0935 915.773 89.0935 915.773 90.0145V178.754C915.773 179.053 916.072 179.377 916.396 179.377H933.28C933.579 179.377 933.902 179.078 933.902 178.754V62.0608C933.902 61.7621 933.604 61.4385 933.28 61.4385L907.506 61.4634Z" fill="white"/>
<path d="M690.01 61.4648H658.359H641.475H610.148C609.849 61.4648 609.525 61.7635 609.525 62.0871V76.5245C609.525 76.8232 609.824 77.1468 610.148 77.1468H640.877V178.482C640.877 178.781 641.176 179.104 641.5 179.104H658.384C658.683 179.104 659.006 178.806 659.006 178.482V77.1219H689.711C690.01 77.1219 690.333 76.8232 690.333 76.4996V62.0623C690.632 61.7635 690.309 61.4648 690.01 61.4648Z" fill="white"/>
<path d="M789.545 179.377H804.91C805.208 179.377 805.532 179.078 805.532 178.456L773.582 61.4637C773.582 61.165 773.284 61.165 772.96 61.165H767.133H756.699H751.17C750.872 61.165 750.548 61.4637 750.548 61.4637L718.897 178.456C718.897 178.755 719.196 179.377 719.52 179.377H734.884C735.183 179.377 735.507 179.078 735.507 179.078L744.721 145.001C744.721 144.703 745.02 144.703 745.343 144.703H779.435C779.733 144.703 780.057 145.001 780.057 145.001L789.271 179.078C788.922 179.054 789.246 179.377 789.545 179.377ZM749.004 127.776L761.281 82.3232C761.58 81.7009 762.202 81.7009 762.501 82.3232L774.778 127.776C774.778 128.075 774.479 128.697 774.155 128.697H749.577C749.303 128.398 749.004 128.1 749.004 127.776Z" fill="white"/>
<path d="M1051.59 179.377H1066.96C1067.26 179.377 1067.58 179.078 1067.58 178.456L1035.63 61.4637C1035.63 61.165 1035.33 61.165 1035.01 61.165H1029.18H1018.75H1012.92C1012.62 61.165 1012.3 61.4637 1012.3 61.4637L980.646 178.456C980.646 178.755 980.944 179.377 981.268 179.377H996.633C996.932 179.377 997.255 179.078 997.255 179.078L1006.47 145.001C1006.47 144.703 1006.77 144.703 1007.09 144.703H1041.18C1041.48 144.703 1041.81 145.001 1041.81 145.001L1051.02 179.078C1050.97 179.054 1051.27 179.377 1051.59 179.377ZM1011.03 127.776L1023.3 82.3232C1023.6 81.7009 1024.22 81.7009 1024.52 82.3232L1036.8 127.776C1036.8 128.075 1036.5 128.697 1036.18 128.697H1011.6C1011.35 128.398 1011.03 128.1 1011.03 127.776Z" fill="white"/>
<path d="M512.132 162.176V125.934C512.132 125.635 512.431 125.311 512.755 125.311H557.604C557.903 125.311 558.227 125.013 558.227 124.689V110.252C558.227 109.953 557.928 109.629 557.604 109.629H512.755C512.456 109.629 512.132 109.331 512.132 109.007V77.7427C512.132 77.444 512.431 77.1204 512.755 77.1204H563.755C564.054 77.1204 564.377 76.8217 564.377 76.4981V62.0608C564.377 61.7621 564.079 61.4385 563.755 61.4385H512.132H494.626C494.327 61.4385 494.003 61.7372 494.003 62.0608V77.0955V109.331V124.988V162.45V178.406C494.003 178.705 494.302 179.028 494.626 179.028H512.132H566.195C566.494 179.028 566.818 178.73 566.818 178.406V163.048C566.818 162.749 566.519 162.425 566.195 162.425H512.755C512.456 162.799 512.132 162.475 512.132 162.176Z" fill="white"/>
<path d="M1320.39 178.132L1262.02 117.645C1261.72 117.346 1261.72 117.022 1262.02 116.724L1314.54 62.3844C1314.83 62.0857 1314.54 61.4634 1314.24 61.4634H1292.72C1292.42 61.4634 1292.42 61.4634 1292.42 61.7621L1247.87 108.136C1247.57 108.435 1246.95 108.136 1246.95 107.837V62.0608C1246.95 61.7621 1246.65 61.4385 1246.33 61.4385H1229.44C1229.15 61.4385 1228.82 61.7372 1228.82 62.0608V178.754C1228.82 179.053 1229.12 179.377 1229.44 179.377H1246.33C1246.63 179.377 1246.95 179.078 1246.95 178.754V127.178C1246.95 126.556 1247.57 126.257 1247.87 126.88L1298.25 179.078L1298.55 179.377H1320.06C1320.69 179.377 1320.99 178.754 1320.39 178.132Z" fill="white"/>
<rect x="1338" y="27" width="194" height="84" rx="12" fill="#24292E"/>
<path d="M1358 50.6376H1380.89V58.7139H1366.33V65.515H1377.7V73.5913H1366.33V88.3624H1358V50.6376Z" fill="white"/>
<path d="M1386.55 50.6376H1394.87V80.2861H1410.28V88.3624H1386.55V50.6376Z" fill="white"/>
<path d="M1427.39 50.6376H1434.94L1450.86 88.3624H1442.17L1438.87 80.3924H1423.46L1420.16 88.3624H1411.47L1427.39 50.6376ZM1426.45 73.0599H1435.83L1431.16 61.7425L1426.45 73.0599Z" fill="white"/>
<path d="M1464.82 89C1461.85 89 1459.18 88.4155 1456.81 87.2466C1454.43 86.0422 1452.51 84.3774 1451.04 82.252L1457.43 76.7793C1458.34 78.1253 1459.51 79.188 1460.94 79.9673C1462.38 80.7112 1463.77 81.0831 1465.13 81.0831C1466.53 81.0831 1467.63 80.7997 1468.43 80.233C1469.24 79.6308 1469.64 78.8692 1469.64 77.9482C1469.64 76.9918 1469.24 76.1594 1468.43 75.451C1467.67 74.7425 1466.34 74.0695 1464.45 73.4319L1461.83 72.5286C1458.8 71.5014 1456.47 70.0845 1454.87 68.2779C1453.26 66.436 1452.46 64.2221 1452.46 61.6362C1452.46 59.7943 1452.77 58.1649 1453.4 56.748C1454.06 55.2956 1454.95 54.0736 1456.07 53.0817C1457.22 52.0899 1458.59 51.3283 1460.16 50.797C1461.73 50.2657 1463.44 50 1465.29 50C1467.56 50 1469.69 50.3896 1471.68 51.1689C1473.67 51.9482 1475.54 53.2943 1477.29 55.2071L1471.84 61.0518C1470.97 59.9891 1469.97 59.2098 1468.85 58.7139C1467.74 58.1826 1466.58 57.9169 1465.4 57.9169C1464.84 57.9169 1464.28 57.97 1463.72 58.0763C1463.2 58.1826 1462.73 58.3597 1462.31 58.6076C1461.89 58.8556 1461.54 59.1567 1461.26 59.5109C1461.01 59.8651 1460.89 60.2902 1460.89 60.7861C1460.89 61.8134 1461.35 62.6281 1462.25 63.2302C1463.2 63.797 1464.66 64.4346 1466.65 65.1431L1469.27 66.0995C1471.96 67.0913 1474.11 68.5082 1475.72 70.3501C1477.36 72.1921 1478.16 74.53 1478.13 77.3638C1478.13 79.064 1477.79 80.6403 1477.13 82.0926C1476.47 83.5095 1475.54 84.7316 1474.35 85.7589C1473.2 86.7861 1471.81 87.5831 1470.16 88.1499C1468.56 88.7166 1466.78 89 1464.82 89Z" fill="white"/>
<path d="M1492.17 71.4659V88.3624H1483.9V50.6376H1492.17V66.4183L1504.8 50.6376H1515.01L1500.35 68.7561L1518 88.3624H1507.31L1492.17 71.4659Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear" x1="132.5" y1="31.5908" x2="132.5" y2="200.289" gradientUnits="userSpaceOnUse">
<stop stop-color="#8F8F8F"/>
<stop offset="1" stop-color="#AEAEAE"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="222.583" y1="107.077" x2="222.583" y2="179.957" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="42.4685" y1="107.077" x2="42.4685" y2="179.957" gradientUnits="userSpaceOnUse">
<stop stop-color="#696969"/>
<stop offset="1" stop-color="#A6A6A6"/>
</linearGradient>
<linearGradient id="paint3_linear" x1="184.533" y1="102.178" x2="279.867" y2="27.8973" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint4_linear" x1="80.4668" y1="102.178" x2="-14.8672" y2="27.8973" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B1B1B"/>
<stop offset="1" stop-color="#565656"/>
</linearGradient>
<linearGradient id="paint5_linear" x1="225.027" y1="179.542" x2="225.027" y2="237.2" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint6_linear" x1="40.0254" y1="179.542" x2="40.0254" y2="237.2" gradientUnits="userSpaceOnUse">
<stop stop-color="#787878"/>
<stop offset="1" stop-color="#5E5E5E"/>
</linearGradient>
<linearGradient id="paint7_linear" x1="87.4322" y1="74.4443" x2="87.4322" y2="134.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint8_linear" x1="177.568" y1="74.4443" x2="177.568" y2="134.604" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7A7A"/>
<stop offset="1" stop-color="#949494"/>
</linearGradient>
<linearGradient id="paint9_linear" x1="95.4893" y1="245.645" x2="95.4893" y2="-25.2885" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint10_linear" x1="169.51" y1="245.645" x2="169.51" y2="-25.2885" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A7C7D"/>
<stop offset="1" stop-color="#CECECF"/>
</linearGradient>
<linearGradient id="paint11_linear" x1="198.464" y1="126.784" x2="198.464" y2="234.065" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint12_linear" x1="66.5358" y1="126.784" x2="66.5358" y2="234.065" gradientUnits="userSpaceOnUse">
<stop stop-color="#3E3E3E"/>
<stop offset="1" stop-color="#616161"/>
</linearGradient>
<linearGradient id="paint13_linear" x1="132.032" y1="31.279" x2="132.032" y2="258.573" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</linearGradient>
<radialGradient id="paint14_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(132.032 26.5872) rotate(90) scale(218.953 244.615)">
<stop stop-color="#FF60DC"/>
<stop offset="1" stop-color="#6B71FF"/>
</radialGradient>
<clipPath id="clip0">
<rect width="265" height="247" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,26 @@
{
"browser_action": {
"default_icon": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"default_title": "MetaMask Flask"
},
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"48": "images/icon-48.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"name": "__MSG_appName__ Flask",
"short_name": "__MSG_appName__ Flask"
}

View File

@ -0,0 +1,7 @@
{
"applications": {
"gecko": {
"id": "webextension-flask@metamask.io"
}
}
}

View File

@ -1,3 +1,3 @@
<svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg">
<path d="M380.4 756.7c-4.5 0-9-1.7-12.4-5.1-6.8-6.8-6.8-17.9 0-24.7L594.9 500 368 273.2c-6.8-6.8-6.8-17.9 0-24.7s17.9-6.8 24.7 0L632 487.6c6.8 6.8 6.8 17.9 0 24.7L392.8 751.6c-3.5 3.4-7.9 5.1-12.4 5.1z" fill="#231f20"/>
<svg viewBox="0 0 10 14" fill="#6A737D" xmlns="http://www.w3.org/2000/svg">
<path d="M8.90625 7.53125C9.1875 7.25 9.1875 6.78125 8.90625 6.5L2.84375 0.40625C2.53125 0.125 2.0625 0.125 1.78125 0.40625L1.0625 1.125C0.78125 1.40625 0.78125 1.875 1.0625 2.1875L5.875 7L1.0625 11.8438C0.78125 12.1562 0.78125 12.625 1.0625 12.9062L1.78125 13.625C2.0625 13.9062 2.53125 13.9062 2.84375 13.625L8.90625 7.53125Z" fill="#6A737D"/>
</svg>

Before

Width:  |  Height:  |  Size: 296 B

After

Width:  |  Height:  |  Size: 429 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.75 8C15.75 3.75 12.25 0.25 8 0.25C3.71875 0.25 0.25 3.75 0.25 8C0.25 12.2812 3.71875 15.75 8 15.75C12.25 15.75 15.75 12.2812 15.75 8ZM7.09375 12.125C6.90625 12.3125 6.5625 12.3125 6.375 12.125L3.125 8.875C2.9375 8.6875 2.9375 8.34375 3.125 8.15625L3.84375 7.46875C4.03125 7.25 4.34375 7.25 4.53125 7.46875L6.75 9.65625L11.4375 4.96875C11.625 4.75 11.9375 4.75 12.125 4.96875L12.8438 5.65625C13.0312 5.84375 13.0312 6.1875 12.8438 6.375L7.09375 12.125Z" fill="#4CD964"/>
</svg>

After

Width:  |  Height:  |  Size: 586 B

View File

@ -0,0 +1,18 @@
<svg width="213" height="78" viewBox="0 0 213 78" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M103.333 32L109.425 37.29L103.333 42.58M96 37.21H109.5" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M202.536 76.19H119.162C118.68 76.1892 118.203 76.0934 117.757 75.9082C117.312 75.7229 116.908 75.4517 116.568 75.1102C116.227 74.7686 115.958 74.3634 115.774 73.9176C115.59 73.4718 115.496 72.9942 115.497 72.512V4.677C115.496 4.19492 115.59 3.7174 115.774 3.27171C115.958 2.82602 116.228 2.42089 116.568 2.07945C116.908 1.73801 117.313 1.46695 117.758 1.28173C118.203 1.09652 118.68 1.00079 119.162 1H202.536C203.018 1.00066 203.495 1.0963 203.941 1.28147C204.386 1.46663 204.79 1.73769 205.13 2.07916C205.471 2.42063 205.74 2.82581 205.924 3.27156C206.108 3.7173 206.202 4.19488 206.201 4.677V72.512C206.202 72.9942 206.108 73.4719 205.924 73.9177C205.741 74.3636 205.471 74.7689 205.131 75.1105C204.79 75.4521 204.386 75.7232 203.941 75.9084C203.496 76.0937 203.018 76.1893 202.536 76.19Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M202.536 76.19H119.162C118.68 76.1892 118.203 76.0934 117.757 75.9082C117.312 75.7229 116.908 75.4517 116.568 75.1102C116.227 74.7686 115.958 74.3634 115.774 73.9176C115.59 73.4718 115.496 72.9942 115.497 72.512V4.677C115.496 4.19492 115.59 3.7174 115.774 3.27171C115.958 2.82602 116.228 2.42089 116.568 2.07945C116.908 1.73801 117.313 1.46695 117.758 1.28173C118.203 1.09652 118.68 1.00079 119.162 1H202.536C203.018 1.00066 203.495 1.0963 203.941 1.28147C204.386 1.46663 204.79 1.73769 205.13 2.07916C205.471 2.42063 205.74 2.82581 205.924 3.27156C206.108 3.7173 206.202 4.19488 206.201 4.677V72.512C206.202 72.9942 206.108 73.4719 205.924 73.9177C205.741 74.3636 205.471 74.7689 205.131 75.1105C204.79 75.4521 204.386 75.7232 203.941 75.9084C203.496 76.0937 203.018 76.1893 202.536 76.19V76.19Z" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M210.706 76.63H111.222C111.061 76.6299 110.902 76.598 110.754 76.5363C110.605 76.4746 110.47 76.3842 110.357 76.2704C110.243 76.1565 110.153 76.0214 110.092 75.8727C110.031 75.724 110 75.5648 110 75.404V70.871C110 70.194 110.547 69.645 111.222 69.645H210.706C211.38 69.645 211.927 70.194 211.927 70.871V75.404C211.927 76.081 211.38 76.63 210.706 76.63Z" fill="#D9F0FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M210.706 76.63H111.222C111.061 76.6299 110.902 76.598 110.754 76.5363C110.605 76.4746 110.47 76.3842 110.357 76.2704C110.243 76.1565 110.153 76.0214 110.092 75.8727C110.031 75.724 110 75.5648 110 75.404V70.871C110 70.194 110.547 69.645 111.222 69.645H210.706C211.38 69.645 211.927 70.194 211.927 70.871V75.404C211.927 76.081 211.38 76.63 210.706 76.63Z" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.772 64.695H202.155V5.90302H119.772V64.695Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.772 64.695H202.155V5.90302H119.772V64.695Z" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M163.433 52.476H158.382C158.294 52.4765 158.207 52.4496 158.135 52.399L155.146 50.307L153.832 49.221L146.537 51.249C146.427 51.2786 146.309 51.2638 146.21 51.2076C146.111 51.1515 146.037 51.0586 146.006 50.949L143.891 43.608C143.867 43.5246 143.868 43.4358 143.894 43.353L146.141 36.283L144.792 34.683C144.753 34.6369 144.724 34.5833 144.707 34.5255C144.69 34.4678 144.685 34.4071 144.692 34.3473C144.699 34.2875 144.719 34.2298 144.749 34.1778C144.78 34.1258 144.82 34.0806 144.869 34.045L145.111 33.869L144.437 33.249C144.391 33.2058 144.354 33.1532 144.33 33.0947C144.306 33.0363 144.295 32.9733 144.297 32.91C144.299 32.8468 144.315 32.7848 144.343 32.7282C144.372 32.6716 144.412 32.6217 144.461 32.582L144.841 32.281L144.221 31.804C144.168 31.7625 144.125 31.7092 144.096 31.6485C144.066 31.5877 144.051 31.521 144.052 31.4535C144.053 31.3861 144.069 31.3196 144.099 31.2594C144.129 31.1991 144.173 31.1466 144.227 31.106L144.682 30.766L143.602 25.529C143.586 25.4528 143.591 25.3737 143.616 25.3L145.262 20.299C145.28 20.2439 145.309 20.1929 145.348 20.1493C145.386 20.1056 145.433 20.0701 145.485 20.0448C145.537 20.0195 145.594 20.005 145.652 20.0021C145.71 19.9993 145.768 20.008 145.823 20.028L156.483 24.051H165.332L175.99 20.028C176.045 20.0072 176.103 19.9977 176.161 20.0001C176.22 20.0026 176.277 20.017 176.329 20.0423C176.382 20.0677 176.429 20.1036 176.467 20.1477C176.505 20.1918 176.534 20.2433 176.552 20.299L178.199 25.302C178.223 25.3749 178.227 25.4528 178.212 25.528L177.144 30.768L177.591 31.108C177.644 31.1493 177.686 31.202 177.716 31.2622C177.745 31.3224 177.761 31.3885 177.761 31.4555C177.761 31.5225 177.746 31.5887 177.717 31.6491C177.688 31.7094 177.646 31.7624 177.593 31.804L176.974 32.281L177.354 32.582C177.454 32.662 177.514 32.782 177.518 32.91C177.521 32.9731 177.509 33.036 177.485 33.0944C177.461 33.1528 177.424 33.2052 177.378 33.248L176.704 33.869L176.946 34.045C176.995 34.0805 177.036 34.1257 177.066 34.1777C177.097 34.2298 177.116 34.2876 177.123 34.3476C177.13 34.4075 177.125 34.4683 177.107 34.526C177.09 34.5837 177.06 34.6372 177.021 34.683L175.674 36.282L177.934 43.352C177.96 43.4348 177.961 43.5236 177.937 43.607L175.807 50.95C175.775 51.0591 175.702 51.1514 175.603 51.2073C175.504 51.2631 175.387 51.2781 175.277 51.249L167.982 49.221L166.628 50.337L163.678 52.399C163.606 52.4491 163.521 52.476 163.433 52.476Z" fill="#FEFEFE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M163.433 52.476H158.382C158.294 52.4765 158.207 52.4496 158.135 52.399L155.146 50.307L153.832 49.221L146.537 51.249C146.427 51.2786 146.309 51.2638 146.21 51.2076C146.111 51.1515 146.037 51.0586 146.006 50.949L143.891 43.608C143.867 43.5246 143.868 43.4358 143.894 43.353L146.141 36.283L144.792 34.683C144.753 34.6369 144.724 34.5833 144.707 34.5255C144.69 34.4678 144.685 34.4071 144.692 34.3473C144.699 34.2875 144.719 34.2298 144.749 34.1778C144.78 34.1258 144.82 34.0806 144.869 34.045L145.111 33.869L144.437 33.249C144.391 33.2058 144.354 33.1532 144.33 33.0947C144.306 33.0363 144.295 32.9733 144.297 32.91C144.299 32.8468 144.315 32.7848 144.343 32.7282C144.372 32.6716 144.412 32.6217 144.461 32.582L144.841 32.281L144.221 31.804C144.168 31.7625 144.125 31.7092 144.096 31.6485C144.066 31.5877 144.051 31.521 144.052 31.4535C144.053 31.3861 144.069 31.3196 144.099 31.2594C144.129 31.1991 144.173 31.1466 144.227 31.106L144.682 30.766L143.602 25.529C143.586 25.4528 143.591 25.3737 143.616 25.3L145.262 20.299C145.28 20.2439 145.309 20.1929 145.348 20.1493C145.386 20.1056 145.433 20.0701 145.485 20.0448C145.537 20.0195 145.594 20.005 145.652 20.0021C145.71 19.9993 145.768 20.008 145.823 20.028L156.483 24.051H165.332L175.99 20.028C176.045 20.0072 176.103 19.9977 176.161 20.0001C176.22 20.0026 176.277 20.017 176.329 20.0423C176.382 20.0677 176.429 20.1036 176.467 20.1477C176.505 20.1918 176.534 20.2433 176.552 20.299L178.199 25.302C178.223 25.3749 178.227 25.4528 178.212 25.528L177.144 30.768L177.591 31.108C177.644 31.1493 177.686 31.202 177.716 31.2622C177.745 31.3224 177.761 31.3885 177.761 31.4555C177.761 31.5225 177.746 31.5887 177.717 31.6491C177.688 31.7094 177.646 31.7624 177.593 31.804L176.974 32.281L177.354 32.582C177.454 32.662 177.514 32.782 177.518 32.91C177.521 32.9731 177.509 33.036 177.485 33.0944C177.461 33.1528 177.424 33.2052 177.378 33.248L176.704 33.869L176.946 34.045C176.995 34.0805 177.036 34.1257 177.066 34.1777C177.097 34.2298 177.116 34.2876 177.123 34.3476C177.13 34.4075 177.125 34.4683 177.107 34.526C177.09 34.5837 177.06 34.6372 177.021 34.683L175.674 36.282L177.934 43.352C177.96 43.4348 177.961 43.5236 177.937 43.607L175.807 50.95C175.775 51.0591 175.702 51.1514 175.603 51.2073C175.504 51.2631 175.387 51.2781 175.277 51.249L167.982 49.221L166.628 50.337L163.678 52.399C163.606 52.4491 163.521 52.476 163.433 52.476V52.476Z" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M162.048 47.58H159.478L159.032 47.936L158.862 50.075H162.664L162.494 47.935L162.048 47.58ZM164.834 39.14L163.771 41.486C163.685 41.676 163.856 41.881 164.051 41.821L167.674 40.701C167.881 40.638 167.901 40.343 167.705 40.249L165.145 39.022C165.117 39.0089 165.087 39.0015 165.056 39.0003C165.025 38.9991 164.994 39.0041 164.965 39.015C164.936 39.0259 164.91 39.0425 164.888 39.0638C164.865 39.0851 164.847 39.1107 164.835 39.139L164.834 39.14ZM156.67 39.022L154.112 40.249C153.916 40.343 153.936 40.637 154.143 40.702L157.767 41.821C157.961 41.881 158.132 41.675 158.046 41.485L156.979 39.139C156.967 39.1107 156.949 39.0851 156.926 39.0638C156.904 39.0425 156.878 39.0259 156.849 39.015C156.82 39.0041 156.789 38.9991 156.758 39.0003C156.727 39.0015 156.697 39.0089 156.669 39.022" fill="#3098DC"/>
<rect x="0.5" y="3.5" width="69" height="69" rx="8.5" stroke="#3098DC"/>
<path d="M67.0547 23.8164C67.0547 22.4724 68.1442 21.3828 69.4883 21.3828C70.8323 21.3828 71.9219 22.4724 71.9219 23.8164V52.3242C71.9219 53.6683 70.8323 54.7578 69.4883 54.7578C68.1442 54.7578 67.0547 53.6683 67.0547 52.3242V23.8164Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.2266 52.3242V23.8164C71.2266 22.8564 70.4483 22.0781 69.4883 22.0781C68.5283 22.0781 67.75 22.8564 67.75 23.8164V52.3242C67.75 53.2842 68.5283 54.0625 69.4883 54.0625C70.4483 54.0625 71.2266 53.2842 71.2266 52.3242ZM69.4883 21.3828C68.1442 21.3828 67.0547 22.4724 67.0547 23.8164V52.3242C67.0547 53.6683 68.1442 54.7578 69.4883 54.7578C70.8323 54.7578 71.9219 53.6683 71.9219 52.3242V23.8164C71.9219 22.4724 70.8323 21.3828 69.4883 21.3828Z" fill="#3098DC"/>
<path d="M70.25 25.3594H89.9141C90.79 25.3594 91.5 26.0694 91.5 26.9453V49.8906C91.5 50.7665 90.79 51.4766 89.9141 51.4766H70.25V25.3594Z" fill="#D8F0FE" stroke="#3098DC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M46 72L46 3L47 3L47 72L46 72Z" fill="#3098DC"/>
<rect x="7" y="10" width="33" height="56" fill="#D8F0FE" stroke="#3098DC"/>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

BIN
app/images/lattice-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

10
app/images/no-nfts.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -66,6 +66,7 @@
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://wallet.gridplus.io/*",
"activeTab",
"webRequest",
"*://*.eth/",

View File

@ -7,6 +7,14 @@ import {
METAMETRICS_BACKGROUND_PAGE_OBJECT,
} from '../../../shared/constants/metametrics';
const defaultCaptureException = (err) => {
// throw error on clean stack so its captured by platform integrations (eg sentry)
// but does not interupt the call stack
setTimeout(() => {
throw err;
});
};
/**
* @typedef {import('../../../shared/constants/metametrics').MetaMetricsContext} MetaMetricsContext
* @typedef {import('../../../shared/constants/metametrics').MetaMetricsEventPayload} MetaMetricsEventPayload
@ -51,7 +59,9 @@ export default class MetaMetricsController {
version,
environment,
initState,
captureException = defaultCaptureException,
}) {
this._captureException = captureException;
const prefState = preferencesStore.getState();
this.chainId = getCurrentChainId();
this.network = getNetworkIdentifier();
@ -258,32 +268,52 @@ export default class MetaMetricsController {
* view
*/
trackPage({ name, params, environmentType, page, referrer }, options) {
if (this.state.participateInMetaMetrics === false) {
return;
}
try {
if (this.state.participateInMetaMetrics === false) {
return;
}
if (this.state.participateInMetaMetrics === null && !options?.isOptInPath) {
return;
if (
this.state.participateInMetaMetrics === null &&
!options?.isOptInPath
) {
return;
}
const { metaMetricsId } = this.state;
const idTrait = metaMetricsId ? 'userId' : 'anonymousId';
const idValue = metaMetricsId ?? METAMETRICS_ANONYMOUS_ID;
this.segment.page({
[idTrait]: idValue,
name,
properties: {
params,
locale: this.locale,
network: this.network,
chain_id: this.chainId,
environment_type: environmentType,
},
context: this._buildContext(referrer, page),
});
} catch (err) {
this._captureException(err);
}
const { metaMetricsId } = this.state;
const idTrait = metaMetricsId ? 'userId' : 'anonymousId';
const idValue = metaMetricsId ?? METAMETRICS_ANONYMOUS_ID;
this.segment.page({
[idTrait]: idValue,
name,
properties: {
params,
locale: this.locale,
network: this.network,
chain_id: this.chainId,
environment_type: environmentType,
},
context: this._buildContext(referrer, page),
});
}
/**
* track a metametrics event, performing necessary payload manipulation and
* submits a metametrics event, not waiting for it to complete or allowing its error to bubble up
* @param {MetaMetricsEventPayload} payload - details of the event
* @param {MetaMetricsEventOptions} [options] - options for handling/routing the event
*/
trackEvent(payload, options) {
// validation is not caught and handled
this.validatePayload(payload);
this.submitEvent(payload, options).catch((err) =>
this._captureException(err),
);
}
/**
* submits (or queues for submission) a metametrics event, performing necessary payload manipulation and
* routing the event to the appropriate segment source. Will split events
* with sensitiveProperties into two events, tracking the sensitiveProperties
* with the anonymousId only.
@ -291,21 +321,8 @@ export default class MetaMetricsController {
* @param {MetaMetricsEventOptions} [options] - options for handling/routing the event
* @returns {Promise<void>}
*/
async trackEvent(payload, options) {
// event and category are required fields for all payloads
if (!payload.event || !payload.category) {
throw new Error(
`Must specify event and category. Event was: ${
payload.event
}. Category was: ${payload.category}. Payload keys were: ${Object.keys(
payload,
)}. ${
typeof payload.properties === 'object'
? `Payload property keys were: ${Object.keys(payload.properties)}`
: ''
}`,
);
}
async submitEvent(payload, options) {
this.validatePayload(payload);
if (!this.state.participateInMetaMetrics && !options?.isOptIn) {
return;
@ -345,4 +362,25 @@ export default class MetaMetricsController {
await Promise.all(events);
}
/**
* validates a metametrics event
* @param {MetaMetricsEventPayload} payload - details of the event
*/
validatePayload(payload) {
// event and category are required fields for all payloads
if (!payload.event || !payload.category) {
throw new Error(
`Must specify event and category. Event was: ${
payload.event
}. Category was: ${payload.category}. Payload keys were: ${Object.keys(
payload,
)}. ${
typeof payload.properties === 'object'
? `Payload property keys were: ${Object.keys(payload.properties)}`
: ''
}`,
);
}
}
}

View File

@ -196,14 +196,14 @@ describe('MetaMetricsController', function () {
});
});
describe('trackEvent', function () {
describe('submitEvent', function () {
it('should not track an event if user is not participating in metametrics', function () {
const mock = sinon.mock(segment);
const metaMetricsController = getMetaMetricsController({
participateInMetaMetrics: false,
});
mock.expects('track').never();
metaMetricsController.trackEvent({
metaMetricsController.submitEvent({
event: 'Fake Event',
category: 'Unit Test',
properties: {
@ -230,7 +230,7 @@ describe('MetaMetricsController', function () {
...DEFAULT_EVENT_PROPERTIES,
},
});
metaMetricsController.trackEvent(
metaMetricsController.submitEvent(
{
event: 'Fake Event',
category: 'Unit Test',
@ -260,7 +260,7 @@ describe('MetaMetricsController', function () {
...DEFAULT_EVENT_PROPERTIES,
},
});
metaMetricsController.trackEvent(
metaMetricsController.submitEvent(
{
event: 'Fake Event',
category: 'Unit Test',
@ -289,7 +289,7 @@ describe('MetaMetricsController', function () {
...DEFAULT_EVENT_PROPERTIES,
},
});
metaMetricsController.trackEvent(
metaMetricsController.submitEvent(
{
event: 'Fake Event',
category: 'Unit Test',
@ -317,7 +317,7 @@ describe('MetaMetricsController', function () {
...DEFAULT_EVENT_PROPERTIES,
},
});
metaMetricsController.trackEvent({
metaMetricsController.submitEvent({
event: 'Fake Event',
category: 'Unit Test',
properties: {
@ -331,7 +331,7 @@ describe('MetaMetricsController', function () {
const metaMetricsController = getMetaMetricsController();
const flushStub = sinon.stub(segment, 'flush');
const flushCalled = waitUntilCalled(flushStub, segment);
metaMetricsController.trackEvent(
metaMetricsController.submitEvent(
{
event: 'Fake Event',
category: 'Unit Test',
@ -344,13 +344,13 @@ describe('MetaMetricsController', function () {
it('should throw if event or category not provided', function () {
const metaMetricsController = getMetaMetricsController();
assert.rejects(
() => metaMetricsController.trackEvent({ event: 'test' }),
() => metaMetricsController.submitEvent({ event: 'test' }),
/Must specify event and category\./u,
'must specify category',
);
assert.rejects(
() => metaMetricsController.trackEvent({ category: 'test' }),
() => metaMetricsController.submitEvent({ category: 'test' }),
/Must specify event and category\./u,
'must specify event',
);
@ -360,7 +360,7 @@ describe('MetaMetricsController', function () {
const metaMetricsController = getMetaMetricsController();
assert.rejects(
() =>
metaMetricsController.trackEvent(
metaMetricsController.submitEvent(
{
event: 'Fake Event',
category: 'Unit Test',
@ -375,7 +375,7 @@ describe('MetaMetricsController', function () {
it('should track sensitiveProperties in a separate, anonymous event', function () {
const metaMetricsController = getMetaMetricsController();
const spy = sinon.spy(segment, 'track');
metaMetricsController.trackEvent({
metaMetricsController.submitEvent({
event: 'Fake Event',
category: 'Unit Test',
sensitiveProperties: { foo: 'bar' },

View File

@ -1,10 +1,13 @@
import { createScaffoldMiddleware, mergeMiddleware } from 'json-rpc-engine';
import createBlockRefMiddleware from 'eth-json-rpc-middleware/block-ref';
import createRetryOnEmptyMiddleware from 'eth-json-rpc-middleware/retryOnEmpty';
import createBlockCacheMiddleware from 'eth-json-rpc-middleware/block-cache';
import createInflightCacheMiddleware from 'eth-json-rpc-middleware/inflight-cache';
import createBlockTrackerInspectorMiddleware from 'eth-json-rpc-middleware/block-tracker-inspector';
import providerFromMiddleware from 'eth-json-rpc-middleware/providerFromMiddleware';
import {
createBlockRefMiddleware,
createRetryOnEmptyMiddleware,
createBlockCacheMiddleware,
createInflightCacheMiddleware,
createBlockTrackerInspectorMiddleware,
providerFromMiddleware,
} from 'eth-json-rpc-middleware';
import createInfuraMiddleware from 'eth-json-rpc-infura';
import { PollingBlockTracker } from 'eth-block-tracker';

View File

@ -1,10 +1,12 @@
import { createAsyncMiddleware, mergeMiddleware } from 'json-rpc-engine';
import createFetchMiddleware from 'eth-json-rpc-middleware/fetch';
import createBlockRefRewriteMiddleware from 'eth-json-rpc-middleware/block-ref-rewrite';
import createBlockCacheMiddleware from 'eth-json-rpc-middleware/block-cache';
import createInflightMiddleware from 'eth-json-rpc-middleware/inflight-cache';
import createBlockTrackerInspectorMiddleware from 'eth-json-rpc-middleware/block-tracker-inspector';
import providerFromMiddleware from 'eth-json-rpc-middleware/providerFromMiddleware';
import {
createFetchMiddleware,
createBlockRefRewriteMiddleware,
createBlockCacheMiddleware,
createInflightCacheMiddleware,
createBlockTrackerInspectorMiddleware,
providerFromMiddleware,
} from 'eth-json-rpc-middleware';
import { PollingBlockTracker } from 'eth-block-tracker';
import { SECOND } from '../../../../shared/constants/time';
@ -27,7 +29,7 @@ export default function createJsonRpcClient({ rpcUrl, chainId }) {
createChainIdMiddleware(chainId),
createBlockRefRewriteMiddleware({ blockTracker }),
createBlockCacheMiddleware({ blockTracker }),
createInflightMiddleware(),
createInflightCacheMiddleware(),
createBlockTrackerInspectorMiddleware({ blockTracker }),
fetchMiddleware,
]);

Some files were not shown because too many files have changed in this diff Show More