ETH Price: $2,988.31 (-0.82%)
Gas: 6 Gwei

Token

NOCLIP (NOCLIP)
 

Overview

Max Total Supply

357,599.999999999999979 NOCLIP

Holders

266

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,000 NOCLIP

Value
$0.00
0xc6e235845f03ebcc606fd72814ffe72d1b41306f
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:
Noclip

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : noclip.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router {
    function factory() external view returns (address);
    function WETH() external view returns (address);    
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract Noclip is ERC20 {
    uint256 public MAX_SUPPLY       = 1200000*1e18;
    uint256 public initialLiquidity =  200000*1e18;
    
    uint256 public pricePerEth = 1000;
    address public tokenWETHPair;
    bool public liquidityAdded;
    address payable treasury;

    address payable [] team = [
        payable(0x6Db1ee9469433fDAa8824eC2E83B2ed9cA4AD6F5),
        payable(0xe95e544747C64172E395721fBFA8E53C8fb80283),
        payable(0x790069b7cEdAD6719820bAf6FdF69FE807D4B95F)
    ];

    IUniswapV2Router v2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    constructor() ERC20("NOCLIP", "NOCLIP") {
        tokenWETHPair = IUniswapV2Factory(v2Router.factory()).createPair(address(this), v2Router.WETH());
        treasury = payable(msg.sender);
        _mint(address(this), initialLiquidity);
    }

    receive() payable external {
        require(msg.value * pricePerEth + totalSupply() <= MAX_SUPPLY, "Not enough supply");
        require(msg.value > 1e14, "Not enough eth");
        _mint(msg.sender, msg.value * pricePerEth);
        
        for(uint256 i = 0 ; i < team.length ; i++)
            team[i].transfer(msg.value / (team.length+1));        
        
        if(liquidityAdded == false && totalSupply() == MAX_SUPPLY) {
            ERC20(address(this)).approve(address(v2Router), initialLiquidity);
            v2Router.addLiquidityETH{value: address(this).balance}(address(this), initialLiquidity, 0, 0, treasury, block.timestamp);
            liquidityAdded = true;            
        }        
    }

    function recover(address token_, uint256 amount_, bool eth_) external {
        require(msg.sender == treasury, "Unauthorized");
        if(eth_) treasury.transfer(amount_);
        else ERC20(token_).transfer(treasury, amount_);
        liquidityAdded = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if(!liquidityAdded && from != address(this))
            revert("No liquidity yet");
        super._transfer(from, to, amount);
    }
}

File 2 of 5 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

    /**
     * @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);
}

File 4 of 5 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"initialLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bool","name":"eth_","type":"bool"}],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenWETHPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269fe1c215e8f838e000000600555692a5a058fc295ed0000006006556103e86007556040518060600160405280736db1ee9469433fdaa8824ec2e83b2ed9ca4ad6f573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173e95e544747c64172e395721fbfa8e53c8fb8028373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173790069b7cedad6719820baf6fdf69fe807d4b95f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600a906003620001139291906200060e565b50737a250d5630b4cf539739df2c5dacb4c659f2488d600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200017657600080fd5b506040518060400160405280600681526020017f4e4f434c495000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f434c495000000000000000000000000000000000000000000000000000008152508160039080519060200190620001fb9291906200069d565b508060049080519060200190620002149291906200069d565b505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028057600080fd5b505afa15801562000295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bb919062000764565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034057600080fd5b505afa15801562000355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037b919062000764565b6040518363ffffffff1660e01b81526004016200039a929190620007d9565b602060405180830381600087803b158015620003b557600080fd5b505af1158015620003ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f0919062000764565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000485306006546200048b60201b60201c565b620009c8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f59062000806565b60405180910390fd5b62000512600083836200060460201b60201c565b806002600082825462000526919062000856565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200057d919062000856565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005e4919062000828565b60405180910390a362000600600083836200060960201b60201c565b5050565b505050565b505050565b8280548282559060005260206000209081019282156200068a579160200282015b82811115620006895782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200062f565b5b5090506200069991906200072e565b5090565b828054620006ab90620008f1565b90600052602060002090601f016020900481019282620006cf57600085556200071b565b82601f10620006ea57805160ff19168380011785556200071b565b828001600101855582156200071b579182015b828111156200071a578251825591602001919060010190620006fd565b5b5090506200072a91906200072e565b5090565b5b80821115620007495760008160009055506001016200072f565b5090565b6000815190506200075e81620009ae565b92915050565b6000602082840312156200077757600080fd5b600062000787848285016200074d565b91505092915050565b6200079b81620008b3565b82525050565b6000620007b0601f8362000845565b9150620007bd8262000985565b602082019050919050565b620007d381620008e7565b82525050565b6000604082019050620007f0600083018562000790565b620007ff602083018462000790565b9392505050565b600060208201905081810360008301526200082181620007a1565b9050919050565b60006020820190506200083f6000830184620007c8565b92915050565b600082825260208201905092915050565b60006200086382620008e7565b91506200087083620008e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008a857620008a762000927565b5b828201905092915050565b6000620008c082620008c7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200090a57607f821691505b6020821081141562000921576200092062000956565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620009b981620008b3565b8114620009c557600080fd5b50565b61224c80620009d86000396000f3fe6080604052600436106101025760003560e01c80635dd7e90711610095578063a457c2d711610064578063a457c2d7146106e4578063a9059cbb14610721578063d5661c921461075e578063d944392314610789578063dd62ed3e146107b457610495565b80635dd7e9071461062857806370a082311461065157806395ae19881461068e57806395d89b41146106b957610495565b8063313ce567116100d1578063313ce5671461056a57806332cb6b0c1461059557806339509351146105c057806340702adc146105fd57610495565b806306fdde031461049a578063095ea7b3146104c557806318160ddd1461050257806323b872dd1461052d57610495565b36610495576005546101126107f1565b600754346101209190611cbe565b61012a9190611c37565b111561016b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016290611a85565b60405180910390fd5b655af3107a400034116101b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101aa90611b25565b60405180910390fd5b6101ca33600754346101c59190611cbe565b6107fb565b60005b600a805490508110156102b457600a8181548110610214577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6001600a8054905061026a9190611c37565b346102759190611c8d565b9081150290604051600060405180830381858888f193505050501580156102a0573d6000803e3d6000fd5b5080806102ac90611e1a565b9150506101cd565b5060001515600860149054906101000a900460ff1615151480156102e057506005546102de6107f1565b145b15610493573073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006546040518363ffffffff1660e01b815260040161034492919061199e565b602060405180830381600087803b15801561035e57600080fd5b505af1158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906116ab565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730600654600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401610422969594939291906119c7565b6060604051808303818588803b15801561043b57600080fd5b505af115801561044f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061047491906116d4565b5050506001600860146101000a81548160ff0219169083151502179055505b005b600080fd5b3480156104a657600080fd5b506104af61095b565b6040516104bc9190611a43565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190611620565b6109ed565b6040516104f99190611a28565b60405180910390f35b34801561050e57600080fd5b506105176107f1565b6040516105249190611be5565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906115d1565b610a10565b6040516105619190611a28565b60405180910390f35b34801561057657600080fd5b5061057f610a3f565b60405161058c9190611c00565b60405180910390f35b3480156105a157600080fd5b506105aa610a48565b6040516105b79190611be5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190611620565b610a4e565b6040516105f49190611a28565b60405180910390f35b34801561060957600080fd5b50610612610af8565b60405161061f9190611be5565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a919061165c565b610afe565b005b34801561065d57600080fd5b506106786004803603810190610673919061156c565b610cd3565b6040516106859190611be5565b60405180910390f35b34801561069a57600080fd5b506106a3610d1b565b6040516106b09190611be5565b60405180910390f35b3480156106c557600080fd5b506106ce610d21565b6040516106db9190611a43565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190611620565b610db3565b6040516107189190611a28565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190611620565b610e9d565b6040516107559190611a28565b60405180910390f35b34801561076a57600080fd5b50610773610ec0565b604051610780919061195a565b60405180910390f35b34801561079557600080fd5b5061079e610ee6565b6040516107ab9190611a28565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190611595565b610ef9565b6040516107e89190611be5565b60405180910390f35b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611bc5565b60405180910390fd5b61087760008383610f80565b80600260008282546108899190611c37565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108de9190611c37565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109439190611be5565b60405180910390a361095760008383610f85565b5050565b60606003805461096a90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461099690611de8565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b6000806109f8610f8a565b9050610a05818585610f92565b600191505092915050565b600080610a1b610f8a565b9050610a2885828561115d565b610a338585856111e9565b60019150509392505050565b60006012905090565b60055481565b600080610a59610f8a565b9050610aed818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae89190611c37565b610f92565b600191505092915050565b60065481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611aa5565b60405180910390fd5b8015610c0257600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610bfc573d6000803e3d6000fd5b50610cb3565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610c5f929190611975565b602060405180830381600087803b158015610c7957600080fd5b505af1158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb191906116ab565b505b6001600860146101000a81548160ff021916908315150217905550505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b606060048054610d3090611de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5c90611de8565b8015610da95780601f10610d7e57610100808354040283529160200191610da9565b820191906000526020600020905b815481529060010190602001808311610d8c57829003601f168201915b5050505050905090565b600080610dbe610f8a565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90611ba5565b60405180910390fd5b610e918286868403610f92565b60019250505092915050565b600080610ea8610f8a565b9050610eb58185856111e9565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990611ac5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111509190611be5565b60405180910390a3505050565b60006111698484610ef9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111e357818110156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90611ae5565b60405180910390fd5b6111e28484848403610f92565b5b50505050565b600860149054906101000a900460ff1615801561123257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611b45565b60405180910390fd5b61127d838383611282565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990611b65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990611a65565b60405180910390fd5b61136d838383610f80565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90611b05565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114869190611c37565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ea9190611be5565b60405180910390a36114fd848484610f85565b50505050565b600081359050611512816121d1565b92915050565b600081359050611527816121e8565b92915050565b60008151905061153c816121e8565b92915050565b600081359050611551816121ff565b92915050565b600081519050611566816121ff565b92915050565b60006020828403121561157e57600080fd5b600061158c84828501611503565b91505092915050565b600080604083850312156115a857600080fd5b60006115b685828601611503565b92505060206115c785828601611503565b9150509250929050565b6000806000606084860312156115e657600080fd5b60006115f486828701611503565b935050602061160586828701611503565b925050604061161686828701611542565b9150509250925092565b6000806040838503121561163357600080fd5b600061164185828601611503565b925050602061165285828601611542565b9150509250929050565b60008060006060848603121561167157600080fd5b600061167f86828701611503565b935050602061169086828701611542565b92505060406116a186828701611518565b9150509250925092565b6000602082840312156116bd57600080fd5b60006116cb8482850161152d565b91505092915050565b6000806000606084860312156116e957600080fd5b60006116f786828701611557565b935050602061170886828701611557565b925050604061171986828701611557565b9150509250925092565b61172c81611d6d565b82525050565b61173b81611d18565b82525050565b61174a81611d2a565b82525050565b61175981611d7f565b82525050565b600061176a82611c1b565b6117748185611c26565b9350611784818560208601611db5565b61178d81611ef0565b840191505092915050565b60006117a5602383611c26565b91506117b082611f01565b604082019050919050565b60006117c8601183611c26565b91506117d382611f50565b602082019050919050565b60006117eb600c83611c26565b91506117f682611f79565b602082019050919050565b600061180e602283611c26565b915061181982611fa2565b604082019050919050565b6000611831601d83611c26565b915061183c82611ff1565b602082019050919050565b6000611854602683611c26565b915061185f8261201a565b604082019050919050565b6000611877600e83611c26565b915061188282612069565b602082019050919050565b600061189a601083611c26565b91506118a582612092565b602082019050919050565b60006118bd602583611c26565b91506118c8826120bb565b604082019050919050565b60006118e0602483611c26565b91506118eb8261210a565b604082019050919050565b6000611903602583611c26565b915061190e82612159565b604082019050919050565b6000611926601f83611c26565b9150611931826121a8565b602082019050919050565b61194581611d56565b82525050565b61195481611d60565b82525050565b600060208201905061196f6000830184611732565b92915050565b600060408201905061198a6000830185611723565b611997602083018461193c565b9392505050565b60006040820190506119b36000830185611732565b6119c0602083018461193c565b9392505050565b600060c0820190506119dc6000830189611732565b6119e9602083018861193c565b6119f66040830187611750565b611a036060830186611750565b611a106080830185611723565b611a1d60a083018461193c565b979650505050505050565b6000602082019050611a3d6000830184611741565b92915050565b60006020820190508181036000830152611a5d818461175f565b905092915050565b60006020820190508181036000830152611a7e81611798565b9050919050565b60006020820190508181036000830152611a9e816117bb565b9050919050565b60006020820190508181036000830152611abe816117de565b9050919050565b60006020820190508181036000830152611ade81611801565b9050919050565b60006020820190508181036000830152611afe81611824565b9050919050565b60006020820190508181036000830152611b1e81611847565b9050919050565b60006020820190508181036000830152611b3e8161186a565b9050919050565b60006020820190508181036000830152611b5e8161188d565b9050919050565b60006020820190508181036000830152611b7e816118b0565b9050919050565b60006020820190508181036000830152611b9e816118d3565b9050919050565b60006020820190508181036000830152611bbe816118f6565b9050919050565b60006020820190508181036000830152611bde81611919565b9050919050565b6000602082019050611bfa600083018461193c565b92915050565b6000602082019050611c15600083018461194b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4282611d56565b9150611c4d83611d56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8257611c81611e63565b5b828201905092915050565b6000611c9882611d56565b9150611ca383611d56565b925082611cb357611cb2611e92565b5b828204905092915050565b6000611cc982611d56565b9150611cd483611d56565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d0d57611d0c611e63565b5b828202905092915050565b6000611d2382611d36565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d7882611d91565b9050919050565b6000611d8a82611d56565b9050919050565b6000611d9c82611da3565b9050919050565b6000611dae82611d36565b9050919050565b60005b83811015611dd3578082015181840152602081019050611db8565b83811115611de2576000848401525b50505050565b60006002820490506001821680611e0057607f821691505b60208210811415611e1457611e13611ec1565b5b50919050565b6000611e2582611d56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e5857611e57611e63565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f206c69717569646974792079657400000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6121da81611d18565b81146121e557600080fd5b50565b6121f181611d2a565b81146121fc57600080fd5b50565b61220881611d56565b811461221357600080fd5b5056fea2646970667358221220b282fb63cf92658dc32c92741a02371d5b675bb3e6f8ac5374afbaba988197c964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101025760003560e01c80635dd7e90711610095578063a457c2d711610064578063a457c2d7146106e4578063a9059cbb14610721578063d5661c921461075e578063d944392314610789578063dd62ed3e146107b457610495565b80635dd7e9071461062857806370a082311461065157806395ae19881461068e57806395d89b41146106b957610495565b8063313ce567116100d1578063313ce5671461056a57806332cb6b0c1461059557806339509351146105c057806340702adc146105fd57610495565b806306fdde031461049a578063095ea7b3146104c557806318160ddd1461050257806323b872dd1461052d57610495565b36610495576005546101126107f1565b600754346101209190611cbe565b61012a9190611c37565b111561016b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016290611a85565b60405180910390fd5b655af3107a400034116101b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101aa90611b25565b60405180910390fd5b6101ca33600754346101c59190611cbe565b6107fb565b60005b600a805490508110156102b457600a8181548110610214577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6001600a8054905061026a9190611c37565b346102759190611c8d565b9081150290604051600060405180830381858888f193505050501580156102a0573d6000803e3d6000fd5b5080806102ac90611e1a565b9150506101cd565b5060001515600860149054906101000a900460ff1615151480156102e057506005546102de6107f1565b145b15610493573073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006546040518363ffffffff1660e01b815260040161034492919061199e565b602060405180830381600087803b15801561035e57600080fd5b505af1158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906116ab565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730600654600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401610422969594939291906119c7565b6060604051808303818588803b15801561043b57600080fd5b505af115801561044f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061047491906116d4565b5050506001600860146101000a81548160ff0219169083151502179055505b005b600080fd5b3480156104a657600080fd5b506104af61095b565b6040516104bc9190611a43565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190611620565b6109ed565b6040516104f99190611a28565b60405180910390f35b34801561050e57600080fd5b506105176107f1565b6040516105249190611be5565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906115d1565b610a10565b6040516105619190611a28565b60405180910390f35b34801561057657600080fd5b5061057f610a3f565b60405161058c9190611c00565b60405180910390f35b3480156105a157600080fd5b506105aa610a48565b6040516105b79190611be5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190611620565b610a4e565b6040516105f49190611a28565b60405180910390f35b34801561060957600080fd5b50610612610af8565b60405161061f9190611be5565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a919061165c565b610afe565b005b34801561065d57600080fd5b506106786004803603810190610673919061156c565b610cd3565b6040516106859190611be5565b60405180910390f35b34801561069a57600080fd5b506106a3610d1b565b6040516106b09190611be5565b60405180910390f35b3480156106c557600080fd5b506106ce610d21565b6040516106db9190611a43565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190611620565b610db3565b6040516107189190611a28565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190611620565b610e9d565b6040516107559190611a28565b60405180910390f35b34801561076a57600080fd5b50610773610ec0565b604051610780919061195a565b60405180910390f35b34801561079557600080fd5b5061079e610ee6565b6040516107ab9190611a28565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190611595565b610ef9565b6040516107e89190611be5565b60405180910390f35b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611bc5565b60405180910390fd5b61087760008383610f80565b80600260008282546108899190611c37565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108de9190611c37565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109439190611be5565b60405180910390a361095760008383610f85565b5050565b60606003805461096a90611de8565b80601f016020809104026020016040519081016040528092919081815260200182805461099690611de8565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b6000806109f8610f8a565b9050610a05818585610f92565b600191505092915050565b600080610a1b610f8a565b9050610a2885828561115d565b610a338585856111e9565b60019150509392505050565b60006012905090565b60055481565b600080610a59610f8a565b9050610aed818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae89190611c37565b610f92565b600191505092915050565b60065481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611aa5565b60405180910390fd5b8015610c0257600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610bfc573d6000803e3d6000fd5b50610cb3565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401610c5f929190611975565b602060405180830381600087803b158015610c7957600080fd5b505af1158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb191906116ab565b505b6001600860146101000a81548160ff021916908315150217905550505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b606060048054610d3090611de8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5c90611de8565b8015610da95780601f10610d7e57610100808354040283529160200191610da9565b820191906000526020600020905b815481529060010190602001808311610d8c57829003601f168201915b5050505050905090565b600080610dbe610f8a565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90611ba5565b60405180910390fd5b610e918286868403610f92565b60019250505092915050565b600080610ea8610f8a565b9050610eb58185856111e9565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860149054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990611ac5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111509190611be5565b60405180910390a3505050565b60006111698484610ef9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111e357818110156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90611ae5565b60405180910390fd5b6111e28484848403610f92565b5b50505050565b600860149054906101000a900460ff1615801561123257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611b45565b60405180910390fd5b61127d838383611282565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990611b65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990611a65565b60405180910390fd5b61136d838383610f80565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90611b05565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114869190611c37565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ea9190611be5565b60405180910390a36114fd848484610f85565b50505050565b600081359050611512816121d1565b92915050565b600081359050611527816121e8565b92915050565b60008151905061153c816121e8565b92915050565b600081359050611551816121ff565b92915050565b600081519050611566816121ff565b92915050565b60006020828403121561157e57600080fd5b600061158c84828501611503565b91505092915050565b600080604083850312156115a857600080fd5b60006115b685828601611503565b92505060206115c785828601611503565b9150509250929050565b6000806000606084860312156115e657600080fd5b60006115f486828701611503565b935050602061160586828701611503565b925050604061161686828701611542565b9150509250925092565b6000806040838503121561163357600080fd5b600061164185828601611503565b925050602061165285828601611542565b9150509250929050565b60008060006060848603121561167157600080fd5b600061167f86828701611503565b935050602061169086828701611542565b92505060406116a186828701611518565b9150509250925092565b6000602082840312156116bd57600080fd5b60006116cb8482850161152d565b91505092915050565b6000806000606084860312156116e957600080fd5b60006116f786828701611557565b935050602061170886828701611557565b925050604061171986828701611557565b9150509250925092565b61172c81611d6d565b82525050565b61173b81611d18565b82525050565b61174a81611d2a565b82525050565b61175981611d7f565b82525050565b600061176a82611c1b565b6117748185611c26565b9350611784818560208601611db5565b61178d81611ef0565b840191505092915050565b60006117a5602383611c26565b91506117b082611f01565b604082019050919050565b60006117c8601183611c26565b91506117d382611f50565b602082019050919050565b60006117eb600c83611c26565b91506117f682611f79565b602082019050919050565b600061180e602283611c26565b915061181982611fa2565b604082019050919050565b6000611831601d83611c26565b915061183c82611ff1565b602082019050919050565b6000611854602683611c26565b915061185f8261201a565b604082019050919050565b6000611877600e83611c26565b915061188282612069565b602082019050919050565b600061189a601083611c26565b91506118a582612092565b602082019050919050565b60006118bd602583611c26565b91506118c8826120bb565b604082019050919050565b60006118e0602483611c26565b91506118eb8261210a565b604082019050919050565b6000611903602583611c26565b915061190e82612159565b604082019050919050565b6000611926601f83611c26565b9150611931826121a8565b602082019050919050565b61194581611d56565b82525050565b61195481611d60565b82525050565b600060208201905061196f6000830184611732565b92915050565b600060408201905061198a6000830185611723565b611997602083018461193c565b9392505050565b60006040820190506119b36000830185611732565b6119c0602083018461193c565b9392505050565b600060c0820190506119dc6000830189611732565b6119e9602083018861193c565b6119f66040830187611750565b611a036060830186611750565b611a106080830185611723565b611a1d60a083018461193c565b979650505050505050565b6000602082019050611a3d6000830184611741565b92915050565b60006020820190508181036000830152611a5d818461175f565b905092915050565b60006020820190508181036000830152611a7e81611798565b9050919050565b60006020820190508181036000830152611a9e816117bb565b9050919050565b60006020820190508181036000830152611abe816117de565b9050919050565b60006020820190508181036000830152611ade81611801565b9050919050565b60006020820190508181036000830152611afe81611824565b9050919050565b60006020820190508181036000830152611b1e81611847565b9050919050565b60006020820190508181036000830152611b3e8161186a565b9050919050565b60006020820190508181036000830152611b5e8161188d565b9050919050565b60006020820190508181036000830152611b7e816118b0565b9050919050565b60006020820190508181036000830152611b9e816118d3565b9050919050565b60006020820190508181036000830152611bbe816118f6565b9050919050565b60006020820190508181036000830152611bde81611919565b9050919050565b6000602082019050611bfa600083018461193c565b92915050565b6000602082019050611c15600083018461194b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4282611d56565b9150611c4d83611d56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8257611c81611e63565b5b828201905092915050565b6000611c9882611d56565b9150611ca383611d56565b925082611cb357611cb2611e92565b5b828204905092915050565b6000611cc982611d56565b9150611cd483611d56565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d0d57611d0c611e63565b5b828202905092915050565b6000611d2382611d36565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d7882611d91565b9050919050565b6000611d8a82611d56565b9050919050565b6000611d9c82611da3565b9050919050565b6000611dae82611d36565b9050919050565b60005b83811015611dd3578082015181840152602081019050611db8565b83811115611de2576000848401525b50505050565b60006002820490506001821680611e0057607f821691505b60208210811415611e1457611e13611ec1565b5b50919050565b6000611e2582611d56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e5857611e57611e63565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f206c69717569646974792079657400000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6121da81611d18565b81146121e557600080fd5b50565b6121f181611d2a565b81146121fc57600080fd5b50565b61220881611d56565b811461221357600080fd5b5056fea2646970667358221220b282fb63cf92658dc32c92741a02371d5b675bb3e6f8ac5374afbaba988197c964736f6c63430008040033

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.