ETH Price: $3,020.01 (+2.33%)
Gas: 5 Gwei

Token

MEME BOY ($COLOR)
 

Overview

Max Total Supply

1,000,000,000 $COLOR

Holders

396

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
colorToken

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 2023-05-23
*/

// SPDX-License-Identifier: MIT

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;
    }
}



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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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



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);
}



pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient,amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

pragma solidity ^0.8.0;

contract colorToken is Ownable, ERC20 {
    bool public limited;
    address public uniswapV2Pair;
    uint256  public maxWalletAmount;
    constructor() ERC20("MEME BOY", "$COLOR") {
        uint256 _totalSupply = 1000000000 * 10 ** 18;
        maxWalletAmount=_totalSupply *3 /100;
        _mint(msg.sender, _totalSupply);
    }

    function setRule( address _uniswapV2Pair,bool _limited) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
        limited=_limited;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }
        if(limited){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){

                    require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet");
                
            }
        }
        
    }
    function removeLimit() public onlyOwner{
        limited=false;
    }
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":"value","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"bool","name":"_limited","type":"bool"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060088152602001674d454d4520424f5960c01b815250604051806040016040528060068152602001651221a7a627a960d11b8152506200006c62000066620000da60201b60201c565b620000de565b8151620000819060049060208501906200037f565b508051620000979060059060208401906200037f565b506b033b2e3c9fd0803ce8000000915060649050620000b88260036200050f565b620000c49190620004ee565b600755620000d333826200012e565b5062000584565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001605760405162461bcd60e51b8152600401620001579062000493565b60405180910390fd5b6200016e6000838362000210565b8060036000828254620001829190620004d3565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b1908490620004d3565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f6908590620004ca565b60405180910390a36200020c6000838362000350565b5050565b60065461010090046001600160a01b03166200028f576200023062000355565b6001600160a01b0316836001600160a01b031614806200026a57506200025562000355565b6001600160a01b0316826001600160a01b0316145b620002895760405162461bcd60e51b8152600401620001579062000425565b62000350565b60065460ff16156200035057620002a562000355565b6001600160a01b0316836001600160a01b031614158015620002e25750620002cc62000355565b6001600160a01b0316826001600160a01b031614155b8015620002f757506001600160a01b03821615155b80156200030f57506001600160a01b03821661dead14155b156200035057600754620003238362000364565b6200032f9083620004d3565b1115620003505760405162461bcd60e51b815260040162000157906200045c565b505050565b6000546001600160a01b031690565b6001600160a01b031660009081526001602052604090205490565b8280546200038d9062000531565b90600052602060002090601f016020900481019282620003b15760008555620003fc565b82601f10620003cc57805160ff1916838001178555620003fc565b82800160010185558215620003fc579182015b82811115620003fc578251825591602001919060010190620003df565b506200040a9291506200040e565b5090565b5b808211156200040a57600081556001016200040f565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b60208082526018908201527f43616e6e6f7420457863656564206d61782077616c6c65740000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004e957620004e96200056e565b500190565b6000826200050a57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200052c576200052c6200056e565b500290565b6002810460018216806200054657607f821691505b602082108114156200056857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6110bb80620005946000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610237578063a9059cbb1461024a578063aa4bde281461025d578063dd62ed3e14610265578063f2fde38b146102785761012c565b806370a0823114610204578063715018a614610217578063860a32ec1461021f5780638da5cb5b1461022757806395d89b411461022f5761012c565b8063313ce567116100f4578063313ce567146101ac57806339509351146101c157806342966c68146101d457806349bd5a5e146101e757806362256589146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f578063146218181461016f57806318160ddd1461018457806323b872dd14610199575b600080fd5b61013961028b565b6040516101469190610c55565b60405180910390f35b61016261015d366004610bf5565b61031d565b6040516101469190610c4a565b61018261017d366004610bbb565b61033a565b005b61018c6103b4565b6040516101469190610fee565b6101626101a7366004610b80565b6103ba565b6101b461044a565b6040516101469190610ff7565b6101626101cf366004610bf5565b61044f565b6101826101e2366004610c1e565b6104a3565b6101ef6104b0565b6040516101469190610c36565b6101826104c4565b61018c610212366004610b2d565b61050f565b61018261052e565b610162610579565b6101ef610582565b610139610591565b610162610245366004610bf5565b6105a0565b610162610258366004610bf5565b610619565b61018c61062d565b61018c610273366004610b4e565b610633565b610182610286366004610b2d565b61065e565b60606004805461029a90611034565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690611034565b80156103135780601f106102e857610100808354040283529160200191610313565b820191906000526020600020905b8154815290600101906020018083116102f657829003601f168201915b5050505050905090565b600061033161032a6106cc565b84846106d0565b50600192915050565b6103426106cc565b6001600160a01b0316610353610582565b6001600160a01b0316146103825760405162461bcd60e51b815260040161037990610e43565b60405180910390fd5b60068054610100600160a81b0319166101006001600160a01b0394909416939093029290921760ff1916901515179055565b60035490565b60006103c7848484610784565b6001600160a01b0384166000908152600260205260408120816103e86106cc565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561042b5760405162461bcd60e51b815260040161037990610dfb565b61043f856104376106cc565b8584036106d0565b506001949350505050565b601290565b600061033161045c6106cc565b84846002600061046a6106cc565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461049e9190611005565b6106d0565b6104ad33826108ae565b50565b60065461010090046001600160a01b031681565b6104cc6106cc565b6001600160a01b03166104dd610582565b6001600160a01b0316146105035760405162461bcd60e51b815260040161037990610e43565b6006805460ff19169055565b6001600160a01b0381166000908152600160205260409020545b919050565b6105366106cc565b6001600160a01b0316610547610582565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161037990610e43565b61057760006109a0565b565b60065460ff1681565b6000546001600160a01b031690565b60606005805461029a90611034565b600080600260006105af6106cc565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105fb5760405162461bcd60e51b815260040161037990610f72565b61060f6106066106cc565b858584036106d0565b5060019392505050565b60006103316106266106cc565b8484610784565b60075481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106666106cc565b6001600160a01b0316610677610582565b6001600160a01b03161461069d5760405162461bcd60e51b815260040161037990610e43565b6001600160a01b0381166106c35760405162461bcd60e51b815260040161037990610d2d565b6104ad816109a0565b3390565b6001600160a01b0383166106f65760405162461bcd60e51b815260040161037990610f2e565b6001600160a01b03821661071c5760405162461bcd60e51b815260040161037990610d73565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610777908590610fee565b60405180910390a3505050565b6001600160a01b0383166107aa5760405162461bcd60e51b815260040161037990610ee9565b6001600160a01b0382166107d05760405162461bcd60e51b815260040161037990610ca8565b6107db8383836109f0565b6001600160a01b038316600090815260016020526040902054818110156108145760405162461bcd60e51b815260040161037990610db5565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061084b908490611005565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108959190610fee565b60405180910390a36108a884848461099b565b50505050565b6001600160a01b0382166108d45760405162461bcd60e51b815260040161037990610e78565b6108e0826000836109f0565b6001600160a01b038216600090815260016020526040902054818110156109195760405162461bcd60e51b815260040161037990610ceb565b6001600160a01b038316600090815260016020526040812083830390556003805484929061094890849061101d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610fee565b60405180910390a361099b836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065461010090046001600160a01b0316610a6557610a0d610582565b6001600160a01b0316836001600160a01b03161480610a445750610a2f610582565b6001600160a01b0316826001600160a01b0316145b610a605760405162461bcd60e51b815260040161037990610eb9565b61099b565b60065460ff161561099b57610a78610582565b6001600160a01b0316836001600160a01b031614158015610ab25750610a9c610582565b6001600160a01b0316826001600160a01b031614155b8015610ac657506001600160a01b03821615155b8015610add57506001600160a01b03821661dead14155b1561099b57600754610aee8361050f565b610af89083611005565b111561099b5760405162461bcd60e51b815260040161037990610fb7565b80356001600160a01b038116811461052957600080fd5b600060208284031215610b3e578081fd5b610b4782610b16565b9392505050565b60008060408385031215610b60578081fd5b610b6983610b16565b9150610b7760208401610b16565b90509250929050565b600080600060608486031215610b94578081fd5b610b9d84610b16565b9250610bab60208501610b16565b9150604084013590509250925092565b60008060408385031215610bcd578182fd5b610bd683610b16565b915060208301358015158114610bea578182fd5b809150509250929050565b60008060408385031215610c07578182fd5b610c1083610b16565b946020939093013593505050565b600060208284031215610c2f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8157858101830151858201604001528201610c65565b81811115610c925783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526018908201527f43616e6e6f7420457863656564206d61782077616c6c65740000000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156110185761101861106f565b500190565b60008282101561102f5761102f61106f565b500390565b60028104600182168061104857607f821691505b6020821081141561106957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205ef97add2e768e847d72e35c0c6ddb5102d882c7f4f7add8961eb32d8743255664736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610237578063a9059cbb1461024a578063aa4bde281461025d578063dd62ed3e14610265578063f2fde38b146102785761012c565b806370a0823114610204578063715018a614610217578063860a32ec1461021f5780638da5cb5b1461022757806395d89b411461022f5761012c565b8063313ce567116100f4578063313ce567146101ac57806339509351146101c157806342966c68146101d457806349bd5a5e146101e757806362256589146101fc5761012c565b806306fdde0314610131578063095ea7b31461014f578063146218181461016f57806318160ddd1461018457806323b872dd14610199575b600080fd5b61013961028b565b6040516101469190610c55565b60405180910390f35b61016261015d366004610bf5565b61031d565b6040516101469190610c4a565b61018261017d366004610bbb565b61033a565b005b61018c6103b4565b6040516101469190610fee565b6101626101a7366004610b80565b6103ba565b6101b461044a565b6040516101469190610ff7565b6101626101cf366004610bf5565b61044f565b6101826101e2366004610c1e565b6104a3565b6101ef6104b0565b6040516101469190610c36565b6101826104c4565b61018c610212366004610b2d565b61050f565b61018261052e565b610162610579565b6101ef610582565b610139610591565b610162610245366004610bf5565b6105a0565b610162610258366004610bf5565b610619565b61018c61062d565b61018c610273366004610b4e565b610633565b610182610286366004610b2d565b61065e565b60606004805461029a90611034565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690611034565b80156103135780601f106102e857610100808354040283529160200191610313565b820191906000526020600020905b8154815290600101906020018083116102f657829003601f168201915b5050505050905090565b600061033161032a6106cc565b84846106d0565b50600192915050565b6103426106cc565b6001600160a01b0316610353610582565b6001600160a01b0316146103825760405162461bcd60e51b815260040161037990610e43565b60405180910390fd5b60068054610100600160a81b0319166101006001600160a01b0394909416939093029290921760ff1916901515179055565b60035490565b60006103c7848484610784565b6001600160a01b0384166000908152600260205260408120816103e86106cc565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561042b5760405162461bcd60e51b815260040161037990610dfb565b61043f856104376106cc565b8584036106d0565b506001949350505050565b601290565b600061033161045c6106cc565b84846002600061046a6106cc565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461049e9190611005565b6106d0565b6104ad33826108ae565b50565b60065461010090046001600160a01b031681565b6104cc6106cc565b6001600160a01b03166104dd610582565b6001600160a01b0316146105035760405162461bcd60e51b815260040161037990610e43565b6006805460ff19169055565b6001600160a01b0381166000908152600160205260409020545b919050565b6105366106cc565b6001600160a01b0316610547610582565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161037990610e43565b61057760006109a0565b565b60065460ff1681565b6000546001600160a01b031690565b60606005805461029a90611034565b600080600260006105af6106cc565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105fb5760405162461bcd60e51b815260040161037990610f72565b61060f6106066106cc565b858584036106d0565b5060019392505050565b60006103316106266106cc565b8484610784565b60075481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106666106cc565b6001600160a01b0316610677610582565b6001600160a01b03161461069d5760405162461bcd60e51b815260040161037990610e43565b6001600160a01b0381166106c35760405162461bcd60e51b815260040161037990610d2d565b6104ad816109a0565b3390565b6001600160a01b0383166106f65760405162461bcd60e51b815260040161037990610f2e565b6001600160a01b03821661071c5760405162461bcd60e51b815260040161037990610d73565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610777908590610fee565b60405180910390a3505050565b6001600160a01b0383166107aa5760405162461bcd60e51b815260040161037990610ee9565b6001600160a01b0382166107d05760405162461bcd60e51b815260040161037990610ca8565b6107db8383836109f0565b6001600160a01b038316600090815260016020526040902054818110156108145760405162461bcd60e51b815260040161037990610db5565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061084b908490611005565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108959190610fee565b60405180910390a36108a884848461099b565b50505050565b6001600160a01b0382166108d45760405162461bcd60e51b815260040161037990610e78565b6108e0826000836109f0565b6001600160a01b038216600090815260016020526040902054818110156109195760405162461bcd60e51b815260040161037990610ceb565b6001600160a01b038316600090815260016020526040812083830390556003805484929061094890849061101d565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610fee565b60405180910390a361099b836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065461010090046001600160a01b0316610a6557610a0d610582565b6001600160a01b0316836001600160a01b03161480610a445750610a2f610582565b6001600160a01b0316826001600160a01b0316145b610a605760405162461bcd60e51b815260040161037990610eb9565b61099b565b60065460ff161561099b57610a78610582565b6001600160a01b0316836001600160a01b031614158015610ab25750610a9c610582565b6001600160a01b0316826001600160a01b031614155b8015610ac657506001600160a01b03821615155b8015610add57506001600160a01b03821661dead14155b1561099b57600754610aee8361050f565b610af89083611005565b111561099b5760405162461bcd60e51b815260040161037990610fb7565b80356001600160a01b038116811461052957600080fd5b600060208284031215610b3e578081fd5b610b4782610b16565b9392505050565b60008060408385031215610b60578081fd5b610b6983610b16565b9150610b7760208401610b16565b90509250929050565b600080600060608486031215610b94578081fd5b610b9d84610b16565b9250610bab60208501610b16565b9150604084013590509250925092565b60008060408385031215610bcd578182fd5b610bd683610b16565b915060208301358015158114610bea578182fd5b809150509250929050565b60008060408385031215610c07578182fd5b610c1083610b16565b946020939093013593505050565b600060208284031215610c2f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c8157858101830151858201604001528201610c65565b81811115610c925783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526018908201527f43616e6e6f7420457863656564206d61782077616c6c65740000000000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156110185761101861106f565b500190565b60008282101561102f5761102f61106f565b500390565b60028104600182168061104857607f821691505b6020821081141561106957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212205ef97add2e768e847d72e35c0c6ddb5102d882c7f4f7add8961eb32d8743255664736f6c63430008000033

