ETH Price: $3,363.64 (-1.55%)
Gas: 6 Gwei

Token

MARS4 (MARS4)
 

Overview

Max Total Supply

4,000,000,000 MARS4

Holders

10,662 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-0.47%)

Onchain Market Cap

$3,753,480.00

Circulating Supply Market Cap

$3,752,338.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 MARS4

Value
$0.09 ( ~2.67567182470349E-05 Eth) [0.0000%]
0x04F92d566805aD7f95e32A7464c29C73321a44Ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mars4 - centered ecosystem where you can explore a virtual Mars Metaverse, own and customize your land property with MARS4 dollars and even reap the rewards of the world's first revenue-generating NFT.

Market

Volume (24H):$100,702.00
Market Capitalization:$3,752,338.00
Circulating Supply:4,000,000,000.00 MARS4
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mars4ERC20

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2021-09-28
*/

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



pragma solidity ^0.8.0;

/**
 * @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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

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



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/Mars4ERC20.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;


contract Mars4ERC20 is ERC20("MARS4", "MARS4") {
    constructor() {
        _mint(msg.sender, 4_000_000_000 ether);
    }

    function burn(uint256 amount) public virtual returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }
}

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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f4d415253340000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4152533400000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000259565b508060049080519060200190620000af92919062000259565b505050620000d0336b0cecb8f27f4200f3a0000000620000d660201b60201c565b620004b5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001409062000341565b60405180910390fd5b6200015d600083836200024f60201b60201c565b806002600082825462000171919062000391565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c8919062000391565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022f919062000363565b60405180910390a36200024b600083836200025460201b60201c565b5050565b505050565b505050565b8280546200026790620003f8565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600062000318601f8362000380565b915062000325826200048c565b602082019050919050565b6200033b81620003ee565b82525050565b600060208201905081810360008301526200035c8162000309565b9050919050565b60006020820190506200037a600083018462000330565b92915050565b600082825260208201905092915050565b60006200039e82620003ee565b9150620003ab83620003ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003e357620003e26200042e565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200041157607f821691505b602082108114156200042857620004276200045d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61174480620004c56000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101d357806395d89b4114610203578063a457c2d714610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce91906110d2565b60405180910390f35b6100f160048036038101906100ec9190610eb1565b610343565b6040516100fe91906110b7565b60405180910390f35b61010f610361565b60405161011c9190611214565b60405180910390f35b61013f600480360381019061013a9190610e62565b61036b565b60405161014c91906110b7565b60405180910390f35b61015d610463565b60405161016a919061122f565b60405180910390f35b61018d60048036038101906101889190610eb1565b61046c565b60405161019a91906110b7565b60405180910390f35b6101bd60048036038101906101b89190610eed565b610518565b6040516101ca91906110b7565b60405180910390f35b6101ed60048036038101906101e89190610dfd565b610534565b6040516101fa9190611214565b60405180910390f35b61020b61057c565b60405161021891906110d2565b60405180910390f35b61023b60048036038101906102369190610eb1565b61060e565b60405161024891906110b7565b60405180910390f35b61026b60048036038101906102669190610eb1565b6106f9565b60405161027891906110b7565b60405180910390f35b61029b60048036038101906102969190610e26565b610717565b6040516102a89190611214565b60405180910390f35b6060600380546102c090611378565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90611378565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600061035761035061079e565b84846107a6565b6001905092915050565b6000600254905090565b6000610378848484610971565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c361079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a90611174565b60405180910390fd5b6104578561044f61079e565b8584036107a6565b60019150509392505050565b60006012905090565b600061050e61047961079e565b84846001600061048761079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105099190611266565b6107a6565b6001905092915050565b600061052b61052561079e565b83610bf2565b60019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461058b90611378565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790611378565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b6000806001600061061d61079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d1906111f4565b60405180910390fd5b6106ee6106e561079e565b858584036107a6565b600191505092915050565b600061070d61070661079e565b8484610971565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906111d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90611134565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109649190611214565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d8906111b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a48906110f4565b60405180910390fd5b610a5c838383610dc9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990611154565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b759190611266565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd99190611214565b60405180910390a3610bec848484610dce565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611194565b60405180910390fd5b610c6e82600083610dc9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90611114565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d4b91906112bc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db09190611214565b60405180910390a3610dc483600084610dce565b505050565b505050565b505050565b600081359050610de2816116e0565b92915050565b600081359050610df7816116f7565b92915050565b600060208284031215610e0f57600080fd5b6000610e1d84828501610dd3565b91505092915050565b60008060408385031215610e3957600080fd5b6000610e4785828601610dd3565b9250506020610e5885828601610dd3565b9150509250929050565b600080600060608486031215610e7757600080fd5b6000610e8586828701610dd3565b9350506020610e9686828701610dd3565b9250506040610ea786828701610de8565b9150509250925092565b60008060408385031215610ec457600080fd5b6000610ed285828601610dd3565b9250506020610ee385828601610de8565b9150509250929050565b600060208284031215610eff57600080fd5b6000610f0d84828501610de8565b91505092915050565b610f1f81611302565b82525050565b6000610f308261124a565b610f3a8185611255565b9350610f4a818560208601611345565b610f5381611408565b840191505092915050565b6000610f6b602383611255565b9150610f7682611419565b604082019050919050565b6000610f8e602283611255565b9150610f9982611468565b604082019050919050565b6000610fb1602283611255565b9150610fbc826114b7565b604082019050919050565b6000610fd4602683611255565b9150610fdf82611506565b604082019050919050565b6000610ff7602883611255565b915061100282611555565b604082019050919050565b600061101a602183611255565b9150611025826115a4565b604082019050919050565b600061103d602583611255565b9150611048826115f3565b604082019050919050565b6000611060602483611255565b915061106b82611642565b604082019050919050565b6000611083602583611255565b915061108e82611691565b604082019050919050565b6110a28161132e565b82525050565b6110b181611338565b82525050565b60006020820190506110cc6000830184610f16565b92915050565b600060208201905081810360008301526110ec8184610f25565b905092915050565b6000602082019050818103600083015261110d81610f5e565b9050919050565b6000602082019050818103600083015261112d81610f81565b9050919050565b6000602082019050818103600083015261114d81610fa4565b9050919050565b6000602082019050818103600083015261116d81610fc7565b9050919050565b6000602082019050818103600083015261118d81610fea565b9050919050565b600060208201905081810360008301526111ad8161100d565b9050919050565b600060208201905081810360008301526111cd81611030565b9050919050565b600060208201905081810360008301526111ed81611053565b9050919050565b6000602082019050818103600083015261120d81611076565b9050919050565b60006020820190506112296000830184611099565b92915050565b600060208201905061124460008301846110a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60006112718261132e565b915061127c8361132e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b1576112b06113aa565b5b828201905092915050565b60006112c78261132e565b91506112d28361132e565b9250828210156112e5576112e46113aa565b5b828203905092915050565b60006112fb8261130e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611363578082015181840152602081019050611348565b83811115611372576000848401525b50505050565b6000600282049050600182168061139057607f821691505b602082108114156113a4576113a36113d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6116e9816112f0565b81146116f457600080fd5b50565b6117008161132e565b811461170b57600080fd5b5056fea2646970667358221220767df522e0afc0ec9b1dd755658591fc8070f7fbbf38a31579f27e7eaae00f7b64736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101d357806395d89b4114610203578063a457c2d714610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce91906110d2565b60405180910390f35b6100f160048036038101906100ec9190610eb1565b610343565b6040516100fe91906110b7565b60405180910390f35b61010f610361565b60405161011c9190611214565b60405180910390f35b61013f600480360381019061013a9190610e62565b61036b565b60405161014c91906110b7565b60405180910390f35b61015d610463565b60405161016a919061122f565b60405180910390f35b61018d60048036038101906101889190610eb1565b61046c565b60405161019a91906110b7565b60405180910390f35b6101bd60048036038101906101b89190610eed565b610518565b6040516101ca91906110b7565b60405180910390f35b6101ed60048036038101906101e89190610dfd565b610534565b6040516101fa9190611214565b60405180910390f35b61020b61057c565b60405161021891906110d2565b60405180910390f35b61023b60048036038101906102369190610eb1565b61060e565b60405161024891906110b7565b60405180910390f35b61026b60048036038101906102669190610eb1565b6106f9565b60405161027891906110b7565b60405180910390f35b61029b60048036038101906102969190610e26565b610717565b6040516102a89190611214565b60405180910390f35b6060600380546102c090611378565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90611378565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600061035761035061079e565b84846107a6565b6001905092915050565b6000600254905090565b6000610378848484610971565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c361079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a90611174565b60405180910390fd5b6104578561044f61079e565b8584036107a6565b60019150509392505050565b60006012905090565b600061050e61047961079e565b84846001600061048761079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105099190611266565b6107a6565b6001905092915050565b600061052b61052561079e565b83610bf2565b60019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461058b90611378565b80601f01602080910402602001604051908101604052809291908181526020018280546105b790611378565b80156106045780601f106105d957610100808354040283529160200191610604565b820191906000526020600020905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b6000806001600061061d61079e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d1906111f4565b60405180910390fd5b6106ee6106e561079e565b858584036107a6565b600191505092915050565b600061070d61070661079e565b8484610971565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906111d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90611134565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109649190611214565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d8906111b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a48906110f4565b60405180910390fd5b610a5c838383610dc9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990611154565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b759190611266565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd99190611214565b60405180910390a3610bec848484610dce565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611194565b60405180910390fd5b610c6e82600083610dc9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90611114565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d4b91906112bc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db09190611214565b60405180910390a3610dc483600084610dce565b505050565b505050565b505050565b600081359050610de2816116e0565b92915050565b600081359050610df7816116f7565b92915050565b600060208284031215610e0f57600080fd5b6000610e1d84828501610dd3565b91505092915050565b60008060408385031215610e3957600080fd5b6000610e4785828601610dd3565b9250506020610e5885828601610dd3565b9150509250929050565b600080600060608486031215610e7757600080fd5b6000610e8586828701610dd3565b9350506020610e9686828701610dd3565b9250506040610ea786828701610de8565b9150509250925092565b60008060408385031215610ec457600080fd5b6000610ed285828601610dd3565b9250506020610ee385828601610de8565b9150509250929050565b600060208284031215610eff57600080fd5b6000610f0d84828501610de8565b91505092915050565b610f1f81611302565b82525050565b6000610f308261124a565b610f3a8185611255565b9350610f4a818560208601611345565b610f5381611408565b840191505092915050565b6000610f6b602383611255565b9150610f7682611419565b604082019050919050565b6000610f8e602283611255565b9150610f9982611468565b604082019050919050565b6000610fb1602283611255565b9150610fbc826114b7565b604082019050919050565b6000610fd4602683611255565b9150610fdf82611506565b604082019050919050565b6000610ff7602883611255565b915061100282611555565b604082019050919050565b600061101a602183611255565b9150611025826115a4565b604082019050919050565b600061103d602583611255565b9150611048826115f3565b604082019050919050565b6000611060602483611255565b915061106b82611642565b604082019050919050565b6000611083602583611255565b915061108e82611691565b604082019050919050565b6110a28161132e565b82525050565b6110b181611338565b82525050565b60006020820190506110cc6000830184610f16565b92915050565b600060208201905081810360008301526110ec8184610f25565b905092915050565b6000602082019050818103600083015261110d81610f5e565b9050919050565b6000602082019050818103600083015261112d81610f81565b9050919050565b6000602082019050818103600083015261114d81610fa4565b9050919050565b6000602082019050818103600083015261116d81610fc7565b9050919050565b6000602082019050818103600083015261118d81610fea565b9050919050565b600060208201905081810360008301526111ad8161100d565b9050919050565b600060208201905081810360008301526111cd81611030565b9050919050565b600060208201905081810360008301526111ed81611053565b9050919050565b6000602082019050818103600083015261120d81611076565b9050919050565b60006020820190506112296000830184611099565b92915050565b600060208201905061124460008301846110a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60006112718261132e565b915061127c8361132e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b1576112b06113aa565b5b828201905092915050565b60006112c78261132e565b91506112d28361132e565b9250828210156112e5576112e46113aa565b5b828203905092915050565b60006112fb8261130e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611363578082015181840152602081019050611348565b83811115611372576000848401525b50505050565b6000600282049050600182168061139057607f821691505b602082108114156113a4576113a36113d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6116e9816112f0565b81146116f457600080fd5b50565b6117008161132e565b811461170b57600080fd5b5056fea2646970667358221220767df522e0afc0ec9b1dd755658591fc8070f7fbbf38a31579f27e7eaae00f7b64736f6c63430008020033

Deployed Bytecode Sourcemap

16475:264:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6410:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8577:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7530:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9228:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7372:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10129:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16608:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7701:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6629:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10847:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8041:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8279:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6410:100;6464:13;6497:5;6490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6410:100;:::o;8577:169::-;8660:4;8677:39;8686:12;:10;:12::i;:::-;8700:7;8709:6;8677:8;:39::i;:::-;8734:4;8727:11;;8577:169;;;;:::o;7530:108::-;7591:7;7618:12;;7611:19;;7530:108;:::o;9228:492::-;9368:4;9385:36;9395:6;9403:9;9414:6;9385:9;:36::i;:::-;9434:24;9461:11;:19;9473:6;9461:19;;;;;;;;;;;;;;;:33;9481:12;:10;:12::i;:::-;9461:33;;;;;;;;;;;;;;;;9434:60;;9533:6;9513:16;:26;;9505:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9620:57;9629:6;9637:12;:10;:12::i;:::-;9670:6;9651:16;:25;9620:8;:57::i;:::-;9708:4;9701:11;;;9228:492;;;;;:::o;7372:93::-;7430:5;7455:2;7448:9;;7372:93;:::o;10129:215::-;10217:4;10234:80;10243:12;:10;:12::i;:::-;10257:7;10303:10;10266:11;:25;10278:12;:10;:12::i;:::-;10266:25;;;;;;;;;;;;;;;:34;10292:7;10266:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10234:8;:80::i;:::-;10332:4;10325:11;;10129:215;;;;:::o;16608:128::-;16662:4;16679:27;16685:12;:10;:12::i;:::-;16699:6;16679:5;:27::i;:::-;16724:4;16717:11;;16608:128;;;:::o;7701:127::-;7775:7;7802:9;:18;7812:7;7802:18;;;;;;;;;;;;;;;;7795:25;;7701:127;;;:::o;6629:104::-;6685:13;6718:7;6711:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6629:104;:::o;10847:413::-;10940:4;10957:24;10984:11;:25;10996:12;:10;:12::i;:::-;10984:25;;;;;;;;;;;;;;;:34;11010:7;10984:34;;;;;;;;;;;;;;;;10957:61;;11057:15;11037:16;:35;;11029:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11150:67;11159:12;:10;:12::i;:::-;11173:7;11201:15;11182:16;:34;11150:8;:67::i;:::-;11248:4;11241:11;;;10847:413;;;;:::o;8041:175::-;8127:4;8144:42;8154:12;:10;:12::i;:::-;8168:9;8179:6;8144:9;:42::i;:::-;8204:4;8197:11;;8041:175;;;;:::o;8279:151::-;8368:7;8395:11;:18;8407:5;8395:18;;;;;;;;;;;;;;;:27;8414:7;8395:27;;;;;;;;;;;;;;;;8388:34;;8279:151;;;;:::o;625:98::-;678:7;705:10;698:17;;625:98;:::o;14531:380::-;14684:1;14667:19;;:5;:19;;;;14659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14765:1;14746:21;;:7;:21;;;;14738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14849:6;14819:11;:18;14831:5;14819:18;;;;;;;;;;;;;;;:27;14838:7;14819:27;;;;;;;;;;;;;;;:36;;;;14887:7;14871:32;;14880:5;14871:32;;;14896:6;14871:32;;;;;;:::i;:::-;;;;;;;;14531:380;;;:::o;11750:733::-;11908:1;11890:20;;:6;:20;;;;11882:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11992:1;11971:23;;:9;:23;;;;11963:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12047:47;12068:6;12076:9;12087:6;12047:20;:47::i;:::-;12107:21;12131:9;:17;12141:6;12131:17;;;;;;;;;;;;;;;;12107:41;;12184:6;12167:13;:23;;12159:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12305:6;12289:13;:22;12269:9;:17;12279:6;12269:17;;;;;;;;;;;;;;;:42;;;;12357:6;12333:9;:20;12343:9;12333:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12398:9;12381:35;;12390:6;12381:35;;;12409:6;12381:35;;;;;;:::i;:::-;;;;;;;;12429:46;12449:6;12457:9;12468:6;12429:19;:46::i;:::-;11750:733;;;;:::o;13502:591::-;13605:1;13586:21;;:7;:21;;;;13578:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13658:49;13679:7;13696:1;13700:6;13658:20;:49::i;:::-;13720:22;13745:9;:18;13755:7;13745:18;;;;;;;;;;;;;;;;13720:43;;13800:6;13782:14;:24;;13774:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13919:6;13902:14;:23;13881:9;:18;13891:7;13881:18;;;;;;;;;;;;;;;:44;;;;13963:6;13947:12;;:22;;;;;;;:::i;:::-;;;;;;;;14013:1;13987:37;;13996:7;13987:37;;;14017:6;13987:37;;;;;;:::i;:::-;;;;;;;;14037:48;14057:7;14074:1;14078:6;14037:19;:48::i;:::-;13502:591;;;:::o;15511:125::-;;;;:::o;16240:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:366::-;;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2848:220;;;:::o;3074:366::-;;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3220:220;;;:::o;3446:366::-;;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3592:220;;;:::o;3818:366::-;;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3964:220;;;:::o;4190:366::-;;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4336:220;;;:::o;4562:366::-;;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4708:220;;;:::o;4934:366::-;;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;5080:220;;;:::o;5306:366::-;;5469:67;5533:2;5528:3;5469:67;:::i;:::-;5462:74;;5545:93;5634:3;5545:93;:::i;:::-;5663:2;5658:3;5654:12;5647:19;;5452:220;;;:::o;5678:366::-;;5841:67;5905:2;5900:3;5841:67;:::i;:::-;5834:74;;5917:93;6006:3;5917:93;:::i;:::-;6035:2;6030:3;6026:12;6019:19;;5824:220;;;:::o;6050:118::-;6137:24;6155:5;6137:24;:::i;:::-;6132:3;6125:37;6115:53;;:::o;6174:112::-;6257:22;6273:5;6257:22;:::i;:::-;6252:3;6245:35;6235:51;;:::o;6292:210::-;;6417:2;6406:9;6402:18;6394:26;;6430:65;6492:1;6481:9;6477:17;6468:6;6430:65;:::i;:::-;6384:118;;;;:::o;6508:313::-;;6659:2;6648:9;6644:18;6636:26;;6708:9;6702:4;6698:20;6694:1;6683:9;6679:17;6672:47;6736:78;6809:4;6800:6;6736:78;:::i;:::-;6728:86;;6626:195;;;;:::o;6827:419::-;;7031:2;7020:9;7016:18;7008:26;;7080:9;7074:4;7070:20;7066:1;7055:9;7051:17;7044:47;7108:131;7234:4;7108:131;:::i;:::-;7100:139;;6998:248;;;:::o;7252:419::-;;7456:2;7445:9;7441:18;7433:26;;7505:9;7499:4;7495:20;7491:1;7480:9;7476:17;7469:47;7533:131;7659:4;7533:131;:::i;:::-;7525:139;;7423:248;;;:::o;7677:419::-;;7881:2;7870:9;7866:18;7858:26;;7930:9;7924:4;7920:20;7916:1;7905:9;7901:17;7894:47;7958:131;8084:4;7958:131;:::i;:::-;7950:139;;7848:248;;;:::o;8102:419::-;;8306:2;8295:9;8291:18;8283:26;;8355:9;8349:4;8345:20;8341:1;8330:9;8326:17;8319:47;8383:131;8509:4;8383:131;:::i;:::-;8375:139;;8273:248;;;:::o;8527:419::-;;8731:2;8720:9;8716:18;8708:26;;8780:9;8774:4;8770:20;8766:1;8755:9;8751:17;8744:47;8808:131;8934:4;8808:131;:::i;:::-;8800:139;;8698:248;;;:::o;8952:419::-;;9156:2;9145:9;9141:18;9133:26;;9205:9;9199:4;9195:20;9191:1;9180:9;9176:17;9169:47;9233:131;9359:4;9233:131;:::i;:::-;9225:139;;9123:248;;;:::o;9377:419::-;;9581:2;9570:9;9566:18;9558:26;;9630:9;9624:4;9620:20;9616:1;9605:9;9601:17;9594:47;9658:131;9784:4;9658:131;:::i;:::-;9650:139;;9548:248;;;:::o;9802:419::-;;10006:2;9995:9;9991:18;9983:26;;10055:9;10049:4;10045:20;10041:1;10030:9;10026:17;10019:47;10083:131;10209:4;10083:131;:::i;:::-;10075:139;;9973:248;;;:::o;10227:419::-;;10431:2;10420:9;10416:18;10408:26;;10480:9;10474:4;10470:20;10466:1;10455:9;10451:17;10444:47;10508:131;10634:4;10508:131;:::i;:::-;10500:139;;10398:248;;;:::o;10652:222::-;;10783:2;10772:9;10768:18;10760:26;;10796:71;10864:1;10853:9;10849:17;10840:6;10796:71;:::i;:::-;10750:124;;;;:::o;10880:214::-;;11007:2;10996:9;10992:18;10984:26;;11020:67;11084:1;11073:9;11069:17;11060:6;11020:67;:::i;:::-;10974:120;;;;:::o;11100:99::-;;11186:5;11180:12;11170:22;;11159:40;;;:::o;11205:169::-;;11323:6;11318:3;11311:19;11363:4;11358:3;11354:14;11339:29;;11301:73;;;;:::o;11380:305::-;;11439:20;11457:1;11439:20;:::i;:::-;11434:25;;11473:20;11491:1;11473:20;:::i;:::-;11468:25;;11627:1;11559:66;11555:74;11552:1;11549:81;11546:2;;;11633:18;;:::i;:::-;11546:2;11677:1;11674;11670:9;11663:16;;11424:261;;;;:::o;11691:191::-;;11751:20;11769:1;11751:20;:::i;:::-;11746:25;;11785:20;11803:1;11785:20;:::i;:::-;11780:25;;11824:1;11821;11818:8;11815:2;;;11829:18;;:::i;:::-;11815:2;11874:1;11871;11867:9;11859:17;;11736:146;;;;:::o;11888:96::-;;11954:24;11972:5;11954:24;:::i;:::-;11943:35;;11933:51;;;:::o;11990:90::-;;12067:5;12060:13;12053:21;12042:32;;12032:48;;;:::o;12086:126::-;;12163:42;12156:5;12152:54;12141:65;;12131:81;;;:::o;12218:77::-;;12284:5;12273:16;;12263:32;;;:::o;12301:86::-;;12376:4;12369:5;12365:16;12354:27;;12344:43;;;:::o;12393:307::-;12461:1;12471:113;12485:6;12482:1;12479:13;12471:113;;;12570:1;12565:3;12561:11;12555:18;12551:1;12546:3;12542:11;12535:39;12507:2;12504:1;12500:10;12495:15;;12471:113;;;12602:6;12599:1;12596:13;12593:2;;;12682:1;12673:6;12668:3;12664:16;12657:27;12593:2;12442:258;;;;:::o;12706:320::-;;12787:1;12781:4;12777:12;12767:22;;12834:1;12828:4;12824:12;12855:18;12845:2;;12911:4;12903:6;12899:17;12889:27;;12845:2;12973;12965:6;12962:14;12942:18;12939:38;12936:2;;;12992:18;;:::i;:::-;12936:2;12757:269;;;;:::o;13032:180::-;13080:77;13077:1;13070:88;13177:4;13174:1;13167:15;13201:4;13198:1;13191:15;13218:180;13266:77;13263:1;13256:88;13363:4;13360:1;13353:15;13387:4;13384:1;13377:15;13404:102;;13496:2;13492:7;13487:2;13480:5;13476:14;13472:28;13462:38;;13452:54;;;:::o;13512:222::-;13652:34;13648:1;13640:6;13636:14;13629:58;13721:5;13716:2;13708:6;13704:15;13697:30;13618:116;:::o;13740:221::-;13880:34;13876:1;13868:6;13864:14;13857:58;13949:4;13944:2;13936:6;13932:15;13925:29;13846:115;:::o;13967:221::-;14107:34;14103:1;14095:6;14091:14;14084:58;14176:4;14171:2;14163:6;14159:15;14152:29;14073:115;:::o;14194:225::-;14334:34;14330:1;14322:6;14318:14;14311:58;14403:8;14398:2;14390:6;14386:15;14379:33;14300:119;:::o;14425:227::-;14565:34;14561:1;14553:6;14549:14;14542:58;14634:10;14629:2;14621:6;14617:15;14610:35;14531:121;:::o;14658:220::-;14798:34;14794:1;14786:6;14782:14;14775:58;14867:3;14862:2;14854:6;14850:15;14843:28;14764:114;:::o;14884:224::-;15024:34;15020:1;15012:6;15008:14;15001:58;15093:7;15088:2;15080:6;15076:15;15069:32;14990:118;:::o;15114:223::-;15254:34;15250:1;15242:6;15238:14;15231:58;15323:6;15318:2;15310:6;15306:15;15299:31;15220:117;:::o;15343:224::-;15483:34;15479:1;15471:6;15467:14;15460:58;15552:7;15547:2;15539:6;15535:15;15528:32;15449:118;:::o;15573:122::-;15646:24;15664:5;15646:24;:::i;:::-;15639:5;15636:35;15626:2;;15685:1;15682;15675:12;15626:2;15616:79;:::o;15701:122::-;15774:24;15792:5;15774:24;:::i;:::-;15767:5;15764:35;15754:2;;15813:1;15810;15803:12;15754:2;15744:79;:::o

Swarm Source

ipfs://767df522e0afc0ec9b1dd755658591fc8070f7fbbf38a31579f27e7eaae00f7b
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.