ETH Price: $3,162.35 (+1.36%)
Gas: 2 Gwei

Token

Dimension Token (DMS)
 

Overview

Max Total Supply

4,993,000,000 DMS

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,594.3901698554257 DMS

Value
$0.00
0xb38bb36109889597a02d23450f3cc21f230f331f
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:
DimensionToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

/**
 * @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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

/**
 * @dev {ERC20} token, including:
 *
 *  - Preminted initial supply
 *  - Ability for holders to burn (destroy) their tokens
 *  - No access control mechanism (for minting/pausing) and hence no governance
 *
 * This contract uses {ERC20Burnable} to include burn capabilities - head to
 * its documentation for details.
 *
 * _Available since v3.4._
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract DimensionToken is ERC20Burnable, Ownable {    
    constructor() ERC20("Dimension Token", "DMS") {
        _mint(msg.sender, 5000000000 * 10 ** decimals());
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e2234b6b2b739b4b7b7102a37b5b2b760891b81525060405180604001604052806003815260200162444d5360e81b81525081600390805190602001906200006e929190620001fc565b50805162000084906004906020840190620001fc565b505050620000a16200009b620000da60201b60201c565b620000de565b620000d433620000b062000130565b620000bd90600a6200034a565b620000ce9064012a05f20062000442565b62000135565b620004b7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601290565b6001600160a01b038216620001675760405162461bcd60e51b81526004016200015e90620002a2565b60405180910390fd5b6200017560008383620001f7565b8060026000828254620001899190620002e2565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001dd908590620002d9565b60405180910390a3620001f360008383620001f7565b5050565b505050565b8280546200020a9062000464565b90600052602060002090601f0160209004810192826200022e576000855562000279565b82601f106200024957805160ff191683800117855562000279565b8280016001018555821562000279579182015b82811115620002795782518255916020019190600101906200025c565b50620002879291506200028b565b5090565b5b808211156200028757600081556001016200028c565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002f857620002f8620004a1565b500190565b80825b600180861162000311575062000341565b818704821115620003265762000326620004a1565b808616156200033457918102915b9490941c93800262000300565b94509492505050565b60006200035e60001960ff85168462000365565b9392505050565b60008262000376575060016200035e565b8162000385575060006200035e565b81600181146200039e5760028114620003a957620003dd565b60019150506200035e565b60ff841115620003bd57620003bd620004a1565b6001841b915084821115620003d657620003d6620004a1565b506200035e565b5060208310610133831016604e8410600b841016171562000415575081810a838111156200040f576200040f620004a1565b6200035e565b620004248484846001620002fd565b808604821115620004395762000439620004a1565b02949350505050565b60008160001904831182151516156200045f576200045f620004a1565b500290565b6002810460018216806200047957607f821691505b602082108114156200049b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610ce680620004c76000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f3578063a9059cbb14610206578063dd62ed3e14610219578063f2fde38b1461022c57610100565b8063715018a6146101bb57806379cc6790146101c35780638da5cb5b146101d657806395d89b41146101eb57610100565b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c681461019357806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d61023f565b60405161011a9190610919565b60405180910390f35b6101366101313660046108b9565b6102d1565b60405161011a919061090e565b61014b6102f3565b60405161011a9190610c3a565b61013661016636600461087e565b6102f9565b610173610327565b60405161011a9190610c43565b61013661018e3660046108b9565b61032c565b6101a66101a13660046108e2565b610358565b005b61014b6101b636600461082b565b61036c565b6101a661038b565b6101a66101d13660046108b9565b61039f565b6101de6103bf565b60405161011a91906108fa565b61010d6103ce565b6101366102013660046108b9565b6103dd565b6101366102143660046108b9565b61042e565b61014b61022736600461084c565b610446565b6101a661023a36600461082b565b610471565b60606003805461024e90610c75565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610c75565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000806102dc6104a8565b90506102e98185856104ac565b5060019392505050565b60025490565b6000806103046104a8565b9050610311858285610560565b61031c8585856105aa565b506001949350505050565b601290565b6000806103376104a8565b90506102e98185856103498589610446565b6103539190610c51565b6104ac565b6103696103636104a8565b826106ab565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b610393610783565b61039d60006107c2565b565b6103b1826103ab6104a8565b83610560565b6103bb82826106ab565b5050565b6005546001600160a01b031690565b60606004805461024e90610c75565b6000806103e86104a8565b905060006103f68286610446565b9050838110156104215760405162461bcd60e51b815260040161041890610bf5565b60405180910390fd5b61031c82868684036104ac565b6000806104396104a8565b90506102e98185856105aa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610479610783565b6001600160a01b03811661049f5760405162461bcd60e51b8152600401610418906109f1565b610369816107c2565b3390565b6001600160a01b0383166104d25760405162461bcd60e51b815260040161041890610bb1565b6001600160a01b0382166104f85760405162461bcd60e51b815260040161041890610a37565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610553908590610c3a565b60405180910390a3505050565b600061056c8484610446565b905060001981146105a457818110156105975760405162461bcd60e51b815260040161041890610a79565b6105a484848484036104ac565b50505050565b6001600160a01b0383166105d05760405162461bcd60e51b815260040161041890610b6c565b6001600160a01b0382166105f65760405162461bcd60e51b81526004016104189061096c565b61060183838361077e565b6001600160a01b0383166000908152602081905260409020548181101561063a5760405162461bcd60e51b815260040161041890610ab0565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610698908690610c3a565b60405180910390a36105a484848461077e565b6001600160a01b0382166106d15760405162461bcd60e51b815260040161041890610b2b565b6106dd8260008361077e565b6001600160a01b038216600090815260208190526040902054818110156107165760405162461bcd60e51b8152600401610418906109af565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076e908690610c3a565b60405180910390a361077e836000845b505050565b61078b6104a8565b6001600160a01b031661079c6103bf565b6001600160a01b03161461039d5760405162461bcd60e51b815260040161041890610af6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461038657600080fd5b60006020828403121561083c578081fd5b61084582610814565b9392505050565b6000806040838503121561085e578081fd5b61086783610814565b915061087560208401610814565b90509250929050565b600080600060608486031215610892578081fd5b61089b84610814565b92506108a960208501610814565b9150604084013590509250925092565b600080604083850312156108cb578182fd5b6108d483610814565b946020939093013593505050565b6000602082840312156108f3578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561094557858101830151858201604001528201610929565b818111156109565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c7057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610c8957607f821691505b60208210811415610caa57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201f0cd4ec16a89d838f0333d8c6429712654e41891a16a339ca8ca6e4a8ba7cc764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f3578063a9059cbb14610206578063dd62ed3e14610219578063f2fde38b1461022c57610100565b8063715018a6146101bb57806379cc6790146101c35780638da5cb5b146101d657806395d89b41146101eb57610100565b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c681461019357806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014357806323b872dd14610158575b600080fd5b61010d61023f565b60405161011a9190610919565b60405180910390f35b6101366101313660046108b9565b6102d1565b60405161011a919061090e565b61014b6102f3565b60405161011a9190610c3a565b61013661016636600461087e565b6102f9565b610173610327565b60405161011a9190610c43565b61013661018e3660046108b9565b61032c565b6101a66101a13660046108e2565b610358565b005b61014b6101b636600461082b565b61036c565b6101a661038b565b6101a66101d13660046108b9565b61039f565b6101de6103bf565b60405161011a91906108fa565b61010d6103ce565b6101366102013660046108b9565b6103dd565b6101366102143660046108b9565b61042e565b61014b61022736600461084c565b610446565b6101a661023a36600461082b565b610471565b60606003805461024e90610c75565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610c75565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000806102dc6104a8565b90506102e98185856104ac565b5060019392505050565b60025490565b6000806103046104a8565b9050610311858285610560565b61031c8585856105aa565b506001949350505050565b601290565b6000806103376104a8565b90506102e98185856103498589610446565b6103539190610c51565b6104ac565b6103696103636104a8565b826106ab565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b610393610783565b61039d60006107c2565b565b6103b1826103ab6104a8565b83610560565b6103bb82826106ab565b5050565b6005546001600160a01b031690565b60606004805461024e90610c75565b6000806103e86104a8565b905060006103f68286610446565b9050838110156104215760405162461bcd60e51b815260040161041890610bf5565b60405180910390fd5b61031c82868684036104ac565b6000806104396104a8565b90506102e98185856105aa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610479610783565b6001600160a01b03811661049f5760405162461bcd60e51b8152600401610418906109f1565b610369816107c2565b3390565b6001600160a01b0383166104d25760405162461bcd60e51b815260040161041890610bb1565b6001600160a01b0382166104f85760405162461bcd60e51b815260040161041890610a37565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610553908590610c3a565b60405180910390a3505050565b600061056c8484610446565b905060001981146105a457818110156105975760405162461bcd60e51b815260040161041890610a79565b6105a484848484036104ac565b50505050565b6001600160a01b0383166105d05760405162461bcd60e51b815260040161041890610b6c565b6001600160a01b0382166105f65760405162461bcd60e51b81526004016104189061096c565b61060183838361077e565b6001600160a01b0383166000908152602081905260409020548181101561063a5760405162461bcd60e51b815260040161041890610ab0565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610698908690610c3a565b60405180910390a36105a484848461077e565b6001600160a01b0382166106d15760405162461bcd60e51b815260040161041890610b2b565b6106dd8260008361077e565b6001600160a01b038216600090815260208190526040902054818110156107165760405162461bcd60e51b8152600401610418906109af565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076e908690610c3a565b60405180910390a361077e836000845b505050565b61078b6104a8565b6001600160a01b031661079c6103bf565b6001600160a01b03161461039d5760405162461bcd60e51b815260040161041890610af6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461038657600080fd5b60006020828403121561083c578081fd5b61084582610814565b9392505050565b6000806040838503121561085e578081fd5b61086783610814565b915061087560208401610814565b90509250929050565b600080600060608486031215610892578081fd5b61089b84610814565b92506108a960208501610814565b9150604084013590509250925092565b600080604083850312156108cb578182fd5b6108d483610814565b946020939093013593505050565b6000602082840312156108f3578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561094557858101830151858201604001528201610929565b818111156109565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c7057634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610c8957607f821691505b60208210811415610caa57634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201f0cd4ec16a89d838f0333d8c6429712654e41891a16a339ca8ca6e4a8ba7cc764736f6c63430008000033

Deployed Bytecode Sourcemap

21197:177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8404:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7173:108::-;;;:::i;:::-;;;;;;;:::i;9185:295::-;;;;;;:::i;:::-;;:::i;7015:93::-;;;:::i;:::-;;;;;;;:::i;9889:238::-;;;;;;:::i;:::-;;:::i;20162:91::-;;;;;;:::i;:::-;;:::i;:::-;;7344:127;;;;;;:::i;:::-;;:::i;18966:103::-;;;:::i;20572:164::-;;;;;;:::i;:::-;;:::i;18318:87::-;;;:::i;:::-;;;;;;;:::i;6272:104::-;;;:::i;10630:436::-;;;;;;:::i;:::-;;:::i;7677:193::-;;;;;;:::i;:::-;;:::i;7933:151::-;;;;;;:::i;:::-;;:::i;19224:201::-;;;;;;:::i;:::-;;:::i;6053:100::-;6107:13;6140:5;6133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;:::o;8404:201::-;8487:4;8504:13;8520:12;:10;:12::i;:::-;8504:28;;8543:32;8552:5;8559:7;8568:6;8543:8;:32::i;:::-;-1:-1:-1;8593:4:0;;8404:201;-1:-1:-1;;;8404:201:0:o;7173:108::-;7261:12;;7173:108;:::o;9185:295::-;9316:4;9333:15;9351:12;:10;:12::i;:::-;9333:30;;9374:38;9390:4;9396:7;9405:6;9374:15;:38::i;:::-;9423:27;9433:4;9439:2;9443:6;9423:9;:27::i;:::-;-1:-1:-1;9468:4:0;;9185:295;-1:-1:-1;;;;9185:295:0:o;7015:93::-;7098:2;7015:93;:::o;9889:238::-;9977:4;9994:13;10010:12;:10;:12::i;:::-;9994:28;;10033:64;10042:5;10049:7;10086:10;10058:25;10068:5;10075:7;10058:9;:25::i;:::-;:38;;;;:::i;:::-;10033:8;:64::i;20162:91::-;20218:27;20224:12;:10;:12::i;:::-;20238:6;20218:5;:27::i;:::-;20162:91;:::o;7344:127::-;-1:-1:-1;;;;;7445:18:0;;7418:7;7445:18;;;;;;;;;;;7344:127;;;;:::o;18966:103::-;18204:13;:11;:13::i;:::-;19031:30:::1;19058:1;19031:18;:30::i;:::-;18966:103::o:0;20572:164::-;20649:46;20665:7;20674:12;:10;:12::i;:::-;20688:6;20649:15;:46::i;:::-;20706:22;20712:7;20721:6;20706:5;:22::i;:::-;20572:164;;:::o;18318:87::-;18391:6;;-1:-1:-1;;;;;18391:6:0;18318:87;:::o;6272:104::-;6328:13;6361:7;6354:14;;;;;:::i;10630:436::-;10723:4;10740:13;10756:12;:10;:12::i;:::-;10740:28;;10779:24;10806:25;10816:5;10823:7;10806:9;:25::i;:::-;10779:52;;10870:15;10850:16;:35;;10842:85;;;;-1:-1:-1;;;10842:85:0;;;;;;;:::i;:::-;;;;;;;;;10963:60;10972:5;10979:7;11007:15;10988:16;:34;10963:8;:60::i;7677:193::-;7756:4;7773:13;7789:12;:10;:12::i;:::-;7773:28;;7812;7822:5;7829:2;7833:6;7812:9;:28::i;7933:151::-;-1:-1:-1;;;;;8049:18:0;;;8022:7;8049:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7933:151::o;19224:201::-;18204:13;:11;:13::i;:::-;-1:-1:-1;;;;;19313:22:0;::::1;19305:73;;;;-1:-1:-1::0;;;19305:73:0::1;;;;;;;:::i;:::-;19389:28;19408:8;19389:18;:28::i;3317:98::-:0;3397:10;3317:98;:::o;14657:380::-;-1:-1:-1;;;;;14793:19:0;;14785:68;;;;-1:-1:-1;;;14785:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14872:21:0;;14864:68;;;;-1:-1:-1;;;14864:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14945:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14997:32;;;;;14975:6;;14997:32;:::i;:::-;;;;;;;;14657:380;;;:::o;15328:453::-;15463:24;15490:25;15500:5;15507:7;15490:9;:25::i;:::-;15463:52;;-1:-1:-1;;15530:16:0;:37;15526:248;;15612:6;15592:16;:26;;15584:68;;;;-1:-1:-1;;;15584:68:0;;;;;;;:::i;:::-;15696:51;15705:5;15712:7;15740:6;15721:16;:25;15696:8;:51::i;:::-;15328:453;;;;:::o;11536:840::-;-1:-1:-1;;;;;11667:18:0;;11659:68;;;;-1:-1:-1;;;11659:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11746:16:0;;11738:64;;;;-1:-1:-1;;;11738:64:0;;;;;;;:::i;:::-;11815:38;11836:4;11842:2;11846:6;11815:20;:38::i;:::-;-1:-1:-1;;;;;11888:15:0;;11866:19;11888:15;;;;;;;;;;;11922:21;;;;11914:72;;;;-1:-1:-1;;;11914:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12022:15:0;;;:9;:15;;;;;;;;;;;12040:20;;;12022:38;;12240:13;;;;;;;;;;:23;;;;;;12292:26;;;;;;12054:6;;12292:26;:::i;:::-;;;;;;;;12331:37;12351:4;12357:2;12361:6;12331:19;:37::i;13544:675::-;-1:-1:-1;;;;;13628:21:0;;13620:67;;;;-1:-1:-1;;;13620:67:0;;;;;;;:::i;:::-;13700:49;13721:7;13738:1;13742:6;13700:20;:49::i;:::-;-1:-1:-1;;;;;13787:18:0;;13762:22;13787:18;;;;;;;;;;;13824:24;;;;13816:71;;;;-1:-1:-1;;;13816:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13923:18:0;;:9;:18;;;;;;;;;;;13944:23;;;13923:44;;14062:12;:22;;;;;;;14113:37;13923:9;;:18;14113:37;;;;13961:6;;14113:37;:::i;:::-;;;;;;;;14163:48;14183:7;14200:1;14204:6;14163:48;13544:675;;;:::o;18483:132::-;18558:12;:10;:12::i;:::-;-1:-1:-1;;;;;18547:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;18547:23:0;;18539:68;;;;-1:-1:-1;;;18539:68:0;;;;;;;:::i;19585:191::-;19678:6;;;-1:-1:-1;;;;;19695:17:0;;;-1:-1:-1;;;;;;19695:17:0;;;;;;;19728:40;;19678:6;;;19695:17;19678:6;;19728:40;;19659:16;;19728:40;19585:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:402::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:34;4747:2;4732:18;;4725:62;-1:-1:-1;;;4818:2:1;4803:18;;4796:36;4864:3;4849:19;;4646:228::o;4879:356::-;5081:2;5063:21;;;5100:18;;;5093:30;5159:34;5154:2;5139:18;;5132:62;5226:2;5211:18;;5053:182::o;5240:397::-;5442:2;5424:21;;;5481:2;5461:18;;;5454:30;5520:34;5515:2;5500:18;;5493:62;-1:-1:-1;;;5586:2:1;5571:18;;5564:31;5627:3;5612:19;;5414:223::o;5642:401::-;5844:2;5826:21;;;5883:2;5863:18;;;5856:30;5922:34;5917:2;5902:18;;5895:62;-1:-1:-1;;;5988:2:1;5973:18;;5966:35;6033:3;6018:19;;5816:227::o;6048:400::-;6250:2;6232:21;;;6289:2;6269:18;;;6262:30;6328:34;6323:2;6308:18;;6301:62;-1:-1:-1;;;6394:2:1;6379:18;;6372:34;6438:3;6423:19;;6222:226::o;6453:401::-;6655:2;6637:21;;;6694:2;6674:18;;;6667:30;6733:34;6728:2;6713:18;;6706:62;-1:-1:-1;;;6799:2:1;6784:18;;6777:35;6844:3;6829:19;;6627:227::o;6859:177::-;7005:25;;;6993:2;6978:18;;6960:76::o;7041:184::-;7213:4;7201:17;;;;7183:36;;7171:2;7156:18;;7138:87::o;7230:229::-;;7301:1;7297:6;7294:1;7291:13;7288:2;;;-1:-1:-1;;;7327:33:1;;7383:4;7380:1;7373:15;7413:4;7334:3;7401:17;7288:2;-1:-1:-1;7444:9:1;;7278:181::o;7464:380::-;7549:1;7539:12;;7596:1;7586:12;;;7607:2;;7661:4;7653:6;7649:17;7639:27;;7607:2;7714;7706:6;7703:14;7683:18;7680:38;7677:2;;;7760:10;7755:3;7751:20;7748:1;7741:31;7795:4;7792:1;7785:15;7823:4;7820:1;7813:15;7677:2;;7519:325;;;:::o

Swarm Source

ipfs://1f0cd4ec16a89d838f0333d8c6429712654e41891a16a339ca8ca6e4a8ba7cc7
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.