ETH Price: $2,578.65 (-2.56%)

Token

A Pig Game (PIG)
 

Overview

Max Total Supply

100,000,000 PIG

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
coinbase2.eth
Balance
0.497702591761471538 PIG

Value
$0.00
0x2EE5Fa95e44aFac32EC3b6f73122B1918D541D9D
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:
APigGameContract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : APigGameContract.sol
// SPDX-License-Identifier: MIT

/*
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES  
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 
DON'T BUY THIS TOKEN UNTIL YOU READ THE RULES 

RULES: https://pignomic.com/

TWITTER: @PIGNOMICS
*/
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract BurnContract {
    IERC20 public token;

    constructor(address _contract) {
        token = IERC20(_contract);
    }

    function getSupplyLeft() public view returns (uint256) {
        return token.balanceOf(address(this));
    }
}

contract APigGameContract is ERC20, Ownable {
    uint256 public constant TOTAL_SUPPLY = 100_000_000 * 1e18;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    uint256 public zoneLimit;
    uint256 public winThreshold;
    uint256 public winBlockNumber;

    bool public tradingEnabled;
    bool internal _hasBegun;
    bool public winnerFound = false;
    bool public isRewardClaimed = false;

    //5% tax on buy/sell
    uint256 public transactionFee = 500;
    uint256 public burnPerTransaction = 4000;

    mapping(address => bool) internal _exempt;
    mapping(address => uint256) internal _timeExpiration;

    address payable internal _vault;
    address public burnAddress;
    address payable internal winner;

    error AlreadyInitialized();
    error AlreadyBegun();

    event AddressInRed(address account, uint256 timestamp);
    event AddressInRedExpired(address account, uint256 amount);
    event TradingBegins(uint256 timestamp);
    event GameBegins(uint256 timestamp);
    event FeesBurned(uint256 amount);
    event AddressEscapedZone(address account);

    modifier _onlyWinner() {
        require(winner == _msgSender(), "winners only");
        _;
    }

    modifier _isGameStart() {
        require(_hasBegun == true, "game has not start");
        _;
    }

    constructor() ERC20("A Pig Game", "PIG") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        _vault = payable(address(this));
        BurnContract burn = new BurnContract(address(this));
        burnAddress = address(burn);

        _exempt[owner()] = true;
        _exempt[address(this)] = true;
        _exempt[burnAddress] = true;
        _mint(address(this), _applyBasisPoints(TOTAL_SUPPLY, 1000));
        _mint(burnAddress, _applyBasisPoints(TOTAL_SUPPLY, 9000));
    }

    function openTrading() external onlyOwner {
        if (tradingEnabled) revert AlreadyInitialized();

        _approve(address(this), address(uniswapV2Router), TOTAL_SUPPLY);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(uniswapV2Pair).transfer(
            owner(),
            IERC20(uniswapV2Pair).balanceOf(address(this))
        );

        tradingEnabled = true;
    }

    function begin() external onlyOwner {
        if (_hasBegun) revert AlreadyBegun();

        renounceOwnership();
        winThreshold = 15;
        zoneLimit = _applyBasisPoints(totalSupply(), 100);
        _hasBegun = true;
        emit GameBegins(block.timestamp);
    }

    function huntPig(address account) external _isGameStart {
        if (_exempt[account] || account == address(uniswapV2Pair)) {
            return;
        }

        if (
            balanceOf(account) < totalSupply() / 100 ||
            _timeExpiration[account] > 0
        ) {
            return;
        }
        _timeExpiration[account] = block.number + 10000;
        emit AddressInRed(account, _timeExpiration[account]);
    }

    function killPig(address account) external _isGameStart {
        if (_exempt[account] || account == address(uniswapV2Pair)) {
            return;
        }

        if (
            _timeExpiration[account] == 0 ||
            block.number <= _timeExpiration[account]
        ) {
            return;
        }
        uint256 amount = balanceOf(account);
        _burnFees(account, amount, 10000);
        emit AddressInRedExpired(account, block.timestamp);
    }

    function escape() external _isGameStart {
        if (_timeExpiration[msg.sender] == 0) {
            return;
        }

        if (balanceOf(msg.sender) < totalSupply() / 100) {
            _timeExpiration[msg.sender] = 0;
            emit AddressEscapedZone(msg.sender);
        }
    }

    function checkIsWinner() external _isGameStart {
        if (
            balanceOf(msg.sender) < ((totalSupply() * winThreshold) / 100) ||
            winnerFound
        ) {
            return;
        }
        winner = payable(msg.sender);
        winnerFound = true;
        winBlockNumber = block.number;
    }

    function rewardWinner() external _onlyWinner {
        if (block.number <= winBlockNumber + 2) {
            return;
        }

        uint256 vaultBalance = balanceOf(address(_vault));
        super._transfer(_vault, winner, vaultBalance);
        isRewardClaimed = true;
        _exempt[msg.sender] = true;
        _timeExpiration[msg.sender] = 0;
        emit AddressEscapedZone(msg.sender);
    }

    receive() external payable {}

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0) || to == address(0)) return;

        if (_timeExpiration[from] > 0 && to != address(this)) {
            revert(
                "LOCKED: address has been hunted and cannot sell. RULES-> https://pignomic.com/"
            );
        }

        if (winnerFound && from == winner && !isRewardClaimed) {
            revert("Winner must claim reward before selling.");
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 finalAmount = _chargeFees(from, to, amount);

        if (_hasBegun) {
            _burnFees(burnAddress, finalAmount, burnPerTransaction);
        }

        super._transfer(from, to, finalAmount);
    }

    function _applyBasisPoints(uint256 amount, uint256 basisPoints)
        internal
        pure
        returns (uint256)
    {
        return (amount * basisPoints) / 10_000;
    }

    function _burnFees(
        address account,
        uint256 amount,
        uint256 basis
    ) internal {
        if (balanceOf(account) == 0) {
            emit FeesBurned(0);
            return;
        }
        uint256 burnAmount = _applyBasisPoints(amount, basis);
        if (balanceOf(account) < burnAmount) {
            _burn(account, balanceOf(account));
        } else {
            _burn(account, burnAmount);
        }
        zoneLimit = _applyBasisPoints(totalSupply(), 100); // .1% into the zone
        emit FeesBurned(burnAmount);
    }

    function _chargeFees(
        address from,
        address to,
        uint256 amount
    ) internal returns (uint256) {
        if (_exempt[from] || _exempt[to]) {
            return amount;
        }

        uint256 fees = _applyBasisPoints(amount, transactionFee);
        super._transfer(from, _vault, fees);

        return amount - fees;
    }

    function getExpirationFromAddress(address account)
        public
        view
        returns (uint256)
    {
        return _timeExpiration[account];
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 9 : 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 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 6 of 9 : 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;
    }
}

