ETH Price: $3,104.48 (+1.10%)
Gas: 7 Gwei

Token

X2FAN.com (X2FAN)
 

Overview

Max Total Supply

10,000,000,000 X2FAN

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
75,600 X2FAN

Value
$0.00
0xe4fdb48acbc124b24ec7dfd0d55a03fd20cc5386
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:
X2FAN

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-15
*/

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

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.7.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) internal _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _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/MTK1Token.sol


pragma solidity ^0.8.17;


/**
 * @title ERC223 interface
 */
interface ERC223 {
	function transfer(address to, uint256 value, bytes calldata data) external;
	event Transfer(address indexed from, address indexed to, uint256 value, bytes indexed data);
}

/*
Base class contracts willing to accept ERC223 token transfers must conform to.
*/

abstract contract ERC223ReceivingContract {
	function tokenFallback(address from, uint256 value, bytes calldata data) virtual external;
}

contract ERC223Token is ERC20, ERC223 {

    constructor (string memory name_, string memory symbol_) ERC20(name_, symbol_) {
    }

	function transfer(address to, uint256 value, bytes calldata data) override external {
		require(value > 0 );
		if (isContract(to)) {
			ERC223ReceivingContract receiver = ERC223ReceivingContract(to);
			receiver.tokenFallback(_msgSender(), value, data);
		}
		_balances[_msgSender()] = _balances[_msgSender()] - value;
		_balances[to] = _balances[to] + value;
		emit Transfer(_msgSender(), to, value, data);
	}

	function isContract(address addr) view private returns (bool) {
		return (addr.code.length > 0);
	}
}

contract X2FAN is ERC223Token, ERC20Burnable, Ownable {

    constructor(uint256 initialSupply) ERC223Token("X2FAN.com", "X2FAN") {
        _mint(_msgSender(), initialSupply  * (10 ** uint256(decimals())));
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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"},{"indexed":true,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transfer","outputs":[],"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"}]