Deployed Bytecode Sourcemap

18585:1248:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10767:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18931:151::-;;;;;;:::i;:::-;;:::i;:::-;;9720:108;;;:::i;:::-;;;;;;;:::i;11418:492::-;;;;;;:::i;:::-;;:::i;9562:93::-;;;:::i;:::-;;;;;;;:::i;12319:215::-;;;;;;:::i;:::-;;:::i;19749:81::-;;;;;;:::i;:::-;;:::i;18656:28::-;;;:::i;:::-;;;;;;;:::i;19672:71::-;;;:::i;9891:127::-;;;;;;:::i;:::-;;:::i;2417:103::-;;;:::i;18630:19::-;;;:::i;1766:87::-;;;:::i;8819:104::-;;;:::i;13037:413::-;;;;;;:::i;:::-;;:::i;10231:175::-;;;;;;:::i;:::-;;:::i;18691:31::-;;;:::i;10469:151::-;;;;;;:::i;:::-;;:::i;2675:201::-;;;;;;:::i;:::-;;:::i;8600:100::-;8654:13;8687:5;8680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600:100;:::o;10767:169::-;10850:4;10867:39;10876:12;:10;:12::i;:::-;10890:7;10899:6;10867:8;:39::i;:::-;-1:-1:-1;10924:4:0;10767:169;;;;:::o;18931:151::-;1997:12;:10;:12::i;:::-;-1:-1:-1;;;;;1986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1986:23:0;;1978:68;;;;-1:-1:-1;;;1978:68:0;;;;;;;:::i;:::-;;;;;;;;;19017:13:::1;:30:::0;;-1:-1:-1;;;;;;19017:30:0::1;;-1:-1:-1::0;;;;;19017:30:0;;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;19058:16:0::1;::::0;::::1;;;::::0;;18931:151::o;9720:108::-;9808:12;;9720:108;:::o;11418:492::-;11558:4;11575:36;11585:6;11593:9;11604:6;11575:9;:36::i;:::-;-1:-1:-1;;;;;11651:19:0;;11624:24;11651:19;;;:11;:19;;;;;11624:24;11671:12;:10;:12::i;:::-;-1:-1:-1;;;;;11651:33:0;-1:-1:-1;;;;;11651:33:0;;;;;;;;;;;;;11624:60;;11723:6;11703:16;:26;;11695:79;;;;-1:-1:-1;;;11695:79:0;;;;;;;:::i;:::-;11810:57;11819:6;11827:12;:10;:12::i;:::-;11860:6;11841:16;:25;11810:8;:57::i;:::-;-1:-1:-1;11898:4:0;;11418:492;-1:-1:-1;;;;11418:492:0:o;9562:93::-;9645:2;9562:93;:::o;12319:215::-;12407:4;12424:80;12433:12;:10;:12::i;:::-;12447:7;12493:10;12456:11;:25;12468:12;:10;:12::i;:::-;-1:-1:-1;;;;;12456:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12456:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;12424:8;:80::i;19749:81::-;19798:24;19804:10;19816:5;19798;:24::i;:::-;19749:81;:::o;18656:28::-;;;;;;-1:-1:-1;;;;;18656:28:0;;:::o;19672:71::-;1997:12;:10;:12::i;:::-;-1:-1:-1;;;;;1986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1986:23:0;;1978:68;;;;-1:-1:-1;;;1978:68:0;;;;;;;:::i;:::-;19722:7:::1;:13:::0;;-1:-1:-1;;19722:13:0::1;::::0;;19672:71::o;9891:127::-;-1:-1:-1;;;;;9992:18:0;;9965:7;9992:18;;;:9;:18;;;;;;9891:127;;;;:::o;2417:103::-;1997:12;:10;:12::i;:::-;-1:-1:-1;;;;;1986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1986:23:0;;1978:68;;;;-1:-1:-1;;;1978:68:0;;;;;;;:::i;:::-;2482:30:::1;2509:1;2482:18;:30::i;:::-;2417:103::o:0;18630:19::-;;;;;;:::o;1766:87::-;1812:7;1839:6;-1:-1:-1;;;;;1839:6:0;1766:87;:::o;8819:104::-;8875:13;8908:7;8901:14;;;;;:::i;13037:413::-;13130:4;13147:24;13174:11;:25;13186:12;:10;:12::i;:::-;-1:-1:-1;;;;;13174:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13174:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13227:35:0;;;;13219:85;;;;-1:-1:-1;;;13219:85:0;;;;;;;:::i;:::-;13340:67;13349:12;:10;:12::i;:::-;13363:7;13391:15;13372:16;:34;13340:8;:67::i;:::-;-1:-1:-1;13438:4:0;;13037:413;-1:-1:-1;;;13037:413:0:o;10231:175::-;10317:4;10334:42;10344:12;:10;:12::i;:::-;10358:9;10369:6;10334:9;:42::i;18691:31::-;;;;:::o;10469:151::-;-1:-1:-1;;;;;10585:18:0;;;10558:7;10585:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10469:151::o;2675:201::-;1997:12;:10;:12::i;:::-;-1:-1:-1;;;;;1986:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1986:23:0;;1978:68;;;;-1:-1:-1;;;1978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2764:22:0;::::1;2756:73;;;;-1:-1:-1::0;;;2756:73:0::1;;;;;;;:::i;:::-;2840:28;2859:8;2840:18;:28::i;602:98::-:0;682:10;602:98;:::o;16718:380::-;-1:-1:-1;;;;;16854:19:0;;16846:68;;;;-1:-1:-1;;;16846:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16933:21:0;;16925:68;;;;-1:-1:-1;;;16925:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17006:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17058:32;;;;;17036:6;;17058:32;:::i;:::-;;;;;;;;16718:380;;;:::o;13940:732::-;-1:-1:-1;;;;;14080:20:0;;14072:70;;;;-1:-1:-1;;;14072:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14161:23:0;;14153:71;;;;-1:-1:-1;;;14153:71:0;;;;;;;:::i;:::-;14237:46;14258:6;14266:9;14276:6;14237:20;:46::i;:::-;-1:-1:-1;;;;;14320:17:0;;14296:21;14320:17;;;:9;:17;;;;;;14356:23;;;;14348:74;;;;-1:-1:-1;;;14348:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14458:17:0;;;;;;;:9;:17;;;;;;14478:22;;;14458:42;;14522:20;;;;;;;;:30;;14494:6;;14458:17;14522:30;;14494:6;;14522:30;:::i;:::-;;;;;;;;14587:9;-1:-1:-1;;;;;14570:35:0;14579:6;-1:-1:-1;;;;;14570:35:0;;14598:6;14570:35;;;;;;:::i;:::-;;;;;;;;14618:46;14638:6;14646:9;14657:6;14618:19;:46::i;:::-;13940:732;;;;:::o;15690:590::-;-1:-1:-1;;;;;15774:21:0;;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;15846:48;15867:7;15884:1;15887:6;15846:20;:48::i;:::-;-1:-1:-1;;;;;15932:18:0;;15907:22;15932:18;;;:9;:18;;;;;;15969:24;;;;15961:71;;;;-1:-1:-1;;;15961:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16068:18:0;;;;;;:9;:18;;;;;16089:23;;;16068:44;;16134:12;:22;;16106:6;;16068:18;16134:22;;16106:6;;16134:22;:::i;:::-;;;;-1:-1:-1;;16174:37:0;;16200:1;;-1:-1:-1;;;;;16174:37:0;;;;;;;16204:6;;16174:37;:::i;:::-;;;;;;;;16224:48;16244:7;16261:1;16265:6;16224:48;15690:590;;;:::o;3036:191::-;3110:16;3129:6;;-1:-1:-1;;;;;3146:17:0;;;-1:-1:-1;;;;;;3146:17:0;;;;;;3179:40;;3129:6;;;;;;;3179:40;;3110:16;3179:40;3036:191;;:::o;19090:576::-;19239:13;;;;;-1:-1:-1;;;;;19239:13:0;19235:148;;19299:7;:5;:7::i;:::-;-1:-1:-1;;;;;19291:15:0;:4;-1:-1:-1;;;;;19291:15:0;;:32;;;;19316:7;:5;:7::i;:::-;-1:-1:-1;;;;;19310:13:0;:2;-1:-1:-1;;;;;19310:13:0;;19291:32;19283:67;;;;-1:-1:-1;;;19283:67:0;;;;;;;:::i;:::-;19365:7;;19235:148;19396:7;;;;19393:256;;;19431:7;:5;:7::i;:::-;-1:-1:-1;;;;;19423:15:0;:4;-1:-1:-1;;;;;19423:15:0;;;:32;;;;;19448:7;:5;:7::i;:::-;-1:-1:-1;;;;;19442:13:0;:2;-1:-1:-1;;;;;19442:13:0;;;19423:32;:52;;;;-1:-1:-1;;;;;;19459:16:0;;;;19423:52;:77;;;;-1:-1:-1;;;;;;19479:21:0;;19493:6;19479:21;;19423:77;19419:219;;;19560:15;;19543:13;19553:2;19543:9;:13::i;:::-;19534:22;;:6;:22;:::i;:::-;:41;;19526:78;;;;-1:-1:-1;;;19526:78:0;;;;;;;:::i;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:369::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1326:5;1319:13;1312:21;1305:5;1302:32;1292:2;;1353:6;1345;1338:22;1292:2;1381:5;1371:15;;;1107:285;;;;;:::o;1397:266::-;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1575:31;1596:9;1575:31;:::i;:::-;1565:41;1653:2;1638:18;;;;1625:32;;-1:-1:-1;;;1484:179:1:o;1668:190::-;;1780:2;1768:9;1759:7;1755:23;1751:32;1748:2;;;1801:6;1793;1786:22;1748:2;-1:-1:-1;1829:23:1;;1738:120;-1:-1:-1;1738:120:1:o;1863:203::-;-1:-1:-1;;;;;2027:32:1;;;;2009:51;;1997:2;1982:18;;1964:102::o;2071:187::-;2236:14;;2229:22;2211:41;;2199:2;2184:18;;2166:92::o;2263:603::-;;2404:2;2433;2422:9;2415:21;2465:6;2459:13;2508:6;2503:2;2492:9;2488:18;2481:34;2533:4;2546:140;2560:6;2557:1;2554:13;2546:140;;;2655:14;;;2651:23;;2645:30;2621:17;;;2640:2;2617:26;2610:66;2575:10;;2546:140;;;2704:6;2701:1;2698:13;2695:2;;;2774:4;2769:2;2760:6;2749:9;2745:22;2741:31;2734:45;2695:2;-1:-1:-1;2850:2:1;2829:15;-1:-1:-1;;2825:29:1;2810:45;;;;2857:2;2806:54;;2384:482;-1:-1:-1;;;2384:482:1:o;2871:399::-;3073:2;3055:21;;;3112:2;3092:18;;;3085:30;3151:34;3146:2;3131:18;;3124:62;-1:-1:-1;;;3217:2:1;3202:18;;3195:33;3260:3;3245:19;;3045:225::o;3275:398::-;3477:2;3459:21;;;3516:2;3496:18;;;3489:30;3555:34;3550:2;3535:18;;3528:62;-1:-1:-1;;;3621:2:1;3606:18;;3599:32;3663:3;3648:19;;3449:224::o;3678:402::-;3880:2;3862:21;;;3919:2;3899:18;;;3892:30;3958:34;3953:2;3938:18;;3931:62;-1:-1:-1;;;4024:2:1;4009:18;;4002:36;4070:3;4055:19;;3852:228::o;4085:398::-;4287:2;4269:21;;;4326:2;4306:18;;;4299:30;4365:34;4360:2;4345:18;;4338:62;-1:-1:-1;;;4431:2:1;4416:18;;4409:32;4473:3;4458:19;;4259:224::o;4488:402::-;4690:2;4672:21;;;4729:2;4709:18;;;4702:30;4768:34;4763:2;4748:18;;4741:62;-1:-1:-1;;;4834:2:1;4819:18;;4812:36;4880:3;4865:19;;4662:228::o;4895:404::-;5097:2;5079:21;;;5136:2;5116:18;;;5109:30;5175:34;5170:2;5155:18;;5148:62;-1:-1:-1;;;5241:2:1;5226:18;;5219:38;5289:3;5274:19;;5069:230::o;5304:356::-;5506:2;5488:21;;;5525:18;;;5518:30;5584:34;5579:2;5564:18;;5557:62;5651:2;5636:18;;5478:182::o;5665:397::-;5867:2;5849:21;;;5906:2;5886:18;;;5879:30;5945:34;5940:2;5925:18;;5918:62;-1:-1:-1;;;6011:2:1;5996:18;;5989:31;6052:3;6037:19;;5839:223::o;6067:346::-;6269:2;6251:21;;;6308:2;6288:18;;;6281:30;-1:-1:-1;;;6342:2:1;6327:18;;6320:52;6404:2;6389:18;;6241:172::o;6418:401::-;6620:2;6602:21;;;6659:2;6639:18;;;6632:30;6698:34;6693:2;6678:18;;6671:62;-1:-1:-1;;;6764:2:1;6749:18;;6742:35;6809:3;6794:19;;6592:227::o;6824:400::-;7026:2;7008:21;;;7065:2;7045:18;;;7038:30;7104:34;7099:2;7084:18;;7077:62;-1:-1:-1;;;7170:2:1;7155:18;;7148:34;7214:3;7199:19;;6998:226::o;7229:401::-;7431:2;7413:21;;;7470:2;7450:18;;;7443:30;7509:34;7504:2;7489:18;;7482:62;-1:-1:-1;;;7575:2:1;7560:18;;7553:35;7620:3;7605:19;;7403:227::o;7635:348::-;7837:2;7819:21;;;7876:2;7856:18;;;7849:30;7915:26;7910:2;7895:18;;7888:54;7974:2;7959:18;;7809:174::o;7988:177::-;8134:25;;;8122:2;8107:18;;8089:76::o;8170:184::-;8342:4;8330:17;;;;8312:36;;8300:2;8285:18;;8267:87::o;8359:128::-;;8430:1;8426:6;8423:1;8420:13;8417:2;;;8436:18;;:::i;:::-;-1:-1:-1;8472:9:1;;8407:80::o;8492:125::-;;8560:1;8557;8554:8;8551:2;;;8565:18;;:::i;:::-;-1:-1:-1;8602:9:1;;8541:76::o;8622:380::-;8707:1;8697:12;;8754:1;8744:12;;;8765:2;;8819:4;8811:6;8807:17;8797:27;;8765:2;8872;8864:6;8861:14;8841:18;8838:38;8835:2;;;8918:10;8913:3;8909:20;8906:1;8899:31;8953:4;8950:1;8943:15;8981:4;8978:1;8971:15;8835:2;;8677:325;;;:::o;9007:127::-;9068:10;9063:3;9059:20;9056:1;9049:31;9099:4;9096:1;9089:15;9123:4;9120:1;9113:15

Swarm Source

ipfs://5ef97add2e768e847d72e35c0c6ddb5102d882c7f4f7add8961eb32d87432556
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.