diff --git a/build.gradle b/build.gradle index 3d106efcf..16cb3242c 100644 --- a/build.gradle +++ b/build.gradle @@ -121,7 +121,4 @@ jacocoTestReport { html.enabled = true } } -check.dependsOn jacocoTestReport - -// Front -processResources.dependsOn(':frontend:assemble') \ No newline at end of file +check.dependsOn jacocoTestReport \ No newline at end of file diff --git a/chain-kotlin-sdk b/chain-kotlin-sdk index 4dd977842..fff3340d1 160000 --- a/chain-kotlin-sdk +++ b/chain-kotlin-sdk @@ -1 +1 @@ -Subproject commit 4dd9778429eef6cd998f7d7318e13f2124489731 +Subproject commit fff3340d18bed249824f7247908c8753c4ad5347 diff --git a/config-1.json b/config-1.json new file mode 100644 index 000000000..78a971c34 --- /dev/null +++ b/config-1.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9191, + "externalHost" : "127.0.0.1", + "secret" : "89f0667fe951f77fdce8d840683c34cfe21c5e17c6c4d55a5786903d137ef076", + "mode" : "FULL" +} \ No newline at end of file diff --git a/config-2.json b/config-2.json new file mode 100644 index 000000000..e211bc3d6 --- /dev/null +++ b/config-2.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9192, + "externalHost" : "127.0.0.1", + "secret" : "dac3fb2d3c40502406a43ddc849aae7085fcaf68cd5ef68a19a3ea855a4fd353", + "mode" : "FULL" +} \ No newline at end of file diff --git a/config-3.json b/config-3.json new file mode 100644 index 000000000..d0570e773 --- /dev/null +++ b/config-3.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9193, + "externalHost" : "127.0.0.1", + "secret" : "dab92166513f2bfaaf8c75cf6a9803e683574445f65461f477714e95b3ba3906", + "mode" : "FULL" +} \ No newline at end of file diff --git a/config-4.json b/config-4.json new file mode 100644 index 000000000..98cd5ee24 --- /dev/null +++ b/config-4.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9194, + "externalHost" : "127.0.0.1", + "secret" : "afc442a5eb0253dce40e3a25596ab8ba5ec8b043dd99826b28b271594e4367c6", + "mode" : "FULL" +} \ No newline at end of file diff --git a/config-5.json b/config-5.json new file mode 100644 index 000000000..01c20515c --- /dev/null +++ b/config-5.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9195, + "externalHost" : "127.0.0.1", + "secret" : "b2429c16c9afa2d7f5a5de3b90ef3a9ed536a233aeedc37c6a110093edfb7d09", + "mode" : "FULL" +} \ No newline at end of file diff --git a/config-6.json b/config-6.json new file mode 100644 index 000000000..6a29f248d --- /dev/null +++ b/config-6.json @@ -0,0 +1,6 @@ +{ + "externalPort" : 9196, + "externalHost" : "127.0.0.1", + "secret" : "90434d590f3f11af3bdefd517b7f20bced148f10d57925aa665771c01e3f1b4a", + "mode" : "LIGHT" +} \ No newline at end of file diff --git a/dump b/dump new file mode 100644 index 000000000..87e174c92 --- /dev/null +++ b/dump @@ -0,0 +1,18 @@ + +1. +chronic rival prosper lamp leader wood dizzy december iron confirm source express +private key: 89f0667fe951f77fdce8d840683c34cfe21c5e17c6c4d55a5786903d137ef076 +address: 0xEA1b30BD5Ba790787dd795Ec5cdb815E43958681 +public key: 03ae0cfa7f1664d02cd4f95b0ee0397c3b37b860106ab7e62bbd45e357d43a4cb6 + +2. +aerobic dove pelican hire square apple satisfy dove casual lonely calm rebel +private key: dac3fb2d3c40502406a43ddc849aae7085fcaf68cd5ef68a19a3ea855a4fd353 +public key: 03f3ae70cb893a1b218e008cf79ee6a5ee69f4d93b6342b676ff1bfd64310e06eb +address: 0xb6D847780B3736362f12eB46bf043C11c0028135 + +3. +rural wrestle library cinnamon give broccoli upgrade license doll wear abuse menu +private key: dab92166513f2bfaaf8c75cf6a9803e683574445f65461f477714e95b3ba3906 +public key: 03a0ed2889f622a425f7a2ee4333ffe889d79120e476751ee2f1be4e2a82d57e46 +address: 0x23f340F3E78A4BD302B73f622DB4d0631DbFef03 diff --git a/settings.gradle b/settings.gradle index 2c4a0dbf6..22491cd6c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,4 +1,3 @@ rootProject.name = 'open-chain' -include('frontend') includeBuild('./chain-kotlin-sdk') \ No newline at end of file diff --git a/src/main/kotlin/io/openfuture/chain/core/model/entity/block/payload/MainBlockPayload.kt b/src/main/kotlin/io/openfuture/chain/core/model/entity/block/payload/MainBlockPayload.kt index 506ed3ebd..bfcaaa0a8 100644 --- a/src/main/kotlin/io/openfuture/chain/core/model/entity/block/payload/MainBlockPayload.kt +++ b/src/main/kotlin/io/openfuture/chain/core/model/entity/block/payload/MainBlockPayload.kt @@ -61,4 +61,8 @@ class MainBlockPayload( override fun getBytes(): ByteArray = transactionMerkleHash.toByteArray() + stateMerkleHash.toByteArray() + receiptMerkleHash.toByteArray() + fun hasTransferTransactions(): Boolean = transferTransactions.isNotEmpty() + + fun hasVoteTransactions(): Boolean = voteTransactions.isNotEmpty() + } \ No newline at end of file diff --git a/src/main/kotlin/io/openfuture/chain/core/service/block/validation/MainBlockValidator.kt b/src/main/kotlin/io/openfuture/chain/core/service/block/validation/MainBlockValidator.kt index d593775aa..c995f77e4 100644 --- a/src/main/kotlin/io/openfuture/chain/core/service/block/validation/MainBlockValidator.kt +++ b/src/main/kotlin/io/openfuture/chain/core/service/block/validation/MainBlockValidator.kt @@ -125,7 +125,8 @@ class MainBlockValidator( fun checkReceiptsAndStates(): BlockValidateHandler = { block, _, _, new -> block as MainBlock - val blockStates = block.getPayload().delegateStates + block.getPayload().accountStates + val payload = block.getPayload() + val blockStates = payload.delegateStates + payload.accountStates blockStates.forEach { if (!stateManager.verify(it)) { @@ -133,7 +134,7 @@ class MainBlockValidator( } } - block.getPayload().receipts.forEach { + payload.receipts.forEach { if (!receiptService.verify(it)) { throw ValidationException("Invalid block receipts in block: height #${block.height}, hash ${block.hash}") } @@ -141,21 +142,26 @@ class MainBlockValidator( if (new) { val delegateWallet = stateManager.getByAddress(block.publicKey).walletAddress - val transactions = block.getPayload().delegateTransactions + block.getPayload().transferTransactions + - block.getPayload().voteTransactions + block.getPayload().rewardTransactions + val transactions = payload.delegateTransactions + payload.transferTransactions + + payload.voteTransactions + payload.rewardTransactions val receipts = transactionManager.processTransactions(transactions, delegateWallet) val states = statePool.getStates() - if (block.getPayload().receipts.size != receipts.size) { + if (payload.receipts.size != receipts.size) { throw ValidationException("Invalid count block receipts in block: height #${block.height}, hash ${block.hash}") } + if (!payload.hasTransferTransactions() && !payload.hasVoteTransactions()) { + throw ValidationException("Block won't be created due to: has transfer transactions: " + + "${payload.hasTransferTransactions()} has vote transactions: ${payload.hasVoteTransactions()}") + } + if (blockStates.size != states.size) { throw ValidationException("Invalid count block states in block: height #${block.height}, hash ${block.hash}") } receipts.forEach { r -> - block.getPayload().receipts.firstOrNull { it.hash == r.hash } + payload.receipts.firstOrNull { it.hash == r.hash } ?: throw ValidationException("Invalid block receipts in block: height #${block.height}, hash ${block.hash}") } diff --git a/src/main/kotlin/io/openfuture/chain/core/service/state/DefaultStateManager.kt b/src/main/kotlin/io/openfuture/chain/core/service/state/DefaultStateManager.kt index cf265cabb..0c5005f3b 100644 --- a/src/main/kotlin/io/openfuture/chain/core/service/state/DefaultStateManager.kt +++ b/src/main/kotlin/io/openfuture/chain/core/service/state/DefaultStateManager.kt @@ -99,6 +99,7 @@ class DefaultStateManager( override fun commit(states: List) { BlockchainLock.writeLock.lock() try { + states.forEach { println(it.address) } repository.deleteAllByAddressIn(states.map { it.address }) repository.flush() repository.saveAll(states) diff --git a/src/main/kotlin/io/openfuture/chain/network/entity/NodeInfo.kt b/src/main/kotlin/io/openfuture/chain/network/entity/NodeInfo.kt index 493d13713..927efb557 100644 --- a/src/main/kotlin/io/openfuture/chain/network/entity/NodeInfo.kt +++ b/src/main/kotlin/io/openfuture/chain/network/entity/NodeInfo.kt @@ -14,7 +14,7 @@ data class NodeInfo( override fun read(buf: ByteBuf) { uid = buf.readString() - address = NetworkAddress::class.java.newInstance() + address = NetworkAddress::class.java.getDeclaredConstructor().newInstance() address.read(buf) } diff --git a/src/main/kotlin/io/openfuture/chain/network/extension/ByteBufExtension.kt b/src/main/kotlin/io/openfuture/chain/network/extension/ByteBufExtension.kt index d9acf6cdf..ac467b62e 100644 --- a/src/main/kotlin/io/openfuture/chain/network/extension/ByteBufExtension.kt +++ b/src/main/kotlin/io/openfuture/chain/network/extension/ByteBufExtension.kt @@ -39,7 +39,7 @@ inline fun ByteBuf.readList(): MutableList { val size = this.readInt() val list = mutableListOf() for (index in 1..size) { - val instance = T::class.java.newInstance() + val instance = T::class.java.getDeclaredConstructor().newInstance() instance.read(this) list.add(instance) } @@ -55,7 +55,7 @@ inline fun ByteBuf.readSet(): MutableSet { val size = this.readInt() val set = mutableSetOf() for (index in 1..size) { - val instance = T::class.java.newInstance() + val instance = T::class.java.getDeclaredConstructor().newInstance() instance.read(this) set.add(instance) } diff --git a/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ClientChannelInitializer.kt b/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ClientChannelInitializer.kt index 36c7cbca1..7185f9c31 100644 --- a/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ClientChannelInitializer.kt +++ b/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ClientChannelInitializer.kt @@ -65,9 +65,10 @@ class ClientChannelInitializer( epochResponseHandler, mainBlockHandler, genesisBlockHandler, + + blockAvailabilityRequestHandler, blockAvailabilityResponseHandler, syncStatusHandler, - blockAvailabilityRequestHandler, // core transferTransactionHandler, delegateTransactionHandler, diff --git a/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ServerChannelInitializer.kt b/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ServerChannelInitializer.kt index ac16e4f3e..bc00b00c4 100644 --- a/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ServerChannelInitializer.kt +++ b/src/main/kotlin/io/openfuture/chain/network/handler/network/initializer/ServerChannelInitializer.kt @@ -65,9 +65,9 @@ class ServerChannelInitializer( epochResponseHandler, mainBlockHandler, genesisBlockHandler, + blockAvailabilityRequestHandler, blockAvailabilityResponseHandler, syncStatusHandler, - blockAvailabilityRequestHandler, // core transferTransactionHandler, delegateTransactionHandler, diff --git a/src/main/kotlin/io/openfuture/chain/network/message/consensus/BlockAvailabilityResponse.kt b/src/main/kotlin/io/openfuture/chain/network/message/consensus/BlockAvailabilityResponse.kt index 50133ca1c..4b5c0998f 100644 --- a/src/main/kotlin/io/openfuture/chain/network/message/consensus/BlockAvailabilityResponse.kt +++ b/src/main/kotlin/io/openfuture/chain/network/message/consensus/BlockAvailabilityResponse.kt @@ -18,7 +18,7 @@ class BlockAvailabilityResponse( hash = buf.readString() height = buf.readLong() if (-1L != height) { - val block = GenesisBlockMessage::class.java.newInstance() + val block = GenesisBlockMessage::class.java.getDeclaredConstructor().newInstance() block.read(buf) genesisBlock = block } diff --git a/src/main/kotlin/io/openfuture/chain/network/message/network/NewClient.kt b/src/main/kotlin/io/openfuture/chain/network/message/network/NewClient.kt index c0baf7441..9617ce568 100644 --- a/src/main/kotlin/io/openfuture/chain/network/message/network/NewClient.kt +++ b/src/main/kotlin/io/openfuture/chain/network/message/network/NewClient.kt @@ -11,7 +11,7 @@ data class NewClient( ) : Message { override fun read(buf: ByteBuf) { - nodeInfo = NodeInfo::class.java.newInstance() + nodeInfo = NodeInfo::class.java.getDeclaredConstructor().newInstance() nodeInfo.read(buf) } diff --git a/src/main/kotlin/io/openfuture/chain/smartcontract/component/SmartContractInjector.kt b/src/main/kotlin/io/openfuture/chain/smartcontract/component/SmartContractInjector.kt index 48dbdfb0e..2850f9a32 100644 --- a/src/main/kotlin/io/openfuture/chain/smartcontract/component/SmartContractInjector.kt +++ b/src/main/kotlin/io/openfuture/chain/smartcontract/component/SmartContractInjector.kt @@ -10,7 +10,7 @@ object SmartContractInjector { fun initSmartContract(clazz: Class<*>, owner: String, address: String): SmartContract { - val instance = clazz.newInstance() as SmartContract + val instance = clazz.getDeclaredConstructor().newInstance() as SmartContract injectField(instance, OWNER_FIELD, owner) injectField(instance, ADDRESS_FIELD, address) diff --git a/src/main/resources/application-chain-1.properties b/src/main/resources/application-chain-1.properties new file mode 100644 index 000000000..45cd13fbd --- /dev/null +++ b/src/main/resources/application-chain-1.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-1;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;LOCK_TIMEOUT=10000;DB_CLOSE_DELAY=-1 +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8081 + +# NODE +node.port=9191 +node.root-nodes=localhost:9192,localhost:9193,localhost:9194,localhost:9195 + +node.config-path=config-1.json \ No newline at end of file diff --git a/src/main/resources/application-chain-2.properties b/src/main/resources/application-chain-2.properties new file mode 100644 index 000000000..66a5c8646 --- /dev/null +++ b/src/main/resources/application-chain-2.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-2;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;LOCK_TIMEOUT=10000;DB_CLOSE_DELAY=-1 +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8082 + +# NODE +node.port=9192 +node.root-nodes=localhost:9191,localhost:9193,localhost:9194,localhost:9195 + +node.config-path=config-2.json \ No newline at end of file diff --git a/src/main/resources/application-chain-3.properties b/src/main/resources/application-chain-3.properties new file mode 100644 index 000000000..a26382e97 --- /dev/null +++ b/src/main/resources/application-chain-3.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-3;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;LOCK_TIMEOUT=10000;DB_CLOSE_DELAY=-1 +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8083 + +# NODE +node.port=9193 +node.root-nodes=localhost:9191,localhost:9192,localhost:9194,localhost:9195 + +node.config-path=config-3.json \ No newline at end of file diff --git a/src/main/resources/application-chain-4.properties b/src/main/resources/application-chain-4.properties new file mode 100644 index 000000000..082a45631 --- /dev/null +++ b/src/main/resources/application-chain-4.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-4;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;LOCK_TIMEOUT=10000;DB_CLOSE_DELAY=-1 +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8084 + +# NODE +node.port=9194 +node.root-nodes=localhost:9191,localhost:9192,localhost:9193,localhost:9195 + +node.config-path=config-4.json \ No newline at end of file diff --git a/src/main/resources/application-chain-5.properties b/src/main/resources/application-chain-5.properties new file mode 100644 index 000000000..187cdf261 --- /dev/null +++ b/src/main/resources/application-chain-5.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-5;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;LOCK_TIMEOUT=10000;DB_CLOSE_DELAY=-1 +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8085 + +# NODE +node.port=9195 +node.root-nodes=localhost:9191,localhost:9192,localhost:9193,localhost:9194 + +node.config-path=config-5.json \ No newline at end of file diff --git a/src/main/resources/application-chain-6.properties b/src/main/resources/application-chain-6.properties new file mode 100644 index 000000000..be2ff63fe --- /dev/null +++ b/src/main/resources/application-chain-6.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driverClassName=org.h2.Driver +spring.datasource.url=jdbc:h2:./db/chain-6;MV_STORE=FALSE;MVCC=FALSE;FILE_LOCK=NO;DB_CLOSE_DELAY=-1 +spring.jpa.open-in-view=true +spring.jpa.database-platform=org.hibernate.dialect.H2Dialect + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8086 + +# NODE +node.port=9196 +node.root-nodes=localhost:9191,locahost:8081,localhost:9192,locahost:8082,localhost:9193,locahost:8083,localhost:9194,locahost:8084,localhost:9195,locahost:8085,localhost:9199,\ + locahost:8089 + +node.config-path=config-6.json \ No newline at end of file diff --git a/src/main/resources/application-chain-mysql.properties b/src/main/resources/application-chain-mysql.properties new file mode 100644 index 000000000..61a0f909c --- /dev/null +++ b/src/main/resources/application-chain-mysql.properties @@ -0,0 +1,18 @@ +# DATABASE +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3308/local_db?allowPublicKeyRetrieval=true&useSSL=false +spring.datasource.username=root +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=DEBUG + +# RPC +server.port=8081 + +# NODE +node.port=9191 +node.root-nodes=localhost:9192,localhost:9193 + +node.config-path=config-1.json \ No newline at end of file diff --git a/src/main/resources/application-chain-postgres.properties b/src/main/resources/application-chain-postgres.properties new file mode 100644 index 000000000..39d6f2936 --- /dev/null +++ b/src/main/resources/application-chain-postgres.properties @@ -0,0 +1,19 @@ +# DATABASE +spring.datasource.driver-class-name=org.postgresql.Driver +spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect +spring.datasource.url=jdbc:postgresql://localhost:5434/open_chain +spring.datasource.username=postgres +spring.datasource.password=123456 +spring.jpa.open-in-view=true + +# Logging +logging.level.io.openfuture.chain=INFO + +# RPC +server.port=8081 + +# NODE +node.port=9191 +node.root-nodes=localhost:9195,locahost:8085,localhost:9192,locahost:8082,localhost:9193,locahost:8083,localhost:9194,locahost:8084 + +node.config-path=config-1.json \ No newline at end of file diff --git a/src/main/resources/application-docker.properties b/src/main/resources/application-docker.properties index 224d92778..32debedfe 100644 --- a/src/main/resources/application-docker.properties +++ b/src/main/resources/application-docker.properties @@ -1,5 +1,13 @@ +# DATABASE +spring.datasource.url=${DB_URL} +spring.datasource.username=${DB_USER} +spring.datasource.password=${DB_PASS} + # RPC server.port=${RPC_PORT} # NODE -node.port=${NODE_PORT} \ No newline at end of file +node.port=${NODE_PORT} +node.root-nodes=${ROOT_NODES} + +node.config-path=${CONFIG_PATH} \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 729232ae9..f325593c6 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -29,15 +29,15 @@ node.peer-penalty=3600000 node.expiry=10000 node.sync-expiry=10000 node.sync-batch-size=22 -node.ntp-offset-threshold=100 +node.ntp-offset-threshold=500 # CONSENSUS -consensus.epoch-height=21 -consensus.delegates-count=21 +consensus.epoch-height=5 +consensus.delegates-count=5 consensus.block-capacity=1000 -consensus.time-slot-duration=270000 -consensus.time-slot-interval=30000 +consensus.time-slot-duration=60000 +consensus.time-slot-interval=5 consensus.genesis-address=0x0000000000000000000000000000000000000000 -consensus.reward-block=10 +consensus.reward-block=100 consensus.fee-vote-tx-for=3 consensus.fee-vote-tx-against=1 consensus.fee-delegate-tx=3 diff --git a/src/main/resources/db/migration/V1_8__default_init.sql b/src/main/resources/db/migration/V1_8__default_init.sql index 505c6e622..70a6595ac 100644 --- a/src/main/resources/db/migration/V1_8__default_init.sql +++ b/src/main/resources/db/migration/V1_8__default_init.sql @@ -22,96 +22,29 @@ INSERT INTO genesis_blocks (id, epoch_index) VALUES (2, 1); INSERT INTO delegate2genesis (public_key, genesis_id) -VALUES ('02b04aa1832e799503000a6b8da1cdbb737c167fc829472c726a12ad9a4ccf24eb', 2), - ('02c6847fcdc0239581151d1b05e7004c331eba097ae381349220c7cb0c5f5df9b3', 2), - ('02c4aedc4a7e2d8cc0e73e6dfb428e8555adc8a1b74207cb61143babd3e04be63f', 2), - ('02203492b48445da0f7392f6fa88d902f71d1b3714740ed99f43009a70fd7f6da8', 2), - ('029a9b6a44d2e322af6884a00660d63ab80effceb0a80f86bd7b21fbf5ee1550ac', 2), - ('020c08e5367fd881e52af43532db814d371b6bd3effb14442ad1044e71c0c0e41a', 2), - ('02aef406b4c4a3c007094a05c2d2a2d815133a41914c96385a2d9ca71529b4d302', 2), - ('03bfcc7afddf4f00c043faca2254ca8f09e3109c20b830d44a9b4438b363b9865e', 2), - ('03b49d9a127c271fad4bcdf88bd9fb3430b122044972654dfe78a754c5e3064f4f', 2), - ('03679e387bae8b7b724edc42a8149b7aa426edfc9ad54a1fc5e717ab081aca4daf', 2), - ('036a1a1a6e952083beb1eb5213168288592cd000b42502bd4b8b1e74a465a2eacc', 2), - ('029137a16dcea3967e8fd46dff0d812a2e60a57bef3eb6a7007867c0496631c5d6', 2), - ('03a9623189c1da22cec1338d2ab0a982e51794aefb45107d7c4c000a09fc772204', 2), - ('0283d909d2a886e9274f76f0460625e72674222b6a2bc937071858aa76a6e08d78', 2), - ('02f8f3aca6fbf37e7dfd4cf55cf6a1dcffa2cc6cb0c2e513f8121dfb4d861bf04e', 2), - ('039745d56241820f2a385c77aca013ecdff0b9fdce01d3f45ed34752cc9aa62cda', 2), - ('02e7cb6589255a6e153d181c19aa8a34c5c0e6cef0c0374e0c8ba4b5f36ccfc18a', 2), - ('02c2aca26e916926fce4101f0633009ae1c8c97e3081b3779880f6683ea258599c', 2), - ('027d26f614afe8b6b3c8efb861c6666985701d76efa70c9d5a02f44c1e0be804ab', 2), - ('0225aebdbb8ea2d8c401a638c87da670d5e2f0e4fdb9197f09ae75b2c805046724', 2), - ('02e20add31fbf82b1369e8f2f537df9225a05d6fd497e2f9c65ee9b2df176c01c8', 2); +VALUES ('03ae0cfa7f1664d02cd4f95b0ee0397c3b37b860106ab7e62bbd45e357d43a4cb6', 2), + ('03f3ae70cb893a1b218e008cf79ee6a5ee69f4d93b6342b676ff1bfd64310e06eb', 2), + ('03a0ed2889f622a425f7a2ee4333ffe889d79120e476751ee2f1be4e2a82d57e46', 2), + ('027a9d6808669051bf1aa589c7b6852ec3b984f864b3f75e3d2e845d380bc6ede2', 2), + ('033108a31f1cd8cdcdbe50cbcd66d6f41af719645b4b5b414220a637e796365bc0', 2); INSERT INTO states (id, address, hash) -VALUES (1, '0x0000000000000000000000000000000000000000', - 'f4639eccbed9ef1b911aed167b38ced71f525ff0b92e44d797a3ef6e856b788c'), - (2, '02b04aa1832e799503000a6b8da1cdbb737c167fc829472c726a12ad9a4ccf24eb', - '07e4bcc3aa017a3cfc370fa26c7bdc735c49a7f0000489260caadb077289bb38'), - (3, '02c6847fcdc0239581151d1b05e7004c331eba097ae381349220c7cb0c5f5df9b3', - 'a98111345037c3bb230351dc6ae9c2c69809497b69f3c1227ace6a2b344063da'), - (4, '02c4aedc4a7e2d8cc0e73e6dfb428e8555adc8a1b74207cb61143babd3e04be63f', - '5929237c69bc41d05aae61d0e303fe5d71595d57b0fa70ec69a1707cbbf86202'), - (5, '02203492b48445da0f7392f6fa88d902f71d1b3714740ed99f43009a70fd7f6da8', - '80b7b98232cafb3f04cf09280f3be1fc48c3e59d11f97485ec895857538a0a75'), - (6, '029a9b6a44d2e322af6884a00660d63ab80effceb0a80f86bd7b21fbf5ee1550ac', - '323181e1482d2a2562d5f694611b6f5710638bbb12a931f8851a42516b56d5ea'), - (7, '020c08e5367fd881e52af43532db814d371b6bd3effb14442ad1044e71c0c0e41a', - '3cbfd2bdff52b075bca2ac4b1563f85e37426b61548f2fa0b88dcd197974ced1'), - (8, '02aef406b4c4a3c007094a05c2d2a2d815133a41914c96385a2d9ca71529b4d302', - '65532b6d1f76cdca2ea9b2f79148cceec619483e128e275f65dcbbe0d51b47c7'), - (9, '03bfcc7afddf4f00c043faca2254ca8f09e3109c20b830d44a9b4438b363b9865e', - 'ccf058eaffdbe2342be184e756cd1113b8c2cdc5fc798749b85a3e8ea7c76924'), - (10, '03b49d9a127c271fad4bcdf88bd9fb3430b122044972654dfe78a754c5e3064f4f', - 'ec61d844445b537670c5e0f5cdba186fea42ae82b9e4326d075f7b4650e32222'), - (11, '03679e387bae8b7b724edc42a8149b7aa426edfc9ad54a1fc5e717ab081aca4daf', - '1f249047c5a131052c84b10cf57fcd55ddd2dd6cf97d783740dff9c663f955d1'), - (12, '036a1a1a6e952083beb1eb5213168288592cd000b42502bd4b8b1e74a465a2eacc', - 'db30186f43b94394bed6ffddff6a2c8733c5209d9bc741f76509f689e360af43'), - (13, '029137a16dcea3967e8fd46dff0d812a2e60a57bef3eb6a7007867c0496631c5d6', - 'ed76d226e982f3f1ce8eed712ee9ac3e509d4a9c3a5b78d3ff07e8f36de9286c'), - (14, '03a9623189c1da22cec1338d2ab0a982e51794aefb45107d7c4c000a09fc772204', - 'ffa38e7ba4e97a934b061ccd8436cdb99cc9cb6c7439c77ad1a34912183068c0'), - (15, '0283d909d2a886e9274f76f0460625e72674222b6a2bc937071858aa76a6e08d78', - '2b82d2fb83b2ac396ea52f49cc8b5f2db95f501cf0923161d6a9aaf1c449f41c'), - (16, '02f8f3aca6fbf37e7dfd4cf55cf6a1dcffa2cc6cb0c2e513f8121dfb4d861bf04e', - '375d9e4f7214aa41906caebe2fc8c01285d4dfc7b40edc339c5241484a6b81f6'), - (17, '039745d56241820f2a385c77aca013ecdff0b9fdce01d3f45ed34752cc9aa62cda', - '191c109afc4f1bcf8b223d8870ba2e2ba5598ad964358569267388384ffeb184'), - (18, '02e7cb6589255a6e153d181c19aa8a34c5c0e6cef0c0374e0c8ba4b5f36ccfc18a', - '2c0d01396421417cdd60f83d886942f7af60019c14fdce2c0b8427666e380427'), - (19, '02c2aca26e916926fce4101f0633009ae1c8c97e3081b3779880f6683ea258599c', - 'f868a36953973199612e107b6c464b51a8ff73ead418a3d810792eba1634c20a'), - (20, '027d26f614afe8b6b3c8efb861c6666985701d76efa70c9d5a02f44c1e0be804ab', - '4b7cb3938a94888fa29d6ff34817ddff85c21ca8e2022178dc8fc914c0cfaaa7'), - (21, '0225aebdbb8ea2d8c401a638c87da670d5e2f0e4fdb9197f09ae75b2c805046724', - 'a858188aed22713edeca4568692d59678a1d6be7d2eb4be2545e5fdc2ddbf9c3'), - (22, '02e20add31fbf82b1369e8f2f537df9225a05d6fd497e2f9c65ee9b2df176c01c8', - 'e5770eb3b611db6d3d926f77c5325a5cfb24788bea0d599369207e99773b1caa'); +VALUES (1, '0x0000000000000000000000000000000000000000','f4639eccbed9ef1b911aed167b38ced71f525ff0b92e44d797a3ef6e856b788c'), + (2, '03ae0cfa7f1664d02cd4f95b0ee0397c3b37b860106ab7e62bbd45e357d43a4cb6','07e4bcc3aa017a3cfc370fa26c7bdc735c49a7f0000489260caadb077289bb38'), + (3, '03f3ae70cb893a1b218e008cf79ee6a5ee69f4d93b6342b676ff1bfd64310e06eb','a98111345037c3bb230351dc6ae9c2c69809497b69f3c1227ace6a2b344063da'), + (4, '03a0ed2889f622a425f7a2ee4333ffe889d79120e476751ee2f1be4e2a82d57e46', '5929237c69bc41d05aae61d0e303fe5d71595d57b0fa70ec69a1707cbbf86202'), + (5, '027a9d6808669051bf1aa589c7b6852ec3b984f864b3f75e3d2e845d380bc6ede2', '5929237c69bc41d05aae61d0e303fe5d71595d57b0fa70ec69a1707cbbf86204'), + (6, '033108a31f1cd8cdcdbe50cbcd66d6f41af719645b4b5b414220a637e796365bc0', '5929237c69bc41d05aae61d0e303fe5d71595d57b0fa70ec69a1707cbbf86205'), + (7, '0xEA1b30BD5Ba790787dd795Ec5cdb815E43958681', '5eb92a6447824c42bff3ab53b0af3cb5cca7072d558199de8ba815aa6b3474b2'); INSERT INTO account_states (id, balance, vote_for, storage) -VALUES (1, 10000000000000000, NULL, NULL); +VALUES + (1, 10000000000000000, NULL, NULL), + (7, 10000000000000000, NULL, NULL); INSERT INTO delegate_states (id, rating, wallet_address, create_date) -VALUES (2, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (3, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (4, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (5, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (6, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (7, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (8, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (9, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (10, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (11, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (12, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (13, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (14, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (15, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (16, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (17, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (18, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (19, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (20, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (21, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021), - (22, 0, '0x51c5311F25206De4A9C6ecAa1Bc2Be257B0bA1fb', 1532345018021); \ No newline at end of file +VALUES (2, 0, '0xEA1b30BD5Ba790787dd795Ec5cdb815E43958681', 1685962401000), + (3, 0, '0xb6D847780B3736362f12eB46bf043C11c0028135', 1685962401000), + (4, 0, '0x23f340F3E78A4BD302B73f622DB4d0631DbFef03', 1685962401000), + (5, 0, '0xdcE75a918a14d3fa152fA48C9f16111ba7b05c3D', 1685962401000), + (6, 0, '0x7A65eEdB1b77157d5D9Fc099A00CBDf7c3333642', 1685962401000); \ No newline at end of file diff --git a/src/main/resources/static/asset-manifest.json b/src/main/resources/static/asset-manifest.json new file mode 100644 index 000000000..07797c26b --- /dev/null +++ b/src/main/resources/static/asset-manifest.json @@ -0,0 +1,35 @@ +{ + "main.css": "static/css/main.9dffbc83.css", + "main.css.map": "static/css/main.9dffbc83.css.map", + "main.js": "static/js/main.53982a00.js", + "main.js.map": "static/js/main.53982a00.js.map", + "static\\media\\Exo-Bold.ttf": "static/media/Exo-Bold.9fc4f548.ttf", + "static\\media\\Exo-Light.ttf": "static/media/Exo-Light.da2f4946.ttf", + "static\\media\\Exo-Medium.ttf": "static/media/Exo-Medium.126645b3.ttf", + "static\\media\\Exo-Regular.ttf": "static/media/Exo-Regular.44f06847.ttf", + "static\\media\\arrow.svg": "static/media/arrow.d5c7b5ef.svg", + "static\\media\\back-circle.svg": "static/media/back-circle.40e9c330.svg", + "static\\media\\background.png": "static/media/background.4191d547.png", + "static\\media\\border.svg": "static/media/border.4e3713a7.svg", + "static\\media\\cancel.svg": "static/media/cancel.066d1b96.svg", + "static\\media\\close.svg": "static/media/close.8209eebf.svg", + "static\\media\\copy-gray.svg": "static/media/copy-gray.ebdec5b0.svg", + "static\\media\\copy.svg": "static/media/copy.37642ea4.svg", + "static\\media\\create.svg": "static/media/create.c043e698.svg", + "static\\media\\crumb.svg": "static/media/crumb.493a6bba.svg", + "static\\media\\danger.svg": "static/media/danger.94158f54.svg", + "static\\media\\enter-key.svg": "static/media/enter-key.de0cc67a.svg", + "static\\media\\eye-blue-closed.svg": "static/media/eye-blue-closed.8a91cec0.svg", + "static\\media\\eye-blue.svg": "static/media/eye-blue.8fadd92f.svg", + "static\\media\\eye-gray-closed.svg": "static/media/eye-gray-closed.c0d94070.svg", + "static\\media\\eye-gray.svg": "static/media/eye-gray.41747a60.svg", + "static\\media\\header-background.svg": "static/media/header-background.32ffafea.svg", + "static\\media\\info-gray.svg": "static/media/info-gray.272aadcf.svg", + "static\\media\\info.svg": "static/media/info.ae398472.svg", + "static\\media\\logo.svg": "static/media/logo.5caaf55c.svg", + "static\\media\\logout.svg": "static/media/logout.4436b628.svg", + "static\\media\\restore.svg": "static/media/restore.85c611f6.svg", + "static\\media\\search.svg": "static/media/search.462a8def.svg", + "static\\media\\success.svg": "static/media/success.dd25a4aa.svg", + "static\\media\\upload.svg": "static/media/upload.8b88fa3d.svg" +} \ No newline at end of file diff --git a/src/main/resources/static/favicon.ico b/src/main/resources/static/favicon.ico new file mode 100644 index 000000000..5e3de8b85 Binary files /dev/null and b/src/main/resources/static/favicon.ico differ diff --git a/src/main/resources/static/manifest.json b/src/main/resources/static/manifest.json new file mode 100644 index 000000000..836062f05 --- /dev/null +++ b/src/main/resources/static/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "OpenWallet", + "name": "Open Wallet", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": "./index.html", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/src/main/resources/static/service-worker.js b/src/main/resources/static/service-worker.js new file mode 100644 index 000000000..6e96bb5ea --- /dev/null +++ b/src/main/resources/static/service-worker.js @@ -0,0 +1 @@ +"use strict";var precacheConfig=[["/index.html","74fdafa76c8d13ba589d8ac77309dd16"],["/static/css/main.9dffbc83.css","aaca8773f94df00300b5aca4baff644b"],["/static/js/main.53982a00.js","16f5dfd8b3271ab14214027075305ad0"],["/static/media/Exo-Bold.9fc4f548.ttf","9fc4f548e95040b14b8542406f1527c3"],["/static/media/Exo-Light.da2f4946.ttf","da2f4946c247cfaade9ef9814c6ff8ba"],["/static/media/Exo-Medium.126645b3.ttf","126645b37e332a6cf9a18aa7a884b1a6"],["/static/media/Exo-Regular.44f06847.ttf","44f068476a9867c9af45c8f33c8c085e"],["/static/media/arrow.d5c7b5ef.svg","d5c7b5ef0642e5085d186cbd7673586d"],["/static/media/back-circle.40e9c330.svg","40e9c330b79b18d0364ef454bccdd7bf"],["/static/media/background.4191d547.png","4191d54741b9362ced72781d14dd80af"],["/static/media/border.4e3713a7.svg","4e3713a7f1838abbb5d339d7ddd69bbc"],["/static/media/cancel.066d1b96.svg","066d1b96aa51960fcb9e034485e98a55"],["/static/media/close.8209eebf.svg","8209eebf0ffb340edc0574845d3a2f30"],["/static/media/copy-gray.ebdec5b0.svg","ebdec5b0ba0f601dc26121fbda9021b6"],["/static/media/copy.37642ea4.svg","37642ea438f5b5729d8316d52e76d986"],["/static/media/create.c043e698.svg","c043e698db200ef186345b7a8ef324af"],["/static/media/crumb.493a6bba.svg","493a6bbafb433643e6c9dc3922ed4e0a"],["/static/media/danger.94158f54.svg","94158f540e87663a976e3189289fd97a"],["/static/media/enter-key.de0cc67a.svg","de0cc67a2116e4ca9e020f4757e22c0a"],["/static/media/eye-blue-closed.8a91cec0.svg","8a91cec085bbb72daebf645919cb9738"],["/static/media/eye-blue.8fadd92f.svg","8fadd92fdc0d8edb71bb6873f35d1562"],["/static/media/eye-gray-closed.c0d94070.svg","c0d940709ba410a4b54926f81bd62267"],["/static/media/eye-gray.41747a60.svg","41747a604d433f9049b467b613b43ecc"],["/static/media/header-background.32ffafea.svg","32ffafeaa96835449c47854a0a2056cc"],["/static/media/info-gray.272aadcf.svg","272aadcfbef09a71e76f153ecece29ab"],["/static/media/info.ae398472.svg","ae3984726e972fba69590ef30bff5214"],["/static/media/logo.5caaf55c.svg","5caaf55c0cc1b42ae64ec92ba707658e"],["/static/media/logout.4436b628.svg","4436b628bb814057012795cb105b2b2e"],["/static/media/restore.85c611f6.svg","85c611f6931f8c15915b7a6d07aebeee"],["/static/media/search.462a8def.svg","462a8def3631bd86538f265456fd81c7"],["/static/media/success.dd25a4aa.svg","dd25a4aa073f1f6d7db807e420d60db8"],["/static/media/upload.8b88fa3d.svg","8b88fa3dc2f85b7f692c132a7c84e29d"]],cacheName="sw-precache-v3-sw-precache-webpack-plugin-"+(self.registration?self.registration.scope:""),ignoreUrlParametersMatching=[/^utm_/],addDirectoryIndex=function(e,a){var t=new URL(e);return"/"===t.pathname.slice(-1)&&(t.pathname+=a),t.toString()},cleanResponse=function(a){return a.redirected?("body"in a?Promise.resolve(a.body):a.blob()).then(function(e){return new Response(e,{headers:a.headers,status:a.status,statusText:a.statusText})}):Promise.resolve(a)},createCacheKey=function(e,a,t,c){var n=new URL(e);return c&&n.pathname.match(c)||(n.search+=(n.search?"&":"")+encodeURIComponent(a)+"="+encodeURIComponent(t)),n.toString()},isPathWhitelisted=function(e,a){if(0===e.length)return!0;var t=new URL(a).pathname;return e.some(function(e){return t.match(e)})},stripIgnoredUrlParameters=function(e,t){var a=new URL(e);return a.hash="",a.search=a.search.slice(1).split("&").map(function(e){return e.split("=")}).filter(function(a){return t.every(function(e){return!e.test(a[0])})}).map(function(e){return e.join("=")}).join("&"),a.toString()},hashParamName="_sw-precache",urlsToCacheKeys=new Map(precacheConfig.map(function(e){var a=e[0],t=e[1],c=new URL(a,self.location),n=createCacheKey(c,hashParamName,t,/\.\w{8}\./);return[c.toString(),n]}));function setOfCachedUrls(e){return e.keys().then(function(e){return e.map(function(e){return e.url})}).then(function(e){return new Set(e)})}self.addEventListener("install",function(e){e.waitUntil(caches.open(cacheName).then(function(c){return setOfCachedUrls(c).then(function(t){return Promise.all(Array.from(urlsToCacheKeys.values()).map(function(a){if(!t.has(a)){var e=new Request(a,{credentials:"same-origin"});return fetch(e).then(function(e){if(!e.ok)throw new Error("Request for "+a+" returned a response with status "+e.status);return cleanResponse(e).then(function(e){return c.put(a,e)})})}}))})}).then(function(){return self.skipWaiting()}))}),self.addEventListener("activate",function(e){var t=new Set(urlsToCacheKeys.values());e.waitUntil(caches.open(cacheName).then(function(a){return a.keys().then(function(e){return Promise.all(e.map(function(e){if(!t.has(e.url))return a.delete(e)}))})}).then(function(){return self.clients.claim()}))}),self.addEventListener("fetch",function(a){if("GET"===a.request.method){var e,t=stripIgnoredUrlParameters(a.request.url,ignoreUrlParametersMatching),c="index.html";(e=urlsToCacheKeys.has(t))||(t=addDirectoryIndex(t,c),e=urlsToCacheKeys.has(t));var n="/index.html";!e&&"navigate"===a.request.mode&&isPathWhitelisted(["^(?!\\/__).*"],a.request.url)&&(t=new URL(n,self.location).toString(),e=urlsToCacheKeys.has(t)),e&&a.respondWith(caches.open(cacheName).then(function(e){return e.match(urlsToCacheKeys.get(t)).then(function(e){if(e)return e;throw Error("The cached response that was expected is missing.")})}).catch(function(e){return console.warn('Couldn\'t serve response for "%s" from cache: %O',a.request.url,e),fetch(a.request)}))}}); \ No newline at end of file diff --git a/src/main/resources/static/static/css/main.9dffbc83.css b/src/main/resources/static/static/css/main.9dffbc83.css new file mode 100644 index 000000000..c01c12af1 --- /dev/null +++ b/src/main/resources/static/static/css/main.9dffbc83.css @@ -0,0 +1,2 @@ +.popup-area{width:100%;height:100vh;position:fixed;left:0;top:0;background:rgba(28,28,39,.6);z-index:10}.popup-area .info-popup{background:#fff;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);border-radius:15px;padding:48px 48px 60px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:1013px}.popup-area .info-popup .close-popup{font-size:18px;line-height:24px;font-weight:700;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:absolute;right:0;top:-46px;cursor:pointer}.popup-area .info-popup .close-popup>img{top:-2px;margin-left:12px;width:18px;height:18px}.popup-area .info-popup .close-popup:hover{opacity:.8}.popup-area .info-popup .pagination{position:absolute;bottom:-48px;right:0;margin-top:21px;float:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.popup-area .info-popup .pagination .line{height:19px;width:1px;margin:0 12px;background:#dcdcf0}.popup-area .info-popup .pagination a{color:#fff;text-transform:uppercase;font-size:14px;font-weight:700;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.popup-area .info-popup .pagination a img{width:16px;cursor:pointer;top:-1px}.popup-area .info-popup .pagination .next,.popup-area .info-popup .pagination .prev{cursor:pointer}.popup-area .info-popup .pagination .next img{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);margin-left:6px}.popup-area .info-popup .pagination .prev img{margin-right:7px}.popup-area .info-popup .main-title{color:#3193f5;font-size:36px;line-height:36px}.popup-area .info-popup .subtitle{color:#3193f5;font-size:21px;line-height:45px;padding-bottom:36px}.popup-area .info-popup .info{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:18px 0;border-top:1px solid #dcdcf0}.popup-area .info-popup .info span{max-width:70%;text-align:right;text-transform:uppercase;word-wrap:break-word}.popup-area .info-popup .info .title{text-align:left;font-weight:700}.popup-area .info-popup .info p{font-weight:700}.popup-area .info-popup .info .lite{font-weight:400;color:#c8c8dc}.popup-area .content{padding:25px 0 30px}.popup-area .content p{padding-top:16px}@font-face{font-family:Exo;font-weight:300;src:url(/static/media/Exo-Light.da2f4946.ttf)}@font-face{font-family:Exo;font-weight:400;src:url(/static/media/Exo-Regular.44f06847.ttf)}@font-face{font-family:Exo;font-weight:500;src:url(/static/media/Exo-Medium.126645b3.ttf)}@font-face{font-family:Exo;font-weight:700;src:url(/static/media/Exo-Bold.9fc4f548.ttf)}h1{font-size:80px;line-height:92px}h1,h2{font-weight:700;text-transform:uppercase}h2{font-size:36px;line-height:72px}h3{font-size:24px;line-height:32px;text-transform:uppercase}h3,h4{font-weight:700}h4{font-size:20px}h5{font-weight:700}*,h5{font-size:16px}*{font-family:Exo;color:#333351;text-decoration:none;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;outline:0}li{list-style-type:none}ul{margin-left:0;padding-left:0}body{overflow-x:hidden;background:#fafafc}section{width:100%;height:100vh;max-width:1200px;margin:auto}.mgb54{margin-bottom:54px!important}.mgb36{margin-bottom:36px!important}.mgb26{margin-bottom:26px!important}.mgb24{margin-bottom:24px!important}.mgt30{margin-top:30px!important}.logo{width:-webkit-max-content;width:-moz-max-content;width:max-content;height:28px;display:block;position:absolute;left:40px;top:48px;z-index:2}@media (max-height:768px){.logo{top:40px}}.button{display:block;overflow:hidden;border:0;width:-webkit-max-content;width:-moz-max-content;width:max-content;border-radius:10px;padding:24px 68px 22px;background:#dcdcf0;-webkit-box-shadow:0 10px 20px rgba(47,128,237,.3);box-shadow:0 10px 20px rgba(47,128,237,.3);cursor:pointer;text-align:center}.button.disable{-webkit-box-shadow:none;box-shadow:none;cursor:default;pointer-events:none}.button.disable div{display:none}.button.white{-webkit-box-shadow:0 10px 20px rgba(132,149,156,.15);box-shadow:0 10px 20px rgba(132,149,156,.15);background:hsla(0,0%,100%,.8)}.button.white span{color:#333351}.button.white div{display:none}.button.mini{padding:16px 98px}.button.mini span{font-size:16px}.button.small{padding:9px 27px;border-radius:50px}.button.small span{font-size:14px;font-weight:500;text-transform:none}.button:hover div{-webkit-transition:.225s cubic-bezier(.4,0,.2,1);-o-transition:.225s cubic-bezier(.4,0,.2,1);transition:.225s cubic-bezier(.4,0,.2,1);left:0}.button div{position:absolute;left:-100%;top:0;width:200%;height:100%;background:-webkit-gradient(linear,right top,left top,from(#2f80ed),color-stop(50%,#33adff),to(#2f80ed));background:-webkit-linear-gradient(right,#2f80ed,#33adff 50%,#2f80ed);background:-o-linear-gradient(right,#2f80ed 0,#33adff 50%,#2f80ed 100%);background:linear-gradient(270deg,#2f80ed 0,#33adff 50%,#2f80ed);z-index:1;-webkit-transition:.15s ease-in;-o-transition:.15s ease-in;transition:.15s ease-in}.button span{z-index:2;color:#fff;font-size:24px;line-height:1;font-weight:700;text-transform:uppercase;white-space:nowrap}.button span span{font-weight:400;opacity:.5;text-transform:none}.button input[type=file]{z-index:3;position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer;opacity:0}.background{position:fixed;bottom:0;left:0;display:block}.uploaded-file{width:100%;padding:20px 24px;border:1px solid #f8f8fb;background-color:#f8f8fb;border-radius:6px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.uploaded-file span{font-size:24px;line-height:32px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.uploaded-file img{width:24px;height:24px;cursor:pointer;margin-left:12px;opacity:.4}.dnd{width:100%;text-align:center;background-color:#fff;background-image:url(/static/media/border.4e3713a7.svg);background-repeat:no-repeat;background-size:100% 100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:20px 0}.dnd.hover:before{content:"";background-color:rgba(248,248,251,.5);width:calc(100% - 6px);height:calc(100% - 2px);position:absolute;left:3px;top:1px;border-radius:6px}.dnd.hover span{color:#333351}.dnd span{font-size:24px;line-height:32px;color:#c8c8dc}.dnd input{position:absolute;width:100%;height:100%;z-index:2;cursor:pointer;opacity:0}.popover-area{width:-webkit-max-content;width:-moz-max-content;width:max-content;margin:0 auto;z-index:10}.popover-area.popover-area2{width:24px;height:24px;top:-4px;margin-left:12px}.popover-area.popover-area2 label{display:block;width:24px;height:24px;background-image:url(/static/media/info-gray.272aadcf.svg);cursor:pointer}.popover-area input[type=checkbox]{display:none}.popover-area input[type=checkbox]:checked~.info-link>.close-wrapper,.popover-area input[type=checkbox]:checked~.popover{display:block}.popover-area .popover{width:700px;position:absolute;top:52px;left:0;padding:24px 30px 30px;background:#fff;-webkit-box-shadow:0 30px 30px rgba(28,28,39,.05);box-shadow:0 30px 30px rgba(28,28,39,.05);border-radius:15px;cursor:default;z-index:5;display:none}.popover-area .popover:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;-webkit-box-shadow:0 5px 50px rgba(28,28,39,.05);box-shadow:0 5px 50px rgba(28,28,39,.05);border-radius:15px}.popover-area .popover h3{text-transform:none;margin-bottom:12px}.popover-area .close-wrapper{display:none;position:fixed;left:-100%;top:-100vh;width:300%;height:300vh;cursor:default}.popover-area2{width:24px;height:24px;top:-4px;margin-left:12px}.popover-area2 label{display:block;width:24px;height:24px;background-image:url(/static/media/info-gray.272aadcf.svg);cursor:pointer;left:0!important;top:0!important}.popover-area2 input[type=checkbox]{display:none}.popover-area2 input[type=checkbox]:checked~.popover{display:block}.popover-area2 input[type=checkbox]:checked~label{background-image:url(/static/media/info.ae398472.svg)}.popover-area2 input[type=checkbox]:checked~label>.close-wrapper{display:block}.popover-area2 .popover{width:700px;position:absolute;top:0;left:48px;-webkit-transform:translateY(calc(-50% + 12px));-ms-transform:translateY(calc(-50% + 12px));transform:translateY(calc(-50% + 12px));padding:24px 30px 30px;background:#fff;-webkit-box-shadow:0 30px 30px rgba(28,28,39,.05);box-shadow:0 30px 30px rgba(28,28,39,.05);border-radius:15px;cursor:default;z-index:5;display:none}.popover-area2 .popover:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;-webkit-box-shadow:0 5px 50px rgba(28,28,39,.05);box-shadow:0 5px 50px rgba(28,28,39,.05);border-radius:15px}.popover-area2 .popover h3{text-transform:none;margin-bottom:12px}.popover-area2 .popover p{font-weight:400!important;font-size:16px!important;text-transform:none!important}.popover-area2 .close-wrapper{display:none;position:fixed;left:-100%;top:-100vh;width:300%;height:300vh;cursor:default;z-index:4}.info-link{display:-ms-flexbox;display:flex;padding:8px 0 72px;margin:0 auto;cursor:pointer;border-radius:15px}.info-link span{font-size:24px;line-height:24px;color:#3193f5;margin-left:12px;font-weight:500}.disclaimer{padding-top:30px;margin:0 auto}.disclaimer img{bottom:-2px}.disclaimer span{color:#c8c8dc;padding:0 4px 0 6px}.disclaimer a{color:#3193f5;font-weight:500}.welcome-content{max-width:580px;position:absolute;left:40px;top:50vh;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.welcome-content p{font-size:24px;line-height:36px;padding:42px 0 66px}.main-background{width:100%;height:100vh;background-image:url(/static/media/header-background.32ffafea.svg);background-repeat:no-repeat;background-position:-300px -1750px;position:absolute;right:0;left:0;top:0}@media (max-width:1600px){.main-background{background-position:-550px -1750px}}@media (max-width:1200px){.main-background{background-position:-750px -1750px}}.select-type{width:100%;position:absolute;left:0;top:50%;-webkit-transform:translateY(calc(-50% - 48px));-ms-transform:translateY(calc(-50% - 48px));transform:translateY(calc(-50% - 48px))}@media (max-width:1270px){.select-type{padding:0 40px}}@media (max-height:768px){.select-type{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}}.select-type .links{width:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding-top:48px}.select-type .links a{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding:52px 42px 60px;text-align:center;width:calc(25% - 24px);background:#fff;border-radius:50px;-webkit-box-shadow:0 20px 40px rgba(132,149,156,.04);box-shadow:0 20px 40px rgba(132,149,156,.04);-webkit-transition:.375s cubic-bezier(.4,0,.2,1);-o-transition:.375s cubic-bezier(.4,0,.2,1);transition:.375s cubic-bezier(.4,0,.2,1)}.select-type .links a:hover{-webkit-box-shadow:0 30px 40px rgba(132,149,156,.07);box-shadow:0 30px 40px rgba(132,149,156,.07)}.select-type .links a img{margin-bottom:44px}.form-content{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.form-content .crumbs img{margin:0 8px}.form-content .name{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:12px 0 48px}.form-content .name a{margin-right:18px;bottom:-1px}@media (max-height:768px){.form-content{-webkit-transform:translate(-50%,calc(-50% + 24px));-ms-transform:translate(-50%,calc(-50% + 24px));transform:translate(-50%,calc(-50% + 24px))}.form-content .name{padding:0 0 24px}}.form-content form{width:884px;height:510px;background:#fff;border-radius:50px;-webkit-box-shadow:0 20px 40px rgba(132,149,156,.04);box-shadow:0 20px 40px rgba(132,149,156,.04);padding:60px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.form-content form>.button{margin:0 auto}.form-content form ::-webkit-input-placeholder{color:#dcdcf0}.form-content form ::-moz-placeholder{color:#dcdcf0}.form-content form :-ms-input-placeholder{color:#dcdcf0}.form-content form :-moz-placeholder{color:#dcdcf0}.form-content form>h2{padding-top:48px;text-align:center}.form-content form .copy{color:#3193f5;font-weight:500;font-size:16px;text-transform:none;display:block;border:none;background:transparent;cursor:pointer}.form-content form .key-area{width:100%;margin-bottom:24px}.form-content form .key-area .title{height:19px;display:-ms-flexbox;display:flex;margin-bottom:6px}.form-content form .key-area .title p{font-size:14px;font-weight:700;text-transform:uppercase}.form-content form .key-area .title img{height:24px;top:-5px;margin-left:12px;cursor:pointer}.form-content form .key-area .key{display:-ms-flexbox;display:flex}.form-content form .key-area .copy{color:#3193f5;font-weight:500;position:absolute;right:0;top:0;font-size:16px}.form-content form .input{width:calc(100% - 40px);margin-bottom:36px}.form-content form .input.invalid>input{border-color:#df4c4c;color:#df4c4c}.form-content form .input.invalid .error{display:block}.form-content form .input.invalid ::-webkit-input-placeholder{color:rgba(223,76,76,.5)}.form-content form .input.invalid ::-moz-placeholder{color:rgba(223,76,76,.5)}.form-content form .input.invalid :-ms-input-placeholder{color:rgba(223,76,76,.5)}.form-content form .input.invalid :-moz-placeholder{color:rgba(223,76,76,.5)}.form-content form .input .error{position:absolute;left:0;bottom:-20px;font-size:14px;color:#df4c4c;font-weight:500;display:none}.form-content form .input p{width:100%;font-size:18px;font-weight:700;text-transform:uppercase;margin-bottom:12px}.form-content form .input p.required:after{content:" *";color:#df4c4c}.form-content form .input p span{position:absolute;padding-left:16px;top:1px;font-weight:400;text-transform:none;color:#c8c8dc}.form-content form .input p .copy{color:#3193f5;font-weight:500;position:absolute;right:0;top:0;font-size:16px}.form-content form .input textarea{display:block;width:100%;max-width:100%;min-width:100%;padding:21px 24px 19px;border:1px solid #dcdcf0;border-radius:6px;overflow:hidden;font-size:24px;line-height:168%;height:123px;max-height:123px;min-height:123px}.form-content form .input textarea.disable{background:#f8f8fb;border-color:#f8f8fb}.form-content form .input input{width:100%;border:1px solid #dcdcf0;padding:19px 25px;font-size:24px;border-radius:6px}.form-content form .input input.disable{background:#f8f8fb;border-color:#f8f8fb}.form-content form .input input[type=checkbox]{display:none}.form-content form .input input[type=checkbox]:checked+.eye{background-image:url(/static/media/eye-gray.41747a60.svg)}.form-content form .input input[type=checkbox]:checked+.eye.blue{background-image:url(/static/media/eye-blue.8fadd92f.svg)}.form-content form .input label:not(.showing){position:absolute;left:calc(100% + 24px);bottom:28px}.form-content form .input .eye{cursor:pointer;width:21px;height:17px;background-image:url(/static/media/eye-gray-closed.c0d94070.svg)}.form-content form .input .eye.blue{background-image:url(/static/media/eye-blue-closed.8a91cec0.svg)}.form-content form .showing{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;cursor:pointer;position:absolute;right:0;top:0}.form-content form .showing span{color:#3193f5;margin-left:12px}.form-content form .generate{font-size:54px}.form-content form .generate+p{color:#c8c8dc;text-align:center;width:485px;padding:24px 0 42px;margin:0 auto}.form-content form .button-area{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin:0 auto}.form-content form .button-area .button{margin:0 15px;width:267px}.form-content .form-restore-wallet .input,.form-content .form-seed-pharse .input{width:100%;margin:30px 0 54px}.form-content .form-create-pass .input,.form-content .form-enter-key .input{margin:30px 0 54px}.form-content .form-create-pass .input>div,.form-content .form-enter-key .input>div{display:-ms-flexbox;display:flex}.form-content .form-create-pass .input>div>p,.form-content .form-enter-key .input>div>p{width:-webkit-max-content;width:-moz-max-content;width:max-content}.form-content .form-create-pass .input>div .popover-area2,.form-content .form-enter-key .input>div .popover-area2{top:0}.form-content .form-walet-data .input{width:100%}.form-content .form-upload-file .button{margin-top:18px}nav{width:100%;height:90px;padding:0 48px;background:#f9fafc;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:45px}@media (max-width:1359px){nav .logo{margin-right:30px!important}}@media (max-width:1279px){nav .logo{width:30px;overflow:hidden}}nav:after{-webkit-box-shadow:0 4px 50px rgba(49,151,247,.1);box-shadow:0 4px 50px rgba(49,151,247,.1)}nav:after,nav:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:1}nav:before{-webkit-box-shadow:0 60px 80px rgba(132,149,156,.15);box-shadow:0 60px 80px rgba(132,149,156,.15)}nav>*{z-index:2}nav .logo{position:relative;left:0;top:0;margin-right:90px}nav .link{padding:34px 30px 32px;font-size:18px;font-weight:700;text-transform:uppercase;border-radius:10px}nav .link.active{color:#3193f5;background:#fff;-webkit-box-shadow:0 30px 50px rgba(47,128,237,.2);box-shadow:0 30px 50px rgba(47,128,237,.2)}nav .profile-info{position:absolute;right:0;height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}nav .profile-info .info{border-right:2px solid rgba(200,200,220,.2);padding-right:32px;text-align:right}nav .profile-info .info .amt{font-size:24px;font-weight:700}nav .profile-info .info .amt span{font-size:14px;text-transform:uppercase}nav .profile-info .info .address{color:#c8c8dc;font-size:14px;line-height:19px;padding-top:2px}nav .profile-info .info .address img{bottom:-2px;cursor:pointer}nav .profile-info .logout{width:105px;height:100%;background-image:url(/static/media/logout.4436b628.svg);background-size:25px 18px;background-position:50%;background-repeat:no-repeat;cursor:pointer}.copy{background:transparent;border:none;cursor:pointer}.left-section{width:417px;height:calc(100vh - 90px - 42px - 60px);position:absolute;left:48px;top:132px;z-index:2}.left-section .wallet-info{width:100%;height:254px;padding:36px 30px;border-radius:15px;background:-webkit-gradient(linear,right top,left top,from(#2f80ed),to(#33adff));background:-webkit-linear-gradient(right,#2f80ed,#33adff);background:-o-linear-gradient(right,#2f80ed 0,#33adff 100%);background:linear-gradient(270deg,#2f80ed 0,#33adff);margin-bottom:48px;-webkit-box-shadow:0 10px 20px rgba(47,128,237,.35);box-shadow:0 10px 20px rgba(47,128,237,.35)}.left-section .wallet-info p{color:#fff;font-weight:700}.left-section .wallet-info .title .copy{color:#fff;font-size:12px;font-weight:500;float:right;opacity:.5}.left-section .wallet-info .balance{font-size:42px;line-height:56px}.left-section .wallet-info .balance span{color:#fff;font-weight:700;text-transform:uppercase}.left-section .wallet-info .conversions{opacity:.5;font-weight:400;margin:-8px 0 30px}.left-section .wallet-info .key{margin-top:6px;font-weight:400;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.left-section .delegates-list .title{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;width:100%;height:40px;margin-bottom:24px}.left-section .delegates-list .list{width:100%;max-height:calc(100vh - 90px - 42px - 254px - 45px - 64px - 114px);overflow:hidden;border-radius:15px;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);padding:46px 0 60px;background:#fff}.left-section .delegates-list .list .head{background:#fff!important;display:-ms-flexbox;display:flex;width:100%;position:absolute;left:0;top:0;padding:17px 30px 12px;border-bottom:1px solid #dcdcf0;border-radius:15px 15px 0 0}.left-section .delegates-list .list .head p{font-size:12px;font-weight:700}.left-section .delegates-list .list .head .rank{width:30px;text-align:right;margin-right:30px}.left-section .delegates-list .list .head .address{width:230px;text-align:left;padding-left:30px}.left-section .delegates-list .list .delegate{background:#fff;display:-ms-flexbox;display:flex;padding:21px 30px 20px;height:60px}.left-section .delegates-list .list .delegate:nth-child(2n){background:#fbfbfe}.left-section .delegates-list .list .delegate p{font-size:14px;font-weight:500}.left-section .delegates-list .list .delegate .rank{width:30px;text-align:right}.left-section .delegates-list .list .delegate .address{width:230px;text-align:left;padding-left:30px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.left-section .delegates-list .list .delegate .amount{margin-left:auto}.left-section .delegates-list .list .all{background:#fff!important;padding:19px 30px 18px;border-top:1px solid #dcdcf0;border-radius:0 0 15px 15px;color:#3193f5;font-weight:500;text-align:center;display:block;width:100%;height:60px;position:absolute;bottom:0;left:0}.left-section form h2{color:#3193f5;line-height:115%;margin-bottom:29px}.left-section form ::-webkit-input-placeholder{color:#dcdcf0}.left-section form ::-moz-placeholder{color:#dcdcf0}.left-section form :-ms-input-placeholder{color:#dcdcf0}.left-section form :-moz-placeholder{color:#dcdcf0}.left-section form .input{width:100%;margin-bottom:30px}.left-section form .input.invalid>input{border-color:#df4c4c!important}.left-section form .input.invalid .error{display:block}.left-section form .input.invalid ::-webkit-input-placeholder{color:rgba(223,76,76,.5)}.left-section form .input.invalid ::-moz-placeholder{color:rgba(223,76,76,.5)}.left-section form .input.invalid :-ms-input-placeholder{color:rgba(223,76,76,.5)}.left-section form .input.invalid :-moz-placeholder{color:rgba(223,76,76,.5)}.left-section form .input .error{color:#df4c4c;font-size:10px;line-height:13px;font-weight:400;display:none;padding:0;text-transform:none;margin:2px 0 0}.left-section form .input p{width:100%;font-size:14px;line-height:19px;font-weight:700;text-transform:uppercase;margin-bottom:12px}.left-section form .input p.required:after{content:" *";color:#df4c4c}.left-section form .input p span{position:absolute;padding-left:16px;top:1px;font-weight:400;text-transform:none;color:#c8c8dc}.left-section form .input p .copy{color:#3193f5;font-weight:500;position:absolute;right:0;top:0;font-size:16px;border:none;background:transparent;cursor:pointer}.left-section form .input input{width:100%;border:1px solid #dcdcf0;padding:15px 18px;font-size:16px;border-radius:6px;z-index:2}.left-section form .input input.disable{background:#f8f8fb;border-color:#f8f8fb}.left-section form .input input.search{padding-left:53px;background-image:url(/static/media/search.462a8def.svg);background-position:18px 50%;background-repeat:no-repeat}.left-section form .input .fee{display:block;width:100%;background:rgba(220,220,240,.1);border:1px solid rgba(220,220,240,.25);border-radius:0 0 15px 15px;padding:18px 18px 13px;top:-6px;font-weight:700}.left-section form .input .search-results{width:100%;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.left-section form .input .search-results .result{margin-top:12px;height:23px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0 6px;background:rgba(220,220,240,.1);border:1px solid rgba(220,220,240,.25);border-radius:6px;margin-right:12px}.left-section form .input .search-results .result span{font-size:14px;margin-right:8px}.left-section form .input .search-results .result img{cursor:pointer}.left-section .create-transaction{padding:30px;border-radius:15px;overflow:hidden;background:#fff;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1)}.left-section .create-transaction .data-input-block{display:-ms-flexbox;display:flex}.left-section .create-transaction .data-input-block>div{width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:16px 10px;min-width:120px;margin-left:10px}@media (max-height:768px){.left-section .create-transaction{padding-bottom:30px}.left-section .create-transaction .input{margin-bottom:24px}.left-section .create-transaction h2{margin-bottom:20px}}.left-section .delegate-form{padding:91px 30px 60px;border-radius:15px;overflow:hidden;background:#fff;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1)}@media (max-height:768px){.left-section .delegate-form{padding-bottom:30px}.left-section .delegate-form .fee-amount,.left-section .delegate-form .input{margin-bottom:24px}.left-section .delegate-form h2{margin-bottom:20px}}.left-section .delegate-form .nav{position:absolute;left:0;top:0;width:100%;height:60px;padding:23px 30px 0;border-bottom:1px solid #dcdcf0}.left-section .delegate-form .nav a{font-size:14px;font-weight:700;color:#c8c8dc;height:100%;margin-right:24px;display:block;float:left;width:-webkit-max-content;width:-moz-max-content;width:max-content}.left-section .delegate-form .nav a.active{color:#3193f5}.left-section .delegate-form .nav a.active:after{content:"";position:absolute;left:0;bottom:-1px;width:100%;height:3px;background:#3193f5}.left-section .fee-amount{padding:16px 18px;margin-bottom:36px;background:#f8f8fb;border-radius:6px;font-weight:700}.left-section .fee-amount span{color:#c8c8dc;font-weight:400}.corner-fix{border-radius:0 15px 15px 15px!important}.table-section{width:calc(100% - 48px - 417px - 48px - 48px);position:absolute;top:132px;right:48px;z-index:2}.table-section .pagination{margin-top:21px;float:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.table-section .pagination .line{height:19px;width:1px;margin:0 12px;background:#dcdcf0}.table-section .pagination a{color:#3193f5;text-transform:uppercase;font-size:14px;font-weight:700;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.table-section .pagination a img{width:16px;opacity:.5;cursor:pointer;top:-1px}.table-section .pagination .next img{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);margin-left:6px}.table-section .pagination .prev img{margin-right:7px}.table-section .title{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:24px;height:40px}.table-section .tabs-area{display:-ms-flexbox;display:flex;z-index:2;overflow:hidden;padding:24px 24px 0;-webkit-transform:translateX(-24px);-ms-transform:translateX(-24px);transform:translateX(-24px);margin-top:-24px}.table-section .tabs-area .tab{padding:18px 30px 12px;background:#fff;border-radius:15px 15px 0 0;margin-right:6px;overflow:hidden;cursor:pointer;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1)}.table-section .tabs-area .tab span{color:#c8c8dc}.table-section .tabs-area .tab span:first-child{font-weight:700;margin-right:4px}.table-section .tabs-area .tab.active span:first-child{color:#3193f5}.table-section .tabs-area .tab.active:after{display:none}.table-section .tabs-area .tab:after{content:"";position:absolute;left:0;bottom:-50px;width:100%;height:50px;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.25);box-shadow:0 15px 100px rgba(132,149,156,.25)}.table-section .list{width:100%;max-height:calc(100vh - 90px - 42px - 40px - 24px - 111px);overflow:hidden;border-radius:15px;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);padding:46px 0 60px;background:#fff}.table-section .list.no-paginate{max-height:calc(100vh - 90px - 42px - 40px - 24px - 57px)}.table-section .list.scroll{overflow:visible;padding-bottom:0}.table-section .list .scroll-area{max-height:calc(100vh - 90px - 42px - 40px - 24px - 57px - 46px);overflow:auto;border-radius:0 0 15px 15px}.table-section .list.list-votes .head .node-id{-webkit-transform:translateX(36px);-ms-transform:translateX(36px);transform:translateX(36px)}.table-section .list.list-votes .head .amount-delegate{-webkit-transform:translateX(62px);-ms-transform:translateX(62px);transform:translateX(62px)}.table-section .list.list-votes .head .date-delegate{-webkit-transform:translateX(-24px);-ms-transform:translateX(-24px);transform:translateX(-24px)}.table-section .list.list-votes .delegate .address{left:18px}.table-section .list.list-votes .delegate .node-id{left:calc(20% + 18px)}.table-section .list.list-votes .delegate .amount-delegate{left:40%}.table-section .list.list-votes .delegate .date-delegate{right:150px}.table-section .list .head{background:#fff!important;display:-ms-flexbox;display:flex;position:absolute;left:0;top:0;width:100%;padding:17px 30px 12px;border-bottom:1px solid #dcdcf0;border-radius:15px 15px 0 0}.table-section .list .head p{font-size:12px;font-weight:700}.table-section .list .head p span{font-size:12px;font-weight:400;color:#c8c8dc;text-transform:uppercase}.table-section .list .head .from,.table-section .list .head .to{width:16%}.table-section .list .head .amount,.table-section .list .head .date{text-align:right;width:20%}.table-section .list .head .fee{width:12%;text-align:right;margin-right:0}.table-section .list .head .rank{width:30px;text-align:right;margin-right:30px}.table-section .list .head .address{width:20%}.table-section .list .head .node-id{width:20%;-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.table-section .list .head .amount-delegate{width:20%;text-align:right;-webkit-transform:translateX(48px);-ms-transform:translateX(48px);transform:translateX(48px)}.table-section .list .head .date-delegate{width:40%;padding-left:90px;text-align:right}.table-section .list .head .btn{width:86px;margin-left:30px}.table-section .list .delegate,.table-section .list .transaction{background:#fff;display:-ms-flexbox;display:flex;padding:21px 30px 20px;height:60px}.table-section .list .delegate:nth-child(2n),.table-section .list .transaction:nth-child(2n){background:#fbfbfe}.table-section .list .delegate p,.table-section .list .transaction p{font-size:14px;font-weight:500;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;padding:12px 12px 11px;white-space:nowrap;background:inherit;z-index:1}.table-section .list .delegate p.copy:hover,.table-section .list .transaction p.copy:hover{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:none;z-index:2;-webkit-box-shadow:0 1px 20px rgba(209,209,220,.6);box-shadow:0 1px 20px rgba(209,209,220,.6);padding-right:38px}.table-section .list .delegate p.copy:hover:after,.table-section .list .transaction p.copy:hover:after{display:block}.table-section .list .delegate p.copy,.table-section .list .transaction p.copy{cursor:pointer;border-radius:5px}.table-section .list .delegate p.copy:after,.table-section .list .transaction p.copy:after{content:"";width:14px;height:14px;position:absolute;right:12px;top:14px;background-image:url(/static/media/copy.37642ea4.svg);background-size:14px;z-index:2;display:none}.table-section .list .delegate .rank,.table-section .list .transaction .rank{width:60px;text-align:right;position:absolute;left:6px;top:9px}.table-section .list .delegate .address,.table-section .list .transaction .address{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:20%;position:absolute;left:78px;top:9px}.table-section .list .delegate .node-id,.table-section .list .transaction .node-id{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:20%;position:absolute;left:calc(20% + 78px);top:9px}.table-section .list .delegate .amount-delegate,.table-section .list .transaction .amount-delegate{width:20%;text-align:right;position:absolute;left:calc(40% + 78px);top:9px;overflow:visible}.table-section .list .delegate .date-delegate,.table-section .list .transaction .date-delegate{width:calc(30% - 120px);text-align:right;position:absolute;right:18px;top:9px}.table-section .list .delegate .your-vote,.table-section .list .transaction .your-vote{position:absolute;left:calc(100% + 12px);top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:2px 6px;white-space:nowrap;background:#a0cd60;color:#fff;font-size:14px;border-radius:5px;z-index:2;-webkit-transition:.15s ease-in;-o-transition:.15s ease-in;transition:.15s ease-in;cursor:default}.table-section .list .delegate .your-vote img,.table-section .list .transaction .your-vote img{width:8px;height:8px;margin-left:6px;cursor:pointer;-webkit-filter:brightness(800%) contrast(500%);filter:brightness(800%) contrast(500%)}.table-section .list .delegate .btn,.table-section .list .transaction .btn{width:86px;margin-left:30px;position:absolute;right:36px;top:9px;text-align:center}.table-section .list .delegate .btn span,.table-section .list .transaction .btn span{position:absolute;left:0;top:0;padding:10px 0 7px;width:100%;background:#fff;border-radius:6px;-webkit-box-shadow:0 10px 20px rgba(132,149,156,.15);box-shadow:0 10px 20px rgba(132,149,156,.15);font-size:14px;font-weight:700;text-transform:uppercase;cursor:pointer}.table-section .list .delegate .btn .pending{-webkit-box-shadow:none;box-shadow:none;background:#dcdcf0;color:#fff;cursor:default;pointer-events:none}.table-section .list .head .hash-title{width:16%}.table-section .list .transaction .hash-row{color:#3193f5}.table-section .list .delegate .hash-row,.table-section .list .transaction .hash-row{width:16%;left:18px;top:9px;position:absolute;padding-right:12px!important}.table-section .list .transaction .hash-row-failed{color:#df433f}.table-section .list .delegate .hash-row.copy:after,.table-section .list .transaction .hash-row.copy:after{display:none!important}.table-section .list .delegate .from,.table-section .list .delegate .to,.table-section .list .transaction .from,.table-section .list .transaction .to{width:16%;position:absolute;left:calc(16% + 4px);top:9px}.table-section .list .delegate .to,.table-section .list .transaction .to{left:calc(16% + 16% + 4px)}.table-section .list .delegate .amount,.table-section .list .delegate .date,.table-section .list .transaction .amount,.table-section .list .transaction .date{text-align:right;width:20%;position:absolute;right:32%;top:9px}.table-section .list .delegate .amount,.table-section .list .transaction .amount{right:calc(12% + 12px)}.table-section .list .delegate .fee,.table-section .list .transaction .fee{width:12%;text-align:right;margin-right:0;position:absolute;right:18px;top:9px}.table-section .list .all{background:#fff!important;padding:19px 30px 18px;border-top:1px solid #dcdcf0;border-radius:0 0 15px 15px;color:#3193f5;font-weight:500;text-align:center;display:block;width:100%;height:60px;position:absolute;bottom:0;left:0;z-index:5}.table-section .list .all span{color:#b9dbfd}.view-all-link{color:#3193f5;text-transform:uppercase;font-size:14px;font-weight:700;float:right;margin-top:20px}.popup-area{width:100%;height:100vh;position:fixed;left:0;top:0;background:rgba(28,28,39,.6);z-index:10}.popup-area .popup{width:600px;padding:36px 36px 42px;background:#fff;border-radius:15px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-65%);-ms-transform:translate(-50%,-65%);transform:translate(-50%,-65%)}.popup-area .popup.success{width:476px;padding:60px 36px 72px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center;text-align:center}.popup-area .popup.success h2{margin:36px 0 60px}.popup-area .popup.success .button{width:180px;padding:16px 0}.popup-area .popup h2{color:#3193f5;line-height:115%;margin-bottom:29px}.popup-area .popup .info{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:18px 0;border-top:1px solid #dcdcf0}.popup-area .popup .info span{width:-webkit-max-content;width:-moz-max-content;width:max-content;text-align:right;text-transform:uppercase;max-width:420px;height:-webkit-max-content;height:-moz-max-content;height:max-content;max-height:100px;word-wrap:break-word;overflow-y:auto}.popup-area .popup .info .title{text-align:left;font-weight:700}.popup-area .popup .info p{font-weight:700}.popup-area .popup .info .lite{font-weight:400;color:#c8c8dc}.popup-area .popup .button-area{display:-ms-flexbox;display:flex;padding-top:36px;border-top:1px solid #dcdcf0}.popup-area .popup .button-area .button{width:215px;padding:16px 0;margin-right:24px}.popup-area .popup .button-area .white{-webkit-box-shadow:none;box-shadow:none;-webkit-transition:.175s ease-in;-o-transition:.175s ease-in;transition:.175s ease-in}.popup-area .popup .button-area .white:hover{-webkit-box-shadow:0 10px 20px rgba(132,149,156,.15);box-shadow:0 10px 20px rgba(132,149,156,.15)}.popup-area .popup .button-area .white span{color:#3193f5}.cards-container{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:30px;padding-top:108px;margin:0 auto;max-width:1505px}@media (max-width:1580px){.cards-container{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;grid-template-columns:repeat(3,1fr)}}@media (max-width:1200px){.cards-container{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;grid-template-columns:repeat(2,1fr)}}.cards-container>*{width:354px;height:189px;background:#fff;-webkit-box-shadow:0 20px 40px rgba(132,149,156,.05);box-shadow:0 20px 40px rgba(132,149,156,.05);border-radius:15px;padding:24px 30px 32px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;overflow:hidden}.cards-container>:after{content:"";background:url(/static/media/back-circle.40e9c330.svg) no-repeat;position:absolute;top:-125px;right:-110px;width:297px;height:297px}.cards-container>*>:first-child{padding-bottom:6px;font-size:24px;line-height:27px;font-weight:700}.cards-container>*>:nth-child(2){padding-bottom:6px;top:0;margin-bottom:auto;font-size:14px;line-height:19px;color:rgba(51,51,81,.5)}.cards-container>*>:nth-child(3){font-size:48px;line-height:54px;font-weight:700;color:#3193f4;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.cards-container>*>:nth-child(3)>:first-child{font-size:48px;line-height:54px;font-weight:700;color:#3193f4;margin-right:10px}.cards-container>*>:nth-child(3)>:nth-child(2){font-size:18px;line-height:19px;font-weight:700;color:#3193f4}.cards-container>:first-child:after{-webkit-animation:spin1 6s infinite linear;animation:spin1 6s infinite linear}@-webkit-keyframes spin1{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin1{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.cards-container>:nth-child(2):after{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);-webkit-animation:spin2 6s infinite linear;animation:spin2 6s infinite linear}@-webkit-keyframes spin2{0%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(540deg);transform:rotate(540deg)}}@keyframes spin2{0%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(540deg);transform:rotate(540deg)}}.cards-container>:nth-child(3):after{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);-webkit-animation:spin3 6s infinite linear;animation:spin3 6s infinite linear}@-webkit-keyframes spin3{0%{-webkit-transform:rotate(30deg);transform:rotate(30deg)}to{-webkit-transform:rotate(390deg);transform:rotate(390deg)}}@keyframes spin3{0%{-webkit-transform:rotate(30deg);transform:rotate(30deg)}to{-webkit-transform:rotate(390deg);transform:rotate(390deg)}}.cards-container>:nth-child(4):after{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-animation:spin4 6s infinite linear;animation:spin4 6s infinite linear}@-webkit-keyframes spin4{0%{-webkit-transform:rotate(60deg);transform:rotate(60deg)}to{-webkit-transform:rotate(420deg);transform:rotate(420deg)}}@keyframes spin4{0%{-webkit-transform:rotate(60deg);transform:rotate(60deg)}to{-webkit-transform:rotate(420deg);transform:rotate(420deg)}}.cards-container>:nth-child(5):after{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:spin5 6s infinite linear;animation:spin5 6s infinite linear}@-webkit-keyframes spin5{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}.cards-container>:nth-child(6):after{-webkit-animation:spin5 6s infinite linear;animation:spin5 6s infinite linear}@keyframes spin5{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.cards-container>:nth-child(7):after{-webkit-transform:rotate(110deg);-ms-transform:rotate(110deg);transform:rotate(110deg);-webkit-animation:spin6 6s infinite linear;animation:spin6 6s infinite linear}@-webkit-keyframes spin6{0%{-webkit-transform:rotate(110deg);transform:rotate(110deg)}to{-webkit-transform:rotate(470deg);transform:rotate(470deg)}}@keyframes spin6{0%{-webkit-transform:rotate(110deg);transform:rotate(110deg)}to{-webkit-transform:rotate(470deg);transform:rotate(470deg)}}.cards-container>:nth-child(8):after{-webkit-transform:rotate(50deg);-ms-transform:rotate(50deg);transform:rotate(50deg);-webkit-animation:spin8 6s infinite linear;animation:spin8 6s infinite linear}@-webkit-keyframes spin8{0%{-webkit-transform:rotate(50deg);transform:rotate(50deg)}to{-webkit-transform:rotate(410deg);transform:rotate(410deg)}}@keyframes spin8{0%{-webkit-transform:rotate(50deg);transform:rotate(50deg)}to{-webkit-transform:rotate(410deg);transform:rotate(410deg)}}.tables-wrapper{padding:48px 0 72px;display:grid;grid-template-columns:repeat(2,1fr);grid-column-gap:30px;grid-row-gap:48px;margin:0 auto;max-width:1505px}@media (max-width:1580px){.tables-wrapper{max-width:1112px;grid-template-columns:repeat(1,1fr)}}@media (max-width:1200px){.tables-wrapper{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;grid-template-columns:repeat(1,1fr)}}.tables-wrapper .table-block>h3{padding-bottom:24px}.tables-wrapper .table-block .list{width:100%;overflow:hidden;border-radius:15px;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);padding:46px 0 0;background:#fff}.tables-wrapper .table-block .list .head{background:#fff!important;display:-ms-flexbox;display:flex;width:100%;position:absolute;left:0;top:0;padding:17px 30px 12px;border-bottom:1px solid #dcdcf0;border-radius:15px 15px 0 0}.tables-wrapper .table-block .list .head p{font-size:12px;font-weight:700}.tables-wrapper .table-block .list .head .block-number{width:80px;text-align:right;margin-right:57px}.tables-wrapper .table-block .list .head .hash{width:230px;text-align:left}.tables-wrapper .table-block .list .delegate{background:#fff;display:-ms-flexbox;display:flex;padding:21px 30px 20px;height:60px}.tables-wrapper .table-block .list .delegate:nth-child(2n){background:#fbfbfe}.tables-wrapper .table-block .list .delegate p{font-size:14px;font-weight:500}.tables-wrapper .table-block .list .delegate .block-number{width:80px;text-align:right;margin-right:57px}.tables-wrapper .table-block .list .delegate .hash{text-align:left;color:#2c8ded;cursor:pointer;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.tables-wrapper .table-block .list .all{background:#fff!important;padding:19px 30px 18px;border-top:1px solid #dcdcf0;border-radius:0 0 15px 15px;color:#3193f5;font-weight:500;text-align:center;display:block;width:100%;height:60px;position:absolute;bottom:0;left:0}.view-list-wrapper{position:absolute;width:992px;left:50%;top:156px;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}@media (max-width:1080px){.view-list-wrapper{width:calc(100% - 80px)}}.view-list-wrapper .table-block>h2{padding-bottom:24px;line-height:48px}.view-list-wrapper .table-block .list{width:100%;overflow:hidden;border-radius:15px;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);padding:46px 0 0;background:#fff}.view-list-wrapper .table-block .list .head{background:#fff!important;display:-ms-flexbox;display:flex;width:100%;position:absolute;left:0;top:0;padding:17px 30px 12px;border-bottom:1px solid #dcdcf0;border-radius:15px 15px 0 0}.view-list-wrapper .table-block .list .head p{font-size:12px;font-weight:700}.view-list-wrapper .table-block .list .head .block-number{width:80px;text-align:right;margin-right:57px}.view-list-wrapper .table-block .list .head .hash{width:230px;text-align:left}.view-list-wrapper .table-block .list .delegate{background:#fff;display:-ms-flexbox;display:flex;padding:21px 30px 20px;height:60px}.view-list-wrapper .table-block .list .delegate:nth-child(2n){background:#fbfbfe}.view-list-wrapper .table-block .list .delegate p{font-size:14px;font-weight:500}.view-list-wrapper .table-block .list .delegate .block-number{width:80px;text-align:right;margin-right:57px}.view-list-wrapper .table-block .list .delegate .hash{text-align:left;color:#2c8ded;cursor:pointer;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.view-list-wrapper .pagination{margin-top:21px;float:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.view-list-wrapper .pagination .line{height:19px;width:1px;margin:0 12px;background:#dcdcf0}.view-list-wrapper .pagination a{color:#3193f5;text-transform:uppercase;font-size:14px;font-weight:700;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.view-list-wrapper .pagination a img{width:16px;opacity:.5;cursor:pointer;top:-1px}.view-list-wrapper .pagination .next img{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);margin-left:6px}.view-list-wrapper .pagination .prev img{margin-right:7px}.popup-area .info-popup{background:#fff;-webkit-box-shadow:0 15px 100px rgba(132,149,156,.1);box-shadow:0 15px 100px rgba(132,149,156,.1);border-radius:15px;padding:48px 48px 60px;position:absolute;left:50%;top:60%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:80%}.popup-area .info-popup .close-popup{font-size:18px;line-height:24px;font-weight:700;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:absolute;right:0;top:-3%;cursor:pointer}.popup-area .info-popup .close-popup>img{top:-2px;margin-left:12px;width:18px;height:18px}.popup-area .info-popup .close-popup:hover{opacity:.8}.popup-area .info-popup .pagination{position:absolute;bottom:-48px;right:0;margin-top:21px;float:right;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.popup-area .info-popup .pagination .line{height:19px;width:1px;margin:0 12px;background:#dcdcf0}.popup-area .info-popup .pagination a{color:#fff;text-transform:uppercase;font-size:14px;font-weight:700;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.popup-area .info-popup .pagination a img{width:16px;cursor:pointer;top:-1px}.popup-area .info-popup .pagination .next,.popup-area .info-popup .pagination .prev{cursor:pointer}.popup-area .info-popup .pagination .next img{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);margin-left:6px}.popup-area .info-popup .pagination .prev img{margin-right:7px}.popup-area .info-popup .main-title{font-size:36px;line-height:36px}.popup-area .info-popup .subtitle{color:#3193f5;font-size:21px;line-height:45px;padding-bottom:36px}.popup-area .info-popup .info{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:18px 0;border-top:1px solid #dcdcf0}.popup-area .info-popup .info span{max-width:80%;text-align:right;text-transform:uppercase;word-wrap:break-word}.popup-area .info-popup .info .title{text-align:left;font-weight:700}.popup-area .info-popup .info p{font-weight:700}.popup-area .info-popup .info .lite{font-weight:400;color:#c8c8dc}.transaction-result-wrapper{width:100%;height:150px;overflow-y:auto}.transaction-result-wrapper .transaction-result-block{padding:10px 20px 10px 0;text-transform:uppercase;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1px solid #dcdcf0}.transaction-result-wrapper .transaction-result-block:last-child{border-bottom:none}.transaction-result-wrapper .transaction-result-block .results-info{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:5px;-webkit-box-sizing:border-box;box-sizing:border-box}.transaction-result-wrapper .transaction-result-block .results-info span{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;max-width:60%}.input-fee-tip{color:#3193f5!important}.no-upper-case{text-transform:none!important}.form-content form .input .error{display:inline-block;left:auto;font-size:medium}.left-section .wallet-info .conversions{height:21px}.form-content form .input.invalid>textarea{border-color:#df4c4c;color:#df4c4c}.form-content form{height:auto;min-height:510px}.dnd input{top:0;left:0}form .input .error{position:absolute;left:auto;right:0;top:0;color:#df4c4c;font-weight:500;display:block}.left-section form .input .error,form .input.invalid .error{display:block}.left-section form .input .error{font-size:14px;line-height:14px}.form-content form .input p span{top:0;left:auto}.form-content form .generate+p{width:auto;min-width:485px}.list .all span{color:#b9dbfd}.disclaimer .link{color:#3193f5;font-weight:500;cursor:pointer}.disclaimer .link:hover{opacity:.8}.popup-area .info span.wrapable-address{word-wrap:break-word;width:340px}.infinity-scroll-container{overflow-y:auto;max-height:calc(100vh - 90px - 42px - 40px - 24px - 111px - 46px)}.left-section .wallet-info .title{text-transform:uppercase}.z-index-3{z-index:3}.recall-popup .recall-info-fee>span{margin-bottom:0}.error-popup,.recall-popup .recall-info-fee>span{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.error-popup{-ms-flex-direction:column;flex-direction:column}.error-popup-message{padding-bottom:40px;font-size:1.2em;color:#df4c4c}.success-recall-popup{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-align:center;align-items:center}.success-recall-popup .success-popup-message{color:#3193f5;padding-bottom:40px;font-size:1.6em} +/*# sourceMappingURL=main.9dffbc83.css.map*/ \ No newline at end of file diff --git a/src/main/resources/static/static/css/main.9dffbc83.css.map b/src/main/resources/static/static/css/main.9dffbc83.css.map new file mode 100644 index 000000000..2a85f7fa7 --- /dev/null +++ b/src/main/resources/static/static/css/main.9dffbc83.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["components-ui/InfoPopup.css","styles/index.css","styles/override.css"],"names":[],"mappings":"AAAA,YACE,WACA,aACA,eACA,OACA,MACA,6BACA,UAAY,CAEd,wBACE,gBACA,qDACQ,6CACR,mBACA,uBACA,kBACA,SACA,QACA,uCACI,mCACI,+BACR,YAAc,CAEhB,qCACE,eACA,iBACA,gBACA,WACA,oBACA,aACA,sBACI,mBACJ,kBACA,QACA,UACA,cAAgB,CAElB,yCACE,SACA,iBACA,WACA,WAAa,CAEf,2CACE,UAAa,CAEf,oCACE,kBACA,aACA,QACA,gBACA,YACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,0CACE,YACA,UACA,cACA,kBAAoB,CAEtB,sCACE,WACA,yBACA,eACA,gBACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,0CACE,WACA,eACA,QAAU,CAEZ,oFAEE,cAAgB,CAElB,8CACE,iCACI,6BACI,yBACR,eAAiB,CAEnB,8CACE,gBAAkB,CAEpB,oCACE,cACA,eACA,gBAAkB,CAEpB,kCACE,cACA,eACA,iBACA,mBAAqB,CAEvB,8BACE,oBACA,aACA,sBACI,8BACJ,eACA,4BAA8B,CAEhC,mCACE,cACA,iBACA,yBACA,oBAAsB,CAExB,qCACE,gBACA,eAAiB,CAEnB,gCACE,eAAiB,CAEnB,oCACE,gBACA,aAAe,CAEjB,qBACE,mBAAqB,CAEvB,uBACE,gBAAkB,CCnIpB,WACE,gBACA,gBACA,iCAAmC,CAErC,WACE,gBACA,gBACA,iCAAqC,CAEvC,WACE,gBACA,gBACA,iCAAoC,CAEtC,WACE,gBACA,gBACA,iCAAkC,CAEpC,GACE,eACA,gBAAkB,CAIpB,MAHE,gBACA,wBAA0B,CAO3B,GAJC,eAEA,gBAAkB,CAGpB,GACE,eACA,iBAEA,wBAA0B,CAE5B,MAHE,eAAiB,CAMlB,GAFC,cAAgB,CAGlB,GAEE,eAAiB,CAEnB,KAHE,cAAgB,CAcjB,EAVC,gBAEA,cACA,qBACA,SACA,UACA,8BACQ,sBACR,kBACA,SAAW,CAEb,GACE,oBAAsB,CAExB,GACE,cACA,cAAgB,CAElB,KACE,kBACA,kBAAoB,CAEtB,QACE,WACA,aACA,iBACA,WAAa,CAEf,OACE,4BAA+B,CAEjC,OACE,4BAA+B,CAEjC,OACE,4BAA+B,CAEjC,OACE,4BAA+B,CAEjC,OACE,yBAA4B,CAE9B,MACE,0BACA,uBACA,kBACA,YACA,cACA,kBACA,UACA,SACA,SAAW,CAEb,0BACE,MACE,QAAU,CACX,CAEH,QACE,cACA,gBACA,SACA,0BACA,uBACA,kBACA,mBACA,uBACA,mBACA,mDACQ,2CACR,eACA,iBAAmB,CAErB,gBACE,wBACQ,gBACR,eACA,mBAAqB,CAEvB,oBACE,YAAc,CAEhB,cACE,qDACQ,6CACR,6BAAqC,CAEvC,mBACE,aAAe,CAEjB,kBACE,YAAc,CAEhB,aACE,iBAAmB,CAErB,kBACE,cAAgB,CAElB,cACE,iBACA,kBAAoB,CAEtB,mBACE,eACA,gBACA,mBAAqB,CAEvB,kBACE,iDACA,4CACA,yCACA,MAAQ,CAEV,YACE,kBACA,WACA,MACA,WACA,YACA,yGACA,sEACA,wEACA,iEACA,UACA,gCACA,2BACA,uBAA0B,CAE5B,aACE,UACA,WACA,eACA,cACA,gBACA,yBACA,kBAAoB,CAEtB,kBACE,gBACA,WACA,mBAAqB,CAEvB,yBACE,UACA,kBACA,OACA,MACA,WACA,YACA,eACA,SAAW,CAEb,YACE,eACA,SACA,OACA,aAAe,CAEjB,eACE,WACA,kBACA,yBACA,yBACA,kBACA,oBACA,aACA,sBACI,mBACJ,sBACI,6BAA+B,CAErC,oBACE,eACA,iBACA,gBACA,0BACG,sBAAwB,CAE7B,mBACE,WACA,YACA,eACA,iBACA,UAAa,CAEf,KACE,WACA,kBACA,sBACA,+CACA,4BACA,0BACA,oBACA,aACA,sBACI,mBACJ,qBACI,uBACJ,cAAgB,CAElB,kBACE,WACA,sCACA,uBACA,wBACA,kBACA,SACA,QACA,iBAAmB,CAErB,gBACE,aAAe,CAEjB,UACE,eACA,iBACA,aAAe,CAEjB,WACE,kBACA,WACA,YACA,UACA,eACA,SAAW,CAEb,cACE,0BACA,uBACA,kBACA,cACA,UAAY,CAEd,4BACE,WACA,YACA,SACA,gBAAkB,CAEpB,kCACE,cACA,WACA,YACA,+CACA,cAAgB,CAElB,mCACE,YAAc,CAKhB,yHACE,aAAe,CAEjB,uBACE,YACA,kBACA,SACA,OACA,uBACA,gBACA,kDACQ,0CACR,mBACA,eACA,UACA,YAAc,CAEhB,8BACE,WACA,kBACA,OACA,MACA,WACA,YACA,iDACQ,yCACR,kBAAoB,CAEtB,0BACE,oBACA,kBAAoB,CAEtB,6BACE,aACA,eACA,WACA,WACA,WACA,aACA,cAAgB,CAElB,eACE,WACA,YACA,SACA,gBAAkB,CAEpB,qBACE,cACA,WACA,YACA,+CACA,eACA,iBACA,eAAkB,CAEpB,oCACE,YAAc,CAEhB,qDACE,aAAe,CAEjB,kDACE,8CAAyC,CAE3C,iEACE,aAAe,CAEjB,wBACE,YACA,kBACA,MACA,UACA,gDACI,4CACI,wCACR,uBACA,gBACA,kDACQ,0CACR,mBACA,eACA,UACA,YAAc,CAEhB,+BACE,WACA,kBACA,OACA,MACA,WACA,YACA,iDACQ,yCACR,kBAAoB,CAEtB,2BACE,oBACA,kBAAoB,CAEtB,0BACE,0BACA,yBACA,6BAAgC,CAElC,8BACE,aACA,eACA,WACA,WACA,WACA,aACA,eACA,SAAW,CAEb,WACE,oBACA,aACA,mBACA,cACA,eACA,kBAAoB,CAEtB,gBACE,eACA,iBACA,cACA,iBACA,eAAiB,CAEnB,YACE,iBACA,aAAe,CAEjB,gBACE,WAAa,CAEf,iBACE,cACA,mBAAqB,CAEvB,cACE,cACA,eAAiB,CAEnB,iBACE,gBACA,kBACA,UACA,SACA,mCACI,+BACI,0BAAgC,CAE1C,mBACE,eACA,iBACA,mBAAqB,CAEvB,iBACE,WACA,aACA,+CACA,4BACA,mCACA,kBACA,QACA,OACA,KAAO,CAET,0BACE,iBACE,kCAAoC,CACrC,CAEH,0BACE,iBACE,kCAAoC,CACrC,CAEH,aACE,WACA,kBACA,OACA,QACA,gDACI,4CACI,uCAAyC,CAEnD,0BACE,aACE,cAAgB,CACjB,CAEH,0BACE,aACE,mCACI,+BACI,0BAAkC,CAC3C,CAEH,oBACE,WACA,oBACA,aACA,sBACI,8BACJ,gBAAkB,CAEpB,sBACE,oBACA,aACA,0BACI,sBACJ,uBACA,kBACA,uBACA,gBACA,mBACA,qDACQ,6CACR,iDACA,4CACA,wCAAgD,CAElD,4BACE,qDACQ,4CAAkD,CAE5D,0BACE,kBAAoB,CAEtB,cACE,kBACA,SACA,QACA,uCACI,mCACI,8BAAiC,CAE3C,0BACE,YAAc,CAEhB,oBACE,oBACA,aACA,sBACI,mBACJ,mBAAqB,CAEvB,sBACE,kBACA,WAAa,CAEf,0BACE,cACE,oDACI,gDACI,2CAA8C,CAExD,oBACE,gBAAoB,CACrB,CAEH,mBACE,YACA,aACA,gBACA,mBACA,qDACQ,6CACR,aACA,oBACA,aACA,0BACI,qBAAuB,CAE7B,2BACE,aAAe,CAEjB,+CACE,aAAe,CAEjB,sCACE,aAAe,CAEjB,0CACE,aAAe,CAEjB,qCACE,aAAe,CAEjB,sBACE,iBACA,iBAAmB,CAErB,yBACE,cACA,gBACA,eACA,oBACA,cACA,YACA,uBACA,cAAgB,CAElB,6BACE,WACA,kBAAoB,CAEtB,oCACE,YACA,oBACA,aACA,iBAAmB,CAErB,sCACE,eACA,gBACA,wBAA0B,CAE5B,wCACE,YACA,SACA,iBACA,cAAgB,CAElB,kCACE,oBACA,YAAc,CAEhB,mCACE,cACA,gBACA,kBACA,QACA,MACA,cAAgB,CAElB,0BACE,wBACA,kBAAoB,CAEtB,wCACE,qBACA,aAAe,CAEjB,yCACE,aAAe,CAEjB,8DAEE,wBAA8B,CAEhC,qDAEE,wBAA8B,CAEhC,yDAEE,wBAA8B,CAEhC,oDAEE,wBAA8B,CAEhC,iCACE,kBACA,OACA,aACA,eACA,cACA,gBACA,YAAc,CAEhB,4BACE,WACA,eACA,gBACA,yBACA,kBAAoB,CAEtB,2CACE,aACA,aAAe,CAEjB,iCACE,kBACA,kBACA,QACA,gBACA,oBACA,aAAe,CAEjB,kCACE,cACA,gBACA,kBACA,QACA,MACA,cAAgB,CAElB,mCACE,cACA,WACA,eACA,eACA,uBACA,yBACA,kBACA,gBACA,eACA,iBACA,aACA,iBACA,gBAAkB,CAEpB,2CACE,mBACA,oBAAsB,CAExB,gCACE,WACA,yBACA,kBACA,eACA,iBAAmB,CAErB,wCACE,mBACA,oBAAsB,CAExB,+CACE,YAAc,CAEhB,4DACE,8CAA6C,CAE/C,iEACE,+CAA6C,CAE/C,8CACE,kBACA,uBACA,WAAa,CAEf,+BACE,eACA,WACA,YACA,+CAAoD,CAEtD,oCACE,+CAAoD,CAEtD,4BACE,oBACA,aACA,kBACI,yBACJ,eACA,kBACA,QACA,KAAS,CAEX,iCACE,cACA,gBAAkB,CAEpB,6BACE,cAAgB,CAElB,+BACE,cACA,kBACA,YACA,oBACA,aAAe,CAEjB,gCACE,oBACA,aACA,sBACI,mBACJ,aAAe,CAEjB,wCACE,cACA,WAAa,CAEf,iFACE,WACA,kBAAoB,CAEtB,4EACE,kBAAoB,CAEtB,oFACE,oBACA,YAAc,CAEhB,wFACE,0BACA,uBACA,iBAAmB,CAErB,kHACE,KAAO,CAET,sCACE,UAAY,CAEd,wCACE,eAAiB,CAEnB,IACE,WACA,YACA,eACA,mBACA,oBACA,aACA,sBACI,mBACJ,kBAAoB,CAEtB,0BACE,UACE,2BAA8B,CAC/B,CAEH,0BACE,UACE,WACA,eAAiB,CAClB,CAEH,UAOE,kDACQ,yCAA+C,CAGzD,qBAVE,WACA,kBACA,OACA,MACA,WACA,YAGA,SAAW,CAYZ,WAHC,qDACQ,4CAAkD,CAG5D,MACE,SAAW,CAEb,UACE,kBACA,OACA,MACA,iBAAmB,CAErB,UACE,uBACA,eACA,gBACA,yBACA,kBAAoB,CAEtB,iBACE,cACA,gBACA,mDACQ,0CAAgD,CAE1D,kBACE,kBACA,QACA,YACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,wBACE,4CACA,mBACA,gBAAkB,CAEpB,6BACE,eACA,eAAiB,CAEnB,kCACE,eACA,wBAA0B,CAE5B,iCACE,cACA,eACA,iBACA,eAAiB,CAEnB,qCACE,YACA,cAAgB,CAElB,0BACE,YACA,YACA,gDACA,0BACA,wBACA,4BACA,cAAgB,CAElB,MACE,uBACA,YACA,cAAgB,CAElB,cACE,YACA,wCACA,kBACA,UACA,UACA,SAAW,CAEb,2BACE,WACA,aACA,kBACA,mBACA,iFACA,0DACA,4DACA,qDACA,mBACA,oDACQ,2CAAiD,CAE3D,6BACE,WACA,eAAiB,CAEnB,wCACE,WACA,eACA,gBACA,YACA,UAAa,CAEf,oCACE,eACA,gBAAkB,CAEpB,yCACE,WACA,gBACA,wBAA0B,CAE5B,wCACE,WACA,gBACA,kBAAoB,CAEtB,gCACE,eACA,gBACA,gBACA,0BACG,sBAAwB,CAE7B,qCACE,oBACA,aACA,sBACI,mBACJ,sBACI,8BACJ,WACA,YACA,kBAAoB,CAEtB,oCACE,WACA,mEACA,gBACA,mBACA,qDACQ,6CACR,oBACA,eAAiB,CAEnB,0CACE,0BACA,oBACA,aACA,WACA,kBACA,OACA,MACA,uBACA,gCACA,2BAA6B,CAE/B,4CACE,eACA,eAAiB,CAEnB,gDACE,WACA,iBACA,iBAAmB,CAErB,mDACE,YACA,gBACA,iBAAmB,CAErB,8CACE,gBACA,oBACA,aACA,uBACA,WAAa,CAEf,4DACE,kBAAoB,CAEtB,gDACE,eACA,eAAiB,CAEnB,oDACE,WACA,gBAAkB,CAEpB,uDACE,YACA,gBACA,kBACA,gBACA,0BACG,sBAAwB,CAE7B,sDACE,gBAAkB,CAEpB,yCACE,0BACA,uBACA,6BACA,4BACA,cACA,gBACA,kBACA,cACA,WACA,YACA,kBACA,SACA,MAAQ,CAEV,sBACE,cACA,iBACA,kBAAoB,CAEtB,+CACE,aAAe,CAEjB,sCACE,aAAe,CAEjB,0CACE,aAAe,CAEjB,qCACE,aAAe,CAEjB,0BACE,WACA,kBAAoB,CAEtB,wCACE,8BAAiC,CAEnC,yCACE,aAAe,CAEjB,8DAEE,wBAA8B,CAEhC,qDAEE,wBAA8B,CAEhC,yDAEE,wBAA8B,CAEhC,oDAEE,wBAA8B,CAEhC,iCACE,cACA,eACA,iBACA,gBACA,aACA,UACA,oBACA,cAAgB,CAElB,4BACE,WACA,eACA,iBACA,gBACA,yBACA,kBAAoB,CAEtB,2CACE,aACA,aAAe,CAEjB,iCACE,kBACA,kBACA,QACA,gBACA,oBACA,aAAe,CAEjB,kCACE,cACA,gBACA,kBACA,QACA,MACA,eACA,YACA,uBACA,cAAgB,CAElB,gCACE,WACA,yBACA,kBACA,eACA,kBACA,SAAW,CAEb,wCACE,mBACA,oBAAsB,CAExB,uCACE,kBACA,gDACA,6BACA,2BAA6B,CAE/B,+BACE,cACA,WACA,gCACA,uCACA,4BACA,uBACA,SACA,eAAiB,CAEnB,0CACE,WACA,oBACA,aACA,mBACI,cAAgB,CAEtB,kDACE,gBACA,YACA,oBACA,aACA,sBACI,mBACJ,cACA,gCACA,uCACA,kBACA,iBAAmB,CAErB,uDACE,eACA,gBAAkB,CAEpB,sDACE,cAAgB,CAElB,kCACE,aACA,mBACA,gBACA,gBACA,qDACQ,4CAAkD,CAE5D,oDACE,oBACA,YAAc,CAEhB,wDACE,0BACA,uBACA,kBACA,kBACA,gBACA,gBAAkB,CAEpB,0BACE,kCACE,mBAAqB,CAEvB,yCACE,kBAAoB,CAEtB,qCACE,kBAAoB,CACrB,CAEH,6BACE,uBACA,mBACA,gBACA,gBACA,qDACQ,4CAAkD,CAE5D,0BACE,6BACE,mBAAqB,CAEvB,6EACE,kBAAoB,CAEtB,gCACE,kBAAoB,CACrB,CAEH,kCACE,kBACA,OACA,MACA,WACA,YACA,oBACA,+BAAiC,CAEnC,oCACE,eACA,gBACA,cACA,YACA,kBACA,cACA,WACA,0BACA,uBACA,iBAAmB,CAErB,2CACE,aAAe,CAEjB,iDACE,WACA,kBACA,OACA,YACA,WACA,WACA,kBAAoB,CAEtB,0BACE,kBACA,mBACA,mBACA,kBACA,eAAiB,CAEnB,+BACE,cACA,eAAiB,CAEnB,YACE,wCAA2C,CAE7C,eACE,8CACA,kBACA,UACA,WACA,SAAW,CAEb,2BACE,gBACA,YACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,iCACE,YACA,UACA,cACA,kBAAoB,CAEtB,6BACE,cACA,yBACA,eACA,gBACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,iCACE,WACA,WACA,eACA,QAAU,CAEZ,qCACE,iCACI,6BACI,yBACR,eAAiB,CAEnB,qCACE,gBAAkB,CAEpB,sBACE,oBACA,aACA,sBACI,mBACJ,sBACI,8BACJ,mBACA,WAAa,CAEf,0BACE,oBACA,aACA,UACA,gBACA,oBACA,oCACI,gCACI,4BACR,gBAAkB,CAEpB,+BACE,uBACA,gBACA,4BACA,iBACA,gBACA,eACA,qDACQ,4CAAkD,CAE5D,oCACE,aAAe,CAEjB,gDACE,gBACA,gBAAkB,CAEpB,uDACE,aAAe,CAEjB,4CACE,YAAc,CAEhB,qCACE,WACA,kBACA,OACA,aACA,WACA,YACA,sDACQ,6CAAmD,CAE7D,qBACE,WACA,2DACA,gBACA,mBACA,qDACQ,6CACR,oBACA,eAAiB,CAEnB,iCACE,yDAA2D,CAE7D,4BACE,iBACA,gBAAkB,CAEpB,kCACE,iEACA,cACA,2BAA6B,CAE/B,+CACE,mCACI,+BACI,0BAA4B,CAEtC,uDACE,mCACI,+BACI,0BAA4B,CAEtC,qDACE,oCACI,gCACI,2BAA6B,CAEvC,mDACE,SAAW,CAEb,mDACE,qBAAuB,CAEzB,2DACE,QAAgB,CAElB,yDACE,WAAa,CAEf,2BACE,0BACA,oBACA,aACA,kBACA,OACA,MACA,WACA,uBACA,gCACA,2BAA6B,CAE/B,6BACE,eACA,eAAiB,CAEnB,kCACE,eACA,gBACA,cACA,wBAA0B,CAG5B,gEACE,SAAW,CAEb,oEACE,iBACA,SAAW,CAEb,gCACE,UACA,iBACA,cAAgB,CAElB,iCACE,WACA,iBACA,iBAAmB,CAErB,oCACE,SAAiB,CAEnB,oCACE,UACA,mCACI,+BACI,0BAA4B,CAEtC,4CACE,UACA,iBACA,mCACI,+BACI,0BAA4B,CAEtC,0CACE,UACA,kBACA,gBAAkB,CAEpB,gCACE,WACA,gBAAkB,CAEpB,iEACE,gBACA,oBACA,aACA,uBACA,WAAa,CAEf,6FACE,kBAAoB,CAEtB,qEACE,eACA,gBACA,gBACA,0BACG,uBACH,uBACA,mBACA,mBACA,SAAW,CAEb,2FACE,0BACA,uBACA,kBACA,eACA,UACA,mDACQ,2CACR,kBAAoB,CAEtB,uGACE,aAAe,CAEjB,+EACE,eACA,iBAAmB,CAErB,2FACE,WACA,WACA,YACA,kBACA,WACA,SACA,gDACA,qBACA,UACA,YAAc,CAEhB,6EACE,WACA,iBACA,kBACA,SACA,OAAS,CAEX,mFACE,0BACA,uBACA,kBACA,cACA,kBACA,UACA,OAAS,CAEX,mFACE,0BACA,uBACA,kBACA,cACA,kBACA,sBACA,OAAS,CAEX,mGACE,UACA,iBACA,kBACA,sBACA,QACA,gBAAkB,CAEpB,+FACE,wBACA,iBACA,kBACA,WACA,OAAS,CAEX,uFACE,kBACA,uBACA,QACA,mCACI,+BACI,2BACR,oBACA,aACA,sBACI,mBACJ,gBACA,mBACA,mBACA,WACA,eACA,kBACA,UACA,gCACA,2BACA,wBACA,cAAgB,CAGlB,+FACE,UACA,WACA,gBACA,eACA,+CACQ,sCAAwC,CAElD,2EACE,WACA,iBACA,kBACA,WACA,QACA,iBAAmB,CAErB,qFACE,kBACA,OACA,MACA,mBACA,WACA,gBACA,kBACA,qDACQ,6CACR,eACA,gBACA,yBACA,cAAgB,CAElB,6CACE,wBACQ,gBACR,mBACA,WACA,eAEA,mBAAqB,CAEvB,uCACE,SAAW,CAEb,4CACE,aAAe,CAEjB,qFACE,UACA,UACA,QACA,kBACA,4BAA+B,CAEjC,mDACE,aAAwB,CAE1B,2GACE,sBAAyB,CAE3B,sJACE,UACA,kBACA,qBACA,OAAS,CAEX,yEACE,0BAA4B,CAE9B,8JACE,iBACA,UACA,kBACA,UACA,OAAS,CAEX,iFACE,sBAAwB,CAE1B,2EACE,UACA,iBACA,eACA,kBACA,WACA,OAAS,CAEX,0BACE,0BACA,uBACA,6BACA,4BACA,cACA,gBACA,kBACA,cACA,WACA,YACA,kBACA,SACA,OACA,SAAW,CAEb,+BACE,aAAe,CAGjB,eACE,cACA,yBACA,eACA,gBACA,YACA,eAAiB,CAEnB,YACE,WACA,aACA,eACA,OACA,MACA,6BACA,UAAY,CAEd,mBACE,YACA,uBACA,gBACA,mBACA,kBACA,SACA,QACA,uCACI,mCACI,8BAAiC,CAE3C,2BACE,YACA,uBACA,oBACA,aACA,0BACI,sBACJ,sBACI,mBACJ,iBAAmB,CAErB,8BACE,kBAAoB,CAEtB,mCACE,YACA,cAAgB,CAElB,sBACE,cACA,iBACA,kBAAoB,CAEtB,yBACE,oBACA,aACA,sBACI,8BACJ,eACA,4BAA8B,CAEhC,8BACE,0BACA,uBACA,kBACA,iBACA,yBACA,gBACA,2BACA,wBACA,mBACA,iBACA,qBACA,eAAiB,CAEnB,gCACE,gBACA,eAAiB,CAEnB,2BACE,eAAiB,CAEnB,+BACE,gBACA,aAAe,CAEjB,gCACE,oBACA,aACA,iBACA,4BAA8B,CAEhC,wCACE,YACA,eACA,iBAAmB,CAErB,uCACE,wBACQ,gBACR,iCACA,4BACA,wBAA2B,CAE7B,6CACE,qDACQ,4CAAkD,CAE5D,4CACE,aAAe,CAGjB,iBACE,aACA,oCACA,cACA,kBACA,cACA,gBAAkB,CAEpB,0BACE,iBACE,8BACA,2BACA,sBACA,mCAAsC,CACvC,CAEH,0BACE,iBACE,8BACA,2BACA,sBACA,mCAAsC,CACvC,CAEH,mBACE,YACA,aACA,gBACA,qDACQ,6CACR,mBACA,uBACA,oBACA,aACA,0BACI,sBACJ,sBACI,8BACJ,eAAiB,CAEnB,wBACE,WACA,oDACA,kBACA,WACA,aACA,YACA,YAAc,CAEhB,gCACE,mBACA,eACA,iBACA,eAAiB,CAEnB,iCACE,mBACA,MACA,mBACA,eACA,iBACA,uBAA6B,CAE/B,iCACE,eACA,iBACA,gBACA,cACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,8CACE,eACA,iBACA,gBACA,cACA,iBAAmB,CAErB,+CACE,eACA,iBACA,gBACA,aAAe,CAEjB,oCACE,2CACQ,kCAAoC,CAE9C,yBACE,GACE,4BACQ,mBAAqB,CAE/B,GACE,gCACQ,uBAA0B,CACnC,CAEH,iBACE,GACE,4BACQ,mBAAqB,CAE/B,GACE,gCACQ,uBAA0B,CACnC,CAEH,qCACE,iCACI,6BACI,yBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,iCACQ,wBAA0B,CAEpC,GACE,iCACQ,wBAA0B,CACnC,CAEH,iBACE,GACE,iCACQ,wBAA0B,CAEpC,GACE,iCACQ,wBAA0B,CACnC,CAEH,qCACE,gCACI,4BACI,wBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,iBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,qCACE,gCACI,4BACI,wBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,iBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,qCACE,gCACI,4BACI,wBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAYH,qCACE,2CACQ,kCAAoC,CAE9C,iBACE,GACE,4BACQ,mBAAqB,CAE/B,GACE,gCACQ,uBAA0B,CACnC,CAEH,qCACE,iCACI,6BACI,yBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,iCACQ,wBAA0B,CAEpC,GACE,iCACQ,wBAA0B,CACnC,CAEH,iBACE,GACE,iCACQ,wBAA0B,CAEpC,GACE,iCACQ,wBAA0B,CACnC,CAEH,qCACE,gCACI,4BACI,wBACR,2CACQ,kCAAoC,CAE9C,yBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,iBACE,GACE,gCACQ,uBAAyB,CAEnC,GACE,iCACQ,wBAA0B,CACnC,CAEH,gBACE,oBACA,aACA,oCACA,qBACA,kBACA,cACA,gBAAkB,CAEpB,0BACE,gBACE,iBACA,mCAAsC,CACvC,CAEH,0BACE,gBACE,8BACA,2BACA,sBACA,mCAAsC,CACvC,CAEH,gCACE,mBAAqB,CAEvB,mCACE,WACA,gBACA,mBACA,qDACQ,6CACR,iBACA,eAAiB,CAEnB,yCACE,0BACA,oBACA,aACA,WACA,kBACA,OACA,MACA,uBACA,gCACA,2BAA6B,CAE/B,2CACE,eACA,eAAiB,CAEnB,uDACE,WACA,iBACA,iBAAmB,CAErB,+CACE,YACA,eAAiB,CAEnB,6CACE,gBACA,oBACA,aACA,uBACA,WAAa,CAEf,2DACE,kBAAoB,CAEtB,+CACE,eACA,eAAiB,CAEnB,2DACE,WACA,iBACA,iBAAmB,CAErB,mDACE,gBACA,cACA,eACA,gBACA,0BACG,sBAAwB,CAE7B,wCACE,0BACA,uBACA,6BACA,4BACA,cACA,gBACA,kBACA,cACA,WACA,YACA,kBACA,SACA,MAAQ,CAEV,mBACE,kBACA,YACA,SACA,UACA,kCACI,8BACI,yBAA8B,CAExC,0BACE,mBACE,uBAAyB,CAC1B,CAEH,mCACE,oBACA,gBAAkB,CAEpB,sCACE,WACA,gBACA,mBACA,qDACQ,6CACR,iBACA,eAAiB,CAEnB,4CACE,0BACA,oBACA,aACA,WACA,kBACA,OACA,MACA,uBACA,gCACA,2BAA6B,CAE/B,8CACE,eACA,eAAiB,CAEnB,0DACE,WACA,iBACA,iBAAmB,CAErB,kDACE,YACA,eAAiB,CAEnB,gDACE,gBACA,oBACA,aACA,uBACA,WAAa,CAEf,8DACE,kBAAoB,CAEtB,kDACE,eACA,eAAiB,CAEnB,8DACE,WACA,iBACA,iBAAmB,CAErB,sDACE,gBACA,cACA,eACA,gBACA,0BACG,sBAAwB,CAE7B,+BACE,gBACA,YACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,qCACE,YACA,UACA,cACA,kBAAoB,CAEtB,iCACE,cACA,yBACA,eACA,gBACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,qCACE,WACA,WACA,eACA,QAAU,CAEZ,yCACE,iCACI,6BACI,yBACR,eAAiB,CAEnB,yCACE,gBAAkB,CAGpB,wBACE,gBACA,qDACQ,6CACR,mBACA,uBACA,kBACA,SACA,QACA,uCACI,mCACI,+BACR,SAAW,CAEb,qCACE,eACA,iBACA,gBACA,WACA,oBACA,aACA,sBACI,mBACJ,kBACA,QACA,QACA,cAAgB,CAElB,yCACE,SACA,iBACA,WACA,WAAa,CAEf,2CACE,UAAa,CAEf,oCACE,kBACA,aACA,QACA,gBACA,YACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,0CACE,YACA,UACA,cACA,kBAAoB,CAEtB,sCACE,WACA,yBACA,eACA,gBACA,oBACA,aACA,sBACI,kBAAoB,CAE1B,0CACE,WACA,eACA,QAAU,CAEZ,oFACE,cAAgB,CAElB,8CACE,iCACI,6BACI,yBACR,eAAiB,CAEnB,8CACE,gBAAkB,CAEpB,oCACE,eACA,gBAAkB,CAEpB,kCACE,cACA,eACA,iBACA,mBAAqB,CAEvB,8BACE,oBACA,aACA,sBACI,8BACJ,eACA,4BAA8B,CAEhC,mCACE,cACA,iBACA,yBACA,oBAAsB,CAExB,qCACE,gBACA,eAAiB,CAEnB,gCACE,eAAiB,CAEnB,oCACE,gBACA,aAAe,CAGjB,4BACE,WACA,aACA,eAAiB,CAEnB,sDACE,yBACA,yBACA,8BACQ,sBAER,+BAAiC,CAEnC,iEACE,kBAAoB,CAEtB,oEACE,oBACA,aACA,sBACI,8BACJ,YACA,8BACQ,qBAAuB,CAEjC,yEACE,gBACA,0BACG,uBACH,aAAe,CAEjB,eACE,uBAA0B,CAE5B,eACE,6BAAgC,CACjC,wMCj9ED,iCACE,qBACA,UACA,gBAAmB,CAGrB,wCACE,WAAa,CAGf,2CACE,qBACA,aAAe,CAGjB,mBACE,YACA,gBAAkB,CAGpB,WACE,MACA,MAAQ,CAGV,mBACE,kBACA,UACA,QACA,MACA,cACA,gBACA,aAAe,CAOjB,4DACE,aAAe,CAGjB,iCACE,eACA,gBAAkB,CAGpB,iCACE,MACA,SAAW,CAGb,+BACE,WACA,eAAiB,CAGnB,gBACE,aAAe,CAEjB,kBACE,cACA,gBACA,cAAgB,CAElB,wBACE,UAAa,CAEf,wCACE,qBACA,WAAa,CAEf,2BACE,gBACA,iEAAmE,CAGrE,kCACE,wBAA0B,CAG5B,WACE,SAAW,CAGb,oCACE,eAAiB,CAMnB,iDALE,oBACA,aACA,sBACI,kBAAoB,CASzB,aAJC,0BACI,qBAAuB,CAI7B,qBACE,oBACA,gBACA,aAAe,CAEjB,sBACE,oBACA,aACA,0BACI,sBACJ,sBACI,kBAAoB,CAE1B,6CACE,cACA,oBACA,eAAiB","file":"static/css/main.9dffbc83.css","sourcesContent":[".popup-area {\r\n width: 100%;\r\n height: 100vh;\r\n position: fixed;\r\n left: 0;\r\n top: 0;\r\n background: rgba(28, 28, 39, 0.6);\r\n z-index: 10;\r\n}\r\n.popup-area .info-popup {\r\n background: #ffffff;\r\n -webkit-box-shadow: 0px 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0px 15px 100px rgba(132, 149, 156, 0.1);\r\n border-radius: 15px;\r\n padding: 48px 48px 60px 48px;\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n -webkit-transform: translate(-50%, -50%);\r\n -ms-transform: translate(-50%, -50%);\r\n transform: translate(-50%, -50%);\r\n width: 1013px;\r\n}\r\n.popup-area .info-popup .close-popup {\r\n font-size: 18px;\r\n line-height: 24px;\r\n font-weight: 700;\r\n color: #ffffff;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n position: absolute;\r\n right: 0;\r\n top: -46px;\r\n cursor: pointer;\r\n}\r\n.popup-area .info-popup .close-popup > img {\r\n top: -2px;\r\n margin-left: 12px;\r\n width: 18px;\r\n height: 18px;\r\n}\r\n.popup-area .info-popup .close-popup:hover {\r\n opacity: 0.8;\r\n}\r\n.popup-area .info-popup .pagination {\r\n position: absolute;\r\n bottom: -48px;\r\n right: 0;\r\n margin-top: 21px;\r\n float: right;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.popup-area .info-popup .pagination .line {\r\n height: 19px;\r\n width: 1px;\r\n margin: 0 12px;\r\n background: #dcdcf0;\r\n}\r\n.popup-area .info-popup .pagination a {\r\n color: #ffffff;\r\n text-transform: uppercase;\r\n font-size: 14px;\r\n font-weight: 700;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.popup-area .info-popup .pagination a img {\r\n width: 16px;\r\n cursor: pointer;\r\n top: -1px;\r\n}\r\n.popup-area .info-popup .pagination .next,\r\n.popup-area .info-popup .pagination .prev {\r\n cursor: pointer;\r\n}\r\n.popup-area .info-popup .pagination .next img {\r\n -webkit-transform: rotate(180deg);\r\n -ms-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n margin-left: 6px;\r\n}\r\n.popup-area .info-popup .pagination .prev img {\r\n margin-right: 7px;\r\n}\r\n.popup-area .info-popup .main-title {\r\n color: #3193f5;\r\n font-size: 36px;\r\n line-height: 36px;\r\n}\r\n.popup-area .info-popup .subtitle {\r\n color: #3193f5;\r\n font-size: 21px;\r\n line-height: 45px;\r\n padding-bottom: 36px;\r\n}\r\n.popup-area .info-popup .info {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n padding: 18px 0;\r\n border-top: 1px solid #dcdcf0;\r\n}\r\n.popup-area .info-popup .info span {\r\n max-width: 70%;\r\n text-align: right;\r\n text-transform: uppercase;\r\n word-wrap: break-word;\r\n}\r\n.popup-area .info-popup .info .title {\r\n text-align: left;\r\n font-weight: 700;\r\n}\r\n.popup-area .info-popup .info p {\r\n font-weight: 700;\r\n}\r\n.popup-area .info-popup .info .lite {\r\n font-weight: 400;\r\n color: #c8c8dc;\r\n}\r\n.popup-area .content {\r\n padding: 25px 0 30px;\r\n}\r\n.popup-area .content p {\r\n padding-top: 16px;\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/components-ui/InfoPopup.css","@font-face {\r\n font-family: 'Exo';\r\n font-weight: 300;\r\n src: url('../fonts/Exo-Light.ttf');\r\n}\r\n@font-face {\r\n font-family: 'Exo';\r\n font-weight: 400;\r\n src: url('../fonts/Exo-Regular.ttf');\r\n}\r\n@font-face {\r\n font-family: 'Exo';\r\n font-weight: 500;\r\n src: url('../fonts/Exo-Medium.ttf');\r\n}\r\n@font-face {\r\n font-family: 'Exo';\r\n font-weight: 700;\r\n src: url('../fonts/Exo-Bold.ttf');\r\n}\r\nh1 {\r\n font-size: 80px;\r\n line-height: 92px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n}\r\nh2 {\r\n font-size: 36px;\r\n font-weight: 700;\r\n line-height: 72px;\r\n text-transform: uppercase;\r\n}\r\nh3 {\r\n font-size: 24px;\r\n line-height: 32px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n}\r\nh4 {\r\n font-size: 20px;\r\n font-weight: 700;\r\n}\r\nh5 {\r\n font-size: 16px;\r\n font-weight: 700;\r\n}\r\n* {\r\n font-family: 'Exo';\r\n font-size: 16px;\r\n color: rgba(51, 51, 81, 1);\r\n text-decoration: none;\r\n margin: 0;\r\n padding: 0;\r\n -webkit-box-sizing: border-box;\r\n box-sizing: border-box;\r\n position: relative;\r\n outline: 0;\r\n}\r\nli {\r\n list-style-type: none;\r\n}\r\nul {\r\n margin-left: 0;\r\n padding-left: 0;\r\n}\r\nbody {\r\n overflow-x: hidden;\r\n background: #fafafc;\r\n}\r\nsection {\r\n width: 100%;\r\n height: 100vh;\r\n max-width: 1200px;\r\n margin: auto;\r\n}\r\n.mgb54 {\r\n margin-bottom: 54px !important;\r\n}\r\n.mgb36 {\r\n margin-bottom: 36px !important;\r\n}\r\n.mgb26 {\r\n margin-bottom: 26px !important;\r\n}\r\n.mgb24 {\r\n margin-bottom: 24px !important;\r\n}\r\n.mgt30 {\r\n margin-top: 30px !important;\r\n}\r\n.logo {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n height: 28px;\r\n display: block;\r\n position: absolute;\r\n left: 40px;\r\n top: 48px;\r\n z-index: 2;\r\n}\r\n@media (max-height: 768px) {\r\n .logo {\r\n top: 40px;\r\n }\r\n}\r\n.button {\r\n display: block;\r\n overflow: hidden;\r\n border: 0;\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n border-radius: 10px;\r\n padding: 24px 68px 22px;\r\n background: #dcdcf0;\r\n -webkit-box-shadow: 0 10px 20px rgba(47, 128, 237, 0.3);\r\n box-shadow: 0 10px 20px rgba(47, 128, 237, 0.3);\r\n cursor: pointer;\r\n text-align: center;\r\n}\r\n.button.disable {\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n cursor: default;\r\n pointer-events: none;\r\n}\r\n.button.disable div {\r\n display: none;\r\n}\r\n.button.white {\r\n -webkit-box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n background: rgba(255, 255, 255, 0.8);\r\n}\r\n.button.white span {\r\n color: #333351;\r\n}\r\n.button.white div {\r\n display: none;\r\n}\r\n.button.mini {\r\n padding: 16px 98px;\r\n}\r\n.button.mini span {\r\n font-size: 16px;\r\n}\r\n.button.small {\r\n padding: 9px 27px 9px;\r\n border-radius: 50px;\r\n}\r\n.button.small span {\r\n font-size: 14px;\r\n font-weight: 500;\r\n text-transform: none;\r\n}\r\n.button:hover div {\r\n -webkit-transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);\r\n -o-transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);\r\n transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);\r\n left: 0;\r\n}\r\n.button div {\r\n position: absolute;\r\n left: -100%;\r\n top: 0;\r\n width: 200%;\r\n height: 100%;\r\n background: -webkit-gradient(linear, right top, left top, from(#2f80ed), color-stop(50%, #33adff), to(#2f80ed));\r\n background: -webkit-linear-gradient(right, #2f80ed 0%, #33adff 50%, #2f80ed 100%);\r\n background: -o-linear-gradient(right, #2f80ed 0%, #33adff 50%, #2f80ed 100%);\r\n background: linear-gradient(to left, #2f80ed 0%, #33adff 50%, #2f80ed 100%);\r\n z-index: 1;\r\n -webkit-transition: 0.15s ease-in;\r\n -o-transition: 0.15s ease-in;\r\n transition: 0.15s ease-in;\r\n}\r\n.button span {\r\n z-index: 2;\r\n color: #fff;\r\n font-size: 24px;\r\n line-height: 1;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n white-space: nowrap;\r\n}\r\n.button span span {\r\n font-weight: 400;\r\n opacity: 0.5;\r\n text-transform: none;\r\n}\r\n.button input[type=file] {\r\n z-index: 3;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n cursor: pointer;\r\n opacity: 0;\r\n}\r\n.background {\r\n position: fixed;\r\n bottom: 0;\r\n left: 0;\r\n display: block;\r\n}\r\n.uploaded-file {\r\n width: 100%;\r\n padding: 20px 24px;\r\n border: 1px solid #f8f8fb;\r\n background-color: #f8f8fb;\r\n border-radius: 6px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n}\r\n.uploaded-file span {\r\n font-size: 24px;\r\n line-height: 32px;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n}\r\n.uploaded-file img {\r\n width: 24px;\r\n height: 24px;\r\n cursor: pointer;\r\n margin-left: 12px;\r\n opacity: 0.4;\r\n}\r\n.dnd {\r\n width: 100%;\r\n text-align: center;\r\n background-color: #fff;\r\n background-image: url(\"../img/border.svg\");\r\n background-repeat: no-repeat;\r\n background-size: 100% 100%;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n -ms-flex-pack: center;\r\n justify-content: center;\r\n padding: 20px 0;\r\n}\r\n.dnd.hover:before {\r\n content: '';\r\n background-color: rgba(248, 248, 251, 0.5);\r\n width: calc(100% - 6px);\r\n height: calc(100% - 2px);\r\n position: absolute;\r\n left: 3px;\r\n top: 1px;\r\n border-radius: 6px;\r\n}\r\n.dnd.hover span {\r\n color: #333351;\r\n}\r\n.dnd span {\r\n font-size: 24px;\r\n line-height: 32px;\r\n color: #c8c8dc;\r\n}\r\n.dnd input {\r\n position: absolute;\r\n width: 100%;\r\n height: 100%;\r\n z-index: 2;\r\n cursor: pointer;\r\n opacity: 0;\r\n}\r\n.popover-area {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n margin: 0 auto;\r\n z-index: 10;\r\n}\r\n.popover-area.popover-area2 {\r\n width: 24px;\r\n height: 24px;\r\n top: -4px;\r\n margin-left: 12px;\r\n}\r\n.popover-area.popover-area2 label {\r\n display: block;\r\n width: 24px;\r\n height: 24px;\r\n background-image: url(\"../img/info-gray.svg\");\r\n cursor: pointer;\r\n}\r\n.popover-area input[type='checkbox'] {\r\n display: none;\r\n}\r\n.popover-area input[type='checkbox']:checked ~ .popover {\r\n display: block;\r\n}\r\n.popover-area input[type='checkbox']:checked ~ .info-link > .close-wrapper {\r\n display: block;\r\n}\r\n.popover-area .popover {\r\n width: 700px;\r\n position: absolute;\r\n top: 52px;\r\n left: 0;\r\n padding: 24px 30px 30px;\r\n background: #fff;\r\n -webkit-box-shadow: 0 30px 30px rgba(28, 28, 39, 0.05);\r\n box-shadow: 0 30px 30px rgba(28, 28, 39, 0.05);\r\n border-radius: 15px;\r\n cursor: default;\r\n z-index: 5;\r\n display: none;\r\n}\r\n.popover-area .popover:before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n -webkit-box-shadow: 0 5px 50px rgba(28, 28, 39, 0.05);\r\n box-shadow: 0 5px 50px rgba(28, 28, 39, 0.05);\r\n border-radius: 15px;\r\n}\r\n.popover-area .popover h3 {\r\n text-transform: none;\r\n margin-bottom: 12px;\r\n}\r\n.popover-area .close-wrapper {\r\n display: none;\r\n position: fixed;\r\n left: -100%;\r\n top: -100vh;\r\n width: 300%;\r\n height: 300vh;\r\n cursor: default;\r\n}\r\n.popover-area2 {\r\n width: 24px;\r\n height: 24px;\r\n top: -4px;\r\n margin-left: 12px;\r\n}\r\n.popover-area2 label {\r\n display: block;\r\n width: 24px;\r\n height: 24px;\r\n background-image: url(\"../img/info-gray.svg\");\r\n cursor: pointer;\r\n left: 0 !important;\r\n top: 0 !important;\r\n}\r\n.popover-area2 input[type='checkbox'] {\r\n display: none;\r\n}\r\n.popover-area2 input[type='checkbox']:checked ~ .popover {\r\n display: block;\r\n}\r\n.popover-area2 input[type='checkbox']:checked ~ label {\r\n background-image: url(\"../img/info.svg\");\r\n}\r\n.popover-area2 input[type='checkbox']:checked ~ label > .close-wrapper {\r\n display: block;\r\n}\r\n.popover-area2 .popover {\r\n width: 700px;\r\n position: absolute;\r\n top: 0;\r\n left: 48px;\r\n -webkit-transform: translateY(calc(-50% + 12px));\r\n -ms-transform: translateY(calc(-50% + 12px));\r\n transform: translateY(calc(-50% + 12px));\r\n padding: 24px 30px 30px;\r\n background: #fff;\r\n -webkit-box-shadow: 0 30px 30px rgba(28, 28, 39, 0.05);\r\n box-shadow: 0 30px 30px rgba(28, 28, 39, 0.05);\r\n border-radius: 15px;\r\n cursor: default;\r\n z-index: 5;\r\n display: none;\r\n}\r\n.popover-area2 .popover:before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n -webkit-box-shadow: 0 5px 50px rgba(28, 28, 39, 0.05);\r\n box-shadow: 0 5px 50px rgba(28, 28, 39, 0.05);\r\n border-radius: 15px;\r\n}\r\n.popover-area2 .popover h3 {\r\n text-transform: none;\r\n margin-bottom: 12px;\r\n}\r\n.popover-area2 .popover p {\r\n font-weight: 400 !important;\r\n font-size: 16px !important;\r\n text-transform: none !important;\r\n}\r\n.popover-area2 .close-wrapper {\r\n display: none;\r\n position: fixed;\r\n left: -100%;\r\n top: -100vh;\r\n width: 300%;\r\n height: 300vh;\r\n cursor: default;\r\n z-index: 4;\r\n}\r\n.info-link {\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding: 8px 0 72px;\r\n margin: 0 auto;\r\n cursor: pointer;\r\n border-radius: 15px;\r\n}\r\n.info-link span {\r\n font-size: 24px;\r\n line-height: 24px;\r\n color: #3193f5;\r\n margin-left: 12px;\r\n font-weight: 500;\r\n}\r\n.disclaimer {\r\n padding-top: 30px;\r\n margin: 0 auto;\r\n}\r\n.disclaimer img {\r\n bottom: -2px;\r\n}\r\n.disclaimer span {\r\n color: #c8c8dc;\r\n padding: 0 4px 0 6px;\r\n}\r\n.disclaimer a {\r\n color: #3193f5;\r\n font-weight: 500;\r\n}\r\n.welcome-content {\r\n max-width: 580px;\r\n position: absolute;\r\n left: 40px;\r\n top: 50vh;\r\n -webkit-transform: translate(0px, -50%);\r\n -ms-transform: translate(0px, -50%);\r\n transform: translate(0px, -50%);\r\n}\r\n.welcome-content p {\r\n font-size: 24px;\r\n line-height: 36px;\r\n padding: 42px 0 66px;\r\n}\r\n.main-background {\r\n width: 100%;\r\n height: 100vh;\r\n background-image: url(\"../img/header-background.svg\");\r\n background-repeat: no-repeat;\r\n background-position: -300px -1750px;\r\n position: absolute;\r\n right: 0;\r\n left: 0;\r\n top: 0;\r\n}\r\n@media (max-width: 1600px) {\r\n .main-background {\r\n background-position: -550px -1750px;\r\n }\r\n}\r\n@media (max-width: 1200px) {\r\n .main-background {\r\n background-position: -750px -1750px;\r\n }\r\n}\r\n.select-type {\r\n width: 100%;\r\n position: absolute;\r\n left: 0;\r\n top: 50%;\r\n -webkit-transform: translateY(calc(-50% - 48px));\r\n -ms-transform: translateY(calc(-50% - 48px));\r\n transform: translateY(calc(-50% - 48px));\r\n}\r\n@media (max-width: 1270px) {\r\n .select-type {\r\n padding: 0 40px;\r\n }\r\n}\r\n@media (max-height: 768px) {\r\n .select-type {\r\n -webkit-transform: translateY(calc(-50%));\r\n -ms-transform: translateY(calc(-50%));\r\n transform: translateY(calc(-50%));\r\n }\r\n}\r\n.select-type .links {\r\n width: 100%;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n padding-top: 48px;\r\n}\r\n.select-type .links a {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n padding: 52px 42px 60px;\r\n text-align: center;\r\n width: calc(25% - 24px);\r\n background: #fff;\r\n border-radius: 50px;\r\n -webkit-box-shadow: 0 20px 40px rgba(132, 149, 156, 0.04);\r\n box-shadow: 0 20px 40px rgba(132, 149, 156, 0.04);\r\n -webkit-transition: 0.375s cubic-bezier(0.4, 0, 0.2, 1);\r\n -o-transition: 0.375s cubic-bezier(0.4, 0, 0.2, 1);\r\n transition: 0.375s cubic-bezier(0.4, 0, 0.2, 1);\r\n}\r\n.select-type .links a:hover {\r\n -webkit-box-shadow: 0 30px 40px rgba(132, 149, 156, 0.07);\r\n box-shadow: 0 30px 40px rgba(132, 149, 156, 0.07);\r\n}\r\n.select-type .links a img {\r\n margin-bottom: 44px;\r\n}\r\n.form-content {\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n -webkit-transform: translate(-50%, -50%);\r\n -ms-transform: translate(-50%, -50%);\r\n transform: translate(-50%, -50%);\r\n}\r\n.form-content .crumbs img {\r\n margin: 0 8px;\r\n}\r\n.form-content .name {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n padding: 12px 0 48px;\r\n}\r\n.form-content .name a {\r\n margin-right: 18px;\r\n bottom: -1px;\r\n}\r\n@media (max-height: 768px) {\r\n .form-content {\r\n -webkit-transform: translate(-50%, calc(-50% + 24px));\r\n -ms-transform: translate(-50%, calc(-50% + 24px));\r\n transform: translate(-50%, calc(-50% + 24px));\r\n }\r\n .form-content .name {\r\n padding: 0px 0 24px;\r\n }\r\n}\r\n.form-content form {\r\n width: 884px;\r\n height: 510px;\r\n background: #fff;\r\n border-radius: 50px;\r\n -webkit-box-shadow: 0 20px 40px rgba(132, 149, 156, 0.04);\r\n box-shadow: 0 20px 40px rgba(132, 149, 156, 0.04);\r\n padding: 60px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n}\r\n.form-content form > .button {\r\n margin: 0 auto;\r\n}\r\n.form-content form ::-webkit-input-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.form-content form ::-moz-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.form-content form :-ms-input-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.form-content form :-moz-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.form-content form > h2 {\r\n padding-top: 48px;\r\n text-align: center;\r\n}\r\n.form-content form .copy {\r\n color: #3193f5;\r\n font-weight: 500;\r\n font-size: 16px;\r\n text-transform: none;\r\n display: block;\r\n border: none;\r\n background: transparent;\r\n cursor: pointer;\r\n}\r\n.form-content form .key-area {\r\n width: 100%;\r\n margin-bottom: 24px;\r\n}\r\n.form-content form .key-area .title {\r\n height: 19px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n margin-bottom: 6px;\r\n}\r\n.form-content form .key-area .title p {\r\n font-size: 14px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n}\r\n.form-content form .key-area .title img {\r\n height: 24px;\r\n top: -5px;\r\n margin-left: 12px;\r\n cursor: pointer;\r\n}\r\n.form-content form .key-area .key {\r\n display: -ms-flexbox;\r\n display: flex;\r\n}\r\n.form-content form .key-area .copy {\r\n color: #3193f5;\r\n font-weight: 500;\r\n position: absolute;\r\n right: 0;\r\n top: 0;\r\n font-size: 16px;\r\n}\r\n.form-content form .input {\r\n width: calc(100% - 40px);\r\n margin-bottom: 36px;\r\n}\r\n.form-content form .input.invalid > input {\r\n border-color: #df4c4c;\r\n color: #df4c4c;\r\n}\r\n.form-content form .input.invalid .error {\r\n display: block;\r\n}\r\n.form-content form .input.invalid ::-webkit-input-placeholder {\r\n /* Chrome/Opera/Safari */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.form-content form .input.invalid ::-moz-placeholder {\r\n /* Firefox 19+ */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.form-content form .input.invalid :-ms-input-placeholder {\r\n /* IE 10+ */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.form-content form .input.invalid :-moz-placeholder {\r\n /* Firefox 18- */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.form-content form .input .error {\r\n position: absolute;\r\n left: 0;\r\n bottom: -20px;\r\n font-size: 14px;\r\n color: #df4c4c;\r\n font-weight: 500;\r\n display: none;\r\n}\r\n.form-content form .input p {\r\n width: 100%;\r\n font-size: 18px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n margin-bottom: 12px;\r\n}\r\n.form-content form .input p.required:after {\r\n content: ' *';\r\n color: #df4c4c;\r\n}\r\n.form-content form .input p span {\r\n position: absolute;\r\n padding-left: 16px;\r\n top: 1px;\r\n font-weight: 400;\r\n text-transform: none;\r\n color: #c8c8dc;\r\n}\r\n.form-content form .input p .copy {\r\n color: #3193f5;\r\n font-weight: 500;\r\n position: absolute;\r\n right: 0;\r\n top: 0;\r\n font-size: 16px;\r\n}\r\n.form-content form .input textarea {\r\n display: block;\r\n width: 100%;\r\n max-width: 100%;\r\n min-width: 100%;\r\n padding: 21px 24px 19px;\r\n border: 1px solid #dcdcf0;\r\n border-radius: 6px;\r\n overflow: hidden;\r\n font-size: 24px;\r\n line-height: 168%;\r\n height: 123px;\r\n max-height: 123px;\r\n min-height: 123px;\r\n}\r\n.form-content form .input textarea.disable {\r\n background: #f8f8fb;\r\n border-color: #f8f8fb;\r\n}\r\n.form-content form .input input {\r\n width: 100%;\r\n border: 1px solid #dcdcf0;\r\n padding: 19px 25px;\r\n font-size: 24px;\r\n border-radius: 6px;\r\n}\r\n.form-content form .input input.disable {\r\n background: #f8f8fb;\r\n border-color: #f8f8fb;\r\n}\r\n.form-content form .input input[type=checkbox] {\r\n display: none;\r\n}\r\n.form-content form .input input[type=checkbox]:checked + .eye {\r\n background-image: url(\"../img/eye-gray.svg\");\r\n}\r\n.form-content form .input input[type=checkbox]:checked + .eye.blue {\r\n background-image: url(\"../img/eye-blue.svg\");\r\n}\r\n.form-content form .input label:not(.showing) {\r\n position: absolute;\r\n left: calc(100% + 24px);\r\n bottom: 28px;\r\n}\r\n.form-content form .input .eye {\r\n cursor: pointer;\r\n width: 21px;\r\n height: 17px;\r\n background-image: url(\"../img/eye-gray-closed.svg\");\r\n}\r\n.form-content form .input .eye.blue {\r\n background-image: url(\"../img/eye-blue-closed.svg\");\r\n}\r\n.form-content form .showing {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: end;\r\n justify-content: flex-end;\r\n cursor: pointer;\r\n position: absolute;\r\n right: 0px;\r\n top: 0px;\r\n}\r\n.form-content form .showing span {\r\n color: #3193f5;\r\n margin-left: 12px;\r\n}\r\n.form-content form .generate {\r\n font-size: 54px;\r\n}\r\n.form-content form .generate + p {\r\n color: #c8c8dc;\r\n text-align: center;\r\n width: 485px;\r\n padding: 24px 0 42px;\r\n margin: 0 auto;\r\n}\r\n.form-content form .button-area {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n margin: 0 auto;\r\n}\r\n.form-content form .button-area .button {\r\n margin: 0 15px;\r\n width: 267px;\r\n}\r\n.form-content .form-seed-pharse .input, .form-content .form-restore-wallet .input {\r\n width: 100%;\r\n margin: 30px 0 54px;\r\n}\r\n.form-content .form-enter-key .input, .form-content .form-create-pass .input {\r\n margin: 30px 0 54px;\r\n}\r\n.form-content .form-enter-key .input > div, .form-content .form-create-pass .input > div {\r\n display: -ms-flexbox;\r\n display: flex;\r\n}\r\n.form-content .form-enter-key .input > div > p, .form-content .form-create-pass .input > div > p {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n}\r\n.form-content .form-enter-key .input > div .popover-area2, .form-content .form-create-pass .input > div .popover-area2 {\r\n top: 0;\r\n}\r\n.form-content .form-walet-data .input {\r\n width: 100%;\r\n}\r\n.form-content .form-upload-file .button {\r\n margin-top: 18px;\r\n}\r\nnav {\r\n width: 100%;\r\n height: 90px;\r\n padding: 0 48px;\r\n background: #f9fafc;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n margin-bottom: 45px;\r\n}\r\n@media (max-width: 1359px) {\r\n nav .logo {\r\n margin-right: 30px !important;\r\n }\r\n}\r\n@media (max-width: 1279px) {\r\n nav .logo {\r\n width: 30px;\r\n overflow: hidden;\r\n }\r\n}\r\nnav:after {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n -webkit-box-shadow: 0 4px 50px rgba(49, 151, 247, 0.1);\r\n box-shadow: 0 4px 50px rgba(49, 151, 247, 0.1);\r\n z-index: 1;\r\n}\r\nnav:before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n -webkit-box-shadow: 0 60px 80px rgba(132, 149, 156, 0.15);\r\n box-shadow: 0 60px 80px rgba(132, 149, 156, 0.15);\r\n z-index: 1;\r\n}\r\nnav > * {\r\n z-index: 2;\r\n}\r\nnav .logo {\r\n position: relative;\r\n left: 0;\r\n top: 0;\r\n margin-right: 90px;\r\n}\r\nnav .link {\r\n padding: 34px 30px 32px;\r\n font-size: 18px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n border-radius: 10px;\r\n}\r\nnav .link.active {\r\n color: #3193f5;\r\n background: #fff;\r\n -webkit-box-shadow: 0 30px 50px rgba(47, 128, 237, 0.2);\r\n box-shadow: 0 30px 50px rgba(47, 128, 237, 0.2);\r\n}\r\nnav .profile-info {\r\n position: absolute;\r\n right: 0;\r\n height: 100%;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\nnav .profile-info .info {\r\n border-right: 2px solid rgba(200, 200, 220, 0.2);\r\n padding-right: 32px;\r\n text-align: right;\r\n}\r\nnav .profile-info .info .amt {\r\n font-size: 24px;\r\n font-weight: 700;\r\n}\r\nnav .profile-info .info .amt span {\r\n font-size: 14px;\r\n text-transform: uppercase;\r\n}\r\nnav .profile-info .info .address {\r\n color: #c8c8dc;\r\n font-size: 14px;\r\n line-height: 19px;\r\n padding-top: 2px;\r\n}\r\nnav .profile-info .info .address img {\r\n bottom: -2px;\r\n cursor: pointer;\r\n}\r\nnav .profile-info .logout {\r\n width: 105px;\r\n height: 100%;\r\n background-image: url(\"../img/logout.svg\");\r\n background-size: 25px 18px;\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n cursor: pointer;\r\n}\r\n.copy {\r\n background: transparent;\r\n border: none;\r\n cursor: pointer;\r\n}\r\n.left-section {\r\n width: 417px;\r\n height: calc(100vh - 90px - 42px - 60px);\r\n position: absolute;\r\n left: 48px;\r\n top: 132px;\r\n z-index: 2;\r\n}\r\n.left-section .wallet-info {\r\n width: 100%;\r\n height: 254px;\r\n padding: 36px 30px;\r\n border-radius: 15px;\r\n background: -webkit-gradient(linear, right top, left top, from(#2f80ed), to(#33adff));\r\n background: -webkit-linear-gradient(right, #2f80ed 0%, #33adff 100%);\r\n background: -o-linear-gradient(right, #2f80ed 0%, #33adff 100%);\r\n background: linear-gradient(to left, #2f80ed 0%, #33adff 100%);\r\n margin-bottom: 48px;\r\n -webkit-box-shadow: 0 10px 20px rgba(47, 128, 237, 0.35);\r\n box-shadow: 0 10px 20px rgba(47, 128, 237, 0.35);\r\n}\r\n.left-section .wallet-info p {\r\n color: #fff;\r\n font-weight: 700;\r\n}\r\n.left-section .wallet-info .title .copy {\r\n color: #fff;\r\n font-size: 12px;\r\n font-weight: 500;\r\n float: right;\r\n opacity: 0.5;\r\n}\r\n.left-section .wallet-info .balance {\r\n font-size: 42px;\r\n line-height: 56px;\r\n}\r\n.left-section .wallet-info .balance span {\r\n color: #fff;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n}\r\n.left-section .wallet-info .conversions {\r\n opacity: 0.5;\r\n font-weight: 400;\r\n margin: -8px 0 30px;\r\n}\r\n.left-section .wallet-info .key {\r\n margin-top: 6px;\r\n font-weight: 400;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n}\r\n.left-section .delegates-list .title {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n width: 100%;\r\n height: 40px;\r\n margin-bottom: 24px;\r\n}\r\n.left-section .delegates-list .list {\r\n width: 100%;\r\n max-height: calc(100vh - 90px - 42px - 254px - 45px - 64px - 114px);\r\n overflow: hidden;\r\n border-radius: 15px;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n padding: 46px 0 60px;\r\n background: #fff;\r\n}\r\n.left-section .delegates-list .list .head {\r\n background: #fff !important;\r\n display: -ms-flexbox;\r\n display: flex;\r\n width: 100%;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n padding: 17px 30px 12px;\r\n border-bottom: 1px solid #dcdcf0;\r\n border-radius: 15px 15px 0 0;\r\n}\r\n.left-section .delegates-list .list .head p {\r\n font-size: 12px;\r\n font-weight: 700;\r\n}\r\n.left-section .delegates-list .list .head .rank {\r\n width: 30px;\r\n text-align: right;\r\n margin-right: 30px;\r\n}\r\n.left-section .delegates-list .list .head .address {\r\n width: 230px;\r\n text-align: left;\r\n padding-left: 30px;\r\n}\r\n.left-section .delegates-list .list .delegate {\r\n background: #fff;\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding: 21px 30px 20px;\r\n height: 60px;\r\n}\r\n.left-section .delegates-list .list .delegate:nth-child(even) {\r\n background: #fbfbfe;\r\n}\r\n.left-section .delegates-list .list .delegate p {\r\n font-size: 14px;\r\n font-weight: 500;\r\n}\r\n.left-section .delegates-list .list .delegate .rank {\r\n width: 30px;\r\n text-align: right;\r\n}\r\n.left-section .delegates-list .list .delegate .address {\r\n width: 230px;\r\n text-align: left;\r\n padding-left: 30px;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n}\r\n.left-section .delegates-list .list .delegate .amount {\r\n margin-left: auto;\r\n}\r\n.left-section .delegates-list .list .all {\r\n background: #fff !important;\r\n padding: 19px 30px 18px;\r\n border-top: 1px solid #dcdcf0;\r\n border-radius: 0 0 15px 15px;\r\n color: #3193f5;\r\n font-weight: 500;\r\n text-align: center;\r\n display: block;\r\n width: 100%;\r\n height: 60px;\r\n position: absolute;\r\n bottom: 0;\r\n left: 0;\r\n}\r\n.left-section form h2 {\r\n color: #3193f5;\r\n line-height: 115%;\r\n margin-bottom: 29px;\r\n}\r\n.left-section form ::-webkit-input-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.left-section form ::-moz-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.left-section form :-ms-input-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.left-section form :-moz-placeholder {\r\n color: #dcdcf0;\r\n}\r\n.left-section form .input {\r\n width: 100%;\r\n margin-bottom: 30px;\r\n}\r\n.left-section form .input.invalid > input {\r\n border-color: #df4c4c !important;\r\n}\r\n.left-section form .input.invalid .error {\r\n display: block;\r\n}\r\n.left-section form .input.invalid ::-webkit-input-placeholder {\r\n /* Chrome/Opera/Safari */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.left-section form .input.invalid ::-moz-placeholder {\r\n /* Firefox 19+ */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.left-section form .input.invalid :-ms-input-placeholder {\r\n /* IE 10+ */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.left-section form .input.invalid :-moz-placeholder {\r\n /* Firefox 18- */\r\n color: rgba(223, 76, 76, 0.5);\r\n}\r\n.left-section form .input .error {\r\n color: #df4c4c;\r\n font-size: 10px;\r\n line-height: 13px;\r\n font-weight: 400;\r\n display: none;\r\n padding: 0;\r\n text-transform: none;\r\n margin: 2px 0 0;\r\n}\r\n.left-section form .input p {\r\n width: 100%;\r\n font-size: 14px;\r\n line-height: 19px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n margin-bottom: 12px;\r\n}\r\n.left-section form .input p.required:after {\r\n content: ' *';\r\n color: #df4c4c;\r\n}\r\n.left-section form .input p span {\r\n position: absolute;\r\n padding-left: 16px;\r\n top: 1px;\r\n font-weight: 400;\r\n text-transform: none;\r\n color: #c8c8dc;\r\n}\r\n.left-section form .input p .copy {\r\n color: #3193f5;\r\n font-weight: 500;\r\n position: absolute;\r\n right: 0;\r\n top: 0;\r\n font-size: 16px;\r\n border: none;\r\n background: transparent;\r\n cursor: pointer;\r\n}\r\n.left-section form .input input {\r\n width: 100%;\r\n border: 1px solid #dcdcf0;\r\n padding: 15px 18px;\r\n font-size: 16px;\r\n border-radius: 6px;\r\n z-index: 2;\r\n}\r\n.left-section form .input input.disable {\r\n background: #f8f8fb;\r\n border-color: #f8f8fb;\r\n}\r\n.left-section form .input input.search {\r\n padding-left: 53px;\r\n background-image: url(\"../img/search.svg\");\r\n background-position: 18px 50%;\r\n background-repeat: no-repeat;\r\n}\r\n.left-section form .input .fee {\r\n display: block;\r\n width: 100%;\r\n background: rgba(220, 220, 240, 0.1);\r\n border: 1px solid rgba(220, 220, 240, 0.25);\r\n border-radius: 0 0 15px 15px;\r\n padding: 18px 18px 13px;\r\n top: -6px;\r\n font-weight: 700;\r\n}\r\n.left-section form .input .search-results {\r\n width: 100%;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-wrap: wrap;\r\n flex-wrap: wrap;\r\n}\r\n.left-section form .input .search-results .result {\r\n margin-top: 12px;\r\n height: 23px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n padding: 0 6px;\r\n background: rgba(220, 220, 240, 0.1);\r\n border: 1px solid rgba(220, 220, 240, 0.25);\r\n border-radius: 6px;\r\n margin-right: 12px;\r\n}\r\n.left-section form .input .search-results .result span {\r\n font-size: 14px;\r\n margin-right: 8px;\r\n}\r\n.left-section form .input .search-results .result img {\r\n cursor: pointer;\r\n}\r\n.left-section .create-transaction {\r\n padding: 30px;\r\n border-radius: 15px;\r\n overflow: hidden;\r\n background: #fff;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n}\r\n.left-section .create-transaction .data-input-block {\r\n display: -ms-flexbox;\r\n display: flex;\r\n}\r\n.left-section .create-transaction .data-input-block>div {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n padding: 16px 10px;\r\n min-width: 120px;\r\n margin-left: 10px;\r\n}\r\n@media (max-height: 768px) {\r\n .left-section .create-transaction {\r\n padding-bottom: 30px;\r\n }\r\n .left-section .create-transaction .input {\r\n margin-bottom: 24px;\r\n }\r\n .left-section .create-transaction h2 {\r\n margin-bottom: 20px;\r\n }\r\n}\r\n.left-section .delegate-form {\r\n padding: 91px 30px 60px;\r\n border-radius: 15px;\r\n overflow: hidden;\r\n background: #fff;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n}\r\n@media (max-height: 768px) {\r\n .left-section .delegate-form {\r\n padding-bottom: 30px;\r\n }\r\n .left-section .delegate-form .input, .left-section .delegate-form .fee-amount {\r\n margin-bottom: 24px;\r\n }\r\n .left-section .delegate-form h2 {\r\n margin-bottom: 20px;\r\n }\r\n}\r\n.left-section .delegate-form .nav {\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 60px;\r\n padding: 23px 30px 0 30px;\r\n border-bottom: 1px solid #dcdcf0;\r\n}\r\n.left-section .delegate-form .nav a {\r\n font-size: 14px;\r\n font-weight: 700;\r\n color: #c8c8dc;\r\n height: 100%;\r\n margin-right: 24px;\r\n display: block;\r\n float: left;\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n}\r\n.left-section .delegate-form .nav a.active {\r\n color: #3193f5;\r\n}\r\n.left-section .delegate-form .nav a.active:after {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n bottom: -1px;\r\n width: 100%;\r\n height: 3px;\r\n background: #3193f5;\r\n}\r\n.left-section .fee-amount {\r\n padding: 16px 18px;\r\n margin-bottom: 36px;\r\n background: #f8f8fb;\r\n border-radius: 6px;\r\n font-weight: 700;\r\n}\r\n.left-section .fee-amount span {\r\n color: #c8c8dc;\r\n font-weight: 400;\r\n}\r\n.corner-fix {\r\n border-radius: 0 15px 15px 15px !important;\r\n}\r\n.table-section {\r\n width: calc(100% - 48px - 417px - 48px - 48px);\r\n position: absolute;\r\n top: 132px;\r\n right: 48px;\r\n z-index: 2;\r\n}\r\n.table-section .pagination {\r\n margin-top: 21px;\r\n float: right;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.table-section .pagination .line {\r\n height: 19px;\r\n width: 1px;\r\n margin: 0 12px;\r\n background: #dcdcf0;\r\n}\r\n.table-section .pagination a {\r\n color: #3193f5;\r\n text-transform: uppercase;\r\n font-size: 14px;\r\n font-weight: 700;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.table-section .pagination a img {\r\n width: 16px;\r\n opacity: 0.5;\r\n cursor: pointer;\r\n top: -1px;\r\n}\r\n.table-section .pagination .next img {\r\n -webkit-transform: rotate(180deg);\r\n -ms-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n margin-left: 6px;\r\n}\r\n.table-section .pagination .prev img {\r\n margin-right: 7px;\r\n}\r\n.table-section .title {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n margin-bottom: 24px;\r\n height: 40px;\r\n}\r\n.table-section .tabs-area {\r\n display: -ms-flexbox;\r\n display: flex;\r\n z-index: 2;\r\n overflow: hidden;\r\n padding: 24px 24px 0 24px;\r\n -webkit-transform: translateX(-24px);\r\n -ms-transform: translateX(-24px);\r\n transform: translateX(-24px);\r\n margin-top: -24px;\r\n}\r\n.table-section .tabs-area .tab {\r\n padding: 18px 30px 12px;\r\n background: #fff;\r\n border-radius: 15px 15px 0 0;\r\n margin-right: 6px;\r\n overflow: hidden;\r\n cursor: pointer;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n}\r\n.table-section .tabs-area .tab span {\r\n color: #c8c8dc;\r\n}\r\n.table-section .tabs-area .tab span:first-child {\r\n font-weight: 700;\r\n margin-right: 4px;\r\n}\r\n.table-section .tabs-area .tab.active span:first-child {\r\n color: #3193f5;\r\n}\r\n.table-section .tabs-area .tab.active:after {\r\n display: none;\r\n}\r\n.table-section .tabs-area .tab:after {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n bottom: -50px;\r\n width: 100%;\r\n height: 50px;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.25);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.25);\r\n}\r\n.table-section .list {\r\n width: 100%;\r\n max-height: calc(100vh - 90px - 42px - 40px - 24px - 111px);\r\n overflow: hidden;\r\n border-radius: 15px;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n padding: 46px 0 60px;\r\n background: #fff;\r\n}\r\n.table-section .list.no-paginate {\r\n max-height: calc(100vh - 90px - 42px - 40px - 24px - 57px);\r\n}\r\n.table-section .list.scroll {\r\n overflow: visible;\r\n padding-bottom: 0;\r\n}\r\n.table-section .list .scroll-area {\r\n max-height: calc(100vh - 90px - 42px - 40px - 24px - 57px - 46px);\r\n overflow: auto;\r\n border-radius: 0 0 15px 15px;\r\n}\r\n.table-section .list.list-votes .head .node-id {\r\n -webkit-transform: translateX(36px);\r\n -ms-transform: translateX(36px);\r\n transform: translateX(36px);\r\n}\r\n.table-section .list.list-votes .head .amount-delegate {\r\n -webkit-transform: translateX(62px);\r\n -ms-transform: translateX(62px);\r\n transform: translateX(62px);\r\n}\r\n.table-section .list.list-votes .head .date-delegate {\r\n -webkit-transform: translateX(-24px);\r\n -ms-transform: translateX(-24px);\r\n transform: translateX(-24px);\r\n}\r\n.table-section .list.list-votes .delegate .address {\r\n left: 18px;\r\n}\r\n.table-section .list.list-votes .delegate .node-id {\r\n left: calc(20% + 18px);\r\n}\r\n.table-section .list.list-votes .delegate .amount-delegate {\r\n left: calc(40%);\r\n}\r\n.table-section .list.list-votes .delegate .date-delegate {\r\n right: 150px;\r\n}\r\n.table-section .list .head {\r\n background: #fff !important;\r\n display: -ms-flexbox;\r\n display: flex;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n padding: 17px 30px 12px;\r\n border-bottom: 1px solid #dcdcf0;\r\n border-radius: 15px 15px 0 0;\r\n}\r\n.table-section .list .head p {\r\n font-size: 12px;\r\n font-weight: 700;\r\n}\r\n.table-section .list .head p span {\r\n font-size: 12px;\r\n font-weight: 400;\r\n color: #c8c8dc;\r\n text-transform: uppercase;\r\n}\r\n\r\n.table-section .list .head .from, .table-section .list .head .to {\r\n width: 16%;\r\n}\r\n.table-section .list .head .date, .table-section .list .head .amount {\r\n text-align: right;\r\n width: 20%;\r\n}\r\n.table-section .list .head .fee {\r\n width: 12%;\r\n text-align: right;\r\n margin-right: 0;\r\n}\r\n.table-section .list .head .rank {\r\n width: 30px;\r\n text-align: right;\r\n margin-right: 30px;\r\n}\r\n.table-section .list .head .address {\r\n width: calc(20%);\r\n}\r\n.table-section .list .head .node-id {\r\n width: calc(20%);\r\n -webkit-transform: translateX(26px);\r\n -ms-transform: translateX(26px);\r\n transform: translateX(26px);\r\n}\r\n.table-section .list .head .amount-delegate {\r\n width: 20%;\r\n text-align: right;\r\n -webkit-transform: translateX(48px);\r\n -ms-transform: translateX(48px);\r\n transform: translateX(48px);\r\n}\r\n.table-section .list .head .date-delegate {\r\n width: 40%;\r\n padding-left: 90px;\r\n text-align: right;\r\n}\r\n.table-section .list .head .btn {\r\n width: 86px;\r\n margin-left: 30px;\r\n}\r\n.table-section .list .transaction, .table-section .list .delegate {\r\n background: #fff;\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding: 21px 30px 20px;\r\n height: 60px;\r\n}\r\n.table-section .list .transaction:nth-child(even), .table-section .list .delegate:nth-child(even) {\r\n background: #fbfbfe;\r\n}\r\n.table-section .list .transaction p, .table-section .list .delegate p {\r\n font-size: 14px;\r\n font-weight: 500;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n padding: 12px 12px 11px;\r\n white-space: nowrap;\r\n background: inherit;\r\n z-index: 1;\r\n}\r\n.table-section .list .transaction p.copy:hover, .table-section .list .delegate p.copy:hover {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n max-width: none;\r\n z-index: 2;\r\n -webkit-box-shadow: 0 1px 20px rgba(209, 209, 220, 0.6);\r\n box-shadow: 0 1px 20px rgba(209, 209, 220, 0.6);\r\n padding-right: 38px;\r\n}\r\n.table-section .list .transaction p.copy:hover:after, .table-section .list .delegate p.copy:hover:after {\r\n display: block;\r\n}\r\n.table-section .list .transaction p.copy, .table-section .list .delegate p.copy {\r\n cursor: pointer;\r\n border-radius: 5px;\r\n}\r\n.table-section .list .transaction p.copy:after, .table-section .list .delegate p.copy:after {\r\n content: '';\r\n width: 14px;\r\n height: 14px;\r\n position: absolute;\r\n right: 12px;\r\n top: 14px;\r\n background-image: url(\"../img/copy.svg\");\r\n background-size: 14px;\r\n z-index: 2;\r\n display: none;\r\n}\r\n.table-section .list .transaction .rank, .table-section .list .delegate .rank {\r\n width: 60px;\r\n text-align: right;\r\n position: absolute;\r\n left: 6px;\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .address, .table-section .list .delegate .address {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n max-width: calc(20%);\r\n position: absolute;\r\n left: 78px;\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .node-id, .table-section .list .delegate .node-id {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n max-width: calc(20%);\r\n position: absolute;\r\n left: calc(20% + 78px);\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .amount-delegate, .table-section .list .delegate .amount-delegate {\r\n width: 20%;\r\n text-align: right;\r\n position: absolute;\r\n left: calc(40% + 78px);\r\n top: 9px;\r\n overflow: visible;\r\n}\r\n.table-section .list .transaction .date-delegate, .table-section .list .delegate .date-delegate {\r\n width: calc(30% - 120px);\r\n text-align: right;\r\n position: absolute;\r\n right: 18px;\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .your-vote, .table-section .list .delegate .your-vote {\r\n position: absolute;\r\n left: calc(100% + 12px);\r\n top: 50%;\r\n -webkit-transform: translateY(-50%);\r\n -ms-transform: translateY(-50%);\r\n transform: translateY(-50%);\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n padding: 2px 6px;\r\n white-space: nowrap;\r\n background: #a0cd60;\r\n color: #fff;\r\n font-size: 14px;\r\n border-radius: 5px;\r\n z-index: 2;\r\n -webkit-transition: 0.15s ease-in;\r\n -o-transition: 0.15s ease-in;\r\n transition: 0.15s ease-in;\r\n cursor: default;\r\n}\r\n\r\n.table-section .list .transaction .your-vote img, .table-section .list .delegate .your-vote img {\r\n width: 8px;\r\n height: 8px;\r\n margin-left: 6px;\r\n cursor: pointer;\r\n -webkit-filter: brightness(800%) contrast(500%);\r\n filter: brightness(800%) contrast(500%);\r\n}\r\n.table-section .list .transaction .btn, .table-section .list .delegate .btn {\r\n width: 86px;\r\n margin-left: 30px;\r\n position: absolute;\r\n right: 36px;\r\n top: 9px;\r\n text-align: center;\r\n}\r\n.table-section .list .transaction .btn span, .table-section .list .delegate .btn span {\r\n position: absolute;\r\n left: 0;\r\n top: 0px;\r\n padding: 10px 0 7px;\r\n width: 100%;\r\n background: #fff;\r\n border-radius: 6px;\r\n -webkit-box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n font-size: 14px;\r\n font-weight: 700;\r\n text-transform: uppercase;\r\n cursor: pointer;\r\n}\r\n.table-section .list .delegate .btn .pending {\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n background: #dcdcf0;\r\n color: #fff;\r\n cursor: default;\r\n\r\n pointer-events: none;\r\n}\r\n.table-section .list .head .hash-title {\r\n width: 16%;\r\n}\r\n.table-section .list .transaction .hash-row {\r\n color: #3193f5;\r\n}\r\n.table-section .list .transaction .hash-row, .table-section .list .delegate .hash-row {\r\n width: 16%;\r\n left: 18px;\r\n top: 9px;\r\n position: absolute;\r\n padding-right: 12px !important;\r\n}\r\n.table-section .list .transaction .hash-row-failed {\r\n color: rgb(223, 67, 63);\r\n}\r\n.table-section .list .transaction .hash-row.copy:after, .table-section .list .delegate .hash-row.copy:after {\r\n display: none !important;\r\n}\r\n.table-section .list .transaction .from, .table-section .list .delegate .from, .table-section .list .transaction .to, .table-section .list .delegate .to {\r\n width: calc(16%);\r\n position: absolute;\r\n left: calc(16% + 4px);\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .to, .table-section .list .delegate .to {\r\n left: calc(16% + 16% + 4px);\r\n}\r\n.table-section .list .transaction .date, .table-section .list .delegate .date, .table-section .list .transaction .amount, .table-section .list .delegate .amount {\r\n text-align: right;\r\n width: 20%;\r\n position: absolute;\r\n right: 32%;\r\n top: 9px;\r\n}\r\n.table-section .list .transaction .amount, .table-section .list .delegate .amount {\r\n right: calc(12% + 12px);\r\n}\r\n.table-section .list .transaction .fee, .table-section .list .delegate .fee {\r\n width: 12%;\r\n text-align: right;\r\n margin-right: 0;\r\n position: absolute;\r\n right: 18px;\r\n top: 9px;\r\n}\r\n.table-section .list .all {\r\n background: #fff !important;\r\n padding: 19px 30px 18px;\r\n border-top: 1px solid #dcdcf0;\r\n border-radius: 0 0 15px 15px;\r\n color: #3193f5;\r\n font-weight: 500;\r\n text-align: center;\r\n display: block;\r\n width: 100%;\r\n height: 60px;\r\n position: absolute;\r\n bottom: 0;\r\n left: 0;\r\n z-index: 5;\r\n}\r\n.table-section .list .all span {\r\n color: #b9dbfd;\r\n}\r\n\r\n.view-all-link {\r\n color: #3193f5;\r\n text-transform: uppercase;\r\n font-size: 14px;\r\n font-weight: 700;\r\n float: right;\r\n margin-top: 20px;\r\n}\r\n.popup-area {\r\n width: 100%;\r\n height: 100vh;\r\n position: fixed;\r\n left: 0;\r\n top: 0;\r\n background: rgba(28, 28, 39, 0.6);\r\n z-index: 10;\r\n}\r\n.popup-area .popup {\r\n width: 600px;\r\n padding: 36px 36px 42px;\r\n background: #fff;\r\n border-radius: 15px;\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n -webkit-transform: translate(-50%, -65%);\r\n -ms-transform: translate(-50%, -65%);\r\n transform: translate(-50%, -65%);\r\n}\r\n.popup-area .popup.success {\r\n width: 476px;\r\n padding: 60px 36px 72px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n text-align: center;\r\n}\r\n.popup-area .popup.success h2 {\r\n margin: 36px 0 60px;\r\n}\r\n.popup-area .popup.success .button {\r\n width: 180px;\r\n padding: 16px 0;\r\n}\r\n.popup-area .popup h2 {\r\n color: #3193f5;\r\n line-height: 115%;\r\n margin-bottom: 29px;\r\n}\r\n.popup-area .popup .info {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n padding: 18px 0;\r\n border-top: 1px solid #dcdcf0;\r\n}\r\n.popup-area .popup .info span {\r\n width: -webkit-max-content;\r\n width: -moz-max-content;\r\n width: max-content;\r\n text-align: right;\r\n text-transform: uppercase;\r\n max-width: 420px;\r\n height: -webkit-max-content;\r\n height: -moz-max-content;\r\n height: max-content;\r\n max-height: 100px;\r\n word-wrap: break-word;\r\n overflow-y: auto;\r\n}\r\n.popup-area .popup .info .title {\r\n text-align: left;\r\n font-weight: 700;\r\n}\r\n.popup-area .popup .info p {\r\n font-weight: 700;\r\n}\r\n.popup-area .popup .info .lite {\r\n font-weight: 400;\r\n color: #c8c8dc;\r\n}\r\n.popup-area .popup .button-area {\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding-top: 36px;\r\n border-top: 1px solid #dcdcf0;\r\n}\r\n.popup-area .popup .button-area .button {\r\n width: 215px;\r\n padding: 16px 0;\r\n margin-right: 24px;\r\n}\r\n.popup-area .popup .button-area .white {\r\n -webkit-box-shadow: none;\r\n box-shadow: none;\r\n -webkit-transition: 0.175s ease-in;\r\n -o-transition: 0.175s ease-in;\r\n transition: 0.175s ease-in;\r\n}\r\n.popup-area .popup .button-area .white:hover {\r\n -webkit-box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n box-shadow: 0 10px 20px rgba(132, 149, 156, 0.15);\r\n}\r\n.popup-area .popup .button-area .white span {\r\n color: #3193f5;\r\n}\r\n\r\n.cards-container {\r\n display: grid;\r\n grid-template-columns: repeat(4, 1fr);\r\n grid-gap: 30px;\r\n padding-top: 108px;\r\n margin: 0 auto;\r\n max-width: 1505px;\r\n}\r\n@media (max-width: 1580px) {\r\n .cards-container {\r\n max-width: -webkit-max-content;\r\n max-width: -moz-max-content;\r\n max-width: max-content;\r\n grid-template-columns: repeat(3, 1fr);\r\n }\r\n}\r\n@media (max-width: 1200px) {\r\n .cards-container {\r\n max-width: -webkit-max-content;\r\n max-width: -moz-max-content;\r\n max-width: max-content;\r\n grid-template-columns: repeat(2, 1fr);\r\n }\r\n}\r\n.cards-container > * {\r\n width: 354px;\r\n height: 189px;\r\n background: #fff;\r\n -webkit-box-shadow: 0px 20px 40px rgba(132, 149, 156, 0.05);\r\n box-shadow: 0px 20px 40px rgba(132, 149, 156, 0.05);\r\n border-radius: 15px;\r\n padding: 24px 30px 32px 30px;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n overflow: hidden;\r\n}\r\n.cards-container > *:after {\r\n content: '';\r\n background: url(\"../img/back-circle.svg\") no-repeat;\r\n position: absolute;\r\n top: -125px;\r\n right: -110px;\r\n width: 297px;\r\n height: 297px;\r\n}\r\n.cards-container > * > *:nth-child(1) {\r\n padding-bottom: 6px;\r\n font-size: 24px;\r\n line-height: 27px;\r\n font-weight: 700;\r\n}\r\n.cards-container > * > *:nth-child(2) {\r\n padding-bottom: 6px;\r\n top: 0;\r\n margin-bottom: auto;\r\n font-size: 14px;\r\n line-height: 19px;\r\n color: rgba(51, 51, 81, 0.5);\r\n}\r\n.cards-container > * > *:nth-child(3) {\r\n font-size: 48px;\r\n line-height: 54px;\r\n font-weight: 700;\r\n color: #3193f4;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.cards-container > * > *:nth-child(3) > *:nth-child(1) {\r\n font-size: 48px;\r\n line-height: 54px;\r\n font-weight: 700;\r\n color: #3193f4;\r\n margin-right: 10px;\r\n}\r\n.cards-container > * > *:nth-child(3) > *:nth-child(2) {\r\n font-size: 18px;\r\n line-height: 19px;\r\n font-weight: 700;\r\n color: #3193f4;\r\n}\r\n.cards-container > *:nth-child(1):after {\r\n -webkit-animation: spin1 6s infinite linear;\r\n animation: spin1 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin1 {\r\n from {\r\n -webkit-transform: rotate(0);\r\n transform: rotate(0);\r\n }\r\n to {\r\n -webkit-transform: rotate(360deg);\r\n transform: rotate(360deg);\r\n }\r\n}\r\n@keyframes spin1 {\r\n from {\r\n -webkit-transform: rotate(0);\r\n transform: rotate(0);\r\n }\r\n to {\r\n -webkit-transform: rotate(360deg);\r\n transform: rotate(360deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(2):after {\r\n -webkit-transform: rotate(180deg);\r\n -ms-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n -webkit-animation: spin2 6s infinite linear;\r\n animation: spin2 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin2 {\r\n from {\r\n -webkit-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(540deg);\r\n transform: rotate(540deg);\r\n }\r\n}\r\n@keyframes spin2 {\r\n from {\r\n -webkit-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(540deg);\r\n transform: rotate(540deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(3):after {\r\n -webkit-transform: rotate(30deg);\r\n -ms-transform: rotate(30deg);\r\n transform: rotate(30deg);\r\n -webkit-animation: spin3 6s infinite linear;\r\n animation: spin3 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin3 {\r\n from {\r\n -webkit-transform: rotate(30deg);\r\n transform: rotate(30deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(390deg);\r\n transform: rotate(390deg);\r\n }\r\n}\r\n@keyframes spin3 {\r\n from {\r\n -webkit-transform: rotate(30deg);\r\n transform: rotate(30deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(390deg);\r\n transform: rotate(390deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(4):after {\r\n -webkit-transform: rotate(60deg);\r\n -ms-transform: rotate(60deg);\r\n transform: rotate(60deg);\r\n -webkit-animation: spin4 6s infinite linear;\r\n animation: spin4 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin4 {\r\n from {\r\n -webkit-transform: rotate(60deg);\r\n transform: rotate(60deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(420deg);\r\n transform: rotate(420deg);\r\n }\r\n}\r\n@keyframes spin4 {\r\n from {\r\n -webkit-transform: rotate(60deg);\r\n transform: rotate(60deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(420deg);\r\n transform: rotate(420deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(5):after {\r\n -webkit-transform: rotate(45deg);\r\n -ms-transform: rotate(45deg);\r\n transform: rotate(45deg);\r\n -webkit-animation: spin5 6s infinite linear;\r\n animation: spin5 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin5 {\r\n from {\r\n -webkit-transform: rotate(45deg);\r\n transform: rotate(45deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(405deg);\r\n transform: rotate(405deg);\r\n }\r\n}\r\n@keyframes spin5 {\r\n from {\r\n -webkit-transform: rotate(45deg);\r\n transform: rotate(45deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(405deg);\r\n transform: rotate(405deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(6):after {\r\n -webkit-animation: spin5 6s infinite linear;\r\n animation: spin5 6s infinite linear;\r\n}\r\n@keyframes spin5 {\r\n from {\r\n -webkit-transform: rotate(0);\r\n transform: rotate(0);\r\n }\r\n to {\r\n -webkit-transform: rotate(360deg);\r\n transform: rotate(360deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(7):after {\r\n -webkit-transform: rotate(110deg);\r\n -ms-transform: rotate(110deg);\r\n transform: rotate(110deg);\r\n -webkit-animation: spin6 6s infinite linear;\r\n animation: spin6 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin6 {\r\n from {\r\n -webkit-transform: rotate(110deg);\r\n transform: rotate(110deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(470deg);\r\n transform: rotate(470deg);\r\n }\r\n}\r\n@keyframes spin6 {\r\n from {\r\n -webkit-transform: rotate(110deg);\r\n transform: rotate(110deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(470deg);\r\n transform: rotate(470deg);\r\n }\r\n}\r\n.cards-container > *:nth-child(8):after {\r\n -webkit-transform: rotate(50deg);\r\n -ms-transform: rotate(50deg);\r\n transform: rotate(50deg);\r\n -webkit-animation: spin8 6s infinite linear;\r\n animation: spin8 6s infinite linear;\r\n}\r\n@-webkit-keyframes spin8 {\r\n from {\r\n -webkit-transform: rotate(50deg);\r\n transform: rotate(50deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(410deg);\r\n transform: rotate(410deg);\r\n }\r\n}\r\n@keyframes spin8 {\r\n from {\r\n -webkit-transform: rotate(50deg);\r\n transform: rotate(50deg);\r\n }\r\n to {\r\n -webkit-transform: rotate(410deg);\r\n transform: rotate(410deg);\r\n }\r\n}\r\n.tables-wrapper {\r\n padding: 48px 0 72px 0;\r\n display: grid;\r\n grid-template-columns: repeat(2, 1fr);\r\n grid-column-gap: 30px;\r\n grid-row-gap: 48px;\r\n margin: 0 auto;\r\n max-width: 1505px;\r\n}\r\n@media (max-width: 1580px) {\r\n .tables-wrapper {\r\n max-width: 1112px;\r\n grid-template-columns: repeat(1, 1fr);\r\n }\r\n}\r\n@media (max-width: 1200px) {\r\n .tables-wrapper {\r\n max-width: -webkit-max-content;\r\n max-width: -moz-max-content;\r\n max-width: max-content;\r\n grid-template-columns: repeat(1, 1fr);\r\n }\r\n}\r\n.tables-wrapper .table-block > h3 {\r\n padding-bottom: 24px;\r\n}\r\n.tables-wrapper .table-block .list {\r\n width: 100%;\r\n overflow: hidden;\r\n border-radius: 15px;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n padding: 46px 0 0px;\r\n background: #fff;\r\n}\r\n.tables-wrapper .table-block .list .head {\r\n background: #fff !important;\r\n display: -ms-flexbox;\r\n display: flex;\r\n width: 100%;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n padding: 17px 30px 12px;\r\n border-bottom: 1px solid #dcdcf0;\r\n border-radius: 15px 15px 0 0;\r\n}\r\n.tables-wrapper .table-block .list .head p {\r\n font-size: 12px;\r\n font-weight: 700;\r\n}\r\n.tables-wrapper .table-block .list .head .block-number {\r\n width: 80px;\r\n text-align: right;\r\n margin-right: 57px;\r\n}\r\n.tables-wrapper .table-block .list .head .hash {\r\n width: 230px;\r\n text-align: left;\r\n}\r\n.tables-wrapper .table-block .list .delegate {\r\n background: #fff;\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding: 21px 30px 20px;\r\n height: 60px;\r\n}\r\n.tables-wrapper .table-block .list .delegate:nth-child(even) {\r\n background: #fbfbfe;\r\n}\r\n.tables-wrapper .table-block .list .delegate p {\r\n font-size: 14px;\r\n font-weight: 500;\r\n}\r\n.tables-wrapper .table-block .list .delegate .block-number {\r\n width: 80px;\r\n text-align: right;\r\n margin-right: 57px;\r\n}\r\n.tables-wrapper .table-block .list .delegate .hash {\r\n text-align: left;\r\n color: #2c8ded;\r\n cursor: pointer;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n}\r\n.tables-wrapper .table-block .list .all {\r\n background: #fff !important;\r\n padding: 19px 30px 18px;\r\n border-top: 1px solid #dcdcf0;\r\n border-radius: 0 0 15px 15px;\r\n color: #3193f5;\r\n font-weight: 500;\r\n text-align: center;\r\n display: block;\r\n width: 100%;\r\n height: 60px;\r\n position: absolute;\r\n bottom: 0;\r\n left: 0;\r\n}\r\n.view-list-wrapper {\r\n position: absolute;\r\n width: 992px;\r\n left: 50%;\r\n top: 156px;\r\n -webkit-transform: translate(-50%, 0);\r\n -ms-transform: translate(-50%, 0);\r\n transform: translate(-50%, 0);\r\n}\r\n@media (max-width: 1080px) {\r\n .view-list-wrapper {\r\n width: calc(100% - 80px);\r\n }\r\n}\r\n.view-list-wrapper .table-block > h2 {\r\n padding-bottom: 24px;\r\n line-height: 48px;\r\n}\r\n.view-list-wrapper .table-block .list {\r\n width: 100%;\r\n overflow: hidden;\r\n border-radius: 15px;\r\n -webkit-box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0 15px 100px rgba(132, 149, 156, 0.1);\r\n padding: 46px 0 0px;\r\n background: #fff;\r\n}\r\n.view-list-wrapper .table-block .list .head {\r\n background: #fff !important;\r\n display: -ms-flexbox;\r\n display: flex;\r\n width: 100%;\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n padding: 17px 30px 12px;\r\n border-bottom: 1px solid #dcdcf0;\r\n border-radius: 15px 15px 0 0;\r\n}\r\n.view-list-wrapper .table-block .list .head p {\r\n font-size: 12px;\r\n font-weight: 700;\r\n}\r\n.view-list-wrapper .table-block .list .head .block-number {\r\n width: 80px;\r\n text-align: right;\r\n margin-right: 57px;\r\n}\r\n.view-list-wrapper .table-block .list .head .hash {\r\n width: 230px;\r\n text-align: left;\r\n}\r\n.view-list-wrapper .table-block .list .delegate {\r\n background: #fff;\r\n display: -ms-flexbox;\r\n display: flex;\r\n padding: 21px 30px 20px;\r\n height: 60px;\r\n}\r\n.view-list-wrapper .table-block .list .delegate:nth-child(even) {\r\n background: #fbfbfe;\r\n}\r\n.view-list-wrapper .table-block .list .delegate p {\r\n font-size: 14px;\r\n font-weight: 500;\r\n}\r\n.view-list-wrapper .table-block .list .delegate .block-number {\r\n width: 80px;\r\n text-align: right;\r\n margin-right: 57px;\r\n}\r\n.view-list-wrapper .table-block .list .delegate .hash {\r\n text-align: left;\r\n color: #2c8ded;\r\n cursor: pointer;\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n}\r\n.view-list-wrapper .pagination {\r\n margin-top: 21px;\r\n float: right;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.view-list-wrapper .pagination .line {\r\n height: 19px;\r\n width: 1px;\r\n margin: 0 12px;\r\n background: #dcdcf0;\r\n}\r\n.view-list-wrapper .pagination a {\r\n color: #3193f5;\r\n text-transform: uppercase;\r\n font-size: 14px;\r\n font-weight: 700;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.view-list-wrapper .pagination a img {\r\n width: 16px;\r\n opacity: 0.5;\r\n cursor: pointer;\r\n top: -1px;\r\n}\r\n.view-list-wrapper .pagination .next img {\r\n -webkit-transform: rotate(180deg);\r\n -ms-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n margin-left: 6px;\r\n}\r\n.view-list-wrapper .pagination .prev img {\r\n margin-right: 7px;\r\n}\r\n\r\n.popup-area .info-popup {\r\n background: #FFFFFF;\r\n -webkit-box-shadow: 0px 15px 100px rgba(132, 149, 156, 0.1);\r\n box-shadow: 0px 15px 100px rgba(132, 149, 156, 0.1);\r\n border-radius: 15px;\r\n padding: 48px 48px 60px 48px;\r\n position: absolute;\r\n left: 50%;\r\n top: 60%;\r\n -webkit-transform: translate(-50%, -50%);\r\n -ms-transform: translate(-50%, -50%);\r\n transform: translate(-50%, -50%);\r\n width: 80%;\r\n}\r\n.popup-area .info-popup .close-popup {\r\n font-size: 18px;\r\n line-height: 24px;\r\n font-weight: 700;\r\n color: #FFFFFF;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n position: absolute;\r\n right: 0;\r\n top: -3%;\r\n cursor: pointer;\r\n}\r\n.popup-area .info-popup .close-popup > img {\r\n top: -2px;\r\n margin-left: 12px;\r\n width: 18px;\r\n height: 18px;\r\n}\r\n.popup-area .info-popup .close-popup:hover {\r\n opacity: 0.8;\r\n}\r\n.popup-area .info-popup .pagination {\r\n position: absolute;\r\n bottom: -48px;\r\n right: 0;\r\n margin-top: 21px;\r\n float: right;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.popup-area .info-popup .pagination .line {\r\n height: 19px;\r\n width: 1px;\r\n margin: 0 12px;\r\n background: #DCDCF0;\r\n}\r\n.popup-area .info-popup .pagination a {\r\n color: #FFFFFF;\r\n text-transform: uppercase;\r\n font-size: 14px;\r\n font-weight: 700;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.popup-area .info-popup .pagination a img {\r\n width: 16px;\r\n cursor: pointer;\r\n top: -1px;\r\n}\r\n.popup-area .info-popup .pagination .next, .popup-area .info-popup .pagination .prev {\r\n cursor: pointer;\r\n}\r\n.popup-area .info-popup .pagination .next img {\r\n -webkit-transform: rotate(180deg);\r\n -ms-transform: rotate(180deg);\r\n transform: rotate(180deg);\r\n margin-left: 6px;\r\n}\r\n.popup-area .info-popup .pagination .prev img {\r\n margin-right: 7px;\r\n}\r\n.popup-area .info-popup .main-title {\r\n font-size: 36px;\r\n line-height: 36px;\r\n}\r\n.popup-area .info-popup .subtitle {\r\n color: #3193F5;\r\n font-size: 21px;\r\n line-height: 45px;\r\n padding-bottom: 36px;\r\n}\r\n.popup-area .info-popup .info {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n padding: 18px 0;\r\n border-top: 1px solid #DCDCF0;\r\n}\r\n.popup-area .info-popup .info span {\r\n max-width: 80%;\r\n text-align: right;\r\n text-transform: uppercase;\r\n word-wrap: break-word;\r\n}\r\n.popup-area .info-popup .info .title {\r\n text-align: left;\r\n font-weight: 700;\r\n}\r\n.popup-area .info-popup .info p {\r\n font-weight: 700;\r\n}\r\n.popup-area .info-popup .info .lite {\r\n font-weight: 400;\r\n color: #C8C8DC;\r\n}\r\n\r\n.transaction-result-wrapper {\r\n width: 100%;\r\n height: 150px;\r\n overflow-y: auto;\r\n}\r\n.transaction-result-wrapper .transaction-result-block {\r\n padding: 10px 20px 10px 0;\r\n text-transform: uppercase;\r\n -webkit-box-sizing: border-box;\r\n box-sizing: border-box;\r\n\r\n border-bottom: 1px solid #DCDCF0;\r\n}\r\n.transaction-result-wrapper .transaction-result-block:last-child {\r\n border-bottom: none;\r\n}\r\n.transaction-result-wrapper .transaction-result-block .results-info {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-pack: justify;\r\n justify-content: space-between;\r\n padding: 5px;\r\n -webkit-box-sizing: border-box;\r\n box-sizing: border-box;\r\n}\r\n.transaction-result-wrapper .transaction-result-block .results-info span {\r\n overflow: hidden;\r\n -o-text-overflow: ellipsis;\r\n text-overflow: ellipsis;\r\n max-width: 60%;\r\n}\r\n.input-fee-tip {\r\n color: #3193f5 !important;\r\n}\r\n.no-upper-case {\r\n text-transform: none !important;\r\n}\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/styles/index.css",".form-content form .input .error {\r\n display: inline-block;\r\n left: auto;\r\n font-size: initial;\r\n}\r\n\r\n.left-section .wallet-info .conversions {\r\n height: 21px;\r\n}\r\n\r\n.form-content form .input.invalid > textarea {\r\n border-color: #df4c4c;\r\n color: #df4c4c;\r\n}\r\n\r\n.form-content form {\r\n height: auto;\r\n min-height: 510px;\r\n}\r\n\r\n.dnd input {\r\n top: 0;\r\n left: 0;\r\n}\r\n\r\nform .input .error {\r\n position: absolute;\r\n left: auto;\r\n right: 0;\r\n top: 0;\r\n color: #df4c4c;\r\n font-weight: 500;\r\n display: block;\r\n}\r\n\r\n.left-section form .input .error {\r\n display: block;\r\n}\r\n\r\nform .input.invalid .error {\r\n display: block;\r\n}\r\n\r\n.left-section form .input .error {\r\n font-size: 14px;\r\n line-height: 14px;\r\n}\r\n\r\n.form-content form .input p span {\r\n top: 0;\r\n left: auto;\r\n}\r\n\r\n.form-content form .generate + p {\r\n width: auto;\r\n min-width: 485px;\r\n}\r\n\r\n.list .all span {\r\n color: #b9dbfd;\r\n}\r\n.disclaimer .link {\r\n color: #3193f5;\r\n font-weight: 500;\r\n cursor: pointer;\r\n}\r\n.disclaimer .link:hover {\r\n opacity: 0.8;\r\n}\r\n.popup-area .info span.wrapable-address {\r\n word-wrap: break-word;\r\n width: 340px;\r\n}\r\n.infinity-scroll-container {\r\n overflow-y: auto;\r\n max-height: calc(100vh - 90px - 42px - 40px - 24px - 111px - 46px);\r\n}\r\n\r\n.left-section .wallet-info .title {\r\n text-transform: uppercase;\r\n}\r\n\r\n.z-index-3 {\r\n z-index: 3;\r\n}\r\n\r\n.recall-popup .recall-info-fee>span {\r\n margin-bottom: 0;\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.error-popup {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.error-popup-message {\r\n padding-bottom: 40px;\r\n font-size: 1.2em;\r\n color: #df4c4c;\r\n}\r\n.success-recall-popup {\r\n display: -ms-flexbox;\r\n display: flex;\r\n -ms-flex-direction: column;\r\n flex-direction: column;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n}\r\n.success-recall-popup .success-popup-message {\r\n color: #3193f5;\r\n padding-bottom: 40px;\r\n font-size: 1.6em;\r\n}\n\n\n// WEBPACK FOOTER //\n// ./src/styles/override.css"],"sourceRoot":""} \ No newline at end of file diff --git a/src/main/resources/static/static/js/main.53982a00.js b/src/main/resources/static/static/js/main.53982a00.js new file mode 100644 index 000000000..362bdd786 --- /dev/null +++ b/src/main/resources/static/static/js/main.53982a00.js @@ -0,0 +1,2 @@ +!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=91)}([function(e,t,n){"use strict";e.exports=n(98)},function(e,t,n){"use strict";var r=n(103),i=(n(51),n(107));n.d(t,"a",function(){return r.a}),n.d(t,"b",function(){return i.a})},function(e,t,n){"use strict";var r=n(127);n.d(t,"a",function(){return r.a});n(133);var i=n(57);n.d(t,"b",function(){return i.a});n(134);var a=n(135);n.d(t,"c",function(){return a.a});n(137);var o=n(138);n.d(t,"d",function(){return o.a});var s=n(59);n.d(t,"e",function(){return s.a});n(34),n(139);var c=n(140);n.d(t,"f",function(){return c.a});n(141),n(142);var l=n(143);n.d(t,"g",function(){return l.a})},function(e,t,n){"use strict";var r;n.d(t,"a",function(){return r}),function(e){e.SAVE_VERSION="SAVE_VERSION",e.SAVE_INFO="SAVE_INFO",e.SAVE_SEED="SAVE_SEED",e.CLEAR_SEED="CLEAR_SEED",e.SAVE_WALLET="SAVE_WALLET",e.CLEAR_WALLET="CLEAR_WALLET",e.SET_BALANCE="SET_BALANCE",e.CLEAN_BALANCE="CLEAN_BALANCE",e.SET_DELEGATES="SET_DELEGATES",e.SET_APPEND_TO_DELEGATES="SET_APPEND_TO_DELEGATES",e.SET_CASTED_VOTES_DELEGATES="SET_CASTED_VOTES_DELEGATES",e.SET_APPEND_TO_CASTED_VOTES_DELEGATES="SET_APPEND_TO_CASTED_VOTES_DELEGATES",e.SET_TRANSACTIONS="SET_TRANSACTIONS",e.SET_TRANSACTION="SET_TRANSACTION",e.SET_APPEND_TO_TRANSACTIONS="SET_APPEND_TO_TRANSACTIONS"}(r||(r={}))},function(e,t,n){e.exports=n(104)()},function(e,t,n){"use strict";var r=n(66),i=n(168),a=Object.prototype.toString;function o(e){return"[object Array]"===a.call(e)}function s(e){return null!==e&&"object"===typeof e}function c(e){return"[object Function]"===a.call(e)}function l(e,t){if(null!==e&&"undefined"!==typeof e)if("object"!==typeof e&&(e=[e]),o(e))for(var n=0,r=e.length;n(i>>1)-1?(i>>1)-c:c,a.isubn(s)):s=0,r[o]=s,a.iushrn(1)}return r},r.getJSF=function(e,t){var n=[[],[]];e=e.clone(),t=t.clone();for(var r,i=0,a=0;e.cmpn(-i)>0||t.cmpn(-a)>0;){var o,s,c=e.andln(3)+i&3,l=t.andln(3)+a&3;3===c&&(c=-1),3===l&&(l=-1),o=0===(1&c)?0:3!==(r=e.andln(7)+i&7)&&5!==r||2!==l?c:-c,n[0].push(o),s=0===(1&l)?0:3!==(r=t.andln(7)+a&7)&&5!==r||2!==c?l:-l,n[1].push(s),2*i===o+1&&(i=1-i),2*a===s+1&&(a=1-a),e.iushrn(1),t.iushrn(1)}return n},r.cachedProperty=function(e,t,n){var r="_"+t;e.prototype[t]=function(){return void 0!==this[r]?this[r]:this[r]=n.call(this)}},r.parseBytes=function(e){return"string"===typeof e?r.toArray(e,"hex"):e},r.intFromLE=function(e){return new i(e,"hex","le")}},function(e,t,n){(function(e){!function(e,t){"use strict";function r(e,t){if(!e)throw new Error(t||"Assertion failed")}function i(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}function a(e,t,n){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(n=t,t=10),this._init(e||0,t||10,n||"be"))}var o;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{o="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:n(190).Buffer}catch(e){}function s(e,t){var n=e.charCodeAt(t);return n>=65&&n<=70?n-55:n>=97&&n<=102?n-87:n-48&15}function c(e,t,n){var r=s(e,n);return n-1>=t&&(r|=s(e,n-1)<<4),r}function l(e,t,n,r){for(var i=0,a=Math.min(e.length,n),o=t;o=49?s-49+10:s>=17?s-17+10:s}return i}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,n){if("number"===typeof e)return this._initNumber(e,t,n);if("object"===typeof e)return this._initArray(e,t,n);"hex"===t&&(t=16),r(t===(0|t)&&t>=2&&t<=36);var i=0;"-"===(e=e.toString().replace(/\s+/g,""))[0]&&(i++,this.negative=1),i=0;i-=3)o=e[i]|e[i-1]<<8|e[i-2]<<16,this.words[a]|=o<>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);else if("le"===n)for(i=0,a=0;i>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,n){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var r=0;r=t;r-=2)i=c(e,t,r)<=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;else for(r=(e.length-t)%2===0?t+1:t;r=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;this.strip()},a.prototype._parseBase=function(e,t,n){this.words=[0],this.length=1;for(var r=0,i=1;i<=67108863;i*=t)r++;r--,i=i/t|0;for(var a=e.length-n,o=a%r,s=Math.min(a,a-o)+n,c=0,u=n;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var u=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],f=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],d=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function h(e,t,n){n.negative=t.negative^e.negative;var r=e.length+t.length|0;n.length=r,r=r-1|0;var i=0|e.words[0],a=0|t.words[0],o=i*a,s=67108863&o,c=o/67108864|0;n.words[0]=s;for(var l=1;l>>26,f=67108863&c,d=Math.min(l,t.length-1),h=Math.max(0,l-e.length+1);h<=d;h++){var p=l-h|0;u+=(o=(i=0|e.words[p])*(a=0|t.words[h])+f)/67108864|0,f=67108863&o}n.words[l]=0|f,c=0|u}return 0!==c?n.words[l]=0|c:n.length--,n.strip()}a.prototype.toString=function(e,t){var n;if(e=e||10,t=0|t||1,16===e||"hex"===e){n="";for(var i=0,a=0,o=0;o>>24-i&16777215)||o!==this.length-1?u[6-c.length]+c+n:c+n,(i+=2)>=26&&(i-=26,o--)}for(0!==a&&(n=a.toString(16)+n);n.length%t!==0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}if(e===(0|e)&&e>=2&&e<=36){var l=f[e],h=d[e];n="";var p=this.clone();for(p.negative=0;!p.isZero();){var m=p.modn(h).toString(e);n=(p=p.idivn(h)).isZero()?m+n:u[l-m.length]+m+n}for(this.isZero()&&(n="0"+n);n.length%t!==0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}r(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&r(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return r("undefined"!==typeof o),this.toArrayLike(o,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,n){var i=this.byteLength(),a=n||Math.max(1,i);r(i<=a,"byte array longer than desired length"),r(a>0,"Requested array length <= 0"),this.strip();var o,s,c="le"===t,l=new e(a),u=this.clone();if(c){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),l[s]=o;for(;s=4096&&(n+=13,t>>>=13),t>=64&&(n+=7,t>>>=7),t>=8&&(n+=4,t>>>=4),t>=2&&(n+=2,t>>>=2),n+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,n=0;return 0===(8191&t)&&(n+=13,t>>>=13),0===(127&t)&&(n+=7,t>>>=7),0===(15&t)&&(n+=4,t>>>=4),0===(3&t)&&(n+=2,t>>>=2),0===(1&t)&&n++,n},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;te.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var n=0;ne.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,n;this.length>e.length?(t=this,n=e):(t=e,n=this);for(var r=0;re.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){r("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),n=e%26;this._expand(t),n>0&&t--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-n),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){r("number"===typeof e&&e>=0);var n=e/26|0,i=e%26;return this._expand(n+1),this.words[n]=t?this.words[n]|1<e.length?(n=this,r=e):(n=e,r=this);for(var i=0,a=0;a>>26;for(;0!==i&&a>>26;if(this.length=n.length,0!==i)this.words[this.length]=i,this.length++;else if(n!==this)for(;ae.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var n,r,i=this.cmp(e);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(n=this,r=e):(n=e,r=this);for(var a=0,o=0;o>26,this.words[o]=67108863&t;for(;0!==a&&o>26,this.words[o]=67108863&t;if(0===a&&o>>13,h=0|o[1],p=8191&h,m=h>>>13,b=0|o[2],y=8191&b,v=b>>>13,g=0|o[3],w=8191&g,E=g>>>13,S=0|o[4],_=8191&S,x=S>>>13,k=0|o[5],M=8191&k,T=k>>>13,C=0|o[6],O=8191&C,P=C>>>13,N=0|o[7],A=8191&N,R=N>>>13,D=0|o[8],j=8191&D,I=D>>>13,L=0|o[9],H=8191&L,F=L>>>13,z=0|s[0],Y=8191&z,U=z>>>13,W=0|s[1],B=8191&W,q=W>>>13,V=0|s[2],K=8191&V,$=V>>>13,X=0|s[3],G=8191&X,Q=X>>>13,J=0|s[4],Z=8191&J,ee=J>>>13,te=0|s[5],ne=8191&te,re=te>>>13,ie=0|s[6],ae=8191&ie,oe=ie>>>13,se=0|s[7],ce=8191&se,le=se>>>13,ue=0|s[8],fe=8191&ue,de=ue>>>13,he=0|s[9],pe=8191&he,me=he>>>13;n.negative=e.negative^t.negative,n.length=19;var be=(l+(r=Math.imul(f,Y))|0)+((8191&(i=(i=Math.imul(f,U))+Math.imul(d,Y)|0))<<13)|0;l=((a=Math.imul(d,U))+(i>>>13)|0)+(be>>>26)|0,be&=67108863,r=Math.imul(p,Y),i=(i=Math.imul(p,U))+Math.imul(m,Y)|0,a=Math.imul(m,U);var ye=(l+(r=r+Math.imul(f,B)|0)|0)+((8191&(i=(i=i+Math.imul(f,q)|0)+Math.imul(d,B)|0))<<13)|0;l=((a=a+Math.imul(d,q)|0)+(i>>>13)|0)+(ye>>>26)|0,ye&=67108863,r=Math.imul(y,Y),i=(i=Math.imul(y,U))+Math.imul(v,Y)|0,a=Math.imul(v,U),r=r+Math.imul(p,B)|0,i=(i=i+Math.imul(p,q)|0)+Math.imul(m,B)|0,a=a+Math.imul(m,q)|0;var ve=(l+(r=r+Math.imul(f,K)|0)|0)+((8191&(i=(i=i+Math.imul(f,$)|0)+Math.imul(d,K)|0))<<13)|0;l=((a=a+Math.imul(d,$)|0)+(i>>>13)|0)+(ve>>>26)|0,ve&=67108863,r=Math.imul(w,Y),i=(i=Math.imul(w,U))+Math.imul(E,Y)|0,a=Math.imul(E,U),r=r+Math.imul(y,B)|0,i=(i=i+Math.imul(y,q)|0)+Math.imul(v,B)|0,a=a+Math.imul(v,q)|0,r=r+Math.imul(p,K)|0,i=(i=i+Math.imul(p,$)|0)+Math.imul(m,K)|0,a=a+Math.imul(m,$)|0;var ge=(l+(r=r+Math.imul(f,G)|0)|0)+((8191&(i=(i=i+Math.imul(f,Q)|0)+Math.imul(d,G)|0))<<13)|0;l=((a=a+Math.imul(d,Q)|0)+(i>>>13)|0)+(ge>>>26)|0,ge&=67108863,r=Math.imul(_,Y),i=(i=Math.imul(_,U))+Math.imul(x,Y)|0,a=Math.imul(x,U),r=r+Math.imul(w,B)|0,i=(i=i+Math.imul(w,q)|0)+Math.imul(E,B)|0,a=a+Math.imul(E,q)|0,r=r+Math.imul(y,K)|0,i=(i=i+Math.imul(y,$)|0)+Math.imul(v,K)|0,a=a+Math.imul(v,$)|0,r=r+Math.imul(p,G)|0,i=(i=i+Math.imul(p,Q)|0)+Math.imul(m,G)|0,a=a+Math.imul(m,Q)|0;var we=(l+(r=r+Math.imul(f,Z)|0)|0)+((8191&(i=(i=i+Math.imul(f,ee)|0)+Math.imul(d,Z)|0))<<13)|0;l=((a=a+Math.imul(d,ee)|0)+(i>>>13)|0)+(we>>>26)|0,we&=67108863,r=Math.imul(M,Y),i=(i=Math.imul(M,U))+Math.imul(T,Y)|0,a=Math.imul(T,U),r=r+Math.imul(_,B)|0,i=(i=i+Math.imul(_,q)|0)+Math.imul(x,B)|0,a=a+Math.imul(x,q)|0,r=r+Math.imul(w,K)|0,i=(i=i+Math.imul(w,$)|0)+Math.imul(E,K)|0,a=a+Math.imul(E,$)|0,r=r+Math.imul(y,G)|0,i=(i=i+Math.imul(y,Q)|0)+Math.imul(v,G)|0,a=a+Math.imul(v,Q)|0,r=r+Math.imul(p,Z)|0,i=(i=i+Math.imul(p,ee)|0)+Math.imul(m,Z)|0,a=a+Math.imul(m,ee)|0;var Ee=(l+(r=r+Math.imul(f,ne)|0)|0)+((8191&(i=(i=i+Math.imul(f,re)|0)+Math.imul(d,ne)|0))<<13)|0;l=((a=a+Math.imul(d,re)|0)+(i>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,r=Math.imul(O,Y),i=(i=Math.imul(O,U))+Math.imul(P,Y)|0,a=Math.imul(P,U),r=r+Math.imul(M,B)|0,i=(i=i+Math.imul(M,q)|0)+Math.imul(T,B)|0,a=a+Math.imul(T,q)|0,r=r+Math.imul(_,K)|0,i=(i=i+Math.imul(_,$)|0)+Math.imul(x,K)|0,a=a+Math.imul(x,$)|0,r=r+Math.imul(w,G)|0,i=(i=i+Math.imul(w,Q)|0)+Math.imul(E,G)|0,a=a+Math.imul(E,Q)|0,r=r+Math.imul(y,Z)|0,i=(i=i+Math.imul(y,ee)|0)+Math.imul(v,Z)|0,a=a+Math.imul(v,ee)|0,r=r+Math.imul(p,ne)|0,i=(i=i+Math.imul(p,re)|0)+Math.imul(m,ne)|0,a=a+Math.imul(m,re)|0;var Se=(l+(r=r+Math.imul(f,ae)|0)|0)+((8191&(i=(i=i+Math.imul(f,oe)|0)+Math.imul(d,ae)|0))<<13)|0;l=((a=a+Math.imul(d,oe)|0)+(i>>>13)|0)+(Se>>>26)|0,Se&=67108863,r=Math.imul(A,Y),i=(i=Math.imul(A,U))+Math.imul(R,Y)|0,a=Math.imul(R,U),r=r+Math.imul(O,B)|0,i=(i=i+Math.imul(O,q)|0)+Math.imul(P,B)|0,a=a+Math.imul(P,q)|0,r=r+Math.imul(M,K)|0,i=(i=i+Math.imul(M,$)|0)+Math.imul(T,K)|0,a=a+Math.imul(T,$)|0,r=r+Math.imul(_,G)|0,i=(i=i+Math.imul(_,Q)|0)+Math.imul(x,G)|0,a=a+Math.imul(x,Q)|0,r=r+Math.imul(w,Z)|0,i=(i=i+Math.imul(w,ee)|0)+Math.imul(E,Z)|0,a=a+Math.imul(E,ee)|0,r=r+Math.imul(y,ne)|0,i=(i=i+Math.imul(y,re)|0)+Math.imul(v,ne)|0,a=a+Math.imul(v,re)|0,r=r+Math.imul(p,ae)|0,i=(i=i+Math.imul(p,oe)|0)+Math.imul(m,ae)|0,a=a+Math.imul(m,oe)|0;var _e=(l+(r=r+Math.imul(f,ce)|0)|0)+((8191&(i=(i=i+Math.imul(f,le)|0)+Math.imul(d,ce)|0))<<13)|0;l=((a=a+Math.imul(d,le)|0)+(i>>>13)|0)+(_e>>>26)|0,_e&=67108863,r=Math.imul(j,Y),i=(i=Math.imul(j,U))+Math.imul(I,Y)|0,a=Math.imul(I,U),r=r+Math.imul(A,B)|0,i=(i=i+Math.imul(A,q)|0)+Math.imul(R,B)|0,a=a+Math.imul(R,q)|0,r=r+Math.imul(O,K)|0,i=(i=i+Math.imul(O,$)|0)+Math.imul(P,K)|0,a=a+Math.imul(P,$)|0,r=r+Math.imul(M,G)|0,i=(i=i+Math.imul(M,Q)|0)+Math.imul(T,G)|0,a=a+Math.imul(T,Q)|0,r=r+Math.imul(_,Z)|0,i=(i=i+Math.imul(_,ee)|0)+Math.imul(x,Z)|0,a=a+Math.imul(x,ee)|0,r=r+Math.imul(w,ne)|0,i=(i=i+Math.imul(w,re)|0)+Math.imul(E,ne)|0,a=a+Math.imul(E,re)|0,r=r+Math.imul(y,ae)|0,i=(i=i+Math.imul(y,oe)|0)+Math.imul(v,ae)|0,a=a+Math.imul(v,oe)|0,r=r+Math.imul(p,ce)|0,i=(i=i+Math.imul(p,le)|0)+Math.imul(m,ce)|0,a=a+Math.imul(m,le)|0;var xe=(l+(r=r+Math.imul(f,fe)|0)|0)+((8191&(i=(i=i+Math.imul(f,de)|0)+Math.imul(d,fe)|0))<<13)|0;l=((a=a+Math.imul(d,de)|0)+(i>>>13)|0)+(xe>>>26)|0,xe&=67108863,r=Math.imul(H,Y),i=(i=Math.imul(H,U))+Math.imul(F,Y)|0,a=Math.imul(F,U),r=r+Math.imul(j,B)|0,i=(i=i+Math.imul(j,q)|0)+Math.imul(I,B)|0,a=a+Math.imul(I,q)|0,r=r+Math.imul(A,K)|0,i=(i=i+Math.imul(A,$)|0)+Math.imul(R,K)|0,a=a+Math.imul(R,$)|0,r=r+Math.imul(O,G)|0,i=(i=i+Math.imul(O,Q)|0)+Math.imul(P,G)|0,a=a+Math.imul(P,Q)|0,r=r+Math.imul(M,Z)|0,i=(i=i+Math.imul(M,ee)|0)+Math.imul(T,Z)|0,a=a+Math.imul(T,ee)|0,r=r+Math.imul(_,ne)|0,i=(i=i+Math.imul(_,re)|0)+Math.imul(x,ne)|0,a=a+Math.imul(x,re)|0,r=r+Math.imul(w,ae)|0,i=(i=i+Math.imul(w,oe)|0)+Math.imul(E,ae)|0,a=a+Math.imul(E,oe)|0,r=r+Math.imul(y,ce)|0,i=(i=i+Math.imul(y,le)|0)+Math.imul(v,ce)|0,a=a+Math.imul(v,le)|0,r=r+Math.imul(p,fe)|0,i=(i=i+Math.imul(p,de)|0)+Math.imul(m,fe)|0,a=a+Math.imul(m,de)|0;var ke=(l+(r=r+Math.imul(f,pe)|0)|0)+((8191&(i=(i=i+Math.imul(f,me)|0)+Math.imul(d,pe)|0))<<13)|0;l=((a=a+Math.imul(d,me)|0)+(i>>>13)|0)+(ke>>>26)|0,ke&=67108863,r=Math.imul(H,B),i=(i=Math.imul(H,q))+Math.imul(F,B)|0,a=Math.imul(F,q),r=r+Math.imul(j,K)|0,i=(i=i+Math.imul(j,$)|0)+Math.imul(I,K)|0,a=a+Math.imul(I,$)|0,r=r+Math.imul(A,G)|0,i=(i=i+Math.imul(A,Q)|0)+Math.imul(R,G)|0,a=a+Math.imul(R,Q)|0,r=r+Math.imul(O,Z)|0,i=(i=i+Math.imul(O,ee)|0)+Math.imul(P,Z)|0,a=a+Math.imul(P,ee)|0,r=r+Math.imul(M,ne)|0,i=(i=i+Math.imul(M,re)|0)+Math.imul(T,ne)|0,a=a+Math.imul(T,re)|0,r=r+Math.imul(_,ae)|0,i=(i=i+Math.imul(_,oe)|0)+Math.imul(x,ae)|0,a=a+Math.imul(x,oe)|0,r=r+Math.imul(w,ce)|0,i=(i=i+Math.imul(w,le)|0)+Math.imul(E,ce)|0,a=a+Math.imul(E,le)|0,r=r+Math.imul(y,fe)|0,i=(i=i+Math.imul(y,de)|0)+Math.imul(v,fe)|0,a=a+Math.imul(v,de)|0;var Me=(l+(r=r+Math.imul(p,pe)|0)|0)+((8191&(i=(i=i+Math.imul(p,me)|0)+Math.imul(m,pe)|0))<<13)|0;l=((a=a+Math.imul(m,me)|0)+(i>>>13)|0)+(Me>>>26)|0,Me&=67108863,r=Math.imul(H,K),i=(i=Math.imul(H,$))+Math.imul(F,K)|0,a=Math.imul(F,$),r=r+Math.imul(j,G)|0,i=(i=i+Math.imul(j,Q)|0)+Math.imul(I,G)|0,a=a+Math.imul(I,Q)|0,r=r+Math.imul(A,Z)|0,i=(i=i+Math.imul(A,ee)|0)+Math.imul(R,Z)|0,a=a+Math.imul(R,ee)|0,r=r+Math.imul(O,ne)|0,i=(i=i+Math.imul(O,re)|0)+Math.imul(P,ne)|0,a=a+Math.imul(P,re)|0,r=r+Math.imul(M,ae)|0,i=(i=i+Math.imul(M,oe)|0)+Math.imul(T,ae)|0,a=a+Math.imul(T,oe)|0,r=r+Math.imul(_,ce)|0,i=(i=i+Math.imul(_,le)|0)+Math.imul(x,ce)|0,a=a+Math.imul(x,le)|0,r=r+Math.imul(w,fe)|0,i=(i=i+Math.imul(w,de)|0)+Math.imul(E,fe)|0,a=a+Math.imul(E,de)|0;var Te=(l+(r=r+Math.imul(y,pe)|0)|0)+((8191&(i=(i=i+Math.imul(y,me)|0)+Math.imul(v,pe)|0))<<13)|0;l=((a=a+Math.imul(v,me)|0)+(i>>>13)|0)+(Te>>>26)|0,Te&=67108863,r=Math.imul(H,G),i=(i=Math.imul(H,Q))+Math.imul(F,G)|0,a=Math.imul(F,Q),r=r+Math.imul(j,Z)|0,i=(i=i+Math.imul(j,ee)|0)+Math.imul(I,Z)|0,a=a+Math.imul(I,ee)|0,r=r+Math.imul(A,ne)|0,i=(i=i+Math.imul(A,re)|0)+Math.imul(R,ne)|0,a=a+Math.imul(R,re)|0,r=r+Math.imul(O,ae)|0,i=(i=i+Math.imul(O,oe)|0)+Math.imul(P,ae)|0,a=a+Math.imul(P,oe)|0,r=r+Math.imul(M,ce)|0,i=(i=i+Math.imul(M,le)|0)+Math.imul(T,ce)|0,a=a+Math.imul(T,le)|0,r=r+Math.imul(_,fe)|0,i=(i=i+Math.imul(_,de)|0)+Math.imul(x,fe)|0,a=a+Math.imul(x,de)|0;var Ce=(l+(r=r+Math.imul(w,pe)|0)|0)+((8191&(i=(i=i+Math.imul(w,me)|0)+Math.imul(E,pe)|0))<<13)|0;l=((a=a+Math.imul(E,me)|0)+(i>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,r=Math.imul(H,Z),i=(i=Math.imul(H,ee))+Math.imul(F,Z)|0,a=Math.imul(F,ee),r=r+Math.imul(j,ne)|0,i=(i=i+Math.imul(j,re)|0)+Math.imul(I,ne)|0,a=a+Math.imul(I,re)|0,r=r+Math.imul(A,ae)|0,i=(i=i+Math.imul(A,oe)|0)+Math.imul(R,ae)|0,a=a+Math.imul(R,oe)|0,r=r+Math.imul(O,ce)|0,i=(i=i+Math.imul(O,le)|0)+Math.imul(P,ce)|0,a=a+Math.imul(P,le)|0,r=r+Math.imul(M,fe)|0,i=(i=i+Math.imul(M,de)|0)+Math.imul(T,fe)|0,a=a+Math.imul(T,de)|0;var Oe=(l+(r=r+Math.imul(_,pe)|0)|0)+((8191&(i=(i=i+Math.imul(_,me)|0)+Math.imul(x,pe)|0))<<13)|0;l=((a=a+Math.imul(x,me)|0)+(i>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,r=Math.imul(H,ne),i=(i=Math.imul(H,re))+Math.imul(F,ne)|0,a=Math.imul(F,re),r=r+Math.imul(j,ae)|0,i=(i=i+Math.imul(j,oe)|0)+Math.imul(I,ae)|0,a=a+Math.imul(I,oe)|0,r=r+Math.imul(A,ce)|0,i=(i=i+Math.imul(A,le)|0)+Math.imul(R,ce)|0,a=a+Math.imul(R,le)|0,r=r+Math.imul(O,fe)|0,i=(i=i+Math.imul(O,de)|0)+Math.imul(P,fe)|0,a=a+Math.imul(P,de)|0;var Pe=(l+(r=r+Math.imul(M,pe)|0)|0)+((8191&(i=(i=i+Math.imul(M,me)|0)+Math.imul(T,pe)|0))<<13)|0;l=((a=a+Math.imul(T,me)|0)+(i>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,r=Math.imul(H,ae),i=(i=Math.imul(H,oe))+Math.imul(F,ae)|0,a=Math.imul(F,oe),r=r+Math.imul(j,ce)|0,i=(i=i+Math.imul(j,le)|0)+Math.imul(I,ce)|0,a=a+Math.imul(I,le)|0,r=r+Math.imul(A,fe)|0,i=(i=i+Math.imul(A,de)|0)+Math.imul(R,fe)|0,a=a+Math.imul(R,de)|0;var Ne=(l+(r=r+Math.imul(O,pe)|0)|0)+((8191&(i=(i=i+Math.imul(O,me)|0)+Math.imul(P,pe)|0))<<13)|0;l=((a=a+Math.imul(P,me)|0)+(i>>>13)|0)+(Ne>>>26)|0,Ne&=67108863,r=Math.imul(H,ce),i=(i=Math.imul(H,le))+Math.imul(F,ce)|0,a=Math.imul(F,le),r=r+Math.imul(j,fe)|0,i=(i=i+Math.imul(j,de)|0)+Math.imul(I,fe)|0,a=a+Math.imul(I,de)|0;var Ae=(l+(r=r+Math.imul(A,pe)|0)|0)+((8191&(i=(i=i+Math.imul(A,me)|0)+Math.imul(R,pe)|0))<<13)|0;l=((a=a+Math.imul(R,me)|0)+(i>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,r=Math.imul(H,fe),i=(i=Math.imul(H,de))+Math.imul(F,fe)|0,a=Math.imul(F,de);var Re=(l+(r=r+Math.imul(j,pe)|0)|0)+((8191&(i=(i=i+Math.imul(j,me)|0)+Math.imul(I,pe)|0))<<13)|0;l=((a=a+Math.imul(I,me)|0)+(i>>>13)|0)+(Re>>>26)|0,Re&=67108863;var De=(l+(r=Math.imul(H,pe))|0)+((8191&(i=(i=Math.imul(H,me))+Math.imul(F,pe)|0))<<13)|0;return l=((a=Math.imul(F,me))+(i>>>13)|0)+(De>>>26)|0,De&=67108863,c[0]=be,c[1]=ye,c[2]=ve,c[3]=ge,c[4]=we,c[5]=Ee,c[6]=Se,c[7]=_e,c[8]=xe,c[9]=ke,c[10]=Me,c[11]=Te,c[12]=Ce,c[13]=Oe,c[14]=Pe,c[15]=Ne,c[16]=Ae,c[17]=Re,c[18]=De,0!==l&&(c[19]=l,n.length++),n};function m(e,t,n){return(new b).mulp(e,t,n)}function b(e,t){this.x=e,this.y=t}Math.imul||(p=h),a.prototype.mulTo=function(e,t){var n=this.length+e.length;return 10===this.length&&10===e.length?p(this,e,t):n<63?h(this,e,t):n<1024?function(e,t,n){n.negative=t.negative^e.negative,n.length=e.length+t.length;for(var r=0,i=0,a=0;a>>26)|0)>>>26,o&=67108863}n.words[a]=s,r=o,o=i}return 0!==r?n.words[a]=r:n.length--,n.strip()}(this,e,t):m(this,e,t)},b.prototype.makeRBT=function(e){for(var t=new Array(e),n=a.prototype._countBits(e)-1,r=0;r>=1;return r},b.prototype.permute=function(e,t,n,r,i,a){for(var o=0;o>>=1)i++;return 1<>>=13,n[2*o+1]=8191&a,a>>>=13;for(o=2*t;o>=26,t+=i/67108864|0,t+=a>>>26,this.words[n]=67108863&a}return 0!==t&&(this.words[n]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=function(e){for(var t=new Array(e.bitLength()),n=0;n>>i}return t}(e);if(0===t.length)return new a(1);for(var n=this,r=0;r=0);var t,n=e%26,i=(e-n)/26,a=67108863>>>26-n<<26-n;if(0!==n){var o=0;for(t=0;t>>26-n}o&&(this.words[t]=o,this.length++)}if(0!==i){for(t=this.length-1;t>=0;t--)this.words[t+i]=this.words[t];for(t=0;t=0),i=t?(t-t%26)/26:0;var a=e%26,o=Math.min((e-a)/26,this.length),s=67108863^67108863>>>a<o)for(this.length-=o,l=0;l=0&&(0!==u||l>=i);l--){var f=0|this.words[l];this.words[l]=u<<26-a|f>>>a,u=f&s}return c&&0!==u&&(c.words[c.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,n){return r(0===this.negative),this.iushrn(e,t,n)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){r("number"===typeof e&&e>=0);var t=e%26,n=(e-t)/26,i=1<=0);var t=e%26,n=(e-t)/26;if(r(0===this.negative,"imaskn works only with positive numbers"),this.length<=n)return this;if(0!==t&&n++,this.length=Math.min(n,this.length),0!==t){var i=67108863^67108863>>>t<=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(r("number"===typeof e),r(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t>26)-(c/67108864|0),this.words[i+n]=67108863&a}for(;i>26,this.words[i+n]=67108863&a;if(0===s)return this.strip();for(r(-1===s),s=0,i=0;i>26,this.words[i]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var n=(this.length,e.length),r=this.clone(),i=e,o=0|i.words[i.length-1];0!==(n=26-this._countBits(o))&&(i=i.ushln(n),r.iushln(n),o=0|i.words[i.length-1]);var s,c=r.length-i.length;if("mod"!==t){(s=new a(null)).length=c+1,s.words=new Array(s.length);for(var l=0;l=0;f--){var d=67108864*(0|r.words[i.length+f])+(0|r.words[i.length+f-1]);for(d=Math.min(d/o|0,67108863),r._ishlnsubmul(i,d,f);0!==r.negative;)d--,r.negative=0,r._ishlnsubmul(i,1,f),r.isZero()||(r.negative^=1);s&&(s.words[f]=d)}return s&&s.strip(),r.strip(),"div"!==t&&0!==n&&r.iushrn(n),{div:s||null,mod:r}},a.prototype.divmod=function(e,t,n){return r(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(s=this.neg().divmod(e,t),"mod"!==t&&(i=s.div.neg()),"div"!==t&&(o=s.mod.neg(),n&&0!==o.negative&&o.iadd(e)),{div:i,mod:o}):0===this.negative&&0!==e.negative?(s=this.divmod(e.neg(),t),"mod"!==t&&(i=s.div.neg()),{div:i,mod:s.mod}):0!==(this.negative&e.negative)?(s=this.neg().divmod(e.neg(),t),"div"!==t&&(o=s.mod.neg(),n&&0!==o.negative&&o.isub(e)),{div:s.div,mod:o}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var i,o,s},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var n=0!==t.div.negative?t.mod.isub(e):t.mod,r=e.ushrn(1),i=e.andln(1),a=n.cmp(r);return a<0||1===i&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){r(e<=67108863);for(var t=(1<<26)%e,n=0,i=this.length-1;i>=0;i--)n=(t*n+(0|this.words[i]))%e;return n},a.prototype.idivn=function(e){r(e<=67108863);for(var t=0,n=this.length-1;n>=0;n--){var i=(0|this.words[n])+67108864*t;this.words[n]=i/e|0,t=i%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i=new a(1),o=new a(0),s=new a(0),c=new a(1),l=0;t.isEven()&&n.isEven();)t.iushrn(1),n.iushrn(1),++l;for(var u=n.clone(),f=t.clone();!t.isZero();){for(var d=0,h=1;0===(t.words[0]&h)&&d<26;++d,h<<=1);if(d>0)for(t.iushrn(d);d-- >0;)(i.isOdd()||o.isOdd())&&(i.iadd(u),o.isub(f)),i.iushrn(1),o.iushrn(1);for(var p=0,m=1;0===(n.words[0]&m)&&p<26;++p,m<<=1);if(p>0)for(n.iushrn(p);p-- >0;)(s.isOdd()||c.isOdd())&&(s.iadd(u),c.isub(f)),s.iushrn(1),c.iushrn(1);t.cmp(n)>=0?(t.isub(n),i.isub(s),o.isub(c)):(n.isub(t),s.isub(i),c.isub(o))}return{a:s,b:c,gcd:n.iushln(l)}},a.prototype._invmp=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i,o=new a(1),s=new a(0),c=n.clone();t.cmpn(1)>0&&n.cmpn(1)>0;){for(var l=0,u=1;0===(t.words[0]&u)&&l<26;++l,u<<=1);if(l>0)for(t.iushrn(l);l-- >0;)o.isOdd()&&o.iadd(c),o.iushrn(1);for(var f=0,d=1;0===(n.words[0]&d)&&f<26;++f,d<<=1);if(f>0)for(n.iushrn(f);f-- >0;)s.isOdd()&&s.iadd(c),s.iushrn(1);t.cmp(n)>=0?(t.isub(n),o.isub(s)):(n.isub(t),s.isub(o))}return(i=0===t.cmpn(1)?o:s).cmpn(0)<0&&i.iadd(e),i},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),n=e.clone();t.negative=0,n.negative=0;for(var r=0;t.isEven()&&n.isEven();r++)t.iushrn(1),n.iushrn(1);for(;;){for(;t.isEven();)t.iushrn(1);for(;n.isEven();)n.iushrn(1);var i=t.cmp(n);if(i<0){var a=t;t=n,n=a}else if(0===i||0===n.cmpn(1))break;t.isub(n)}return n.iushln(r)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){r("number"===typeof e);var t=e%26,n=(e-t)/26,i=1<>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,n=e<0;if(0!==this.negative&&!n)return-1;if(0===this.negative&&n)return 1;if(this.strip(),this.length>1)t=1;else{n&&(e=-e),r(e<=67108863,"Number is too big");var i=0|this.words[0];t=i===e?0:ie.length)return 1;if(this.length=0;n--){var r=0|this.words[n],i=0|e.words[n];if(r!==i){ri&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new _(e)},a.prototype.toRed=function(e){return r(!this.red,"Already a number in reduction context"),r(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return r(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return r(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return r(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return r(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return r(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return r(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return r(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return r(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return r(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return r(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return r(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return r(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return r(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var y={k256:null,p224:null,p192:null,p25519:null};function v(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function g(){v.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function w(){v.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function E(){v.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function S(){v.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function _(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else r(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function x(e){_.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}v.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},v.prototype.ireduce=function(e){var t,n=e;do{this.split(n,this.tmp),t=(n=(n=this.imulK(n)).iadd(this.tmp)).bitLength()}while(t>this.n);var r=t0?n.isub(this.p):void 0!==n.strip?n.strip():n._strip(),n},v.prototype.split=function(e,t){e.iushrn(this.n,0,t)},v.prototype.imulK=function(e){return e.imul(this.k)},i(g,v),g.prototype.split=function(e,t){for(var n=Math.min(e.length,9),r=0;r>>22,i=a}i>>>=22,e.words[r-10]=i,0===i&&e.length>10?e.length-=10:e.length-=9},g.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,n=0;n>>=26,e.words[n]=i,t=r}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(y[e])return y[e];var t;if("k256"===e)t=new g;else if("p224"===e)t=new w;else if("p192"===e)t=new E;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new S}return y[e]=t,t},_.prototype._verify1=function(e){r(0===e.negative,"red works only with positives"),r(e.red,"red works only with red numbers")},_.prototype._verify2=function(e,t){r(0===(e.negative|t.negative),"red works only with positives"),r(e.red&&e.red===t.red,"red works only with red numbers")},_.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},_.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},_.prototype.add=function(e,t){this._verify2(e,t);var n=e.add(t);return n.cmp(this.m)>=0&&n.isub(this.m),n._forceRed(this)},_.prototype.iadd=function(e,t){this._verify2(e,t);var n=e.iadd(t);return n.cmp(this.m)>=0&&n.isub(this.m),n},_.prototype.sub=function(e,t){this._verify2(e,t);var n=e.sub(t);return n.cmpn(0)<0&&n.iadd(this.m),n._forceRed(this)},_.prototype.isub=function(e,t){this._verify2(e,t);var n=e.isub(t);return n.cmpn(0)<0&&n.iadd(this.m),n},_.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},_.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},_.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},_.prototype.isqr=function(e){return this.imul(e,e.clone())},_.prototype.sqr=function(e){return this.mul(e,e)},_.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(r(t%2===1),3===t){var n=this.m.add(new a(1)).iushrn(2);return this.pow(e,n)}for(var i=this.m.subn(1),o=0;!i.isZero()&&0===i.andln(1);)o++,i.iushrn(1);r(!i.isZero());var s=new a(1).toRed(this),c=s.redNeg(),l=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new a(2*u*u).toRed(this);0!==this.pow(u,l).cmp(c);)u.redIAdd(c);for(var f=this.pow(u,i),d=this.pow(e,i.addn(1).iushrn(1)),h=this.pow(e,i),p=o;0!==h.cmp(s);){for(var m=h,b=0;0!==m.cmp(s);b++)m=m.redSqr();r(b=0;r--){for(var l=t.words[r],u=c-1;u>=0;u--){var f=l>>u&1;i!==n[0]&&(i=this.sqr(i)),0!==f||0!==o?(o<<=1,o|=f,(4===++s||0===r&&0===u)&&(i=this.mul(i,n[o]),s=0,o=0)):s=0}c=26}return i},_.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},_.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new x(e)},i(x,_),x.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},x.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},x.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var n=e.imul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},x.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var n=e.mul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},x.prototype.invm=function(e){return this.imod(e._invmp(this.m).mul(this.r2))._forceRed(this)}}("undefined"===typeof e||e,this)}).call(t,n(72)(e))},function(e,t,n){"use strict";var r=n(17),i=n(30);function a(e,t){return 55296===(64512&e.charCodeAt(t))&&(!(t<0||t+1>=e.length)&&56320===(64512&e.charCodeAt(t+1)))}function o(e){return(e>>>24|e>>>8&65280|e<<8&16711680|(255&e)<<24)>>>0}function s(e){return 1===e.length?"0"+e:e}function c(e){return 7===e.length?"0"+e:6===e.length?"00"+e:5===e.length?"000"+e:4===e.length?"0000"+e:3===e.length?"00000"+e:2===e.length?"000000"+e:1===e.length?"0000000"+e:e}t.inherits=i,t.toArray=function(e,t){if(Array.isArray(e))return e.slice();if(!e)return[];var n=[];if("string"===typeof e)if(t){if("hex"===t)for((e=e.replace(/[^a-z0-9]+/gi,"")).length%2!==0&&(e="0"+e),i=0;i>6|192,n[r++]=63&o|128):a(e,i)?(o=65536+((1023&o)<<10)+(1023&e.charCodeAt(++i)),n[r++]=o>>18|240,n[r++]=o>>12&63|128,n[r++]=o>>6&63|128,n[r++]=63&o|128):(n[r++]=o>>12|224,n[r++]=o>>6&63|128,n[r++]=63&o|128)}else for(i=0;i>>0}return o},t.split32=function(e,t){for(var n=new Array(4*e.length),r=0,i=0;r>>24,n[i+1]=a>>>16&255,n[i+2]=a>>>8&255,n[i+3]=255&a):(n[i+3]=a>>>24,n[i+2]=a>>>16&255,n[i+1]=a>>>8&255,n[i]=255&a)}return n},t.rotr32=function(e,t){return e>>>t|e<<32-t},t.rotl32=function(e,t){return e<>>32-t},t.sum32=function(e,t){return e+t>>>0},t.sum32_3=function(e,t,n){return e+t+n>>>0},t.sum32_4=function(e,t,n,r){return e+t+n+r>>>0},t.sum32_5=function(e,t,n,r,i){return e+t+n+r+i>>>0},t.sum64=function(e,t,n,r){var i=e[t],a=r+e[t+1]>>>0,o=(a>>0,e[t+1]=a},t.sum64_hi=function(e,t,n,r){return(t+r>>>0>>0},t.sum64_lo=function(e,t,n,r){return t+r>>>0},t.sum64_4_hi=function(e,t,n,r,i,a,o,s){var c=0,l=t;return c+=(l=l+r>>>0)>>0)>>0)>>0},t.sum64_4_lo=function(e,t,n,r,i,a,o,s){return t+r+a+s>>>0},t.sum64_5_hi=function(e,t,n,r,i,a,o,s,c,l){var u=0,f=t;return u+=(f=f+r>>>0)>>0)>>0)>>0)>>0},t.sum64_5_lo=function(e,t,n,r,i,a,o,s,c,l){return t+r+a+s+l>>>0},t.rotr64_hi=function(e,t,n){return(t<<32-n|e>>>n)>>>0},t.rotr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0},t.shr64_hi=function(e,t,n){return e>>>n},t.shr64_lo=function(e,t,n){return(e<<32-n|t>>>n)>>>0}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,i,a,o,s){if(!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,i,a,o,s],u=0;(c=new Error(t.replace(/%s/g,function(){return l[u++]}))).name="Invariant Violation"}throw c.framesToPop=1,c}}},function(e,t,n){"use strict";var r=function(){};e.exports=r},function(e,t,n){e.exports=n.p+"static/media/crumb.493a6bba.svg"},function(e,t,n){"use strict";var r=n(14),i=n.n(r),a=n(28),o=n(3),s=(n(15),n(83)),c=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})};const l=e=>t=>c(void 0,void 0,void 0,function*(){const n=new s.a(0),{data:r}=yield i.a.get(`/rpc/transactions/transfer/address/${e}`,{params:Object.assign(Object.assign({},n),{sortBy:"timestamp",sortDirection:"DESC"})}),a=r.payload;t({type:o.a.SET_TRANSACTIONS,payload:a})});t.h=l;t.g=(e=>t=>c(void 0,void 0,void 0,function*(){const{data:n}=yield i.a.get(`/rpc/transactions/transfer/${e}`),r=n.payload;t({type:o.a.SET_TRANSACTION,payload:r})}));t.i=(()=>e=>c(void 0,void 0,void 0,function*(){e({type:o.a.SET_TRANSACTION,payload:null})}));t.a=(e=>(t,n)=>c(void 0,void 0,void 0,function*(){const r=n(),a=new s.a(r.transactions.list.length),{data:c}=yield i.a.get(`/rpc/transactions/transfer/address/${e}`,{params:Object.assign(Object.assign({},a),{sortBy:"timestamp",sortDirection:"DESC"})}),l=c.payload;t({type:o.a.SET_APPEND_TO_TRANSACTIONS,payload:l})}));t.d=(e=>(t,n)=>c(void 0,void 0,void 0,function*(){const r=n().wallet;if(!r)throw new Error(">> Wallet not authorized");const o=Object(a.c)(r,e);yield i.a.post("/rpc/transactions/transfer",o),t(l(r.address))}));t.e=(({fee:e,delegate:t})=>(n,r)=>c(void 0,void 0,void 0,function*(){const n=r(),o=n.wallet;if(!o)throw new Error(">> Wallet not authorized");const s=Object(a.d)(o,e,t);console.log(n),yield i.a.post("/rpc/transactions/vote",s)}));t.c=(({fee:e,delegate:t})=>(n,r)=>c(void 0,void 0,void 0,function*(){const n=r(),o=n.wallet;if(!o)throw new Error(">> Wallet not authorized");const s=Object(a.b)(o,e,t);console.log(n),yield i.a.post("/rpc/transactions/vote",s)}));t.b=(()=>(e,t)=>c(void 0,void 0,void 0,function*(){const e=t().wallet;if(!e)throw new Error(">> Wallet not authorized");const{data:n}=yield i.a.get("/rpc/info"),r=Object(a.a)(e,n.payload);yield i.a.post("/rpc/transactions/delegate",r)}));t.f=(e=>c(void 0,void 0,void 0,function*(){return yield i.a.post("/rpc/contracts/estimation",e)}))},function(e,t,n){"use strict";var r=n(14),i=n.n(r),a=n(184),o=n(3),s=(n(15),this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})});t.b=(()=>e=>s(void 0,void 0,void 0,function*(){const{data:t}=yield(()=>{if(Object({NODE_ENV:"production",PUBLIC_URL:""}).REACT_APP_IS_MOCK){const e=a.a;return Promise.resolve({data:e})}return i.a.get("/rpc/accounts/doGenerate")})(),{defaultWallet:n,seedPhrase:r}=t.payload;e({type:o.a.SAVE_SEED,payload:r}),e({type:o.a.SAVE_WALLET,payload:n})}));t.d=(e=>t=>s(void 0,void 0,void 0,function*(){const{data:n}=yield(e=>{if(Object({NODE_ENV:"production",PUBLIC_URL:""}).REACT_APP_IS_MOCK){const e=a.a;return Promise.resolve({data:e})}return i.a.post("/rpc/accounts/doRestore",{seedPhrase:e})})(e),{defaultWallet:r,seedPhrase:s}=n.payload;t({type:o.a.SAVE_SEED,payload:s}),t({type:o.a.SAVE_WALLET,payload:r})}));t.c=(e=>t=>s(void 0,void 0,void 0,function*(){const{data:n}=yield(e=>{if(Object({NODE_ENV:"production",PUBLIC_URL:""}).REACT_APP_IS_MOCK){const e={payload:a.a.payload.defaultWallet};return Promise.resolve({data:e})}return i.a.post("/rpc/accounts/keys/doPrivateImport",{decodedKey:e})})(e),r=n.payload;t({type:o.a.SAVE_WALLET,payload:r})}));t.e=(e=>t=>s(void 0,void 0,void 0,function*(){t({type:o.a.SAVE_WALLET,payload:e})}));t.a=(()=>e=>s(void 0,void 0,void 0,function*(){e({type:o.a.CLEAR_WALLET,payload:null}),e({type:o.a.CLEAR_SEED,payload:""}),e({type:o.a.CLEAN_BALANCE,payload:""})}))},function(e,t,n){e.exports=n(167)},function(e,t,n){"use strict";const r=Object;t.a=r},function(e,t,n){e.exports=n.p+"static/media/arrow.d5c7b5ef.svg"},function(e,t){function n(e,t){if(!e)throw new Error(t||"Assertion failed")}e.exports=n,n.equal=function(e,t,n){if(e!=t)throw new Error(n||"Assertion failed: "+e+" != "+t)}},function(e,t,n){"use strict";var r;n.d(t,"a",function(){return r}),function(e){e.RECIPIENT="recipientAddressError",e.AMOUNT="amountError"}(r||(r={}));const i={INCORRECT_ADDRESS:{field:r.RECIPIENT,message:"Transaction recipient address is incorrect"},INCORRECT_DELEGATE_KEY:{field:r.RECIPIENT,message:"Delegate key is incorrect"},INCORRECT_HASH:{field:r.RECIPIENT,message:"Transaction hash is incorrect"},INCORRECT_SIGNATURE:{field:r.RECIPIENT,message:"Transaction signature is incorrect"},INCORRECT_VOTES_COUNT:{message:"Votes number is incorrect"},ALREADY_VOTED_FOR_DELEGATE:{field:r.RECIPIENT,message:"You already voted for delegate"},ALREADY_SENT_VOTE:{field:r.RECIPIENT,message:"You already voted for delegate"},ALREADY_DELEGATE:{field:r.RECIPIENT,message:"This node is already a delegate"},INSUFFICIENT_ACTUAL_BALANCE:{field:r.AMOUNT,message:"Insufficient actual balance"}};t.b=(e=>{if("response"in e){if(!e.response.data.payload)return{message:e.response.data,field:null};if(void 0!==e.response.data.payload.type){const t=e.response.data.payload.type||"",n=i[t]||null;return{message:n?n.message:e.response.data.payload.message,field:n?n.field:null}}return{message:e.response.data.payload[0].message,field:e.response.data.payload[0].field+"Error"}}return{message:"Something went wrong"}})},function(e,t,n){"use strict";var r=n(0);n.n(r);t.a=class extends r.Component{constructor(){super(...arguments),this.background=r.createRef(),this.onBackground=(e=>{e.target===this.background.current&&this.props.onClick()})}render(){return r.createElement("div",{ref:this.background,className:"popup-area",onClick:this.onBackground},this.props.children)}}},function(e,t,n){"use strict";n.d(t,"a",function(){return E}),n.d(t,"b",function(){return T}),n.d(t,"d",function(){return O}),n.d(t,"c",function(){return h}),n.d(t,"f",function(){return p}),n.d(t,"e",function(){return d});var r=n(128),i=n(129),a=n(130),o=(n(131),n(132));function s(e){return"/"===e.charAt(0)?e:"/"+e}function c(e){return"/"===e.charAt(0)?e.substr(1):e}function l(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}function u(e,t){return l(e,t)?e.substr(t.length):e}function f(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function d(e){var t=e.pathname,n=e.search,r=e.hash,i=t||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i}function h(e,t,n,a){var o;"string"===typeof e?(o=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var a=t.indexOf("?");return-1!==a&&(n=t.substr(a),t=t.substr(0,a)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e)).state=t:(void 0===(o=Object(r.a)({},e)).pathname&&(o.pathname=""),o.search?"?"!==o.search.charAt(0)&&(o.search="?"+o.search):o.search="",o.hash?"#"!==o.hash.charAt(0)&&(o.hash="#"+o.hash):o.hash="",void 0!==t&&void 0===o.state&&(o.state=t));try{o.pathname=decodeURI(o.pathname)}catch(e){throw e instanceof URIError?new URIError('Pathname "'+o.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):e}return n&&(o.key=n),a?o.pathname?"/"!==o.pathname.charAt(0)&&(o.pathname=Object(i.a)(o.pathname,a.pathname)):o.pathname=a.pathname:o.pathname||(o.pathname="/"),o}function p(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&Object(a.a)(e.state,t.state)}function m(){var e=null;var t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,i){if(null!=e){var a="function"===typeof e?e(t,n):e;"string"===typeof a?"function"===typeof r?r(a,i):i(!0):i(!1!==a)}else i(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter(function(e){return e!==r})}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;rt?n.splice(t,n.length-t,r):n.push(r),f({action:"PUSH",location:r,index:t,entries:n})}})},replace:function(e,t){var r=h(e,t,p(),w.location);u.confirmTransitionTo(r,"REPLACE",n,function(e){e&&(w.entries[w.index]=r,f({action:"REPLACE",location:r}))})},go:g,goBack:function(){g(-1)},goForward:function(){g(1)},canGo:function(e){var t=w.index+e;return t>=0&&t=this._delta8){var n=(e=this.pending).length%this._delta8;this.pending=e.slice(e.length-n,e.length),0===this.pending.length&&(this.pending=null),e=r.join32(e,0,e.length-n,this.endian);for(var i=0;i>>24&255,r[i++]=e>>>16&255,r[i++]=e>>>8&255,r[i++]=255&e}else for(r[i++]=255&e,r[i++]=e>>>8&255,r[i++]=e>>>16&255,r[i++]=e>>>24&255,r[i++]=0,r[i++]=0,r[i++]=0,r[i++]=0,a=8;a{const t=document.createElement("input");document.body.appendChild(t),t.value=e,t.select();const n=document.execCommand("copy");return document.body.removeChild(t),n})},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(19));t.a=(({isVisible:e,errorMessage:t,onClose:n})=>e?r.createElement(i.a,{onClick:n},r.createElement("div",{className:"popup error-popup"},r.createElement("span",{className:"error-popup-message"},t),r.createElement("button",{className:"button mini",onClick:n},r.createElement("div",null),r.createElement("span",null,"OK")))):null)},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"===typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";var r=n(10),i=n.n(r),a=n(9),o=n.n(a),s=n(0),c=n.n(s),l=n(4),u=n.n(l),f=Object.assign||function(e){for(var t=1;t may have only one child element"),this.unlisten=r.listen(function(){e.setState({match:e.computeMatch(r.location.pathname)})})},t.prototype.componentWillReceiveProps=function(e){i()(this.props.history===e.history,"You cannot change ")},t.prototype.componentWillUnmount=function(){this.unlisten()},t.prototype.render=function(){var e=this.props.children;return e?c.a.Children.only(e):null},t}(c.a.Component);h.propTypes={history:u.a.object.isRequired,children:u.a.node},h.contextTypes={router:u.a.object},h.childContextTypes={router:u.a.object.isRequired},t.a=h},function(e,t,n){"use strict";var r=n(60),i=n.n(r),a={},o=0;t.a=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments[2];"string"===typeof t&&(t={path:t});var r=t,s=r.path,c=r.exact,l=void 0!==c&&c,u=r.strict,f=void 0!==u&&u,d=r.sensitive,h=void 0!==d&&d;if(null==s)return n;var p=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=a[n]||(a[n]={});if(r[e])return r[e];var s=[],c={re:i()(e,s,t),keys:s};return o<1e4&&(r[e]=c,o++),c}(s,{end:l,strict:f,sensitive:h}),m=p.re,b=p.keys,y=m.exec(e);if(!y)return null;var v=y[0],g=y.slice(1),w=e===v;return l&&!w?null:{path:s,url:"/"===s&&""===v?"/":v,isExact:w,params:b.reduce(function(e,t,n){return e[t.name]=g[n],e},{})}}},function(e,t,n){"use strict";var r=n(0);n.n(r);t.a=class extends r.Component{constructor(){super(...arguments),this.state={isPasswordShown:!1},this.onShowPassword=(()=>this.setState(({isPasswordShown:e})=>({isPasswordShown:!e})))}render(){const{password:e,onChange:t,placeholder:n}=this.props,{isPasswordShown:i}=this.state,a=i?"text":"password";return r.createElement(r.Fragment,null,r.createElement("input",{type:a,placeholder:n||"",value:e,onChange:t}),r.createElement("label",{htmlFor:"eye"},r.createElement("input",{id:"eye",type:"checkbox",checked:i,onChange:this.onShowPassword}),r.createElement("div",{className:"eye"})))}}},function(e,t,n){"use strict";var r=n(39),i=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})};const a=n(186).sha256,o=n(188).ec,s=n(7),c=e=>String.fromCharCode.apply(null,new Uint8Array(e)),l=(e,t)=>i(void 0,void 0,void 0,function*(){const n=(new TextEncoder).encode(e),r=(new TextEncoder).encode(t),i=yield crypto.subtle.digest("SHA-256",r),a=crypto.getRandomValues(new Uint8Array(12)),o={name:"AES-GCM",iv:a},s=yield crypto.subtle.importKey("raw",i,o,!1,["encrypt"]),l=yield crypto.subtle.encrypt(o,s,n),u=c(l);return{iv:c(a),data:u}}),u=e=>{const t=new ArrayBuffer(e.length),n=new Uint8Array(t);for(let r=0,i=e.length;ri(void 0,void 0,void 0,function*(){const r=u(e),i=u(t),a=(new TextEncoder).encode(n),o=yield crypto.subtle.digest("SHA-256",a),s={name:"AES-GCM",iv:i},c=yield crypto.subtle.importKey("raw",o,s,!1,["decrypt"]),l=yield crypto.subtle.decrypt(s,c,r);return(new TextDecoder).decode(l)});t.f=((e,t)=>i(void 0,void 0,void 0,function*(){const{address:n,keys:r}=e,i=JSON.stringify(r);return{address:n,crypto:yield l(i,t)}}));t.e=((e,t)=>i(void 0,void 0,void 0,function*(){const{address:n,crypto:r}=e,{data:i,iv:a}=r;try{const e=yield f(i,a,t);return{address:n,keys:JSON.parse(e)}}catch(e){throw e}}));const d=e=>"number"===typeof e?new s(e).toArray(8,8):e.split("").map(e=>e.charCodeAt(0));t.c=((e,t)=>{const{address:n,keys:r}=e,{publicKey:i,privateKey:o}=r,s=Date.now(),c=Object.assign(Object.assign({},t),{senderAddress:n,senderPublicKey:i,timestamp:s}),l=(e=>{const{timestamp:t,fee:n,senderAddress:r,amount:i,recipientAddress:o,data:s}=e;let c=[...d(t),...d(n),...d(r),...d(i)];return o&&(c=[...c,...d(o)]),s&&(c=[...c,...d(s)]),a(a.array(c))})(c),u=p(l,o);return Object.assign(Object.assign({senderSignature:u},c),{hash:l})});t.g=(e=>a(e.keys.publicKey));t.a=((e,t)=>{const{address:n,keys:i}=e,{publicKey:o,privateKey:s}=i,c=Date.now(),l={amount:r.a,fee:r.b,senderAddress:n,senderPublicKey:o,delegateKey:t.publicKey,timestamp:c},u=(e=>{const{timestamp:t,fee:n,senderAddress:r,amount:i,delegateKey:o}=e,s=[...d(t),...d(n),...d(r),...d(o),...d(i)];return a(a.array(s))})(l),f=p(u,s);return Object.assign(Object.assign({senderSignature:f},l),{hash:u})});const h=e=>{const{timestamp:t,fee:n,senderAddress:r,voteTypeId:i,delegateKey:o}=e,c=[...d(t),...d(n),...d(r),...(e=>new s(e).toArray(8,4))(i),...d(o)];return console.log(c,i),a(a.array(c))};t.d=((e,t,n)=>{const{address:r,keys:i}=e,{publicKey:a,privateKey:o}=i,s={fee:t,delegateKey:n,senderAddress:r,senderPublicKey:a,timestamp:Date.now(),voteTypeId:1},c=h(s),l=p(c,o);return Object.assign(Object.assign({senderSignature:l},s),{hash:c})});t.b=((e,t,n)=>{const{address:r,keys:i}=e,{publicKey:a,privateKey:o}=i,s={fee:t,delegateKey:n,senderAddress:r,senderPublicKey:a,timestamp:Date.now(),voteTypeId:2},c=h(s),l=p(c,o);return Object.assign(Object.assign({senderSignature:l},s),{hash:c})});const p=(e,t)=>{const n=new o("secp256k1").keyFromPrivate(t,"hex").sign(e).toDER();return btoa(n.map(e=>String.fromCharCode(e)).join(""))}},function(e,t,n){"use strict";var r=n(7),i=n(6),a=i.getNAF,o=i.getJSF,s=i.assert;function c(e,t){this.type=e,this.p=new r(t.p,16),this.red=t.prime?r.red(t.prime):r.mont(this.p),this.zero=new r(0).toRed(this.red),this.one=new r(1).toRed(this.red),this.two=new r(2).toRed(this.red),this.n=t.n&&new r(t.n,16),this.g=t.g&&this.pointFromJSON(t.g,t.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var n=this.n&&this.p.div(this.n);!n||n.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function l(e,t){this.curve=e,this.type=t,this.precomputed=null}e.exports=c,c.prototype.point=function(){throw new Error("Not implemented")},c.prototype.validate=function(){throw new Error("Not implemented")},c.prototype._fixedNafMul=function(e,t){s(e.precomputed);var n=e._getDoubles(),r=a(t,1,this._bitLength),i=(1<=o;u--)c=(c<<1)+r[u];l.push(c)}for(var f=this.jpoint(null,null,null),d=this.jpoint(null,null,null),h=i;h>0;h--){for(o=0;o=0;l--){for(var u=0;l>=0&&0===o[l];l--)u++;if(l>=0&&u++,c=c.dblp(u),l<0)break;var f=o[l];s(0!==f),c="affine"===e.type?f>0?c.mixedAdd(i[f-1>>1]):c.mixedAdd(i[-f-1>>1].neg()):f>0?c.add(i[f-1>>1]):c.add(i[-f-1>>1].neg())}return"affine"===e.type?c.toP():c},c.prototype._wnafMulAdd=function(e,t,n,r,i){var s,c,l,u=this._wnafT1,f=this._wnafT2,d=this._wnafT3,h=0;for(s=0;s=1;s-=2){var m=s-1,b=s;if(1===u[m]&&1===u[b]){var y=[t[m],null,null,t[b]];0===t[m].y.cmp(t[b].y)?(y[1]=t[m].add(t[b]),y[2]=t[m].toJ().mixedAdd(t[b].neg())):0===t[m].y.cmp(t[b].y.redNeg())?(y[1]=t[m].toJ().mixedAdd(t[b]),y[2]=t[m].add(t[b].neg())):(y[1]=t[m].toJ().mixedAdd(t[b]),y[2]=t[m].toJ().mixedAdd(t[b].neg()));var v=[-3,-1,-5,-7,0,7,5,1,3],g=o(n[m],n[b]);for(h=Math.max(g[0].length,h),d[m]=new Array(h),d[b]=new Array(h),c=0;c=0;s--){for(var x=0;s>=0;){var k=!0;for(c=0;c=0&&x++,S=S.dblp(x),s<0)break;for(c=0;c0?l=f[c][M-1>>1]:M<0&&(l=f[c][-M-1>>1].neg()),S="affine"===l.type?S.mixedAdd(l):S.add(l))}}for(s=0;s=Math.ceil((e.bitLength()+1)/t.step)},l.prototype._getDoubles=function(e,t){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var n=[this],r=this,i=0;i or withRouter() outside a ");var l=t.route,u=(r||l.location).pathname;return Object(f.a)(u,{path:i,strict:a,exact:s,sensitive:c},l.match)},t.prototype.componentWillMount=function(){i()(!(this.props.component&&this.props.render),"You should not use and in the same route; will be ignored"),i()(!(this.props.component&&this.props.children&&!p(this.props.children)),"You should not use and in the same route; will be ignored"),i()(!(this.props.render&&this.props.children&&!p(this.props.children)),"You should not use and in the same route; will be ignored")},t.prototype.componentWillReceiveProps=function(e,t){i()(!(e.location&&!this.props.location),' elements should not change from uncontrolled to controlled (or vice versa). You initially used no "location" prop and then provided one on a subsequent render.'),i()(!(!e.location&&this.props.location),' elements should not change from controlled to uncontrolled (or vice versa). You provided a "location" prop initially but omitted it on a subsequent render.'),this.setState({match:this.computeMatch(e,t.router)})},t.prototype.render=function(){var e=this.state.match,t=this.props,n=t.children,r=t.component,i=t.render,a=this.context.router,o=a.history,s=a.route,l=a.staticContext,u={match:e,location:this.props.location||s.location,history:o,staticContext:l};return r?e?c.a.createElement(r,u):null:i?e?i(u):null:"function"===typeof n?n(u):n&&!p(n)?c.a.Children.only(n):null},t}(c.a.Component);m.propTypes={computedMatch:u.a.object,path:u.a.string,exact:u.a.bool,strict:u.a.bool,sensitive:u.a.bool,component:u.a.func,render:u.a.func,children:u.a.oneOfType([u.a.func,u.a.node]),location:u.a.object},m.contextTypes={router:u.a.shape({history:u.a.object.isRequired,route:u.a.object.isRequired,staticContext:u.a.object})},m.childContextTypes={router:u.a.object.isRequired},t.a=m},function(e,t,n){"use strict";var r=n(60),i=n.n(r),a={},o=0;t.a=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return"/"===e?e:function(e){var t=e,n=a[t]||(a[t]={});if(n[e])return n[e];var r=i.a.compile(e);return o<1e4&&(n[e]=r,o++),r}(e)(t,{pretty:!0})}},function(e,t,n){"use strict";(function(t){var r=n(5),i=n(170),a={"Content-Type":"application/x-www-form-urlencoded"};function o(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var s,c={adapter:("undefined"!==typeof XMLHttpRequest?s=n(68):"undefined"!==typeof t&&(s=n(68)),s),transformRequest:[function(e,t){return i(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e)?e:r.isArrayBufferView(e)?e.buffer:r.isURLSearchParams(e)?(o(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):r.isObject(e)?(o(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"===typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(e){return e>=200&&e<300}};c.headers={common:{Accept:"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],function(e){c.headers[e]={}}),r.forEach(["post","put","patch"],function(e){c.headers[e]=r.merge(a)}),e.exports=c}).call(t,n(67))},function(e,t,n){e.exports=n.p+"static/media/danger.94158f54.svg"},function(e,t,n){"use strict";t.b=3;t.a=10},function(e,t,n){"use strict";var r,i=t,a=n(41),o=n(75),s=n(6).assert;function c(e){"short"===e.type?this.curve=new o.short(e):"edwards"===e.type?this.curve=new o.edwards(e):this.curve=new o.mont(e),this.g=this.curve.g,this.n=this.curve.n,this.hash=e.hash,s(this.g.validate(),"Invalid curve"),s(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function l(e,t){Object.defineProperty(i,e,{configurable:!0,enumerable:!0,get:function(){var n=new c(t);return Object.defineProperty(i,e,{configurable:!0,enumerable:!0,value:n}),n}})}i.PresetCurve=c,l("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:a.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),l("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:a.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),l("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:a.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),l("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:a.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),l("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:a.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),l("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:a.sha256,gRed:!1,g:["9"]}),l("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:a.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{r=n(201)}catch(e){r=void 0}l("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:a.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",r]})},function(e,t,n){var r=t;r.utils=n(8),r.common=n(21),r.sha=n(195),r.ripemd=n(199),r.hmac=n(200),r.sha1=r.sha.sha1,r.sha256=r.sha.sha256,r.sha224=r.sha.sha224,r.sha384=r.sha.sha384,r.sha512=r.sha.sha512,r.ripemd160=r.ripemd.ripemd160},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(22));t.a=class extends r.Component{constructor(){super(...arguments),this.state={copied:!1},this.onCopyHandler=(e=>{e.preventDefault();const{value:t}=this.props,n=Object(i.a)(t);this.setState({copied:n}),setTimeout(()=>this.setState({copied:!1}),4e3)})}render(){const{copied:e}=this.state,t=e?"Copied":"Copy to clipboard";return r.createElement("button",{className:"copy",onClick:this.onCopyHandler},t)}}},function(e,t,n){"use strict";n(58),n(61),n(62);var r=n(35);n.d(t,"a",function(){return r.a});n(25),n(63);var i=n(64);n.d(t,"b",function(){return i.a});n(36),n(26);var a=n(65);n.d(t,"c",function(){return a.a})},function(e,t,n){"use strict";var r=n(14),i=n.n(r),a=n(3),o=(n(15),this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})});t.a=(e=>t=>o(void 0,void 0,void 0,function*(){const{data:n}=yield i.a.get(`/rpc/accounts/wallets/${e}/balance`),r=(+n.payload.toFixed(8)).toString();t({type:a.a.SET_BALANCE,payload:r})}))},function(e,t,n){"use strict";var r=n(85),i=(n.n(r),n(235));t.a=((e,t=i.a.YYYY_MM_DD_hh_mm_ss_z)=>e?r.utc(e).format(t):"-")},function(e,t,n){(function(e){!function(e){"use strict";var t=e.URLSearchParams?e.URLSearchParams:null,n=t&&"a=1"===new t({a:1}).toString(),r=t&&"+"===new t("s=%2B").get("s"),i="__URLSearchParams__",a=l.prototype,o=!(!e.Symbol||!e.Symbol.iterator);if(!(t&&n&&r)){a.append=function(e,t){p(this[i],e,t)},a.delete=function(e){delete this[i][e]},a.get=function(e){var t=this[i];return e in t?t[e][0]:null},a.getAll=function(e){var t=this[i];return e in t?t[e].slice(0):[]},a.has=function(e){return e in this[i]},a.set=function(e,t){this[i][e]=[""+t]},a.toString=function(){var e,t,n,r,a=this[i],o=[];for(t in a)for(n=u(t),e=0,r=a[t];e{return e.replace(/[^0-9]+/g,"")})},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(252)),a=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})};t.a=(e=>(class extends r.Component{constructor(){super(...arguments),this.state={isShowSuccess:!1},this.onSubmit=(e=>a(this,void 0,void 0,function*(){e&&e.preventDefault(),yield this.props.onSubmit(),this.setState({isShowSuccess:!0})})),this.onHideSuccess=(()=>this.setState({isShowSuccess:!1}))}render(){const{isShowSuccess:t}=this.state;return r.createElement(r.Fragment,null,r.createElement(e,Object.assign({},this.props,{onSubmit:this.onSubmit})),t&&r.createElement(i.a,{onSubmit:this.onHideSuccess},"Transaction sent!"))}}))},function(e,t,n){"use strict";var r=n(94);function i(){}var a=null,o={};function s(e){if("object"!==typeof this)throw new TypeError("Promises must be constructed via new");if("function"!==typeof e)throw new TypeError("Promise constructor's argument is not a function");this._75=0,this._83=0,this._18=null,this._38=null,e!==i&&h(e,this)}function c(e,t){for(;3===e._83;)e=e._18;if(s._47&&s._47(e),0===e._83)return 0===e._75?(e._75=1,void(e._38=t)):1===e._75?(e._75=2,void(e._38=[e._38,t])):void e._38.push(t);!function(e,t){r(function(){var n=1===e._83?t.onFulfilled:t.onRejected;if(null!==n){var r=function(e,t){try{return e(t)}catch(e){return a=e,o}}(n,e._18);r===o?u(t.promise,a):l(t.promise,r)}else 1===e._83?l(t.promise,e._18):u(t.promise,e._18)})}(e,t)}function l(e,t){if(t===e)return u(e,new TypeError("A promise cannot be resolved with itself."));if(t&&("object"===typeof t||"function"===typeof t)){var n=function(e){try{return e.then}catch(e){return a=e,o}}(t);if(n===o)return u(e,a);if(n===e.then&&t instanceof s)return e._83=3,e._18=t,void f(e);if("function"===typeof n)return void h(n.bind(t),e)}e._83=1,e._18=t,f(e)}function u(e,t){e._83=2,e._18=t,s._71&&s._71(e,t),f(e)}function f(e){if(1===e._75&&(c(e,e._38),e._38=null),2===e._75){for(var t=0;t1&&void 0!==arguments[1]?arguments[1]:{},a=r.getDisplayName,p=void 0===a?function(e){return"ConnectAdvanced("+e+")"}:a,m=r.methodName,b=void 0===m?"connectAdvanced":m,y=r.renderCountProp,v=void 0===y?void 0:y,g=r.shouldHandleStateChanges,w=void 0===g||g,E=r.storeKey,S=void 0===E?"store":E,_=r.withRef,x=void 0!==_&&_,k=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(r,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef"]),M=S+"Subscription",T=f++,C=((t={})[S]=l.a,t[M]=l.b,t),O=((n={})[M]=l.b,n);return function(t){o()("function"==typeof t,"You must pass a component to the function returned by "+b+". Instead received "+JSON.stringify(t));var n=t.displayName||t.name||"Component",r=p(n),a=u({},k,{getDisplayName:p,methodName:b,renderCountProp:v,shouldHandleStateChanges:w,storeKey:S,withRef:x,displayName:r,wrappedComponentName:n,WrappedComponent:t}),l=function(n){function i(e,t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i);var a=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}(this,n.call(this,e,t));return a.version=T,a.state={},a.renderCount=0,a.store=e[S]||t[S],a.propsMode=Boolean(e[S]),a.setWrappedInstance=a.setWrappedInstance.bind(a),o()(a.store,'Could not find "'+S+'" in either the context or props of "'+r+'". Either wrap the root component in a , or explicitly pass "'+S+'" as a prop to "'+r+'".'),a.initSelector(),a.initSubscription(),a}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(i,n),i.prototype.getChildContext=function(){var e,t=this.propsMode?null:this.subscription;return(e={})[M]=t||this.context[M],e},i.prototype.componentDidMount=function(){w&&(this.subscription.trySubscribe(),this.selector.run(this.props),this.selector.shouldComponentUpdate&&this.forceUpdate())},i.prototype.componentWillReceiveProps=function(e){this.selector.run(e)},i.prototype.shouldComponentUpdate=function(){return this.selector.shouldComponentUpdate},i.prototype.componentWillUnmount=function(){this.subscription&&this.subscription.tryUnsubscribe(),this.subscription=null,this.notifyNestedSubs=h,this.store=null,this.selector.run=h,this.selector.shouldComponentUpdate=!1},i.prototype.getWrappedInstance=function(){return o()(x,"To access the wrapped instance, you need to specify { withRef: true } in the options argument of the "+b+"() call."),this.wrappedInstance},i.prototype.setWrappedInstance=function(e){this.wrappedInstance=e},i.prototype.initSelector=function(){var t=e(this.store.dispatch,a);this.selector=function(e,t){var n={run:function(r){try{var i=e(t.getState(),r);(i!==n.props||n.error)&&(n.shouldComponentUpdate=!0,n.props=i,n.error=null)}catch(e){n.shouldComponentUpdate=!0,n.error=e}}};return n}(t,this.store),this.selector.run(this.props)},i.prototype.initSubscription=function(){if(w){var e=(this.propsMode?this.props:this.context)[M];this.subscription=new c.a(this.store,e,this.onStateChange.bind(this)),this.notifyNestedSubs=this.subscription.notifyNestedSubs.bind(this.subscription)}},i.prototype.onStateChange=function(){this.selector.run(this.props),this.selector.shouldComponentUpdate?(this.componentDidUpdate=this.notifyNestedSubsOnComponentDidUpdate,this.setState(d)):this.notifyNestedSubs()},i.prototype.notifyNestedSubsOnComponentDidUpdate=function(){this.componentDidUpdate=void 0,this.notifyNestedSubs()},i.prototype.isSubscribed=function(){return Boolean(this.subscription)&&this.subscription.isSubscribed()},i.prototype.addExtraProps=function(e){if(!x&&!v&&(!this.propsMode||!this.subscription))return e;var t=u({},e);return x&&(t.ref=this.setWrappedInstance),v&&(t[v]=this.renderCount++),this.propsMode&&this.subscription&&(t[M]=this.subscription),t},i.prototype.render=function(){var e=this.selector;if(e.shouldComponentUpdate=!1,e.error)throw e.error;return Object(s.createElement)(t,this.addExtraProps(e.props))},i}(s.Component);return l.WrappedComponent=t,l.displayName=r,l.childContextTypes=O,l.contextTypes=C,l.propTypes=C,i()(l,t)}};var r=n(52),i=n.n(r),a=n(9),o=n.n(a),s=n(0),c=(n.n(s),n(106)),l=n(50),u=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["replace","to","innerRef"]);c()(this.context.router,"You should not use outside a "),c()(void 0!==t,'You must specify the "to" property');var a=this.context.router.history,o="string"===typeof t?Object(l.c)(t,null,null,a.location):t,s=a.createHref(o);return i.a.createElement("a",u({},r,{onClick:this.handleClick,href:s,ref:n}))},t}(i.a.Component);h.propTypes={onClick:o.a.func,target:o.a.string,replace:o.a.bool,to:o.a.oneOfType([o.a.string,o.a.object]).isRequired,innerRef:o.a.oneOfType([o.a.string,o.a.func])},h.defaultProps={replace:!1},h.contextTypes={router:o.a.shape({history:o.a.shape({push:o.a.func.isRequired,replace:o.a.func.isRequired,createHref:o.a.func.isRequired}).isRequired}).isRequired},t.a=h},function(e,t,n){"use strict";var r=n(10),i=n.n(r),a=n(0),o=n.n(a),s=n(4),c=n.n(s),l=n(20),u=n(25);function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}var d=function(e){function t(){var n,r;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var i=arguments.length,a=Array(i),o=0;o ignores the history prop. To use a custom history, use `import { Router }` instead of `import { MemoryRouter as Router }`.")},t.prototype.render=function(){return o.a.createElement(u.a,{history:this.history,children:this.props.children})},t}(o.a.Component);d.propTypes={initialEntries:c.a.array,initialIndex:c.a.number,getUserConfirmation:c.a.func,keyLength:c.a.number,children:c.a.node},t.a=d},function(e,t,n){"use strict";var r=n(35);t.a=r.a},function(e,t,n){var r=n(136);e.exports=h,e.exports.parse=a,e.exports.compile=function(e,t){return s(a(e,t),t)},e.exports.tokensToFunction=s,e.exports.tokensToRegExp=d;var i=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function a(e,t){for(var n,r=[],a=0,o=0,s="",u=t&&t.delimiter||"/";null!=(n=i.exec(e));){var f=n[0],d=n[1],h=n.index;if(s+=e.slice(o,h),o=h+f.length,d)s+=d[1];else{var p=e[o],m=n[2],b=n[3],y=n[4],v=n[5],g=n[6],w=n[7];s&&(r.push(s),s="");var E=null!=m&&null!=p&&p!==m,S="+"===g||"*"===g,_="?"===g||"*"===g,x=n[2]||u,k=y||v;r.push({name:b||a++,prefix:m||"",delimiter:x,optional:_,repeat:S,partial:E,asterisk:!!w,pattern:k?l(k):w?".*":"[^"+c(x)+"]+?"})}}return o outside a "),this.props.when&&this.enable(this.props.message)},t.prototype.componentWillReceiveProps=function(e){e.when?this.props.when&&this.props.message===e.message||this.enable(e.message):this.disable()},t.prototype.componentWillUnmount=function(){this.disable()},t.prototype.render=function(){return null},t}(i.a.Component);l.propTypes={when:o.a.bool,message:o.a.oneOfType([o.a.func,o.a.string]).isRequired},l.defaultProps={when:!0},l.contextTypes={router:o.a.shape({history:o.a.shape({block:o.a.func.isRequired}).isRequired}).isRequired},t.a=l},function(e,t,n){"use strict";var r=n(0),i=n.n(r),a=n(4),o=n.n(a),s=n(10),c=n.n(s),l=n(9),u=n.n(l),f=n(20),d=n(36),h=Object.assign||function(e){for(var t=1;t outside a "),this.isStatic()&&this.perform()},t.prototype.componentDidMount=function(){this.isStatic()||this.perform()},t.prototype.componentDidUpdate=function(e){var t=Object(f.c)(e.to),n=Object(f.c)(this.props.to);Object(f.f)(t,n)?c()(!1,"You tried to redirect to the same route you're currently on: \""+n.pathname+n.search+'"'):this.perform()},t.prototype.computeTo=function(e){var t=e.computedMatch,n=e.to;return t?"string"===typeof n?Object(d.a)(n,t.params):h({},n,{pathname:Object(d.a)(n.pathname,t.params)}):n},t.prototype.perform=function(){var e=this.context.router.history,t=this.props.push,n=this.computeTo(this.props);t?e.push(n):e.replace(n)},t.prototype.render=function(){return null},t}(i.a.Component);p.propTypes={computedMatch:o.a.object,push:o.a.bool,from:o.a.string,to:o.a.oneOfType([o.a.string,o.a.object]).isRequired},p.defaultProps={push:!1},p.contextTypes={router:o.a.shape({history:o.a.shape({push:o.a.func.isRequired,replace:o.a.func.isRequired}).isRequired,staticContext:o.a.object}).isRequired},t.a=p},function(e,t,n){"use strict";var r=n(10),i=n.n(r),a=n(9),o=n.n(a),s=n(0),c=n.n(s),l=n(4),u=n.n(l),f=n(20),d=n(25),h=Object.assign||function(e){for(var t=1;t",e)}},g=function(){},w=function(e){function t(){var n,r;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var i=arguments.length,a=Array(i),o=0;o ignores the history prop. To use a custom history, use `import { Router }` instead of `import { StaticRouter as Router }`.")},t.prototype.render=function(){var e=this.props,t=e.basename,n=(e.context,e.location),r=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["basename","context","location"]),i={createHref:this.createHref,action:"POP",location:function(e,t){if(!e)return t;var n=m(e);return 0!==t.pathname.indexOf(n)?t:h({},t,{pathname:t.pathname.substr(n.length)})}(t,Object(f.c)(n)),push:this.handlePush,replace:this.handleReplace,go:v("go"),goBack:v("goBack"),goForward:v("goForward"),listen:this.handleListen,block:this.handleBlock};return c.a.createElement(d.a,h({},r,{history:i}))},t}(c.a.Component);w.propTypes={basename:u.a.string,context:u.a.object.isRequired,location:u.a.oneOfType([u.a.string,u.a.object])},w.defaultProps={basename:"",location:"/"},w.childContextTypes={router:u.a.object.isRequired},t.a=w},function(e,t,n){"use strict";var r=n(0),i=n.n(r),a=n(4),o=n.n(a),s=n(10),c=n.n(s),l=n(9),u=n.n(l),f=n(26);var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}(this,e.apply(this,arguments))}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.componentWillMount=function(){u()(this.context.router,"You should not use outside a ")},t.prototype.componentWillReceiveProps=function(e){c()(!(e.location&&!this.props.location),' elements should not change from uncontrolled to controlled (or vice versa). You initially used no "location" prop and then provided one on a subsequent render.'),c()(!(!e.location&&this.props.location),' elements should not change from controlled to uncontrolled (or vice versa). You provided a "location" prop initially but omitted it on a subsequent render.')},t.prototype.render=function(){var e=this.context.router.route,t=this.props.children,n=this.props.location||e.location,r=void 0,a=void 0;return i.a.Children.forEach(t,function(t){if(null==r&&i.a.isValidElement(t)){var o=t.props,s=o.path,c=o.exact,l=o.strict,u=o.sensitive,d=o.from,h=s||d;a=t,r=Object(f.a)(n.pathname,{path:h,exact:c,strict:l,sensitive:u},e.match)}}),r?i.a.cloneElement(a,{location:n,computedMatch:r}):null},t}(i.a.Component);d.contextTypes={router:o.a.shape({route:o.a.object.isRequired}).isRequired},d.propTypes={children:o.a.node,location:o.a.object},t.a=d},function(e,t,n){"use strict";var r=n(0),i=n.n(r),a=n(4),o=n.n(a),s=n(52),c=n.n(s),l=n(35),u=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(t,["wrappedComponentRef"]);return i.a.createElement(l.a,{children:function(t){return i.a.createElement(e,u({},r,t,{ref:n}))}})};return t.displayName="withRouter("+(e.displayName||e.name)+")",t.WrappedComponent=e,t.propTypes={wrappedComponentRef:o.a.func},c()(t,e)}},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r1)for(var n=1;n>8,o=255&i;a?n.push(a,o):n.push(o)}return n},r.zero2=i,r.toHex=a,r.encode=function(e,t){return"hex"===t?a(e):e}},function(e,t,n){var r;function i(e){this.rand=e}if(e.exports=function(e){return r||(r=new i(null)),r.generate(e)},e.exports.Rand=i,i.prototype.generate=function(e){return this._rand(e)},i.prototype._rand=function(e){if(this.rand.getBytes)return this.rand.getBytes(e);for(var t=new Uint8Array(e),n=0;n>>3},t.g1_256=function(e){return r(e,17)^r(e,19)^e>>>10}},function(e,t,n){"use strict";var r=n(8),i=n(21),a=n(76),o=n(17),s=r.sum32,c=r.sum32_4,l=r.sum32_5,u=a.ch32,f=a.maj32,d=a.s0_256,h=a.s1_256,p=a.g0_256,m=a.g1_256,b=i.BlockHash,y=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function v(){if(!(this instanceof v))return new v;b.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=y,this.W=new Array(64)}r.inherits(v,b),e.exports=v,v.blockSize=512,v.outSize=256,v.hmacStrength=192,v.padLength=64,v.prototype._update=function(e,t){for(var n=this.W,r=0;r<16;r++)n[r]=e[t+r];for(;r{const i=document.createElement("a"),a=r||new Blob([t],{type:`${n};charset=utf-8,`}),o=window.URL.createObjectURL(a);i.setAttribute("href",o),i.setAttribute("download",e),document.body.appendChild(i),i.click(),document.body.removeChild(i)})},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(211)),a=(n.n(i),n(212)),o=n.n(a);t.a=(({closePopup:e})=>r.createElement("div",{className:"popup-area"},r.createElement("div",{className:"info-popup"},r.createElement("div",{className:"close-popup",onClick:e},"CLOSE ",r.createElement("img",{src:o.a,alt:"close"})),r.createElement("h2",{className:"main-title"},"Disclaimer ",r.createElement("br",null)," Text"),r.createElement("div",{className:"content"},r.createElement("p",null,"Please take some time to understand some important things for your own safety."),r.createElement("p",null,"We cannot recover your funds or freeze your account if you visit a phishing site or lose your backup phrase (aka SEED phrase)."),r.createElement("p",null,"By continuing to use our platform, you agree to accept all risks associated with the loss of your SEED, including but not limited to the inability to obtain your funds and dispose of them. In case you lose your SEED, you agree and acknowledge that the OPEN Platform would not be responsible for the negative consequences of this."),r.createElement("p",null,"If you forget your password, you can easily create a new one by using the account recovery form via your secret phrase. If you lose your secret phrase, however, you will have no way to access your account."),r.createElement("p",null,"You cannot change your secret phrase. If you accidentally sent it to someone or suspect that scammers have taken it over, then create a new OPEN wallet immediately and transfer your funds to it.")),r.createElement("button",{className:"button",onClick:e},r.createElement("div",null),r.createElement("span",null,"Done")))))},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(2)),a=n(218),o=n.n(a);t.a=(()=>r.createElement(i.b,{className:"logo",to:"/"},r.createElement("img",{src:o.a,alt:"logo"})))},function(e,t,n){"use strict";var r=n(14),i=n.n(r),a=n(3),o=(n(15),n(83)),s=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,a){function o(e){try{c(r.next(e))}catch(e){a(e)}}function s(e){try{c(r.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(o,s)}c((r=r.apply(e,t||[])).next())})};t.b=(()=>e=>s(void 0,void 0,void 0,function*(){const t=new o.a(0),{data:n}=yield i.a.get("/rpc/delegates/view",{params:t}),r=n.payload;e({type:a.a.SET_DELEGATES,payload:r})}));t.a=(()=>(e,t)=>s(void 0,void 0,void 0,function*(){const n=t(),r=new o.a(n.delegates.list.length),{data:s}=yield i.a.get("/rpc/delegates/view",{params:r}),c=s.payload;e({type:a.a.SET_APPEND_TO_DELEGATES,payload:c})}))},function(e,t,n){"use strict";t.a=class{constructor(e=0,t=15){this.offset=e,this.limit=t}}},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(22)),a=n(45);const o=e=>e&&Object(i.a)(e);t.a=(({transaction:e,popUpOpen:t})=>r.createElement("div",{className:"transaction"},r.createElement("p",{className:`hash-row copy ${!e.status&&"hash-row-failed"}`,onClick:()=>t(e.hash)},e.hash),r.createElement("p",{className:"from copy",onClick:()=>o(e.senderAddress)},e.senderAddress),r.createElement("p",{className:"to copy",onClick:()=>o(e.recipientAddress)},(e=>e.recipientAddress&&e.data?`Contract: ${e.recipientAddress}`:e.recipientAddress?e.recipientAddress:"Smart contract deploy")(e)),r.createElement("p",{className:"date"},Object(a.a)(e.timestamp)),r.createElement("p",{className:"amount"},e.amount),r.createElement("p",{className:"fee"},e.fee)))},function(e,t,n){(function(e){var t,n;n=function(){"use strict";var n,r;function i(){return n.apply(null,arguments)}function a(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function o(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function c(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function l(e){return void 0===e}function u(e){return"number"===typeof e||"[object Number]"===Object.prototype.toString.call(e)}function f(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function d(e,t){var n,r=[],i=e.length;for(n=0;n>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}var A=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,R=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,D={},j={};function I(e,t,n,r){var i=r;"string"===typeof r&&(i=function(){return this[r]()}),e&&(j[e]=i),t&&(j[t[0]]=function(){return N(i.apply(this,arguments),t[1],t[2])}),n&&(j[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function L(e,t){return e.isValid()?(t=H(t,e.localeData()),D[t]=D[t]||function(e){var t,n,r,i=e.match(A);for(t=0,n=i.length;t=0&&R.test(e);)e=e.replace(R,r),R.lastIndex=0,n-=1;return e}var F={};function z(e,t){var n=e.toLowerCase();F[n]=F[n+"s"]=F[t]=e}function Y(e){return"string"===typeof e?F[e]||F[e.toLowerCase()]:void 0}function U(e){var t,n,r={};for(n in e)s(e,n)&&(t=Y(n))&&(r[t]=e[n]);return r}var W={};function B(e,t){W[e]=t}function q(e){return e%4===0&&e%100!==0||e%400===0}function V(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function K(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=V(t)),n}function $(e,t){return function(n){return null!=n?(G(this,e,n),i.updateOffset(this,t),this):X(this,e)}}function X(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function G(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&q(e.year())&&1===e.month()&&29===e.date()?(n=K(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Ne(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}var Q,J=/\d/,Z=/\d\d/,ee=/\d{3}/,te=/\d{4}/,ne=/[+-]?\d{6}/,re=/\d\d?/,ie=/\d\d\d\d?/,ae=/\d\d\d\d\d\d?/,oe=/\d{1,3}/,se=/\d{1,4}/,ce=/[+-]?\d{1,6}/,le=/\d+/,ue=/[+-]?\d+/,fe=/Z|[+-]\d\d:?\d\d/gi,de=/Z|[+-]\d\d(?::?\d\d)?/gi,he=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;function pe(e,t,n){Q[e]=C(t)?t:function(e,r){return e&&n?n:t}}function me(e,t){return s(Q,e)?Q[e](t._strict,t._locale):new RegExp(be(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,r,i){return t||n||r||i})))}function be(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}Q={};var ye={};function ve(e,t){var n,r,i=t;for("string"===typeof e&&(e=[e]),u(t)&&(i=function(e,n){n[t]=K(e)}),r=e.length,n=0;n68?1900:2e3)};var Ye=$("FullYear",!0);function Ue(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function We(e,t,n){var r=7+t-n;return-((7+Ue(e,0,r).getUTCDay()-t)%7)+r-1}function Be(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+We(e,r,i);return s<=0?o=ze(a=e-1)+s:s>ze(e)?(a=e+1,o=s-ze(e)):(a=e,o=s),{year:a,dayOfYear:o}}function qe(e,t,n){var r,i,a=We(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Ve(i=e.year()-1,t,n):o>Ve(e.year(),t,n)?(r=o-Ve(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Ve(e,t,n){var r=We(e,t,n),i=We(e+1,t,n);return(ze(e)-r+i)/7}I("w",["ww",2],"wo","week"),I("W",["WW",2],"Wo","isoWeek"),z("week","w"),z("isoWeek","W"),B("week",5),B("isoWeek",5),pe("w",re),pe("ww",re,Z),pe("W",re),pe("WW",re,Z),ge(["w","ww","W","WW"],function(e,t,n,r){t[r.substr(0,1)]=K(e)});function Ke(e,t){return e.slice(t,7).concat(e.slice(0,t))}I("d",0,"do","day"),I("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),I("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),I("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),I("e",0,0,"weekday"),I("E",0,0,"isoWeekday"),z("day","d"),z("weekday","e"),z("isoWeekday","E"),B("day",11),B("weekday",11),B("isoWeekday",11),pe("d",re),pe("e",re),pe("E",re),pe("dd",function(e,t){return t.weekdaysMinRegex(e)}),pe("ddd",function(e,t){return t.weekdaysShortRegex(e)}),pe("dddd",function(e,t){return t.weekdaysRegex(e)}),ge(["dd","ddd","dddd"],function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e}),ge(["d","e","E"],function(e,t,n,r){t[r]=K(e)});var $e="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Xe="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ge="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Qe=he,Je=he,Ze=he;function et(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],c=[],l=[];for(t=0;t<7;t++)n=p([2e3,1]).day(t),r=be(this.weekdaysMin(n,"")),i=be(this.weekdaysShort(n,"")),a=be(this.weekdays(n,"")),o.push(r),s.push(i),c.push(a),l.push(r),l.push(i),l.push(a);o.sort(e),s.sort(e),c.sort(e),l.sort(e),this._weekdaysRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function tt(){return this.hours()%12||12}function nt(e,t){I(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function rt(e,t){return t._meridiemParse}I("H",["HH",2],0,"hour"),I("h",["hh",2],0,tt),I("k",["kk",2],0,function(){return this.hours()||24}),I("hmm",0,0,function(){return""+tt.apply(this)+N(this.minutes(),2)}),I("hmmss",0,0,function(){return""+tt.apply(this)+N(this.minutes(),2)+N(this.seconds(),2)}),I("Hmm",0,0,function(){return""+this.hours()+N(this.minutes(),2)}),I("Hmmss",0,0,function(){return""+this.hours()+N(this.minutes(),2)+N(this.seconds(),2)}),nt("a",!0),nt("A",!1),z("hour","h"),B("hour",13),pe("a",rt),pe("A",rt),pe("H",re),pe("h",re),pe("k",re),pe("HH",re,Z),pe("hh",re,Z),pe("kk",re,Z),pe("hmm",ie),pe("hmmss",ae),pe("Hmm",ie),pe("Hmmss",ae),ve(["H","HH"],ke),ve(["k","kk"],function(e,t,n){var r=K(e);t[ke]=24===r?0:r}),ve(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),ve(["h","hh"],function(e,t,n){t[ke]=K(e),m(n).bigHour=!0}),ve("hmm",function(e,t,n){var r=e.length-2;t[ke]=K(e.substr(0,r)),t[Me]=K(e.substr(r)),m(n).bigHour=!0}),ve("hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[ke]=K(e.substr(0,r)),t[Me]=K(e.substr(r,2)),t[Te]=K(e.substr(i)),m(n).bigHour=!0}),ve("Hmm",function(e,t,n){var r=e.length-2;t[ke]=K(e.substr(0,r)),t[Me]=K(e.substr(r))}),ve("Hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[ke]=K(e.substr(0,r)),t[Me]=K(e.substr(r,2)),t[Te]=K(e.substr(i))});var it=$("Hours",!0);var at,ot={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Ae,monthsShort:Re,week:{dow:0,doy:6},weekdays:$e,weekdaysMin:Ge,weekdaysShort:Xe,meridiemParse:/[ap]\.?m?\.?/i},st={},ct={};function lt(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=ft(i.slice(0,t).join("-")))return r;if(n&&n.length>=t&<(i,n)>=t-1)break;t--}a++}return at}(e)}function mt(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[_e]<0||n[_e]>11?_e:n[xe]<1||n[xe]>Ne(n[Se],n[_e])?xe:n[ke]<0||n[ke]>24||24===n[ke]&&(0!==n[Me]||0!==n[Te]||0!==n[Ce])?ke:n[Me]<0||n[Me]>59?Me:n[Te]<0||n[Te]>59?Te:n[Ce]<0||n[Ce]>999?Ce:-1,m(e)._overflowDayOfYear&&(txe)&&(t=xe),m(e)._overflowWeeks&&-1===t&&(t=Oe),m(e)._overflowWeekday&&-1===t&&(t=Pe),m(e).overflow=t),e}var bt=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,yt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,vt=/Z|[+-]\d\d(?::?\d\d)?/,gt=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],wt=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Et=/^\/?Date\((-?\d+)/i,St=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,_t={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function xt(e){var t,n,r,i,a,o,s=e._i,c=bt.exec(s)||yt.exec(s),l=gt.length,u=wt.length;if(c){for(m(e).iso=!0,t=0,n=l;t7)&&(c=!0)):(a=e._locale._week.dow,o=e._locale._week.doy,l=qe(At(),a,o),n=Tt(t.gg,e._a[Se],l.year),r=Tt(t.w,l.week),null!=t.d?((i=t.d)<0||i>6)&&(c=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(c=!0)):i=a);r<1||r>Ve(n,a,o)?m(e)._overflowWeeks=!0:null!=c?m(e)._overflowWeekday=!0:(s=Be(n,r,i,a,o),e._a[Se]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=Tt(e._a[Se],r[Se]),(e._dayOfYear>ze(o)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Ue(o,0,e._dayOfYear),e._a[_e]=n.getUTCMonth(),e._a[xe]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[ke]&&0===e._a[Me]&&0===e._a[Te]&&0===e._a[Ce]&&(e._nextDay=!0,e._a[ke]=0),e._d=(e._useUTC?Ue:function(e,t,n,r,i,a,o){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[ke]=24),e._w&&"undefined"!==typeof e._w.d&&e._w.d!==a&&(m(e).weekdayMismatch=!0)}}function Ot(e){if(e._f!==i.ISO_8601)if(e._f!==i.RFC_2822){e._a=[],m(e).empty=!0;var t,n,r,a,o,s,c,l=""+e._i,u=l.length,f=0;for(c=(r=H(e._f,e._locale).match(A)||[]).length,t=0;t0&&m(e).unusedInput.push(o),l=l.slice(l.indexOf(n)+n.length),f+=n.length),j[a]?(n?m(e).empty=!1:m(e).unusedTokens.push(a),we(a,n,e)):e._strict&&!n&&m(e).unusedTokens.push(a);m(e).charsLeftOver=u-f,l.length>0&&m(e).unusedInput.push(l),e._a[ke]<=12&&!0===m(e).bigHour&&e._a[ke]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[ke]=function(e,t,n){var r;if(null==n)return t;return null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[ke],e._meridiem),null!==(s=m(e).era)&&(e._a[Se]=e._locale.erasConvertYear(s,e._a[Se])),Ct(e),mt(e)}else Mt(e);else xt(e)}function Pt(e){var t=e._i,n=e._f;return e._locale=e._locale||pt(e._l),null===t||void 0===n&&""===t?y({nullInput:!0}):("string"===typeof t&&(e._i=t=e._locale.preparse(t)),S(t)?new E(mt(t)):(f(t)?e._d=t:a(n)?function(e){var t,n,r,i,a,o,s=!1,c=e._f.length;if(0===c)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:y()});function jt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return At();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-fn:new Date(e,t,n).valueOf()}function pn(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-fn:Date.UTC(e,t,n)}function mn(e,t){return t.erasAbbrRegex(e)}function bn(){var e,t,n=[],r=[],i=[],a=[],o=this.eras();for(e=0,t=o.length;e(a=Ve(e,r,i))&&(t=a),function(e,t,n,r,i){var a=Be(e,t,n,r,i),o=Ue(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}.call(this,e,t,n,r,i))}I("N",0,0,"eraAbbr"),I("NN",0,0,"eraAbbr"),I("NNN",0,0,"eraAbbr"),I("NNNN",0,0,"eraName"),I("NNNNN",0,0,"eraNarrow"),I("y",["y",1],"yo","eraYear"),I("y",["yy",2],0,"eraYear"),I("y",["yyy",3],0,"eraYear"),I("y",["yyyy",4],0,"eraYear"),pe("N",mn),pe("NN",mn),pe("NNN",mn),pe("NNNN",function(e,t){return t.erasNameRegex(e)}),pe("NNNNN",function(e,t){return t.erasNarrowRegex(e)}),ve(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,r){var i=n._locale.erasParse(e,r,n._strict);i?m(n).era=i:m(n).invalidEra=e}),pe("y",le),pe("yy",le),pe("yyy",le),pe("yyyy",le),pe("yo",function(e,t){return t._eraYearOrdinalRegex||le}),ve(["y","yy","yyy","yyyy"],Se),ve(["yo"],function(e,t,n,r){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Se]=n._locale.eraYearOrdinalParse(e,i):t[Se]=parseInt(e,10)}),I(0,["gg",2],0,function(){return this.weekYear()%100}),I(0,["GG",2],0,function(){return this.isoWeekYear()%100}),yn("gggg","weekYear"),yn("ggggg","weekYear"),yn("GGGG","isoWeekYear"),yn("GGGGG","isoWeekYear"),z("weekYear","gg"),z("isoWeekYear","GG"),B("weekYear",1),B("isoWeekYear",1),pe("G",ue),pe("g",ue),pe("GG",re,Z),pe("gg",re,Z),pe("GGGG",se,te),pe("gggg",se,te),pe("GGGGG",ce,ne),pe("ggggg",ce,ne),ge(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,r){t[r.substr(0,2)]=K(e)}),ge(["gg","GG"],function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)}),I("Q",0,"Qo","quarter"),z("quarter","Q"),B("quarter",7),pe("Q",J),ve("Q",function(e,t){t[_e]=3*(K(e)-1)}),I("D",["DD",2],"Do","date"),z("date","D"),B("date",9),pe("D",re),pe("DD",re,Z),pe("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),ve(["D","DD"],xe),ve("Do",function(e,t){t[xe]=K(e.match(re)[0])});var gn=$("Date",!0);I("DDD",["DDDD",3],"DDDo","dayOfYear"),z("dayOfYear","DDD"),B("dayOfYear",4),pe("DDD",oe),pe("DDDD",ee),ve(["DDD","DDDD"],function(e,t,n){n._dayOfYear=K(e)}),I("m",["mm",2],0,"minute"),z("minute","m"),B("minute",14),pe("m",re),pe("mm",re,Z),ve(["m","mm"],Me);var wn=$("Minutes",!1);I("s",["ss",2],0,"second"),z("second","s"),B("second",15),pe("s",re),pe("ss",re,Z),ve(["s","ss"],Te);var En,Sn,_n=$("Seconds",!1);for(I("S",0,0,function(){return~~(this.millisecond()/100)}),I(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),I(0,["SSS",3],0,"millisecond"),I(0,["SSSS",4],0,function(){return 10*this.millisecond()}),I(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),I(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),I(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),I(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),I(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),z("millisecond","ms"),B("millisecond",16),pe("S",oe,J),pe("SS",oe,Z),pe("SSS",oe,ee),En="SSSS";En.length<=9;En+="S")pe(En,le);function xn(e,t){t[Ce]=K(1e3*("0."+e))}for(En="S";En.length<=9;En+="S")ve(En,xn);Sn=$("Milliseconds",!1),I("z",0,0,"zoneAbbr"),I("zz",0,0,"zoneName");var kn=E.prototype;function Mn(e){return e}kn.add=Zt,kn.calendar=function(e,t){1===arguments.length&&(arguments[0]?nn(arguments[0])?(e=arguments[0],t=void 0):function(e){var t,n=o(e)&&!c(e),r=!1,i=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"];for(t=0;tn.valueOf():n.valueOf()9999?L(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):C(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",L(n,"Z")):L(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},kn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r="moment",i="";return this.isLocal()||(r=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),e="["+r+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n=i+'[")]',this.format(e+t+"-MM-DD[T]HH:mm:ss.SSS"+n)},"undefined"!==typeof Symbol&&null!=Symbol.for&&(kn[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),kn.toJSON=function(){return this.isValid()?this.toISOString():null},kn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},kn.unix=function(){return Math.floor(this.valueOf()/1e3)},kn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},kn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},kn.eraName=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;ethis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},kn.isLocal=function(){return!!this.isValid()&&!this._isUTC},kn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},kn.isUtc=qt,kn.isUTC=qt,kn.zoneAbbr=function(){return this._isUTC?"UTC":""},kn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},kn.dates=x("dates accessor is deprecated. Use date instead.",gn),kn.months=x("months accessor is deprecated. Use month instead",He),kn.years=x("years accessor is deprecated. Use year instead",Ye),kn.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!==typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),kn.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!l(this._isDSTShifted))return this._isDSTShifted;var e,t={};return w(t,this),(t=Pt(t))._a?(e=t._isUTC?p(t._a):At(t._a),this._isDSTShifted=this.isValid()&&function(e,t,n){var r,i=Math.min(e.length,t.length),a=Math.abs(e.length-t.length),o=0;for(r=0;r0):this._isDSTShifted=!1,this._isDSTShifted});var Tn=P.prototype;function Cn(e,t,n,r){var i=pt(),a=p().set(r,t);return i[n](a,e)}function On(e,t,n){if(u(e)&&(t=e,e=void 0),e=e||"",null!=t)return Cn(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=Cn(e,r,n,"month");return i}function Pn(e,t,n,r){"boolean"===typeof e?(u(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,u(t)&&(n=t,t=void 0),t=t||"");var i,a=pt(),o=e?a._week.dow:0,s=[];if(null!=n)return Cn(t,(n+o)%7,r,"day");for(i=0;i<7;i++)s[i]=Cn(t,(i+o)%7,r,"day");return s}Tn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return C(r)?r.call(t,n):r},Tn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(A).map(function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e}).join(""),this._longDateFormat[e])},Tn.invalidDate=function(){return this._invalidDate},Tn.ordinal=function(e){return this._ordinal.replace("%d",e)},Tn.preparse=Mn,Tn.postformat=Mn,Tn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return C(i)?i(e,t,n,r):i.replace(/%d/i,e)},Tn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return C(n)?n(t):n.replace(/%s/i,t)},Tn.set=function(e){var t,n;for(n in e)s(e,n)&&(C(t=e[n])?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},Tn.eras=function(e,t){var n,r,a,o=this._eras||pt("en")._eras;for(n=0,r=o.length;n=0)return c[r]},Tn.erasConvertYear=function(e,t){var n=e.since<=e.until?1:-1;return void 0===t?i(e.since).year():i(e.since).year()+(t-e.offset)*n},Tn.erasAbbrRegex=function(e){return s(this,"_erasAbbrRegex")||bn.call(this),e?this._erasAbbrRegex:this._erasRegex},Tn.erasNameRegex=function(e){return s(this,"_erasNameRegex")||bn.call(this),e?this._erasNameRegex:this._erasRegex},Tn.erasNarrowRegex=function(e){return s(this,"_erasNarrowRegex")||bn.call(this),e?this._erasNarrowRegex:this._erasRegex},Tn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||De).test(t)?"format":"standalone"][e.month()]:a(this._months)?this._months:this._months.standalone},Tn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[De.test(t)?"format":"standalone"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},Tn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return function(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],r=0;r<12;++r)a=p([2e3,r]),this._shortMonthsParse[r]=this.monthsShort(a,"").toLocaleLowerCase(),this._longMonthsParse[r]=this.months(a,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=Ee.call(this._shortMonthsParse,o))?i:null:-1!==(i=Ee.call(this._longMonthsParse,o))?i:null:"MMM"===t?-1!==(i=Ee.call(this._shortMonthsParse,o))?i:-1!==(i=Ee.call(this._longMonthsParse,o))?i:null:-1!==(i=Ee.call(this._longMonthsParse,o))?i:-1!==(i=Ee.call(this._shortMonthsParse,o))?i:null}.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=p([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[r]||(a="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[r]=new RegExp(a.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[r].test(e))return r;if(n&&"MMM"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},Tn.monthsRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Fe.call(this),e?this._monthsStrictRegex:this._monthsRegex):(s(this,"_monthsRegex")||(this._monthsRegex=Ie),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},Tn.monthsShortRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Fe.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(s(this,"_monthsShortRegex")||(this._monthsShortRegex=je),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},Tn.week=function(e){return qe(e,this._week.dow,this._week.doy).week},Tn.firstDayOfYear=function(){return this._week.doy},Tn.firstDayOfWeek=function(){return this._week.dow},Tn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ke(n,this._week.dow):e?n[e.day()]:n},Tn.weekdaysMin=function(e){return!0===e?Ke(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},Tn.weekdaysShort=function(e){return!0===e?Ke(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},Tn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return function(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=p([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=Ee.call(this._weekdaysParse,o))?i:null:"ddd"===t?-1!==(i=Ee.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=Ee.call(this._minWeekdaysParse,o))?i:null:"dddd"===t?-1!==(i=Ee.call(this._weekdaysParse,o))?i:-1!==(i=Ee.call(this._shortWeekdaysParse,o))?i:-1!==(i=Ee.call(this._minWeekdaysParse,o))?i:null:"ddd"===t?-1!==(i=Ee.call(this._shortWeekdaysParse,o))?i:-1!==(i=Ee.call(this._weekdaysParse,o))?i:-1!==(i=Ee.call(this._minWeekdaysParse,o))?i:null:-1!==(i=Ee.call(this._minWeekdaysParse,o))?i:-1!==(i=Ee.call(this._weekdaysParse,o))?i:-1!==(i=Ee.call(this._shortWeekdaysParse,o))?i:null}.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=p([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(a="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(a.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},Tn.weekdaysRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||et.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Qe),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},Tn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||et.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Je),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},Tn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||et.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ze),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},Tn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},Tn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},dt("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===K(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),i.lang=x("moment.lang is deprecated. Use moment.locale instead.",dt),i.langData=x("moment.langData is deprecated. Use moment.localeData instead.",pt);var Nn=Math.abs;function An(e,t,n,r){var i=$t(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function Rn(e){return e<0?Math.floor(e):Math.ceil(e)}function Dn(e){return 4800*e/146097}function jn(e){return 146097*e/4800}function In(e){return function(){return this.as(e)}}var Ln=In("ms"),Hn=In("s"),Fn=In("m"),zn=In("h"),Yn=In("d"),Un=In("w"),Wn=In("M"),Bn=In("Q"),qn=In("y");function Vn(e){return function(){return this.isValid()?this._data[e]:NaN}}var Kn=Vn("milliseconds"),$n=Vn("seconds"),Xn=Vn("minutes"),Gn=Vn("hours"),Qn=Vn("days"),Jn=Vn("months"),Zn=Vn("years");var er=Math.round,tr={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};var nr=Math.abs;function rr(e){return(e>0)-(e<0)||+e}function ir(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,i,a,o,s,c=nr(this._milliseconds)/1e3,l=nr(this._days),u=nr(this._months),f=this.asSeconds();return f?(t=V((e=V(c/60))/60),c%=60,e%=60,n=V(u/12),u%=12,r=c?c.toFixed(3).replace(/\.?0+$/,""):"",i=f<0?"-":"",a=rr(this._months)!==rr(f)?"-":"",o=rr(this._days)!==rr(f)?"-":"",s=rr(this._milliseconds)!==rr(f)?"-":"",i+"P"+(n?a+n+"Y":"")+(u?a+u+"M":"")+(l?o+l+"D":"")+(t||e||c?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(c?s+r+"S":"")):"P0D"}var ar=Lt.prototype;return ar.isValid=function(){return this._isValid},ar.abs=function(){var e=this._data;return this._milliseconds=Nn(this._milliseconds),this._days=Nn(this._days),this._months=Nn(this._months),e.milliseconds=Nn(e.milliseconds),e.seconds=Nn(e.seconds),e.minutes=Nn(e.minutes),e.hours=Nn(e.hours),e.months=Nn(e.months),e.years=Nn(e.years),this},ar.add=function(e,t){return An(this,e,t,1)},ar.subtract=function(e,t){return An(this,e,t,-1)},ar.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=Y(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+Dn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(jn(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}},ar.asMilliseconds=Ln,ar.asSeconds=Hn,ar.asMinutes=Fn,ar.asHours=zn,ar.asDays=Yn,ar.asWeeks=Un,ar.asMonths=Wn,ar.asQuarters=Bn,ar.asYears=qn,ar.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*K(this._months/12):NaN},ar._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,c=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*Rn(jn(s)+o),o=0,s=0),c.milliseconds=a%1e3,e=V(a/1e3),c.seconds=e%60,t=V(e/60),c.minutes=t%60,n=V(t/60),c.hours=n%24,s+=i=V(Dn(o+=V(n/24))),o-=Rn(jn(i)),r=V(s/12),s%=12,c.days=o,c.months=s,c.years=r,this},ar.clone=function(){return $t(this)},ar.get=function(e){return e=Y(e),this.isValid()?this[e+"s"]():NaN},ar.milliseconds=Kn,ar.seconds=$n,ar.minutes=Xn,ar.hours=Gn,ar.days=Qn,ar.weeks=function(){return V(this.days()/7)},ar.months=Jn,ar.years=Zn,ar.humanize=function(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,i=!1,a=tr;return"object"===typeof e&&(t=e,e=!1),"boolean"===typeof e&&(i=e),"object"===typeof t&&(a=Object.assign({},tr,t),null!=t.s&&null==t.ss&&(a.ss=t.s-1)),r=function(e,t,n,r){var i=$t(e).abs(),a=er(i.as("s")),o=er(i.as("m")),s=er(i.as("h")),c=er(i.as("d")),l=er(i.as("M")),u=er(i.as("w")),f=er(i.as("y")),d=a<=n.ss&&["s",a]||a0,d[4]=r,function(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}.apply(null,d)}(this,!i,a,n=this.localeData()),i&&(r=n.pastFuture(+this,r)),n.postformat(r)},ar.toISOString=ir,ar.toString=ir,ar.toJSON=ir,ar.locale=an,ar.localeData=sn,ar.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ir),ar.lang=on,I("X",0,0,"unix"),I("x",0,0,"valueOf"),pe("x",ue),pe("X",/[+-]?\d+(\.\d{1,3})?/),ve("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e))}),ve("x",function(e,t,n){n._d=new Date(K(e))}),i.version="2.29.4",n=At,i.fn=kn,i.min=function(){return jt("isBefore",[].slice.call(arguments,0))},i.max=function(){return jt("isAfter",[].slice.call(arguments,0))},i.now=function(){return Date.now?Date.now():+new Date},i.utc=p,i.unix=function(e){return At(1e3*e)},i.months=function(e,t){return On(e,t,"months")},i.isDate=f,i.locale=dt,i.invalid=y,i.duration=$t,i.isMoment=S,i.weekdays=function(e,t,n){return Pn(e,t,n,"weekdays")},i.parseZone=function(){return At.apply(null,arguments).parseZone()},i.localeData=pt,i.isDuration=Ht,i.monthsShort=function(e,t){return On(e,t,"monthsShort")},i.weekdaysMin=function(e,t,n){return Pn(e,t,n,"weekdaysMin")},i.defineLocale=ht,i.updateLocale=function(e,t){if(null!=t){var n,r,i=ot;null!=st[e]&&null!=st[e].parentLocale?st[e].set(O(st[e]._config,t)):(null!=(r=ft(e))&&(i=r._config),t=O(i,t),null==r&&(t.abbr=e),(n=new P(t)).parentLocale=st[e],st[e]=n),dt(e)}else null!=st[e]&&(null!=st[e].parentLocale?(st[e]=st[e].parentLocale,e===dt()&&dt(e)):null!=st[e]&&delete st[e]);return st[e]},i.locales=function(){return k(st)},i.weekdaysShort=function(e,t,n){return Pn(e,t,n,"weekdaysShort")},i.normalizeUnits=Y,i.relativeTimeRounding=function(e){return void 0===e?er:"function"===typeof e&&(er=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==tr[e]&&(void 0===t?tr[e]:(tr[e]=t,"s"===e&&(tr.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},i.prototype=kn,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i},e.exports=n()}).call(t,n(72)(e))},function(e,t,n){"use strict";var r=n(0);n.n(r);t.a=(()=>r.createElement("div",{className:"head"},r.createElement("p",{className:"hash-title"},"Hash"),r.createElement("p",{className:"from"},"From"),r.createElement("p",{className:"to"},"To"),r.createElement("p",{className:"date"},"Date"),r.createElement("p",{className:"amount"},"Amount ",r.createElement("span",null,"open")),r.createElement("p",{className:"fee"},"Fee ",r.createElement("span",null,"open"))))},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(85)),a=(n.n(i),n(236)),o=n.n(a),s=n(1),c=n(12);const l=e=>e?[{title:"hash",value:e.hash},{title:"status",value:e.status?"Success":"Failed"},{title:"block",value:e.blockHash},{title:"date",value:i.utc(e.timestamp).format("YYYY-MM-DD, HH:mm:ss z")},{title:"from",value:e.senderAddress},{title:"to",value:(e=>e?e.recipientAddress&&e.data?`Contract: ${e.recipientAddress}`:e.recipientAddress?e.recipientAddress:"Smart contract deploy":"")(e)},{title:"amount",value:e.amount},{title:"results",value:null}]:[],u=({title:e,subTitle:t,list:n,closePopup:i,transactionResults:a})=>r.createElement("div",{className:"popup-area"},r.createElement("div",{className:"info-popup"},r.createElement("div",{className:"close-popup",onClick:i},"CLOSE ",r.createElement("img",{src:o.a,alt:"close"})),r.createElement("h2",{className:"main-title"},e),r.createElement("h3",{className:"subtitle"},t),n.map(e=>r.createElement("div",{key:e.value+Math.random(),className:"info"},r.createElement("span",{className:"title"},e.title),r.createElement("span",{className:`${("from"===e.title||"to"===e.title)&&"no-upper-case"}`},e.value))),r.createElement("div",{className:"transaction-result-wrapper"},a&&a.map((e,t)=>r.createElement("div",{className:"transaction-result-block",key:t},r.createElement("div",{className:"results-info"},r.createElement("span",{className:"results-title"},"from: "),r.createElement("span",{className:"no-upper-case"},e.from)),e.to&&r.createElement("div",{className:"results-info"},r.createElement("span",{className:"results-title"},"to: "),r.createElement("span",{className:"no-upper-case"},e.to)),r.createElement("div",{className:"results-info"},r.createElement("span",{className:"results-title"},"amount: "),r.createElement("span",null,e.amount)),e.data&&r.createElement("div",{className:"results-info"},r.createElement("span",{className:"results-title"},"data: "),r.createElement("span",{className:"no-upper-case"},e.data)))))));const f=Object(s.b)(({transaction:e})=>({transaction:e}),(e,t)=>({resetTransaction:()=>e(Object(c.i)())}))(class extends r.Component{componentWillUnmount(){this.props.resetTransaction()}render(){if(!this.props.transaction)return null;const e=l(this.props.transaction);return r.createElement(r.Fragment,null,r.createElement(u,{title:"transaction info",list:e,closePopup:this.props.closePopup,transactionResults:this.props.transaction.results}))}});t.a=f},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(245));n.n(i);t.a=class extends r.Component{constructor(){super(...arguments),this.onLoadMore=(()=>{this.props.onLoadMore()})}render(){const{children:e,data:t}=this.props;return r.createElement("div",{className:"infinity-scroll-container"},r.createElement(i,{loadMore:this.onLoadMore,hasMore:t.totalCount>t.list.length,loader:r.createElement("div",{key:0},"Loading..."),useWindow:!1},e))}}},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(2)),a=n(46);n.n(a);const o=Object(i.g)(e=>{const t=new URLSearchParams(e.location.search).get("BaD");return r.createElement("div",{className:"nav"},r.createElement(i.b,{to:"/wallet/delegates",className:`${!t&&"active"}`},"Vote"),r.createElement(i.b,{to:"/wallet/delegates?BaD=true",className:`${t&&"active"}`},"Become a Delegate"))});t.a=o},function(e,t,n){"use strict";var r=n(0),i=(n.n(r),n(19)),a=n(48);const o=Object(a.a)(({isVisible:e,transaction:t,address:n,onSubmit:a,onClose:o})=>e?r.createElement(i.a,{onClick:o},r.createElement("form",{className:"popup"},r.createElement("h2",null,"Confirm ",r.createElement("br",null)," transaction"),r.createElement("div",{className:"info"},r.createElement("span",{className:"title"},"from"),r.createElement("span",null,n)),t.recipientAddress&&r.createElement("div",{className:"info"},r.createElement("span",{className:"title"},"to"),r.createElement("span",null,t.recipientAddress)),t.data&&r.createElement("div",{className:"info"},r.createElement("span",{className:"title"},"data"),r.createElement("span",null,t.data)),r.createElement("div",{className:"info"},r.createElement("span",{className:"title"},"amount"),r.createElement("span",null,r.createElement("p",null,t.amount," OPEN"))),r.createElement("div",{className:"info"},r.createElement("span",{className:"title"},"fee"),r.createElement("span",null,t.fee," OPEN")),r.createElement("div",{className:"button-area"},r.createElement("button",{className:"button mini",onClick:a},r.createElement("div",null),r.createElement("span",null,"Confirm")),r.createElement("button",{className:"button mini white",onClick:o},r.createElement("div",null),r.createElement("span",null,"Cancel"))))):null);t.a=o},function(e,t,n){n(92),e.exports=n(97)},function(e,t,n){"use strict";"undefined"===typeof Promise&&(n(93).enable(),window.Promise=n(95)),n(96),Object.assign=n(31)},function(e,t,n){"use strict";var r=n(49),i=[ReferenceError,TypeError,RangeError],a=!1;function o(){a=!1,r._47=null,r._71=null}function s(e,t){return t.some(function(t){return e instanceof t})}t.disable=o,t.enable=function(e){e=e||{},a&&o();a=!0;var t=0,n=0,c={};function l(t){(e.allRejections||s(c[t].error,e.whitelist||i))&&(c[t].displayId=n++,e.onUnhandled?(c[t].logged=!0,e.onUnhandled(c[t].displayId,c[t].error)):(c[t].logged=!0,function(e,t){console.warn("Possible Unhandled Promise Rejection (id: "+e+"):"),((t&&(t.stack||t))+"").split("\n").forEach(function(e){console.warn(" "+e)})}(c[t].displayId,c[t].error)))}r._47=function(t){var n;2===t._83&&c[t._56]&&(c[t._56].logged?(n=t._56,c[n].logged&&(e.onHandled?e.onHandled(c[n].displayId,c[n].error):c[n].onUnhandled||(console.warn("Promise Rejection Handled (id: "+c[n].displayId+"):"),console.warn(' This means you can ignore any previous messages of the form "Possible Unhandled Promise Rejection" with id '+c[n].displayId+".")))):clearTimeout(c[t._56].timeout),delete c[t._56])},r._71=function(e,n){0===e._75&&(e._56=t++,c[e._56]={displayId:null,error:n,timeout:setTimeout(l.bind(null,e._56),s(n,i)?100:2e3),logged:!1})}}},function(e,t,n){"use strict";(function(t){function n(e){i.length||(r(),!0),i[i.length]=e}e.exports=n;var r,i=[],a=0,o=1024;function s(){for(;ao){for(var t=0,n=i.length-a;t-1};u.prototype.append=function(e,t){e=s(e),t=c(t);var n=this.map[e];this.map[e]=n?n+","+t:t},u.prototype.delete=function(e){delete this.map[s(e)]},u.prototype.get=function(e){return e=s(e),this.has(e)?this.map[e]:null},u.prototype.has=function(e){return this.map.hasOwnProperty(s(e))},u.prototype.set=function(e,t){this.map[s(e)]=c(t)},u.prototype.forEach=function(e,t){for(var n in this.map)this.map.hasOwnProperty(n)&&e.call(t,this.map[n],n,this)},u.prototype.keys=function(){var e=[];return this.forEach(function(t,n){e.push(n)}),l(e)},u.prototype.values=function(){var e=[];return this.forEach(function(t){e.push(t)}),l(e)},u.prototype.entries=function(){var e=[];return this.forEach(function(t,n){e.push([n,t])}),l(e)},t.iterable&&(u.prototype[Symbol.iterator]=u.prototype.entries);var a=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];b.prototype.clone=function(){return new b(this,{body:this._bodyInit})},m.call(b.prototype),m.call(v.prototype),v.prototype.clone=function(){return new v(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new u(this.headers),url:this.url})},v.error=function(){var e=new v(null,{status:0,statusText:""});return e.type="error",e};var o=[301,302,303,307,308];v.redirect=function(e,t){if(-1===o.indexOf(t))throw new RangeError("Invalid status code");return new v(null,{status:t,headers:{location:e}})},e.Headers=u,e.Request=b,e.Response=v,e.fetch=function(e,n){return new Promise(function(r,i){var a=new b(e,n),o=new XMLHttpRequest;o.onload=function(){var e,t,n={status:o.status,statusText:o.statusText,headers:(e=o.getAllResponseHeaders()||"",t=new u,e.split(/\r?\n/).forEach(function(e){var n=e.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();t.append(r,i)}}),t)};n.url="responseURL"in o?o.responseURL:n.headers.get("X-Request-URL");var i="response"in o?o.response:o.responseText;r(new v(i,n))},o.onerror=function(){i(new TypeError("Network request failed"))},o.ontimeout=function(){i(new TypeError("Network request failed"))},o.open(a.method,a.url,!0),"include"===a.credentials&&(o.withCredentials=!0),"responseType"in o&&t.blob&&(o.responseType="blob"),a.headers.forEach(function(e,t){o.setRequestHeader(t,e)}),o.send("undefined"===typeof a._bodyInit?null:a._bodyInit)})},e.fetch.polyfill=!0}function s(e){if("string"!==typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(e))throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function c(e){return"string"!==typeof e&&(e=String(e)),e}function l(e){var n={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return t.iterable&&(n[Symbol.iterator]=function(){return n}),n}function u(e){this.map={},e instanceof u?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function f(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function d(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function h(e){var t=new FileReader,n=d(t);return t.readAsArrayBuffer(e),n}function p(e){if(e.slice)return e.slice(0);var t=new Uint8Array(e.byteLength);return t.set(new Uint8Array(e)),t.buffer}function m(){return this.bodyUsed=!1,this._initBody=function(e){if(this._bodyInit=e,e)if("string"===typeof e)this._bodyText=e;else if(t.blob&&Blob.prototype.isPrototypeOf(e))this._bodyBlob=e;else if(t.formData&&FormData.prototype.isPrototypeOf(e))this._bodyFormData=e;else if(t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e))this._bodyText=e.toString();else if(t.arrayBuffer&&t.blob&&r(e))this._bodyArrayBuffer=p(e.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer]);else{if(!t.arrayBuffer||!ArrayBuffer.prototype.isPrototypeOf(e)&&!i(e))throw new Error("unsupported BodyInit type");this._bodyArrayBuffer=p(e)}else this._bodyText="";this.headers.get("content-type")||("string"===typeof e?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):t.searchParams&&URLSearchParams.prototype.isPrototypeOf(e)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},t.blob&&(this.blob=function(){var e=f(this);if(e)return e;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?f(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(h)}),this.text=function(){var e,t,n,r=f(this);if(r)return r;if(this._bodyBlob)return e=this._bodyBlob,t=new FileReader,n=d(t),t.readAsText(e),n;if(this._bodyArrayBuffer)return Promise.resolve(function(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r-1?r:n),this.mode=t.mode||this.mode||null,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&i)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(i)}function y(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(i))}}),t}function v(e,t){t||(t={}),this.type="default",this.status="status"in t?t.status:200,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"OK",this.headers=new u(t.headers),this.url=t.url||"",this._initBody(e)}}("undefined"!==typeof self?self:this)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=(n.n(r),n(99)),a=(n.n(i),n(1)),o=n(2),s=n(144),c=n(145),l=n(150),u=n(152),f=n(153),d=n(165),h=n(166),p=n(217),m=n(221),b=n(259),y=(n.n(b),n(260)),v=(n.n(y),n(261)),g=(n.n(v),n(262));const w=v.version;console.log("ui-version: ",w);const E=Object(f.a)();i.render(r.createElement(a.a,{store:E},r.createElement(o.a,null,r.createElement(r.Fragment,null,r.createElement(p.a,null),r.createElement(o.f,null,r.createElement(o.e,{exact:!0,path:"/",component:Object(u.a)(s.a)}),r.createElement(o.e,{path:"/login",component:Object(l.a)(c.a)}),r.createElement(o.e,{path:"/new",component:Object(l.a)(h.a)}),r.createElement(o.e,{path:"/contract-deploy",component:Object(l.a)(g.a)}),r.createElement(o.e,{path:"/",component:Object(l.a)(m.a)}),r.createElement(o.d,{from:"*",to:"/"}))))),document.getElementById("root")),Object(d.a)()},function(e,t,n){"use strict";var r=n(31),i="function"===typeof Symbol&&Symbol.for,a=i?Symbol.for("react.element"):60103,o=i?Symbol.for("react.portal"):60106,s=i?Symbol.for("react.fragment"):60107,c=i?Symbol.for("react.strict_mode"):60108,l=i?Symbol.for("react.profiler"):60114,u=i?Symbol.for("react.provider"):60109,f=i?Symbol.for("react.context"):60110,d=i?Symbol.for("react.forward_ref"):60112,h=i?Symbol.for("react.suspense"):60113,p=i?Symbol.for("react.memo"):60115,m=i?Symbol.for("react.lazy"):60116,b="function"===typeof Symbol&&Symbol.iterator;function y(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;nP.length&&P.push(e)}function R(e,t,n){return null==e?0:function e(t,n,r,i){var s=typeof t;"undefined"!==s&&"boolean"!==s||(t=null);var c=!1;if(null===t)c=!0;else switch(s){case"string":case"number":c=!0;break;case"object":switch(t.$$typeof){case a:case o:c=!0}}if(c)return r(i,t,""===n?"."+D(t,0):n),1;if(c=0,n=""===n?".":n+":",Array.isArray(t))for(var l=0;l