ETH Price: $3,682.42 (+0.73%)

Token

Alt Markets (AMX)

Overview

Max Total Supply

100,000,000 AMX

Holders

34,360 (0.00%)

Market

Price

$0.0004 @ 0.000000 ETH

Onchain Market Cap

$39,749.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 6 Decimals)

Balance
500 AMX

Value
$0.20 ( ~5.4312089123434E-05 ETH) [0.0005%]
0xa55a7ff5dbdd4c57313a04cc92a6f72db57c1d93
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Alt Markets is a protocol that enables anyone to launch & trade synthetic markets.

Market

Volume (24H):$26.04
Market Capitalization:$0.00
Circulating Supply:0.00 AMX
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
AltMarkets

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-01-30
*/

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


// OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.8.0) (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.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 {}
}

// File: contracts/altmarkets.sol


pragma solidity 0.8.4;



contract AltMarkets is ERC20, Ownable {
    uint8 private _decimals = 6;

    constructor() ERC20("Alt Markets", "AMX") {}

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

    function mint(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= 1e9 * 10 ** decimals());
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) external onlyOwner {
        _burn(from, amount);
    }

    function withdrawEth(address payable to, uint256 amount) external onlyOwner {
        to.transfer(amount);
    }

    function withdrawToken(IERC20 token, address to, uint256 amount) external onlyOwner {
        token.transfer(to, amount);
    }

    receive() external payable {}
}

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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526005805460ff60a01b1916600360a11b1790553480156200002457600080fd5b506040518060400160405280600b81526020016a416c74204d61726b65747360a81b815250604051806040016040528060038152602001620829ab60eb1b81525081600390805190602001906200007d9291906200010c565b508051620000939060049060208401906200010c565b505050620000b0620000aa620000b660201b60201c565b620000ba565b620001ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011a90620001b2565b90600052602060002090601f0160209004810192826200013e576000855562000189565b82601f106200015957805160ff191683800117855562000189565b8280016001018555821562000189579182015b82811115620001895782518255916020019190600101906200016c565b50620001979291506200019b565b5090565b5b808211156200019757600081556001016200019c565b600181811c90821680620001c757607f821691505b60208210811415620001e957634e487b7160e01b600052602260045260246000fd5b50919050565b61100980620001ff6000396000f3fe60806040526004361061010d5760003560e01c806370a08231116100955780639dc29fac116100645780639dc29fac146102e9578063a457c2d714610309578063a9059cbb14610329578063dd62ed3e14610349578063f2fde38b1461036957600080fd5b806370a0823114610261578063715018a6146102975780638da5cb5b146102ac57806395d89b41146102d457600080fd5b80631b9a91a4116100dc5780631b9a91a4146101b557806323b872dd146101d5578063313ce567146101f5578063395093511461022157806340c10f191461024157600080fd5b806301e336671461011957806306fdde031461013b578063095ea7b31461016657806318160ddd1461019657600080fd5b3661011457005b600080fd5b34801561012557600080fd5b50610139610134366004610de1565b610389565b005b34801561014757600080fd5b50610150610419565b60405161015d9190610df5565b60405180910390f35b34801561017257600080fd5b50610186610181366004610daf565b6104ab565b604051901515815260200161015d565b3480156101a257600080fd5b506002545b60405190815260200161015d565b3480156101c157600080fd5b506101396101d0366004610d0c565b6104c5565b3480156101e157600080fd5b506101866101f0366004610d6f565b610508565b34801561020157600080fd5b50600554600160a01b900460ff1660405160ff909116815260200161015d565b34801561022d57600080fd5b5061018661023c366004610daf565b61052c565b34801561024d57600080fd5b5061013961025c366004610daf565b61054e565b34801561026d57600080fd5b506101a761027c366004610ce9565b6001600160a01b031660009081526020819052604090205490565b3480156102a357600080fd5b506101396105a9565b3480156102b857600080fd5b506005546040516001600160a01b03909116815260200161015d565b3480156102e057600080fd5b506101506105bd565b3480156102f557600080fd5b50610139610304366004610daf565b6105cc565b34801561031557600080fd5b50610186610324366004610daf565b6105de565b34801561033557600080fd5b50610186610344366004610daf565b61065e565b34801561035557600080fd5b506101a7610364366004610d37565b61066c565b34801561037557600080fd5b50610139610384366004610ce9565b610697565b610391610710565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b1580156103db57600080fd5b505af11580156103ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104139190610dc1565b50505050565b60606003805461042890610f6d565b80601f016020809104026020016040519081016040528092919081815260200182805461045490610f6d565b80156104a15780601f10610476576101008083540402835291602001916104a1565b820191906000526020600020905b81548152906001019060200180831161048457829003601f168201915b5050505050905090565b6000336104b981858561076a565b60019150505b92915050565b6104cd610710565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610503573d6000803e3d6000fd5b505050565b60003361051685828561088e565b610521858585610902565b506001949350505050565b6000336104b981858561053f838361066c565b6105499190610e48565b61076a565b610556610710565b600554600160a01b900460ff1661056e90600a610ea3565b61057c90633b9aca00610f4e565b8161058660025490565b6105909190610e48565b111561059b57600080fd5b6105a58282610aa6565b5050565b6105b1610710565b6105bb6000610b65565b565b60606004805461042890610f6d565b6105d4610710565b6105a58282610bb7565b600033816105ec828661066c565b9050838110156106515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610521828686840361076a565b6000336104b9818585610902565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61069f610710565b6001600160a01b0381166107045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b61070d81610b65565b50565b6005546001600160a01b031633146105bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610648565b6001600160a01b0383166107cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6001600160a01b03821661082d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610648565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089a848461066c565b9050600019811461041357818110156108f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610648565b610413848484840361076a565b6001600160a01b0383166109665760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610648565b6001600160a01b0382166109c85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b6001600160a01b03831660009081526020819052604090205481811015610a405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610648565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610413565b6001600160a01b038216610afc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610648565b8060026000828254610b0e9190610e48565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b6001600160a01b03821660009081526020819052604090205481811015610c8b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610648565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208284031215610cfa578081fd5b8135610d0581610fbe565b9392505050565b60008060408385031215610d1e578081fd5b8235610d2981610fbe565b946020939093013593505050565b60008060408385031215610d49578182fd5b8235610d5481610fbe565b91506020830135610d6481610fbe565b809150509250929050565b600080600060608486031215610d83578081fd5b8335610d8e81610fbe565b92506020840135610d9e81610fbe565b929592945050506040919091013590565b60008060408385031215610d1e578182fd5b600060208284031215610dd2578081fd5b81518015158114610d05578182fd5b600080600060608486031215610d83578283fd5b6000602080835283518082850152825b81811015610e2157858101830151858201604001528201610e05565b81811115610e325783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610e5b57610e5b610fa8565b500190565b600181815b80851115610e9b578160001904821115610e8157610e81610fa8565b80851615610e8e57918102915b93841c9390800290610e65565b509250929050565b6000610d0560ff841683600082610ebc575060016104bf565b81610ec9575060006104bf565b8160018114610edf5760028114610ee957610f05565b60019150506104bf565b60ff841115610efa57610efa610fa8565b50506001821b6104bf565b5060208310610133831016604e8410600b8410161715610f28575081810a6104bf565b610f328383610e60565b8060001904821115610f4657610f46610fa8565b029392505050565b6000816000190483118215151615610f6857610f68610fa8565b500290565b600181811c90821680610f8157607f821691505b60208210811415610fa257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461070d57600080fdfea264697066735822122001081d4e99edeecb670c1d834ced3935405b1addfb6140c0d889fec7302f58de64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061010d5760003560e01c806370a08231116100955780639dc29fac116100645780639dc29fac146102e9578063a457c2d714610309578063a9059cbb14610329578063dd62ed3e14610349578063f2fde38b1461036957600080fd5b806370a0823114610261578063715018a6146102975780638da5cb5b146102ac57806395d89b41146102d457600080fd5b80631b9a91a4116100dc5780631b9a91a4146101b557806323b872dd146101d5578063313ce567146101f5578063395093511461022157806340c10f191461024157600080fd5b806301e336671461011957806306fdde031461013b578063095ea7b31461016657806318160ddd1461019657600080fd5b3661011457005b600080fd5b34801561012557600080fd5b50610139610134366004610de1565b610389565b005b34801561014757600080fd5b50610150610419565b60405161015d9190610df5565b60405180910390f35b34801561017257600080fd5b50610186610181366004610daf565b6104ab565b604051901515815260200161015d565b3480156101a257600080fd5b506002545b60405190815260200161015d565b3480156101c157600080fd5b506101396101d0366004610d0c565b6104c5565b3480156101e157600080fd5b506101866101f0366004610d6f565b610508565b34801561020157600080fd5b50600554600160a01b900460ff1660405160ff909116815260200161015d565b34801561022d57600080fd5b5061018661023c366004610daf565b61052c565b34801561024d57600080fd5b5061013961025c366004610daf565b61054e565b34801561026d57600080fd5b506101a761027c366004610ce9565b6001600160a01b031660009081526020819052604090205490565b3480156102a357600080fd5b506101396105a9565b3480156102b857600080fd5b506005546040516001600160a01b03909116815260200161015d565b3480156102e057600080fd5b506101506105bd565b3480156102f557600080fd5b50610139610304366004610daf565b6105cc565b34801561031557600080fd5b50610186610324366004610daf565b6105de565b34801561033557600080fd5b50610186610344366004610daf565b61065e565b34801561035557600080fd5b506101a7610364366004610d37565b61066c565b34801561037557600080fd5b50610139610384366004610ce9565b610697565b610391610710565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b1580156103db57600080fd5b505af11580156103ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104139190610dc1565b50505050565b60606003805461042890610f6d565b80601f016020809104026020016040519081016040528092919081815260200182805461045490610f6d565b80156104a15780601f10610476576101008083540402835291602001916104a1565b820191906000526020600020905b81548152906001019060200180831161048457829003601f168201915b5050505050905090565b6000336104b981858561076a565b60019150505b92915050565b6104cd610710565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610503573d6000803e3d6000fd5b505050565b60003361051685828561088e565b610521858585610902565b506001949350505050565b6000336104b981858561053f838361066c565b6105499190610e48565b61076a565b610556610710565b600554600160a01b900460ff1661056e90600a610ea3565b61057c90633b9aca00610f4e565b8161058660025490565b6105909190610e48565b111561059b57600080fd5b6105a58282610aa6565b5050565b6105b1610710565b6105bb6000610b65565b565b60606004805461042890610f6d565b6105d4610710565b6105a58282610bb7565b600033816105ec828661066c565b9050838110156106515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610521828686840361076a565b6000336104b9818585610902565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61069f610710565b6001600160a01b0381166107045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b61070d81610b65565b50565b6005546001600160a01b031633146105bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610648565b6001600160a01b0383166107cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6001600160a01b03821661082d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610648565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089a848461066c565b9050600019811461041357818110156108f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610648565b610413848484840361076a565b6001600160a01b0383166109665760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610648565b6001600160a01b0382166109c85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b6001600160a01b03831660009081526020819052604090205481811015610a405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610648565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610413565b6001600160a01b038216610afc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610648565b8060026000828254610b0e9190610e48565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b6001600160a01b03821660009081526020819052604090205481811015610c8b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610648565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208284031215610cfa578081fd5b8135610d0581610fbe565b9392505050565b60008060408385031215610d1e578081fd5b8235610d2981610fbe565b946020939093013593505050565b60008060408385031215610d49578182fd5b8235610d5481610fbe565b91506020830135610d6481610fbe565b809150509250929050565b600080600060608486031215610d83578081fd5b8335610d8e81610fbe565b92506020840135610d9e81610fbe565b929592945050506040919091013590565b60008060408385031215610d1e578182fd5b600060208284031215610dd2578081fd5b81518015158114610d05578182fd5b600080600060608486031215610d83578283fd5b6000602080835283518082850152825b81811015610e2157858101830151858201604001528201610e05565b81811115610e325783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610e5b57610e5b610fa8565b500190565b600181815b80851115610e9b578160001904821115610e8157610e81610fa8565b80851615610e8e57918102915b93841c9390800290610e65565b509250929050565b6000610d0560ff841683600082610ebc575060016104bf565b81610ec9575060006104bf565b8160018114610edf5760028114610ee957610f05565b60019150506104bf565b60ff841115610efa57610efa610fa8565b50506001821b6104bf565b5060208310610133831016604e8410600b8410161715610f28575081810a6104bf565b610f328383610e60565b8060001904821115610f4657610f46610fa8565b029392505050565b6000816000190483118215151615610f6857610f68610fa8565b500290565b600181811c90821680610f8157607f821691505b60208210811415610fa257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461070d57600080fdfea264697066735822122001081d4e99edeecb670c1d834ced3935405b1addfb6140c0d889fec7302f58de64736f6c63430008040033

