ETH Price: $3,317.48 (+0.29%)
Gas: 23 Gwei

Token

EGG (EGG)
 

Overview

Max Total Supply

5,825,247.231273148148147677 EGG

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,682.09148148148148148 EGG

Value
$0.00
0x7a9c64ff738770b8ab83e7d468c8791dc5d97375
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:
EGG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-04
*/

// 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 v4.4.1 (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 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);
    }
}

// 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.6.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.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:
     *
     * - `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 `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:
     *
     * - `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;
        }
        _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;
        _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 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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

// File: contracts/egg.sol


pragma solidity ^0.8.7;




contract EGG is ERC20, ERC20Burnable, Ownable {
    mapping(address => bool) public staff;


    modifier onlyAllowed() {
        require(msg.sender == owner() || staff[msg.sender]);
        _;
    }

    constructor() ERC20("EGG", "EGG") {}


    function setStaff(address _user, bool _state) public onlyOwner{
        staff[_user] = _state;
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function mintFromExtentionContract(address _user, uint256 _amount) public onlyAllowed {
        _mint(_user, _amount);
    }

    function burnFromExtentionContract(address _user, uint256 _amount) public onlyAllowed {
        _burn(_user, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFromExtentionContract","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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFromExtentionContract","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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setStaff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020016245474760e81b8152506040518060400160405280600381526020016245474760e81b815250816003908051906020019062000062929190620000f1565b50805162000078906004906020840190620000f1565b505050620000956200008f6200009b60201b60201c565b6200009f565b620001d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b610ee680620001e46000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80634f83158a116100b85780638da5cb5b1161007c5780638da5cb5b1461028c57806395d89b41146102a7578063a457c2d7146102af578063a9059cbb146102c2578063dd62ed3e146102d5578063f2fde38b146102e857600080fd5b80634f83158a1461021257806370a0823114610235578063715018a61461025e578063750ba6fc1461026657806379cc67901461027957600080fd5b8063313ce567116100ff578063313ce567146101b7578063328d13e3146101c657806339509351146101d957806340c10f19146101ec57806342966c68146101ff57600080fd5b806306fdde031461013c578063095ea7b31461015a5780630cdca63f1461017d57806318160ddd1461019257806323b872dd146101a4575b600080fd5b6101446102fb565b6040516101519190610da6565b60405180910390f35b61016d610168366004610d63565b61038d565b6040519015158152602001610151565b61019061018b366004610d63565b6103a5565b005b6002545b604051908152602001610151565b61016d6101b2366004610ceb565b6103e4565b60405160128152602001610151565b6101906101d4366004610d27565b610408565b61016d6101e7366004610d63565b610466565b6101906101fa366004610d63565b610488565b61019061020d366004610d8d565b6104bc565b61016d610220366004610c96565b60066020526000908152604090205460ff1681565b610196610243366004610c96565b6001600160a01b031660009081526020819052604090205490565b6101906104c9565b610190610274366004610d63565b6104ff565b610190610287366004610d63565b610530565b6005546040516001600160a01b039091168152602001610151565b61014461053b565b61016d6102bd366004610d63565b61054a565b61016d6102d0366004610d63565b6105c5565b6101966102e3366004610cb8565b6105d3565b6101906102f6366004610c96565b6105fe565b60606003805461030a90610e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461033690610e5f565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60003361039b818585610696565b5060019392505050565b6005546001600160a01b03163314806103cd57503360009081526006602052604090205460ff165b6103d657600080fd5b6103e082826107bb565b5050565b6000336103f2858285610901565b6103fd85858561097b565b506001949350505050565b6005546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290610dfb565b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60003361039b81858561047983836105d3565b6104839190610e30565b610696565b6005546001600160a01b031633146104b25760405162461bcd60e51b815260040161043290610dfb565b6103e08282610b49565b6104c633826107bb565b50565b6005546001600160a01b031633146104f35760405162461bcd60e51b815260040161043290610dfb565b6104fd6000610c28565b565b6005546001600160a01b031633148061052757503360009081526006602052604090205460ff165b6104b257600080fd5b6103d6823383610901565b60606004805461030a90610e5f565b6000338161055882866105d3565b9050838110156105b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610432565b6103fd8286868403610696565b60003361039b81858561097b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146106285760405162461bcd60e51b815260040161043290610dfb565b6001600160a01b03811661068d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b6104c681610c28565b6001600160a01b0383166106f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610432565b6001600160a01b0382166107595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610432565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661081b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610432565b6001600160a01b0382166000908152602081905260409020548181101561088f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610432565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108be908490610e48565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107ae565b600061090d84846105d3565b9050600019811461097557818110156109685760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610432565b6109758484848403610696565b50505050565b6001600160a01b0383166109df5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610432565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610432565b6001600160a01b03831660009081526020819052604090205481811015610ab95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610432565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af0908490610e30565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3c91815260200190565b60405180910390a3610975565b6001600160a01b038216610b9f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610432565b8060026000828254610bb19190610e30565b90915550506001600160a01b03821660009081526020819052604081208054839290610bde908490610e30565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610c9157600080fd5b919050565b600060208284031215610ca857600080fd5b610cb182610c7a565b9392505050565b60008060408385031215610ccb57600080fd5b610cd483610c7a565b9150610ce260208401610c7a565b90509250929050565b600080600060608486031215610d0057600080fd5b610d0984610c7a565b9250610d1760208501610c7a565b9150604084013590509250925092565b60008060408385031215610d3a57600080fd5b610d4383610c7a565b915060208301358015158114610d5857600080fd5b809150509250929050565b60008060408385031215610d7657600080fd5b610d7f83610c7a565b946020939093013593505050565b600060208284031215610d9f57600080fd5b5035919050565b600060208083528351808285015260005b81811015610dd357858101830151858201604001528201610db7565b81811115610de5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e4357610e43610e9a565b500190565b600082821015610e5a57610e5a610e9a565b500390565b600181811c90821680610e7357607f821691505b60208210811415610e9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220855e47c6bd966cedd2383afa80de27c09164fcb957e4a3063037dd0659e4ce4d64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80634f83158a116100b85780638da5cb5b1161007c5780638da5cb5b1461028c57806395d89b41146102a7578063a457c2d7146102af578063a9059cbb146102c2578063dd62ed3e146102d5578063f2fde38b146102e857600080fd5b80634f83158a1461021257806370a0823114610235578063715018a61461025e578063750ba6fc1461026657806379cc67901461027957600080fd5b8063313ce567116100ff578063313ce567146101b7578063328d13e3146101c657806339509351146101d957806340c10f19146101ec57806342966c68146101ff57600080fd5b806306fdde031461013c578063095ea7b31461015a5780630cdca63f1461017d57806318160ddd1461019257806323b872dd146101a4575b600080fd5b6101446102fb565b6040516101519190610da6565b60405180910390f35b61016d610168366004610d63565b61038d565b6040519015158152602001610151565b61019061018b366004610d63565b6103a5565b005b6002545b604051908152602001610151565b61016d6101b2366004610ceb565b6103e4565b60405160128152602001610151565b6101906101d4366004610d27565b610408565b61016d6101e7366004610d63565b610466565b6101906101fa366004610d63565b610488565b61019061020d366004610d8d565b6104bc565b61016d610220366004610c96565b60066020526000908152604090205460ff1681565b610196610243366004610c96565b6001600160a01b031660009081526020819052604090205490565b6101906104c9565b610190610274366004610d63565b6104ff565b610190610287366004610d63565b610530565b6005546040516001600160a01b039091168152602001610151565b61014461053b565b61016d6102bd366004610d63565b61054a565b61016d6102d0366004610d63565b6105c5565b6101966102e3366004610cb8565b6105d3565b6101906102f6366004610c96565b6105fe565b60606003805461030a90610e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461033690610e5f565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60003361039b818585610696565b5060019392505050565b6005546001600160a01b03163314806103cd57503360009081526006602052604090205460ff165b6103d657600080fd5b6103e082826107bb565b5050565b6000336103f2858285610901565b6103fd85858561097b565b506001949350505050565b6005546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290610dfb565b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60003361039b81858561047983836105d3565b6104839190610e30565b610696565b6005546001600160a01b031633146104b25760405162461bcd60e51b815260040161043290610dfb565b6103e08282610b49565b6104c633826107bb565b50565b6005546001600160a01b031633146104f35760405162461bcd60e51b815260040161043290610dfb565b6104fd6000610c28565b565b6005546001600160a01b031633148061052757503360009081526006602052604090205460ff165b6104b257600080fd5b6103d6823383610901565b60606004805461030a90610e5f565b6000338161055882866105d3565b9050838110156105b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610432565b6103fd8286868403610696565b60003361039b81858561097b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146106285760405162461bcd60e51b815260040161043290610dfb565b6001600160a01b03811661068d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b6104c681610c28565b6001600160a01b0383166106f85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610432565b6001600160a01b0382166107595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610432565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821661081b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610432565b6001600160a01b0382166000908152602081905260409020548181101561088f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610432565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108be908490610e48565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107ae565b600061090d84846105d3565b9050600019811461097557818110156109685760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610432565b6109758484848403610696565b50505050565b6001600160a01b0383166109df5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610432565b6001600160a01b038216610a415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610432565b6001600160a01b03831660009081526020819052604090205481811015610ab95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610432565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af0908490610e30565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3c91815260200190565b60405180910390a3610975565b6001600160a01b038216610b9f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610432565b8060026000828254610bb19190610e30565b90915550506001600160a01b03821660009081526020819052604081208054839290610bde908490610e30565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610c9157600080fd5b919050565b600060208284031215610ca857600080fd5b610cb182610c7a565b9392505050565b60008060408385031215610ccb57600080fd5b610cd483610c7a565b9150610ce260208401610c7a565b90509250929050565b600080600060608486031215610d0057600080fd5b610d0984610c7a565b9250610d1760208501610c7a565b9150604084013590509250925092565b60008060408385031215610d3a57600080fd5b610d4383610c7a565b915060208301358015158114610d5857600080fd5b809150509250929050565b60008060408385031215610d7657600080fd5b610d7f83610c7a565b946020939093013593505050565b600060208284031215610d9f57600080fd5b5035919050565b600060208083528351808285015260005b81811015610dd357858101830151858201604001528201610db7565b81811115610de5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e4357610e43610e9a565b500190565b600082821015610e5a57610e5a610e9a565b500390565b600181811c90821680610e7357607f821691505b60208210811415610e9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220855e47c6bd966cedd2383afa80de27c09164fcb957e4a3063037dd0659e4ce4d64736f6c63430008070033

Deployed Bytecode Sourcemap

21207:736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11534:201;;;;;;:::i;:::-;;:::i;:::-;;;2150:14:1;;2143:22;2125:41;;2113:2;2098:18;11534:201:0;1985:187:1;21814:126:0;;;;;;:::i;:::-;;:::i;:::-;;10303:108;10391:12;;10303:108;;;7647:25:1;;;7635:2;7620:18;10303:108:0;7501:177:1;12315:295:0;;;;;;:::i;:::-;;:::i;10145:93::-;;;10228:2;7825:36:1;;7813:2;7798:18;10145:93:0;7683:184:1;21467:102:0;;;;;;:::i;:::-;;:::i;13019:238::-;;;;;;:::i;:::-;;:::i;21577:95::-;;;;;;:::i;:::-;;:::i;20561:91::-;;;;;;:::i;:::-;;:::i;21260:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10474:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10575:18:0;10548:7;10575:18;;;;;;;;;;;;10474:127;2606:103;;;:::i;21680:126::-;;;;;;:::i;:::-;;:::i;20971:164::-;;;;;;:::i;:::-;;:::i;1955:87::-;2028:6;;1955:87;;-1:-1:-1;;;;;2028:6:0;;;1923:51:1;;1911:2;1896:18;1955:87:0;1777:203:1;9402:104:0;;;:::i;13760:436::-;;;;;;:::i;:::-;;:::i;10807:193::-;;;;;;:::i;:::-;;:::i;11063:151::-;;;;;;:::i;:::-;;:::i;2864:201::-;;;;;;:::i;:::-;;:::i;9183:100::-;9237:13;9270:5;9263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;:::o;11534:201::-;11617:4;759:10;11673:32;759:10;11689:7;11698:6;11673:8;:32::i;:::-;-1:-1:-1;11723:4:0;;11534:201;-1:-1:-1;;;11534:201:0:o;21814:126::-;2028:6;;-1:-1:-1;;;;;2028:6:0;21350:10;:21;;:42;;-1:-1:-1;21381:10:0;21375:17;;;;:5;:17;;;;;;;;21350:42;21342:51;;;;;;21911:21:::1;21917:5;21924:7;21911:5;:21::i;:::-;21814:126:::0;;:::o;12315:295::-;12446:4;759:10;12504:38;12520:4;759:10;12535:6;12504:15;:38::i;:::-;12553:27;12563:4;12569:2;12573:6;12553:9;:27::i;:::-;-1:-1:-1;12598:4:0;;12315:295;-1:-1:-1;;;;12315:295:0:o;21467:102::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;21540:12:0;;;::::1;;::::0;;;:5:::1;:12;::::0;;;;:21;;-1:-1:-1;;21540:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21467:102::o;13019:238::-;13107:4;759:10;13163:64;759:10;13179:7;13216:10;13188:25;759:10;13179:7;13188:9;:25::i;:::-;:38;;;;:::i;:::-;13163:8;:64::i;21577:95::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;21647:17:::1;21653:2;21657:6;21647:5;:17::i;20561:91::-:0;20617:27;759:10;20637:6;20617:5;:27::i;:::-;20561:91;:::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;21680:126::-;2028:6;;-1:-1:-1;;;;;2028:6:0;21350:10;:21;;:42;;-1:-1:-1;21381:10:0;21375:17;;;;:5;:17;;;;;;;;21350:42;21342:51;;;;;20971:164;21048:46;21064:7;759:10;21087:6;21048:15;:46::i;9402:104::-;9458:13;9491:7;9484:14;;;;;:::i;13760:436::-;13853:4;759:10;13853:4;13936:25;759:10;13953:7;13936:9;:25::i;:::-;13909:52;;14000:15;13980:16;:35;;13972:85;;;;-1:-1:-1;;;13972:85:0;;6937:2:1;13972:85:0;;;6919:21:1;6976:2;6956:18;;;6949:30;7015:34;6995:18;;;6988:62;-1:-1:-1;;;7066:18:1;;;7059:35;7111:19;;13972:85:0;6735:401:1;13972:85:0;14093:60;14102:5;14109:7;14137:15;14118:16;:34;14093:8;:60::i;10807:193::-;10886:4;759:10;10942:28;759:10;10959:2;10963:6;10942:9;:28::i;11063:151::-;-1:-1:-1;;;;;11179:18:0;;;11152:7;11179:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11063:151::o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;3788:2:1;2945:73:0::1;::::0;::::1;3770:21:1::0;3827:2;3807:18;;;3800:30;3866:34;3846:18;;;3839:62;-1:-1:-1;;;3917:18:1;;;3910:36;3963:19;;2945:73:0::1;3586:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;17394:380::-:0;-1:-1:-1;;;;;17530:19:0;;17522:68;;;;-1:-1:-1;;;17522:68:0;;6532:2:1;17522:68:0;;;6514:21:1;6571:2;6551:18;;;6544:30;6610:34;6590:18;;;6583:62;-1:-1:-1;;;6661:18:1;;;6654:34;6705:19;;17522:68:0;6330:400:1;17522:68:0;-1:-1:-1;;;;;17609:21:0;;17601:68;;;;-1:-1:-1;;;17601:68:0;;4195:2:1;17601:68:0;;;4177:21:1;4234:2;4214:18;;;4207:30;4273:34;4253:18;;;4246:62;-1:-1:-1;;;4324:18:1;;;4317:32;4366:19;;17601:68:0;3993:398:1;17601:68:0;-1:-1:-1;;;;;17682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17734:32;;7647:25:1;;;17734:32:0;;7620:18:1;17734:32:0;;;;;;;;17394:380;;;:::o;16365:591::-;-1:-1:-1;;;;;16449:21:0;;16441:67;;;;-1:-1:-1;;;16441:67:0;;5724:2:1;16441:67:0;;;5706:21:1;5763:2;5743:18;;;5736:30;5802:34;5782:18;;;5775:62;-1:-1:-1;;;5853:18:1;;;5846:31;5894:19;;16441:67:0;5522:397:1;16441:67:0;-1:-1:-1;;;;;16608:18:0;;16583:22;16608:18;;;;;;;;;;;16645:24;;;;16637:71;;;;-1:-1:-1;;;16637:71:0;;3385:2:1;16637:71:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:32;3556:19;;16637:71:0;3183:398:1;16637:71:0;-1:-1:-1;;;;;16744:18:0;;:9;:18;;;;;;;;;;16765:23;;;16744:44;;16810:12;:22;;16782:6;;16744:9;16810:22;;16782:6;;16810:22;:::i;:::-;;;;-1:-1:-1;;16850:37:0;;7647:25:1;;;16876:1:0;;-1:-1:-1;;;;;16850:37:0;;;;;7635:2:1;7620:18;16850:37:0;7501:177:1;18065:453:0;18200:24;18227:25;18237:5;18244:7;18227:9;:25::i;:::-;18200:52;;-1:-1:-1;;18267:16:0;:37;18263:248;;18349:6;18329:16;:26;;18321:68;;;;-1:-1:-1;;;18321:68:0;;4598:2:1;18321:68:0;;;4580:21:1;4637:2;4617:18;;;4610:30;4676:31;4656:18;;;4649:59;4725:18;;18321:68:0;4396:353:1;18321:68:0;18433:51;18442:5;18449:7;18477:6;18458:16;:25;18433:8;:51::i;:::-;18189:329;18065:453;;;:::o;14675:671::-;-1:-1:-1;;;;;14806:18:0;;14798:68;;;;-1:-1:-1;;;14798:68:0;;6126:2:1;14798:68:0;;;6108:21:1;6165:2;6145:18;;;6138:30;6204:34;6184:18;;;6177:62;-1:-1:-1;;;6255:18:1;;;6248:35;6300:19;;14798:68:0;5924:401:1;14798:68:0;-1:-1:-1;;;;;14885:16:0;;14877:64;;;;-1:-1:-1;;;14877:64:0;;2981:2:1;14877:64:0;;;2963:21:1;3020:2;3000:18;;;2993:30;3059:34;3039:18;;;3032:62;-1:-1:-1;;;3110:18:1;;;3103:33;3153:19;;14877:64:0;2779:399:1;14877:64:0;-1:-1:-1;;;;;15027:15:0;;15005:19;15027:15;;;;;;;;;;;15061:21;;;;15053:72;;;;-1:-1:-1;;;15053:72:0;;4956:2:1;15053:72:0;;;4938:21:1;4995:2;4975:18;;;4968:30;5034:34;5014:18;;;5007:62;-1:-1:-1;;;5085:18:1;;;5078:36;5131:19;;15053:72:0;4754:402:1;15053:72:0;-1:-1:-1;;;;;15161:15:0;;;:9;:15;;;;;;;;;;;15179:20;;;15161:38;;15221:13;;;;;;;;:23;;15193:6;;15161:9;15221:23;;15193:6;;15221:23;:::i;:::-;;;;;;;;15277:2;-1:-1:-1;;;;;15262:26:0;15271:4;-1:-1:-1;;;;;15262:26:0;;15281:6;15262:26;;;;7647:25:1;;7635:2;7620:18;;7501:177;15262:26:0;;;;;;;;15301:37;16365:591;15633:399;-1:-1:-1;;;;;15717:21:0;;15709:65;;;;-1:-1:-1;;;15709:65:0;;7343:2:1;15709:65:0;;;7325:21:1;7382:2;7362:18;;;7355:30;7421:33;7401:18;;;7394:61;7472:18;;15709:65:0;7141:355:1;15709:65:0;15865:6;15849:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15882:18:0;;:9;:18;;;;;;;;;;:28;;15904:6;;15882:9;:28;;15904:6;;15882:28;:::i;:::-;;;;-1:-1:-1;;15926:37:0;;7647:25:1;;;-1:-1:-1;;;;;15926:37:0;;;15943:1;;15926:37;;7635:2:1;7620:18;15926:37:0;;;;;;;21814:126;;:::o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:347::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1225:2;1214:9;1210:18;1197:32;1272:5;1265:13;1258:21;1251:5;1248:32;1238:60;;1294:1;1291;1284:12;1238:60;1317:5;1307:15;;;981:347;;;;;:::o;1333:254::-;1401:6;1409;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;1501:29;1520:9;1501:29;:::i;:::-;1491:39;1577:2;1562:18;;;;1549:32;;-1:-1:-1;;;1333:254:1:o;1592:180::-;1651:6;1704:2;1692:9;1683:7;1679:23;1675:32;1672:52;;;1720:1;1717;1710:12;1672:52;-1:-1:-1;1743:23:1;;1592:180;-1:-1:-1;1592:180:1:o;2177:597::-;2289:4;2318:2;2347;2336:9;2329:21;2379:6;2373:13;2422:6;2417:2;2406:9;2402:18;2395:34;2447:1;2457:140;2471:6;2468:1;2465:13;2457:140;;;2566:14;;;2562:23;;2556:30;2532:17;;;2551:2;2528:26;2521:66;2486:10;;2457:140;;;2615:6;2612:1;2609:13;2606:91;;;2685:1;2680:2;2671:6;2660:9;2656:22;2652:31;2645:42;2606:91;-1:-1:-1;2758:2:1;2737:15;-1:-1:-1;;2733:29:1;2718:45;;;;2765:2;2714:54;;2177:597;-1:-1:-1;;;2177:597:1:o;5161:356::-;5363:2;5345:21;;;5382:18;;;5375:30;5441:34;5436:2;5421:18;;5414:62;5508:2;5493:18;;5161:356::o;7872:128::-;7912:3;7943:1;7939:6;7936:1;7933:13;7930:39;;;7949:18;;:::i;:::-;-1:-1:-1;7985:9:1;;7872:128::o;8005:125::-;8045:4;8073:1;8070;8067:8;8064:34;;;8078:18;;:::i;:::-;-1:-1:-1;8115:9:1;;8005:125::o;8135:380::-;8214:1;8210:12;;;;8257;;;8278:61;;8332:4;8324:6;8320:17;8310:27;;8278:61;8385:2;8377:6;8374:14;8354:18;8351:38;8348:161;;;8431:10;8426:3;8422:20;8419:1;8412:31;8466:4;8463:1;8456:15;8494:4;8491:1;8484:15;8348:161;;8135:380;;;:::o;8520:127::-;8581:10;8576:3;8572:20;8569:1;8562:31;8612:4;8609:1;8602:15;8636:4;8633:1;8626:15

Swarm Source

ipfs://855e47c6bd966cedd2383afa80de27c09164fcb957e4a3063037dd0659e4ce4d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.