ETH Price: $2,522.58 (+0.29%)

Token

alright look, I missed out on buying unibot but I ... (VENT)
 

Overview

Max Total Supply

1,000,000 VENT

Holders

89

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,331.514850828895856114 VENT

Value
$0.00
0x6fad527af60a28fb2c5e77d53593d320a3545ce7
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:
Vent

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Vent.sol
/**
    ITS TIME TO VENT
    I MISSED EVERYTHING
    I AM ON CT 24/7
    WHAT IS WRONG WITH ME
    I MISS I MISS I MISS
    ENOUGH IS ENOUGH
    THIS IS OUR TIME
    THOSE OF US WHO SUCK AT THIS GAME
    ITS TIME FOR US TO WIN
    
    Website: https://vent.trading
    Twitter: https://twitter.com/vent_eth_vent
\    
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
pragma experimental ABIEncoderV2;

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Vent is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public teamWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("alright look, I missed out on buying unibot but I heard about it the day it launched. Who the hell cares about a shitty little telegram bot. I missed out on buying harry potter obama but I heard about it the day it launched. Bad meme it wont moon. I missed out on buying rollbit when it moved to mainnet. Likely insolvent casino why would anyone buy this. I did not buy the grail launch because uncapped launches never do well. I missed out on buying dmt at launch because nothing on arb will do well after the airdrop. I missed out on buying the hamster one before the hype why would this one go up. I missed out on pepe at under 1m cap how many time have they tried this? I miss I miss I miss I miss. Enough is enough. Fuck unibot. Fuck harry potter. Fuck rollbit. Fuck dmt. I am in the telegram groups. I am in the discords. I miss, and I miss, and I miss and I miss. ENOUGH IS ENOUGH. Fuck your coin.", "VENT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
           0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 20;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 20;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 10_000 * 1e18; // 1%
        maxWallet = 10_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyLiquidityFee + buyTeamFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellLiquidityFee + sellTeamFee;

        teamWallet = owner(); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        preMigrationTransferrable[owner()] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true; 
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees =  buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 25, "Buy fees must be <= 25.");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 25, "Sell fees must be <= 25.");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForTeam;

        tokensForLiquidity = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
    }

    function withdrawStuckHouse() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckHouse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506000600c60036101000a81548160ff0219169083151502179055506001601960006101000a81548160ff0219169083151502179055503480156200009857600080fd5b50604051806103c00160405280610388815260200162006b6c61038891396040518060400160405280600481526020017f56454e540000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010492919062000b4e565b5080600490805190602001906200011d92919062000b4e565b50505062000140620001346200060e60201b60201c565b6200061660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016c816001620006dc60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f457600080fd5b505afa15801562000209573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022f919062000c15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cd919062000c15565b6040518363ffffffff1660e01b8152600401620002ec92919062000cf8565b602060405180830381600087803b1580156200030757600080fd5b505af11580156200031c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000342919062000c15565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006dc60201b60201c565b620003ec600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007c660201b60201c565b600060019050600060149050600060019050600060149050600069d3c21bcecceda1000000905069021e19e0c9bab240000060098190555069021e19e0c9bab2400000600b8190555061271060058262000447919062000e49565b62000453919062000e11565b600a8190555084600f8190555083601081905550601054600f5462000479919062000db4565b600e8190555082601281905550816013819055506013546012546200049f919062000db4565b601181905550620004b56200086760201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000517620005096200086760201b60201c565b60016200089160201b60201c565b6200052a3060016200089160201b60201c565b6200053f61dead60016200089160201b60201c565b62000561620005536200086760201b60201c565b6001620006dc60201b60201c565b62000574306001620006dc60201b60201c565b6200058961dead6001620006dc60201b60201c565b6001601a60006200059f6200086760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006023382620009cb60201b60201c565b50505050505062000fd1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ec6200060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007126200086760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007629062000d42565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a16200060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c76200086760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009179062000d42565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009bf919062000d25565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a359062000d64565b60405180910390fd5b62000a526000838362000b4460201b60201c565b806002600082825462000a66919062000db4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000abd919062000db4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b24919062000d86565b60405180910390a362000b406000838362000b4960201b60201c565b5050565b505050565b505050565b82805462000b5c9062000ef4565b90600052602060002090601f01602090048101928262000b80576000855562000bcc565b82601f1062000b9b57805160ff191683800117855562000bcc565b8280016001018555821562000bcc579182015b8281111562000bcb57825182559160200191906001019062000bae565b5b50905062000bdb919062000bdf565b5090565b5b8082111562000bfa57600081600090555060010162000be0565b5090565b60008151905062000c0f8162000fb7565b92915050565b60006020828403121562000c2857600080fd5b600062000c388482850162000bfe565b91505092915050565b62000c4c8162000eaa565b82525050565b62000c5d8162000ebe565b82525050565b600062000c7260208362000da3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000cb4601f8362000da3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000cf28162000eea565b82525050565b600060408201905062000d0f600083018562000c41565b62000d1e602083018462000c41565b9392505050565b600060208201905062000d3c600083018462000c52565b92915050565b6000602082019050818103600083015262000d5d8162000c63565b9050919050565b6000602082019050818103600083015262000d7f8162000ca5565b9050919050565b600060208201905062000d9d600083018462000ce7565b92915050565b600082825260208201905092915050565b600062000dc18262000eea565b915062000dce8362000eea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e065762000e0562000f2a565b5b828201905092915050565b600062000e1e8262000eea565b915062000e2b8362000eea565b92508262000e3e5762000e3d62000f59565b5b828204905092915050565b600062000e568262000eea565b915062000e638362000eea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e9f5762000e9e62000f2a565b5b828202905092915050565b600062000eb78262000eca565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000f0d57607f821691505b6020821081141562000f245762000f2362000f88565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000fc28162000eaa565b811462000fce57600080fd5b50565b615b8b8062000fe16000396000f3fe6080604052600436106103905760003560e01c80637cb332bb116101dc578063c18bc19511610102578063e2f45605116100a0578063f8b45b051161006f578063f8b45b0514610d43578063f9f92be414610d6e578063fde83a3414610d97578063fe575a8714610dc257610397565b8063e2f4560514610c99578063f11a24d314610cc4578063f2fde38b14610cef578063f637434214610d1857610397565b8063d729715f116100dc578063d729715f14610bdd578063d85ba06314610c08578063dd62ed3e14610c33578063e19b282314610c7057610397565b8063c18bc19514610b4c578063c8c8ebe414610b75578063d257b34f14610ba057610397565b8063a457c2d71161017a578063b62496f511610149578063b62496f514610a92578063bbc0c74214610acf578063bc205ad314610afa578063c024666814610b2357610397565b8063a457c2d7146109d8578063a9059cbb14610a15578063aa0e438814610a52578063ae8f31f314610a7b57610397565b8063924de9b7116101b6578063924de9b71461093057806395d89b41146109595780639a7a23d6146109845780639c2e4ac6146109ad57610397565b80637cb332bb146108c55780638a8c523c146108ee5780638da5cb5b1461090557610397565b806349bd5a5e116102c15780636a486a8e1161025f578063751039fc1161022e578063751039fc1461081f5780637571336a1461084a57806375e3661e146108735780637ca8448a1461089c57610397565b80636a486a8e146107755780636ddd1713146107a057806370a08231146107cb578063715018a61461080857610397565b80634fbee1931161029b5780634fbee193146106cd578063599270441461070a5780635f1893611461073557806366ca9b831461074c57610397565b806349bd5a5e1461063a5780634a62bb65146106655780634e29e5231461069057610397565b80631a8145bb1161032e57806327c8f8351161030857806327c8f8351461057c578063313ce567146105a757806339509351146105d25780633dc599ff1461060f57610397565b80631a8145bb146104eb578063203e727e1461051657806323b872dd1461053f57610397565b80630e922ca71161036a5780630e922ca71461042d57806310d5de53146104585780631694505e1461049557806318160ddd146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061480b565b610dff565b005b3480156103d157600080fd5b506103da610ee9565b6040516103e791906153e4565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061472b565b610f7b565b60405161042491906153ae565b60405180910390f35b34801561043957600080fd5b50610442610f99565b60405161044f91906153ae565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190614612565b610fac565b60405161048c91906153ae565b60405180910390f35b3480156104a157600080fd5b506104aa610fcc565b6040516104b791906153c9565b60405180910390f35b3480156104cc57600080fd5b506104d5610ff2565b6040516104e29190615746565b60405180910390f35b3480156104f757600080fd5b50610500610ffc565b60405161050d9190615746565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906147b9565b611002565b005b34801561054b57600080fd5b50610566600480360381019061056191906146a0565b611111565b60405161057391906153ae565b60405180910390f35b34801561058857600080fd5b50610591611209565b60405161059e9190615309565b60405180910390f35b3480156105b357600080fd5b506105bc61120f565b6040516105c991906157f2565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061472b565b611218565b60405161060691906153ae565b60405180910390f35b34801561061b57600080fd5b506106246112c4565b60405161063191906153ae565b60405180910390f35b34801561064657600080fd5b5061064f6112d7565b60405161065c9190615309565b60405180910390f35b34801561067157600080fd5b5061067a6112fd565b60405161068791906153ae565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614612565b611310565b6040516106c491906153ae565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190614612565b611330565b60405161070191906153ae565b60405180910390f35b34801561071657600080fd5b5061071f611386565b60405161072c9190615309565b60405180910390f35b34801561074157600080fd5b5061074a6113ac565b005b34801561075857600080fd5b50610773600480360381019061076e919061480b565b611445565b005b34801561078157600080fd5b5061078a61152f565b6040516107979190615746565b60405180910390f35b3480156107ac57600080fd5b506107b5611535565b6040516107c291906153ae565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190614612565b611548565b6040516107ff9190615746565b60405180910390f35b34801561081457600080fd5b5061081d611590565b005b34801561082b57600080fd5b50610834611618565b60405161084191906153ae565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906146ef565b6116b8565b005b34801561087f57600080fd5b5061089a60048036038101906108959190614612565b61178f565b005b3480156108a857600080fd5b506108c360048036038101906108be9190614612565b611866565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190614612565b61195c565b005b3480156108fa57600080fd5b50610903611a98565b005b34801561091157600080fd5b5061091a611b67565b6040516109279190615309565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190614767565b611b91565b005b34801561096557600080fd5b5061096e611c2a565b60405161097b91906153e4565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a691906146ef565b611cbc565b005b3480156109b957600080fd5b506109c2611dd7565b6040516109cf9190615746565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061472b565b611ddd565b604051610a0c91906153ae565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a37919061472b565b611ec8565b604051610a4991906153ae565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906146ef565b611ee6565b005b348015610a8757600080fd5b50610a90611fd1565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190614612565b6121b2565b604051610ac691906153ae565b60405180910390f35b348015610adb57600080fd5b50610ae46121d2565b604051610af191906153ae565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190614664565b6121e5565b005b348015610b2f57600080fd5b50610b4a6004803603810190610b4591906146ef565b6123f1565b005b348015610b5857600080fd5b50610b736004803603810190610b6e91906147b9565b612516565b005b348015610b8157600080fd5b50610b8a612625565b604051610b979190615746565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147b9565b61262b565b604051610bd491906153ae565b60405180910390f35b348015610be957600080fd5b50610bf2612780565b604051610bff9190615746565b60405180910390f35b348015610c1457600080fd5b50610c1d612786565b604051610c2a9190615746565b60405180910390f35b348015610c3f57600080fd5b50610c5a6004803603810190610c559190614664565b61278c565b604051610c679190615746565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c929190614612565b612813565b005b348015610ca557600080fd5b50610cae612a17565b604051610cbb9190615746565b60405180910390f35b348015610cd057600080fd5b50610cd9612a1d565b604051610ce69190615746565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614612565b612a23565b005b348015610d2457600080fd5b50610d2d612b1b565b604051610d3a9190615746565b60405180910390f35b348015610d4f57600080fd5b50610d58612b21565b604051610d659190615746565b60405180910390f35b348015610d7a57600080fd5b50610d956004803603810190610d909190614612565b612b27565b005b348015610da357600080fd5b50610dac612d2b565b604051610db99190615746565b60405180910390f35b348015610dce57600080fd5b50610de96004803603810190610de49190614612565b612d31565b604051610df691906153ae565b60405180910390f35b610e07612d87565b73ffffffffffffffffffffffffffffffffffffffff16610e25611b67565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290615626565b60405180910390fd5b8160128190555080601381905550601354601254610e99919061586d565b60118190555060196011541115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90615546565b60405180910390fd5b5050565b606060038054610ef890615a40565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2490615a40565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b5050505050905090565b6000610f8f610f88612d87565b8484612d8f565b6001905092915050565b601960009054906101000a900460ff1681565b60176020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60145481565b61100a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611028611b67565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590615626565b60405180910390fd5b670de0b6b3a76400006103e86005611094610ff2565b61109e91906158f4565b6110a891906158c3565b6110b291906158c3565b8110156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90615426565b60405180910390fd5b670de0b6b3a76400008161110891906158f4565b60098190555050565b600061111e848484612f5a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611169612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090615606565b60405180910390fd5b6111fd856111f5612d87565b858403612d8f565b60019150509392505050565b61dead81565b60006012905090565b60006112ba611225612d87565b848460016000611233612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b5919061586d565b612d8f565b6001905092915050565b600c60039054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900460ff1681565b601a6020528060005260406000206000915054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113b4612d87565b73ffffffffffffffffffffffffffffffffffffffff166113d2611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90615626565b60405180910390fd5b6001600c60036101000a81548160ff021916908315150217905550565b61144d612d87565b73ffffffffffffffffffffffffffffffffffffffff1661146b611b67565b73ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890615626565b60405180910390fd5b81600f8190555080601081905550601054600f546114df919061586d565b600e819055506019600e54111561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906156e6565b60405180910390fd5b5050565b60115481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611598612d87565b73ffffffffffffffffffffffffffffffffffffffff166115b6611b67565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390615626565b60405180910390fd5b6116166000613b82565b565b6000611622612d87565b73ffffffffffffffffffffffffffffffffffffffff16611640611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90615626565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6116c0612d87565b73ffffffffffffffffffffffffffffffffffffffff166116de611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90615626565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611797612d87565b73ffffffffffffffffffffffffffffffffffffffff166117b5611b67565b73ffffffffffffffffffffffffffffffffffffffff161461180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290615626565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61186e612d87565b73ffffffffffffffffffffffffffffffffffffffff1661188c611b67565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990615626565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611908906152f4565b60006040518083038185875af1925050503d8060008114611945576040519150601f19603f3d011682016040523d82523d6000602084013e61194a565b606091505b505090508061195857600080fd5b5050565b611964612d87565b73ffffffffffffffffffffffffffffffffffffffff16611982611b67565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90615626565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611aa0612d87565b73ffffffffffffffffffffffffffffffffffffffff16611abe611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90615626565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506000601960006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b99612d87565b73ffffffffffffffffffffffffffffffffffffffff16611bb7611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490615626565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b606060048054611c3990615a40565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590615a40565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905090565b611cc4612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ce2611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90615626565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc0906154a6565b60405180910390fd5b611dd38282613c48565b5050565b60105481565b60008060016000611dec612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090615706565b60405180910390fd5b611ebd611eb4612d87565b85858403612d8f565b600191505092915050565b6000611edc611ed5612d87565b8484612f5a565b6001905092915050565b611eee612d87565b73ffffffffffffffffffffffffffffffffffffffff16611f0c611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990615626565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611fc382826123f1565b611fcd82826116b8565b5050565b611fd9612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ff7611b67565b73ffffffffffffffffffffffffffffffffffffffff161461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490615626565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016120889190615309565b60206040518083038186803b1580156120a057600080fd5b505afa1580156120b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d891906147e2565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612115929190615324565b602060405180830381600087803b15801561212f57600080fd5b505af1158015612143573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121679190614790565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121ae573d6000803e3d6000fd5b5050565b60186020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6121ed612d87565b73ffffffffffffffffffffffffffffffffffffffff1661220b611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890615626565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906155e6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161230c9190615309565b60206040518083038186803b15801561232457600080fd5b505afa158015612338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235c91906147e2565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612399929190615324565b602060405180830381600087803b1580156123b357600080fd5b505af11580156123c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123eb9190614790565b50505050565b6123f9612d87565b73ffffffffffffffffffffffffffffffffffffffff16612417611b67565b73ffffffffffffffffffffffffffffffffffffffff161461246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490615626565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161250a91906153ae565b60405180910390a25050565b61251e612d87565b73ffffffffffffffffffffffffffffffffffffffff1661253c611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990615626565b60405180910390fd5b670de0b6b3a76400006103e8600a6125a8610ff2565b6125b291906158f4565b6125bc91906158c3565b6125c691906158c3565b811015612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90615566565b60405180910390fd5b670de0b6b3a76400008161261c91906158f4565b600b8190555050565b60095481565b6000612635612d87565b73ffffffffffffffffffffffffffffffffffffffff16612653611b67565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090615626565b60405180910390fd5b620186a060016126b7610ff2565b6126c191906158f4565b6126cb91906158c3565b82101561270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490615586565b60405180910390fd5b6103e8600561271a610ff2565b61272491906158f4565b61272e91906158c3565b821115612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906155a6565b60405180910390fd5b81600a8190555060019050919050565b60135481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61281b612d87565b73ffffffffffffffffffffffffffffffffffffffff16612839611b67565b73ffffffffffffffffffffffffffffffffffffffff161461288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690615626565b60405180910390fd5b600c60039054906101000a900460ff16156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690615666565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561297d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390615686565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b600f5481565b612a2b612d87565b73ffffffffffffffffffffffffffffffffffffffff16612a49611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9690615626565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690615466565b60405180910390fd5b612b1881613b82565b50565b60125481565b600b5481565b612b2f612d87565b73ffffffffffffffffffffffffffffffffffffffff16612b4d611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90615626565b60405180910390fd5b600c60039054906101000a900460ff1615612bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bea90615666565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612c915750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790615686565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60155481565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df6906156a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6690615486565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612f4d9190615746565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc190615646565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190615406565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be90615506565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314b90615526565b60405180910390fd5b601960009054906101000a900460ff16156131f657601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90615726565b60405180910390fd5b5b60008114156132105761320b83836000613ce9565b613b7d565b600c60009054906101000a900460ff161561370b5761322d611b67565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561329b575061326b611b67565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156132d45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561330e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133275750600760149054906101000a900460ff16155b1561370a57600c60019054906101000a900460ff1661342157601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133e15750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341790615446565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134c45750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561356b5760095481111561350e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613505906155c6565b60405180910390fd5b600b5461351a83611548565b82613525919061586d565b1115613566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355d906156c6565b60405180910390fd5b613709565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360e5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561365d57600954811115613658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364f906154e6565b60405180910390fd5b613708565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661370757600b546136ba83611548565b826136c5919061586d565b1115613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd906156c6565b60405180910390fd5b5b5b5b5b5b600061371630611548565b90506000600a54821015905080801561373b5750600c60029054906101000a900460ff165b80156137545750600760149054906101000a900460ff16155b80156137aa5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138005750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138565750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389a576001600760146101000a81548160ff02191690831515021790555061387e613f6a565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139505750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395a57600090505b60008115613b6d57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bd57506000601154115b15613a57576139ea60646139dc6011548861419090919063ffffffff16565b6141a690919063ffffffff16565b9050601154601254826139fd91906158f4565b613a0791906158c3565b60146000828254613a18919061586d565b9250508190555060115460135482613a3091906158f4565b613a3a91906158c3565b60156000828254613a4b919061586d565b92505081905550613b49565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ab257506000600e54115b15613b4857613adf6064613ad1600e548861419090919063ffffffff16565b6141a690919063ffffffff16565b9050600e54600f5482613af291906158f4565b613afc91906158c3565b60146000828254613b0d919061586d565b92505081905550600e5460105482613b2591906158f4565b613b2f91906158c3565b60156000828254613b40919061586d565b925050819055505b5b6000811115613b5e57613b5d873083613ce9565b5b8085613b6a919061594e565b94505b613b78878787613ce9565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5090615646565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc090615406565b60405180910390fd5b613dd48383836141bc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e51906154c6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613eed919061586d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f519190615746565b60405180910390a3613f648484846141c1565b50505050565b6000613f7530611548565b90506000601554601454613f89919061586d565b9050600080831480613f9b5750600082145b15613fa85750505061418e565b6014600a54613fb791906158f4565b831115613fd0576014600a54613fcd91906158f4565b92505b600060028360145486613fe391906158f4565b613fed91906158c3565b613ff791906158c3565b9050600061400e82866141c690919063ffffffff16565b9050600047905061401e826141dc565b600061403382476141c690919063ffffffff16565b90506000614077600260145461404991906158c3565b88614054919061594e565b6140696015548561419090919063ffffffff16565b6141a690919063ffffffff16565b905060008183614087919061594e565b905060006014819055506000601581905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516140df906152f4565b60006040518083038185875af1925050503d806000811461411c576040519150601f19603f3d011682016040523d82523d6000602084013e614121565b606091505b5050809750506000861180156141375750600081115b156141845761414686826144a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161417b939291906157bb565b60405180910390a15b5050505050505050505b565b6000818361419e91906158f4565b905092915050565b600081836141b491906158c3565b905092915050565b505050565b505050565b600081836141d4919061594e565b905092915050565b6000600267ffffffffffffffff81111561421f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561424d5781602001602082028036833780820191505090505b509050308160008151811061428b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561432d57600080fd5b505afa158015614341573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614365919061463b565b8160018151811061439f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061440630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161446a959493929190615761565b600060405180830381600087803b15801561448457600080fd5b505af1158015614498573d6000803e3d6000fd5b505050505050565b6144cd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614519611b67565b426040518863ffffffff1660e01b815260040161453b9695949392919061534d565b6060604051808303818588803b15801561455457600080fd5b505af1158015614568573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061458d9190614847565b5050505050565b6000813590506145a381615b10565b92915050565b6000815190506145b881615b10565b92915050565b6000813590506145cd81615b27565b92915050565b6000815190506145e281615b27565b92915050565b6000813590506145f781615b3e565b92915050565b60008151905061460c81615b3e565b92915050565b60006020828403121561462457600080fd5b600061463284828501614594565b91505092915050565b60006020828403121561464d57600080fd5b600061465b848285016145a9565b91505092915050565b6000806040838503121561467757600080fd5b600061468585828601614594565b925050602061469685828601614594565b9150509250929050565b6000806000606084860312156146b557600080fd5b60006146c386828701614594565b93505060206146d486828701614594565b92505060406146e5868287016145e8565b9150509250925092565b6000806040838503121561470257600080fd5b600061471085828601614594565b9250506020614721858286016145be565b9150509250929050565b6000806040838503121561473e57600080fd5b600061474c85828601614594565b925050602061475d858286016145e8565b9150509250929050565b60006020828403121561477957600080fd5b6000614787848285016145be565b91505092915050565b6000602082840312156147a257600080fd5b60006147b0848285016145d3565b91505092915050565b6000602082840312156147cb57600080fd5b60006147d9848285016145e8565b91505092915050565b6000602082840312156147f457600080fd5b6000614802848285016145fd565b91505092915050565b6000806040838503121561481e57600080fd5b600061482c858286016145e8565b925050602061483d858286016145e8565b9150509250929050565b60008060006060848603121561485c57600080fd5b600061486a868287016145fd565b935050602061487b868287016145fd565b925050604061488c868287016145fd565b9150509250925092565b60006148a283836148ae565b60208301905092915050565b6148b781615982565b82525050565b6148c681615982565b82525050565b60006148d78261581d565b6148e18185615840565b93506148ec8361580d565b8060005b8381101561491d5781516149048882614896565b975061490f83615833565b9250506001810190506148f0565b5085935050505092915050565b61493381615994565b82525050565b614942816159d7565b82525050565b614951816159fb565b82525050565b600061496282615828565b61496c818561585c565b935061497c818560208601615a0d565b61498581615aff565b840191505092915050565b600061499d60238361585c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a03602f8361585c565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e352500000000000000000000000000000000006020830152604082019050919050565b6000614a6960168361585c565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b6000614aa960268361585c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0f60228361585c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b7560398361585c565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b6000614bdb60268361585c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c4160368361585c565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b6000614ca760128361585c565b91507f53656e64657220626c61636b6c697374656400000000000000000000000000006000830152602082019050919050565b6000614ce760148361585c565b91507f526563656976657220626c61636b6c69737465640000000000000000000000006000830152602082019050919050565b6000614d2760188361585c565b91507f53656c6c2066656573206d757374206265203c3d2032352e00000000000000006000830152602082019050919050565b6000614d6760248361585c565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f312e3025000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dcd60358361585c565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614e3360348361585c565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614e9960358361585c565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614eff601a8361585c565b91507f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006000830152602082019050919050565b6000614f3f60288361585c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fa560208361585c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fe560258361585c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061504b60218361585c565b91507f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b1600083615851565b9150600082019050919050565b60006150cb602e8361585c565b91507f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008301527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006020830152604082019050919050565b600061513160248361585c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061519760138361585c565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b60006151d760178361585c565b91507f4275792066656573206d757374206265203c3d2032352e0000000000000000006000830152602082019050919050565b600061521760258361585c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527d60298361585c565b91507f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008301527f6967726174696f6e2e00000000000000000000000000000000000000000000006020830152604082019050919050565b6152df816159c0565b82525050565b6152ee816159ca565b82525050565b60006152ff826150a4565b9150819050919050565b600060208201905061531e60008301846148bd565b92915050565b600060408201905061533960008301856148bd565b61534660208301846152d6565b9392505050565b600060c08201905061536260008301896148bd565b61536f60208301886152d6565b61537c6040830187614948565b6153896060830186614948565b61539660808301856148bd565b6153a360a08301846152d6565b979650505050505050565b60006020820190506153c3600083018461492a565b92915050565b60006020820190506153de6000830184614939565b92915050565b600060208201905081810360008301526153fe8184614957565b905092915050565b6000602082019050818103600083015261541f81614990565b9050919050565b6000602082019050818103600083015261543f816149f6565b9050919050565b6000602082019050818103600083015261545f81614a5c565b9050919050565b6000602082019050818103600083015261547f81614a9c565b9050919050565b6000602082019050818103600083015261549f81614b02565b9050919050565b600060208201905081810360008301526154bf81614b68565b9050919050565b600060208201905081810360008301526154df81614bce565b9050919050565b600060208201905081810360008301526154ff81614c34565b9050919050565b6000602082019050818103600083015261551f81614c9a565b9050919050565b6000602082019050818103600083015261553f81614cda565b9050919050565b6000602082019050818103600083015261555f81614d1a565b9050919050565b6000602082019050818103600083015261557f81614d5a565b9050919050565b6000602082019050818103600083015261559f81614dc0565b9050919050565b600060208201905081810360008301526155bf81614e26565b9050919050565b600060208201905081810360008301526155df81614e8c565b9050919050565b600060208201905081810360008301526155ff81614ef2565b9050919050565b6000602082019050818103600083015261561f81614f32565b9050919050565b6000602082019050818103600083015261563f81614f98565b9050919050565b6000602082019050818103600083015261565f81614fd8565b9050919050565b6000602082019050818103600083015261567f8161503e565b9050919050565b6000602082019050818103600083015261569f816150be565b9050919050565b600060208201905081810360008301526156bf81615124565b9050919050565b600060208201905081810360008301526156df8161518a565b9050919050565b600060208201905081810360008301526156ff816151ca565b9050919050565b6000602082019050818103600083015261571f8161520a565b9050919050565b6000602082019050818103600083015261573f81615270565b9050919050565b600060208201905061575b60008301846152d6565b92915050565b600060a08201905061577660008301886152d6565b6157836020830187614948565b818103604083015261579581866148cc565b90506157a460608301856148bd565b6157b160808301846152d6565b9695505050505050565b60006060820190506157d060008301866152d6565b6157dd60208301856152d6565b6157ea60408301846152d6565b949350505050565b600060208201905061580760008301846152e5565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000615878826159c0565b9150615883836159c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158b8576158b7615a72565b5b828201905092915050565b60006158ce826159c0565b91506158d9836159c0565b9250826158e9576158e8615aa1565b5b828204905092915050565b60006158ff826159c0565b915061590a836159c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561594357615942615a72565b5b828202905092915050565b6000615959826159c0565b9150615964836159c0565b92508282101561597757615976615a72565b5b828203905092915050565b600061598d826159a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006159e2826159e9565b9050919050565b60006159f4826159a0565b9050919050565b6000615a06826159c0565b9050919050565b60005b83811015615a2b578082015181840152602081019050615a10565b83811115615a3a576000848401525b50505050565b60006002820490506001821680615a5857607f821691505b60208210811415615a6c57615a6b615ad0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b615b1981615982565b8114615b2457600080fd5b50565b615b3081615994565b8114615b3b57600080fd5b50565b615b47816159c0565b8114615b5257600080fd5b5056fea2646970667358221220716734e20b17752cb10c655b171e49aca2375e624330da2d7fa6d08f0b1da93064736f6c63430008000033616c7269676874206c6f6f6b2c2049206d6973736564206f7574206f6e20627579696e6720756e69626f742062757420492068656172642061626f75742069742074686520646179206974206c61756e636865642e2057686f207468652068656c6c2063617265732061626f7574206120736869747479206c6974746c652074656c656772616d20626f742e2049206d6973736564206f7574206f6e20627579696e6720686172727920706f74746572206f62616d612062757420492068656172642061626f75742069742074686520646179206974206c61756e636865642e20426164206d656d6520697420776f6e74206d6f6f6e2e2049206d6973736564206f7574206f6e20627579696e6720726f6c6c626974207768656e206974206d6f76656420746f206d61696e6e65742e204c696b656c7920696e736f6c76656e7420636173696e6f2077687920776f756c6420616e796f6e652062757920746869732e204920646964206e6f74206275792074686520677261696c206c61756e6368206265636175736520756e636170706564206c61756e63686573206e6576657220646f2077656c6c2e2049206d6973736564206f7574206f6e20627579696e6720646d74206174206c61756e63682062656361757365206e6f7468696e67206f6e206172622077696c6c20646f2077656c6c206166746572207468652061697264726f702e2049206d6973736564206f7574206f6e20627579696e67207468652068616d73746572206f6e65206265666f72652074686520687970652077687920776f756c642074686973206f6e6520676f2075702e2049206d6973736564206f7574206f6e207065706520617420756e64657220316d2063617020686f77206d616e792074696d652068617665207468657920747269656420746869733f2049206d6973732049206d6973732049206d6973732049206d6973732e20456e6f75676820697320656e6f7567682e204675636b20756e69626f742e204675636b20686172727920706f747465722e204675636b20726f6c6c6269742e204675636b20646d742e204920616d20696e207468652074656c656772616d2067726f7570732e204920616d20696e2074686520646973636f7264732e2049206d6973732c20616e642049206d6973732c20616e642049206d69737320616e642049206d6973732e20454e4f55474820495320454e4f5547482e204675636b20796f757220636f696e2e

Deployed Bytecode

0x6080604052600436106103905760003560e01c80637cb332bb116101dc578063c18bc19511610102578063e2f45605116100a0578063f8b45b051161006f578063f8b45b0514610d43578063f9f92be414610d6e578063fde83a3414610d97578063fe575a8714610dc257610397565b8063e2f4560514610c99578063f11a24d314610cc4578063f2fde38b14610cef578063f637434214610d1857610397565b8063d729715f116100dc578063d729715f14610bdd578063d85ba06314610c08578063dd62ed3e14610c33578063e19b282314610c7057610397565b8063c18bc19514610b4c578063c8c8ebe414610b75578063d257b34f14610ba057610397565b8063a457c2d71161017a578063b62496f511610149578063b62496f514610a92578063bbc0c74214610acf578063bc205ad314610afa578063c024666814610b2357610397565b8063a457c2d7146109d8578063a9059cbb14610a15578063aa0e438814610a52578063ae8f31f314610a7b57610397565b8063924de9b7116101b6578063924de9b71461093057806395d89b41146109595780639a7a23d6146109845780639c2e4ac6146109ad57610397565b80637cb332bb146108c55780638a8c523c146108ee5780638da5cb5b1461090557610397565b806349bd5a5e116102c15780636a486a8e1161025f578063751039fc1161022e578063751039fc1461081f5780637571336a1461084a57806375e3661e146108735780637ca8448a1461089c57610397565b80636a486a8e146107755780636ddd1713146107a057806370a08231146107cb578063715018a61461080857610397565b80634fbee1931161029b5780634fbee193146106cd578063599270441461070a5780635f1893611461073557806366ca9b831461074c57610397565b806349bd5a5e1461063a5780634a62bb65146106655780634e29e5231461069057610397565b80631a8145bb1161032e57806327c8f8351161030857806327c8f8351461057c578063313ce567146105a757806339509351146105d25780633dc599ff1461060f57610397565b80631a8145bb146104eb578063203e727e1461051657806323b872dd1461053f57610397565b80630e922ca71161036a5780630e922ca71461042d57806310d5de53146104585780631694505e1461049557806318160ddd146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be919061480b565b610dff565b005b3480156103d157600080fd5b506103da610ee9565b6040516103e791906153e4565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061472b565b610f7b565b60405161042491906153ae565b60405180910390f35b34801561043957600080fd5b50610442610f99565b60405161044f91906153ae565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190614612565b610fac565b60405161048c91906153ae565b60405180910390f35b3480156104a157600080fd5b506104aa610fcc565b6040516104b791906153c9565b60405180910390f35b3480156104cc57600080fd5b506104d5610ff2565b6040516104e29190615746565b60405180910390f35b3480156104f757600080fd5b50610500610ffc565b60405161050d9190615746565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906147b9565b611002565b005b34801561054b57600080fd5b50610566600480360381019061056191906146a0565b611111565b60405161057391906153ae565b60405180910390f35b34801561058857600080fd5b50610591611209565b60405161059e9190615309565b60405180910390f35b3480156105b357600080fd5b506105bc61120f565b6040516105c991906157f2565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061472b565b611218565b60405161060691906153ae565b60405180910390f35b34801561061b57600080fd5b506106246112c4565b60405161063191906153ae565b60405180910390f35b34801561064657600080fd5b5061064f6112d7565b60405161065c9190615309565b60405180910390f35b34801561067157600080fd5b5061067a6112fd565b60405161068791906153ae565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614612565b611310565b6040516106c491906153ae565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190614612565b611330565b60405161070191906153ae565b60405180910390f35b34801561071657600080fd5b5061071f611386565b60405161072c9190615309565b60405180910390f35b34801561074157600080fd5b5061074a6113ac565b005b34801561075857600080fd5b50610773600480360381019061076e919061480b565b611445565b005b34801561078157600080fd5b5061078a61152f565b6040516107979190615746565b60405180910390f35b3480156107ac57600080fd5b506107b5611535565b6040516107c291906153ae565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190614612565b611548565b6040516107ff9190615746565b60405180910390f35b34801561081457600080fd5b5061081d611590565b005b34801561082b57600080fd5b50610834611618565b60405161084191906153ae565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906146ef565b6116b8565b005b34801561087f57600080fd5b5061089a60048036038101906108959190614612565b61178f565b005b3480156108a857600080fd5b506108c360048036038101906108be9190614612565b611866565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190614612565b61195c565b005b3480156108fa57600080fd5b50610903611a98565b005b34801561091157600080fd5b5061091a611b67565b6040516109279190615309565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190614767565b611b91565b005b34801561096557600080fd5b5061096e611c2a565b60405161097b91906153e4565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a691906146ef565b611cbc565b005b3480156109b957600080fd5b506109c2611dd7565b6040516109cf9190615746565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061472b565b611ddd565b604051610a0c91906153ae565b60405180910390f35b348015610a2157600080fd5b50610a3c6004803603810190610a37919061472b565b611ec8565b604051610a4991906153ae565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906146ef565b611ee6565b005b348015610a8757600080fd5b50610a90611fd1565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190614612565b6121b2565b604051610ac691906153ae565b60405180910390f35b348015610adb57600080fd5b50610ae46121d2565b604051610af191906153ae565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190614664565b6121e5565b005b348015610b2f57600080fd5b50610b4a6004803603810190610b4591906146ef565b6123f1565b005b348015610b5857600080fd5b50610b736004803603810190610b6e91906147b9565b612516565b005b348015610b8157600080fd5b50610b8a612625565b604051610b979190615746565b60405180910390f35b348015610bac57600080fd5b50610bc76004803603810190610bc291906147b9565b61262b565b604051610bd491906153ae565b60405180910390f35b348015610be957600080fd5b50610bf2612780565b604051610bff9190615746565b60405180910390f35b348015610c1457600080fd5b50610c1d612786565b604051610c2a9190615746565b60405180910390f35b348015610c3f57600080fd5b50610c5a6004803603810190610c559190614664565b61278c565b604051610c679190615746565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c929190614612565b612813565b005b348015610ca557600080fd5b50610cae612a17565b604051610cbb9190615746565b60405180910390f35b348015610cd057600080fd5b50610cd9612a1d565b604051610ce69190615746565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614612565b612a23565b005b348015610d2457600080fd5b50610d2d612b1b565b604051610d3a9190615746565b60405180910390f35b348015610d4f57600080fd5b50610d58612b21565b604051610d659190615746565b60405180910390f35b348015610d7a57600080fd5b50610d956004803603810190610d909190614612565b612b27565b005b348015610da357600080fd5b50610dac612d2b565b604051610db99190615746565b60405180910390f35b348015610dce57600080fd5b50610de96004803603810190610de49190614612565b612d31565b604051610df691906153ae565b60405180910390f35b610e07612d87565b73ffffffffffffffffffffffffffffffffffffffff16610e25611b67565b73ffffffffffffffffffffffffffffffffffffffff1614610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290615626565b60405180910390fd5b8160128190555080601381905550601354601254610e99919061586d565b60118190555060196011541115610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90615546565b60405180910390fd5b5050565b606060038054610ef890615a40565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2490615a40565b8015610f715780601f10610f4657610100808354040283529160200191610f71565b820191906000526020600020905b815481529060010190602001808311610f5457829003601f168201915b5050505050905090565b6000610f8f610f88612d87565b8484612d8f565b6001905092915050565b601960009054906101000a900460ff1681565b60176020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60145481565b61100a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611028611b67565b73ffffffffffffffffffffffffffffffffffffffff161461107e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107590615626565b60405180910390fd5b670de0b6b3a76400006103e86005611094610ff2565b61109e91906158f4565b6110a891906158c3565b6110b291906158c3565b8110156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90615426565b60405180910390fd5b670de0b6b3a76400008161110891906158f4565b60098190555050565b600061111e848484612f5a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611169612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090615606565b60405180910390fd5b6111fd856111f5612d87565b858403612d8f565b60019150509392505050565b61dead81565b60006012905090565b60006112ba611225612d87565b848460016000611233612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b5919061586d565b612d8f565b6001905092915050565b600c60039054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900460ff1681565b601a6020528060005260406000206000915054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113b4612d87565b73ffffffffffffffffffffffffffffffffffffffff166113d2611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90615626565b60405180910390fd5b6001600c60036101000a81548160ff021916908315150217905550565b61144d612d87565b73ffffffffffffffffffffffffffffffffffffffff1661146b611b67565b73ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890615626565b60405180910390fd5b81600f8190555080601081905550601054600f546114df919061586d565b600e819055506019600e54111561152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906156e6565b60405180910390fd5b5050565b60115481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611598612d87565b73ffffffffffffffffffffffffffffffffffffffff166115b6611b67565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390615626565b60405180910390fd5b6116166000613b82565b565b6000611622612d87565b73ffffffffffffffffffffffffffffffffffffffff16611640611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90615626565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6116c0612d87565b73ffffffffffffffffffffffffffffffffffffffff166116de611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90615626565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611797612d87565b73ffffffffffffffffffffffffffffffffffffffff166117b5611b67565b73ffffffffffffffffffffffffffffffffffffffff161461180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290615626565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61186e612d87565b73ffffffffffffffffffffffffffffffffffffffff1661188c611b67565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990615626565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051611908906152f4565b60006040518083038185875af1925050503d8060008114611945576040519150601f19603f3d011682016040523d82523d6000602084013e61194a565b606091505b505090508061195857600080fd5b5050565b611964612d87565b73ffffffffffffffffffffffffffffffffffffffff16611982611b67565b73ffffffffffffffffffffffffffffffffffffffff16146119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90615626565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611aa0612d87565b73ffffffffffffffffffffffffffffffffffffffff16611abe611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90615626565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506000601960006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b99612d87565b73ffffffffffffffffffffffffffffffffffffffff16611bb7611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490615626565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b606060048054611c3990615a40565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6590615a40565b8015611cb25780601f10611c8757610100808354040283529160200191611cb2565b820191906000526020600020905b815481529060010190602001808311611c9557829003601f168201915b5050505050905090565b611cc4612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ce2611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90615626565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc0906154a6565b60405180910390fd5b611dd38282613c48565b5050565b60105481565b60008060016000611dec612d87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090615706565b60405180910390fd5b611ebd611eb4612d87565b85858403612d8f565b600191505092915050565b6000611edc611ed5612d87565b8484612f5a565b6001905092915050565b611eee612d87565b73ffffffffffffffffffffffffffffffffffffffff16611f0c611b67565b73ffffffffffffffffffffffffffffffffffffffff1614611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990615626565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611fc382826123f1565b611fcd82826116b8565b5050565b611fd9612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ff7611b67565b73ffffffffffffffffffffffffffffffffffffffff161461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490615626565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016120889190615309565b60206040518083038186803b1580156120a057600080fd5b505afa1580156120b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d891906147e2565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612115929190615324565b602060405180830381600087803b15801561212f57600080fd5b505af1158015612143573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121679190614790565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121ae573d6000803e3d6000fd5b5050565b60186020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6121ed612d87565b73ffffffffffffffffffffffffffffffffffffffff1661220b611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890615626565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906155e6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161230c9190615309565b60206040518083038186803b15801561232457600080fd5b505afa158015612338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235c91906147e2565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401612399929190615324565b602060405180830381600087803b1580156123b357600080fd5b505af11580156123c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123eb9190614790565b50505050565b6123f9612d87565b73ffffffffffffffffffffffffffffffffffffffff16612417611b67565b73ffffffffffffffffffffffffffffffffffffffff161461246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490615626565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161250a91906153ae565b60405180910390a25050565b61251e612d87565b73ffffffffffffffffffffffffffffffffffffffff1661253c611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258990615626565b60405180910390fd5b670de0b6b3a76400006103e8600a6125a8610ff2565b6125b291906158f4565b6125bc91906158c3565b6125c691906158c3565b811015612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff90615566565b60405180910390fd5b670de0b6b3a76400008161261c91906158f4565b600b8190555050565b60095481565b6000612635612d87565b73ffffffffffffffffffffffffffffffffffffffff16612653611b67565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090615626565b60405180910390fd5b620186a060016126b7610ff2565b6126c191906158f4565b6126cb91906158c3565b82101561270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490615586565b60405180910390fd5b6103e8600561271a610ff2565b61272491906158f4565b61272e91906158c3565b821115612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906155a6565b60405180910390fd5b81600a8190555060019050919050565b60135481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61281b612d87565b73ffffffffffffffffffffffffffffffffffffffff16612839611b67565b73ffffffffffffffffffffffffffffffffffffffff161461288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690615626565b60405180910390fd5b600c60039054906101000a900460ff16156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690615666565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561297d5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b390615686565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600a5481565b600f5481565b612a2b612d87565b73ffffffffffffffffffffffffffffffffffffffff16612a49611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9690615626565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690615466565b60405180910390fd5b612b1881613b82565b50565b60125481565b600b5481565b612b2f612d87565b73ffffffffffffffffffffffffffffffffffffffff16612b4d611b67565b73ffffffffffffffffffffffffffffffffffffffff1614612ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9a90615626565b60405180910390fd5b600c60039054906101000a900460ff1615612bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bea90615666565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612c915750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc790615686565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60155481565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df6906156a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6690615486565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612f4d9190615746565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc190615646565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303190615406565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130be90615506565b60405180910390fd5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314b90615526565b60405180910390fd5b601960009054906101000a900460ff16156131f657601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90615726565b60405180910390fd5b5b60008114156132105761320b83836000613ce9565b613b7d565b600c60009054906101000a900460ff161561370b5761322d611b67565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561329b575061326b611b67565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156132d45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561330e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133275750600760149054906101000a900460ff16155b1561370a57600c60019054906101000a900460ff1661342157601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133e15750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341790615446565b60405180910390fd5b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134c45750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561356b5760095481111561350e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613505906155c6565b60405180910390fd5b600b5461351a83611548565b82613525919061586d565b1115613566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355d906156c6565b60405180910390fd5b613709565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360e5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561365d57600954811115613658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364f906154e6565b60405180910390fd5b613708565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661370757600b546136ba83611548565b826136c5919061586d565b1115613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd906156c6565b60405180910390fd5b5b5b5b5b5b600061371630611548565b90506000600a54821015905080801561373b5750600c60029054906101000a900460ff165b80156137545750600760149054906101000a900460ff16155b80156137aa5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138005750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156138565750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561389a576001600760146101000a81548160ff02191690831515021790555061387e613f6a565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139505750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395a57600090505b60008115613b6d57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bd57506000601154115b15613a57576139ea60646139dc6011548861419090919063ffffffff16565b6141a690919063ffffffff16565b9050601154601254826139fd91906158f4565b613a0791906158c3565b60146000828254613a18919061586d565b9250508190555060115460135482613a3091906158f4565b613a3a91906158c3565b60156000828254613a4b919061586d565b92505081905550613b49565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ab257506000600e54115b15613b4857613adf6064613ad1600e548861419090919063ffffffff16565b6141a690919063ffffffff16565b9050600e54600f5482613af291906158f4565b613afc91906158c3565b60146000828254613b0d919061586d565b92505081905550600e5460105482613b2591906158f4565b613b2f91906158c3565b60156000828254613b40919061586d565b925050819055505b5b6000811115613b5e57613b5d873083613ce9565b5b8085613b6a919061594e565b94505b613b78878787613ce9565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5090615646565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc090615406565b60405180910390fd5b613dd48383836141bc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e51906154c6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613eed919061586d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f519190615746565b60405180910390a3613f648484846141c1565b50505050565b6000613f7530611548565b90506000601554601454613f89919061586d565b9050600080831480613f9b5750600082145b15613fa85750505061418e565b6014600a54613fb791906158f4565b831115613fd0576014600a54613fcd91906158f4565b92505b600060028360145486613fe391906158f4565b613fed91906158c3565b613ff791906158c3565b9050600061400e82866141c690919063ffffffff16565b9050600047905061401e826141dc565b600061403382476141c690919063ffffffff16565b90506000614077600260145461404991906158c3565b88614054919061594e565b6140696015548561419090919063ffffffff16565b6141a690919063ffffffff16565b905060008183614087919061594e565b905060006014819055506000601581905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516140df906152f4565b60006040518083038185875af1925050503d806000811461411c576040519150601f19603f3d011682016040523d82523d6000602084013e614121565b606091505b5050809750506000861180156141375750600081115b156141845761414686826144a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260145460405161417b939291906157bb565b60405180910390a15b5050505050505050505b565b6000818361419e91906158f4565b905092915050565b600081836141b491906158c3565b905092915050565b505050565b505050565b600081836141d4919061594e565b905092915050565b6000600267ffffffffffffffff81111561421f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561424d5781602001602082028036833780820191505090505b509050308160008151811061428b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561432d57600080fd5b505afa158015614341573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614365919061463b565b8160018151811061439f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061440630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161446a959493929190615761565b600060405180830381600087803b15801561448457600080fd5b505af1158015614498573d6000803e3d6000fd5b505050505050565b6144cd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614519611b67565b426040518863ffffffff1660e01b815260040161453b9695949392919061534d565b6060604051808303818588803b15801561455457600080fd5b505af1158015614568573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061458d9190614847565b5050505050565b6000813590506145a381615b10565b92915050565b6000815190506145b881615b10565b92915050565b6000813590506145cd81615b27565b92915050565b6000815190506145e281615b27565b92915050565b6000813590506145f781615b3e565b92915050565b60008151905061460c81615b3e565b92915050565b60006020828403121561462457600080fd5b600061463284828501614594565b91505092915050565b60006020828403121561464d57600080fd5b600061465b848285016145a9565b91505092915050565b6000806040838503121561467757600080fd5b600061468585828601614594565b925050602061469685828601614594565b9150509250929050565b6000806000606084860312156146b557600080fd5b60006146c386828701614594565b93505060206146d486828701614594565b92505060406146e5868287016145e8565b9150509250925092565b6000806040838503121561470257600080fd5b600061471085828601614594565b9250506020614721858286016145be565b9150509250929050565b6000806040838503121561473e57600080fd5b600061474c85828601614594565b925050602061475d858286016145e8565b9150509250929050565b60006020828403121561477957600080fd5b6000614787848285016145be565b91505092915050565b6000602082840312156147a257600080fd5b60006147b0848285016145d3565b91505092915050565b6000602082840312156147cb57600080fd5b60006147d9848285016145e8565b91505092915050565b6000602082840312156147f457600080fd5b6000614802848285016145fd565b91505092915050565b6000806040838503121561481e57600080fd5b600061482c858286016145e8565b925050602061483d858286016145e8565b9150509250929050565b60008060006060848603121561485c57600080fd5b600061486a868287016145fd565b935050602061487b868287016145fd565b925050604061488c868287016145fd565b9150509250925092565b60006148a283836148ae565b60208301905092915050565b6148b781615982565b82525050565b6148c681615982565b82525050565b60006148d78261581d565b6148e18185615840565b93506148ec8361580d565b8060005b8381101561491d5781516149048882614896565b975061490f83615833565b9250506001810190506148f0565b5085935050505092915050565b61493381615994565b82525050565b614942816159d7565b82525050565b614951816159fb565b82525050565b600061496282615828565b61496c818561585c565b935061497c818560208601615a0d565b61498581615aff565b840191505092915050565b600061499d60238361585c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a03602f8361585c565b91507f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008301527f6c6f776572207468616e20302e352500000000000000000000000000000000006020830152604082019050919050565b6000614a6960168361585c565b91507f54726164696e67206973206e6f74206163746976652e000000000000000000006000830152602082019050919050565b6000614aa960268361585c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0f60228361585c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b7560398361585c565b91507f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008301527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006020830152604082019050919050565b6000614bdb60268361585c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c4160368361585c565b91507f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008301527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006020830152604082019050919050565b6000614ca760128361585c565b91507f53656e64657220626c61636b6c697374656400000000000000000000000000006000830152602082019050919050565b6000614ce760148361585c565b91507f526563656976657220626c61636b6c69737465640000000000000000000000006000830152602082019050919050565b6000614d2760188361585c565b91507f53656c6c2066656573206d757374206265203c3d2032352e00000000000000006000830152602082019050919050565b6000614d6760248361585c565b91507f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008301527f312e3025000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dcd60358361585c565b91507f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008301527f20302e3030312520746f74616c20737570706c792e00000000000000000000006020830152604082019050919050565b6000614e3360348361585c565b91507f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008301527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006020830152604082019050919050565b6000614e9960358361585c565b91507f427579207472616e7366657220616d6f756e742065786365656473207468652060008301527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006020830152604082019050919050565b6000614eff601a8361585c565b91507f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006000830152602082019050919050565b6000614f3f60288361585c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614fa560208361585c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614fe560258361585c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061504b60218361585c565b91507f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006150b1600083615851565b9150600082019050919050565b60006150cb602e8361585c565b91507f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460008301527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006020830152604082019050919050565b600061513160248361585c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061519760138361585c565b91507f4d61782077616c6c6574206578636565646564000000000000000000000000006000830152602082019050919050565b60006151d760178361585c565b91507f4275792066656573206d757374206265203c3d2032352e0000000000000000006000830152602082019050919050565b600061521760258361585c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061527d60298361585c565b91507f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008301527f6967726174696f6e2e00000000000000000000000000000000000000000000006020830152604082019050919050565b6152df816159c0565b82525050565b6152ee816159ca565b82525050565b60006152ff826150a4565b9150819050919050565b600060208201905061531e60008301846148bd565b92915050565b600060408201905061533960008301856148bd565b61534660208301846152d6565b9392505050565b600060c08201905061536260008301896148bd565b61536f60208301886152d6565b61537c6040830187614948565b6153896060830186614948565b61539660808301856148bd565b6153a360a08301846152d6565b979650505050505050565b60006020820190506153c3600083018461492a565b92915050565b60006020820190506153de6000830184614939565b92915050565b600060208201905081810360008301526153fe8184614957565b905092915050565b6000602082019050818103600083015261541f81614990565b9050919050565b6000602082019050818103600083015261543f816149f6565b9050919050565b6000602082019050818103600083015261545f81614a5c565b9050919050565b6000602082019050818103600083015261547f81614a9c565b9050919050565b6000602082019050818103600083015261549f81614b02565b9050919050565b600060208201905081810360008301526154bf81614b68565b9050919050565b600060208201905081810360008301526154df81614bce565b9050919050565b600060208201905081810360008301526154ff81614c34565b9050919050565b6000602082019050818103600083015261551f81614c9a565b9050919050565b6000602082019050818103600083015261553f81614cda565b9050919050565b6000602082019050818103600083015261555f81614d1a565b9050919050565b6000602082019050818103600083015261557f81614d5a565b9050919050565b6000602082019050818103600083015261559f81614dc0565b9050919050565b600060208201905081810360008301526155bf81614e26565b9050919050565b600060208201905081810360008301526155df81614e8c565b9050919050565b600060208201905081810360008301526155ff81614ef2565b9050919050565b6000602082019050818103600083015261561f81614f32565b9050919050565b6000602082019050818103600083015261563f81614f98565b9050919050565b6000602082019050818103600083015261565f81614fd8565b9050919050565b6000602082019050818103600083015261567f8161503e565b9050919050565b6000602082019050818103600083015261569f816150be565b9050919050565b600060208201905081810360008301526156bf81615124565b9050919050565b600060208201905081810360008301526156df8161518a565b9050919050565b600060208201905081810360008301526156ff816151ca565b9050919050565b6000602082019050818103600083015261571f8161520a565b9050919050565b6000602082019050818103600083015261573f81615270565b9050919050565b600060208201905061575b60008301846152d6565b92915050565b600060a08201905061577660008301886152d6565b6157836020830187614948565b818103604083015261579581866148cc565b90506157a460608301856148bd565b6157b160808301846152d6565b9695505050505050565b60006060820190506157d060008301866152d6565b6157dd60208301856152d6565b6157ea60408301846152d6565b949350505050565b600060208201905061580760008301846152e5565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000615878826159c0565b9150615883836159c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158b8576158b7615a72565b5b828201905092915050565b60006158ce826159c0565b91506158d9836159c0565b9250826158e9576158e8615aa1565b5b828204905092915050565b60006158ff826159c0565b915061590a836159c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561594357615942615a72565b5b828202905092915050565b6000615959826159c0565b9150615964836159c0565b92508282101561597757615976615a72565b5b828203905092915050565b600061598d826159a0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006159e2826159e9565b9050919050565b60006159f4826159a0565b9050919050565b6000615a06826159c0565b9050919050565b60005b83811015615a2b578082015181840152602081019050615a10565b83811115615a3a576000848401525b50505050565b60006002820490506001821680615a5857607f821691505b60208210811415615a6c57615a6b615ad0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b615b1981615982565b8114615b2457600080fd5b50565b615b3081615994565b8114615b3b57600080fd5b50565b615b47816159c0565b8114615b5257600080fd5b5056fea2646970667358221220716734e20b17752cb10c655b171e49aca2375e624330da2d7fa6d08f0b1da93064736f6c63430008000033

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.