Sepolia Testnet

Token

ERC-20: meson.network-testnet (MSN)
ERC-20

Overview

Max Total Supply

3,999,999,999.9 MSN

Holders

122,938

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
913.319130718909338383 MSN
0x19d7a7086e3a96e0aa783e59594eff743eb12acf
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:
MSN

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2024-01-17
*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: contracts/msn.sol


pragma solidity ^0.8.0;


contract MSN is ERC20 {
    address public contract_owner;
    modifier onlyContractOwner() {
        require(msg.sender == contract_owner, "Only contractOwner");
        _;
    }

    constructor(
        string memory name,
        string memory symbol,
        uint256 ini_supply
    ) ERC20(name, symbol) {
        contract_owner = msg.sender;
        _mint(msg.sender, ini_supply * (10 ** uint256(decimals())));
    }

    //mint and burn functions for cross-chain token amount balancing
    //sum(tokens on all chains) == 100% tokens amount  
    //token price on each chain is equal

    event Mint_log(address addr, uint256 amount, string log);

    function mint(uint256 amount, string memory log) public onlyContractOwner {
        _mint(msg.sender, amount);
        emit Mint_log(msg.sender, amount, log);
    }

    event Burn_log(address addr, uint256 amount, string log);

    function burn(uint256 amount, string memory log) public {
        _burn(msg.sender, amount);
        emit Burn_log(msg.sender, amount, log);
    }
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"ini_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","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":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"log","type":"string"}],"name":"Burn_log","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"log","type":"string"}],"name":"Mint_log","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":"value","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"log","type":"string"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contract_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"log","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b5060405162001f1338038062001f13833981810160405281019062000036919062000559565b828281600390816200004991906200081e565b5080600490816200005b91906200081e565b5050503360055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000dd33620000b3620000e660201b60201c565b60ff16600a620000c4919062000a7f565b83620000d1919062000acf565b620000ee60201b60201c565b50505062000c18565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000161575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000158919062000b5c565b60405180910390fd5b620001745f83836200017860201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001cc578060025f828254620001bf919062000b77565b925050819055506200029d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000258578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200024f9392919062000bc2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e6578060025f828254039250508190555062000330565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038f919062000bfd565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003fd82620003b5565b810181811067ffffffffffffffff821117156200041f576200041e620003c5565b5b80604052505050565b5f620004336200039c565b9050620004418282620003f2565b919050565b5f67ffffffffffffffff821115620004635762000462620003c5565b5b6200046e82620003b5565b9050602081019050919050565b5f5b838110156200049a5780820151818401526020810190506200047d565b5f8484015250505050565b5f620004bb620004b58462000446565b62000428565b905082815260208101848484011115620004da57620004d9620003b1565b5b620004e78482856200047b565b509392505050565b5f82601f830112620005065762000505620003ad565b5b815162000518848260208601620004a5565b91505092915050565b5f819050919050565b620005358162000521565b811462000540575f80fd5b50565b5f8151905062000553816200052a565b92915050565b5f805f60608486031215620005735762000572620003a5565b5b5f84015167ffffffffffffffff811115620005935762000592620003a9565b5b620005a186828701620004ef565b935050602084015167ffffffffffffffff811115620005c557620005c4620003a9565b5b620005d386828701620004ef565b9250506040620005e68682870162000543565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200063f57607f821691505b602082108103620006555762000654620005fa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200067c565b620006c586836200067c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200070662000700620006fa8462000521565b620006dd565b62000521565b9050919050565b5f819050919050565b6200072183620006e6565b6200073962000730826200070d565b84845462000688565b825550505050565b5f90565b6200074f62000741565b6200075c81848462000716565b505050565b5b818110156200078357620007775f8262000745565b60018101905062000762565b5050565b601f821115620007d2576200079c816200065b565b620007a7846200066d565b81016020851015620007b7578190505b620007cf620007c6856200066d565b83018262000761565b50505b505050565b5f82821c905092915050565b5f620007f45f1984600802620007d7565b1980831691505092915050565b5f6200080e8383620007e3565b9150826002028217905092915050565b6200082982620005f0565b67ffffffffffffffff811115620008455762000844620003c5565b5b62000851825462000627565b6200085e82828562000787565b5f60209050601f83116001811462000894575f84156200087f578287015190505b6200088b858262000801565b865550620008fa565b601f198416620008a4866200065b565b5f5b82811015620008cd57848901518255600182019150602085019450602081019050620008a6565b86831015620008ed5784890151620008e9601f891682620007e3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200098c5780860481111562000964576200096362000902565b5b6001851615620009745780820291505b808102905062000984856200092f565b945062000944565b94509492505050565b5f82620009a6576001905062000a78565b81620009b5575f905062000a78565b8160018114620009ce5760028114620009d95762000a0f565b600191505062000a78565b60ff841115620009ee57620009ed62000902565b5b8360020a91508482111562000a085762000a0762000902565b5b5062000a78565b5060208310610133831016604e8410600b841016171562000a495782820a90508381111562000a435762000a4262000902565b5b62000a78565b62000a5884848460016200093b565b9250905081840481111562000a725762000a7162000902565b5b81810290505b9392505050565b5f62000a8b8262000521565b915062000a988362000521565b925062000ac77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000995565b905092915050565b5f62000adb8262000521565b915062000ae88362000521565b925082820262000af88162000521565b9150828204841483151762000b125762000b1162000902565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000b448262000b19565b9050919050565b62000b568162000b38565b82525050565b5f60208201905062000b715f83018462000b4b565b92915050565b5f62000b838262000521565b915062000b908362000521565b925082820190508082111562000bab5762000baa62000902565b5b92915050565b62000bbc8162000521565b82525050565b5f60608201905062000bd75f83018662000b4b565b62000be6602083018562000bb1565b62000bf5604083018462000bb1565b949350505050565b5f60208201905062000c125f83018462000bb1565b92915050565b6112ed8062000c265f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a082311461018e5780637641e6f3146101be57806377097fc8146101da57806395d89b41146101f6578063a9059cbb14610214578063dd62ed3e14610244576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce56714610152578063384f58eb14610170575b5f80fd5b6100be610274565b6040516100cb9190610d2f565b60405180910390f35b6100ee60048036038101906100e99190610ded565b610304565b6040516100fb9190610e45565b60405180910390f35b61010c610326565b6040516101199190610e6d565b60405180910390f35b61013c60048036038101906101379190610e86565b61032f565b6040516101499190610e45565b60405180910390f35b61015a61035d565b6040516101679190610ef1565b60405180910390f35b610178610365565b6040516101859190610f19565b60405180910390f35b6101a860048036038101906101a39190610f32565b61038a565b6040516101b59190610e6d565b60405180910390f35b6101d860048036038101906101d39190611089565b6103cf565b005b6101f460048036038101906101ef9190611089565b610418565b005b6101fe6104f0565b60405161020b9190610d2f565b60405180910390f35b61022e60048036038101906102299190610ded565b610580565b60405161023b9190610e45565b60405180910390f35b61025e600480360381019061025991906110e3565b6105a2565b60405161026b9190610e6d565b60405180910390f35b6060600380546102839061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546102af9061114e565b80156102fa5780601f106102d1576101008083540402835291602001916102fa565b820191905f5260205f20905b8154815290600101906020018083116102dd57829003601f168201915b5050505050905090565b5f8061030e610624565b905061031b81858561062b565b600191505092915050565b5f600254905090565b5f80610339610624565b905061034685828561063d565b6103518585856106cf565b60019150509392505050565b5f6012905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6103d933836107bf565b7fa2adbf87ee4d718ce6d41843e4166790b7310efca2697b4e19707d08e023586c33838360405161040c9392919061117e565b60405180910390a15050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049e90611204565b60405180910390fd5b6104b1338361083e565b7fb2a22f0db2747483a9a8a356bb99ae8e3551e6f4d570ae70670a03d40f2bcc363383836040516104e49392919061117e565b60405180910390a15050565b6060600480546104ff9061114e565b80601f016020809104026020016040519081016040528092919081815260200182805461052b9061114e565b80156105765780601f1061054d57610100808354040283529160200191610576565b820191905f5260205f20905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b5f8061058a610624565b90506105978185856106cf565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61063883838360016108bd565b505050565b5f61064884846105a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c957818110156106ba578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106b193929190611222565b60405180910390fd5b6106c884848484035f6108bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107369190610f19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107af575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107a69190610f19565b60405180910390fd5b6107ba838383610a8c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108269190610f19565b60405180910390fd5b61083a825f83610a8c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ae575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a59190610f19565b60405180910390fd5b6108b95f8383610a8c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361092d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109249190610f19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109949190610f19565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610a86578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7d9190610e6d565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc578060025f828254610ad09190611284565b92505081905550610baa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b65578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b5c93929190611222565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf1578060025f8282540392505081905550610c3b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c989190610e6d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610cdc578082015181840152602081019050610cc1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d0182610ca5565b610d0b8185610caf565b9350610d1b818560208601610cbf565b610d2481610ce7565b840191505092915050565b5f6020820190508181035f830152610d478184610cf7565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8982610d60565b9050919050565b610d9981610d7f565b8114610da3575f80fd5b50565b5f81359050610db481610d90565b92915050565b5f819050919050565b610dcc81610dba565b8114610dd6575f80fd5b50565b5f81359050610de781610dc3565b92915050565b5f8060408385031215610e0357610e02610d58565b5b5f610e1085828601610da6565b9250506020610e2185828601610dd9565b9150509250929050565b5f8115159050919050565b610e3f81610e2b565b82525050565b5f602082019050610e585f830184610e36565b92915050565b610e6781610dba565b82525050565b5f602082019050610e805f830184610e5e565b92915050565b5f805f60608486031215610e9d57610e9c610d58565b5b5f610eaa86828701610da6565b9350506020610ebb86828701610da6565b9250506040610ecc86828701610dd9565b9150509250925092565b5f60ff82169050919050565b610eeb81610ed6565b82525050565b5f602082019050610f045f830184610ee2565b92915050565b610f1381610d7f565b82525050565b5f602082019050610f2c5f830184610f0a565b92915050565b5f60208284031215610f4757610f46610d58565b5b5f610f5484828501610da6565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f9b82610ce7565b810181811067ffffffffffffffff82111715610fba57610fb9610f65565b5b80604052505050565b5f610fcc610d4f565b9050610fd88282610f92565b919050565b5f67ffffffffffffffff821115610ff757610ff6610f65565b5b61100082610ce7565b9050602081019050919050565b828183375f83830152505050565b5f61102d61102884610fdd565b610fc3565b90508281526020810184848401111561104957611048610f61565b5b61105484828561100d565b509392505050565b5f82601f8301126110705761106f610f5d565b5b813561108084826020860161101b565b91505092915050565b5f806040838503121561109f5761109e610d58565b5b5f6110ac85828601610dd9565b925050602083013567ffffffffffffffff8111156110cd576110cc610d5c565b5b6110d98582860161105c565b9150509250929050565b5f80604083850312156110f9576110f8610d58565b5b5f61110685828601610da6565b925050602061111785828601610da6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116557607f821691505b60208210810361117857611177611121565b5b50919050565b5f6060820190506111915f830186610f0a565b61119e6020830185610e5e565b81810360408301526111b08184610cf7565b9050949350505050565b7f4f6e6c7920636f6e74726163744f776e657200000000000000000000000000005f82015250565b5f6111ee601283610caf565b91506111f9826111ba565b602082019050919050565b5f6020820190508181035f83015261121b816111e2565b9050919050565b5f6060820190506112355f830186610f0a565b6112426020830185610e5e565b61124f6040830184610e5e565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61128e82610dba565b915061129983610dba565b92508282019050808211156112b1576112b0611257565b5b9291505056fea2646970667358221220f74289e7e13732f63f84b5135eba27d6155460b949e9b3ee6778907257bb978864736f6c63430008160033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000000156d65736f6e2e6e6574776f726b2d746573746e6574000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d534e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a082311461018e5780637641e6f3146101be57806377097fc8146101da57806395d89b41146101f6578063a9059cbb14610214578063dd62ed3e14610244576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce56714610152578063384f58eb14610170575b5f80fd5b6100be610274565b6040516100cb9190610d2f565b60405180910390f35b6100ee60048036038101906100e99190610ded565b610304565b6040516100fb9190610e45565b60405180910390f35b61010c610326565b6040516101199190610e6d565b60405180910390f35b61013c60048036038101906101379190610e86565b61032f565b6040516101499190610e45565b60405180910390f35b61015a61035d565b6040516101679190610ef1565b60405180910390f35b610178610365565b6040516101859190610f19565b60405180910390f35b6101a860048036038101906101a39190610f32565b61038a565b6040516101b59190610e6d565b60405180910390f35b6101d860048036038101906101d39190611089565b6103cf565b005b6101f460048036038101906101ef9190611089565b610418565b005b6101fe6104f0565b60405161020b9190610d2f565b60405180910390f35b61022e60048036038101906102299190610ded565b610580565b60405161023b9190610e45565b60405180910390f35b61025e600480360381019061025991906110e3565b6105a2565b60405161026b9190610e6d565b60405180910390f35b6060600380546102839061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546102af9061114e565b80156102fa5780601f106102d1576101008083540402835291602001916102fa565b820191905f5260205f20905b8154815290600101906020018083116102dd57829003601f168201915b5050505050905090565b5f8061030e610624565b905061031b81858561062b565b600191505092915050565b5f600254905090565b5f80610339610624565b905061034685828561063d565b6103518585856106cf565b60019150509392505050565b5f6012905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6103d933836107bf565b7fa2adbf87ee4d718ce6d41843e4166790b7310efca2697b4e19707d08e023586c33838360405161040c9392919061117e565b60405180910390a15050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049e90611204565b60405180910390fd5b6104b1338361083e565b7fb2a22f0db2747483a9a8a356bb99ae8e3551e6f4d570ae70670a03d40f2bcc363383836040516104e49392919061117e565b60405180910390a15050565b6060600480546104ff9061114e565b80601f016020809104026020016040519081016040528092919081815260200182805461052b9061114e565b80156105765780601f1061054d57610100808354040283529160200191610576565b820191905f5260205f20905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b5f8061058a610624565b90506105978185856106cf565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61063883838360016108bd565b505050565b5f61064884846105a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106c957818110156106ba578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106b193929190611222565b60405180910390fd5b6106c884848484035f6108bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107369190610f19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107af575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107a69190610f19565b60405180910390fd5b6107ba838383610a8c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108269190610f19565b60405180910390fd5b61083a825f83610a8c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ae575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108a59190610f19565b60405180910390fd5b6108b95f8383610a8c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361092d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109249190610f19565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109949190610f19565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610a86578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a7d9190610e6d565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc578060025f828254610ad09190611284565b92505081905550610baa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b65578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b5c93929190611222565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf1578060025f8282540392505081905550610c3b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c989190610e6d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610cdc578082015181840152602081019050610cc1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d0182610ca5565b610d0b8185610caf565b9350610d1b818560208601610cbf565b610d2481610ce7565b840191505092915050565b5f6020820190508181035f830152610d478184610cf7565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d8982610d60565b9050919050565b610d9981610d7f565b8114610da3575f80fd5b50565b5f81359050610db481610d90565b92915050565b5f819050919050565b610dcc81610dba565b8114610dd6575f80fd5b50565b5f81359050610de781610dc3565b92915050565b5f8060408385031215610e0357610e02610d58565b5b5f610e1085828601610da6565b9250506020610e2185828601610dd9565b9150509250929050565b5f8115159050919050565b610e3f81610e2b565b82525050565b5f602082019050610e585f830184610e36565b92915050565b610e6781610dba565b82525050565b5f602082019050610e805f830184610e5e565b92915050565b5f805f60608486031215610e9d57610e9c610d58565b5b5f610eaa86828701610da6565b9350506020610ebb86828701610da6565b9250506040610ecc86828701610dd9565b9150509250925092565b5f60ff82169050919050565b610eeb81610ed6565b82525050565b5f602082019050610f045f830184610ee2565b92915050565b610f1381610d7f565b82525050565b5f602082019050610f2c5f830184610f0a565b92915050565b5f60208284031215610f4757610f46610d58565b5b5f610f5484828501610da6565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f9b82610ce7565b810181811067ffffffffffffffff82111715610fba57610fb9610f65565b5b80604052505050565b5f610fcc610d4f565b9050610fd88282610f92565b919050565b5f67ffffffffffffffff821115610ff757610ff6610f65565b5b61100082610ce7565b9050602081019050919050565b828183375f83830152505050565b5f61102d61102884610fdd565b610fc3565b90508281526020810184848401111561104957611048610f61565b5b61105484828561100d565b509392505050565b5f82601f8301126110705761106f610f5d565b5b813561108084826020860161101b565b91505092915050565b5f806040838503121561109f5761109e610d58565b5b5f6110ac85828601610dd9565b925050602083013567ffffffffffffffff8111156110cd576110cc610d5c565b5b6110d98582860161105c565b9150509250929050565b5f80604083850312156110f9576110f8610d58565b5b5f61110685828601610da6565b925050602061111785828601610da6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116557607f821691505b60208210810361117857611177611121565b5b50919050565b5f6060820190506111915f830186610f0a565b61119e6020830185610e5e565b81810360408301526111b08184610cf7565b9050949350505050565b7f4f6e6c7920636f6e74726163744f776e657200000000000000000000000000005f82015250565b5f6111ee601283610caf565b91506111f9826111ba565b602082019050919050565b5f6020820190508181035f83015261121b816111e2565b9050919050565b5f6060820190506112355f830186610f0a565b6112426020830185610e5e565b61124f6040830184610e5e565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61128e82610dba565b915061129983610dba565b92508282019050808211156112b1576112b0611257565b5b9291505056fea2646970667358221220f74289e7e13732f63f84b5135eba27d6155460b949e9b3ee6778907257bb978864736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000000156d65736f6e2e6e6574776f726b2d746573746e6574000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d534e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): meson.network-testnet
Arg [1] : symbol (string): MSN
Arg [2] : ini_supply (uint256): 10000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 6d65736f6e2e6e6574776f726b2d746573746e65740000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d534e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22581:1072:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15483:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14292:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16251:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14143:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22610:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14454:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23501:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23261:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13400:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14777:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15022:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13190:91;13235:13;13268:5;13261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;:::o;15483:190::-;15556:4;15573:13;15589:12;:10;:12::i;:::-;15573:28;;15612:31;15621:5;15628:7;15637:5;15612:8;:31::i;:::-;15661:4;15654:11;;;15483:190;;;;:::o;14292:99::-;14344:7;14371:12;;14364:19;;14292:99;:::o;16251:249::-;16338:4;16355:15;16373:12;:10;:12::i;:::-;16355:30;;16396:37;16412:4;16418:7;16427:5;16396:15;:37::i;:::-;16444:26;16454:4;16460:2;16464:5;16444:9;:26::i;:::-;16488:4;16481:11;;;16251:249;;;;;:::o;14143:84::-;14192:5;14217:2;14210:9;;14143:84;:::o;22610:29::-;;;;;;;;;;;;;:::o;14454:118::-;14519:7;14546:9;:18;14556:7;14546:18;;;;;;;;;;;;;;;;14539:25;;14454:118;;;:::o;23501:149::-;23568:25;23574:10;23586:6;23568:5;:25::i;:::-;23609:33;23618:10;23630:6;23638:3;23609:33;;;;;;;;:::i;:::-;;;;;;;;23501:149;;:::o;23261:167::-;22708:14;;;;;;;;;;;22694:28;;:10;:28;;;22686:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;23346:25:::1;23352:10;23364:6;23346:5;:25::i;:::-;23387:33;23396:10;23408:6;23416:3;23387:33;;;;;;;;:::i;:::-;;;;;;;;23261:167:::0;;:::o;13400:95::-;13447:13;13480:7;13473:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13400:95;:::o;14777:182::-;14846:4;14863:13;14879:12;:10;:12::i;:::-;14863:28;;14902:27;14912:5;14919:2;14923:5;14902:9;:27::i;:::-;14947:4;14940:11;;;14777:182;;;;:::o;15022:142::-;15102:7;15129:11;:18;15141:5;15129:18;;;;;;;;;;;;;;;:27;15148:7;15129:27;;;;;;;;;;;;;;;;15122:34;;15022:142;;;;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;20310:130::-;20395:37;20404:5;20411:7;20420:5;20427:4;20395:8;:37::i;:::-;20310:130;;;:::o;22026:487::-;22126:24;22153:25;22163:5;22170:7;22153:9;:25::i;:::-;22126:52;;22213:17;22193:16;:37;22189:317;;22270:5;22251:16;:24;22247:132;;;22330:7;22339:16;22357:5;22303:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22247:132;22422:57;22431:5;22438:7;22466:5;22447:16;:24;22473:5;22422:8;:57::i;:::-;22189:317;22115:398;22026:487;;;:::o;16885:308::-;16985:1;16969:18;;:4;:18;;;16965:88;;17038:1;17011:30;;;;;;;;;;;:::i;:::-;;;;;;;;16965:88;17081:1;17067:16;;:2;:16;;;17063:88;;17136:1;17107:32;;;;;;;;;;;:::i;:::-;;;;;;;;17063:88;17161:24;17169:4;17175:2;17179:5;17161:7;:24::i;:::-;16885:308;;;:::o;19546:211::-;19636:1;19617:21;;:7;:21;;;19613:91;;19689:1;19662:30;;;;;;;;;;;:::i;:::-;;;;;;;;19613:91;19714:35;19722:7;19739:1;19743:5;19714:7;:35::i;:::-;19546:211;;:::o;19005:213::-;19095:1;19076:21;;:7;:21;;;19072:93;;19150:1;19121:32;;;;;;;;;;;:::i;:::-;;;;;;;;19072:93;19175:35;19191:1;19195:7;19204:5;19175:7;:35::i;:::-;19005:213;;:::o;21291:443::-;21421:1;21404:19;;:5;:19;;;21400:91;;21476:1;21447:32;;;;;;;;;;;:::i;:::-;;;;;;;;21400:91;21524:1;21505:21;;:7;:21;;;21501:92;;21578:1;21550:31;;;;;;;;;;;:::i;:::-;;;;;;;;21501:92;21633:5;21603:11;:18;21615:5;21603:18;;;;;;;;;;;;;;;:27;21622:7;21603:27;;;;;;;;;;;;;;;:35;;;;21653:9;21649:78;;;21700:7;21684:31;;21693:5;21684:31;;;21709:5;21684:31;;;;;;:::i;:::-;;;;;;;;21649:78;21291:443;;;;:::o;17517:1135::-;17623:1;17607:18;;:4;:18;;;17603:552;;17761:5;17745:12;;:21;;;;;;;:::i;:::-;;;;;;;;17603:552;;;17799:19;17821:9;:15;17831:4;17821:15;;;;;;;;;;;;;;;;17799:37;;17869:5;17855:11;:19;17851:117;;;17927:4;17933:11;17946:5;17902:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17851:117;18123:5;18109:11;:19;18091:9;:15;18101:4;18091:15;;;;;;;;;;;;;;;:37;;;;17784:371;17603:552;18185:1;18171:16;;:2;:16;;;18167:435;;18353:5;18337:12;;:21;;;;;;;;;;;18167:435;;;18570:5;18553:9;:13;18563:2;18553:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18167:435;18634:2;18619:25;;18628:4;18619:25;;;18638:5;18619:25;;;;;;:::i;:::-;;;;;;;;17517:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:117;5772:1;5769;5762:12;5786:180;5834:77;5831:1;5824:88;5931:4;5928:1;5921:15;5955:4;5952:1;5945:15;5972:281;6055:27;6077:4;6055:27;:::i;:::-;6047:6;6043:40;6185:6;6173:10;6170:22;6149:18;6137:10;6134:34;6131:62;6128:88;;;6196:18;;:::i;:::-;6128:88;6236:10;6232:2;6225:22;6015:238;5972:281;;:::o;6259:129::-;6293:6;6320:20;;:::i;:::-;6310:30;;6349:33;6377:4;6369:6;6349:33;:::i;:::-;6259:129;;;:::o;6394:308::-;6456:4;6546:18;6538:6;6535:30;6532:56;;;6568:18;;:::i;:::-;6532:56;6606:29;6628:6;6606:29;:::i;:::-;6598:37;;6690:4;6684;6680:15;6672:23;;6394:308;;;:::o;6708:146::-;6805:6;6800:3;6795;6782:30;6846:1;6837:6;6832:3;6828:16;6821:27;6708:146;;;:::o;6860:425::-;6938:5;6963:66;6979:49;7021:6;6979:49;:::i;:::-;6963:66;:::i;:::-;6954:75;;7052:6;7045:5;7038:21;7090:4;7083:5;7079:16;7128:3;7119:6;7114:3;7110:16;7107:25;7104:112;;;7135:79;;:::i;:::-;7104:112;7225:54;7272:6;7267:3;7262;7225:54;:::i;:::-;6944:341;6860:425;;;;;:::o;7305:340::-;7361:5;7410:3;7403:4;7395:6;7391:17;7387:27;7377:122;;7418:79;;:::i;:::-;7377:122;7535:6;7522:20;7560:79;7635:3;7627:6;7620:4;7612:6;7608:17;7560:79;:::i;:::-;7551:88;;7367:278;7305:340;;;;:::o;7651:654::-;7729:6;7737;7786:2;7774:9;7765:7;7761:23;7757:32;7754:119;;;7792:79;;:::i;:::-;7754:119;7912:1;7937:53;7982:7;7973:6;7962:9;7958:22;7937:53;:::i;:::-;7927:63;;7883:117;8067:2;8056:9;8052:18;8039:32;8098:18;8090:6;8087:30;8084:117;;;8120:79;;:::i;:::-;8084:117;8225:63;8280:7;8271:6;8260:9;8256:22;8225:63;:::i;:::-;8215:73;;8010:288;7651:654;;;;;:::o;8311:474::-;8379:6;8387;8436:2;8424:9;8415:7;8411:23;8407:32;8404:119;;;8442:79;;:::i;:::-;8404:119;8562:1;8587:53;8632:7;8623:6;8612:9;8608:22;8587:53;:::i;:::-;8577:63;;8533:117;8689:2;8715:53;8760:7;8751:6;8740:9;8736:22;8715:53;:::i;:::-;8705:63;;8660:118;8311:474;;;;;:::o;8791:180::-;8839:77;8836:1;8829:88;8936:4;8933:1;8926:15;8960:4;8957:1;8950:15;8977:320;9021:6;9058:1;9052:4;9048:12;9038:22;;9105:1;9099:4;9095:12;9126:18;9116:81;;9182:4;9174:6;9170:17;9160:27;;9116:81;9244:2;9236:6;9233:14;9213:18;9210:38;9207:84;;9263:18;;:::i;:::-;9207:84;9028:269;8977:320;;;:::o;9303:533::-;9472:4;9510:2;9499:9;9495:18;9487:26;;9523:71;9591:1;9580:9;9576:17;9567:6;9523:71;:::i;:::-;9604:72;9672:2;9661:9;9657:18;9648:6;9604:72;:::i;:::-;9723:9;9717:4;9713:20;9708:2;9697:9;9693:18;9686:48;9751:78;9824:4;9815:6;9751:78;:::i;:::-;9743:86;;9303:533;;;;;;:::o;9842:168::-;9982:20;9978:1;9970:6;9966:14;9959:44;9842:168;:::o;10016:366::-;10158:3;10179:67;10243:2;10238:3;10179:67;:::i;:::-;10172:74;;10255:93;10344:3;10255:93;:::i;:::-;10373:2;10368:3;10364:12;10357:19;;10016:366;;;:::o;10388:419::-;10554:4;10592:2;10581:9;10577:18;10569:26;;10641:9;10635:4;10631:20;10627:1;10616:9;10612:17;10605:47;10669:131;10795:4;10669:131;:::i;:::-;10661:139;;10388:419;;;:::o;10813:442::-;10962:4;11000:2;10989:9;10985:18;10977:26;;11013:71;11081:1;11070:9;11066:17;11057:6;11013:71;:::i;:::-;11094:72;11162:2;11151:9;11147:18;11138:6;11094:72;:::i;:::-;11176;11244:2;11233:9;11229:18;11220:6;11176:72;:::i;:::-;10813:442;;;;;;:::o;11261:180::-;11309:77;11306:1;11299:88;11406:4;11403:1;11396:15;11430:4;11427:1;11420:15;11447:191;11487:3;11506:20;11524:1;11506:20;:::i;:::-;11501:25;;11540:20;11558:1;11540:20;:::i;:::-;11535:25;;11583:1;11580;11576:9;11569:16;;11604:3;11601:1;11598:10;11595:36;;;11611:18;;:::i;:::-;11595:36;11447:191;;;;:::o

Swarm Source

ipfs://f74289e7e13732f63f84b5135eba27d6155460b949e9b3ee6778907257bb9788
[ 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.