60806040523480156200001157600080fd5b506040516200288e3803806200288e8339818101604052810190620000379190620003db565b6040518060400160405280600981526020017f583246414e2e636f6d00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f583246414e00000000000000000000000000000000000000000000000000000081525081818160039081620000b691906200067d565b508060049081620000c891906200067d565b5050505050620000ed620000e16200014260201b60201c565b6200014a60201b60201c565b6200013b620001016200014260201b60201c565b620001116200021060201b60201c565b60ff16600a620001229190620008e7565b836200012f919062000938565b6200021960201b60201c565b5062000a6f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028290620009e4565b60405180910390fd5b6200029f600083836200039160201b60201c565b8060026000828254620002b3919062000a06565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200030a919062000a06565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000371919062000a52565b60405180910390a36200038d600083836200039660201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620003b581620003a0565b8114620003c157600080fd5b50565b600081519050620003d581620003aa565b92915050565b600060208284031215620003f457620003f36200039b565b5b60006200040484828501620003c4565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048f57607f821691505b602082108103620004a557620004a462000447565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d0565b6200051b8683620004d0565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200055e620005586200055284620003a0565b62000533565b620003a0565b9050919050565b6000819050919050565b6200057a836200053d565b62000592620005898262000565565b848454620004dd565b825550505050565b600090565b620005a96200059a565b620005b68184846200056f565b505050565b5b81811015620005de57620005d26000826200059f565b600181019050620005bc565b5050565b601f8211156200062d57620005f781620004ab565b6200060284620004c0565b8101602085101562000612578190505b6200062a6200062185620004c0565b830182620005bb565b50505b505050565b600082821c905092915050565b6000620006526000198460080262000632565b1980831691505092915050565b60006200066d83836200063f565b9150826002028217905092915050565b62000688826200040d565b67ffffffffffffffff811115620006a457620006a362000418565b5b620006b0825462000476565b620006bd828285620005e2565b600060209050601f831160018114620006f55760008415620006e0578287015190505b620006ec85826200065f565b8655506200075c565b601f1984166200070586620004ab565b60005b828110156200072f5784890151825560018201915060208501945060208101905062000708565b868310156200074f57848901516200074b601f8916826200063f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007f257808604811115620007ca57620007c962000764565b5b6001851615620007da5780820291505b8081029050620007ea8562000793565b9450620007aa565b94509492505050565b6000826200080d5760019050620008e0565b816200081d5760009050620008e0565b8160018114620008365760028114620008415762000877565b6001915050620008e0565b60ff84111562000856576200085562000764565b5b8360020a91508482111562000870576200086f62000764565b5b50620008e0565b5060208310610133831016604e8410600b8410161715620008b15782820a905083811115620008ab57620008aa62000764565b5b620008e0565b620008c08484846001620007a0565b92509050818404811115620008da57620008d962000764565b5b81810290505b9392505050565b6000620008f482620003a0565b91506200090183620003a0565b9250620009307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007fb565b905092915050565b60006200094582620003a0565b91506200095283620003a0565b92508282026200096281620003a0565b915082820484148315176200097c576200097b62000764565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009cc601f8362000983565b9150620009d98262000994565b602082019050919050565b60006020820190508181036000830152620009ff81620009bd565b9050919050565b600062000a1382620003a0565b915062000a2083620003a0565b925082820190508082111562000a3b5762000a3a62000764565b5b92915050565b62000a4c81620003a0565b82525050565b600060208201905062000a69600083018462000a41565b92915050565b611e0f8062000a7f6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063be45fd6214610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061128b565b60405180910390f35b6101486004803603810190610143919061134b565b610402565b60405161015591906113a6565b60405180910390f35b610166610425565b60405161017391906113d0565b60405180910390f35b610196600480360381019061019191906113eb565b61042f565b6040516101a391906113a6565b60405180910390f35b6101b461045e565b6040516101c1919061145a565b60405180910390f35b6101e460048036038101906101df919061134b565b610467565b6040516101f191906113a6565b60405180910390f35b610214600480360381019061020f9190611475565b61049e565b005b610230600480360381019061022b91906114a2565b6104b2565b60405161023d91906113d0565b60405180910390f35b61024e6104fa565b005b61026a6004803603810190610265919061134b565b61050e565b005b61027461052e565b60405161028191906114de565b60405180910390f35b610292610558565b60405161029f919061128b565b60405180910390f35b6102c260048036038101906102bd919061134b565b6105ea565b6040516102cf91906113a6565b60405180910390f35b6102f260048036038101906102ed919061134b565b610661565b6040516102ff91906113a6565b60405180910390f35b610322600480360381019061031d919061155e565b610684565b005b61033e600480360381019061033991906115d2565b6108ce565b60405161034b91906113d0565b60405180910390f35b61036e600480360381019061036991906114a2565b610955565b005b60606003805461037f90611641565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611641565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d6109d8565b905061041a8185856109e0565b600191505092915050565b6000600254905090565b60008061043a6109d8565b9050610447858285610ba9565b610452858585610c35565b60019150509392505050565b60006012905090565b6000806104726109d8565b905061049381858561048485896108ce565b61048e91906116a1565b6109e0565b600191505092915050565b6104af6104a96109d8565b82610eb4565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61050261108a565b61050c6000611108565b565b6105208261051a6109d8565b83610ba9565b61052a8282610eb4565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056790611641565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611641565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f56109d8565b9050600061060382866108ce565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90611747565b60405180910390fd5b61065582868684036109e0565b60019250505092915050565b60008061066c6109d8565b9050610679818585610c35565b600191505092915050565b6000831161069157600080fd5b61069a846111ce565b1561071e5760008490508073ffffffffffffffffffffffffffffffffffffffff1663c0ee0b8a6106c86109d8565b8686866040518563ffffffff1660e01b81526004016106ea94939291906117b4565b600060405180830381600087803b15801561070457600080fd5b505af1158015610718573d6000803e3d6000fd5b50505050505b8260008061072a6109d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461076f91906117f4565b60008061077a6109d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461080291906116a1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508181604051610854929190611858565b60405180910390208473ffffffffffffffffffffffffffffffffffffffff1661087b6109d8565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16866040516108c091906113d0565b60405180910390a450505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095d61108a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906118e3565b60405180910390fd5b6109d581611108565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611a07565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9c91906113d0565b60405180910390a3505050565b6000610bb584846108ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2f5781811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611a73565b60405180910390fd5b610c2e84848484036109e0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611b05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90611b97565b60405180910390fd5b610d1e8383836111f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90611c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e3791906116a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9b91906113d0565b60405180910390a3610eae8484846111f6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90611cbb565b60405180910390fd5b610f2f826000836111f1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611d4d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461100c91906117f4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107191906113d0565b60405180910390a3611085836000846111f6565b505050565b6110926109d8565b73ffffffffffffffffffffffffffffffffffffffff166110b061052e565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90611db9565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123557808201518184015260208101905061121a565b60008484015250505050565b6000601f19601f8301169050919050565b600061125d826111fb565b6112678185611206565b9350611277818560208601611217565b61128081611241565b840191505092915050565b600060208201905081810360008301526112a58184611252565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e2826112b7565b9050919050565b6112f2816112d7565b81146112fd57600080fd5b50565b60008135905061130f816112e9565b92915050565b6000819050919050565b61132881611315565b811461133357600080fd5b50565b6000813590506113458161131f565b92915050565b60008060408385031215611362576113616112ad565b5b600061137085828601611300565b925050602061138185828601611336565b9150509250929050565b60008115159050919050565b6113a08161138b565b82525050565b60006020820190506113bb6000830184611397565b92915050565b6113ca81611315565b82525050565b60006020820190506113e560008301846113c1565b92915050565b600080600060608486031215611404576114036112ad565b5b600061141286828701611300565b935050602061142386828701611300565b925050604061143486828701611336565b9150509250925092565b600060ff82169050919050565b6114548161143e565b82525050565b600060208201905061146f600083018461144b565b92915050565b60006020828403121561148b5761148a6112ad565b5b600061149984828501611336565b91505092915050565b6000602082840312156114b8576114b76112ad565b5b60006114c684828501611300565b91505092915050565b6114d8816112d7565b82525050565b60006020820190506114f360008301846114cf565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261151e5761151d6114f9565b5b8235905067ffffffffffffffff81111561153b5761153a6114fe565b5b60208301915083600182028301111561155757611556611503565b5b9250929050565b60008060008060608587031215611578576115776112ad565b5b600061158687828801611300565b945050602061159787828801611336565b935050604085013567ffffffffffffffff8111156115b8576115b76112b2565b5b6115c487828801611508565b925092505092959194509250565b600080604083850312156115e9576115e86112ad565b5b60006115f785828601611300565b925050602061160885828601611300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061165957607f821691505b60208210810361166c5761166b611612565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ac82611315565b91506116b783611315565b92508282019050808211156116cf576116ce611672565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611731602583611206565b915061173c826116d5565b604082019050919050565b6000602082019050818103600083015261176081611724565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b60006117938385611767565b93506117a0838584611778565b6117a983611241565b840190509392505050565b60006060820190506117c960008301876114cf565b6117d660208301866113c1565b81810360408301526117e9818486611787565b905095945050505050565b60006117ff82611315565b915061180a83611315565b925082820390508181111561182257611821611672565b5b92915050565b600081905092915050565b600061183f8385611828565b935061184c838584611778565b82840190509392505050565b6000611865828486611833565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118cd602683611206565b91506118d882611871565b604082019050919050565b600060208201905081810360008301526118fc816118c0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061195f602483611206565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f1602283611206565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a5d601d83611206565b9150611a6882611a27565b602082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611aef602583611206565b9150611afa82611a93565b604082019050919050565b60006020820190508181036000830152611b1e81611ae2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b81602383611206565b9150611b8c82611b25565b604082019050919050565b60006020820190508181036000830152611bb081611b74565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c13602683611206565b9150611c1e82611bb7565b604082019050919050565b60006020820190508181036000830152611c4281611c06565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ca5602183611206565b9150611cb082611c49565b604082019050919050565b60006020820190508181036000830152611cd481611c98565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d37602283611206565b9150611d4282611cdb565b604082019050919050565b60006020820190508181036000830152611d6681611d2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611da3602083611206565b9150611dae82611d6d565b602082019050919050565b60006020820190508181036000830152611dd281611d96565b905091905056fea26469706673582212207f0d2b3dfb213d2b1f623245a638d7263987ca581312e113fffa43c7bdd11ab564736f6c6343000812003300000000000000000000000000000000000000000000000000000002540be400

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063be45fd6214610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061128b565b60405180910390f35b6101486004803603810190610143919061134b565b610402565b60405161015591906113a6565b60405180910390f35b610166610425565b60405161017391906113d0565b60405180910390f35b610196600480360381019061019191906113eb565b61042f565b6040516101a391906113a6565b60405180910390f35b6101b461045e565b6040516101c1919061145a565b60405180910390f35b6101e460048036038101906101df919061134b565b610467565b6040516101f191906113a6565b60405180910390f35b610214600480360381019061020f9190611475565b61049e565b005b610230600480360381019061022b91906114a2565b6104b2565b60405161023d91906113d0565b60405180910390f35b61024e6104fa565b005b61026a6004803603810190610265919061134b565b61050e565b005b61027461052e565b60405161028191906114de565b60405180910390f35b610292610558565b60405161029f919061128b565b60405180910390f35b6102c260048036038101906102bd919061134b565b6105ea565b6040516102cf91906113a6565b60405180910390f35b6102f260048036038101906102ed919061134b565b610661565b6040516102ff91906113a6565b60405180910390f35b610322600480360381019061031d919061155e565b610684565b005b61033e600480360381019061033991906115d2565b6108ce565b60405161034b91906113d0565b60405180910390f35b61036e600480360381019061036991906114a2565b610955565b005b60606003805461037f90611641565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611641565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d6109d8565b905061041a8185856109e0565b600191505092915050565b6000600254905090565b60008061043a6109d8565b9050610447858285610ba9565b610452858585610c35565b60019150509392505050565b60006012905090565b6000806104726109d8565b905061049381858561048485896108ce565b61048e91906116a1565b6109e0565b600191505092915050565b6104af6104a96109d8565b82610eb4565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61050261108a565b61050c6000611108565b565b6105208261051a6109d8565b83610ba9565b61052a8282610eb4565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056790611641565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611641565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f56109d8565b9050600061060382866108ce565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90611747565b60405180910390fd5b61065582868684036109e0565b60019250505092915050565b60008061066c6109d8565b9050610679818585610c35565b600191505092915050565b6000831161069157600080fd5b61069a846111ce565b1561071e5760008490508073ffffffffffffffffffffffffffffffffffffffff1663c0ee0b8a6106c86109d8565b8686866040518563ffffffff1660e01b81526004016106ea94939291906117b4565b600060405180830381600087803b15801561070457600080fd5b505af1158015610718573d6000803e3d6000fd5b50505050505b8260008061072a6109d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461076f91906117f4565b60008061077a6109d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461080291906116a1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508181604051610854929190611858565b60405180910390208473ffffffffffffffffffffffffffffffffffffffff1661087b6109d8565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16866040516108c091906113d0565b60405180910390a450505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095d61108a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906118e3565b60405180910390fd5b6109d581611108565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611a07565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9c91906113d0565b60405180910390a3505050565b6000610bb584846108ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c2f5781811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611a73565b60405180910390fd5b610c2e84848484036109e0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611b05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90611b97565b60405180910390fd5b610d1e8383836111f1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b90611c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e3791906116a1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e9b91906113d0565b60405180910390a3610eae8484846111f6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90611cbb565b60405180910390fd5b610f2f826000836111f1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611d4d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461100c91906117f4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107191906113d0565b60405180910390a3611085836000846111f6565b505050565b6110926109d8565b73ffffffffffffffffffffffffffffffffffffffff166110b061052e565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90611db9565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123557808201518184015260208101905061121a565b60008484015250505050565b6000601f19601f8301169050919050565b600061125d826111fb565b6112678185611206565b9350611277818560208601611217565b61128081611241565b840191505092915050565b600060208201905081810360008301526112a58184611252565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e2826112b7565b9050919050565b6112f2816112d7565b81146112fd57600080fd5b50565b60008135905061130f816112e9565b92915050565b6000819050919050565b61132881611315565b811461133357600080fd5b50565b6000813590506113458161131f565b92915050565b60008060408385031215611362576113616112ad565b5b600061137085828601611300565b925050602061138185828601611336565b9150509250929050565b60008115159050919050565b6113a08161138b565b82525050565b60006020820190506113bb6000830184611397565b92915050565b6113ca81611315565b82525050565b60006020820190506113e560008301846113c1565b92915050565b600080600060608486031215611404576114036112ad565b5b600061141286828701611300565b935050602061142386828701611300565b925050604061143486828701611336565b9150509250925092565b600060ff82169050919050565b6114548161143e565b82525050565b600060208201905061146f600083018461144b565b92915050565b60006020828403121561148b5761148a6112ad565b5b600061149984828501611336565b91505092915050565b6000602082840312156114b8576114b76112ad565b5b60006114c684828501611300565b91505092915050565b6114d8816112d7565b82525050565b60006020820190506114f360008301846114cf565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261151e5761151d6114f9565b5b8235905067ffffffffffffffff81111561153b5761153a6114fe565b5b60208301915083600182028301111561155757611556611503565b5b9250929050565b60008060008060608587031215611578576115776112ad565b5b600061158687828801611300565b945050602061159787828801611336565b935050604085013567ffffffffffffffff8111156115b8576115b76112b2565b5b6115c487828801611508565b925092505092959194509250565b600080604083850312156115e9576115e86112ad565b5b60006115f785828601611300565b925050602061160885828601611300565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061165957607f821691505b60208210810361166c5761166b611612565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ac82611315565b91506116b783611315565b92508282019050808211156116cf576116ce611672565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611731602583611206565b915061173c826116d5565b604082019050919050565b6000602082019050818103600083015261176081611724565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b60006117938385611767565b93506117a0838584611778565b6117a983611241565b840190509392505050565b60006060820190506117c960008301876114cf565b6117d660208301866113c1565b81810360408301526117e9818486611787565b905095945050505050565b60006117ff82611315565b915061180a83611315565b925082820390508181111561182257611821611672565b5b92915050565b600081905092915050565b600061183f8385611828565b935061184c838584611778565b82840190509392505050565b6000611865828486611833565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118cd602683611206565b91506118d882611871565b604082019050919050565b600060208201905081810360008301526118fc816118c0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061195f602483611206565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f1602283611206565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a5d601d83611206565b9150611a6882611a27565b602082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611aef602583611206565b9150611afa82611a93565b604082019050919050565b60006020820190508181036000830152611b1e81611ae2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b81602383611206565b9150611b8c82611b25565b604082019050919050565b60006020820190508181036000830152611bb081611b74565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c13602683611206565b9150611c1e82611bb7565b604082019050919050565b60006020820190508181036000830152611c4281611c06565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ca5602183611206565b9150611cb082611c49565b604082019050919050565b60006020820190508181036000830152611cd481611c98565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d37602283611206565b9150611d4282611cdb565b604082019050919050565b60006020820190508181036000830152611d6681611d2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611da3602083611206565b9150611dae82611d6d565b602082019050919050565b60006020820190508181036000830152611dd281611d96565b905091905056fea26469706673582212207f0d2b3dfb213d2b1f623245a638d7263987ca581312e113fffa43c7bdd11ab564736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000002540be400

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400


