ETH Price: $2,531.78 (+3.71%)

Token

Gary Genslers Inu (GINU)
 

Overview

Max Total Supply

10,000,000 GINU

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
199,870.324728988388671875 GINU

Value
$0.00
0xf88cF0B7c83d6a5aeB01C1f8504397c24625b84e
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:
GaryGenslersInu

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : GINU.sol
/* 

Gary Genslers Inu | $GINU

As the Securities and Exchange Commission (SEC) Chairman, Gary Gensler has been cracking 
down on cryptocurrencies left and right. 

However, it seems that he has a soft spot for his own furry frens. In a surprising move, 
Gensler has given the green light to his very own pup's coin, Gary Genslers Inu. 

Tax: 0/0

🌐 Website: http://www.genslersinu.com/
↗️ Telegram: https://t.me/GenslersInu
🐥 Twitter: https://twitter.com/genslersinu

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.17 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.17; */

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.17; */

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

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

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

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

    /**
     * @dev 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.17; */

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

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

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

/* pragma solidity ^0.8.17; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.17; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.17; */
/* pragma experimental ABIEncoderV2; */

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

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.17; */
/* pragma experimental ABIEncoderV2; */

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 GaryGenslersInu is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude 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;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Gary Genslers Inu", "GINU") {
        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 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 5;

        uint256 _sellMarketingFee = 40;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 20;

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 200_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 200_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xB6ef02d393438F186BF0aefA729Ed6c53BA948e1); // set as marketing wallet
        devWallet = address(0x07949147897fCf15a8eE1FB91fA9E62734c70118); // set as dev 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);

        /*
            _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;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 65, "Must keep fees at 65% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

        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."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
        }

        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;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / 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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","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":[],"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601181526020017f476172792047656e736c65727320496e750000000000000000000000000000008152506040518060400160405280600481526020017f47494e5500000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d7d565b50806004908162000139919062000d7d565b5050506200015c62000150620005c460201b60201c565b620005cc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ece565b6040518363ffffffff1660e01b8152600401620002db92919062000f11565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069260201b60201c565b6200037e60a05160016200077c60201b60201c565b6000600a9050600080600590506000602890506000806014905060006a084595161401484a0000009050692a5a058fc295ed000000600881905550692a5a058fc295ed000000600a81905550612710600a82620003dc919062000f6d565b620003e8919062000fe7565b6009819055508660158190555085601681905550846017819055506017546016546015546200041891906200101f565b6200042491906200101f565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045491906200101f565b6200046091906200101f565b60188190555073b6ef02d393438f186bf0aefa729ed6c53ba948e1600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507307949147897fcf15a8ee1fb91fa9e62734c70118600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000532620005246200081d60201b60201c565b60016200084760201b60201c565b620005453060016200084760201b60201c565b6200055a61dead60016200084760201b60201c565b6200057c6200056e6200081d60201b60201c565b60016200069260201b60201c565b6200058f3060016200069260201b60201c565b620005a461dead60016200069260201b60201c565b620005b633826200098160201b60201c565b5050505050505050620011b7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a2620005c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c86200081d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000721576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071890620010bb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000857620005c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087d6200081d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cd90620010bb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009759190620010fa565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ea9062001167565b60405180910390fd5b62000a076000838362000af960201b60201c565b806002600082825462000a1b91906200101f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7291906200101f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad991906200119a565b60405180910390a362000af56000838362000afe60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8557607f821691505b60208210810362000b9b5762000b9a62000b3d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc6565b62000c11868362000bc6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5e62000c5862000c528462000c29565b62000c33565b62000c29565b9050919050565b6000819050919050565b62000c7a8362000c3d565b62000c9262000c898262000c65565b84845462000bd3565b825550505050565b600090565b62000ca962000c9a565b62000cb681848462000c6f565b505050565b5b8181101562000cde5762000cd260008262000c9f565b60018101905062000cbc565b5050565b601f82111562000d2d5762000cf78162000ba1565b62000d028462000bb6565b8101602085101562000d12578190505b62000d2a62000d218562000bb6565b83018262000cbb565b50505b505050565b600082821c905092915050565b600062000d526000198460080262000d32565b1980831691505092915050565b600062000d6d838362000d3f565b9150826002028217905092915050565b62000d888262000b03565b67ffffffffffffffff81111562000da45762000da362000b0e565b5b62000db0825462000b6c565b62000dbd82828562000ce2565b600060209050601f83116001811462000df5576000841562000de0578287015190505b62000dec858262000d5f565b86555062000e5c565b601f19841662000e058662000ba1565b60005b8281101562000e2f5784890151825560018201915060208501945060208101905062000e08565b8683101562000e4f578489015162000e4b601f89168262000d3f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e968262000e69565b9050919050565b62000ea88162000e89565b811462000eb457600080fd5b50565b60008151905062000ec88162000e9d565b92915050565b60006020828403121562000ee75762000ee662000e64565b5b600062000ef78482850162000eb7565b91505092915050565b62000f0b8162000e89565b82525050565b600060408201905062000f28600083018562000f00565b62000f37602083018462000f00565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f7a8262000c29565b915062000f878362000c29565b925082820262000f978162000c29565b9150828204841483151762000fb15762000fb062000f3e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff48262000c29565b9150620010018362000c29565b92508262001014576200101362000fb8565b5b828204905092915050565b60006200102c8262000c29565b9150620010398362000c29565b925082820190508082111562001054576200105362000f3e565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010a36020836200105a565b9150620010b0826200106b565b602082019050919050565b60006020820190508181036000830152620010d68162001094565b9050919050565b60008115159050919050565b620010f481620010dd565b82525050565b6000602082019050620011116000830184620010e9565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200114f601f836200105a565b91506200115c8262001117565b602082019050919050565b60006020820190508181036000830152620011828162001140565b9050919050565b620011948162000c29565b82525050565b6000602082019050620011b1600083018462001189565b92915050565b60805160a0516152e0620012156000396000818161137101528181611a4001526129d3015260008181610f140152818161297b01528181613b5d01528181613c3e01528181613c6501528181613d010152613d2801526152e06000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c99190613e67565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613f22565b610ed5565b6040516104069190613f7d565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613f98565b610ef3565b6040516104439190613f7d565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e9190614024565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b604051610499919061404e565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f98565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed919061404e565b60405180910390f35b34801561050257600080fd5b5061050b611082565b604051610518919061404e565b60405180910390f35b34801561052d57600080fd5b50610536611088565b604051610543919061404e565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e919061404e565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614069565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190614096565b6111a3565b6040516105d49190613f7d565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906140f8565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a919061404e565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190613f7d565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b604051610680919061412f565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613f22565b6112c3565b6040516106bd9190613f7d565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906140f8565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190613f7d565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613f98565b6113a6565b6040516107509190613f7d565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b919061404e565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190613f7d565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f98565b611415565b6040516107e3919061404e565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190613f7d565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614176565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906140f8565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a4919061404e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906141b6565b611688565b005b3480156108e257600080fd5b506108eb611786565b005b3480156108f957600080fd5b50610902611841565b60405161090f91906140f8565b60405180910390f35b34801561092457600080fd5b5061092d61186b565b60405161093a91906140f8565b60405180910390f35b34801561094f57600080fd5b50610958611891565b604051610965919061404e565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614209565b611897565b005b3480156109a357600080fd5b506109ac611930565b6040516109b99190613e67565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190614176565b6119c2565b005b3480156109f757600080fd5b50610a00611ada565b604051610a0d919061404e565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae0565b604051610a38919061404e565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae6565b604051610a63919061404e565b60405180910390f35b348015610a7857600080fd5b50610a81611aec565b604051610a8e919061404e565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613f22565b611af2565b604051610acb9190613f7d565b60405180910390f35b348015610ae057600080fd5b50610ae9611bdd565b604051610af6919061404e565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613f22565b611be3565b604051610b339190613f7d565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613f98565b611c01565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613f98565b611d3d565b604051610b999190613f7d565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5d565b604051610bc49190613f7d565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614176565b611d70565b005b348015610c0257600080fd5b50610c1d6004803603810190610c1891906141b6565b611e95565b005b348015610c2b57600080fd5b50610c466004803603810190610c419190614069565b611f94565b005b348015610c5457600080fd5b50610c5d6120a3565b604051610c6a9190613f7d565b60405180910390f35b348015610c7f57600080fd5b50610c886120b6565b604051610c95919061404e565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc09190614069565b6120bc565b604051610cd29190613f7d565b60405180910390f35b348015610ce757600080fd5b50610cf0612211565b604051610cfd919061404e565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d289190614236565b612217565b604051610d3a919061404e565b60405180910390f35b348015610d4f57600080fd5b50610d5861229e565b604051610d65919061404e565b60405180910390f35b348015610d7a57600080fd5b50610d836122a4565b604051610d909190613f7d565b60405180910390f35b348015610da557600080fd5b50610dae612344565b604051610dbb919061404e565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de69190613f98565b61234a565b005b348015610df957600080fd5b50610e02612441565b604051610e0f919061404e565b60405180910390f35b348015610e2457600080fd5b50610e2d612447565b604051610e3a919061404e565b60405180910390f35b606060038054610e52906142a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e906142a5565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244d565b8484612455565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f4861244d565b73ffffffffffffffffffffffffffffffffffffffff16610f66611841565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614322565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244d565b73ffffffffffffffffffffffffffffffffffffffff166110ba611841565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614322565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614371565b61113a91906143e2565b61114491906143e2565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614485565b60405180910390fd5b670de0b6b3a76400008161119a9190614371565b60088190555050565b60006111b084848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614517565b60405180910390fd5b61128f8561128761244d565b858403612455565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244d565b8484600160006112de61244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190614537565b612455565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244d565b73ffffffffffffffffffffffffffffffffffffffff16611483611841565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090614322565b60405180910390fd5b6114e360006133a5565b565b60006114ef61244d565b73ffffffffffffffffffffffffffffffffffffffff1661150d611841565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614322565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244d565b73ffffffffffffffffffffffffffffffffffffffff166115ab611841565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614322565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244d565b73ffffffffffffffffffffffffffffffffffffffff166116ae611841565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614322565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c9190614537565b6117369190614537565b601481905550601480541115611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906145b7565b60405180910390fd5b505050565b61178e61244d565b73ffffffffffffffffffffffffffffffffffffffff166117ac611841565b73ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614322565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61189f61244d565b73ffffffffffffffffffffffffffffffffffffffff166118bd611841565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614322565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461193f906142a5565b80601f016020809104026020016040519081016040528092919081815260200182805461196b906142a5565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61244d565b73ffffffffffffffffffffffffffffffffffffffff166119e8611841565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614322565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390614649565b60405180910390fd5b611ad6828261346b565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0161244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906146db565b60405180910390fd5b611bd2611bc961244d565b85858403612455565b600191505092915050565b600e5481565b6000611bf7611bf061244d565b848461261e565b6001905092915050565b611c0961244d565b73ffffffffffffffffffffffffffffffffffffffff16611c27611841565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490614322565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7861244d565b73ffffffffffffffffffffffffffffffffffffffff16611d96611841565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614322565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e899190613f7d565b60405180910390a25050565b611e9d61244d565b73ffffffffffffffffffffffffffffffffffffffff16611ebb611841565b73ffffffffffffffffffffffffffffffffffffffff1614611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890614322565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f399190614537565b611f439190614537565b60188190555060416018541115611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614747565b60405180910390fd5b505050565b611f9c61244d565b73ffffffffffffffffffffffffffffffffffffffff16611fba611841565b73ffffffffffffffffffffffffffffffffffffffff1614612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614322565b60405180910390fd5b670de0b6b3a76400006103e86005612026610f36565b6120309190614371565b61203a91906143e2565b61204491906143e2565b811015612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d906147d9565b60405180910390fd5b670de0b6b3a76400008161209a9190614371565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c661244d565b73ffffffffffffffffffffffffffffffffffffffff166120e4611841565b73ffffffffffffffffffffffffffffffffffffffff161461213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614322565b60405180910390fd5b620186a06001612148610f36565b6121529190614371565b61215c91906143e2565b82101561219e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121959061486b565b60405180910390fd5b6103e860056121ab610f36565b6121b59190614371565b6121bf91906143e2565b821115612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f8906148fd565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122ae61244d565b73ffffffffffffffffffffffffffffffffffffffff166122cc611841565b73ffffffffffffffffffffffffffffffffffffffff1614612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614322565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235261244d565b73ffffffffffffffffffffffffffffffffffffffff16612370611841565b73ffffffffffffffffffffffffffffffffffffffff16146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c9061498f565b60405180910390fd5b61243e816133a5565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614ab3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612611919061404e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390614bd7565b60405180910390fd5b60008103612715576127108383600061350c565b6133a0565b601160009054906101000a900460ff1615612dd857612732611841565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a05750612770611841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612813575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282c5750600560149054906101000a900460ff16155b15612dd757601160019054906101000a900460ff1661292657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e65750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614c43565b60405180910390fd5b5b601360009054906101000a900460ff1615612aee57612943611841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129ca57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aed5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90614cfb565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3857600854811115612bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd290614d8d565b60405180910390fd5b600a54612be783611415565b82612bf29190614537565b1115612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90614df9565b60405180910390fd5b612dd6565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdb5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2a57600854811115612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614e8b565b60405180910390fd5b612dd5565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd457600a54612d8783611415565b82612d929190614537565b1115612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90614df9565b60405180910390fd5b5b5b5b5b5b6000612de330611415565b905060006009548210159050808015612e085750601160029054906101000a900460ff165b8015612e215750600560149054906101000a900460ff16155b8015612e775750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ecd5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f235750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f67576001600560146101000a81548160ff021916908315150217905550612f4b61378b565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fcd5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe55750600c60009054906101000a900460ff165b80156130005750600d54600e54612ffc9190614537565b4210155b80156130565750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061310d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561311757600090505b6000811561339057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317a57506000601854115b15613247576131a7606461319960185488613a7290919063ffffffff16565b613a8890919063ffffffff16565b9050601854601a54826131ba9190614371565b6131c491906143e2565b601d60008282546131d59190614537565b92505081905550601854601b54826131ed9190614371565b6131f791906143e2565b601e60008282546132089190614537565b92505081905550601854601954826132209190614371565b61322a91906143e2565b601c600082825461323b9190614537565b9250508190555061336c565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132a257506000601454115b1561336b576132cf60646132c160145488613a7290919063ffffffff16565b613a8890919063ffffffff16565b9050601454601654826132e29190614371565b6132ec91906143e2565b601d60008282546132fd9190614537565b92505081905550601454601754826133159190614371565b61331f91906143e2565b601e60008282546133309190614537565b92505081905550601454601554826133489190614371565b61335291906143e2565b601c60008282546133639190614537565b925050819055505b5b60008111156133815761338087308361350c565b5b808561338d9190614eab565b94505b61339b87878761350c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357290614b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614bd7565b60405180910390fd5b6135f5838383613a9e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561367b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367290614f51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370e9190614537565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613772919061404e565b60405180910390a3613785848484613aa3565b50505050565b600061379630611415565b90506000601e54601c54601d546137ad9190614537565b6137b79190614537565b90506000808314806137c95750600082145b156137d657505050613a70565b60146009546137e59190614371565b8311156137fe5760146009546137fb9190614371565b92505b6000600283601d54866138119190614371565b61381b91906143e2565b61382591906143e2565b9050600061383c8286613aa890919063ffffffff16565b9050600047905061384c82613abe565b60006138618247613aa890919063ffffffff16565b9050600061388c8761387e601c5485613a7290919063ffffffff16565b613a8890919063ffffffff16565b905060006138b7886138a9601e5486613a7290919063ffffffff16565b613a8890919063ffffffff16565b905060008183856138c89190614eab565b6138d29190614eab565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161393290614fa2565b60006040518083038185875af1925050503d806000811461396f576040519150601f19603f3d011682016040523d82523d6000602084013e613974565b606091505b50508098505060008711801561398a5750600081115b156139d7576139998782613cfb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139ce93929190614fb7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1d90614fa2565b60006040518083038185875af1925050503d8060008114613a5a576040519150601f19603f3d011682016040523d82523d6000602084013e613a5f565b606091505b505080985050505050505050505050505b565b60008183613a809190614371565b905092915050565b60008183613a9691906143e2565b905092915050565b505050565b505050565b60008183613ab69190614eab565b905092915050565b6000600267ffffffffffffffff811115613adb57613ada614fee565b5b604051908082528060200260200182016040528015613b095781602001602082028036833780820191505090505b5090503081600081518110613b2157613b2061501d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190615061565b81600181518110613bfe57613bfd61501d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c63307f000000000000000000000000000000000000000000000000000000000000000084612455565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cc5959493929190615187565b600060405180830381600087803b158015613cdf57600080fd5b505af1158015613cf3573d6000803e3d6000fd5b505050505050565b613d26307f000000000000000000000000000000000000000000000000000000000000000084612455565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d8d969594939291906151e1565b60606040518083038185885af1158015613dab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dd09190615257565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e11578082015181840152602081019050613df6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e3982613dd7565b613e438185613de2565b9350613e53818560208601613df3565b613e5c81613e1d565b840191505092915050565b60006020820190508181036000830152613e818184613e2e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eb982613e8e565b9050919050565b613ec981613eae565b8114613ed457600080fd5b50565b600081359050613ee681613ec0565b92915050565b6000819050919050565b613eff81613eec565b8114613f0a57600080fd5b50565b600081359050613f1c81613ef6565b92915050565b60008060408385031215613f3957613f38613e89565b5b6000613f4785828601613ed7565b9250506020613f5885828601613f0d565b9150509250929050565b60008115159050919050565b613f7781613f62565b82525050565b6000602082019050613f926000830184613f6e565b92915050565b600060208284031215613fae57613fad613e89565b5b6000613fbc84828501613ed7565b91505092915050565b6000819050919050565b6000613fea613fe5613fe084613e8e565b613fc5565b613e8e565b9050919050565b6000613ffc82613fcf565b9050919050565b600061400e82613ff1565b9050919050565b61401e81614003565b82525050565b60006020820190506140396000830184614015565b92915050565b61404881613eec565b82525050565b6000602082019050614063600083018461403f565b92915050565b60006020828403121561407f5761407e613e89565b5b600061408d84828501613f0d565b91505092915050565b6000806000606084860312156140af576140ae613e89565b5b60006140bd86828701613ed7565b93505060206140ce86828701613ed7565b92505060406140df86828701613f0d565b9150509250925092565b6140f281613eae565b82525050565b600060208201905061410d60008301846140e9565b92915050565b600060ff82169050919050565b61412981614113565b82525050565b60006020820190506141446000830184614120565b92915050565b61415381613f62565b811461415e57600080fd5b50565b6000813590506141708161414a565b92915050565b6000806040838503121561418d5761418c613e89565b5b600061419b85828601613ed7565b92505060206141ac85828601614161565b9150509250929050565b6000806000606084860312156141cf576141ce613e89565b5b60006141dd86828701613f0d565b93505060206141ee86828701613f0d565b92505060406141ff86828701613f0d565b9150509250925092565b60006020828403121561421f5761421e613e89565b5b600061422d84828501614161565b91505092915050565b6000806040838503121561424d5761424c613e89565b5b600061425b85828601613ed7565b925050602061426c85828601613ed7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142bd57607f821691505b6020821081036142d0576142cf614276565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430c602083613de2565b9150614317826142d6565b602082019050919050565b6000602082019050818103600083015261433b816142ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437c82613eec565b915061438783613eec565b925082820261439581613eec565b915082820484148315176143ac576143ab614342565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ed82613eec565b91506143f883613eec565b925082614408576144076143b3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061446f602f83613de2565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614501602883613de2565b915061450c826144a5565b604082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b600061454282613eec565b915061454d83613eec565b925082820190508082111561456557614564614342565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006145a1601d83613de2565b91506145ac8261456b565b602082019050919050565b600060208201905081810360008301526145d081614594565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614633603983613de2565b915061463e826145d7565b604082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c5602583613de2565b91506146d082614669565b604082019050919050565b600060208201905081810360008301526146f4816146b8565b9050919050565b7f4d757374206b656570206665657320617420363525206f72206c657373000000600082015250565b6000614731601d83613de2565b915061473c826146fb565b602082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147c3602483613de2565b91506147ce82614767565b604082019050919050565b600060208201905081810360008301526147f2816147b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614855603583613de2565b9150614860826147f9565b604082019050919050565b6000602082019050818103600083015261488481614848565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148e7603483613de2565b91506148f28261488b565b604082019050919050565b60006020820190508181036000830152614916816148da565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614979602683613de2565b91506149848261491d565b604082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a0b602483613de2565b9150614a16826149af565b604082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9d602283613de2565b9150614aa882614a41565b604082019050919050565b60006020820190508181036000830152614acc81614a90565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b2f602583613de2565b9150614b3a82614ad3565b604082019050919050565b60006020820190508181036000830152614b5e81614b22565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc1602383613de2565b9150614bcc82614b65565b604082019050919050565b60006020820190508181036000830152614bf081614bb4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c2d601683613de2565b9150614c3882614bf7565b602082019050919050565b60006020820190508181036000830152614c5c81614c20565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ce5604983613de2565b9150614cf082614c63565b606082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d77603583613de2565b9150614d8282614d1b565b604082019050919050565b60006020820190508181036000830152614da681614d6a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614de3601383613de2565b9150614dee82614dad565b602082019050919050565b60006020820190508181036000830152614e1281614dd6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e75603683613de2565b9150614e8082614e19565b604082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b6000614eb682613eec565b9150614ec183613eec565b9250828203905081811115614ed957614ed8614342565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f3b602683613de2565b9150614f4682614edf565b604082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b600081905092915050565b50565b6000614f8c600083614f71565b9150614f9782614f7c565b600082019050919050565b6000614fad82614f7f565b9150819050919050565b6000606082019050614fcc600083018661403f565b614fd9602083018561403f565b614fe6604083018461403f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061505b81613ec0565b92915050565b60006020828403121561507757615076613e89565b5b60006150858482850161504c565b91505092915050565b6000819050919050565b60006150b36150ae6150a98461508e565b613fc5565b613eec565b9050919050565b6150c381615098565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150fe81613eae565b82525050565b600061511083836150f5565b60208301905092915050565b6000602082019050919050565b6000615134826150c9565b61513e81856150d4565b9350615149836150e5565b8060005b8381101561517a5781516151618882615104565b975061516c8361511c565b92505060018101905061514d565b5085935050505092915050565b600060a08201905061519c600083018861403f565b6151a960208301876150ba565b81810360408301526151bb8186615129565b90506151ca60608301856140e9565b6151d7608083018461403f565b9695505050505050565b600060c0820190506151f660008301896140e9565b615203602083018861403f565b61521060408301876150ba565b61521d60608301866150ba565b61522a60808301856140e9565b61523760a083018461403f565b979650505050505050565b60008151905061525181613ef6565b92915050565b6000806000606084860312156152705761526f613e89565b5b600061527e86828701615242565b935050602061528f86828701615242565b92505060406152a086828701615242565b915050925092509256fea26469706673582212200aa9c69a09da5c31571a79fd0df76b106fa2305dd2450d8540cc58df03f50db464736f6c63430008110033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c99190613e67565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613f22565b610ed5565b6040516104069190613f7d565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613f98565b610ef3565b6040516104439190613f7d565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e9190614024565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b604051610499919061404e565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f98565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed919061404e565b60405180910390f35b34801561050257600080fd5b5061050b611082565b604051610518919061404e565b60405180910390f35b34801561052d57600080fd5b50610536611088565b604051610543919061404e565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e919061404e565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614069565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c29190614096565b6111a3565b6040516105d49190613f7d565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906140f8565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a919061404e565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190613f7d565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b604051610680919061412f565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190613f22565b6112c3565b6040516106bd9190613f7d565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906140f8565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190613f7d565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613f98565b6113a6565b6040516107509190613f7d565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b919061404e565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190613f7d565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f98565b611415565b6040516107e3919061404e565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190613f7d565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190614176565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906140f8565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a4919061404e565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf91906141b6565b611688565b005b3480156108e257600080fd5b506108eb611786565b005b3480156108f957600080fd5b50610902611841565b60405161090f91906140f8565b60405180910390f35b34801561092457600080fd5b5061092d61186b565b60405161093a91906140f8565b60405180910390f35b34801561094f57600080fd5b50610958611891565b604051610965919061404e565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190614209565b611897565b005b3480156109a357600080fd5b506109ac611930565b6040516109b99190613e67565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190614176565b6119c2565b005b3480156109f757600080fd5b50610a00611ada565b604051610a0d919061404e565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae0565b604051610a38919061404e565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae6565b604051610a63919061404e565b60405180910390f35b348015610a7857600080fd5b50610a81611aec565b604051610a8e919061404e565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613f22565b611af2565b604051610acb9190613f7d565b60405180910390f35b348015610ae057600080fd5b50610ae9611bdd565b604051610af6919061404e565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613f22565b611be3565b604051610b339190613f7d565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e9190613f98565b611c01565b005b348015610b7157600080fd5b50610b8c6004803603810190610b879190613f98565b611d3d565b604051610b999190613f7d565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5d565b604051610bc49190613f7d565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190614176565b611d70565b005b348015610c0257600080fd5b50610c1d6004803603810190610c1891906141b6565b611e95565b005b348015610c2b57600080fd5b50610c466004803603810190610c419190614069565b611f94565b005b348015610c5457600080fd5b50610c5d6120a3565b604051610c6a9190613f7d565b60405180910390f35b348015610c7f57600080fd5b50610c886120b6565b604051610c95919061404e565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc09190614069565b6120bc565b604051610cd29190613f7d565b60405180910390f35b348015610ce757600080fd5b50610cf0612211565b604051610cfd919061404e565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d289190614236565b612217565b604051610d3a919061404e565b60405180910390f35b348015610d4f57600080fd5b50610d5861229e565b604051610d65919061404e565b60405180910390f35b348015610d7a57600080fd5b50610d836122a4565b604051610d909190613f7d565b60405180910390f35b348015610da557600080fd5b50610dae612344565b604051610dbb919061404e565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de69190613f98565b61234a565b005b348015610df957600080fd5b50610e02612441565b604051610e0f919061404e565b60405180910390f35b348015610e2457600080fd5b50610e2d612447565b604051610e3a919061404e565b60405180910390f35b606060038054610e52906142a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e906142a5565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244d565b8484612455565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f4861244d565b73ffffffffffffffffffffffffffffffffffffffff16610f66611841565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390614322565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244d565b73ffffffffffffffffffffffffffffffffffffffff166110ba611841565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790614322565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614371565b61113a91906143e2565b61114491906143e2565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90614485565b60405180910390fd5b670de0b6b3a76400008161119a9190614371565b60088190555050565b60006111b084848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614517565b60405180910390fd5b61128f8561128761244d565b858403612455565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244d565b8484600160006112de61244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113609190614537565b612455565b6001905092915050565b7f00000000000000000000000051b23d5a07540e69c906d16dd65e9493b3e0fc1f81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244d565b73ffffffffffffffffffffffffffffffffffffffff16611483611841565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090614322565b60405180910390fd5b6114e360006133a5565b565b60006114ef61244d565b73ffffffffffffffffffffffffffffffffffffffff1661150d611841565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614322565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244d565b73ffffffffffffffffffffffffffffffffffffffff166115ab611841565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890614322565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244d565b73ffffffffffffffffffffffffffffffffffffffff166116ae611841565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614322565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c9190614537565b6117369190614537565b601481905550601480541115611781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611778906145b7565b60405180910390fd5b505050565b61178e61244d565b73ffffffffffffffffffffffffffffffffffffffff166117ac611841565b73ffffffffffffffffffffffffffffffffffffffff1614611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990614322565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61189f61244d565b73ffffffffffffffffffffffffffffffffffffffff166118bd611841565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614322565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461193f906142a5565b80601f016020809104026020016040519081016040528092919081815260200182805461196b906142a5565b80156119b85780601f1061198d576101008083540402835291602001916119b8565b820191906000526020600020905b81548152906001019060200180831161199b57829003601f168201915b5050505050905090565b6119ca61244d565b73ffffffffffffffffffffffffffffffffffffffff166119e8611841565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614322565b60405180910390fd5b7f00000000000000000000000051b23d5a07540e69c906d16dd65e9493b3e0fc1f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390614649565b60405180910390fd5b611ad6828261346b565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0161244d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906146db565b60405180910390fd5b611bd2611bc961244d565b85858403612455565b600191505092915050565b600e5481565b6000611bf7611bf061244d565b848461261e565b6001905092915050565b611c0961244d565b73ffffffffffffffffffffffffffffffffffffffff16611c27611841565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490614322565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7861244d565b73ffffffffffffffffffffffffffffffffffffffff16611d96611841565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614322565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e899190613f7d565b60405180910390a25050565b611e9d61244d565b73ffffffffffffffffffffffffffffffffffffffff16611ebb611841565b73ffffffffffffffffffffffffffffffffffffffff1614611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890614322565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f399190614537565b611f439190614537565b60188190555060416018541115611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614747565b60405180910390fd5b505050565b611f9c61244d565b73ffffffffffffffffffffffffffffffffffffffff16611fba611841565b73ffffffffffffffffffffffffffffffffffffffff1614612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790614322565b60405180910390fd5b670de0b6b3a76400006103e86005612026610f36565b6120309190614371565b61203a91906143e2565b61204491906143e2565b811015612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d906147d9565b60405180910390fd5b670de0b6b3a76400008161209a9190614371565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c661244d565b73ffffffffffffffffffffffffffffffffffffffff166120e4611841565b73ffffffffffffffffffffffffffffffffffffffff161461213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614322565b60405180910390fd5b620186a06001612148610f36565b6121529190614371565b61215c91906143e2565b82101561219e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121959061486b565b60405180910390fd5b6103e860056121ab610f36565b6121b59190614371565b6121bf91906143e2565b821115612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f8906148fd565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122ae61244d565b73ffffffffffffffffffffffffffffffffffffffff166122cc611841565b73ffffffffffffffffffffffffffffffffffffffff1614612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990614322565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235261244d565b73ffffffffffffffffffffffffffffffffffffffff16612370611841565b73ffffffffffffffffffffffffffffffffffffffff16146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c9061498f565b60405180910390fd5b61243e816133a5565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614a21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614ab3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612611919061404e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490614b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390614bd7565b60405180910390fd5b60008103612715576127108383600061350c565b6133a0565b601160009054906101000a900460ff1615612dd857612732611841565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a05750612770611841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612813575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282c5750600560149054906101000a900460ff16155b15612dd757601160019054906101000a900460ff1661292657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e65750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c90614c43565b60405180910390fd5b5b601360009054906101000a900460ff1615612aee57612943611841565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129ca57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2257507f00000000000000000000000051b23d5a07540e69c906d16dd65e9493b3e0fc1f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aed5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90614cfb565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b915750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3857600854811115612bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd290614d8d565b60405180910390fd5b600a54612be783611415565b82612bf29190614537565b1115612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90614df9565b60405180910390fd5b612dd6565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdb5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2a57600854811115612d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1c90614e8b565b60405180910390fd5b612dd5565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd457600a54612d8783611415565b82612d929190614537565b1115612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90614df9565b60405180910390fd5b5b5b5b5b5b6000612de330611415565b905060006009548210159050808015612e085750601160029054906101000a900460ff165b8015612e215750600560149054906101000a900460ff16155b8015612e775750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ecd5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f235750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f67576001600560146101000a81548160ff021916908315150217905550612f4b61378b565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fcd5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe55750600c60009054906101000a900460ff165b80156130005750600d54600e54612ffc9190614537565b4210155b80156130565750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b506000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061310d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561311757600090505b6000811561339057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561317a57506000601854115b15613247576131a7606461319960185488613a7290919063ffffffff16565b613a8890919063ffffffff16565b9050601854601a54826131ba9190614371565b6131c491906143e2565b601d60008282546131d59190614537565b92505081905550601854601b54826131ed9190614371565b6131f791906143e2565b601e60008282546132089190614537565b92505081905550601854601954826132209190614371565b61322a91906143e2565b601c600082825461323b9190614537565b9250508190555061336c565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132a257506000601454115b1561336b576132cf60646132c160145488613a7290919063ffffffff16565b613a8890919063ffffffff16565b9050601454601654826132e29190614371565b6132ec91906143e2565b601d60008282546132fd9190614537565b92505081905550601454601754826133159190614371565b61331f91906143e2565b601e60008282546133309190614537565b92505081905550601454601554826133489190614371565b61335291906143e2565b601c60008282546133639190614537565b925050819055505b5b60008111156133815761338087308361350c565b5b808561338d9190614eab565b94505b61339b87878761350c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361357b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357290614b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e190614bd7565b60405180910390fd5b6135f5838383613a9e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561367b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367290614f51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461370e9190614537565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613772919061404e565b60405180910390a3613785848484613aa3565b50505050565b600061379630611415565b90506000601e54601c54601d546137ad9190614537565b6137b79190614537565b90506000808314806137c95750600082145b156137d657505050613a70565b60146009546137e59190614371565b8311156137fe5760146009546137fb9190614371565b92505b6000600283601d54866138119190614371565b61381b91906143e2565b61382591906143e2565b9050600061383c8286613aa890919063ffffffff16565b9050600047905061384c82613abe565b60006138618247613aa890919063ffffffff16565b9050600061388c8761387e601c5485613a7290919063ffffffff16565b613a8890919063ffffffff16565b905060006138b7886138a9601e5486613a7290919063ffffffff16565b613a8890919063ffffffff16565b905060008183856138c89190614eab565b6138d29190614eab565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161393290614fa2565b60006040518083038185875af1925050503d806000811461396f576040519150601f19603f3d011682016040523d82523d6000602084013e613974565b606091505b50508098505060008711801561398a5750600081115b156139d7576139998782613cfb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139ce93929190614fb7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1d90614fa2565b60006040518083038185875af1925050503d8060008114613a5a576040519150601f19603f3d011682016040523d82523d6000602084013e613a5f565b606091505b505080985050505050505050505050505b565b60008183613a809190614371565b905092915050565b60008183613a9691906143e2565b905092915050565b505050565b505050565b60008183613ab69190614eab565b905092915050565b6000600267ffffffffffffffff811115613adb57613ada614fee565b5b604051908082528060200260200182016040528015613b095781602001602082028036833780820191505090505b5090503081600081518110613b2157613b2061501d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190615061565b81600181518110613bfe57613bfd61501d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c63307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612455565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cc5959493929190615187565b600060405180830381600087803b158015613cdf57600080fd5b505af1158015613cf3573d6000803e3d6000fd5b505050505050565b613d26307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612455565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d8d969594939291906151e1565b60606040518083038185885af1158015613dab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613dd09190615257565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e11578082015181840152602081019050613df6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e3982613dd7565b613e438185613de2565b9350613e53818560208601613df3565b613e5c81613e1d565b840191505092915050565b60006020820190508181036000830152613e818184613e2e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613eb982613e8e565b9050919050565b613ec981613eae565b8114613ed457600080fd5b50565b600081359050613ee681613ec0565b92915050565b6000819050919050565b613eff81613eec565b8114613f0a57600080fd5b50565b600081359050613f1c81613ef6565b92915050565b60008060408385031215613f3957613f38613e89565b5b6000613f4785828601613ed7565b9250506020613f5885828601613f0d565b9150509250929050565b60008115159050919050565b613f7781613f62565b82525050565b6000602082019050613f926000830184613f6e565b92915050565b600060208284031215613fae57613fad613e89565b5b6000613fbc84828501613ed7565b91505092915050565b6000819050919050565b6000613fea613fe5613fe084613e8e565b613fc5565b613e8e565b9050919050565b6000613ffc82613fcf565b9050919050565b600061400e82613ff1565b9050919050565b61401e81614003565b82525050565b60006020820190506140396000830184614015565b92915050565b61404881613eec565b82525050565b6000602082019050614063600083018461403f565b92915050565b60006020828403121561407f5761407e613e89565b5b600061408d84828501613f0d565b91505092915050565b6000806000606084860312156140af576140ae613e89565b5b60006140bd86828701613ed7565b93505060206140ce86828701613ed7565b92505060406140df86828701613f0d565b9150509250925092565b6140f281613eae565b82525050565b600060208201905061410d60008301846140e9565b92915050565b600060ff82169050919050565b61412981614113565b82525050565b60006020820190506141446000830184614120565b92915050565b61415381613f62565b811461415e57600080fd5b50565b6000813590506141708161414a565b92915050565b6000806040838503121561418d5761418c613e89565b5b600061419b85828601613ed7565b92505060206141ac85828601614161565b9150509250929050565b6000806000606084860312156141cf576141ce613e89565b5b60006141dd86828701613f0d565b93505060206141ee86828701613f0d565b92505060406141ff86828701613f0d565b9150509250925092565b60006020828403121561421f5761421e613e89565b5b600061422d84828501614161565b91505092915050565b6000806040838503121561424d5761424c613e89565b5b600061425b85828601613ed7565b925050602061426c85828601613ed7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142bd57607f821691505b6020821081036142d0576142cf614276565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430c602083613de2565b9150614317826142d6565b602082019050919050565b6000602082019050818103600083015261433b816142ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437c82613eec565b915061438783613eec565b925082820261439581613eec565b915082820484148315176143ac576143ab614342565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143ed82613eec565b91506143f883613eec565b925082614408576144076143b3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061446f602f83613de2565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614501602883613de2565b915061450c826144a5565b604082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b600061454282613eec565b915061454d83613eec565b925082820190508082111561456557614564614342565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006145a1601d83613de2565b91506145ac8261456b565b602082019050919050565b600060208201905081810360008301526145d081614594565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614633603983613de2565b915061463e826145d7565b604082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146c5602583613de2565b91506146d082614669565b604082019050919050565b600060208201905081810360008301526146f4816146b8565b9050919050565b7f4d757374206b656570206665657320617420363525206f72206c657373000000600082015250565b6000614731601d83613de2565b915061473c826146fb565b602082019050919050565b6000602082019050818103600083015261476081614724565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147c3602483613de2565b91506147ce82614767565b604082019050919050565b600060208201905081810360008301526147f2816147b6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614855603583613de2565b9150614860826147f9565b604082019050919050565b6000602082019050818103600083015261488481614848565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148e7603483613de2565b91506148f28261488b565b604082019050919050565b60006020820190508181036000830152614916816148da565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614979602683613de2565b91506149848261491d565b604082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a0b602483613de2565b9150614a16826149af565b604082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a9d602283613de2565b9150614aa882614a41565b604082019050919050565b60006020820190508181036000830152614acc81614a90565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b2f602583613de2565b9150614b3a82614ad3565b604082019050919050565b60006020820190508181036000830152614b5e81614b22565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bc1602383613de2565b9150614bcc82614b65565b604082019050919050565b60006020820190508181036000830152614bf081614bb4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c2d601683613de2565b9150614c3882614bf7565b602082019050919050565b60006020820190508181036000830152614c5c81614c20565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ce5604983613de2565b9150614cf082614c63565b606082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d77603583613de2565b9150614d8282614d1b565b604082019050919050565b60006020820190508181036000830152614da681614d6a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614de3601383613de2565b9150614dee82614dad565b602082019050919050565b60006020820190508181036000830152614e1281614dd6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e75603683613de2565b9150614e8082614e19565b604082019050919050565b60006020820190508181036000830152614ea481614e68565b9050919050565b6000614eb682613eec565b9150614ec183613eec565b9250828203905081811115614ed957614ed8614342565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f3b602683613de2565b9150614f4682614edf565b604082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b600081905092915050565b50565b6000614f8c600083614f71565b9150614f9782614f7c565b600082019050919050565b6000614fad82614f7f565b9150819050919050565b6000606082019050614fcc600083018661403f565b614fd9602083018561403f565b614fe6604083018461403f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061505b81613ec0565b92915050565b60006020828403121561507757615076613e89565b5b60006150858482850161504c565b91505092915050565b6000819050919050565b60006150b36150ae6150a98461508e565b613fc5565b613eec565b9050919050565b6150c381615098565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150fe81613eae565b82525050565b600061511083836150f5565b60208301905092915050565b6000602082019050919050565b6000615134826150c9565b61513e81856150d4565b9350615149836150e5565b8060005b8381101561517a5781516151618882615104565b975061516c8361511c565b92505060018101905061514d565b5085935050505092915050565b600060a08201905061519c600083018861403f565b6151a960208301876150ba565b81810360408301526151bb8186615129565b90506151ca60608301856140e9565b6151d7608083018461403f565b9695505050505050565b600060c0820190506151f660008301896140e9565b615203602083018861403f565b61521060408301876150ba565b61521d60608301866150ba565b61522a60808301856140e9565b61523760a083018461403f565b979650505050505050565b60008151905061525181613ef6565b92915050565b6000806000606084860312156152705761526f613e89565b5b600061527e86828701615242565b935050602061528f86828701615242565b92505060406152a086828701615242565b915050925092509256fea26469706673582212200aa9c69a09da5c31571a79fd0df76b106fa2305dd2450d8540cc58df03f50db464736f6c63430008110033

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.