ETH Price: $2,520.62 (-0.34%)

Token

MOMO (MOMO)
 

Overview

Max Total Supply

1,000,000,000 MOMO

Holders

1,110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000 MOMO

Value
$0.00
0x8fd4a2cb7c8ae25965c637f39385f6e9de7d7f1e
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:
MOMOToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

contract MOMOToken is ERC20, ERC20Burnable, Ownable {
    address public router;

    uint256 private constant TOTALSUPPLY = 1_000_000_000;
    uint256 public TaxRate;
    uint256 public Beps = 10_000;

    address[] private WhiteListUsers;
    address[] private BlackListUsers;

    mapping(address => bool) public isWhiteListed;
    mapping(address => bool) public isBlackListed;

    address TaxWallet = 0x2812da9FD8d2BfD710d9Be2bC15EB771Bdc5F96c;

    constructor(address _router) ERC20("MOMO", "MOMO") {
        TaxRate = 100;

        _mint(msg.sender, TOTALSUPPLY * 10**decimals());

        router = _router;
    }

    function addWhiteListUser(address[] memory _users) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            if (!isWhiteListed[_users[i]]) {
                isWhiteListed[_users[i]] = true;
                WhiteListUsers.push(_users[i]);
            }
        }
    }

    function addBlackListUser(address[] memory _users) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            if (!isBlackListed[_users[i]]) {
                isBlackListed[_users[i]] = true;
                BlackListUsers.push(_users[i]);
            }
        }
    }

    function getBlacklistUsers() public view returns (address[] memory) {
        return BlackListUsers;
    }

    function getWhitelistUsers() public view returns (address[] memory) {
        return WhiteListUsers;
    }

    // receive eth
    receive() external payable {}

    function setTaxRate(uint256 _taxRate) public onlyOwner {
        require(_taxRate < Beps, "Not allow");
        TaxRate = _taxRate;
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        if (to == router) {
            require(isBlackListed[msg.sender], "User Blacklisted");
            if (isWhiteListed[msg.sender]) {
                // no tax
                address owner = _msgSender();
                _transfer(owner, to, amount);
            } else {
                // tax
                address owner = _msgSender();
                uint256 taxAmount = (amount * TaxRate) / Beps;
                _transfer(owner, TaxWallet, taxAmount); // For tax
                _transfer(owner, to, amount - taxAmount); // To wallet address
            }
        } else {
            address owner = _msgSender();
            _transfer(owner, to, amount);
        }
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        if (to == router) {
            require(isBlackListed[from], "User Blacklisted");
            if (isWhiteListed[msg.sender]) {
                // no tax
                address spender = _msgSender();
                _spendAllowance(from, spender, amount);
                _transfer(from, to, amount);
            } else {
                // tax
                address spender = _msgSender();
                _spendAllowance(from, spender, amount);
                uint256 taxAmount = (amount * TaxRate) / Beps;
                _transfer(from, TaxWallet, taxAmount); // For tax
                _transfer(from, to, amount - taxAmount); // To wallet address
            }
        } else {
            address spender = _msgSender();
            _spendAllowance(from, spender, amount);
            _transfer(from, to, amount);
        }
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"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":[],"name":"Beps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addBlackListUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhiteListUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlacklistUsers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistUsers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052612710600855600d80546001600160a01b031916732812da9fd8d2bfd710d9be2bc15eb771bdc5f96c1790553480156200003d57600080fd5b5060405162001a0838038062001a088339810160408190526200006091620002e8565b6040805180820182526004808252634d4f4d4f60e01b6020808401828152855180870190965292855284015281519192916200009f9160039162000242565b508051620000b590600490602084019062000242565b505050620000d2620000cc6200012660201b60201c565b6200012a565b60646007556200010033620000ea6012600a6200042f565b620000fa90633b9aca0062000440565b6200017c565b600680546001600160a01b0319166001600160a01b0392909216919091179055620004ba565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001eb919062000462565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b82805462000250906200047d565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600060208284031215620002fb57600080fd5b81516001600160a01b03811681146200031357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003715781600019048211156200035557620003556200031a565b808516156200036357918102915b93841c939080029062000335565b509250929050565b6000826200038a5750600162000429565b81620003995750600062000429565b8160018114620003b25760028114620003bd57620003dd565b600191505062000429565b60ff841115620003d157620003d16200031a565b50506001821b62000429565b5060208310610133831016604e8410600b841016171562000402575081810a62000429565b6200040e838362000330565b80600019048211156200042557620004256200031a565b0290505b92915050565b60006200031360ff84168362000379565b60008160001904831182151516156200045d576200045d6200031a565b500290565b600082198211156200047857620004786200031a565b500190565b600181811c908216806200049257607f821691505b60208210811415620004b457634e487b7160e01b600052602260045260246000fd5b50919050565b61153e80620004ca6000396000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063c6d69a301161008a578063e8f847b311610064578063e8f847b31461048c578063e902276e146104a2578063f2fde38b146104c2578063f887ea40146104e257600080fd5b8063c6d69a301461041c578063dd62ed3e1461043c578063e47d60601461045c57600080fd5b8063715018a61461036057806379cc6790146103755780638da5cb5b1461039557806395d89b41146103c7578063a457c2d7146103dc578063a9059cbb146103fc57600080fd5b80632ed2dea01161013e5780633a4e5fac116101185780633a4e5fac146102c557806342966c68146102da5780636f9170f6146102fa57806370a082311461032a57600080fd5b80632ed2dea014610267578063313ce5671461028957806339509351146102a557600080fd5b806306fdde0314610191578063095ea7b3146101bc57806309982e82146101ec5780630e4543bb1461020e57806318160ddd1461023257806323b872dd1461024757600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610502565b6040516101b391906111a9565b60405180910390f35b3480156101c857600080fd5b506101dc6101d736600461121a565b610594565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020c61020736600461125a565b6105ac565b005b34801561021a57600080fd5b5061022460075481565b6040519081526020016101b3565b34801561023e57600080fd5b50600254610224565b34801561025357600080fd5b506101dc61026236600461131f565b6106be565b34801561027357600080fd5b5061027c6107ed565b6040516101b3919061135b565b34801561029557600080fd5b50604051601281526020016101b3565b3480156102b157600080fd5b506101dc6102c036600461121a565b61084e565b3480156102d157600080fd5b5061027c610870565b3480156102e657600080fd5b5061020c6102f53660046113a8565b6108d0565b34801561030657600080fd5b506101dc6103153660046113c1565b600b6020526000908152604090205460ff1681565b34801561033657600080fd5b506102246103453660046113c1565b6001600160a01b031660009081526020819052604090205490565b34801561036c57600080fd5b5061020c6108dd565b34801561038157600080fd5b5061020c61039036600461121a565b6108f1565b3480156103a157600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101b3565b3480156103d357600080fd5b506101a6610906565b3480156103e857600080fd5b506101dc6103f736600461121a565b610915565b34801561040857600080fd5b506101dc61041736600461121a565b61099b565b34801561042857600080fd5b5061020c6104373660046113a8565b610a97565b34801561044857600080fd5b506102246104573660046113e3565b610ae1565b34801561046857600080fd5b506101dc6104773660046113c1565b600c6020526000908152604090205460ff1681565b34801561049857600080fd5b5061022460085481565b3480156104ae57600080fd5b5061020c6104bd36600461125a565b610b0c565b3480156104ce57600080fd5b5061020c6104dd3660046113c1565b610c1a565b3480156104ee57600080fd5b506006546103af906001600160a01b031681565b60606003805461051190611416565b80601f016020809104026020016040519081016040528092919081815260200182805461053d90611416565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b6000336105a2818585610c90565b5060019392505050565b6105b4610db5565b60005b81518110156106ba57600b60008383815181106105d6576105d6611451565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff166106a8576001600b600084848151811061061957610619611451565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600982828151811061066c5761066c611451565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790555b806106b28161147d565b9150506105b7565b5050565b6006546000906001600160a01b03848116911614156107cb576001600160a01b0384166000908152600c602052604090205460ff166107375760405162461bcd60e51b815260206004820152601060248201526f155cd95c88109b1858dadb1a5cdd195960821b60448201526064015b60405180910390fd5b336000908152600b602052604090205460ff161561076c573361075b858285610e0f565b610766858585610e89565b506105a2565b33610778858285610e0f565b60006008546007548561078b9190611498565b61079591906114b7565b600d549091506107b09087906001600160a01b031683610e89565b6107c486866107bf84886114d9565b610e89565b50506105a2565b336107d7858285610e0f565b6107e2858585610e89565b505060019392505050565b6060600a80548060200260200160405190810160405280929190818152602001828054801561058a57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610827575050505050905090565b6000336105a28185856108618383610ae1565b61086b91906114f0565b610c90565b6060600980548060200260200160405190810160405280929190818152602001828054801561058a576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610827575050505050905090565b6108da338261102d565b50565b6108e5610db5565b6108ef6000611157565b565b6108fc823383610e0f565b6106ba828261102d565b60606004805461051190611416565b600033816109238286610ae1565b9050838110156109835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072e565b6109908286868403610c90565b506001949350505050565b6006546000906001600160a01b0384811691161415610a8057336000908152600c602052604090205460ff16610a065760405162461bcd60e51b815260206004820152601060248201526f155cd95c88109b1858dadb1a5cdd195960821b604482015260640161072e565b336000908152600b602052604090205460ff1615610a305733610a2a818585610e89565b50610a8e565b6008546007543391600091610a459086611498565b610a4f91906114b7565b600d54909150610a6a9083906001600160a01b031683610e89565b610a7982866107bf84886114d9565b5050610a8e565b33610a8c818585610e89565b505b50600192915050565b610a9f610db5565b6008548110610adc5760405162461bcd60e51b81526020600482015260096024820152684e6f7420616c6c6f7760b81b604482015260640161072e565b600755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b14610db5565b60005b81518110156106ba57600c6000838381518110610b3657610b36611451565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610c08576001600c6000848481518110610b7957610b79611451565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600a828281518110610bcc57610bcc611451565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790555b80610c128161147d565b915050610b17565b610c22610db5565b6001600160a01b038116610c875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b6108da81611157565b6001600160a01b038316610cf25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b6001600160a01b038216610d535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146108ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072e565b6000610e1b8484610ae1565b90506000198114610e835781811015610e765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161072e565b610e838484848403610c90565b50505050565b6001600160a01b038316610eed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161072e565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072e565b6001600160a01b03831660009081526020819052604090205481811015610fc75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e83565b6001600160a01b03821661108d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161072e565b6001600160a01b038216600090815260208190526040902054818110156111015760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161072e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610da8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156111d6578581018301518582016040015282016111ba565b818111156111e8576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461121557600080fd5b919050565b6000806040838503121561122d57600080fd5b611236836111fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561126d57600080fd5b823567ffffffffffffffff8082111561128557600080fd5b818501915085601f83011261129957600080fd5b8135818111156112ab576112ab611244565b8060051b604051601f19603f830116810181811085821117156112d0576112d0611244565b6040529182528482019250838101850191888311156112ee57600080fd5b938501935b8285101561131357611304856111fe565b845293850193928501926112f3565b98975050505050505050565b60008060006060848603121561133457600080fd5b61133d846111fe565b925061134b602085016111fe565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561139c5783516001600160a01b031683529284019291840191600101611377565b50909695505050505050565b6000602082840312156113ba57600080fd5b5035919050565b6000602082840312156113d357600080fd5b6113dc826111fe565b9392505050565b600080604083850312156113f657600080fd5b6113ff836111fe565b915061140d602084016111fe565b90509250929050565b600181811c9082168061142a57607f821691505b6020821081141561144b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561149157611491611467565b5060010190565b60008160001904831182151516156114b2576114b2611467565b500290565b6000826114d457634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156114eb576114eb611467565b500390565b6000821982111561150357611503611467565b50019056fea26469706673582212205cb9bd3a0f7234cb5740122e1c3f4f5c89fa1bb908ddc161dc85e3140c14179264736f6c63430008090033000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564

Deployed Bytecode

0x6080604052600436106101855760003560e01c8063715018a6116100d1578063c6d69a301161008a578063e8f847b311610064578063e8f847b31461048c578063e902276e146104a2578063f2fde38b146104c2578063f887ea40146104e257600080fd5b8063c6d69a301461041c578063dd62ed3e1461043c578063e47d60601461045c57600080fd5b8063715018a61461036057806379cc6790146103755780638da5cb5b1461039557806395d89b41146103c7578063a457c2d7146103dc578063a9059cbb146103fc57600080fd5b80632ed2dea01161013e5780633a4e5fac116101185780633a4e5fac146102c557806342966c68146102da5780636f9170f6146102fa57806370a082311461032a57600080fd5b80632ed2dea014610267578063313ce5671461028957806339509351146102a557600080fd5b806306fdde0314610191578063095ea7b3146101bc57806309982e82146101ec5780630e4543bb1461020e57806318160ddd1461023257806323b872dd1461024757600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a6610502565b6040516101b391906111a9565b60405180910390f35b3480156101c857600080fd5b506101dc6101d736600461121a565b610594565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020c61020736600461125a565b6105ac565b005b34801561021a57600080fd5b5061022460075481565b6040519081526020016101b3565b34801561023e57600080fd5b50600254610224565b34801561025357600080fd5b506101dc61026236600461131f565b6106be565b34801561027357600080fd5b5061027c6107ed565b6040516101b3919061135b565b34801561029557600080fd5b50604051601281526020016101b3565b3480156102b157600080fd5b506101dc6102c036600461121a565b61084e565b3480156102d157600080fd5b5061027c610870565b3480156102e657600080fd5b5061020c6102f53660046113a8565b6108d0565b34801561030657600080fd5b506101dc6103153660046113c1565b600b6020526000908152604090205460ff1681565b34801561033657600080fd5b506102246103453660046113c1565b6001600160a01b031660009081526020819052604090205490565b34801561036c57600080fd5b5061020c6108dd565b34801561038157600080fd5b5061020c61039036600461121a565b6108f1565b3480156103a157600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101b3565b3480156103d357600080fd5b506101a6610906565b3480156103e857600080fd5b506101dc6103f736600461121a565b610915565b34801561040857600080fd5b506101dc61041736600461121a565b61099b565b34801561042857600080fd5b5061020c6104373660046113a8565b610a97565b34801561044857600080fd5b506102246104573660046113e3565b610ae1565b34801561046857600080fd5b506101dc6104773660046113c1565b600c6020526000908152604090205460ff1681565b34801561049857600080fd5b5061022460085481565b3480156104ae57600080fd5b5061020c6104bd36600461125a565b610b0c565b3480156104ce57600080fd5b5061020c6104dd3660046113c1565b610c1a565b3480156104ee57600080fd5b506006546103af906001600160a01b031681565b60606003805461051190611416565b80601f016020809104026020016040519081016040528092919081815260200182805461053d90611416565b801561058a5780601f1061055f5761010080835404028352916020019161058a565b820191906000526020600020905b81548152906001019060200180831161056d57829003601f168201915b5050505050905090565b6000336105a2818585610c90565b5060019392505050565b6105b4610db5565b60005b81518110156106ba57600b60008383815181106105d6576105d6611451565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff166106a8576001600b600084848151811061061957610619611451565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600982828151811061066c5761066c611451565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790555b806106b28161147d565b9150506105b7565b5050565b6006546000906001600160a01b03848116911614156107cb576001600160a01b0384166000908152600c602052604090205460ff166107375760405162461bcd60e51b815260206004820152601060248201526f155cd95c88109b1858dadb1a5cdd195960821b60448201526064015b60405180910390fd5b336000908152600b602052604090205460ff161561076c573361075b858285610e0f565b610766858585610e89565b506105a2565b33610778858285610e0f565b60006008546007548561078b9190611498565b61079591906114b7565b600d549091506107b09087906001600160a01b031683610e89565b6107c486866107bf84886114d9565b610e89565b50506105a2565b336107d7858285610e0f565b6107e2858585610e89565b505060019392505050565b6060600a80548060200260200160405190810160405280929190818152602001828054801561058a57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610827575050505050905090565b6000336105a28185856108618383610ae1565b61086b91906114f0565b610c90565b6060600980548060200260200160405190810160405280929190818152602001828054801561058a576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610827575050505050905090565b6108da338261102d565b50565b6108e5610db5565b6108ef6000611157565b565b6108fc823383610e0f565b6106ba828261102d565b60606004805461051190611416565b600033816109238286610ae1565b9050838110156109835760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072e565b6109908286868403610c90565b506001949350505050565b6006546000906001600160a01b0384811691161415610a8057336000908152600c602052604090205460ff16610a065760405162461bcd60e51b815260206004820152601060248201526f155cd95c88109b1858dadb1a5cdd195960821b604482015260640161072e565b336000908152600b602052604090205460ff1615610a305733610a2a818585610e89565b50610a8e565b6008546007543391600091610a459086611498565b610a4f91906114b7565b600d54909150610a6a9083906001600160a01b031683610e89565b610a7982866107bf84886114d9565b5050610a8e565b33610a8c818585610e89565b505b50600192915050565b610a9f610db5565b6008548110610adc5760405162461bcd60e51b81526020600482015260096024820152684e6f7420616c6c6f7760b81b604482015260640161072e565b600755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b14610db5565b60005b81518110156106ba57600c6000838381518110610b3657610b36611451565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16610c08576001600c6000848481518110610b7957610b79611451565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600a828281518110610bcc57610bcc611451565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790555b80610c128161147d565b915050610b17565b610c22610db5565b6001600160a01b038116610c875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072e565b6108da81611157565b6001600160a01b038316610cf25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072e565b6001600160a01b038216610d535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146108ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072e565b6000610e1b8484610ae1565b90506000198114610e835781811015610e765760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161072e565b610e838484848403610c90565b50505050565b6001600160a01b038316610eed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161072e565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072e565b6001600160a01b03831660009081526020819052604090205481811015610fc75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e83565b6001600160a01b03821661108d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161072e565b6001600160a01b038216600090815260208190526040902054818110156111015760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161072e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610da8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156111d6578581018301518582016040015282016111ba565b818111156111e8576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461121557600080fd5b919050565b6000806040838503121561122d57600080fd5b611236836111fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561126d57600080fd5b823567ffffffffffffffff8082111561128557600080fd5b818501915085601f83011261129957600080fd5b8135818111156112ab576112ab611244565b8060051b604051601f19603f830116810181811085821117156112d0576112d0611244565b6040529182528482019250838101850191888311156112ee57600080fd5b938501935b8285101561131357611304856111fe565b845293850193928501926112f3565b98975050505050505050565b60008060006060848603121561133457600080fd5b61133d846111fe565b925061134b602085016111fe565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561139c5783516001600160a01b031683529284019291840191600101611377565b50909695505050505050565b6000602082840312156113ba57600080fd5b5035919050565b6000602082840312156113d357600080fd5b6113dc826111fe565b9392505050565b600080604083850312156113f657600080fd5b6113ff836111fe565b915061140d602084016111fe565b90509250929050565b600181811c9082168061142a57607f821691505b6020821081141561144b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561149157611491611467565b5060010190565b60008160001904831182151516156114b2576114b2611467565b500290565b6000826114d457634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156114eb576114eb611467565b500390565b6000821982111561150357611503611467565b50019056fea26469706673582212205cb9bd3a0f7234cb5740122e1c3f4f5c89fa1bb908ddc161dc85e3140c14179264736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564

-----Decoded View---------------
Arg [0] : _router (address): 0xE592427A0AEce92De3Edee1F18E0157C05861564

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564


Deployed Bytecode Sourcemap

18485:3605:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4083:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6584:242;;;;;;;;;;-1:-1:-1;6584:242:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6584:242:0;1053:187:1;19136:302:0;;;;;;;;;;-1:-1:-1;19136:302:0;;;;;:::i;:::-;;:::i;:::-;;18633:22;;;;;;;;;;;;;;;;;;;2649:25:1;;;2637:2;2622:18;18633:22:0;2503:177:1;5212:108:0;;;;;;;;;;-1:-1:-1;5300:12:0;;5212:108;;21057:1030;;;;;;;;;;-1:-1:-1;21057:1030:0;;;;;:::i;:::-;;:::i;19756:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5054:93::-;;;;;;;;;;-1:-1:-1;5054:93:0;;5137:2;3823:36:1;;3811:2;3796:18;5054:93:0;3681:184:1;8110:270:0;;;;;;;;;;-1:-1:-1;8110:270:0;;;;;:::i;:::-;;:::i;19872:108::-;;;;;;;;;;;;;:::i;15814:91::-;;;;;;;;;;-1:-1:-1;15814:91:0;;;;;:::i;:::-;;:::i;18779:45::-;;;;;;;;;;-1:-1:-1;18779:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5383:177;;;;;;;;;;-1:-1:-1;5383:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;5534:18:0;5502:7;5534:18;;;;;;;;;;;;5383:177;17631:103;;;;;;;;;;;;;:::i;16224:164::-;;;;;;;;;;-1:-1:-1;16224:164:0;;;;;:::i;:::-;;:::i;16990:87::-;;;;;;;;;;-1:-1:-1;17063:6:0;;-1:-1:-1;;;;;17063:6:0;16990:87;;;-1:-1:-1;;;;;4410:32:1;;;4392:51;;4380:2;4365:18;16990:87:0;4246:203:1;4302:104:0;;;;;;;;;;;;;:::i;8883:505::-;;;;;;;;;;-1:-1:-1;8883:505:0;;;;;:::i;:::-;;:::i;20193:856::-;;;;;;;;;;-1:-1:-1;20193:856:0;;;;;:::i;:::-;;:::i;20045:140::-;;;;;;;;;;-1:-1:-1;20045:140:0;;;;;:::i;:::-;;:::i;6063:201::-;;;;;;;;;;-1:-1:-1;6063:201:0;;;;;:::i;:::-;;:::i;18831:45::-;;;;;;;;;;-1:-1:-1;18831:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;18662:28;;;;;;;;;;;;;;;;19446:302;;;;;;;;;;-1:-1:-1;19446:302:0;;;;;:::i;:::-;;:::i;17889:238::-;;;;;;;;;;-1:-1:-1;17889:238:0;;;;;:::i;:::-;;:::i;18544:21::-;;;;;;;;;;-1:-1:-1;18544:21:0;;;;-1:-1:-1;;;;;18544:21:0;;;4083:100;4137:13;4170:5;4163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4083:100;:::o;6584:242::-;6703:4;3299:10;6764:32;3299:10;6780:7;6789:6;6764:8;:32::i;:::-;-1:-1:-1;6814:4:0;;6584:242;-1:-1:-1;;;6584:242:0:o;19136:302::-;16876:13;:11;:13::i;:::-;19220:9:::1;19215:216;19239:6;:13;19235:1;:17;19215:216;;;19279:13;:24;19293:6;19300:1;19293:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19279:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19279:24:0;;::::1;;19274:146;;19351:4;19324:13;:24;19338:6;19345:1;19338:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;19324:24:0::1;-1:-1:-1::0;;;;;19324:24:0::1;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;19374:14;19394:6;19401:1;19394:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;19374:30;;::::1;::::0;::::1;::::0;;-1:-1:-1;19374:30:0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;19374:30:0::1;-1:-1:-1::0;;;;;19374:30:0;;::::1;::::0;;;::::1;::::0;;19274:146:::1;19254:3:::0;::::1;::::0;::::1;:::i;:::-;;;;19215:216;;;;19136:302:::0;:::o;21057:1030::-;21215:6;;21188:4;;-1:-1:-1;;;;;21209:12:0;;;21215:6;;21209:12;21205:853;;;-1:-1:-1;;;;;21246:19:0;;;;;;:13;:19;;;;;;;;21238:48;;;;-1:-1:-1;;;21238:48:0;;5710:2:1;21238:48:0;;;5692:21:1;5749:2;5729:18;;;5722:30;-1:-1:-1;;;5768:18:1;;;5761:46;5824:18;;21238:48:0;;;;;;;;;21319:10;21305:25;;;;:13;:25;;;;;;;;21301:588;;;3299:10;21427:38;21443:4;3299:10;21458:6;21427:15;:38::i;:::-;21484:27;21494:4;21500:2;21504:6;21484:9;:27::i;:::-;21332:195;21205:853;;21301:588;3299:10;21625:38;21641:4;3299:10;21656:6;21625:15;:38::i;:::-;21682:17;21723:4;;21712:7;;21703:6;:16;;;;:::i;:::-;21702:25;;;;:::i;:::-;21762:9;;21682:45;;-1:-1:-1;21746:37:0;;21756:4;;-1:-1:-1;;;;;21762:9:0;21682:45;21746:9;:37::i;:::-;21813:39;21823:4;21829:2;21833:18;21842:9;21833:6;:18;:::i;:::-;21813:9;:39::i;:::-;21533:356;;21205:853;;;3299:10;21966:38;21982:4;3299:10;21997:6;21966:15;:38::i;:::-;22019:27;22029:4;22035:2;22039:6;22019:9;:27::i;:::-;21906:152;-1:-1:-1;22075:4:0;21057:1030;;;;;:::o;19756:108::-;19806:16;19842:14;19835:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19835:21:0;;;;;;;;;;;;;;;;;;;;;;19756:108;:::o;8110:270::-;8225:4;3299:10;8286:64;3299:10;8302:7;8339:10;8311:25;3299:10;8302:7;8311:9;:25::i;:::-;:38;;;;:::i;:::-;8286:8;:64::i;19872:108::-;19922:16;19958:14;19951:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19951:21:0;;;;;;;;;;;;;;;;;;;;;;19872:108;:::o;15814:91::-;15870:27;3299:10;15890:6;15870:5;:27::i;:::-;15814:91;:::o;17631:103::-;16876:13;:11;:13::i;:::-;17696:30:::1;17723:1;17696:18;:30::i;:::-;17631:103::o:0;16224:164::-;16301:46;16317:7;3299:10;16340:6;16301:15;:46::i;:::-;16358:22;16364:7;16373:6;16358:5;:22::i;4302:104::-;4358:13;4391:7;4384:14;;;;;:::i;8883:505::-;9003:4;3299:10;9003:4;9091:25;3299:10;9108:7;9091:9;:25::i;:::-;9064:52;;9169:15;9149:16;:35;;9127:122;;;;-1:-1:-1;;;9127:122:0;;6713:2:1;9127:122:0;;;6695:21:1;6752:2;6732:18;;;6725:30;6791:34;6771:18;;;6764:62;-1:-1:-1;;;6842:18:1;;;6835:35;6887:19;;9127:122:0;6511:401:1;9127:122:0;9285:60;9294:5;9301:7;9329:15;9310:16;:34;9285:8;:60::i;:::-;-1:-1:-1;9376:4:0;;8883:505;-1:-1:-1;;;;8883:505:0:o;20193:856::-;20340:6;;20308:4;;-1:-1:-1;;;;;20334:12:0;;;20340:6;;20334:12;20330:690;;;20385:10;20371:25;;;;:13;:25;;;;;;;;20363:54;;;;-1:-1:-1;;;20363:54:0;;5710:2:1;20363:54:0;;;5692:21:1;5749:2;5729:18;;;5722:30;-1:-1:-1;;;5768:18:1;;;5761:46;5824:18;;20363:54:0;5508:340:1;20363:54:0;20450:10;20436:25;;;;:13;:25;;;;;;;;20432:473;;;3299:10;20556:28;3299:10;20573:2;20577:6;20556:9;:28::i;:::-;20463:137;20330:690;;20432:473;20737:4;;20726:7;;3299:10;;20649:13;;20717:16;;:6;:16;:::i;:::-;20716:25;;;;:::i;:::-;20777:9;;20696:45;;-1:-1:-1;20760:38:0;;20770:5;;-1:-1:-1;;;;;20777:9:0;20696:45;20760:9;:38::i;:::-;20828:40;20838:5;20845:2;20849:18;20858:9;20849:6;:18;:::i;20828:40::-;20606:299;;20330:690;;;3299:10;20980:28;3299:10;20997:2;21001:6;20980:9;:28::i;:::-;20922:98;20330:690;-1:-1:-1;21037:4:0;20193:856;;;;:::o;20045:140::-;16876:13;:11;:13::i;:::-;20130:4:::1;;20119:8;:15;20111:37;;;::::0;-1:-1:-1;;;20111:37:0;;7119:2:1;20111:37:0::1;::::0;::::1;7101:21:1::0;7158:1;7138:18;;;7131:29;-1:-1:-1;;;7176:18:1;;;7169:39;7225:18;;20111:37:0::1;6917:332:1::0;20111:37:0::1;20159:7;:18:::0;20045:140::o;6063:201::-;-1:-1:-1;;;;;6229:18:0;;;6197:7;6229:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6063:201::o;19446:302::-;16876:13;:11;:13::i;:::-;19530:9:::1;19525:216;19549:6;:13;19545:1;:17;19525:216;;;19589:13;:24;19603:6;19610:1;19603:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19589:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19589:24:0;;::::1;;19584:146;;19661:4;19634:13;:24;19648:6;19655:1;19648:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;19634:24:0::1;-1:-1:-1::0;;;;;19634:24:0::1;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;19684:14;19704:6;19711:1;19704:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;19684:30;;::::1;::::0;::::1;::::0;;-1:-1:-1;19684:30:0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;19684:30:0::1;-1:-1:-1::0;;;;;19684:30:0;;::::1;::::0;;;::::1;::::0;;19584:146:::1;19564:3:::0;::::1;::::0;::::1;:::i;:::-;;;;19525:216;;17889:238:::0;16876:13;:11;:13::i;:::-;-1:-1:-1;;;;;17992:22:0;::::1;17970:110;;;::::0;-1:-1:-1;;;17970:110:0;;7456:2:1;17970:110:0::1;::::0;::::1;7438:21:1::0;7495:2;7475:18;;;7468:30;7534:34;7514:18;;;7507:62;-1:-1:-1;;;7585:18:1;;;7578:36;7631:19;;17970:110:0::1;7254:402:1::0;17970:110:0::1;18091:28;18110:8;18091:18;:28::i;13016:380::-:0;-1:-1:-1;;;;;13152:19:0;;13144:68;;;;-1:-1:-1;;;13144:68:0;;7863:2:1;13144:68:0;;;7845:21:1;7902:2;7882:18;;;7875:30;7941:34;7921:18;;;7914:62;-1:-1:-1;;;7992:18:1;;;7985:34;8036:19;;13144:68:0;7661:400:1;13144:68:0;-1:-1:-1;;;;;13231:21:0;;13223:68;;;;-1:-1:-1;;;13223:68:0;;8268:2:1;13223:68:0;;;8250:21:1;8307:2;8287:18;;;8280:30;8346:34;8326:18;;;8319:62;-1:-1:-1;;;8397:18:1;;;8390:32;8439:19;;13223:68:0;8066:398:1;13223:68:0;-1:-1:-1;;;;;13304:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13356:32;;2649:25:1;;;13356:32:0;;2622:18:1;13356:32:0;;;;;;;;13016:380;;;:::o;17155:132::-;17063:6;;-1:-1:-1;;;;;17063:6:0;3299:10;17219:23;17211:68;;;;-1:-1:-1;;;17211:68:0;;8671:2:1;17211:68:0;;;8653:21:1;;;8690:18;;;8683:30;8749:34;8729:18;;;8722:62;8801:18;;17211:68:0;8469:356:1;13687:502:0;13822:24;13849:25;13859:5;13866:7;13849:9;:25::i;:::-;13822:52;;-1:-1:-1;;13889:16:0;:37;13885:297;;13989:6;13969:16;:26;;13943:117;;;;-1:-1:-1;;;13943:117:0;;9032:2:1;13943:117:0;;;9014:21:1;9071:2;9051:18;;;9044:30;9110:31;9090:18;;;9083:59;9159:18;;13943:117:0;8830:353:1;13943:117:0;14104:51;14113:5;14120:7;14148:6;14129:16;:25;14104:8;:51::i;:::-;13811:378;13687:502;;;:::o;9858:877::-;-1:-1:-1;;;;;9989:18:0;;9981:68;;;;-1:-1:-1;;;9981:68:0;;9390:2:1;9981:68:0;;;9372:21:1;9429:2;9409:18;;;9402:30;9468:34;9448:18;;;9441:62;-1:-1:-1;;;9519:18:1;;;9512:35;9564:19;;9981:68:0;9188:401:1;9981:68:0;-1:-1:-1;;;;;10068:16:0;;10060:64;;;;-1:-1:-1;;;10060:64:0;;9796:2:1;10060:64:0;;;9778:21:1;9835:2;9815:18;;;9808:30;9874:34;9854:18;;;9847:62;-1:-1:-1;;;9925:18:1;;;9918:33;9968:19;;10060:64:0;9594:399:1;10060:64:0;-1:-1:-1;;;;;10210:15:0;;10188:19;10210:15;;;;;;;;;;;10258:21;;;;10236:109;;;;-1:-1:-1;;;10236:109:0;;10200:2:1;10236:109:0;;;10182:21:1;10239:2;10219:18;;;10212:30;10278:34;10258:18;;;10251:62;-1:-1:-1;;;10329:18:1;;;10322:36;10375:19;;10236:109:0;9998:402:1;10236:109:0;-1:-1:-1;;;;;10381:15:0;;;:9;:15;;;;;;;;;;;10399:20;;;10381:38;;10599:13;;;;;;;;;;:23;;;;;;10651:26;;2649:25:1;;;10599:13:0;;10651:26;;2622:18:1;10651:26:0;;;;;;;10690:37;11903:675;;-1:-1:-1;;;;;11987:21:0;;11979:67;;;;-1:-1:-1;;;11979:67:0;;10607:2:1;11979:67:0;;;10589:21:1;10646:2;10626:18;;;10619:30;10685:34;10665:18;;;10658:62;-1:-1:-1;;;10736:18:1;;;10729:31;10777:19;;11979:67:0;10405:397:1;11979:67:0;-1:-1:-1;;;;;12146:18:0;;12121:22;12146:18;;;;;;;;;;;12183:24;;;;12175:71;;;;-1:-1:-1;;;12175:71:0;;11009:2:1;12175:71:0;;;10991:21:1;11048:2;11028:18;;;11021:30;11087:34;11067:18;;;11060:62;-1:-1:-1;;;11138:18:1;;;11131:32;11180:19;;12175:71:0;10807:398:1;12175:71:0;-1:-1:-1;;;;;12282:18:0;;:9;:18;;;;;;;;;;;12303:23;;;12282:44;;12421:12;:22;;;;;;;12472:37;2649:25:1;;;12282:9:0;;:18;12472:37;;2622:18:1;12472:37:0;2503:177:1;18287:191:0;18380:6;;;-1:-1:-1;;;;;18397:17:0;;;-1:-1:-1;;;;;;18397:17:0;;;;;;;18430:40;;18380:6;;;18397:17;18380:6;;18430:40;;18361:16;;18430:40;18350:128;18287:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:127::-;1306:10;1301:3;1297:20;1294:1;1287:31;1337:4;1334:1;1327:15;1361:4;1358:1;1351:15;1377:1121;1461:6;1492:2;1535;1523:9;1514:7;1510:23;1506:32;1503:52;;;1551:1;1548;1541:12;1503:52;1591:9;1578:23;1620:18;1661:2;1653:6;1650:14;1647:34;;;1677:1;1674;1667:12;1647:34;1715:6;1704:9;1700:22;1690:32;;1760:7;1753:4;1749:2;1745:13;1741:27;1731:55;;1782:1;1779;1772:12;1731:55;1818:2;1805:16;1840:2;1836;1833:10;1830:36;;;1846:18;;:::i;:::-;1892:2;1889:1;1885:10;1924:2;1918:9;1987:2;1983:7;1978:2;1974;1970:11;1966:25;1958:6;1954:38;2042:6;2030:10;2027:22;2022:2;2010:10;2007:18;2004:46;2001:72;;;2053:18;;:::i;:::-;2089:2;2082:22;2139:18;;;2173:15;;;;-1:-1:-1;2215:11:1;;;2211:20;;;2243:19;;;2240:39;;;2275:1;2272;2265:12;2240:39;2299:11;;;;2319:148;2335:6;2330:3;2327:15;2319:148;;;2401:23;2420:3;2401:23;:::i;:::-;2389:36;;2352:12;;;;2445;;;;2319:148;;;2486:6;1377:1121;-1:-1:-1;;;;;;;;1377:1121:1:o;2685:328::-;2762:6;2770;2778;2831:2;2819:9;2810:7;2806:23;2802:32;2799:52;;;2847:1;2844;2837:12;2799:52;2870:29;2889:9;2870:29;:::i;:::-;2860:39;;2918:38;2952:2;2941:9;2937:18;2918:38;:::i;:::-;2908:48;;3003:2;2992:9;2988:18;2975:32;2965:42;;2685:328;;;;;:::o;3018:658::-;3189:2;3241:21;;;3311:13;;3214:18;;;3333:22;;;3160:4;;3189:2;3412:15;;;;3386:2;3371:18;;;3160:4;3455:195;3469:6;3466:1;3463:13;3455:195;;;3534:13;;-1:-1:-1;;;;;3530:39:1;3518:52;;3625:15;;;;3590:12;;;;3566:1;3484:9;3455:195;;;-1:-1:-1;3667:3:1;;3018:658;-1:-1:-1;;;;;;3018:658:1:o;3870:180::-;3929:6;3982:2;3970:9;3961:7;3957:23;3953:32;3950:52;;;3998:1;3995;3988:12;3950:52;-1:-1:-1;4021:23:1;;3870:180;-1:-1:-1;3870:180:1:o;4055:186::-;4114:6;4167:2;4155:9;4146:7;4142:23;4138:32;4135:52;;;4183:1;4180;4173:12;4135:52;4206:29;4225:9;4206:29;:::i;:::-;4196:39;4055:186;-1:-1:-1;;;4055:186:1:o;4454:260::-;4522:6;4530;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4622:29;4641:9;4622:29;:::i;:::-;4612:39;;4670:38;4704:2;4693:9;4689:18;4670:38;:::i;:::-;4660:48;;4454:260;;;;;:::o;4719:380::-;4798:1;4794:12;;;;4841;;;4862:61;;4916:4;4908:6;4904:17;4894:27;;4862:61;4969:2;4961:6;4958:14;4938:18;4935:38;4932:161;;;5015:10;5010:3;5006:20;5003:1;4996:31;5050:4;5047:1;5040:15;5078:4;5075:1;5068:15;4932:161;;4719:380;;;:::o;5104:127::-;5165:10;5160:3;5156:20;5153:1;5146:31;5196:4;5193:1;5186:15;5220:4;5217:1;5210:15;5236:127;5297:10;5292:3;5288:20;5285:1;5278:31;5328:4;5325:1;5318:15;5352:4;5349:1;5342:15;5368:135;5407:3;-1:-1:-1;;5428:17:1;;5425:43;;;5448:18;;:::i;:::-;-1:-1:-1;5495:1:1;5484:13;;5368:135::o;5853:168::-;5893:7;5959:1;5955;5951:6;5947:14;5944:1;5941:21;5936:1;5929:9;5922:17;5918:45;5915:71;;;5966:18;;:::i;:::-;-1:-1:-1;6006:9:1;;5853:168::o;6026:217::-;6066:1;6092;6082:132;;6136:10;6131:3;6127:20;6124:1;6117:31;6171:4;6168:1;6161:15;6199:4;6196:1;6189:15;6082:132;-1:-1:-1;6228:9:1;;6026:217::o;6248:125::-;6288:4;6316:1;6313;6310:8;6307:34;;;6321:18;;:::i;:::-;-1:-1:-1;6358:9:1;;6248:125::o;6378:128::-;6418:3;6449:1;6445:6;6442:1;6439:13;6436:39;;;6455:18;;:::i;:::-;-1:-1:-1;6491:9:1;;6378:128::o

Swarm Source

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