File 7 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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"},{"inputs":[],"name":"AlreadyBegun","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"AddressEscapedZone","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AddressInRed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddressInRedExpired","type":"event"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"GameBegins","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":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingBegins","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":"TOTAL_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":"begin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkIsWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"escape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getExpirationFromAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"huntPig","outputs":[],"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":"isRewardClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"killPig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"rewardWinner","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnerFound","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zoneLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff0219169083151502179055506101f4600b55610fa0600c553480156200005357600080fd5b506040518060400160405280600a81526020017f41205069672047616d65000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50494700000000000000000000000000000000000000000000000000000000008152508160039081620000d1919062000afe565b508060049081620000e3919062000afe565b50505062000106620000fa620003cf60201b60201c565b620003d760201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505030600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600030604051620001a09062000876565b620001ac919062000c2a565b604051809103906000f080158015620001c9573d6000803e3d6000fd5b50905080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d6000620002236200049d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000376306200036a6a52b7d2dcc80cd2e40000006103e8620004c760201b60201c565b620004ee60201b60201c565b620003c8601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003bc6a52b7d2dcc80cd2e4000000612328620004c760201b60201c565b620004ee60201b60201c565b5062000f6a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006127108284620004da919062000c76565b620004e6919062000cf0565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005579062000d89565b60405180910390fd5b62000574600083836200065b60201b60201c565b806002600082825462000588919062000dab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063b919062000df7565b60405180910390a362000657600083836200086c60201b60201c565b5050565b620006738383836200087160201b62001b801760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620006db5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000867576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180156200075c57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200079f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007969062000eb0565b60405180910390fd5b600a60029054906101000a900460ff168015620008095750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015620008235750600a60039054906101000a900460ff16155b1562000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000f48565b60405180910390fd5b5b505050565b505050565b505050565b6103f2806200482183390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090657607f821691505b6020821081036200091c576200091b620008be565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000947565b62000992868362000947565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009df620009d9620009d384620009aa565b620009b4565b620009aa565b9050919050565b6000819050919050565b620009fb83620009be565b62000a1362000a0a82620009e6565b84845462000954565b825550505050565b600090565b62000a2a62000a1b565b62000a37818484620009f0565b505050565b5b8181101562000a5f5762000a5360008262000a20565b60018101905062000a3d565b5050565b601f82111562000aae5762000a788162000922565b62000a838462000937565b8101602085101562000a93578190505b62000aab62000aa28562000937565b83018262000a3c565b50505b505050565b600082821c905092915050565b600062000ad36000198460080262000ab3565b1980831691505092915050565b600062000aee838362000ac0565b9150826002028217905092915050565b62000b098262000884565b67ffffffffffffffff81111562000b255762000b246200088f565b5b62000b318254620008ed565b62000b3e82828562000a63565b600060209050601f83116001811462000b76576000841562000b61578287015190505b62000b6d858262000ae0565b86555062000bdd565b601f19841662000b868662000922565b60005b8281101562000bb05784890151825560018201915060208501945060208101905062000b89565b8683101562000bd0578489015162000bcc601f89168262000ac0565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c128262000be5565b9050919050565b62000c248162000c05565b82525050565b600060208201905062000c41600083018462000c19565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c8382620009aa565b915062000c9083620009aa565b925082820262000ca081620009aa565b9150828204841483151762000cba5762000cb962000c47565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cfd82620009aa565b915062000d0a83620009aa565b92508262000d1d5762000d1c62000cc1565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d71601f8362000d28565b915062000d7e8262000d39565b602082019050919050565b6000602082019050818103600083015262000da48162000d62565b9050919050565b600062000db882620009aa565b915062000dc583620009aa565b925082820190508082111562000de05762000ddf62000c47565b5b92915050565b62000df181620009aa565b82525050565b600060208201905062000e0e600083018462000de6565b92915050565b7f4c4f434b45443a206164647265737320686173206265656e2068756e7465642060008201527f616e642063616e6e6f742073656c6c2e2052554c45532d3e2068747470733a2f60208201527f2f7069676e6f6d69632e636f6d2f000000000000000000000000000000000000604082015250565b600062000e98604e8362000d28565b915062000ea58262000e14565b606082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b7f57696e6e6572206d75737420636c61696d20726577617264206265666f72652060008201527f73656c6c696e672e000000000000000000000000000000000000000000000000602082015250565b600062000f3060288362000d28565b915062000f3d8262000ed2565b604082019050919050565b6000602082019050818103600083015262000f638162000f21565b9050919050565b60805161387862000fa9600039600081816108880152818161110401528181611136015281816111e10152818161134e01526113f101526138786000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c1fdcee0116100a0578063dd3d14401161006f578063dd3d1440146106fe578063dd62ed3e14610729578063ed96cc5114610766578063f2fde38b14610791578063febdb9b8146107ba57610204565b8063c1fdcee01461067c578063c9567bf9146106b9578063d180667d146106d0578063dc971893146106e757610204565b8063a457c2d7116100dc578063a457c2d7146105ae578063a7453c4e146105eb578063a9059cbb14610614578063c010ce681461065157610204565b80638da5cb5b14610502578063902d55a51461052d57806395d89b41146105585780639ed3edf01461058357610204565b806332d1ec331161019057806349bd5a5e1161015f57806349bd5a5e1461042d5780634ada218b1461045857806370a082311461048357806370d5ae05146104c0578063715018a6146104eb57610204565b806332d1ec3314610371578063395093511461039c578063446fedef146103d95780634518575e1461040257610204565b80631bce6ff3116101cc5780631bce6ff3146102c757806323b872dd146102de57806327edf0971461031b578063313ce5671461034657610204565b806306fdde0314610209578063095ea7b3146102345780631694505e1461027157806318160ddd1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107d1565b60405161022b919061295e565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612a19565b610863565b6040516102689190612a74565b60405180910390f35b34801561027d57600080fd5b50610286610886565b6040516102939190612aee565b60405180910390f35b3480156102a857600080fd5b506102b16108aa565b6040516102be9190612b18565b60405180910390f35b3480156102d357600080fd5b506102dc6108b4565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612b33565b61097f565b6040516103129190612a74565b60405180910390f35b34801561032757600080fd5b506103306109ae565b60405161033d9190612b18565b60405180910390f35b34801561035257600080fd5b5061035b6109b4565b6040516103689190612ba2565b60405180910390f35b34801561037d57600080fd5b506103866109bd565b6040516103939190612a74565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612a19565b6109d0565b6040516103d09190612a74565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612bbd565b610a07565b005b34801561040e57600080fd5b50610417610bef565b6040516104249190612b18565b60405180910390f35b34801561043957600080fd5b50610442610bf5565b60405161044f9190612bf9565b60405180910390f35b34801561046457600080fd5b5061046d610c1b565b60405161047a9190612a74565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612bbd565b610c2e565b6040516104b79190612b18565b60405180910390f35b3480156104cc57600080fd5b506104d5610c76565b6040516104e29190612bf9565b60405180910390f35b3480156104f757600080fd5b50610500610c9c565b005b34801561050e57600080fd5b50610517610cb0565b6040516105249190612bf9565b60405180910390f35b34801561053957600080fd5b50610542610cda565b60405161054f9190612b18565b60405180910390f35b34801561056457600080fd5b5061056d610ce9565b60405161057a919061295e565b60405180910390f35b34801561058f57600080fd5b50610598610d7b565b6040516105a59190612b18565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612a19565b610d81565b6040516105e29190612a74565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612bbd565b610df8565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a19565b611030565b6040516106489190612a74565b60405180910390f35b34801561065d57600080fd5b50610666611053565b6040516106739190612a74565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612bbd565b611066565b6040516106b09190612b18565b60405180910390f35b3480156106c557600080fd5b506106ce6110af565b005b3480156106dc57600080fd5b506106e5611609565b005b3480156106f357600080fd5b506106fc61174a565b005b34801561070a57600080fd5b5061071361184c565b6040516107209190612b18565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612c14565b611852565b60405161075d9190612b18565b60405180910390f35b34801561077257600080fd5b5061077b6118d9565b6040516107889190612b18565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612bbd565b6118df565b005b3480156107c657600080fd5b506107cf611962565b005b6060600380546107e090612c83565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90612c83565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b60008061086e611b85565b905061087b818585611b8d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6108bc611d56565b600a60019054906101000a900460ff1615610903576040517fa8a341f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090b610c9c565b600f60088190555061092561091e6108aa565b6064611dd4565b6007819055506001600a60016101000a81548160ff0219169083151502179055507fb7fb1a0dcb6e0113174feef796d4f2e4ddb3a9e42ce2afc46e2a57a3ad82692a426040516109759190612b18565b60405180910390a1565b60008061098a611b85565b9050610997858285611df7565b6109a2858585611e83565b60019150509392505050565b600c5481565b60006012905090565b600a60029054906101000a900460ff1681565b6000806109db611b85565b90506109fc8185856109ed8589611852565b6109f79190612ce3565b611b8d565b600191505092915050565b60011515600a60019054906101000a900460ff16151514610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490612d63565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610b025750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610bec576000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541480610b935750600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544311155b610bec576000610ba282610c2e565b9050610bb18282612710611fe0565b7faafcd04179aa3fb6a799d5956153a1c663f5c7765f40384dce2fa65b9d32935f8242604051610be2929190612d83565b60405180910390a1505b50565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ca4611d56565b610cae60006120c3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b606060048054610cf890612c83565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2490612c83565b8015610d715780601f10610d4657610100808354040283529160200191610d71565b820191906000526020600020905b815481529060010190602001808311610d5457829003601f168201915b5050505050905090565b600b5481565b600080610d8c611b85565b90506000610d9a8286611852565b905083811015610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612e1e565b60405180910390fd5b610dec8286868403611b8d565b60019250505092915050565b60011515600a60019054906101000a900460ff16151514610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612d63565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ef35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61102d576064610f016108aa565b610f0b9190612e6d565b610f1482610c2e565b1080610f5f57506000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b61102d5761271043610f719190612ce3565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f2a9352b416f52efec572ea1aff717b2c43580c516a75a54bd3573ea2c85d1ff981600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611024929190612d83565b60405180910390a15b50565b60008061103b611b85565b9050611048818585611e83565b600191505092915050565b600a60039054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b7611d56565b600a60009054906101000a900460ff16156110fe576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611134307f00000000000000000000000000000000000000000000000000000000000000006a52b7d2dcc80cd2e4000000611b8d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190612eb3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190612eb3565b6040518363ffffffff1660e01b815260040161128b929190612ee0565b6020604051808303816000875af11580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190612eb3565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016113ab929190612d83565b6020604051808303816000875af11580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190612f35565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061143630610c2e565b600080611441610cb0565b426040518863ffffffff1660e01b815260040161146396959493929190612f9d565b60606040518083038185885af1158015611481573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114a69190613013565b505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6114ef610cb0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161154a9190612bf9565b602060405180830381865afa158015611567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158b9190613066565b6040518363ffffffff1660e01b81526004016115a8929190612d83565b6020604051808303816000875af11580156115c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115eb9190612f35565b506001600a60006101000a81548160ff021916908315150217905550565b60011515600a60019054906101000a900460ff1615151461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690612d63565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403156117485760646116b16108aa565b6116bb9190612e6d565b6116c433610c2e565b1015611747576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f846f002c214fc4bd75116087d8e09d4a7790f450649a47673df59c53fe68bac43360405161173e9190612bf9565b60405180910390a15b5b565b60011515600a60019054906101000a900460ff161515146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790612d63565b60405180910390fd5b60646008546117ad6108aa565b6117b79190613093565b6117c19190612e6d565b6117ca33610c2e565b10806117e25750600a60029054906101000a900460ff165b61184a5733601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60026101000a81548160ff021916908315150217905550436009819055505b565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6118e7611d56565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613147565b60405180910390fd5b61195f816120c3565b50565b61196a611b85565b73ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906131b3565b60405180910390fd5b6002600954611a089190612ce3565b431115611b7e576000611a3c600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c2e565b9050611a8d600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612189565b6001600a60036101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f846f002c214fc4bd75116087d8e09d4a7790f450649a47673df59c53fe68bac433604051611b749190612bf9565b60405180910390a1505b565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613245565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906132d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d499190612b18565b60405180910390a3505050565b611d5e611b85565b73ffffffffffffffffffffffffffffffffffffffff16611d7c610cb0565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613343565b60405180910390fd5b565b60006127108284611de59190613093565b611def9190612e6d565b905092915050565b6000611e038484611852565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e7d5781811015611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906133af565b60405180910390fd5b611e7c8484848403611b8d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f58906134d3565b60405180910390fd5b60008103611f7a57611f7583836000612189565b611fdb565b6000611f878484846123ff565b9050600a60019054906101000a900460ff1615611fce57611fcd601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600c54611fe0565b5b611fd9848483612189565b505b505050565b6000611feb84610c2e565b0361202d577fff5a083d417eed59123be681a4f027417a9b5282a724bdfc9b58163bdc0f1e94600060405161202091906134f3565b60405180910390a16120be565b60006120398383611dd4565b90508061204585610c2e565b10156120625761205d8461205886610c2e565b612503565b61206d565b61206c8482612503565b5b61207f6120786108aa565b6064611dd4565b6007819055507fff5a083d417eed59123be681a4f027417a9b5282a724bdfc9b58163bdc0f1e94816040516120b49190612b18565b60405180910390a1505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e906134d3565b60405180910390fd5b6122728383836126d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613580565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e69190612b18565b60405180910390a36123f98484846128c9565b50505050565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124a25750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124af578190506124fc565b60006124bd83600b54611dd4565b90506124ec85600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612189565b80836124f891906135a0565b9150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990613646565b60405180910390fd5b61257e826000836126d0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb906136d8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126b79190612b18565b60405180910390a36126cb836000846128c9565b505050565b6126db838383611b80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806127425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6128c4576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180156127c157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613790565b60405180910390fd5b600a60029054906101000a900460ff16801561286a5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156128835750600a60039054906101000a900460ff16155b156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90613822565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129085780820151818401526020810190506128ed565b60008484015250505050565b6000601f19601f8301169050919050565b6000612930826128ce565b61293a81856128d9565b935061294a8185602086016128ea565b61295381612914565b840191505092915050565b600060208201905081810360008301526129788184612925565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129b082612985565b9050919050565b6129c0816129a5565b81146129cb57600080fd5b50565b6000813590506129dd816129b7565b92915050565b6000819050919050565b6129f6816129e3565b8114612a0157600080fd5b50565b600081359050612a13816129ed565b92915050565b60008060408385031215612a3057612a2f612980565b5b6000612a3e858286016129ce565b9250506020612a4f85828601612a04565b9150509250929050565b60008115159050919050565b612a6e81612a59565b82525050565b6000602082019050612a896000830184612a65565b92915050565b6000819050919050565b6000612ab4612aaf612aaa84612985565b612a8f565b612985565b9050919050565b6000612ac682612a99565b9050919050565b6000612ad882612abb565b9050919050565b612ae881612acd565b82525050565b6000602082019050612b036000830184612adf565b92915050565b612b12816129e3565b82525050565b6000602082019050612b2d6000830184612b09565b92915050565b600080600060608486031215612b4c57612b4b612980565b5b6000612b5a868287016129ce565b9350506020612b6b868287016129ce565b9250506040612b7c86828701612a04565b9150509250925092565b600060ff82169050919050565b612b9c81612b86565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b600060208284031215612bd357612bd2612980565b5b6000612be1848285016129ce565b91505092915050565b612bf3816129a5565b82525050565b6000602082019050612c0e6000830184612bea565b92915050565b60008060408385031215612c2b57612c2a612980565b5b6000612c39858286016129ce565b9250506020612c4a858286016129ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9b57607f821691505b602082108103612cae57612cad612c54565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cee826129e3565b9150612cf9836129e3565b9250828201905080821115612d1157612d10612cb4565b5b92915050565b7f67616d6520686173206e6f742073746172740000000000000000000000000000600082015250565b6000612d4d6012836128d9565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b6000604082019050612d986000830185612bea565b612da56020830184612b09565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e086025836128d9565b9150612e1382612dac565b604082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e78826129e3565b9150612e83836129e3565b925082612e9357612e92612e3e565b5b828204905092915050565b600081519050612ead816129b7565b92915050565b600060208284031215612ec957612ec8612980565b5b6000612ed784828501612e9e565b91505092915050565b6000604082019050612ef56000830185612bea565b612f026020830184612bea565b9392505050565b612f1281612a59565b8114612f1d57600080fd5b50565b600081519050612f2f81612f09565b92915050565b600060208284031215612f4b57612f4a612980565b5b6000612f5984828501612f20565b91505092915050565b6000819050919050565b6000612f87612f82612f7d84612f62565b612a8f565b6129e3565b9050919050565b612f9781612f6c565b82525050565b600060c082019050612fb26000830189612bea565b612fbf6020830188612b09565b612fcc6040830187612f8e565b612fd96060830186612f8e565b612fe66080830185612bea565b612ff360a0830184612b09565b979650505050505050565b60008151905061300d816129ed565b92915050565b60008060006060848603121561302c5761302b612980565b5b600061303a86828701612ffe565b935050602061304b86828701612ffe565b925050604061305c86828701612ffe565b9150509250925092565b60006020828403121561307c5761307b612980565b5b600061308a84828501612ffe565b91505092915050565b600061309e826129e3565b91506130a9836129e3565b92508282026130b7816129e3565b915082820484148315176130ce576130cd612cb4565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131316026836128d9565b915061313c826130d5565b604082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f77696e6e657273206f6e6c790000000000000000000000000000000000000000600082015250565b600061319d600c836128d9565b91506131a882613167565b602082019050919050565b600060208201905081810360008301526131cc81613190565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061322f6024836128d9565b915061323a826131d3565b604082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c16022836128d9565b91506132cc82613265565b604082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061332d6020836128d9565b9150613338826132f7565b602082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613399601d836128d9565b91506133a482613363565b602082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061342b6025836128d9565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134bd6023836128d9565b91506134c882613461565b604082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b60006020820190506135086000830184612f8e565b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061356a6026836128d9565b91506135758261350e565b604082019050919050565b600060208201905081810360008301526135998161355d565b9050919050565b60006135ab826129e3565b91506135b6836129e3565b92508282039050818111156135ce576135cd612cb4565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006136306021836128d9565b915061363b826135d4565b604082019050919050565b6000602082019050818103600083015261365f81613623565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006136c26022836128d9565b91506136cd82613666565b604082019050919050565b600060208201905081810360008301526136f1816136b5565b9050919050565b7f4c4f434b45443a206164647265737320686173206265656e2068756e7465642060008201527f616e642063616e6e6f742073656c6c2e2052554c45532d3e2068747470733a2f60208201527f2f7069676e6f6d69632e636f6d2f000000000000000000000000000000000000604082015250565b600061377a604e836128d9565b9150613785826136f8565b606082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f57696e6e6572206d75737420636c61696d20726577617264206265666f72652060008201527f73656c6c696e672e000000000000000000000000000000000000000000000000602082015250565b600061380c6028836128d9565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b905091905056fea26469706673582212206e31635329396053702e479e5d922235aaff1412e5ca6708ada5fc34bf2fa4f464736f6c63430008120033608060405234801561001057600080fd5b506040516103f23803806103f2833981810160405281019061003291906100db565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610108565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000815190506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6102db806101176000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063b14a73cb1461003b578063fc0c546a14610059575b600080fd5b610043610077565b6040516100509190610156565b60405180910390f35b610061610119565b60405161006e91906101f0565b60405180910390f35b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016100d3919061022c565b602060405180830381865afa1580156100f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101149190610278565b905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000819050919050565b6101508161013d565b82525050565b600060208201905061016b6000830184610147565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006101b66101b16101ac84610171565b610191565b610171565b9050919050565b60006101c88261019b565b9050919050565b60006101da826101bd565b9050919050565b6101ea816101cf565b82525050565b600060208201905061020560008301846101e1565b92915050565b600061021682610171565b9050919050565b6102268161020b565b82525050565b6000602082019050610241600083018461021d565b92915050565b600080fd5b6102558161013d565b811461026057600080fd5b50565b6000815190506102728161024c565b92915050565b60006020828403121561028e5761028d610247565b5b600061029c84828501610263565b9150509291505056fea264697066735822122049e296247ac5d44423c404e88ad05f896e45c97d562a6f9f2833fb717a1ac78164736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c1fdcee0116100a0578063dd3d14401161006f578063dd3d1440146106fe578063dd62ed3e14610729578063ed96cc5114610766578063f2fde38b14610791578063febdb9b8146107ba57610204565b8063c1fdcee01461067c578063c9567bf9146106b9578063d180667d146106d0578063dc971893146106e757610204565b8063a457c2d7116100dc578063a457c2d7146105ae578063a7453c4e146105eb578063a9059cbb14610614578063c010ce681461065157610204565b80638da5cb5b14610502578063902d55a51461052d57806395d89b41146105585780639ed3edf01461058357610204565b806332d1ec331161019057806349bd5a5e1161015f57806349bd5a5e1461042d5780634ada218b1461045857806370a082311461048357806370d5ae05146104c0578063715018a6146104eb57610204565b806332d1ec3314610371578063395093511461039c578063446fedef146103d95780634518575e1461040257610204565b80631bce6ff3116101cc5780631bce6ff3146102c757806323b872dd146102de57806327edf0971461031b578063313ce5671461034657610204565b806306fdde0314610209578063095ea7b3146102345780631694505e1461027157806318160ddd1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6107d1565b60405161022b919061295e565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612a19565b610863565b6040516102689190612a74565b60405180910390f35b34801561027d57600080fd5b50610286610886565b6040516102939190612aee565b60405180910390f35b3480156102a857600080fd5b506102b16108aa565b6040516102be9190612b18565b60405180910390f35b3480156102d357600080fd5b506102dc6108b4565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612b33565b61097f565b6040516103129190612a74565b60405180910390f35b34801561032757600080fd5b506103306109ae565b60405161033d9190612b18565b60405180910390f35b34801561035257600080fd5b5061035b6109b4565b6040516103689190612ba2565b60405180910390f35b34801561037d57600080fd5b506103866109bd565b6040516103939190612a74565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612a19565b6109d0565b6040516103d09190612a74565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190612bbd565b610a07565b005b34801561040e57600080fd5b50610417610bef565b6040516104249190612b18565b60405180910390f35b34801561043957600080fd5b50610442610bf5565b60405161044f9190612bf9565b60405180910390f35b34801561046457600080fd5b5061046d610c1b565b60405161047a9190612a74565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612bbd565b610c2e565b6040516104b79190612b18565b60405180910390f35b3480156104cc57600080fd5b506104d5610c76565b6040516104e29190612bf9565b60405180910390f35b3480156104f757600080fd5b50610500610c9c565b005b34801561050e57600080fd5b50610517610cb0565b6040516105249190612bf9565b60405180910390f35b34801561053957600080fd5b50610542610cda565b60405161054f9190612b18565b60405180910390f35b34801561056457600080fd5b5061056d610ce9565b60405161057a919061295e565b60405180910390f35b34801561058f57600080fd5b50610598610d7b565b6040516105a59190612b18565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612a19565b610d81565b6040516105e29190612a74565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612bbd565b610df8565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a19565b611030565b6040516106489190612a74565b60405180910390f35b34801561065d57600080fd5b50610666611053565b6040516106739190612a74565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612bbd565b611066565b6040516106b09190612b18565b60405180910390f35b3480156106c557600080fd5b506106ce6110af565b005b3480156106dc57600080fd5b506106e5611609565b005b3480156106f357600080fd5b506106fc61174a565b005b34801561070a57600080fd5b5061071361184c565b6040516107209190612b18565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612c14565b611852565b60405161075d9190612b18565b60405180910390f35b34801561077257600080fd5b5061077b6118d9565b6040516107889190612b18565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612bbd565b6118df565b005b3480156107c657600080fd5b506107cf611962565b005b6060600380546107e090612c83565b80601f016020809104026020016040519081016040528092919081815260200182805461080c90612c83565b80156108595780601f1061082e57610100808354040283529160200191610859565b820191906000526020600020905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b60008061086e611b85565b905061087b818585611b8d565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6108bc611d56565b600a60019054906101000a900460ff1615610903576040517fa8a341f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090b610c9c565b600f60088190555061092561091e6108aa565b6064611dd4565b6007819055506001600a60016101000a81548160ff0219169083151502179055507fb7fb1a0dcb6e0113174feef796d4f2e4ddb3a9e42ce2afc46e2a57a3ad82692a426040516109759190612b18565b60405180910390a1565b60008061098a611b85565b9050610997858285611df7565b6109a2858585611e83565b60019150509392505050565b600c5481565b60006012905090565b600a60029054906101000a900460ff1681565b6000806109db611b85565b90506109fc8185856109ed8589611852565b6109f79190612ce3565b611b8d565b600191505092915050565b60011515600a60019054906101000a900460ff16151514610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490612d63565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610b025750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610bec576000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541480610b935750600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544311155b610bec576000610ba282610c2e565b9050610bb18282612710611fe0565b7faafcd04179aa3fb6a799d5956153a1c663f5c7765f40384dce2fa65b9d32935f8242604051610be2929190612d83565b60405180910390a1505b50565b60095481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ca4611d56565b610cae60006120c3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b606060048054610cf890612c83565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2490612c83565b8015610d715780601f10610d4657610100808354040283529160200191610d71565b820191906000526020600020905b815481529060010190602001808311610d5457829003601f168201915b5050505050905090565b600b5481565b600080610d8c611b85565b90506000610d9a8286611852565b905083811015610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690612e1e565b60405180910390fd5b610dec8286868403611b8d565b60019250505092915050565b60011515600a60019054906101000a900460ff16151514610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590612d63565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ef35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61102d576064610f016108aa565b610f0b9190612e6d565b610f1482610c2e565b1080610f5f57506000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b61102d5761271043610f719190612ce3565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f2a9352b416f52efec572ea1aff717b2c43580c516a75a54bd3573ea2c85d1ff981600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051611024929190612d83565b60405180910390a15b50565b60008061103b611b85565b9050611048818585611e83565b600191505092915050565b600a60039054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b7611d56565b600a60009054906101000a900460ff16156110fe576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611134307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6a52b7d2dcc80cd2e4000000611b8d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190612eb3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126e9190612eb3565b6040518363ffffffff1660e01b815260040161128b929190612ee0565b6020604051808303816000875af11580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190612eb3565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016113ab929190612d83565b6020604051808303816000875af11580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190612f35565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061143630610c2e565b600080611441610cb0565b426040518863ffffffff1660e01b815260040161146396959493929190612f9d565b60606040518083038185885af1158015611481573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114a69190613013565b505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6114ef610cb0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161154a9190612bf9565b602060405180830381865afa158015611567573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158b9190613066565b6040518363ffffffff1660e01b81526004016115a8929190612d83565b6020604051808303816000875af11580156115c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115eb9190612f35565b506001600a60006101000a81548160ff021916908315150217905550565b60011515600a60019054906101000a900460ff1615151461165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690612d63565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403156117485760646116b16108aa565b6116bb9190612e6d565b6116c433610c2e565b1015611747576000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f846f002c214fc4bd75116087d8e09d4a7790f450649a47673df59c53fe68bac43360405161173e9190612bf9565b60405180910390a15b5b565b60011515600a60019054906101000a900460ff161515146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790612d63565b60405180910390fd5b60646008546117ad6108aa565b6117b79190613093565b6117c19190612e6d565b6117ca33610c2e565b10806117e25750600a60029054906101000a900460ff165b61184a5733601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60026101000a81548160ff021916908315150217905550436009819055505b565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6118e7611d56565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613147565b60405180910390fd5b61195f816120c3565b50565b61196a611b85565b73ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906131b3565b60405180910390fd5b6002600954611a089190612ce3565b431115611b7e576000611a3c600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c2e565b9050611a8d600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612189565b6001600a60036101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f846f002c214fc4bd75116087d8e09d4a7790f450649a47673df59c53fe68bac433604051611b749190612bf9565b60405180910390a1505b565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613245565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c62906132d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d499190612b18565b60405180910390a3505050565b611d5e611b85565b73ffffffffffffffffffffffffffffffffffffffff16611d7c610cb0565b73ffffffffffffffffffffffffffffffffffffffff1614611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613343565b60405180910390fd5b565b60006127108284611de59190613093565b611def9190612e6d565b905092915050565b6000611e038484611852565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e7d5781811015611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906133af565b60405180910390fd5b611e7c8484848403611b8d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f58906134d3565b60405180910390fd5b60008103611f7a57611f7583836000612189565b611fdb565b6000611f878484846123ff565b9050600a60019054906101000a900460ff1615611fce57611fcd601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600c54611fe0565b5b611fd9848483612189565b505b505050565b6000611feb84610c2e565b0361202d577fff5a083d417eed59123be681a4f027417a9b5282a724bdfc9b58163bdc0f1e94600060405161202091906134f3565b60405180910390a16120be565b60006120398383611dd4565b90508061204585610c2e565b10156120625761205d8461205886610c2e565b612503565b61206d565b61206c8482612503565b5b61207f6120786108aa565b6064611dd4565b6007819055507fff5a083d417eed59123be681a4f027417a9b5282a724bdfc9b58163bdc0f1e94816040516120b49190612b18565b60405180910390a1505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90613441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225e906134d3565b60405180910390fd5b6122728383836126d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613580565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e69190612b18565b60405180910390a36123f98484846128c9565b50505050565b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124a25750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156124af578190506124fc565b60006124bd83600b54611dd4565b90506124ec85600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612189565b80836124f891906135a0565b9150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256990613646565b60405180910390fd5b61257e826000836126d0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb906136d8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126b79190612b18565b60405180910390a36126cb836000846128c9565b505050565b6126db838383611b80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806127425750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6128c4576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180156127c157503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f890613790565b60405180910390fd5b600a60029054906101000a900460ff16801561286a5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156128835750600a60039054906101000a900460ff16155b156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba90613822565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129085780820151818401526020810190506128ed565b60008484015250505050565b6000601f19601f8301169050919050565b6000612930826128ce565b61293a81856128d9565b935061294a8185602086016128ea565b61295381612914565b840191505092915050565b600060208201905081810360008301526129788184612925565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129b082612985565b9050919050565b6129c0816129a5565b81146129cb57600080fd5b50565b6000813590506129dd816129b7565b92915050565b6000819050919050565b6129f6816129e3565b8114612a0157600080fd5b50565b600081359050612a13816129ed565b92915050565b60008060408385031215612a3057612a2f612980565b5b6000612a3e858286016129ce565b9250506020612a4f85828601612a04565b9150509250929050565b60008115159050919050565b612a6e81612a59565b82525050565b6000602082019050612a896000830184612a65565b92915050565b6000819050919050565b6000612ab4612aaf612aaa84612985565b612a8f565b612985565b9050919050565b6000612ac682612a99565b9050919050565b6000612ad882612abb565b9050919050565b612ae881612acd565b82525050565b6000602082019050612b036000830184612adf565b92915050565b612b12816129e3565b82525050565b6000602082019050612b2d6000830184612b09565b92915050565b600080600060608486031215612b4c57612b4b612980565b5b6000612b5a868287016129ce565b9350506020612b6b868287016129ce565b9250506040612b7c86828701612a04565b9150509250925092565b600060ff82169050919050565b612b9c81612b86565b82525050565b6000602082019050612bb76000830184612b93565b92915050565b600060208284031215612bd357612bd2612980565b5b6000612be1848285016129ce565b91505092915050565b612bf3816129a5565b82525050565b6000602082019050612c0e6000830184612bea565b92915050565b60008060408385031215612c2b57612c2a612980565b5b6000612c39858286016129ce565b9250506020612c4a858286016129ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9b57607f821691505b602082108103612cae57612cad612c54565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cee826129e3565b9150612cf9836129e3565b9250828201905080821115612d1157612d10612cb4565b5b92915050565b7f67616d6520686173206e6f742073746172740000000000000000000000000000600082015250565b6000612d4d6012836128d9565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b6000604082019050612d986000830185612bea565b612da56020830184612b09565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e086025836128d9565b9150612e1382612dac565b604082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e78826129e3565b9150612e83836129e3565b925082612e9357612e92612e3e565b5b828204905092915050565b600081519050612ead816129b7565b92915050565b600060208284031215612ec957612ec8612980565b5b6000612ed784828501612e9e565b91505092915050565b6000604082019050612ef56000830185612bea565b612f026020830184612bea565b9392505050565b612f1281612a59565b8114612f1d57600080fd5b50565b600081519050612f2f81612f09565b92915050565b600060208284031215612f4b57612f4a612980565b5b6000612f5984828501612f20565b91505092915050565b6000819050919050565b6000612f87612f82612f7d84612f62565b612a8f565b6129e3565b9050919050565b612f9781612f6c565b82525050565b600060c082019050612fb26000830189612bea565b612fbf6020830188612b09565b612fcc6040830187612f8e565b612fd96060830186612f8e565b612fe66080830185612bea565b612ff360a0830184612b09565b979650505050505050565b60008151905061300d816129ed565b92915050565b60008060006060848603121561302c5761302b612980565b5b600061303a86828701612ffe565b935050602061304b86828701612ffe565b925050604061305c86828701612ffe565b9150509250925092565b60006020828403121561307c5761307b612980565b5b600061308a84828501612ffe565b91505092915050565b600061309e826129e3565b91506130a9836129e3565b92508282026130b7816129e3565b915082820484148315176130ce576130cd612cb4565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131316026836128d9565b915061313c826130d5565b604082019050919050565b6000602082019050818103600083015261316081613124565b9050919050565b7f77696e6e657273206f6e6c790000000000000000000000000000000000000000600082015250565b600061319d600c836128d9565b91506131a882613167565b602082019050919050565b600060208201905081810360008301526131cc81613190565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061322f6024836128d9565b915061323a826131d3565b604082019050919050565b6000602082019050818103600083015261325e81613222565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c16022836128d9565b91506132cc82613265565b604082019050919050565b600060208201905081810360008301526132f0816132b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061332d6020836128d9565b9150613338826132f7565b602082019050919050565b6000602082019050818103600083015261335c81613320565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613399601d836128d9565b91506133a482613363565b602082019050919050565b600060208201905081810360008301526133c88161338c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061342b6025836128d9565b9150613436826133cf565b604082019050919050565b6000602082019050818103600083015261345a8161341e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006134bd6023836128d9565b91506134c882613461565b604082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b60006020820190506135086000830184612f8e565b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061356a6026836128d9565b91506135758261350e565b604082019050919050565b600060208201905081810360008301526135998161355d565b9050919050565b60006135ab826129e3565b91506135b6836129e3565b92508282039050818111156135ce576135cd612cb4565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006136306021836128d9565b915061363b826135d4565b604082019050919050565b6000602082019050818103600083015261365f81613623565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006136c26022836128d9565b91506136cd82613666565b604082019050919050565b600060208201905081810360008301526136f1816136b5565b9050919050565b7f4c4f434b45443a206164647265737320686173206265656e2068756e7465642060008201527f616e642063616e6e6f742073656c6c2e2052554c45532d3e2068747470733a2f60208201527f2f7069676e6f6d69632e636f6d2f000000000000000000000000000000000000604082015250565b600061377a604e836128d9565b9150613785826136f8565b606082019050919050565b600060208201905081810360008301526137a98161376d565b9050919050565b7f57696e6e6572206d75737420636c61696d20726577617264206265666f72652060008201527f73656c6c696e672e000000000000000000000000000000000000000000000000602082015250565b600061380c6028836128d9565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b905091905056fea26469706673582212206e31635329396053702e479e5d922235aaff1412e5ca6708ada5fc34bf2fa4f464736f6c63430008120033

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.