ETH Price: $2,503.83 (-3.27%)

Token

Corn (CORN)
 

Overview

Max Total Supply

1,000,000,000 CORN

Holders

487

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,810,595.003945043689250552 CORN

Value
$0.00
0x96CFB27C106c360692086a7Ba82ed71391a10b66
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:
CORN

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

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



  Corn ($CORN)
  Telegram: https://t.me/CornTokenETH
  X: https://x.com/corn_token
  Web: https://corntoken.wtf


*/


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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

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

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

// 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.10; */
/* 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.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* 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 CORN is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    mapping (address => bool) private _blacklist;

    bool private swapping;

    address public taxWallet;
    address private marketingWallet;

    uint256 public swapTokensAtAmount;

    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 maxTransactionAmount;
    uint256 public maxWallet;

    uint256 public buyTotalFees;
    uint256 public buyTaxFee;
    uint256 public buyLiquidityFee;

    uint256 public earlyBuyTotalFees;
    uint256 public earlyBuyTaxFee;
    uint256 public earlyBuyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTaxFee;
    uint256 public sellLiquidityFee;

    uint256 public earlySellTotalFees;
    uint256 public earlySellTaxFee;
    uint256 public earlySellLiquidityFee;

    uint256 public tokensForTax;
    uint256 public tokensForLiquidity;

    uint256 private sellCount = 0;
    uint256 private lastSellBlock = 0;
    uint256 private firstBlock = 0;
    uint256 public tTotal;

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

    // 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 taxWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Corn", "CORN") {
        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 _buyTaxFee = 3;
        uint256 _buyLiquidityFee = 1;
        
        uint256 _earlyBuyTaxFee = 19;
        uint256 _earlyBuyLiquidityFee = 1;

        uint256 _sellTaxFee = 3;
        uint256 _sellLiquidityFee = 1;

        uint256 _earlySellTaxFee = 19;
        uint256 _earlySellLiquidityFee = 1;

        uint256 totalSupply = 1_000_000_000 * 1e18;
        tTotal = totalSupply;

        maxTransactionAmount = totalSupply / 100;
        maxWallet = totalSupply / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyTaxFee = _buyTaxFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTaxFee + buyLiquidityFee;

        sellTaxFee = _sellTaxFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellTaxFee + sellLiquidityFee;

        earlyBuyTaxFee = _earlyBuyTaxFee;
        earlyBuyLiquidityFee = _earlyBuyLiquidityFee;
        earlyBuyTotalFees = earlyBuyTaxFee + earlyBuyLiquidityFee;

        earlySellTaxFee = _earlySellTaxFee;
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellTotalFees = earlySellTaxFee + earlySellLiquidityFee;

        taxWallet = address(0x2e68DA4184c58A43816f906d74074F1AA187690b); // set as tax wallet
        marketingWallet = address(0x71C8d4735a36f4C76f1341e3d55253baC0C06829); // set as marketing wallet

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

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

        _mint(owner(), totalSupply * 45 / 100);
        _mint(marketingWallet, totalSupply * 55 / 100);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner() {
        require(!tradingActive, "trading already enabled");
        _approve(address(this), address(uniswapV2Router), tTotal);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        tradingActive = true;
        swapEnabled = true;
        firstBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
    }


    // 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 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 _taxFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyTaxFee = _taxFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTaxFee + buyLiquidityFee;
    }

    function updateSellFees(
        uint256 _taxFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellTaxFee = _taxFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTaxFee + sellLiquidityFee;
    }

    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 updateTaxWallet(address newtaxWallet)
        external
        onlyOwner
    {
        emit taxWalletUpdated(newtaxWallet, taxWallet);
        taxWallet = newtaxWallet;
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[from] && !_blacklist[to], "You are a bot");

        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;
                    }
                }
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            if (block.number <= firstBlock + 10) { // Early Snipers
                if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                    fees = amount.mul(earlySellTotalFees).div(100);
                    tokensForLiquidity += (fees * earlySellLiquidityFee) / earlySellTotalFees;
                    tokensForTax += (fees * earlySellTaxFee) / earlySellTotalFees;
                    if (block.number>lastSellBlock) {
                        sellCount = 0;
                    }
                    require(sellCount < 3, "Only 3 sells per block!");
                    sellCount++;
                    lastSellBlock = block.number;
                }
            // on buy
                else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount.mul(earlyBuyTotalFees).div(100);
                    tokensForLiquidity += (fees * earlyBuyLiquidityFee) / earlyBuyTotalFees;
                    tokensForTax += (fees * earlyBuyTaxFee) / earlyBuyTotalFees;
                } 
            }
            else {
                // on sell
                if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                    tokensForTax += (fees * sellTaxFee) / sellTotalFees;
                    if (block.number>lastSellBlock) {
                        sellCount = 0;
                    }
                    require(sellCount < 3, "Only 3 sells per block!");
                    sellCount++;
                    lastSellBlock = block.number;
                }
                // on buy
                else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                    tokensForTax += (fees * buyTaxFee) / buyTotalFees;
                }
            }

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

            amount -= fees;
        }

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

    function addBL(address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function multiBL(address[] memory multiblacklist_) public onlyOwner {
        for (uint256 i = 0; i < multiblacklist_.length; i++) {
            _blacklist[multiblacklist_[i]] = true;
        }
    }

    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
            taxWallet,
            block.timestamp
        );
    }

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

        uint256 ethForLiquidity = ethBalance - ethForTax;

        tokensForLiquidity = 0;
        tokensForTax = 0;

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

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

    function manualSend() external {
        require(_msgSender() == taxWallet);
        uint256 ethBalance= address(this).balance;
        require(ethBalance > 0, "Contract balance must be greater than zero");
        bool success;
         (success, ) = address(taxWallet).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":"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":"taxWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"addBL","outputs":[],"stateMutability":"nonpayable","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":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxFee","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyBuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyBuyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"multiblacklist_","type":"address[]"}],"name":"multiBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxFee","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":"tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","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":"_taxFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtaxWallet","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055506001600c5f6101000a81548160ff0219169083151502179055505f601d555f601e555f601f55348015610083575f80fd5b506040518060400160405280600481526020017f436f726e000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f524e0000000000000000000000000000000000000000000000000000000081525081600390816100ff9190610e15565b50806004908161010f9190610e15565b50505061012e6101236106d060201b60201c565b6106d760201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905061015781600161079a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101f89190610f42565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561025d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102819190610f42565b6040518363ffffffff1660e01b815260040161029e929190610f7c565b6020604051808303815f875af11580156102ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102de9190610f42565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061032460a051600161079a60201b60201c565b61033760a051600161087a60201b60201c565b5f600390505f600190505f601390505f600190505f600390505f600190505f601390505f600190505f6b033b2e3c9fd0803ce80000009050806020819055506064816103839190610ffd565b600d819055506064816103969190610ffd565b600e819055506127106005826103ac919061102d565b6103b69190610ffd565b60098190555088601081905550876011819055506011546010546103da919061106e565b600f8190555084601681905550836017819055506017546016546103fe919061106e565b6015819055508660138190555085601481905550601454601354610422919061106e565b6012819055508260198190555081601a81905550601a54601954610446919061106e565b601881905550732e68da4184c58a43816f906d74074f1aa187690b600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507371c8d4735a36f4c76f1341e3d55253bac0c0682960085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061051361050661091860201b60201c565b600161094060201b60201c565b61052430600161094060201b60201c565b61053761dead600161094060201b60201c565b61056a600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161094060201b60201c565b61059c60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161094060201b60201c565b6105ba6105ad61091860201b60201c565b600161079a60201b60201c565b6105cb30600161079a60201b60201c565b6105de61dead600161079a60201b60201c565b610611600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161079a60201b60201c565b61064360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161079a60201b60201c565b61067861065461091860201b60201c565b6064602d84610663919061102d565b61066d9190610ffd565b610a6e60201b60201c565b6106c160085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646037846106ac919061102d565b6106b69190610ffd565b610a6e60201b60201c565b505050505050505050506111dc565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6107a86106d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166107cc61091860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610819906110fb565b60405180910390fd5b8060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060235f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61094e6106d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661097261091860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906110fb565b60405180910390fd5b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610a629190611133565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390611196565b60405180910390fd5b610aed5f8383610bd160201b60201c565b8060025f828254610afe919061106e565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b50919061106e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb491906111c3565b60405180910390a3610bcd5f8383610bd660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610c5657607f821691505b602082108103610c6957610c68610c12565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610ccb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610c90565b610cd58683610c90565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610d19610d14610d0f84610ced565b610cf6565b610ced565b9050919050565b5f819050919050565b610d3283610cff565b610d46610d3e82610d20565b848454610c9c565b825550505050565b5f90565b610d5a610d4e565b610d65818484610d29565b505050565b5b81811015610d8857610d7d5f82610d52565b600181019050610d6b565b5050565b601f821115610dcd57610d9e81610c6f565b610da784610c81565b81016020851015610db6578190505b610dca610dc285610c81565b830182610d6a565b50505b505050565b5f82821c905092915050565b5f610ded5f1984600802610dd2565b1980831691505092915050565b5f610e058383610dde565b9150826002028217905092915050565b610e1e82610bdb565b67ffffffffffffffff811115610e3757610e36610be5565b5b610e418254610c3f565b610e4c828285610d8c565b5f60209050601f831160018114610e7d575f8415610e6b578287015190505b610e758582610dfa565b865550610edc565b601f198416610e8b86610c6f565b5f5b82811015610eb257848901518255600182019150602085019450602081019050610e8d565b86831015610ecf5784890151610ecb601f891682610dde565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1182610ee8565b9050919050565b610f2181610f07565b8114610f2b575f80fd5b50565b5f81519050610f3c81610f18565b92915050565b5f60208284031215610f5757610f56610ee4565b5b5f610f6484828501610f2e565b91505092915050565b610f7681610f07565b82525050565b5f604082019050610f8f5f830185610f6d565b610f9c6020830184610f6d565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100782610ced565b915061101283610ced565b92508261102257611021610fa3565b5b828204905092915050565b5f61103782610ced565b915061104283610ced565b925082820261105081610ced565b9150828204841483151761106757611066610fd0565b5b5092915050565b5f61107882610ced565b915061108383610ced565b925082820190508082111561109b5761109a610fd0565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6110e56020836110a1565b91506110f0826110b1565b602082019050919050565b5f6020820190508181035f830152611112816110d9565b9050919050565b5f8115159050919050565b61112d81611119565b82525050565b5f6020820190506111465f830184611124565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611180601f836110a1565b915061118b8261114c565b602082019050919050565b5f6020820190508181035f8301526111ad81611174565b9050919050565b6111bd81610ced565b82525050565b5f6020820190506111d65f8301846111b4565b92915050565b60805160a0516154fc6112515f395f81816111d70152818161185d01528181611c5b0152612a7901525f8181610fcb0152818161177d015281816117a60152818161189901528181612a2101528181613c5401528181613d3301528181613d5a01528181613df00152613e1701526154fc5ff3fe608060405260043610610379575f3560e01c80637571336a116101d0578063c024666811610101578063e2f456051161009f578063f42938901161006e578063f429389014610cc0578063f637434214610cd6578063f8a25a9414610d00578063f8b45b0514610d2a57610380565b8063e2f4560514610c1a578063e884f26014610c44578063f11a24d314610c6e578063f2fde38b14610c9857610380565b8063d257b34f116100db578063d257b34f14610b4e578063d7d4024714610b8a578063d85ba06314610bb4578063dd62ed3e14610bde57610380565b8063c024666814610ad2578063c876d0b914610afa578063c8c8ebe414610b2457610380565b8063941fa5cd1161016e578063a457c2d711610148578063a457c2d7146109f4578063a9059cbb14610a30578063b62496f514610a6c578063bbc0c74214610aa857610380565b8063941fa5cd1461097857806395d89b41146109a25780639a7a23d6146109cc57610380565b80638cddacbd116101aa5780638cddacbd146108d45780638da5cb5b146108fe57806390a0bb3514610928578063924de9b71461095057610380565b80637571336a1461086c57806384386626146108945780638a8c523c146108be57610380565b806339509351116102aa5780636a486a8e1161024857806370a082311161022257806370a08231146107c8578063715018a61461080457806374c9f6031461081a578063751039fc1461084257610380565b80636a486a8e1461074a5780636d7adcad146107745780636ddd17131461079e57610380565b80634fbee193116102845780634fbee19314610692578063541a43cf146106ce5780635e69c7f7146106f857806366ca9b831461072257610380565b8063395093511461060257806349bd5a5e1461063e5780634a62bb651461066857610380565b80631a8145bb1161031757806327c8f835116102f157806327c8f8351461055a5780632be52330146105845780632dc0562d146105ae578063313ce567146105d857610380565b80631a8145bb146104ca5780631e676181146104f457806323b872dd1461051e57610380565b80630f822e80116103535780630f822e801461041257806310d5de531461043a5780631694505e1461047657806318160ddd146104a057610380565b806302dbd8f81461038457806306fdde03146103ac578063095ea7b3146103d657610380565b3661038057005b5f80fd5b34801561038f575f80fd5b506103aa60048036038101906103a59190613f27565b610d54565b005b3480156103b7575f80fd5b506103c0610df8565b6040516103cd9190613fd5565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f7919061404f565b610e88565b60405161040991906140a7565b60405180910390f35b34801561041d575f80fd5b5061043860048036038101906104339190614200565b610ea5565b005b348015610445575f80fd5b50610460600480360381019061045b9190614247565b610fac565b60405161046d91906140a7565b60405180910390f35b348015610481575f80fd5b5061048a610fc9565b60405161049791906142cd565b60405180910390f35b3480156104ab575f80fd5b506104b4610fed565b6040516104c191906142f5565b60405180910390f35b3480156104d5575f80fd5b506104de610ff6565b6040516104eb91906142f5565b60405180910390f35b3480156104ff575f80fd5b50610508610ffc565b60405161051591906142f5565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f919061430e565b611002565b60405161055191906140a7565b60405180910390f35b348015610565575f80fd5b5061056e6110f4565b60405161057b919061436d565b60405180910390f35b34801561058f575f80fd5b506105986110fa565b6040516105a591906142f5565b60405180910390f35b3480156105b9575f80fd5b506105c2611100565b6040516105cf919061436d565b60405180910390f35b3480156105e3575f80fd5b506105ec611126565b6040516105f991906143a1565b60405180910390f35b34801561060d575f80fd5b506106286004803603810190610623919061404f565b61112e565b60405161063591906140a7565b60405180910390f35b348015610649575f80fd5b506106526111d5565b60405161065f919061436d565b60405180910390f35b348015610673575f80fd5b5061067c6111f9565b60405161068991906140a7565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190614247565b61120b565b6040516106c591906140a7565b60405180910390f35b3480156106d9575f80fd5b506106e261125d565b6040516106ef91906142f5565b60405180910390f35b348015610703575f80fd5b5061070c611263565b60405161071991906142f5565b60405180910390f35b34801561072d575f80fd5b5061074860048036038101906107439190613f27565b611269565b005b348015610755575f80fd5b5061075e61130d565b60405161076b91906142f5565b60405180910390f35b34801561077f575f80fd5b50610788611313565b60405161079591906142f5565b60405180910390f35b3480156107a9575f80fd5b506107b2611319565b6040516107bf91906140a7565b60405180910390f35b3480156107d3575f80fd5b506107ee60048036038101906107e99190614247565b61132c565b6040516107fb91906142f5565b60405180910390f35b34801561080f575f80fd5b50610818611371565b005b348015610825575f80fd5b50610840600480360381019061083b9190614247565b6113f8565b005b34801561084d575f80fd5b50610856611534565b60405161086391906140a7565b60405180910390f35b348015610877575f80fd5b50610892600480360381019061088d91906143e4565b6115d1565b005b34801561089f575f80fd5b506108a86116a5565b6040516108b591906142f5565b60405180910390f35b3480156108c9575f80fd5b506108d26116ab565b005b3480156108df575f80fd5b506108e86119ac565b6040516108f591906142f5565b60405180910390f35b348015610909575f80fd5b506109126119b2565b60405161091f919061436d565b60405180910390f35b348015610933575f80fd5b5061094e600480360381019061094991906143e4565b6119da565b005b34801561095b575f80fd5b5061097660048036038101906109719190614422565b611aae565b005b348015610983575f80fd5b5061098c611b47565b60405161099991906142f5565b60405180910390f35b3480156109ad575f80fd5b506109b6611b4d565b6040516109c39190613fd5565b60405180910390f35b3480156109d7575f80fd5b506109f260048036038101906109ed91906143e4565b611bdd565b005b3480156109ff575f80fd5b50610a1a6004803603810190610a15919061404f565b611cf5565b604051610a2791906140a7565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a51919061404f565b611ddb565b604051610a6391906140a7565b60405180910390f35b348015610a77575f80fd5b50610a926004803603810190610a8d9190614247565b611df8565b604051610a9f91906140a7565b60405180910390f35b348015610ab3575f80fd5b50610abc611e15565b604051610ac991906140a7565b60405180910390f35b348015610add575f80fd5b50610af86004803603810190610af391906143e4565b611e28565b005b348015610b05575f80fd5b50610b0e611f4a565b604051610b1b91906140a7565b60405180910390f35b348015610b2f575f80fd5b50610b38611f5c565b604051610b4591906142f5565b60405180910390f35b348015610b59575f80fd5b50610b746004803603810190610b6f919061444d565b611f62565b604051610b8191906140a7565b60405180910390f35b348015610b95575f80fd5b50610b9e6120b6565b604051610bab91906142f5565b60405180910390f35b348015610bbf575f80fd5b50610bc86120bc565b604051610bd591906142f5565b60405180910390f35b348015610be9575f80fd5b50610c046004803603810190610bff9190614478565b6120c2565b604051610c1191906142f5565b60405180910390f35b348015610c25575f80fd5b50610c2e612144565b604051610c3b91906142f5565b60405180910390f35b348015610c4f575f80fd5b50610c5861214a565b604051610c6591906140a7565b60405180910390f35b348015610c79575f80fd5b50610c826121e7565b604051610c8f91906142f5565b60405180910390f35b348015610ca3575f80fd5b50610cbe6004803603810190610cb99190614247565b6121ed565b005b348015610ccb575f80fd5b50610cd46122e3565b005b348015610ce1575f80fd5b50610cea612419565b604051610cf791906142f5565b60405180910390f35b348015610d0b575f80fd5b50610d1461241f565b604051610d2191906142f5565b60405180910390f35b348015610d35575f80fd5b50610d3e612425565b604051610d4b91906142f5565b60405180910390f35b610d5c61242b565b73ffffffffffffffffffffffffffffffffffffffff16610d7a6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614500565b60405180910390fd5b8160168190555080601781905550601754601654610dee919061454b565b6015819055505050565b606060038054610e07906145ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e33906145ab565b8015610e7e5780601f10610e5557610100808354040283529160200191610e7e565b820191905f5260205f20905b815481529060010190602001808311610e6157829003601f168201915b5050505050905090565b5f610e9b610e9461242b565b8484612432565b6001905092915050565b610ead61242b565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890614500565b60405180910390fd5b5f5b8151811015610fa857600160065f848481518110610f4457610f436145db565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f23565b5050565b6022602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b601c5481565b60195481565b5f61100e8484846125f5565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61105561242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90614678565b60405180910390fd5b6110e8856110e061242b565b858403612432565b60019150509392505050565b61dead81565b60135481565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f6111cb61113a61242b565b848460015f61114761242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111c6919061454b565b612432565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b5f60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b601a5481565b60205481565b61127161242b565b73ffffffffffffffffffffffffffffffffffffffff1661128f6119b2565b73ffffffffffffffffffffffffffffffffffffffff16146112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90614500565b60405180910390fd5b8160108190555080601181905550601154601054611303919061454b565b600f819055505050565b60155481565b601b5481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61137961242b565b73ffffffffffffffffffffffffffffffffffffffff166113976119b2565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490614500565b60405180910390fd5b6113f65f61359c565b565b61140061242b565b73ffffffffffffffffffffffffffffffffffffffff1661141e6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90614500565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61153d61242b565b73ffffffffffffffffffffffffffffffffffffffff1661155b6119b2565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614500565b60405180910390fd5b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6115d961242b565b73ffffffffffffffffffffffffffffffffffffffff166115f76119b2565b73ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614500565b60405180910390fd5b8060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60145481565b6116b361242b565b73ffffffffffffffffffffffffffffffffffffffff166116d16119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90614500565b60405180910390fd5b600a60019054906101000a900460ff1615611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906146e0565b60405180910390fd5b6117a4307f0000000000000000000000000000000000000000000000000000000000000000602054612432565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306117eb3061132c565b5f806117f56119b2565b426040518863ffffffff1660e01b815260040161181796959493929190614737565b60606040518083038185885af1158015611833573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061185891906147aa565b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016118f69291906147fa565b6020604051808303815f875af1158015611912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119369190614835565b506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043601f819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b60185481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e261242b565b73ffffffffffffffffffffffffffffffffffffffff16611a006119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614500565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611ab661242b565b73ffffffffffffffffffffffffffffffffffffffff16611ad46119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190614500565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60105481565b606060048054611b5c906145ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611b88906145ab565b8015611bd35780601f10611baa57610100808354040283529160200191611bd3565b820191905f5260205f20905b815481529060010190602001808311611bb657829003601f168201915b5050505050905090565b611be561242b565b73ffffffffffffffffffffffffffffffffffffffff16611c036119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614500565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde906148d0565b60405180910390fd5b611cf1828261365f565b5050565b5f8060015f611d0261242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db39061495e565b60405180910390fd5b611dd0611dc761242b565b85858403612432565b600191505092915050565b5f611dee611de761242b565b84846125f5565b6001905092915050565b6023602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e3061242b565b73ffffffffffffffffffffffffffffffffffffffff16611e4e6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614500565b60405180910390fd5b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f3e91906140a7565b60405180910390a25050565b600c5f9054906101000a900460ff1681565b600d5481565b5f611f6b61242b565b73ffffffffffffffffffffffffffffffffffffffff16611f896119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614500565b60405180910390fd5b620186a06001611fed610fed565b611ff7919061497c565b61200191906149ea565b821015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614a8a565b60405180910390fd5b6103e86005612050610fed565b61205a919061497c565b61206491906149ea565b8211156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614b18565b60405180910390fd5b8160098190555060019050919050565b60125481565b600f5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f61215361242b565b73ffffffffffffffffffffffffffffffffffffffff166121716119b2565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be90614500565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b60115481565b6121f561242b565b73ffffffffffffffffffffffffffffffffffffffff166122136119b2565b73ffffffffffffffffffffffffffffffffffffffff1614612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090614500565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614ba6565b60405180910390fd5b6122e08161359c565b50565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661232461242b565b73ffffffffffffffffffffffffffffffffffffffff1614612343575f80fd5b5f4790505f8111612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614c34565b60405180910390fd5b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516123d090614c7f565b5f6040518083038185875af1925050503d805f811461240a576040519150601f19603f3d011682016040523d82523d5f602084013e61240f565b606091505b5050809150505050565b60175481565b60165481565b600e5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790614d03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d91565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125e891906142f5565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90614e1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890614ead565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561276f575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614f15565b60405180910390fd5b5f81036127c5576127c083835f6136fd565b613597565b600a5f9054906101000a900460ff1615612e6b576127e16119b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561284f575061281f6119b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288757505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128c1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128d9575060075f9054906101000a900460ff16155b15612e6a57600a60019054906101000a900460ff166129cd5760215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061298d575060215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390614f7d565b60405180910390fd5b5b600c5f9054906101000a900460ff1615612b90576129e96119b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a7057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ac857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b8f5743600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4390615031565b60405180910390fd5b43600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60235f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c2d575060225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612cd457600d54811115612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e906150bf565b60405180910390fd5b600e54612c838361132c565b82612c8e919061454b565b1115612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc690615127565b60405180910390fd5b612e69565b60235f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d71575060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dc057600d54811115612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906151b5565b60405180910390fd5b612e68565b60225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612e6757600e54612e1a8361132c565b82612e25919061454b565b1115612e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5d90615127565b60405180910390fd5b5b5b5b5b5b5f612e753061132c565b90505f6009548210159050808015612e995750600a60029054906101000a900460ff165b8015612eb1575060075f9054906101000a900460ff16155b8015612f04575060235f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612f57575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612faa575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612feb57600160075f6101000a81548160ff021916908315150217905550612fd1613972565b5f60075f6101000a81548160ff0219169083151502179055505b5f60075f9054906101000a900460ff1615905060215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613099575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156130a2575f90505b5f811561358757600a601f546130b8919061454b565b43116133135760235f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561311557505f601554115b1561322257613142606461313460185488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601854601a5482613155919061497c565b61315f91906149ea565b601c5f82825461316f919061454b565b9250508190555060185460195482613187919061497c565b61319191906149ea565b601b5f8282546131a1919061454b565b92505081905550601e544311156131ba575f601d819055505b6003601d54106131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f69061521d565b60405180910390fd5b601d5f8154809291906132119061523b565b919050555043601e8190555061330e565b60235f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561327957505f600f54115b1561330d576132a6606461329860125488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601254601454826132b9919061497c565b6132c391906149ea565b601c5f8282546132d3919061454b565b92505081905550601254601354826132eb919061497c565b6132f591906149ea565b601b5f828254613305919061454b565b925050819055505b5b613564565b60235f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561336a57505f601554115b1561347757613397606461338960155488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601554601754826133aa919061497c565b6133b491906149ea565b601c5f8282546133c4919061454b565b92505081905550601554601654826133dc919061497c565b6133e691906149ea565b601b5f8282546133f6919061454b565b92505081905550601e5443111561340f575f601d819055505b6003601d5410613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b9061521d565b60405180910390fd5b601d5f8154809291906134669061523b565b919050555043601e81905550613563565b60235f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134ce57505f600f54115b15613562576134fb60646134ed600f5488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050600f546011548261350e919061497c565b61351891906149ea565b601c5f828254613528919061454b565b92505081905550600f5460105482613540919061497c565b61354a91906149ea565b601b5f82825461355a919061454b565b925050819055505b5b5b5f811115613578576135778730836136fd565b5b80856135849190615282565b94505b6135928787876136fd565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060235f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361376b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376290614e1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d090614ead565b60405180910390fd5b6137e4838383613b98565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615325565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138f5919061454b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161395991906142f5565b60405180910390a361396c848484613b9d565b50505050565b5f61397c3061132c565b90505f601b54601c5461398f919061454b565b90505f8083148061399f57505f82145b156139ac57505050613b6c565b60146009546139bb919061497c565b8311156139d45760146009546139d1919061497c565b92505b5f600283601c54866139e6919061497c565b6139f091906149ea565b6139fa91906149ea565b90505f613a108286613ba290919063ffffffff16565b90505f479050613a1f82613bb7565b5f613a338247613ba290919063ffffffff16565b90505f613a5d87613a4f601b5485613b6e90919063ffffffff16565b613b8390919063ffffffff16565b90505f8183613a6c9190615282565b90505f601c819055505f601b819055505f86118015613a8a57505f81115b15613ad757613a998682613dea565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601c54604051613ace93929190615343565b60405180910390a15b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b1d90614c7f565b5f6040518083038185875af1925050503d805f8114613b57576040519150601f19603f3d011682016040523d82523d5f602084013e613b5c565b606091505b5050809750505050505050505050505b565b5f8183613b7b919061497c565b905092915050565b5f8183613b9091906149ea565b905092915050565b505050565b505050565b5f8183613baf9190615282565b905092915050565b5f600267ffffffffffffffff811115613bd357613bd26140c4565b5b604051908082528060200260200182016040528015613c015781602001602082028036833780820191505090505b50905030815f81518110613c1857613c176145db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cdf919061538c565b81600181518110613cf357613cf26145db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d58307f000000000000000000000000000000000000000000000000000000000000000084612432565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613db995949392919061546e565b5f604051808303815f87803b158015613dd0575f80fd5b505af1158015613de2573d5f803e3d5ffd5b505050505050565b613e15307f000000000000000000000000000000000000000000000000000000000000000084612432565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613e9b96959493929190614737565b60606040518083038185885af1158015613eb7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613edc91906147aa565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b613f0681613ef4565b8114613f10575f80fd5b50565b5f81359050613f2181613efd565b92915050565b5f8060408385031215613f3d57613f3c613eec565b5b5f613f4a85828601613f13565b9250506020613f5b85828601613f13565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613fa782613f65565b613fb18185613f6f565b9350613fc1818560208601613f7f565b613fca81613f8d565b840191505092915050565b5f6020820190508181035f830152613fed8184613f9d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61401e82613ff5565b9050919050565b61402e81614014565b8114614038575f80fd5b50565b5f8135905061404981614025565b92915050565b5f806040838503121561406557614064613eec565b5b5f6140728582860161403b565b925050602061408385828601613f13565b9150509250929050565b5f8115159050919050565b6140a18161408d565b82525050565b5f6020820190506140ba5f830184614098565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6140fa82613f8d565b810181811067ffffffffffffffff82111715614119576141186140c4565b5b80604052505050565b5f61412b613ee3565b905061413782826140f1565b919050565b5f67ffffffffffffffff821115614156576141556140c4565b5b602082029050602081019050919050565b5f80fd5b5f61417d6141788461413c565b614122565b905080838252602082019050602084028301858111156141a05761419f614167565b5b835b818110156141c957806141b5888261403b565b8452602084019350506020810190506141a2565b5050509392505050565b5f82601f8301126141e7576141e66140c0565b5b81356141f784826020860161416b565b91505092915050565b5f6020828403121561421557614214613eec565b5b5f82013567ffffffffffffffff81111561423257614231613ef0565b5b61423e848285016141d3565b91505092915050565b5f6020828403121561425c5761425b613eec565b5b5f6142698482850161403b565b91505092915050565b5f819050919050565b5f61429561429061428b84613ff5565b614272565b613ff5565b9050919050565b5f6142a68261427b565b9050919050565b5f6142b78261429c565b9050919050565b6142c7816142ad565b82525050565b5f6020820190506142e05f8301846142be565b92915050565b6142ef81613ef4565b82525050565b5f6020820190506143085f8301846142e6565b92915050565b5f805f6060848603121561432557614324613eec565b5b5f6143328682870161403b565b93505060206143438682870161403b565b925050604061435486828701613f13565b9150509250925092565b61436781614014565b82525050565b5f6020820190506143805f83018461435e565b92915050565b5f60ff82169050919050565b61439b81614386565b82525050565b5f6020820190506143b45f830184614392565b92915050565b6143c38161408d565b81146143cd575f80fd5b50565b5f813590506143de816143ba565b92915050565b5f80604083850312156143fa576143f9613eec565b5b5f6144078582860161403b565b9250506020614418858286016143d0565b9150509250929050565b5f6020828403121561443757614436613eec565b5b5f614444848285016143d0565b91505092915050565b5f6020828403121561446257614461613eec565b5b5f61446f84828501613f13565b91505092915050565b5f806040838503121561448e5761448d613eec565b5b5f61449b8582860161403b565b92505060206144ac8582860161403b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6144ea602083613f6f565b91506144f5826144b6565b602082019050919050565b5f6020820190508181035f830152614517816144de565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61455582613ef4565b915061456083613ef4565b92508282019050808211156145785761457761451e565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806145c257607f821691505b6020821081036145d5576145d461457e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614662602883613f6f565b915061466d82614608565b604082019050919050565b5f6020820190508181035f83015261468f81614656565b9050919050565b7f74726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f6146ca601783613f6f565b91506146d582614696565b602082019050919050565b5f6020820190508181035f8301526146f7816146be565b9050919050565b5f819050919050565b5f61472161471c614717846146fe565b614272565b613ef4565b9050919050565b61473181614707565b82525050565b5f60c08201905061474a5f83018961435e565b61475760208301886142e6565b6147646040830187614728565b6147716060830186614728565b61477e608083018561435e565b61478b60a08301846142e6565b979650505050505050565b5f815190506147a481613efd565b92915050565b5f805f606084860312156147c1576147c0613eec565b5b5f6147ce86828701614796565b93505060206147df86828701614796565b92505060406147f086828701614796565b9150509250925092565b5f60408201905061480d5f83018561435e565b61481a60208301846142e6565b9392505050565b5f8151905061482f816143ba565b92915050565b5f6020828403121561484a57614849613eec565b5b5f61485784828501614821565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6148ba603983613f6f565b91506148c582614860565b604082019050919050565b5f6020820190508181035f8301526148e7816148ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614948602583613f6f565b9150614953826148ee565b604082019050919050565b5f6020820190508181035f8301526149758161493c565b9050919050565b5f61498682613ef4565b915061499183613ef4565b925082820261499f81613ef4565b915082820484148315176149b6576149b561451e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6149f482613ef4565b91506149ff83613ef4565b925082614a0f57614a0e6149bd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614a74603583613f6f565b9150614a7f82614a1a565b604082019050919050565b5f6020820190508181035f830152614aa181614a68565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614b02603483613f6f565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614b90602683613f6f565b9150614b9b82614b36565b604082019050919050565b5f6020820190508181035f830152614bbd81614b84565b9050919050565b7f436f6e74726163742062616c616e6365206d75737420626520677265617465725f8201527f207468616e207a65726f00000000000000000000000000000000000000000000602082015250565b5f614c1e602a83613f6f565b9150614c2982614bc4565b604082019050919050565b5f6020820190508181035f830152614c4b81614c12565b9050919050565b5f81905092915050565b50565b5f614c6a5f83614c52565b9150614c7582614c5c565b5f82019050919050565b5f614c8982614c5f565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614ced602483613f6f565b9150614cf882614c93565b604082019050919050565b5f6020820190508181035f830152614d1a81614ce1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d7b602283613f6f565b9150614d8682614d21565b604082019050919050565b5f6020820190508181035f830152614da881614d6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e09602583613f6f565b9150614e1482614daf565b604082019050919050565b5f6020820190508181035f830152614e3681614dfd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e97602383613f6f565b9150614ea282614e3d565b604082019050919050565b5f6020820190508181035f830152614ec481614e8b565b9050919050565b7f596f7520617265206120626f74000000000000000000000000000000000000005f82015250565b5f614eff600d83613f6f565b9150614f0a82614ecb565b602082019050919050565b5f6020820190508181035f830152614f2c81614ef3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614f67601683613f6f565b9150614f7282614f33565b602082019050919050565b5f6020820190508181035f830152614f9481614f5b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61501b604983613f6f565b915061502682614f9b565b606082019050919050565b5f6020820190508181035f8301526150488161500f565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6150a9603583613f6f565b91506150b48261504f565b604082019050919050565b5f6020820190508181035f8301526150d68161509d565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615111601383613f6f565b915061511c826150dd565b602082019050919050565b5f6020820190508181035f83015261513e81615105565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61519f603683613f6f565b91506151aa82615145565b604082019050919050565b5f6020820190508181035f8301526151cc81615193565b9050919050565b7f4f6e6c7920332073656c6c732070657220626c6f636b210000000000000000005f82015250565b5f615207601783613f6f565b9150615212826151d3565b602082019050919050565b5f6020820190508181035f830152615234816151fb565b9050919050565b5f61524582613ef4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036152775761527661451e565b5b600182019050919050565b5f61528c82613ef4565b915061529783613ef4565b92508282039050818111156152af576152ae61451e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61530f602683613f6f565b915061531a826152b5565b604082019050919050565b5f6020820190508181035f83015261533c81615303565b9050919050565b5f6060820190506153565f8301866142e6565b61536360208301856142e6565b61537060408301846142e6565b949350505050565b5f8151905061538681614025565b92915050565b5f602082840312156153a1576153a0613eec565b5b5f6153ae84828501615378565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6153e981614014565b82525050565b5f6153fa83836153e0565b60208301905092915050565b5f602082019050919050565b5f61541c826153b7565b61542681856153c1565b9350615431836153d1565b805f5b8381101561546157815161544888826153ef565b975061545383615406565b925050600181019050615434565b5085935050505092915050565b5f60a0820190506154815f8301886142e6565b61548e6020830187614728565b81810360408301526154a08186615412565b90506154af606083018561435e565b6154bc60808301846142e6565b969550505050505056fea2646970667358221220db2103886bbb46a4ce62d94e0280571023013298b61d1b711e5eb914f91558af64736f6c634300081a0033

Deployed Bytecode

0x608060405260043610610379575f3560e01c80637571336a116101d0578063c024666811610101578063e2f456051161009f578063f42938901161006e578063f429389014610cc0578063f637434214610cd6578063f8a25a9414610d00578063f8b45b0514610d2a57610380565b8063e2f4560514610c1a578063e884f26014610c44578063f11a24d314610c6e578063f2fde38b14610c9857610380565b8063d257b34f116100db578063d257b34f14610b4e578063d7d4024714610b8a578063d85ba06314610bb4578063dd62ed3e14610bde57610380565b8063c024666814610ad2578063c876d0b914610afa578063c8c8ebe414610b2457610380565b8063941fa5cd1161016e578063a457c2d711610148578063a457c2d7146109f4578063a9059cbb14610a30578063b62496f514610a6c578063bbc0c74214610aa857610380565b8063941fa5cd1461097857806395d89b41146109a25780639a7a23d6146109cc57610380565b80638cddacbd116101aa5780638cddacbd146108d45780638da5cb5b146108fe57806390a0bb3514610928578063924de9b71461095057610380565b80637571336a1461086c57806384386626146108945780638a8c523c146108be57610380565b806339509351116102aa5780636a486a8e1161024857806370a082311161022257806370a08231146107c8578063715018a61461080457806374c9f6031461081a578063751039fc1461084257610380565b80636a486a8e1461074a5780636d7adcad146107745780636ddd17131461079e57610380565b80634fbee193116102845780634fbee19314610692578063541a43cf146106ce5780635e69c7f7146106f857806366ca9b831461072257610380565b8063395093511461060257806349bd5a5e1461063e5780634a62bb651461066857610380565b80631a8145bb1161031757806327c8f835116102f157806327c8f8351461055a5780632be52330146105845780632dc0562d146105ae578063313ce567146105d857610380565b80631a8145bb146104ca5780631e676181146104f457806323b872dd1461051e57610380565b80630f822e80116103535780630f822e801461041257806310d5de531461043a5780631694505e1461047657806318160ddd146104a057610380565b806302dbd8f81461038457806306fdde03146103ac578063095ea7b3146103d657610380565b3661038057005b5f80fd5b34801561038f575f80fd5b506103aa60048036038101906103a59190613f27565b610d54565b005b3480156103b7575f80fd5b506103c0610df8565b6040516103cd9190613fd5565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f7919061404f565b610e88565b60405161040991906140a7565b60405180910390f35b34801561041d575f80fd5b5061043860048036038101906104339190614200565b610ea5565b005b348015610445575f80fd5b50610460600480360381019061045b9190614247565b610fac565b60405161046d91906140a7565b60405180910390f35b348015610481575f80fd5b5061048a610fc9565b60405161049791906142cd565b60405180910390f35b3480156104ab575f80fd5b506104b4610fed565b6040516104c191906142f5565b60405180910390f35b3480156104d5575f80fd5b506104de610ff6565b6040516104eb91906142f5565b60405180910390f35b3480156104ff575f80fd5b50610508610ffc565b60405161051591906142f5565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f919061430e565b611002565b60405161055191906140a7565b60405180910390f35b348015610565575f80fd5b5061056e6110f4565b60405161057b919061436d565b60405180910390f35b34801561058f575f80fd5b506105986110fa565b6040516105a591906142f5565b60405180910390f35b3480156105b9575f80fd5b506105c2611100565b6040516105cf919061436d565b60405180910390f35b3480156105e3575f80fd5b506105ec611126565b6040516105f991906143a1565b60405180910390f35b34801561060d575f80fd5b506106286004803603810190610623919061404f565b61112e565b60405161063591906140a7565b60405180910390f35b348015610649575f80fd5b506106526111d5565b60405161065f919061436d565b60405180910390f35b348015610673575f80fd5b5061067c6111f9565b60405161068991906140a7565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190614247565b61120b565b6040516106c591906140a7565b60405180910390f35b3480156106d9575f80fd5b506106e261125d565b6040516106ef91906142f5565b60405180910390f35b348015610703575f80fd5b5061070c611263565b60405161071991906142f5565b60405180910390f35b34801561072d575f80fd5b5061074860048036038101906107439190613f27565b611269565b005b348015610755575f80fd5b5061075e61130d565b60405161076b91906142f5565b60405180910390f35b34801561077f575f80fd5b50610788611313565b60405161079591906142f5565b60405180910390f35b3480156107a9575f80fd5b506107b2611319565b6040516107bf91906140a7565b60405180910390f35b3480156107d3575f80fd5b506107ee60048036038101906107e99190614247565b61132c565b6040516107fb91906142f5565b60405180910390f35b34801561080f575f80fd5b50610818611371565b005b348015610825575f80fd5b50610840600480360381019061083b9190614247565b6113f8565b005b34801561084d575f80fd5b50610856611534565b60405161086391906140a7565b60405180910390f35b348015610877575f80fd5b50610892600480360381019061088d91906143e4565b6115d1565b005b34801561089f575f80fd5b506108a86116a5565b6040516108b591906142f5565b60405180910390f35b3480156108c9575f80fd5b506108d26116ab565b005b3480156108df575f80fd5b506108e86119ac565b6040516108f591906142f5565b60405180910390f35b348015610909575f80fd5b506109126119b2565b60405161091f919061436d565b60405180910390f35b348015610933575f80fd5b5061094e600480360381019061094991906143e4565b6119da565b005b34801561095b575f80fd5b5061097660048036038101906109719190614422565b611aae565b005b348015610983575f80fd5b5061098c611b47565b60405161099991906142f5565b60405180910390f35b3480156109ad575f80fd5b506109b6611b4d565b6040516109c39190613fd5565b60405180910390f35b3480156109d7575f80fd5b506109f260048036038101906109ed91906143e4565b611bdd565b005b3480156109ff575f80fd5b50610a1a6004803603810190610a15919061404f565b611cf5565b604051610a2791906140a7565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a51919061404f565b611ddb565b604051610a6391906140a7565b60405180910390f35b348015610a77575f80fd5b50610a926004803603810190610a8d9190614247565b611df8565b604051610a9f91906140a7565b60405180910390f35b348015610ab3575f80fd5b50610abc611e15565b604051610ac991906140a7565b60405180910390f35b348015610add575f80fd5b50610af86004803603810190610af391906143e4565b611e28565b005b348015610b05575f80fd5b50610b0e611f4a565b604051610b1b91906140a7565b60405180910390f35b348015610b2f575f80fd5b50610b38611f5c565b604051610b4591906142f5565b60405180910390f35b348015610b59575f80fd5b50610b746004803603810190610b6f919061444d565b611f62565b604051610b8191906140a7565b60405180910390f35b348015610b95575f80fd5b50610b9e6120b6565b604051610bab91906142f5565b60405180910390f35b348015610bbf575f80fd5b50610bc86120bc565b604051610bd591906142f5565b60405180910390f35b348015610be9575f80fd5b50610c046004803603810190610bff9190614478565b6120c2565b604051610c1191906142f5565b60405180910390f35b348015610c25575f80fd5b50610c2e612144565b604051610c3b91906142f5565b60405180910390f35b348015610c4f575f80fd5b50610c5861214a565b604051610c6591906140a7565b60405180910390f35b348015610c79575f80fd5b50610c826121e7565b604051610c8f91906142f5565b60405180910390f35b348015610ca3575f80fd5b50610cbe6004803603810190610cb99190614247565b6121ed565b005b348015610ccb575f80fd5b50610cd46122e3565b005b348015610ce1575f80fd5b50610cea612419565b604051610cf791906142f5565b60405180910390f35b348015610d0b575f80fd5b50610d1461241f565b604051610d2191906142f5565b60405180910390f35b348015610d35575f80fd5b50610d3e612425565b604051610d4b91906142f5565b60405180910390f35b610d5c61242b565b73ffffffffffffffffffffffffffffffffffffffff16610d7a6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614500565b60405180910390fd5b8160168190555080601781905550601754601654610dee919061454b565b6015819055505050565b606060038054610e07906145ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e33906145ab565b8015610e7e5780601f10610e5557610100808354040283529160200191610e7e565b820191905f5260205f20905b815481529060010190602001808311610e6157829003601f168201915b5050505050905090565b5f610e9b610e9461242b565b8484612432565b6001905092915050565b610ead61242b565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890614500565b60405180910390fd5b5f5b8151811015610fa857600160065f848481518110610f4457610f436145db565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f23565b5050565b6022602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b601c5481565b60195481565b5f61100e8484846125f5565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61105561242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90614678565b60405180910390fd5b6110e8856110e061242b565b858403612432565b60019150509392505050565b61dead81565b60135481565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f6111cb61113a61242b565b848460015f61114761242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111c6919061454b565b612432565b6001905092915050565b7f0000000000000000000000006220add83b8103bffe40218e658068288eda4ec181565b600a5f9054906101000a900460ff1681565b5f60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b601a5481565b60205481565b61127161242b565b73ffffffffffffffffffffffffffffffffffffffff1661128f6119b2565b73ffffffffffffffffffffffffffffffffffffffff16146112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90614500565b60405180910390fd5b8160108190555080601181905550601154601054611303919061454b565b600f819055505050565b60155481565b601b5481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61137961242b565b73ffffffffffffffffffffffffffffffffffffffff166113976119b2565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490614500565b60405180910390fd5b6113f65f61359c565b565b61140061242b565b73ffffffffffffffffffffffffffffffffffffffff1661141e6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90614500565b60405180910390fd5b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c460405160405180910390a380600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61153d61242b565b73ffffffffffffffffffffffffffffffffffffffff1661155b6119b2565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890614500565b60405180910390fd5b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6115d961242b565b73ffffffffffffffffffffffffffffffffffffffff166115f76119b2565b73ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614500565b60405180910390fd5b8060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60145481565b6116b361242b565b73ffffffffffffffffffffffffffffffffffffffff166116d16119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90614500565b60405180910390fd5b600a60019054906101000a900460ff1615611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e906146e0565b60405180910390fd5b6117a4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d602054612432565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306117eb3061132c565b5f806117f56119b2565b426040518863ffffffff1660e01b815260040161181796959493929190614737565b60606040518083038185885af1158015611833573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061185891906147aa565b5050507f0000000000000000000000006220add83b8103bffe40218e658068288eda4ec173ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016118f69291906147fa565b6020604051808303815f875af1158015611912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119369190614835565b506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043601f819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b60185481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e261242b565b73ffffffffffffffffffffffffffffffffffffffff16611a006119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90614500565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611ab661242b565b73ffffffffffffffffffffffffffffffffffffffff16611ad46119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190614500565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60105481565b606060048054611b5c906145ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611b88906145ab565b8015611bd35780601f10611baa57610100808354040283529160200191611bd3565b820191905f5260205f20905b815481529060010190602001808311611bb657829003601f168201915b5050505050905090565b611be561242b565b73ffffffffffffffffffffffffffffffffffffffff16611c036119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090614500565b60405180910390fd5b7f0000000000000000000000006220add83b8103bffe40218e658068288eda4ec173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde906148d0565b60405180910390fd5b611cf1828261365f565b5050565b5f8060015f611d0261242b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db39061495e565b60405180910390fd5b611dd0611dc761242b565b85858403612432565b600191505092915050565b5f611dee611de761242b565b84846125f5565b6001905092915050565b6023602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e3061242b565b73ffffffffffffffffffffffffffffffffffffffff16611e4e6119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b90614500565b60405180910390fd5b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f3e91906140a7565b60405180910390a25050565b600c5f9054906101000a900460ff1681565b600d5481565b5f611f6b61242b565b73ffffffffffffffffffffffffffffffffffffffff16611f896119b2565b73ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614500565b60405180910390fd5b620186a06001611fed610fed565b611ff7919061497c565b61200191906149ea565b821015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614a8a565b60405180910390fd5b6103e86005612050610fed565b61205a919061497c565b61206491906149ea565b8211156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614b18565b60405180910390fd5b8160098190555060019050919050565b60125481565b600f5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f61215361242b565b73ffffffffffffffffffffffffffffffffffffffff166121716119b2565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be90614500565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b60115481565b6121f561242b565b73ffffffffffffffffffffffffffffffffffffffff166122136119b2565b73ffffffffffffffffffffffffffffffffffffffff1614612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090614500565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614ba6565b60405180910390fd5b6122e08161359c565b50565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661232461242b565b73ffffffffffffffffffffffffffffffffffffffff1614612343575f80fd5b5f4790505f8111612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614c34565b60405180910390fd5b5f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516123d090614c7f565b5f6040518083038185875af1925050503d805f811461240a576040519150601f19603f3d011682016040523d82523d5f602084013e61240f565b606091505b5050809150505050565b60175481565b60165481565b600e5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249790614d03565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614d91565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125e891906142f5565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90614e1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890614ead565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561276f575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590614f15565b60405180910390fd5b5f81036127c5576127c083835f6136fd565b613597565b600a5f9054906101000a900460ff1615612e6b576127e16119b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561284f575061281f6119b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288757505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128c1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128d9575060075f9054906101000a900460ff16155b15612e6a57600a60019054906101000a900460ff166129cd5760215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061298d575060215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390614f7d565b60405180910390fd5b5b600c5f9054906101000a900460ff1615612b90576129e96119b2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a7057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ac857507f0000000000000000000000006220add83b8103bffe40218e658068288eda4ec173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b8f5743600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4390615031565b60405180910390fd5b43600b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60235f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c2d575060225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612cd457600d54811115612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e906150bf565b60405180910390fd5b600e54612c838361132c565b82612c8e919061454b565b1115612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc690615127565b60405180910390fd5b612e69565b60235f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612d71575060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dc057600d54811115612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906151b5565b60405180910390fd5b612e68565b60225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612e6757600e54612e1a8361132c565b82612e25919061454b565b1115612e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5d90615127565b60405180910390fd5b5b5b5b5b5b5f612e753061132c565b90505f6009548210159050808015612e995750600a60029054906101000a900460ff165b8015612eb1575060075f9054906101000a900460ff16155b8015612f04575060235f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612f57575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612faa575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612feb57600160075f6101000a81548160ff021916908315150217905550612fd1613972565b5f60075f6101000a81548160ff0219169083151502179055505b5f60075f9054906101000a900460ff1615905060215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613099575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156130a2575f90505b5f811561358757600a601f546130b8919061454b565b43116133135760235f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561311557505f601554115b1561322257613142606461313460185488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601854601a5482613155919061497c565b61315f91906149ea565b601c5f82825461316f919061454b565b9250508190555060185460195482613187919061497c565b61319191906149ea565b601b5f8282546131a1919061454b565b92505081905550601e544311156131ba575f601d819055505b6003601d54106131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f69061521d565b60405180910390fd5b601d5f8154809291906132119061523b565b919050555043601e8190555061330e565b60235f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561327957505f600f54115b1561330d576132a6606461329860125488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601254601454826132b9919061497c565b6132c391906149ea565b601c5f8282546132d3919061454b565b92505081905550601254601354826132eb919061497c565b6132f591906149ea565b601b5f828254613305919061454b565b925050819055505b5b613564565b60235f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561336a57505f601554115b1561347757613397606461338960155488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050601554601754826133aa919061497c565b6133b491906149ea565b601c5f8282546133c4919061454b565b92505081905550601554601654826133dc919061497c565b6133e691906149ea565b601b5f8282546133f6919061454b565b92505081905550601e5443111561340f575f601d819055505b6003601d5410613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b9061521d565b60405180910390fd5b601d5f8154809291906134669061523b565b919050555043601e81905550613563565b60235f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134ce57505f600f54115b15613562576134fb60646134ed600f5488613b6e90919063ffffffff16565b613b8390919063ffffffff16565b9050600f546011548261350e919061497c565b61351891906149ea565b601c5f828254613528919061454b565b92505081905550600f5460105482613540919061497c565b61354a91906149ea565b601b5f82825461355a919061454b565b925050819055505b5b5b5f811115613578576135778730836136fd565b5b80856135849190615282565b94505b6135928787876136fd565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060235f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361376b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376290614e1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d090614ead565b60405180910390fd5b6137e4838383613b98565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90615325565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138f5919061454b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161395991906142f5565b60405180910390a361396c848484613b9d565b50505050565b5f61397c3061132c565b90505f601b54601c5461398f919061454b565b90505f8083148061399f57505f82145b156139ac57505050613b6c565b60146009546139bb919061497c565b8311156139d45760146009546139d1919061497c565b92505b5f600283601c54866139e6919061497c565b6139f091906149ea565b6139fa91906149ea565b90505f613a108286613ba290919063ffffffff16565b90505f479050613a1f82613bb7565b5f613a338247613ba290919063ffffffff16565b90505f613a5d87613a4f601b5485613b6e90919063ffffffff16565b613b8390919063ffffffff16565b90505f8183613a6c9190615282565b90505f601c819055505f601b819055505f86118015613a8a57505f81115b15613ad757613a998682613dea565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601c54604051613ace93929190615343565b60405180910390a15b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b1d90614c7f565b5f6040518083038185875af1925050503d805f8114613b57576040519150601f19603f3d011682016040523d82523d5f602084013e613b5c565b606091505b5050809750505050505050505050505b565b5f8183613b7b919061497c565b905092915050565b5f8183613b9091906149ea565b905092915050565b505050565b505050565b5f8183613baf9190615282565b905092915050565b5f600267ffffffffffffffff811115613bd357613bd26140c4565b5b604051908082528060200260200182016040528015613c015781602001602082028036833780820191505090505b50905030815f81518110613c1857613c176145db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cdf919061538c565b81600181518110613cf357613cf26145db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d58307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612432565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613db995949392919061546e565b5f604051808303815f87803b158015613dd0575f80fd5b505af1158015613de2573d5f803e3d5ffd5b505050505050565b613e15307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612432565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613e9b96959493929190614737565b60606040518083038185885af1158015613eb7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613edc91906147aa565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b613f0681613ef4565b8114613f10575f80fd5b50565b5f81359050613f2181613efd565b92915050565b5f8060408385031215613f3d57613f3c613eec565b5b5f613f4a85828601613f13565b9250506020613f5b85828601613f13565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613fa782613f65565b613fb18185613f6f565b9350613fc1818560208601613f7f565b613fca81613f8d565b840191505092915050565b5f6020820190508181035f830152613fed8184613f9d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61401e82613ff5565b9050919050565b61402e81614014565b8114614038575f80fd5b50565b5f8135905061404981614025565b92915050565b5f806040838503121561406557614064613eec565b5b5f6140728582860161403b565b925050602061408385828601613f13565b9150509250929050565b5f8115159050919050565b6140a18161408d565b82525050565b5f6020820190506140ba5f830184614098565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6140fa82613f8d565b810181811067ffffffffffffffff82111715614119576141186140c4565b5b80604052505050565b5f61412b613ee3565b905061413782826140f1565b919050565b5f67ffffffffffffffff821115614156576141556140c4565b5b602082029050602081019050919050565b5f80fd5b5f61417d6141788461413c565b614122565b905080838252602082019050602084028301858111156141a05761419f614167565b5b835b818110156141c957806141b5888261403b565b8452602084019350506020810190506141a2565b5050509392505050565b5f82601f8301126141e7576141e66140c0565b5b81356141f784826020860161416b565b91505092915050565b5f6020828403121561421557614214613eec565b5b5f82013567ffffffffffffffff81111561423257614231613ef0565b5b61423e848285016141d3565b91505092915050565b5f6020828403121561425c5761425b613eec565b5b5f6142698482850161403b565b91505092915050565b5f819050919050565b5f61429561429061428b84613ff5565b614272565b613ff5565b9050919050565b5f6142a68261427b565b9050919050565b5f6142b78261429c565b9050919050565b6142c7816142ad565b82525050565b5f6020820190506142e05f8301846142be565b92915050565b6142ef81613ef4565b82525050565b5f6020820190506143085f8301846142e6565b92915050565b5f805f6060848603121561432557614324613eec565b5b5f6143328682870161403b565b93505060206143438682870161403b565b925050604061435486828701613f13565b9150509250925092565b61436781614014565b82525050565b5f6020820190506143805f83018461435e565b92915050565b5f60ff82169050919050565b61439b81614386565b82525050565b5f6020820190506143b45f830184614392565b92915050565b6143c38161408d565b81146143cd575f80fd5b50565b5f813590506143de816143ba565b92915050565b5f80604083850312156143fa576143f9613eec565b5b5f6144078582860161403b565b9250506020614418858286016143d0565b9150509250929050565b5f6020828403121561443757614436613eec565b5b5f614444848285016143d0565b91505092915050565b5f6020828403121561446257614461613eec565b5b5f61446f84828501613f13565b91505092915050565b5f806040838503121561448e5761448d613eec565b5b5f61449b8582860161403b565b92505060206144ac8582860161403b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6144ea602083613f6f565b91506144f5826144b6565b602082019050919050565b5f6020820190508181035f830152614517816144de565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61455582613ef4565b915061456083613ef4565b92508282019050808211156145785761457761451e565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806145c257607f821691505b6020821081036145d5576145d461457e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614662602883613f6f565b915061466d82614608565b604082019050919050565b5f6020820190508181035f83015261468f81614656565b9050919050565b7f74726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f6146ca601783613f6f565b91506146d582614696565b602082019050919050565b5f6020820190508181035f8301526146f7816146be565b9050919050565b5f819050919050565b5f61472161471c614717846146fe565b614272565b613ef4565b9050919050565b61473181614707565b82525050565b5f60c08201905061474a5f83018961435e565b61475760208301886142e6565b6147646040830187614728565b6147716060830186614728565b61477e608083018561435e565b61478b60a08301846142e6565b979650505050505050565b5f815190506147a481613efd565b92915050565b5f805f606084860312156147c1576147c0613eec565b5b5f6147ce86828701614796565b93505060206147df86828701614796565b92505060406147f086828701614796565b9150509250925092565b5f60408201905061480d5f83018561435e565b61481a60208301846142e6565b9392505050565b5f8151905061482f816143ba565b92915050565b5f6020828403121561484a57614849613eec565b5b5f61485784828501614821565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6148ba603983613f6f565b91506148c582614860565b604082019050919050565b5f6020820190508181035f8301526148e7816148ae565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614948602583613f6f565b9150614953826148ee565b604082019050919050565b5f6020820190508181035f8301526149758161493c565b9050919050565b5f61498682613ef4565b915061499183613ef4565b925082820261499f81613ef4565b915082820484148315176149b6576149b561451e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6149f482613ef4565b91506149ff83613ef4565b925082614a0f57614a0e6149bd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614a74603583613f6f565b9150614a7f82614a1a565b604082019050919050565b5f6020820190508181035f830152614aa181614a68565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614b02603483613f6f565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614b90602683613f6f565b9150614b9b82614b36565b604082019050919050565b5f6020820190508181035f830152614bbd81614b84565b9050919050565b7f436f6e74726163742062616c616e6365206d75737420626520677265617465725f8201527f207468616e207a65726f00000000000000000000000000000000000000000000602082015250565b5f614c1e602a83613f6f565b9150614c2982614bc4565b604082019050919050565b5f6020820190508181035f830152614c4b81614c12565b9050919050565b5f81905092915050565b50565b5f614c6a5f83614c52565b9150614c7582614c5c565b5f82019050919050565b5f614c8982614c5f565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614ced602483613f6f565b9150614cf882614c93565b604082019050919050565b5f6020820190508181035f830152614d1a81614ce1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d7b602283613f6f565b9150614d8682614d21565b604082019050919050565b5f6020820190508181035f830152614da881614d6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e09602583613f6f565b9150614e1482614daf565b604082019050919050565b5f6020820190508181035f830152614e3681614dfd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e97602383613f6f565b9150614ea282614e3d565b604082019050919050565b5f6020820190508181035f830152614ec481614e8b565b9050919050565b7f596f7520617265206120626f74000000000000000000000000000000000000005f82015250565b5f614eff600d83613f6f565b9150614f0a82614ecb565b602082019050919050565b5f6020820190508181035f830152614f2c81614ef3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614f67601683613f6f565b9150614f7282614f33565b602082019050919050565b5f6020820190508181035f830152614f9481614f5b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61501b604983613f6f565b915061502682614f9b565b606082019050919050565b5f6020820190508181035f8301526150488161500f565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6150a9603583613f6f565b91506150b48261504f565b604082019050919050565b5f6020820190508181035f8301526150d68161509d565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615111601383613f6f565b915061511c826150dd565b602082019050919050565b5f6020820190508181035f83015261513e81615105565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61519f603683613f6f565b91506151aa82615145565b604082019050919050565b5f6020820190508181035f8301526151cc81615193565b9050919050565b7f4f6e6c7920332073656c6c732070657220626c6f636b210000000000000000005f82015250565b5f615207601783613f6f565b9150615212826151d3565b602082019050919050565b5f6020820190508181035f830152615234816151fb565b9050919050565b5f61524582613ef4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036152775761527661451e565b5b600182019050919050565b5f61528c82613ef4565b915061529783613ef4565b92508282039050818111156152af576152ae61451e565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61530f602683613f6f565b915061531a826152b5565b604082019050919050565b5f6020820190508181035f83015261533c81615303565b9050919050565b5f6060820190506153565f8301866142e6565b61536360208301856142e6565b61537060408301846142e6565b949350505050565b5f8151905061538681614025565b92915050565b5f602082840312156153a1576153a0613eec565b5b5f6153ae84828501615378565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6153e981614014565b82525050565b5f6153fa83836153e0565b60208301905092915050565b5f602082019050919050565b5f61541c826153b7565b61542681856153c1565b9350615431836153d1565b805f5b8381101561546157815161544888826153ef565b975061545383615406565b925050600181019050615434565b5085935050505092915050565b5f60a0820190506154815f8301886142e6565b61548e6020830187614728565b81810360408301526154a08186615412565b90506154af606083018561435e565b6154bc60808301846142e6565b969550505050505056fea2646970667358221220db2103886bbb46a4ce62d94e0280571023013298b61d1b711e5eb914f91558af64736f6c634300081a0033

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.