ETH Price: $2,629.81 (-0.87%)

Token

原神 (Genshin)
 

Overview

Max Total Supply

10,000,000,000 Genshin

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,859,838.518190060520997253 Genshin

Value
$0.00
0xe907a59a819baa3cc1b68e9a398adcd496eb6044
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:
Genshin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : Genshin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

contract Genshin is IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor() {
        _name = unicode"原神";
        _symbol = "Genshin";
        _decimals = 18;
        _totalSupply = 10000000000 * (10**_decimals);
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = msg.sender;
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = msg.sender;
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = msg.sender;
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 2 of 3 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 3 of 3 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017fe58e9fe7a59e0000000000000000000000000000000000000000000000000000815250600390805190602001906200005f929190620001b5565b506040518060400160405280600781526020017f47656e7368696e0000000000000000000000000000000000000000000000000081525060049080519060200190620000ad929190620001b5565b506012600560006101000a81548160ff021916908360ff160217905550600560009054906101000a900460ff16600a620000e89190620002ee565b6402540be400620000fa91906200042b565b6002819055506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001a7919062000276565b60405180910390a362000544565b828054620001c390620004a3565b90600052602060002090601f016020900481019282620001e7576000855562000233565b82601f106200020257805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023257825182559160200191906001019062000215565b5b50905062000242919062000246565b5090565b5b808211156200026157600081600090555060010162000247565b5090565b62000270816200048c565b82525050565b60006020820190506200028d600083018462000265565b92915050565b6000808291508390505b6001851115620002e557808604811115620002bd57620002bc620004d9565b5b6001851615620002cd5780820291505b8081029050620002dd8562000537565b94506200029d565b94509492505050565b6000620002fb826200048c565b9150620003088362000496565b9250620003377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200033f565b905092915050565b60008262000351576001905062000424565b8162000361576000905062000424565b81600181146200037a57600281146200038557620003bb565b600191505062000424565b60ff8411156200039a5762000399620004d9565b5b8360020a915084821115620003b457620003b3620004d9565b5b5062000424565b5060208310610133831016604e8410600b8410161715620003f55782820a905083811115620003ef57620003ee620004d9565b5b62000424565b62000404848484600162000293565b925090508184048111156200041e576200041d620004d9565b5b81810290505b9392505050565b600062000438826200048c565b915062000445836200048c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620004815762000480620004d9565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620004bc57607f821691505b60208210811415620004d357620004d262000508565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b61108380620005546000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610bb3565b60405180910390f35b6100d060048036038101906100cb9190610a20565b610292565b6040516100dd9190610b98565b60405180910390f35b6100ee6102ae565b6040516100fb9190610c95565b60405180910390f35b61011e600480360381019061011991906109cd565b6102b8565b60405161012b9190610b98565b60405180910390f35b61013c6102e0565b6040516101499190610cb0565b60405180910390f35b61016c60048036038101906101679190610960565b6102f7565b6040516101799190610c95565b60405180910390f35b61018a61033f565b6040516101979190610bb3565b60405180910390f35b6101ba60048036038101906101b59190610a20565b6103d1565b6040516101c79190610b98565b60405180910390f35b6101ea60048036038101906101e5919061098d565b6103ed565b6040516101f79190610c95565b60405180910390f35b60606003805461020f90610dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610dc5565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b6000803390506102a3818585610474565b600191505092915050565b6000600254905090565b6000803390506102c985828561063f565b6102d48585856106cb565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461034e90610dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610dc5565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000803390506103e28185856106cb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104db90610c75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b90610bf5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516106329190610c95565b60405180910390a3505050565b600061064b84846103ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c557818110156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90610c15565b60405180910390fd5b6106c48484848403610474565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290610c55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290610bd5565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082890610c35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108c49190610ce7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109289190610c95565b60405180910390a350505050565b6000813590506109458161101f565b92915050565b60008135905061095a81611036565b92915050565b60006020828403121561097657610975610e55565b5b600061098484828501610936565b91505092915050565b600080604083850312156109a4576109a3610e55565b5b60006109b285828601610936565b92505060206109c385828601610936565b9150509250929050565b6000806000606084860312156109e6576109e5610e55565b5b60006109f486828701610936565b9350506020610a0586828701610936565b9250506040610a168682870161094b565b9150509250925092565b60008060408385031215610a3757610a36610e55565b5b6000610a4585828601610936565b9250506020610a568582860161094b565b9150509250929050565b610a6981610d4f565b82525050565b6000610a7a82610ccb565b610a848185610cd6565b9350610a94818560208601610d92565b610a9d81610e5a565b840191505092915050565b6000610ab5602383610cd6565b9150610ac082610e6b565b604082019050919050565b6000610ad8602283610cd6565b9150610ae382610eba565b604082019050919050565b6000610afb601d83610cd6565b9150610b0682610f09565b602082019050919050565b6000610b1e602683610cd6565b9150610b2982610f32565b604082019050919050565b6000610b41602583610cd6565b9150610b4c82610f81565b604082019050919050565b6000610b64602483610cd6565b9150610b6f82610fd0565b604082019050919050565b610b8381610d7b565b82525050565b610b9281610d85565b82525050565b6000602082019050610bad6000830184610a60565b92915050565b60006020820190508181036000830152610bcd8184610a6f565b905092915050565b60006020820190508181036000830152610bee81610aa8565b9050919050565b60006020820190508181036000830152610c0e81610acb565b9050919050565b60006020820190508181036000830152610c2e81610aee565b9050919050565b60006020820190508181036000830152610c4e81610b11565b9050919050565b60006020820190508181036000830152610c6e81610b34565b9050919050565b60006020820190508181036000830152610c8e81610b57565b9050919050565b6000602082019050610caa6000830184610b7a565b92915050565b6000602082019050610cc56000830184610b89565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610cf282610d7b565b9150610cfd83610d7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d3257610d31610df7565b5b828201905092915050565b6000610d4882610d5b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015610db0578082015181840152602081019050610d95565b83811115610dbf576000848401525b50505050565b60006002820490506001821680610ddd57607f821691505b60208210811415610df157610df0610e26565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61102881610d3d565b811461103357600080fd5b50565b61103f81610d7b565b811461104a57600080fd5b5056fea2646970667358221220316ea398cf88bd99381f2cd5ad2b0d79f87b6f875fcf85eccb426e235d73950f64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610bb3565b60405180910390f35b6100d060048036038101906100cb9190610a20565b610292565b6040516100dd9190610b98565b60405180910390f35b6100ee6102ae565b6040516100fb9190610c95565b60405180910390f35b61011e600480360381019061011991906109cd565b6102b8565b60405161012b9190610b98565b60405180910390f35b61013c6102e0565b6040516101499190610cb0565b60405180910390f35b61016c60048036038101906101679190610960565b6102f7565b6040516101799190610c95565b60405180910390f35b61018a61033f565b6040516101979190610bb3565b60405180910390f35b6101ba60048036038101906101b59190610a20565b6103d1565b6040516101c79190610b98565b60405180910390f35b6101ea60048036038101906101e5919061098d565b6103ed565b6040516101f79190610c95565b60405180910390f35b60606003805461020f90610dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610dc5565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b6000803390506102a3818585610474565b600191505092915050565b6000600254905090565b6000803390506102c985828561063f565b6102d48585856106cb565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461034e90610dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610dc5565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000803390506103e28185856106cb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104db90610c75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b90610bf5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516106329190610c95565b60405180910390a3505050565b600061064b84846103ed565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c557818110156106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90610c15565b60405180910390fd5b6106c48484848403610474565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290610c55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a290610bd5565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082890610c35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108c49190610ce7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109289190610c95565b60405180910390a350505050565b6000813590506109458161101f565b92915050565b60008135905061095a81611036565b92915050565b60006020828403121561097657610975610e55565b5b600061098484828501610936565b91505092915050565b600080604083850312156109a4576109a3610e55565b5b60006109b285828601610936565b92505060206109c385828601610936565b9150509250929050565b6000806000606084860312156109e6576109e5610e55565b5b60006109f486828701610936565b9350506020610a0586828701610936565b9250506040610a168682870161094b565b9150509250925092565b60008060408385031215610a3757610a36610e55565b5b6000610a4585828601610936565b9250506020610a568582860161094b565b9150509250929050565b610a6981610d4f565b82525050565b6000610a7a82610ccb565b610a848185610cd6565b9350610a94818560208601610d92565b610a9d81610e5a565b840191505092915050565b6000610ab5602383610cd6565b9150610ac082610e6b565b604082019050919050565b6000610ad8602283610cd6565b9150610ae382610eba565b604082019050919050565b6000610afb601d83610cd6565b9150610b0682610f09565b602082019050919050565b6000610b1e602683610cd6565b9150610b2982610f32565b604082019050919050565b6000610b41602583610cd6565b9150610b4c82610f81565b604082019050919050565b6000610b64602483610cd6565b9150610b6f82610fd0565b604082019050919050565b610b8381610d7b565b82525050565b610b9281610d85565b82525050565b6000602082019050610bad6000830184610a60565b92915050565b60006020820190508181036000830152610bcd8184610a6f565b905092915050565b60006020820190508181036000830152610bee81610aa8565b9050919050565b60006020820190508181036000830152610c0e81610acb565b9050919050565b60006020820190508181036000830152610c2e81610aee565b9050919050565b60006020820190508181036000830152610c4e81610b11565b9050919050565b60006020820190508181036000830152610c6e81610b34565b9050919050565b60006020820190508181036000830152610c8e81610b57565b9050919050565b6000602082019050610caa6000830184610b7a565b92915050565b6000602082019050610cc56000830184610b89565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610cf282610d7b565b9150610cfd83610d7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d3257610d31610df7565b5b828201905092915050565b6000610d4882610d5b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015610db0578082015181840152602081019050610d95565b83811115610dbf576000848401525b50505050565b60006002820490506001821680610ddd57607f821691505b60208210811415610df157610df0610e26565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61102881610d3d565b811461103357600080fd5b50565b61103f81610d7b565b811461104a57600080fd5b5056fea2646970667358221220316ea398cf88bd99381f2cd5ad2b0d79f87b6f875fcf85eccb426e235d73950f64736f6c63430008070033

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.