Deployed Bytecode Sourcemap

22618:320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9460:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11811:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10580:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12592:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22842:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13296:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20829:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10751:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2882:103;;;:::i;:::-;;21239:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2234:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9679:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14037:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11084:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22086:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11340:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3140:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9460:100;9514:13;9547:5;9540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9460:100;:::o;11811:201::-;11894:4;11911:13;11927:12;:10;:12::i;:::-;11911:28;;11950:32;11959:5;11966:7;11975:6;11950:8;:32::i;:::-;12000:4;11993:11;;;11811:201;;;;:::o;10580:108::-;10641:7;10668:12;;10661:19;;10580:108;:::o;12592:295::-;12723:4;12740:15;12758:12;:10;:12::i;:::-;12740:30;;12781:38;12797:4;12803:7;12812:6;12781:15;:38::i;:::-;12830:27;12840:4;12846:2;12850:6;12830:9;:27::i;:::-;12875:4;12868:11;;;12592:295;;;;;:::o;22842:93::-;22900:5;22925:2;22918:9;;22842:93;:::o;13296:238::-;13384:4;13401:13;13417:12;:10;:12::i;:::-;13401:28;;13440:64;13449:5;13456:7;13493:10;13465:25;13475:5;13482:7;13465:9;:25::i;:::-;:38;;;;:::i;:::-;13440:8;:64::i;:::-;13522:4;13515:11;;;13296:238;;;;:::o;20829:91::-;20885:27;20891:12;:10;:12::i;:::-;20905:6;20885:5;:27::i;:::-;20829:91;:::o;10751:127::-;10825:7;10852:9;:18;10862:7;10852:18;;;;;;;;;;;;;;;;10845:25;;10751:127;;;:::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;21239:164::-;21316:46;21332:7;21341:12;:10;:12::i;:::-;21355:6;21316:15;:46::i;:::-;21373:22;21379:7;21388:6;21373:5;:22::i;:::-;21239:164;;:::o;2234:87::-;2280:7;2307:6;;;;;;;;;;;2300:13;;2234:87;:::o;9679:104::-;9735:13;9768:7;9761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9679:104;:::o;14037:436::-;14130:4;14147:13;14163:12;:10;:12::i;:::-;14147:28;;14186:24;14213:25;14223:5;14230:7;14213:9;:25::i;:::-;14186:52;;14277:15;14257:16;:35;;14249:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14370:60;14379:5;14386:7;14414:15;14395:16;:34;14370:8;:60::i;:::-;14461:4;14454:11;;;;14037:436;;;;:::o;11084:193::-;11163:4;11180:13;11196:12;:10;:12::i;:::-;11180:28;;11219;11229:5;11236:2;11240:6;11219:9;:28::i;:::-;11265:4;11258:11;;;11084:193;;;;:::o;22086:419::-;22191:1;22183:5;:9;22175:19;;;;;;22203:14;22214:2;22203:10;:14::i;:::-;22199:149;;;22225:32;22284:2;22225:62;;22293:8;:22;;;22316:12;:10;:12::i;:::-;22330:5;22337:4;;22293:49;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22219:129;22199:149;22404:5;22378:9;:23;22388:12;:10;:12::i;:::-;22378:23;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;22352:9;:23;22362:12;:10;:12::i;:::-;22352:23;;;;;;;;;;;;;;;:57;;;;22446:5;22430:9;:13;22440:2;22430:13;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;22414:9;:13;22424:2;22414:13;;;;;;;;;;;;;;;:37;;;;22495:4;;22461:39;;;;;;;:::i;:::-;;;;;;;;22484:2;22461:39;;22470:12;:10;:12::i;:::-;22461:39;;;22488:5;22461:39;;;;;;:::i;:::-;;;;;;;;22086:419;;;;:::o;11340:151::-;11429:7;11456:11;:18;11468:5;11456:18;;;;;;;;;;;;;;;:27;11475:7;11456:27;;;;;;;;;;;;;;;;11449:34;;11340:151;;;;:::o;3140:201::-;2120:13;:11;:13::i;:::-;3249:1:::1;3229:22;;:8;:22;;::::0;3221:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;17662:380::-;17815:1;17798:19;;:5;:19;;;17790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17896:1;17877:21;;:7;:21;;;17869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17980:6;17950:11;:18;17962:5;17950:18;;;;;;;;;;;;;;;:27;17969:7;17950:27;;;;;;;;;;;;;;;:36;;;;18018:7;18002:32;;18011:5;18002:32;;;18027:6;18002:32;;;;;;:::i;:::-;;;;;;;;17662:380;;;:::o;18333:453::-;18468:24;18495:25;18505:5;18512:7;18495:9;:25::i;:::-;18468:52;;18555:17;18535:16;:37;18531:248;;18617:6;18597:16;:26;;18589:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18701:51;18710:5;18717:7;18745:6;18726:16;:25;18701:8;:51::i;:::-;18531:248;18457:329;18333:453;;;:::o;14943:671::-;15090:1;15074:18;;:4;:18;;;15066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15167:1;15153:16;;:2;:16;;;15145:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15222:38;15243:4;15249:2;15253:6;15222:20;:38::i;:::-;15273:19;15295:9;:15;15305:4;15295:15;;;;;;;;;;;;;;;;15273:37;;15344:6;15329:11;:21;;15321:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15461:6;15447:11;:20;15429:9;:15;15439:4;15429:15;;;;;;;;;;;;;;;:38;;;;15506:6;15489:9;:13;15499:2;15489:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15545:2;15530:26;;15539:4;15530:26;;;15549:6;15530:26;;;;;;:::i;:::-;;;;;;;;15569:37;15589:4;15595:2;15599:6;15569:19;:37::i;:::-;15055:559;14943:671;;;:::o;16633:591::-;16736:1;16717:21;;:7;:21;;;16709:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16789:49;16810:7;16827:1;16831:6;16789:20;:49::i;:::-;16851:22;16876:9;:18;16886:7;16876:18;;;;;;;;;;;;;;;;16851:43;;16931:6;16913:14;:24;;16905:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17050:6;17033:14;:23;17012:9;:18;17022:7;17012:18;;;;;;;;;;;;;;;:44;;;;17094:6;17078:12;;:22;;;;;;;:::i;:::-;;;;;;;;17144:1;17118:37;;17127:7;17118:37;;;17148:6;17118:37;;;;;;:::i;:::-;;;;;;;;17168:48;17188:7;17205:1;17209:6;17168:19;:48::i;:::-;16698:526;16633:591;;:::o;2399:132::-;2474:12;:10;:12::i;:::-;2463:23;;:7;:5;:7::i;:::-;:23;;;2455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2399:132::o;3501:191::-;3575:16;3594:6;;;;;;;;;;;3575:25;;3620:8;3611:6;;:17;;;;;;;;;;;;;;;;;;3675:8;3644:40;;3665:8;3644:40;;;;;;;;;;;;3564:128;3501:191;:::o;22510:101::-;22566:4;22604:1;22585:4;:16;;;:20;22577:29;;22510:101;;;:::o;19386:125::-;;;;:::o;20115:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:117;6107:1;6104;6097:12;6121:117;6230:1;6227;6220:12;6257:552;6314:8;6324:6;6374:3;6367:4;6359:6;6355:17;6351:27;6341:122;;6382:79;;:::i;:::-;6341:122;6495:6;6482:20;6472:30;;6525:18;6517:6;6514:30;6511:117;;;6547:79;;:::i;:::-;6511:117;6661:4;6653:6;6649:17;6637:29;;6715:3;6707:4;6699:6;6695:17;6685:8;6681:32;6678:41;6675:128;;;6722:79;;:::i;:::-;6675:128;6257:552;;;;;:::o;6815:817::-;6903:6;6911;6919;6927;6976:2;6964:9;6955:7;6951:23;6947:32;6944:119;;;6982:79;;:::i;:::-;6944:119;7102:1;7127:53;7172:7;7163:6;7152:9;7148:22;7127:53;:::i;:::-;7117:63;;7073:117;7229:2;7255:53;7300:7;7291:6;7280:9;7276:22;7255:53;:::i;:::-;7245:63;;7200:118;7385:2;7374:9;7370:18;7357:32;7416:18;7408:6;7405:30;7402:117;;;7438:79;;:::i;:::-;7402:117;7551:64;7607:7;7598:6;7587:9;7583:22;7551:64;:::i;:::-;7533:82;;;;7328:297;6815:817;;;;;;;:::o;7638:474::-;7706:6;7714;7763:2;7751:9;7742:7;7738:23;7734:32;7731:119;;;7769:79;;:::i;:::-;7731:119;7889:1;7914:53;7959:7;7950:6;7939:9;7935:22;7914:53;:::i;:::-;7904:63;;7860:117;8016:2;8042:53;8087:7;8078:6;8067:9;8063:22;8042:53;:::i;:::-;8032:63;;7987:118;7638:474;;;;;:::o;8118:180::-;8166:77;8163:1;8156:88;8263:4;8260:1;8253:15;8287:4;8284:1;8277:15;8304:320;8348:6;8385:1;8379:4;8375:12;8365:22;;8432:1;8426:4;8422:12;8453:18;8443:81;;8509:4;8501:6;8497:17;8487:27;;8443:81;8571:2;8563:6;8560:14;8540:18;8537:38;8534:84;;8590:18;;:::i;:::-;8534:84;8355:269;8304:320;;;:::o;8630:180::-;8678:77;8675:1;8668:88;8775:4;8772:1;8765:15;8799:4;8796:1;8789:15;8816:191;8856:3;8875:20;8893:1;8875:20;:::i;:::-;8870:25;;8909:20;8927:1;8909:20;:::i;:::-;8904:25;;8952:1;8949;8945:9;8938:16;;8973:3;8970:1;8967:10;8964:36;;;8980:18;;:::i;:::-;8964:36;8816:191;;;;:::o;9013:224::-;9153:34;9149:1;9141:6;9137:14;9130:58;9222:7;9217:2;9209:6;9205:15;9198:32;9013:224;:::o;9243:366::-;9385:3;9406:67;9470:2;9465:3;9406:67;:::i;:::-;9399:74;;9482:93;9571:3;9482:93;:::i;:::-;9600:2;9595:3;9591:12;9584:19;;9243:366;;;:::o;9615:419::-;9781:4;9819:2;9808:9;9804:18;9796:26;;9868:9;9862:4;9858:20;9854:1;9843:9;9839:17;9832:47;9896:131;10022:4;9896:131;:::i;:::-;9888:139;;9615:419;;;:::o;10040:168::-;10123:11;10157:6;10152:3;10145:19;10197:4;10192:3;10188:14;10173:29;;10040:168;;;;:::o;10214:146::-;10311:6;10306:3;10301;10288:30;10352:1;10343:6;10338:3;10334:16;10327:27;10214:146;;;:::o;10388:314::-;10484:3;10505:70;10568:6;10563:3;10505:70;:::i;:::-;10498:77;;10585:56;10634:6;10629:3;10622:5;10585:56;:::i;:::-;10666:29;10688:6;10666:29;:::i;:::-;10661:3;10657:39;10650:46;;10388:314;;;;;:::o;10708:549::-;10885:4;10923:2;10912:9;10908:18;10900:26;;10936:71;11004:1;10993:9;10989:17;10980:6;10936:71;:::i;:::-;11017:72;11085:2;11074:9;11070:18;11061:6;11017:72;:::i;:::-;11136:9;11130:4;11126:20;11121:2;11110:9;11106:18;11099:48;11164:86;11245:4;11236:6;11228;11164:86;:::i;:::-;11156:94;;10708:549;;;;;;;:::o;11263:194::-;11303:4;11323:20;11341:1;11323:20;:::i;:::-;11318:25;;11357:20;11375:1;11357:20;:::i;:::-;11352:25;;11401:1;11398;11394:9;11386:17;;11425:1;11419:4;11416:11;11413:37;;;11430:18;;:::i;:::-;11413:37;11263:194;;;;:::o;11463:147::-;11564:11;11601:3;11586:18;;11463:147;;;;:::o;11638:327::-;11752:3;11773:88;11854:6;11849:3;11773:88;:::i;:::-;11766:95;;11871:56;11920:6;11915:3;11908:5;11871:56;:::i;:::-;11952:6;11947:3;11943:16;11936:23;;11638:327;;;;;:::o;11971:291::-;12111:3;12133:103;12232:3;12223:6;12215;12133:103;:::i;:::-;12126:110;;12253:3;12246:10;;11971:291;;;;;:::o;12268:225::-;12408:34;12404:1;12396:6;12392:14;12385:58;12477:8;12472:2;12464:6;12460:15;12453:33;12268:225;:::o;12499:366::-;12641:3;12662:67;12726:2;12721:3;12662:67;:::i;:::-;12655:74;;12738:93;12827:3;12738:93;:::i;:::-;12856:2;12851:3;12847:12;12840:19;;12499:366;;;:::o;12871:419::-;13037:4;13075:2;13064:9;13060:18;13052:26;;13124:9;13118:4;13114:20;13110:1;13099:9;13095:17;13088:47;13152:131;13278:4;13152:131;:::i;:::-;13144:139;;12871:419;;;:::o;13296:223::-;13436:34;13432:1;13424:6;13420:14;13413:58;13505:6;13500:2;13492:6;13488:15;13481:31;13296:223;:::o;13525:366::-;13667:3;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13764:93;13853:3;13764:93;:::i;:::-;13882:2;13877:3;13873:12;13866:19;;13525:366;;;:::o;13897:419::-;14063:4;14101:2;14090:9;14086:18;14078:26;;14150:9;14144:4;14140:20;14136:1;14125:9;14121:17;14114:47;14178:131;14304:4;14178:131;:::i;:::-;14170:139;;13897:419;;;:::o;14322:221::-;14462:34;14458:1;14450:6;14446:14;14439:58;14531:4;14526:2;14518:6;14514:15;14507:29;14322:221;:::o;14549:366::-;14691:3;14712:67;14776:2;14771:3;14712:67;:::i;:::-;14705:74;;14788:93;14877:3;14788:93;:::i;:::-;14906:2;14901:3;14897:12;14890:19;;14549:366;;;:::o;14921:419::-;15087:4;15125:2;15114:9;15110:18;15102:26;;15174:9;15168:4;15164:20;15160:1;15149:9;15145:17;15138:47;15202:131;15328:4;15202:131;:::i;:::-;15194:139;;14921:419;;;:::o;15346:179::-;15486:31;15482:1;15474:6;15470:14;15463:55;15346:179;:::o;15531:366::-;15673:3;15694:67;15758:2;15753:3;15694:67;:::i;:::-;15687:74;;15770:93;15859:3;15770:93;:::i;:::-;15888:2;15883:3;15879:12;15872:19;;15531:366;;;:::o;15903:419::-;16069:4;16107:2;16096:9;16092:18;16084:26;;16156:9;16150:4;16146:20;16142:1;16131:9;16127:17;16120:47;16184:131;16310:4;16184:131;:::i;:::-;16176:139;;15903:419;;;:::o;16328:224::-;16468:34;16464:1;16456:6;16452:14;16445:58;16537:7;16532:2;16524:6;16520:15;16513:32;16328:224;:::o;16558:366::-;16700:3;16721:67;16785:2;16780:3;16721:67;:::i;:::-;16714:74;;16797:93;16886:3;16797:93;:::i;:::-;16915:2;16910:3;16906:12;16899:19;;16558:366;;;:::o;16930:419::-;17096:4;17134:2;17123:9;17119:18;17111:26;;17183:9;17177:4;17173:20;17169:1;17158:9;17154:17;17147:47;17211:131;17337:4;17211:131;:::i;:::-;17203:139;;16930:419;;;:::o;17355:222::-;17495:34;17491:1;17483:6;17479:14;17472:58;17564:5;17559:2;17551:6;17547:15;17540:30;17355:222;:::o;17583:366::-;17725:3;17746:67;17810:2;17805:3;17746:67;:::i;:::-;17739:74;;17822:93;17911:3;17822:93;:::i;:::-;17940:2;17935:3;17931:12;17924:19;;17583:366;;;:::o;17955:419::-;18121:4;18159:2;18148:9;18144:18;18136:26;;18208:9;18202:4;18198:20;18194:1;18183:9;18179:17;18172:47;18236:131;18362:4;18236:131;:::i;:::-;18228:139;;17955:419;;;:::o;18380:225::-;18520:34;18516:1;18508:6;18504:14;18497:58;18589:8;18584:2;18576:6;18572:15;18565:33;18380:225;:::o;18611:366::-;18753:3;18774:67;18838:2;18833:3;18774:67;:::i;:::-;18767:74;;18850:93;18939:3;18850:93;:::i;:::-;18968:2;18963:3;18959:12;18952:19;;18611:366;;;:::o;18983:419::-;19149:4;19187:2;19176:9;19172:18;19164:26;;19236:9;19230:4;19226:20;19222:1;19211:9;19207:17;19200:47;19264:131;19390:4;19264:131;:::i;:::-;19256:139;;18983:419;;;:::o;19408:220::-;19548:34;19544:1;19536:6;19532:14;19525:58;19617:3;19612:2;19604:6;19600:15;19593:28;19408:220;:::o;19634:366::-;19776:3;19797:67;19861:2;19856:3;19797:67;:::i;:::-;19790:74;;19873:93;19962:3;19873:93;:::i;:::-;19991:2;19986:3;19982:12;19975:19;;19634:366;;;:::o;20006:419::-;20172:4;20210:2;20199:9;20195:18;20187:26;;20259:9;20253:4;20249:20;20245:1;20234:9;20230:17;20223:47;20287:131;20413:4;20287:131;:::i;:::-;20279:139;;20006:419;;;:::o;20431:221::-;20571:34;20567:1;20559:6;20555:14;20548:58;20640:4;20635:2;20627:6;20623:15;20616:29;20431:221;:::o;20658:366::-;20800:3;20821:67;20885:2;20880:3;20821:67;:::i;:::-;20814:74;;20897:93;20986:3;20897:93;:::i;:::-;21015:2;21010:3;21006:12;20999:19;;20658:366;;;:::o;21030:419::-;21196:4;21234:2;21223:9;21219:18;21211:26;;21283:9;21277:4;21273:20;21269:1;21258:9;21254:17;21247:47;21311:131;21437:4;21311:131;:::i;:::-;21303:139;;21030:419;;;:::o;21455:182::-;21595:34;21591:1;21583:6;21579:14;21572:58;21455:182;:::o;21643:366::-;21785:3;21806:67;21870:2;21865:3;21806:67;:::i;:::-;21799:74;;21882:93;21971:3;21882:93;:::i;:::-;22000:2;21995:3;21991:12;21984:19;;21643:366;;;:::o;22015:419::-;22181:4;22219:2;22208:9;22204:18;22196:26;;22268:9;22262:4;22258:20;22254:1;22243:9;22239:17;22232:47;22296:131;22422:4;22296:131;:::i;:::-;22288:139;;22015:419;;;:::o

Swarm Source

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