Deployed Bytecode Sourcemap

20608:806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21245:129;;;;;;;;;;-1:-1:-1;21245:129:0;;;;;:::i;:::-;;:::i;:::-;;9351:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;;;;;-1:-1:-1;11702:201:0;;;;;:::i;:::-;;:::i;:::-;;;3257:14:1;;3250:22;3232:41;;3220:2;3205:18;11702:201:0;3187:92:1;10471:108:0;;;;;;;;;;-1:-1:-1;10559:12:0;;10471:108;;;8760:25:1;;;8748:2;8733:18;10471:108:0;8715:76:1;21123:114:0;;;;;;;;;;-1:-1:-1;21123:114:0;;;;;:::i;:::-;;:::i;12483:295::-;;;;;;;;;;-1:-1:-1;12483:295:0;;;;;:::i;:::-;;:::i;20741:92::-;;;;;;;;;;-1:-1:-1;20816:9:0;;-1:-1:-1;;;20816:9:0;;;;20741:92;;8968:4:1;8956:17;;;8938:36;;8926:2;8911:18;20741:92:0;8893:87:1;13187:238:0;;;;;;;;;;-1:-1:-1;13187:238:0;;;;;:::i;:::-;;:::i;20841:165::-;;;;;;;;;;-1:-1:-1;20841:165:0;;;;;:::i;:::-;;:::i;10642:127::-;;;;;;;;;;-1:-1:-1;10642:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10743:18:0;10716:7;10743:18;;;;;;;;;;;;10642:127;2776:103;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;2751:51:1;;2739:2;2724:18;2128:87:0;2706:102:1;9570:104:0;;;;;;;;;;;;;:::i;21014:101::-;;;;;;;;;;-1:-1:-1;21014:101:0;;;;;:::i;:::-;;:::i;13928:436::-;;;;;;;;;;-1:-1:-1;13928:436:0;;;;;:::i;:::-;;:::i;10975:193::-;;;;;;;;;;-1:-1:-1;10975:193:0;;;;;:::i;:::-;;:::i;11231:151::-;;;;;;;;;;-1:-1:-1;11231:151:0;;;;;:::i;:::-;;:::i;3034:201::-;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;21245:129::-;2014:13;:11;:13::i;:::-;21340:26:::1;::::0;-1:-1:-1;;;21340:26:0;;-1:-1:-1;;;;;3005:32:1;;;21340:26:0::1;::::0;::::1;2987:51:1::0;3054:18;;;3047:34;;;21340:14:0;::::1;::::0;::::1;::::0;2960:18:1;;21340:26:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21245:129:::0;;;:::o;9351:100::-;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;759:10;11841:32;759:10;11857:7;11866:6;11841:8;:32::i;:::-;11891:4;11884:11;;;11702:201;;;;;:::o;21123:114::-;2014:13;:11;:13::i;:::-;21210:19:::1;::::0;-1:-1:-1;;;;;21210:11:0;::::1;::::0;:19;::::1;;;::::0;21222:6;;21210:19:::1;::::0;;;21222:6;21210:11;:19;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;21123:114:::0;;:::o;12483:295::-;12614:4;759:10;12672:38;12688:4;759:10;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;-1:-1:-1;12766:4:0;;12483:295;-1:-1:-1;;;;12483:295:0:o;13187:238::-;13275:4;759:10;13331:64;759:10;13347:7;13384:10;13356:25;759:10;13347:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;20841:165::-;2014:13;:11;:13::i;:::-;20816:9;;-1:-1:-1;;;20816:9:0;;;;20953:16:::1;::::0;:2:::1;:16;:::i;:::-;20947:22;::::0;:3:::1;:22;:::i;:::-;20937:6;20921:13;10559:12:::0;;;10471:108;20921:13:::1;:22;;;;:::i;:::-;:48;;20913:57;;;::::0;::::1;;20981:17;20987:2;20991:6;20981:5;:17::i;:::-;20841:165:::0;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;21014:101::-;2014:13;:11;:13::i;:::-;21088:19:::1;21094:4;21100:6;21088:5;:19::i;13928:436::-:0;14021:4;759:10;14021:4;14104:25;759:10;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;-1:-1:-1;;;14140:85:0;;8050:2:1;14140:85:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;-1:-1:-1;;;8179:18:1;;;8172:35;8224:19;;14140:85:0;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;10975:193::-;11054:4;759:10;11110:28;759:10;11127:2;11131:6;11110:9;:28::i;11231:151::-;-1:-1:-1;;;;;11347:18:0;;;11320:7;11347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11231:151::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;4901:2:1;3115:73:0::1;::::0;::::1;4883:21:1::0;4940:2;4920:18;;;4913:30;4979:34;4959:18;;;4952:62;-1:-1:-1;;;5030:18:1;;;5023:36;5076:19;;3115:73:0::1;4873:228:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;6476:2:1;2349:68:0;;;6458:21:1;;;6495:18;;;6488:30;6554:34;6534:18;;;6527:62;6606:18;;2349:68:0;6448:182:1;17955:380:0;-1:-1:-1;;;;;18091:19:0;;18083:68;;;;-1:-1:-1;;;18083:68:0;;7645:2:1;18083:68:0;;;7627:21:1;7684:2;7664:18;;;7657:30;7723:34;7703:18;;;7696:62;-1:-1:-1;;;7774:18:1;;;7767:34;7818:19;;18083:68:0;7617:226:1;18083:68:0;-1:-1:-1;;;;;18170:21:0;;18162:68;;;;-1:-1:-1;;;18162:68:0;;5308:2:1;18162:68:0;;;5290:21:1;5347:2;5327:18;;;5320:30;5386:34;5366:18;;;5359:62;-1:-1:-1;;;5437:18:1;;;5430:32;5479:19;;18162:68:0;5280:224:1;18162:68:0;-1:-1:-1;;;;;18243:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18295:32;;8760:25:1;;;18295:32:0;;8733:18:1;18295:32:0;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;-1:-1:-1;;18828:16:0;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;-1:-1:-1;;;18882:68:0;;5711:2:1;18882:68:0;;;5693:21:1;5750:2;5730:18;;;5723:30;5789:31;5769:18;;;5762:59;5838:18;;18882:68:0;5683:179:1;18882:68:0;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;14834:840::-;-1:-1:-1;;;;;14965:18:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;7239:2:1;14957:68:0;;;7221:21:1;7278:2;7258:18;;;7251:30;7317:34;7297:18;;;7290:62;-1:-1:-1;;;7368:18:1;;;7361:35;7413:19;;14957:68:0;7211:227:1;14957:68:0;-1:-1:-1;;;;;15044:16:0;;15036:64;;;;-1:-1:-1;;;15036:64:0;;4094:2:1;15036:64:0;;;4076:21:1;4133:2;4113:18;;;4106:30;4172:34;4152:18;;;4145:62;-1:-1:-1;;;4223:18:1;;;4216:33;4266:19;;15036:64:0;4066:225:1;15036:64:0;-1:-1:-1;;;;;15186:15:0;;15164:19;15186:15;;;;;;;;;;;15220:21;;;;15212:72;;;;-1:-1:-1;;;15212:72:0;;6069:2:1;15212:72:0;;;6051:21:1;6108:2;6088:18;;;6081:30;6147:34;6127:18;;;6120:62;-1:-1:-1;;;6198:18:1;;;6191:36;6244:19;;15212:72:0;6041:228:1;15212:72:0;-1:-1:-1;;;;;15320:15:0;;;:9;:15;;;;;;;;;;;15338:20;;;15320:38;;15538:13;;;;;;;;;;:23;;;;;;15590:26;;8760:25:1;;;15538:13:0;;15590:26;;8733:18:1;15590:26:0;;;;;;;15629:37;21123:114;15961:548;-1:-1:-1;;;;;16045:21:0;;16037:65;;;;-1:-1:-1;;;16037:65:0;;8456:2:1;16037:65:0;;;8438:21:1;8495:2;8475:18;;;8468:30;8534:33;8514:18;;;8507:61;8585:18;;16037:65:0;8428:181:1;16037:65:0;16193:6;16177:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16348:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16403:37;8760:25:1;;;16403:37:0;;8733:18:1;16403:37:0;;;;;;;20841:165;;:::o;3395:191::-;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3395:191;;:::o;16842:675::-;-1:-1:-1;;;;;16926:21:0;;16918:67;;;;-1:-1:-1;;;16918:67:0;;6837:2:1;16918:67:0;;;6819:21:1;6876:2;6856:18;;;6849:30;6915:34;6895:18;;;6888:62;-1:-1:-1;;;6966:18:1;;;6959:31;7007:19;;16918:67:0;6809:223:1;16918:67:0;-1:-1:-1;;;;;17085:18:0;;17060:22;17085:18;;;;;;;;;;;17122:24;;;;17114:71;;;;-1:-1:-1;;;17114:71:0;;4498:2:1;17114:71:0;;;4480:21:1;4537:2;4517:18;;;4510:30;4576:34;4556:18;;;4549:62;-1:-1:-1;;;4627:18:1;;;4620:32;4669:19;;17114:71:0;4470:224:1;17114:71:0;-1:-1:-1;;;;;17221:18:0;;:9;:18;;;;;;;;;;;17242:23;;;17221:44;;17360:12;:22;;;;;;;17411:37;8760:25:1;;;17221:9:0;;:18;17411:37;;8733:18:1;17411:37:0;;;;;;;21210:19:::1;21123:114:::0;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:333::-;352:6;360;413:2;401:9;392:7;388:23;384:32;381:2;;;434:6;426;419:22;381:2;478:9;465:23;497:31;522:5;497:31;:::i;:::-;547:5;599:2;584:18;;;;571:32;;-1:-1:-1;;;371:238:1:o;614:398::-;682:6;690;743:2;731:9;722:7;718:23;714:32;711:2;;;764:6;756;749:22;711:2;808:9;795:23;827:31;852:5;827:31;:::i;:::-;877:5;-1:-1:-1;934:2:1;919:18;;906:32;947:33;906:32;947:33;:::i;:::-;999:7;989:17;;;701:311;;;;;:::o;1017:466::-;1094:6;1102;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1228:9;1215:23;1247:31;1272:5;1247:31;:::i;:::-;1297:5;-1:-1:-1;1354:2:1;1339:18;;1326:32;1367:33;1326:32;1367:33;:::i;:::-;1121:362;;1419:7;;-1:-1:-1;;;1473:2:1;1458:18;;;;1445:32;;1121:362::o;1488:325::-;1556:6;1564;1617:2;1605:9;1596:7;1592:23;1588:32;1585:2;;;1638:6;1630;1623:22;1818:297;1885:6;1938:2;1926:9;1917:7;1913:23;1909:32;1906:2;;;1959:6;1951;1944:22;1906:2;1996:9;1990:16;2049:5;2042:13;2035:21;2028:5;2025:32;2015:2;;2076:6;2068;2061:22;2120:480;2211:6;2219;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:2;;;2301:6;2293;2286:22;3284:603;3396:4;3425:2;3454;3443:9;3436:21;3486:6;3480:13;3529:6;3524:2;3513:9;3509:18;3502:34;3554:4;3567:140;3581:6;3578:1;3575:13;3567:140;;;3676:14;;;3672:23;;3666:30;3642:17;;;3661:2;3638:26;3631:66;3596:10;;3567:140;;;3725:6;3722:1;3719:13;3716:2;;;3795:4;3790:2;3781:6;3770:9;3766:22;3762:31;3755:45;3716:2;-1:-1:-1;3871:2:1;3850:15;-1:-1:-1;;3846:29:1;3831:45;;;;3878:2;3827:54;;3405:482;-1:-1:-1;;;3405:482:1:o;8985:128::-;9025:3;9056:1;9052:6;9049:1;9046:13;9043:2;;;9062:18;;:::i;:::-;-1:-1:-1;9098:9:1;;9033:80::o;9118:422::-;9207:1;9250:5;9207:1;9264:270;9285:7;9275:8;9272:21;9264:270;;;9344:4;9340:1;9336:6;9332:17;9326:4;9323:27;9320:2;;;9353:18;;:::i;:::-;9403:7;9393:8;9389:22;9386:2;;;9423:16;;;;9386:2;9502:22;;;;9462:15;;;;9264:270;;;9268:3;9182:358;;;;;:::o;9545:140::-;9603:5;9632:47;9673:4;9663:8;9659:19;9653:4;9739:5;9769:8;9759:2;;-1:-1:-1;9810:1:1;9824:5;;9759:2;9858:4;9848:2;;-1:-1:-1;9895:1:1;9909:5;;9848:2;9940:4;9958:1;9953:59;;;;10026:1;10021:130;;;;9933:218;;9953:59;9983:1;9974:10;;9997:5;;;10021:130;10058:3;10048:8;10045:17;10042:2;;;10065:18;;:::i;:::-;-1:-1:-1;;10121:1:1;10107:16;;10136:5;;9933:218;;10235:2;10225:8;10222:16;10216:3;10210:4;10207:13;10203:36;10197:2;10187:8;10184:16;10179:2;10173:4;10170:12;10166:35;10163:77;10160:2;;;-1:-1:-1;10272:19:1;;;10304:5;;10160:2;10351:34;10376:8;10370:4;10351:34;:::i;:::-;10421:6;10417:1;10413:6;10409:19;10400:7;10397:32;10394:2;;;10432:18;;:::i;:::-;10470:20;;9749:747;-1:-1:-1;;;9749:747:1:o;10501:168::-;10541:7;10607:1;10603;10599:6;10595:14;10592:1;10589:21;10584:1;10577:9;10570:17;10566:45;10563:2;;;10614:18;;:::i;:::-;-1:-1:-1;10654:9:1;;10553:116::o;10674:380::-;10753:1;10749:12;;;;10796;;;10817:2;;10871:4;10863:6;10859:17;10849:27;;10817:2;10924;10916:6;10913:14;10893:18;10890:38;10887:2;;;10970:10;10965:3;10961:20;10958:1;10951:31;11005:4;11002:1;10995:15;11033:4;11030:1;11023:15;10887:2;;10729:325;;;:::o;11059:127::-;11120:10;11115:3;11111:20;11108:1;11101:31;11151:4;11148:1;11141:15;11175:4;11172:1;11165:15;11191:131;-1:-1:-1;;;;;11266:31:1;;11256:42;;11246:2;;11312:1;11309;11302:12

Swarm Source

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