ETH Price: $3,389.85 (+5.72%)
 

Overview

Max Total Supply

420,000,000,000,000 DOOKIE

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dancube.eth
Balance
4,983,953,473,093.692673413394588974 DOOKIE

Value
$0.00
0x40415c1c0e7a8ff3e184b51a94a2fc5b92df9434
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:
Dookie

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Dookie.sol
// 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.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Dookie unf.sol


pragma solidity ^0.8.9;




contract Dookie is Context, ERC20, Ownable {
    mapping(address => bool) private bots;

    constructor() ERC20("Dookie", "DOOKIE") {
        _mint(_msgSender(), 420000000000000 * 10**decimals());
    }

    function getBlackListStatus (address _addrs) public view returns (bool){
        return bots[_addrs];
    }

    function blockBots(address[] memory bots_) external onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function unblockBot(address account) external onlyOwner {
        require(bots[account], "Address is not blacklisted");

        bots[account] = false;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(!bots[_msgSender()], "Sender is blacklisted");
        require(!bots[recipient], "Recipient is blacklisted");

        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        require(!bots[sender], "Sender is blacklisted");
        require(!bots[recipient], "Recipient is blacklisted");
        require(!bots[_msgSender()], "Caller is blacklisted");

        return super.transferFrom(sender, recipient, amount);
    }
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(
            !bots[_msgSender()],
            "Approver is blacklisted"
        );
        require(!bots[spender], "Spender is blacklisted");

        return super.approve(spender, amount);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","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":"_addrs","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f446f6f6b696500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f444f4f4b4945000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005e4565b508060049081620000a19190620005e4565b505050620000c4620000b86200011c60201b60201c565b6200012460201b60201c565b62000116620000d86200011c60201b60201c565b620000e8620001ea60201b60201c565b600a620000f691906200085b565b66017dfcdece40006200010a9190620008ac565b620001f360201b60201c565b620009e3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000265576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025c9062000958565b60405180910390fd5b62000279600083836200036060201b60201c565b80600260008282546200028d91906200097a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003409190620009c6565b60405180910390a36200035c600083836200036560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ec57607f821691505b602082108103620004025762000401620003a4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200046c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200042d565b6200047886836200042d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c5620004bf620004b98462000490565b6200049a565b62000490565b9050919050565b6000819050919050565b620004e183620004a4565b620004f9620004f082620004cc565b8484546200043a565b825550505050565b600090565b6200051062000501565b6200051d818484620004d6565b505050565b5b8181101562000545576200053960008262000506565b60018101905062000523565b5050565b601f82111562000594576200055e8162000408565b62000569846200041d565b8101602085101562000579578190505b6200059162000588856200041d565b83018262000522565b50505b505050565b600082821c905092915050565b6000620005b96000198460080262000599565b1980831691505092915050565b6000620005d48383620005a6565b9150826002028217905092915050565b620005ef826200036a565b67ffffffffffffffff8111156200060b576200060a62000375565b5b620006178254620003d3565b6200062482828562000549565b600060209050601f8311600181146200065c576000841562000647578287015190505b620006538582620005c6565b865550620006c3565b601f1984166200066c8662000408565b60005b8281101562000696578489015182556001820191506020850194506020810190506200066f565b86831015620006b65784890151620006b2601f891682620005a6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200075957808604811115620007315762000730620006cb565b5b6001851615620007415780820291505b80810290506200075185620006fa565b945062000711565b94509492505050565b60008262000774576001905062000847565b8162000784576000905062000847565b81600181146200079d5760028114620007a857620007de565b600191505062000847565b60ff841115620007bd57620007bc620006cb565b5b8360020a915084821115620007d757620007d6620006cb565b5b5062000847565b5060208310610133831016604e8410600b8410161715620008185782820a905083811115620008125762000811620006cb565b5b62000847565b62000827848484600162000707565b92509050818404811115620008415762000840620006cb565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008688262000490565b915062000875836200084e565b9250620008a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000762565b905092915050565b6000620008b98262000490565b9150620008c68362000490565b9250828202620008d68162000490565b91508282048414831517620008f057620008ef620006cb565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000940601f83620008f7565b91506200094d8262000908565b602082019050919050565b60006020820190508181036000830152620009738162000931565b9050919050565b6000620009878262000490565b9150620009948362000490565b9250828201905080821115620009af57620009ae620006cb565b5b92915050565b620009c08162000490565b82525050565b6000602082019050620009dd6000830184620009b5565b92915050565b61211880620009f36000396000f3fe608060405234801561001057600080fd5b506004361061010a5760003560e01c80636b999053116100a257806395d89b411161007157806395d89b41146102b9578063a457c2d7146102d7578063a9059cbb14610307578063dd62ed3e14610337578063f2fde38b146103675761010a565b80636b9990531461024557806370a0823114610261578063715018a6146102915780638da5cb5b1461029b5761010a565b806323b872dd116100de57806323b872dd14610197578063313ce567146101c757806339509351146101e557806359bf1abe146102155761010a565b8062b8cf2a1461010f57806306fdde031461012b578063095ea7b31461014957806318160ddd14610179575b600080fd5b61012960048036038101906101249190611569565b610383565b005b610133610420565b6040516101409190611631565b60405180910390f35b610163600480360381019061015e9190611689565b6104b2565b60405161017091906116e4565b60405180910390f35b6101816105e7565b60405161018e919061170e565b60405180910390f35b6101b160048036038101906101ac9190611729565b6105f1565b6040516101be91906116e4565b60405180910390f35b6101cf6107b5565b6040516101dc9190611798565b60405180910390f35b6101ff60048036038101906101fa9190611689565b6107be565b60405161020c91906116e4565b60405180910390f35b61022f600480360381019061022a91906117b3565b6107f5565b60405161023c91906116e4565b60405180910390f35b61025f600480360381019061025a91906117b3565b61084b565b005b61027b600480360381019061027691906117b3565b61093a565b604051610288919061170e565b60405180910390f35b610299610982565b005b6102a3610996565b6040516102b091906117ef565b60405180910390f35b6102c16109c0565b6040516102ce9190611631565b60405180910390f35b6102f160048036038101906102ec9190611689565b610a52565b6040516102fe91906116e4565b60405180910390f35b610321600480360381019061031c9190611689565b610ac9565b60405161032e91906116e4565b60405180910390f35b610351600480360381019061034c919061180a565b610bfe565b60405161035e919061170e565b60405180910390f35b610381600480360381019061037c91906117b3565b610c85565b005b61038b610d08565b60005b815181101561041c576001600660008484815181106103b0576103af61184a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610414906118a8565b91505061038e565b5050565b60606003805461042f9061191f565b80601f016020809104026020016040519081016040528092919081815260200182805461045b9061191f565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b6000600660006104c0610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f9061199c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cc90611a08565b60405180910390fd5b6105df8383610d8e565b905092915050565b6000600254905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611a74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561070d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070490611ae0565b60405180910390fd5b60066000610719610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079890611b4c565b60405180910390fd5b6107ac848484610db1565b90509392505050565b60006012905090565b6000806107c9610d86565b90506107ea8185856107db8589610bfe565b6107e59190611b6c565b610de0565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610853610d08565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d690611bec565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098a610d08565b6109946000610fa9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cf9061191f565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb9061191f565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b600080610a5d610d86565b90506000610a6b8286610bfe565b905083811015610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790611c7e565b60405180910390fd5b610abd8286868403610de0565b60019250505092915050565b600060066000610ad7610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611a74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ae0565b60405180910390fd5b610bf6838361106f565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8d610d08565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390611d10565b60405180910390fd5b610d0581610fa9565b50565b610d10610d86565b73ffffffffffffffffffffffffffffffffffffffff16610d2e610996565b73ffffffffffffffffffffffffffffffffffffffff1614610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90611d7c565b60405180910390fd5b565b600033905090565b600080610d99610d86565b9050610da6818585610de0565b600191505092915050565b600080610dbc610d86565b9050610dc9858285611092565b610dd485858561111e565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690611e0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611ea0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9c919061170e565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061107a610d86565b905061108781858561111e565b600191505092915050565b600061109e8484610bfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611118578181101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611f0c565b60405180910390fd5b6111178484848403610de0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490611f9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612030565b60405180910390fd5b611207838383611394565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906120c2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137b919061170e565b60405180910390a361138e848484611399565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611400826113b7565b810181811067ffffffffffffffff8211171561141f5761141e6113c8565b5b80604052505050565b600061143261139e565b905061143e82826113f7565b919050565b600067ffffffffffffffff82111561145e5761145d6113c8565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149f82611474565b9050919050565b6114af81611494565b81146114ba57600080fd5b50565b6000813590506114cc816114a6565b92915050565b60006114e56114e084611443565b611428565b905080838252602082019050602084028301858111156115085761150761146f565b5b835b81811015611531578061151d88826114bd565b84526020840193505060208101905061150a565b5050509392505050565b600082601f8301126115505761154f6113b2565b5b81356115608482602086016114d2565b91505092915050565b60006020828403121561157f5761157e6113a8565b5b600082013567ffffffffffffffff81111561159d5761159c6113ad565b5b6115a98482850161153b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115ec5780820151818401526020810190506115d1565b60008484015250505050565b6000611603826115b2565b61160d81856115bd565b935061161d8185602086016115ce565b611626816113b7565b840191505092915050565b6000602082019050818103600083015261164b81846115f8565b905092915050565b6000819050919050565b61166681611653565b811461167157600080fd5b50565b6000813590506116838161165d565b92915050565b600080604083850312156116a05761169f6113a8565b5b60006116ae858286016114bd565b92505060206116bf85828601611674565b9150509250929050565b60008115159050919050565b6116de816116c9565b82525050565b60006020820190506116f960008301846116d5565b92915050565b61170881611653565b82525050565b600060208201905061172360008301846116ff565b92915050565b600080600060608486031215611742576117416113a8565b5b6000611750868287016114bd565b9350506020611761868287016114bd565b925050604061177286828701611674565b9150509250925092565b600060ff82169050919050565b6117928161177c565b82525050565b60006020820190506117ad6000830184611789565b92915050565b6000602082840312156117c9576117c86113a8565b5b60006117d7848285016114bd565b91505092915050565b6117e981611494565b82525050565b600060208201905061180460008301846117e0565b92915050565b60008060408385031215611821576118206113a8565b5b600061182f858286016114bd565b9250506020611840858286016114bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b382611653565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118e5576118e4611879565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193757607f821691505b60208210810361194a576119496118f0565b5b50919050565b7f417070726f76657220697320626c61636b6c6973746564000000000000000000600082015250565b60006119866017836115bd565b915061199182611950565b602082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f5370656e64657220697320626c61636b6c697374656400000000000000000000600082015250565b60006119f26016836115bd565b91506119fd826119bc565b602082019050919050565b60006020820190508181036000830152611a21816119e5565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000611a5e6015836115bd565b9150611a6982611a28565b602082019050919050565b60006020820190508181036000830152611a8d81611a51565b9050919050565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b6000611aca6018836115bd565b9150611ad582611a94565b602082019050919050565b60006020820190508181036000830152611af981611abd565b9050919050565b7f43616c6c657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000611b366015836115bd565b9150611b4182611b00565b602082019050919050565b60006020820190508181036000830152611b6581611b29565b9050919050565b6000611b7782611653565b9150611b8283611653565b9250828201905080821115611b9a57611b99611879565b5b92915050565b7f41646472657373206973206e6f7420626c61636b6c6973746564000000000000600082015250565b6000611bd6601a836115bd565b9150611be182611ba0565b602082019050919050565b60006020820190508181036000830152611c0581611bc9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c686025836115bd565b9150611c7382611c0c565b604082019050919050565b60006020820190508181036000830152611c9781611c5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611cfa6026836115bd565b9150611d0582611c9e565b604082019050919050565b60006020820190508181036000830152611d2981611ced565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d666020836115bd565b9150611d7182611d30565b602082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611df86024836115bd565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a6022836115bd565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ef6601d836115bd565b9150611f0182611ec0565b602082019050919050565b60006020820190508181036000830152611f2581611ee9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f886025836115bd565b9150611f9382611f2c565b604082019050919050565b60006020820190508181036000830152611fb781611f7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061201a6023836115bd565b915061202582611fbe565b604082019050919050565b600060208201905081810360008301526120498161200d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120ac6026836115bd565b91506120b782612050565b604082019050919050565b600060208201905081810360008301526120db8161209f565b905091905056fea2646970667358221220098874fc711e634b5bb06e656a9d2b4e2a5546cd12c635100079cdf4df4666e464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010a5760003560e01c80636b999053116100a257806395d89b411161007157806395d89b41146102b9578063a457c2d7146102d7578063a9059cbb14610307578063dd62ed3e14610337578063f2fde38b146103675761010a565b80636b9990531461024557806370a0823114610261578063715018a6146102915780638da5cb5b1461029b5761010a565b806323b872dd116100de57806323b872dd14610197578063313ce567146101c757806339509351146101e557806359bf1abe146102155761010a565b8062b8cf2a1461010f57806306fdde031461012b578063095ea7b31461014957806318160ddd14610179575b600080fd5b61012960048036038101906101249190611569565b610383565b005b610133610420565b6040516101409190611631565b60405180910390f35b610163600480360381019061015e9190611689565b6104b2565b60405161017091906116e4565b60405180910390f35b6101816105e7565b60405161018e919061170e565b60405180910390f35b6101b160048036038101906101ac9190611729565b6105f1565b6040516101be91906116e4565b60405180910390f35b6101cf6107b5565b6040516101dc9190611798565b60405180910390f35b6101ff60048036038101906101fa9190611689565b6107be565b60405161020c91906116e4565b60405180910390f35b61022f600480360381019061022a91906117b3565b6107f5565b60405161023c91906116e4565b60405180910390f35b61025f600480360381019061025a91906117b3565b61084b565b005b61027b600480360381019061027691906117b3565b61093a565b604051610288919061170e565b60405180910390f35b610299610982565b005b6102a3610996565b6040516102b091906117ef565b60405180910390f35b6102c16109c0565b6040516102ce9190611631565b60405180910390f35b6102f160048036038101906102ec9190611689565b610a52565b6040516102fe91906116e4565b60405180910390f35b610321600480360381019061031c9190611689565b610ac9565b60405161032e91906116e4565b60405180910390f35b610351600480360381019061034c919061180a565b610bfe565b60405161035e919061170e565b60405180910390f35b610381600480360381019061037c91906117b3565b610c85565b005b61038b610d08565b60005b815181101561041c576001600660008484815181106103b0576103af61184a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610414906118a8565b91505061038e565b5050565b60606003805461042f9061191f565b80601f016020809104026020016040519081016040528092919081815260200182805461045b9061191f565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b6000600660006104c0610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053f9061199c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cc90611a08565b60405180910390fd5b6105df8383610d8e565b905092915050565b6000600254905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067790611a74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561070d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070490611ae0565b60405180910390fd5b60066000610719610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079890611b4c565b60405180910390fd5b6107ac848484610db1565b90509392505050565b60006012905090565b6000806107c9610d86565b90506107ea8185856107db8589610bfe565b6107e59190611b6c565b610de0565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610853610d08565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d690611bec565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61098a610d08565b6109946000610fa9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cf9061191f565b80601f01602080910402602001604051908101604052809291908181526020018280546109fb9061191f565b8015610a485780601f10610a1d57610100808354040283529160200191610a48565b820191906000526020600020905b815481529060010190602001808311610a2b57829003601f168201915b5050505050905090565b600080610a5d610d86565b90506000610a6b8286610bfe565b905083811015610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790611c7e565b60405180910390fd5b610abd8286868403610de0565b60019250505092915050565b600060066000610ad7610d86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611a74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611ae0565b60405180910390fd5b610bf6838361106f565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8d610d08565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390611d10565b60405180910390fd5b610d0581610fa9565b50565b610d10610d86565b73ffffffffffffffffffffffffffffffffffffffff16610d2e610996565b73ffffffffffffffffffffffffffffffffffffffff1614610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90611d7c565b60405180910390fd5b565b600033905090565b600080610d99610d86565b9050610da6818585610de0565b600191505092915050565b600080610dbc610d86565b9050610dc9858285611092565b610dd485858561111e565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690611e0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590611ea0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9c919061170e565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061107a610d86565b905061108781858561111e565b600191505092915050565b600061109e8484610bfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611118578181101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611f0c565b60405180910390fd5b6111178484848403610de0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490611f9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390612030565b60405180910390fd5b611207838383611394565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906120c2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137b919061170e565b60405180910390a361138e848484611399565b50505050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611400826113b7565b810181811067ffffffffffffffff8211171561141f5761141e6113c8565b5b80604052505050565b600061143261139e565b905061143e82826113f7565b919050565b600067ffffffffffffffff82111561145e5761145d6113c8565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061149f82611474565b9050919050565b6114af81611494565b81146114ba57600080fd5b50565b6000813590506114cc816114a6565b92915050565b60006114e56114e084611443565b611428565b905080838252602082019050602084028301858111156115085761150761146f565b5b835b81811015611531578061151d88826114bd565b84526020840193505060208101905061150a565b5050509392505050565b600082601f8301126115505761154f6113b2565b5b81356115608482602086016114d2565b91505092915050565b60006020828403121561157f5761157e6113a8565b5b600082013567ffffffffffffffff81111561159d5761159c6113ad565b5b6115a98482850161153b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115ec5780820151818401526020810190506115d1565b60008484015250505050565b6000611603826115b2565b61160d81856115bd565b935061161d8185602086016115ce565b611626816113b7565b840191505092915050565b6000602082019050818103600083015261164b81846115f8565b905092915050565b6000819050919050565b61166681611653565b811461167157600080fd5b50565b6000813590506116838161165d565b92915050565b600080604083850312156116a05761169f6113a8565b5b60006116ae858286016114bd565b92505060206116bf85828601611674565b9150509250929050565b60008115159050919050565b6116de816116c9565b82525050565b60006020820190506116f960008301846116d5565b92915050565b61170881611653565b82525050565b600060208201905061172360008301846116ff565b92915050565b600080600060608486031215611742576117416113a8565b5b6000611750868287016114bd565b9350506020611761868287016114bd565b925050604061177286828701611674565b9150509250925092565b600060ff82169050919050565b6117928161177c565b82525050565b60006020820190506117ad6000830184611789565b92915050565b6000602082840312156117c9576117c86113a8565b5b60006117d7848285016114bd565b91505092915050565b6117e981611494565b82525050565b600060208201905061180460008301846117e0565b92915050565b60008060408385031215611821576118206113a8565b5b600061182f858286016114bd565b9250506020611840858286016114bd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b382611653565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118e5576118e4611879565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193757607f821691505b60208210810361194a576119496118f0565b5b50919050565b7f417070726f76657220697320626c61636b6c6973746564000000000000000000600082015250565b60006119866017836115bd565b915061199182611950565b602082019050919050565b600060208201905081810360008301526119b581611979565b9050919050565b7f5370656e64657220697320626c61636b6c697374656400000000000000000000600082015250565b60006119f26016836115bd565b91506119fd826119bc565b602082019050919050565b60006020820190508181036000830152611a21816119e5565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000611a5e6015836115bd565b9150611a6982611a28565b602082019050919050565b60006020820190508181036000830152611a8d81611a51565b9050919050565b7f526563697069656e7420697320626c61636b6c69737465640000000000000000600082015250565b6000611aca6018836115bd565b9150611ad582611a94565b602082019050919050565b60006020820190508181036000830152611af981611abd565b9050919050565b7f43616c6c657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000611b366015836115bd565b9150611b4182611b00565b602082019050919050565b60006020820190508181036000830152611b6581611b29565b9050919050565b6000611b7782611653565b9150611b8283611653565b9250828201905080821115611b9a57611b99611879565b5b92915050565b7f41646472657373206973206e6f7420626c61636b6c6973746564000000000000600082015250565b6000611bd6601a836115bd565b9150611be182611ba0565b602082019050919050565b60006020820190508181036000830152611c0581611bc9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c686025836115bd565b9150611c7382611c0c565b604082019050919050565b60006020820190508181036000830152611c9781611c5b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611cfa6026836115bd565b9150611d0582611c9e565b604082019050919050565b60006020820190508181036000830152611d2981611ced565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d666020836115bd565b9150611d7182611d30565b602082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611df86024836115bd565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a6022836115bd565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ef6601d836115bd565b9150611f0182611ec0565b602082019050919050565b60006020820190508181036000830152611f2581611ee9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f886025836115bd565b9150611f9382611f2c565b604082019050919050565b60006020820190508181036000830152611fb781611f7b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061201a6023836115bd565b915061202582611fbe565b604082019050919050565b600060208201905081810360008301526120498161200d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120ac6026836115bd565b91506120b782612050565b604082019050919050565b600060208201905081810360008301526120db8161209f565b905091905056fea2646970667358221220098874fc711e634b5bb06e656a9d2b4e2a5546cd12c635100079cdf4df4666e464736f6c63430008120033

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.