false
true
0

Contract Address Details

0x6de1bb62c13394B7Db57a25477DBedD76B3e9a90

Token
Pulse Cereal (CEREAL)
Creator
0xf486f9–eb8aa6 at 0xec13b8–aeb95a
Balance
50,000 PLS ( )
Tokens
Fetching tokens...
Transactions
2,156 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25918454
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
LiquidityGeneratorToken




Optimization enabled
true
Compiler version
v0.8.4+commit.c7e474f2




Optimization runs
1000
EVM Version
default




Verified at
2023-07-10T21:29:46.205949Z

Constructor Arguments

0x0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000c3663566a5800000000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc020000000000000000000000007349210dfca6fc8ea21d88fb1c6efb792f4f4a71000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000399b581fe98332283068c7498882aaedce23953c0000000000000000000000000000000000000000000047ff6fdacacbac800000000000000000000000000000000000000000000000000000000000000000000c50756c73652043657265616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643455245414c0000000000000000000000000000000000000000000000000000

Arg [0] (string) : Pulse Cereal
Arg [1] (string) : CEREAL
Arg [2] (uint256) : 55000000000000000
Arg [3] (address) : 0x98bf93ebf5c380c0e6ae8e192a7e2ae08edacc02
Arg [4] (address) : 0x7349210dfca6fc8ea21d88fb1c6efb792f4f4a71
Arg [5] (uint16) : 100
Arg [6] (uint16) : 100
Arg [7] (uint16) : 0
Arg [8] (address) : 0x399b581fe98332283068c7498882aaedce23953c
Arg [9] (uint256) : 340000000000000000000000

              

Contract source code

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

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


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}


// Dependency file: @openzeppelin/contracts/utils/Address.sol


// pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// Dependency file: contracts/interfaces/IUniswapV2Router02.sol

// pragma solidity >=0.6.2;

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

    function WPLS() 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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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


// Dependency file: contracts/interfaces/IUniswapV2Factory.sol

// pragma solidity >=0.5.0;

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


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/liquidity-generator/LiquidityGeneratorToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "contracts/interfaces/IUniswapV2Router02.sol";
// import "contracts/interfaces/IUniswapV2Factory.sol";
// import "contracts/BaseToken.sol";

contract LiquidityGeneratorToken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;
    using Address for address;

    uint256 public immutable uuid = 324387873487287;
    uint256 public constant VERSION = 2;

    uint256 public constant MAX_FEE = 10**4 / 4;

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

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    uint256 public _taxFee;
    uint256 private _previousTaxFee;

    uint256 public _liquidityFee;
    uint256 private _previousLiquidityFee;

    uint256 public _charityFee;
    uint256 private _previousCharityFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public _charityAddress;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled;

    uint256 private numTokensSellToAddToLiquidity;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyAmountUpdated(uint256 amount);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        address router_,
        address charityAddress_,
        uint16 taxFeeBps_,
        uint16 liquidityFeeBps_,
        uint16 charityFeeBps_,
        address serviceFeeReceiver_,
        uint256 serviceFee_
    ) payable {
        if (charityAddress_ == address(0)) {
            require(
                charityFeeBps_ == 0,
                "Cant set both charity address to address 0 and charity percent more than 0"
            );
        }
        require(
            taxFeeBps_ + liquidityFeeBps_ + charityFeeBps_ <= MAX_FEE,
            "Total fee is over 25%"
        );

        _name = name_;
        _symbol = symbol_;
        _decimals = 9;

        _tTotal = totalSupply_;
        _rTotal = (MAX - (MAX % _tTotal));

        _taxFee = taxFeeBps_;
        _previousTaxFee = _taxFee;

        _liquidityFee = liquidityFeeBps_;
        _previousLiquidityFee = _liquidityFee;

        _charityAddress = charityAddress_;
        _charityFee = charityFeeBps_;
        _previousCharityFee = _charityFee;

        numTokensSellToAddToLiquidity = totalSupply_.div(10**3); // 0.1%

        swapAndLiquifyEnabled = true;

        _rOwned[owner()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_);
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WPLS());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), owner(), _tTotal);

        emit TokenCreated(
            owner(),
            address(this),
            TokenType.liquidityGenerator,
            VERSION
        );

        payable(serviceFeeReceiver_).transfer(serviceFee_);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , , , , ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , , , , ) = _getValues(tAmount);
            return rAmount;
        } else {
            (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function setTaxFeePercent(uint256 taxFeeBps) external onlyOwner {
        _taxFee = taxFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setLiquidityFeePercent(uint256 liquidityFeeBps)
        external
        onlyOwner
    {
        _liquidityFee = liquidityFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setCharityFeePercent(uint256 charityFeeBps) external onlyOwner {
        _charityFee = charityFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setSwapBackSettings(uint256 _amount) external onlyOwner {
        require(
            _amount >= totalSupply().mul(5).div(10**4),
            "Swapback amount should be at least 0.05% of total supply"
        );
        numTokensSellToAddToLiquidity = _amount;
        emit SwapAndLiquifyAmountUpdated(_amount);
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tCharity,
            _getRate()
        );
        return (
            rAmount,
            rTransferAmount,
            rFee,
            tTransferAmount,
            tFee,
            tLiquidity,
            tCharity
        );
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tCharityFee = calculateCharityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(
            tCharityFee
        );
        return (tTransferAmount, tFee, tLiquidity, tCharityFee);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tCharity,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rCharity = tCharity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(
            rCharity
        );
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function _takeCharityFee(uint256 tCharity) private {
        if (tCharity > 0) {
            uint256 currentRate = _getRate();
            uint256 rCharity = tCharity.mul(currentRate);
            _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity);
            if (_isExcluded[_charityAddress])
                _tOwned[_charityAddress] = _tOwned[_charityAddress].add(
                    tCharity
                );
            emit Transfer(_msgSender(), _charityAddress, tCharity);
        }
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10**4);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**4);
    }

    function calculateCharityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        if (_charityAddress == address(0)) return 0;
        return _amount.mul(_charityFee).div(10**4);
    }

    function removeAllFee() private {
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousCharityFee = _charityFee;

        _taxFee = 0;
        _liquidityFee = 0;
        _charityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _charityFee = _previousCharityFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

        _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
            address(0xdead),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}
        

Contract ABI

[{"type":"constructor","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"},{"type":"uint256","name":"totalSupply_","internalType":"uint256"},{"type":"address","name":"router_","internalType":"address"},{"type":"address","name":"charityAddress_","internalType":"address"},{"type":"uint16","name":"taxFeeBps_","internalType":"uint16"},{"type":"uint16","name":"liquidityFeeBps_","internalType":"uint16"},{"type":"uint16","name":"charityFeeBps_","internalType":"uint16"},{"type":"address","name":"serviceFeeReceiver_","internalType":"address"},{"type":"uint256","name":"serviceFee_","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_FEE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"VERSION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_charityAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_charityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_liquidityFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_taxFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deliver","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"excludeFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"includeInReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromFee","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isExcludedFromReward","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFromToken","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"},{"type":"bool","name":"deductTransferFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCharityFeePercent","inputs":[{"type":"uint256","name":"charityFeeBps","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setLiquidityFeePercent","inputs":[{"type":"uint256","name":"liquidityFeeBps","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSwapBackSettings","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxFeePercent","inputs":[{"type":"uint256","name":"taxFeeBps","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"swapAndLiquifyEnabled","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFees","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"uniswapV2Pair","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"uniswapV2Router","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"uuid","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"MinTokensBeforeSwapUpdated","inputs":[{"type":"uint256","name":"minTokensBeforeSwap","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":true},{"type":"address","name":"newOwner","indexed":true}],"anonymous":false},{"type":"event","name":"SwapAndLiquify","inputs":[{"type":"uint256","name":"tokensSwapped","indexed":false},{"type":"uint256","name":"ethReceived","indexed":false},{"type":"uint256","name":"tokensIntoLiqudity","indexed":false}],"anonymous":false},{"type":"event","name":"SwapAndLiquifyAmountUpdated","inputs":[{"type":"uint256","name":"amount","indexed":false}],"anonymous":false},{"type":"event","name":"TokenCreated","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"token","indexed":true},{"type":"uint8","name":"tokenType","indexed":false},{"type":"uint256","name":"version","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"receive"}]
              

Contract Creation Code

0x60a0604052660127076ff7f9b76080908152506040516200323d3803806200323d833981016040819052620000349162000772565b6200003f3362000567565b6001600160a01b038616620000df5761ffff831615620000df5760405162461bcd60e51b815260206004820152604a60248201527f43616e742073657420626f74682063686172697479206164647265737320746f60448201527f2061646472657373203020616e6420636861726974792070657263656e74206d60648201526906f7265207468616e20360b41b608482015260a4015b60405180910390fd5b6109c483620000ef86886200088b565b620000fb91906200088b565b61ffff1611156200014f5760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f7665722032352500000000000000000000006044820152606401620000d6565b89516200016490600a9060208d0190620005cc565b5088516200017a90600b9060208c0190620005cc565b50600c805460ff1916600917905560078890556200019b8860001962000922565b620001a990600019620008cb565b60085561ffff858116600d819055600e55848116600f819055601055601580546001600160a01b0319166001600160a01b0389161790558316601181905560125562000204886103e8620005b7602090811b6200141017901c565b6016556015805460ff60a81b1916600160a81b17905560085460016000620002346000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000879050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029757600080fd5b505afa158015620002ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d2919062000755565b6001600160a01b031663c9c6539630836001600160a01b031663ef8ef56f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031b57600080fd5b505afa15801562000330573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000356919062000755565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200039f57600080fd5b505af1158015620003b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003da919062000755565b601480546001600160a01b03199081166001600160a01b039384161790915560138054909116918316919091179055600160046000620004226000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620004756000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620004bd91815260200190565b60405180910390a330620004d96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600280604051620005169291906200085e565b60405180910390a36040516001600160a01b0384169083156108fc029084906000818181858888f1935050505015801562000555573d6000803e3d6000fd5b5050505050505050505050506200097b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620005c58284620008b4565b9392505050565b828054620005da90620008e5565b90600052602060002090601f016020900481019282620005fe576000855562000649565b82601f106200061957805160ff191683800117855562000649565b8280016001018555821562000649579182015b82811115620006495782518255916020019190600101906200062c565b50620006579291506200065b565b5090565b5b808211156200065757600081556001016200065c565b80516001600160a01b03811681146200068a57600080fd5b919050565b600082601f830112620006a0578081fd5b81516001600160401b0380821115620006bd57620006bd62000965565b604051601f8301601f19908116603f01168101908282118183101715620006e857620006e862000965565b8160405283815260209250868385880101111562000704578485fd5b8491505b8382101562000727578582018301518183018401529082019062000708565b838211156200073857848385830101525b9695505050505050565b805161ffff811681146200068a57600080fd5b60006020828403121562000767578081fd5b620005c58262000672565b6000806000806000806000806000806101408b8d03121562000792578586fd5b8a516001600160401b0380821115620007a9578788fd5b620007b78e838f016200068f565b9b5060208d0151915080821115620007cd578788fd5b50620007dc8d828e016200068f565b99505060408b01519750620007f460608c0162000672565b96506200080460808c0162000672565b95506200081460a08c0162000742565b94506200082460c08c0162000742565b93506200083460e08c0162000742565b9250620008456101008c0162000672565b91506101208b015190509295989b9194979a5092959850565b60408101600884106200088157634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600061ffff808316818516808303821115620008ab57620008ab62000939565b01949350505050565b600082620008c657620008c66200094f565b500490565b600082821015620008e057620008e062000939565b500390565b600181811c90821680620008fa57607f821691505b602082108114156200091c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200093457620009346200094f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6080516128a66200099760003960006106b401526128a66000f3fe60806040526004361061026e5760003560e01c80634a74bb02116101535780638ee88c53116100cb578063bb07e85d1161007f578063dd62ed3e11610064578063dd62ed3e146106ec578063f2fde38b14610732578063ffa1ad741461075257600080fd5b8063bb07e85d146106a2578063bc063e1a146106d657600080fd5b8063a457c2d7116100b0578063a457c2d714610642578063a9059cbb14610662578063af41063b1461068257600080fd5b80638ee88c531461060d57806395d89b411461062d57600080fd5b806370a0823111610122578063796431d011610107578063796431d01461059657806388f82020146105b65780638da5cb5b146105ef57600080fd5b806370a0823114610561578063715018a61461058157600080fd5b80634a74bb02146104d157806352390c02146104f25780635342acb4146105125780636bc87c3a1461054b57600080fd5b8063313ce567116101e65780633bd5d173116101b5578063437823ec1161019a578063437823ec146104715780634549b0391461049157806349bd5a5e146104b157600080fd5b80633bd5d1731461043b57806340f8007a1461045b57600080fd5b8063313ce567146103c35780633685d419146103e557806339509351146104055780633b124fe71461042557600080fd5b80631694505e1161023d57806319a8ac9e1161022257806319a8ac9e1461036357806323b872dd146103835780632d838119146103a357600080fd5b80631694505e1461031657806318160ddd1461034e57600080fd5b8063061c82d01461027a57806306fdde031461029c578063095ea7b3146102c757806313114a9d146102f757600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061029a610295366004612604565b610767565b005b3480156102a857600080fd5b506102b161083b565b6040516102be9190612671565b60405180910390f35b3480156102d357600080fd5b506102e76102e23660046125d9565b6108cd565b60405190151581526020016102be565b34801561030357600080fd5b506009545b6040519081526020016102be565b34801561032257600080fd5b50601354610336906001600160a01b031681565b6040516001600160a01b0390911681526020016102be565b34801561035a57600080fd5b50600754610308565b34801561036f57600080fd5b50601554610336906001600160a01b031681565b34801561038f57600080fd5b506102e761039e366004612599565b6108e4565b3480156103af57600080fd5b506103086103be366004612604565b61094d565b3480156103cf57600080fd5b50600c5460405160ff90911681526020016102be565b3480156103f157600080fd5b5061029a610400366004612529565b6109e4565b34801561041157600080fd5b506102e76104203660046125d9565b610c1d565b34801561043157600080fd5b50610308600d5481565b34801561044757600080fd5b5061029a610456366004612604565b610c53565b34801561046757600080fd5b5061030860115481565b34801561047d57600080fd5b5061029a61048c366004612529565b610d50565b34801561049d57600080fd5b506103086104ac36600461261c565b610dce565b3480156104bd57600080fd5b50601454610336906001600160a01b031681565b3480156104dd57600080fd5b506015546102e790600160a81b900460ff1681565b3480156104fe57600080fd5b5061029a61050d366004612529565b610e5d565b34801561051e57600080fd5b506102e761052d366004612529565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561055757600080fd5b50610308600f5481565b34801561056d57600080fd5b5061030861057c366004612529565b610fed565b34801561058d57600080fd5b5061029a61104c565b3480156105a257600080fd5b5061029a6105b1366004612604565b6110b2565b3480156105c257600080fd5b506102e76105d1366004612529565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105fb57600080fd5b506000546001600160a01b0316610336565b34801561061957600080fd5b5061029a610628366004612604565b6111dc565b34801561063957600080fd5b506102b1611251565b34801561064e57600080fd5b506102e761065d3660046125d9565b611260565b34801561066e57600080fd5b506102e761067d3660046125d9565b6112af565b34801561068e57600080fd5b5061029a61069d366004612604565b6112bc565b3480156106ae57600080fd5b506103087f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e257600080fd5b506103086109c481565b3480156106f857600080fd5b50610308610707366004612561565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561073e57600080fd5b5061029a61074d366004612529565b611331565b34801561075e57600080fd5b50610308600281565b6000546001600160a01b031633146107c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600d819055601154600f546109c491906107e09084612734565b6107ea9190612734565b11156108385760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f76657220323525000000000000000000000060448201526064016107bd565b50565b6060600a805461084a906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906127a2565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b60006108da33848461141c565b5060015b92915050565b60006108f1848484611575565b610943843361093e85604051806060016040528060288152602001612824602891396001600160a01b038a16600090815260036020908152604080832033845290915290205491906117b0565b61141c565b5060019392505050565b60006008548211156109c75760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016107bd565b60006109d16117dc565b90506109dd8382611410565b9392505050565b6000546001600160a01b03163314610a3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03811660009081526005602052604090205460ff16610aa65760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107bd565b60005b600654811015610c1957816001600160a01b031660068281548110610ade57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c075760068054610b099060019061278b565b81548110610b2757634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610b6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610bd457634e487b7160e01b600052603160045260246000fd5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555050565b80610c11816127dd565b915050610aa9565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108da91859061093e90866117ff565b3360008181526005602052604090205460ff1615610cd95760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016107bd565b6000610ce48361180b565b5050506001600160a01b038616600090815260016020526040902054939450610d1293925084915050611866565b6001600160a01b038316600090815260016020526040902055600854610d389082611866565b600855600954610d4890846117ff565b600955505050565b6000546001600160a01b03163314610daa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610e225760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107bd565b81610e42576000610e328461180b565b509496506108de95505050505050565b6000610e4d8461180b565b509396506108de95505050505050565b6000546001600160a01b03163314610eb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03811660009081526005602052604090205460ff1615610f205760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107bd565b6001600160a01b03811660009081526001602052604090205415610f7a576001600160a01b038116600090815260016020526040902054610f609061094d565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b6001600160a01b03811660009081526005602052604081205460ff161561102a57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108de9061094d565b6000546001600160a01b031633146110a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6110b06000611872565b565b6000546001600160a01b0316331461110c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b61112c612710611126600561112060075490565b906118cf565b90611410565b8110156111a15760405162461bcd60e51b815260206004820152603860248201527f537761706261636b20616d6f756e742073686f756c64206265206174206c656160448201527f737420302e303525206f6620746f74616c20737570706c79000000000000000060648201526084016107bd565b60168190556040518181527ff7edd1a72d399eb95c56c07c5a26f00a9096735269c96c75caa8fc4e15bcd5d29060200160405180910390a150565b6000546001600160a01b031633146112365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b600f819055601154600d546109c491906107e0908490612734565b6060600b805461084a906127a2565b60006108da338461093e8560405180606001604052806025815260200161284c602591393360009081526003602090815260408083206001600160a01b038d16845290915290205491906117b0565b60006108da338484611575565b6000546001600160a01b031633146113165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6011819055600f54600d546109c49183916107e09190612734565b6000546001600160a01b0316331461138b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b0381166114075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107bd565b61083881611872565b60006109dd828461274c565b6001600160a01b0383166114975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b0382166115135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107bd565b600081116116e35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016107bd565b60006116ee30610fed565b6016549091508110801590819061170f5750601554600160a01b900460ff16155b801561172957506014546001600160a01b03868116911614155b801561173e5750601554600160a81b900460ff165b15611751576016549150611751826118db565b6001600160a01b03851660009081526004602052604090205460019060ff168061179357506001600160a01b03851660009081526004602052604090205460ff165b1561179c575060005b6117a886868684611982565b505050505050565b600081848411156117d45760405162461bcd60e51b81526004016107bd9190612671565b505050900390565b60008060006117e9611b22565b90925090506117f88282611410565b9250505090565b60006109dd8284612734565b60008060008060008060008060008060006118258c611cdc565b935093509350935060008060006118468f8787876118416117dc565b611d31565b919f509d509b509599509397509195509350505050919395979092949650565b60006109dd828461278b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109dd828461276c565b6015805460ff60a01b1916600160a01b17905560006118fb826002611410565b905060006119098383611866565b90504761191583611d93565b60006119214783611866565b905061192d8382611f42565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b806119ac576119ac600d8054600e55600f8054601055601180546012556000928390559082905555565b6001600160a01b03841660009081526005602052604090205460ff1680156119ed57506001600160a01b03831660009081526005602052604090205460ff16155b15611a02576119fd84848461201c565b611b00565b6001600160a01b03841660009081526005602052604090205460ff16158015611a4357506001600160a01b03831660009081526005602052604090205460ff165b15611a53576119fd848484612162565b6001600160a01b03841660009081526005602052604090205460ff16158015611a9557506001600160a01b03831660009081526005602052604090205460ff16155b15611aa5576119fd848484612221565b6001600160a01b03841660009081526005602052604090205460ff168015611ae557506001600160a01b03831660009081526005602052604090205460ff165b15611af5576119fd84848461227b565b611b00848484612221565b80611b1c57611b1c600e54600d55601054600f55601254601155565b50505050565b6008546007546000918291825b600654811015611cac57826001600060068481548110611b5f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bd85750816002600060068481548110611bb157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611bee57600854600754945094505050509091565b611c426001600060068481548110611c1657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611866565b9250611c986002600060068481548110611c6c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611866565b915080611ca4816127dd565b915050611b2f565b50600754600854611cbc91611410565b821015611cd3576008546007549350935050509091565b90939092509050565b6000806000806000611ced86612304565b90506000611cfa87612321565b90506000611d078861233e565b90506000611d2182611d1b85818d89611866565b90611866565b9993985091965094509092505050565b6000808080611d4089866118cf565b90506000611d4e89876118cf565b90506000611d5c89886118cf565b90506000611d6a89896118cf565b90506000611d7e82611d1b85818989611866565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080517fef8ef56f0000000000000000000000000000000000000000000000000000000081529051919093169263ef8ef56f926004808301939192829003018186803b158015611e4357600080fd5b505afa158015611e57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7b9190612545565b81600181518110611e9c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354611ec2913091168461141c565b6013546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611f149085906000908690309042906004016126c4565b600060405180830381600087803b158015611f2e57600080fd5b505af11580156117a8573d6000803e3d6000fd5b601354611f5a9030906001600160a01b03168461141c565b6013546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611fdc57600080fd5b505af1158015611ff0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120159190612644565b5050505050565b60008060008060008060006120308861180b565b965096509650965096509650965061207688600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546120a59088611866565b6001600160a01b03808c1660009081526001602052604080822093909355908b16815220546120d490876117ff565b6001600160a01b038a166000908152600160205260409020556120f682612374565b6120ff816123fd565b6121098584612505565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161214e91815260200190565b60405180910390a350505050505050505050565b60008060008060008060006121768861180b565b96509650965096509650965096506121bc87600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c168152600290915220546121f290856117ff565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546120d490876117ff565b60008060008060008060006122358861180b565b96509650965096509650965096506120a587600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b600080600080600080600061228f8861180b565b96509650965096509650965096506122d588600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546121bc9088611866565b60006108de612710611126600d54856118cf90919063ffffffff16565b60006108de612710611126600f54856118cf90919063ffffffff16565b6015546000906001600160a01b031661235957506000919050565b6108de612710611126601154856118cf90919063ffffffff16565b600061237e6117dc565b9050600061238c83836118cf565b306000908152600160205260409020549091506123a990826117ff565b3060009081526001602090815260408083209390935560059052205460ff16156123f857306000908152600260205260409020546123e790846117ff565b306000908152600260205260409020555b505050565b801561083857600061240d6117dc565b9050600061241b83836118cf565b6015546001600160a01b031660009081526001602052604090205490915061244390826117ff565b601580546001600160a01b03908116600090815260016020908152604080832095909555925490911681526005909152205460ff16156124be576015546001600160a01b03166000908152600260205260409020546124a290846117ff565b6015546001600160a01b03166000908152600260205260409020555b6015546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161156891815260200190565b6008546125129083611866565b60085560095461252290826117ff565b6009555050565b60006020828403121561253a578081fd5b81356109dd8161280e565b600060208284031215612556578081fd5b81516109dd8161280e565b60008060408385031215612573578081fd5b823561257e8161280e565b9150602083013561258e8161280e565b809150509250929050565b6000806000606084860312156125ad578081fd5b83356125b88161280e565b925060208401356125c88161280e565b929592945050506040919091013590565b600080604083850312156125eb578182fd5b82356125f68161280e565b946020939093013593505050565b600060208284031215612615578081fd5b5035919050565b6000806040838503121561262e578182fd5b823591506020830135801515811461258e578182fd5b600080600060608486031215612658578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561269d57858101830151858201604001528201612681565b818111156126ae5783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156127135784516001600160a01b0316835293830193918301916001016126ee565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612747576127476127f8565b500190565b60008261276757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612786576127866127f8565b500290565b60008282101561279d5761279d6127f8565b500390565b600181811c908216806127b657607f821691505b602082108114156127d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f1576127f16127f8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461083857600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220baa7d864c06a764389a12a02b178f60e9be2d4b513c7ddaaa027305204ba1bf064736f6c634300080400330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000c3663566a5800000000000000000000000000098bf93ebf5c380c0e6ae8e192a7e2ae08edacc020000000000000000000000007349210dfca6fc8ea21d88fb1c6efb792f4f4a71000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000399b581fe98332283068c7498882aaedce23953c0000000000000000000000000000000000000000000047ff6fdacacbac800000000000000000000000000000000000000000000000000000000000000000000c50756c73652043657265616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643455245414c0000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x60806040526004361061026e5760003560e01c80634a74bb02116101535780638ee88c53116100cb578063bb07e85d1161007f578063dd62ed3e11610064578063dd62ed3e146106ec578063f2fde38b14610732578063ffa1ad741461075257600080fd5b8063bb07e85d146106a2578063bc063e1a146106d657600080fd5b8063a457c2d7116100b0578063a457c2d714610642578063a9059cbb14610662578063af41063b1461068257600080fd5b80638ee88c531461060d57806395d89b411461062d57600080fd5b806370a0823111610122578063796431d011610107578063796431d01461059657806388f82020146105b65780638da5cb5b146105ef57600080fd5b806370a0823114610561578063715018a61461058157600080fd5b80634a74bb02146104d157806352390c02146104f25780635342acb4146105125780636bc87c3a1461054b57600080fd5b8063313ce567116101e65780633bd5d173116101b5578063437823ec1161019a578063437823ec146104715780634549b0391461049157806349bd5a5e146104b157600080fd5b80633bd5d1731461043b57806340f8007a1461045b57600080fd5b8063313ce567146103c35780633685d419146103e557806339509351146104055780633b124fe71461042557600080fd5b80631694505e1161023d57806319a8ac9e1161022257806319a8ac9e1461036357806323b872dd146103835780632d838119146103a357600080fd5b80631694505e1461031657806318160ddd1461034e57600080fd5b8063061c82d01461027a57806306fdde031461029c578063095ea7b3146102c757806313114a9d146102f757600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061029a610295366004612604565b610767565b005b3480156102a857600080fd5b506102b161083b565b6040516102be9190612671565b60405180910390f35b3480156102d357600080fd5b506102e76102e23660046125d9565b6108cd565b60405190151581526020016102be565b34801561030357600080fd5b506009545b6040519081526020016102be565b34801561032257600080fd5b50601354610336906001600160a01b031681565b6040516001600160a01b0390911681526020016102be565b34801561035a57600080fd5b50600754610308565b34801561036f57600080fd5b50601554610336906001600160a01b031681565b34801561038f57600080fd5b506102e761039e366004612599565b6108e4565b3480156103af57600080fd5b506103086103be366004612604565b61094d565b3480156103cf57600080fd5b50600c5460405160ff90911681526020016102be565b3480156103f157600080fd5b5061029a610400366004612529565b6109e4565b34801561041157600080fd5b506102e76104203660046125d9565b610c1d565b34801561043157600080fd5b50610308600d5481565b34801561044757600080fd5b5061029a610456366004612604565b610c53565b34801561046757600080fd5b5061030860115481565b34801561047d57600080fd5b5061029a61048c366004612529565b610d50565b34801561049d57600080fd5b506103086104ac36600461261c565b610dce565b3480156104bd57600080fd5b50601454610336906001600160a01b031681565b3480156104dd57600080fd5b506015546102e790600160a81b900460ff1681565b3480156104fe57600080fd5b5061029a61050d366004612529565b610e5d565b34801561051e57600080fd5b506102e761052d366004612529565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561055757600080fd5b50610308600f5481565b34801561056d57600080fd5b5061030861057c366004612529565b610fed565b34801561058d57600080fd5b5061029a61104c565b3480156105a257600080fd5b5061029a6105b1366004612604565b6110b2565b3480156105c257600080fd5b506102e76105d1366004612529565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105fb57600080fd5b506000546001600160a01b0316610336565b34801561061957600080fd5b5061029a610628366004612604565b6111dc565b34801561063957600080fd5b506102b1611251565b34801561064e57600080fd5b506102e761065d3660046125d9565b611260565b34801561066e57600080fd5b506102e761067d3660046125d9565b6112af565b34801561068e57600080fd5b5061029a61069d366004612604565b6112bc565b3480156106ae57600080fd5b506103087f000000000000000000000000000000000000000000000000000127076ff7f9b781565b3480156106e257600080fd5b506103086109c481565b3480156106f857600080fd5b50610308610707366004612561565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561073e57600080fd5b5061029a61074d366004612529565b611331565b34801561075e57600080fd5b50610308600281565b6000546001600160a01b031633146107c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600d819055601154600f546109c491906107e09084612734565b6107ea9190612734565b11156108385760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f76657220323525000000000000000000000060448201526064016107bd565b50565b6060600a805461084a906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610876906127a2565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b60006108da33848461141c565b5060015b92915050565b60006108f1848484611575565b610943843361093e85604051806060016040528060288152602001612824602891396001600160a01b038a16600090815260036020908152604080832033845290915290205491906117b0565b61141c565b5060019392505050565b60006008548211156109c75760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e730000000000000000000000000000000000000000000060648201526084016107bd565b60006109d16117dc565b90506109dd8382611410565b9392505050565b6000546001600160a01b03163314610a3e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03811660009081526005602052604090205460ff16610aa65760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107bd565b60005b600654811015610c1957816001600160a01b031660068281548110610ade57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c075760068054610b099060019061278b565b81548110610b2757634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110610b6157634e487b7160e01b600052603260045260246000fd5b6000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610bd457634e487b7160e01b600052603160045260246000fd5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190555050565b80610c11816127dd565b915050610aa9565b5050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108da91859061093e90866117ff565b3360008181526005602052604090205460ff1615610cd95760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e000000000000000000000000000000000000000060648201526084016107bd565b6000610ce48361180b565b5050506001600160a01b038616600090815260016020526040902054939450610d1293925084915050611866565b6001600160a01b038316600090815260016020526040902055600854610d389082611866565b600855600954610d4890846117ff565b600955505050565b6000546001600160a01b03163314610daa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610e225760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107bd565b81610e42576000610e328461180b565b509496506108de95505050505050565b6000610e4d8461180b565b509396506108de95505050505050565b6000546001600160a01b03163314610eb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b03811660009081526005602052604090205460ff1615610f205760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107bd565b6001600160a01b03811660009081526001602052604090205415610f7a576001600160a01b038116600090815260016020526040902054610f609061094d565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b6001600160a01b03811660009081526005602052604081205460ff161561102a57506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108de9061094d565b6000546001600160a01b031633146110a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6110b06000611872565b565b6000546001600160a01b0316331461110c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b61112c612710611126600561112060075490565b906118cf565b90611410565b8110156111a15760405162461bcd60e51b815260206004820152603860248201527f537761706261636b20616d6f756e742073686f756c64206265206174206c656160448201527f737420302e303525206f6620746f74616c20737570706c79000000000000000060648201526084016107bd565b60168190556040518181527ff7edd1a72d399eb95c56c07c5a26f00a9096735269c96c75caa8fc4e15bcd5d29060200160405180910390a150565b6000546001600160a01b031633146112365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b600f819055601154600d546109c491906107e0908490612734565b6060600b805461084a906127a2565b60006108da338461093e8560405180606001604052806025815260200161284c602591393360009081526003602090815260408083206001600160a01b038d16845290915290205491906117b0565b60006108da338484611575565b6000546001600160a01b031633146113165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6011819055600f54600d546109c49183916107e09190612734565b6000546001600160a01b0316331461138b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bd565b6001600160a01b0381166114075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107bd565b61083881611872565b60006109dd828461274c565b6001600160a01b0383166114975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b0382166115135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166115f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107bd565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107bd565b600081116116e35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016107bd565b60006116ee30610fed565b6016549091508110801590819061170f5750601554600160a01b900460ff16155b801561172957506014546001600160a01b03868116911614155b801561173e5750601554600160a81b900460ff165b15611751576016549150611751826118db565b6001600160a01b03851660009081526004602052604090205460019060ff168061179357506001600160a01b03851660009081526004602052604090205460ff165b1561179c575060005b6117a886868684611982565b505050505050565b600081848411156117d45760405162461bcd60e51b81526004016107bd9190612671565b505050900390565b60008060006117e9611b22565b90925090506117f88282611410565b9250505090565b60006109dd8284612734565b60008060008060008060008060008060006118258c611cdc565b935093509350935060008060006118468f8787876118416117dc565b611d31565b919f509d509b509599509397509195509350505050919395979092949650565b60006109dd828461278b565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109dd828461276c565b6015805460ff60a01b1916600160a01b17905560006118fb826002611410565b905060006119098383611866565b90504761191583611d93565b60006119214783611866565b905061192d8382611f42565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b806119ac576119ac600d8054600e55600f8054601055601180546012556000928390559082905555565b6001600160a01b03841660009081526005602052604090205460ff1680156119ed57506001600160a01b03831660009081526005602052604090205460ff16155b15611a02576119fd84848461201c565b611b00565b6001600160a01b03841660009081526005602052604090205460ff16158015611a4357506001600160a01b03831660009081526005602052604090205460ff165b15611a53576119fd848484612162565b6001600160a01b03841660009081526005602052604090205460ff16158015611a9557506001600160a01b03831660009081526005602052604090205460ff16155b15611aa5576119fd848484612221565b6001600160a01b03841660009081526005602052604090205460ff168015611ae557506001600160a01b03831660009081526005602052604090205460ff165b15611af5576119fd84848461227b565b611b00848484612221565b80611b1c57611b1c600e54600d55601054600f55601254601155565b50505050565b6008546007546000918291825b600654811015611cac57826001600060068481548110611b5f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bd85750816002600060068481548110611bb157634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611bee57600854600754945094505050509091565b611c426001600060068481548110611c1657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611866565b9250611c986002600060068481548110611c6c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611866565b915080611ca4816127dd565b915050611b2f565b50600754600854611cbc91611410565b821015611cd3576008546007549350935050509091565b90939092509050565b6000806000806000611ced86612304565b90506000611cfa87612321565b90506000611d078861233e565b90506000611d2182611d1b85818d89611866565b90611866565b9993985091965094509092505050565b6000808080611d4089866118cf565b90506000611d4e89876118cf565b90506000611d5c89886118cf565b90506000611d6a89896118cf565b90506000611d7e82611d1b85818989611866565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611dd657634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080517fef8ef56f0000000000000000000000000000000000000000000000000000000081529051919093169263ef8ef56f926004808301939192829003018186803b158015611e4357600080fd5b505afa158015611e57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7b9190612545565b81600181518110611e9c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354611ec2913091168461141c565b6013546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611f149085906000908690309042906004016126c4565b600060405180830381600087803b158015611f2e57600080fd5b505af11580156117a8573d6000803e3d6000fd5b601354611f5a9030906001600160a01b03168461141c565b6013546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611fdc57600080fd5b505af1158015611ff0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120159190612644565b5050505050565b60008060008060008060006120308861180b565b965096509650965096509650965061207688600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546120a59088611866565b6001600160a01b03808c1660009081526001602052604080822093909355908b16815220546120d490876117ff565b6001600160a01b038a166000908152600160205260409020556120f682612374565b6120ff816123fd565b6121098584612505565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161214e91815260200190565b60405180910390a350505050505050505050565b60008060008060008060006121768861180b565b96509650965096509650965096506121bc87600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c168152600290915220546121f290856117ff565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546120d490876117ff565b60008060008060008060006122358861180b565b96509650965096509650965096506120a587600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b600080600080600080600061228f8861180b565b96509650965096509650965096506122d588600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461186690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546121bc9088611866565b60006108de612710611126600d54856118cf90919063ffffffff16565b60006108de612710611126600f54856118cf90919063ffffffff16565b6015546000906001600160a01b031661235957506000919050565b6108de612710611126601154856118cf90919063ffffffff16565b600061237e6117dc565b9050600061238c83836118cf565b306000908152600160205260409020549091506123a990826117ff565b3060009081526001602090815260408083209390935560059052205460ff16156123f857306000908152600260205260409020546123e790846117ff565b306000908152600260205260409020555b505050565b801561083857600061240d6117dc565b9050600061241b83836118cf565b6015546001600160a01b031660009081526001602052604090205490915061244390826117ff565b601580546001600160a01b03908116600090815260016020908152604080832095909555925490911681526005909152205460ff16156124be576015546001600160a01b03166000908152600260205260409020546124a290846117ff565b6015546001600160a01b03166000908152600260205260409020555b6015546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161156891815260200190565b6008546125129083611866565b60085560095461252290826117ff565b6009555050565b60006020828403121561253a578081fd5b81356109dd8161280e565b600060208284031215612556578081fd5b81516109dd8161280e565b60008060408385031215612573578081fd5b823561257e8161280e565b9150602083013561258e8161280e565b809150509250929050565b6000806000606084860312156125ad578081fd5b83356125b88161280e565b925060208401356125c88161280e565b929592945050506040919091013590565b600080604083850312156125eb578182fd5b82356125f68161280e565b946020939093013593505050565b600060208284031215612615578081fd5b5035919050565b6000806040838503121561262e578182fd5b823591506020830135801515811461258e578182fd5b600080600060608486031215612658578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561269d57858101830151858201604001528201612681565b818111156126ae5783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156127135784516001600160a01b0316835293830193918301916001016126ee565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612747576127476127f8565b500190565b60008261276757634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612786576127866127f8565b500290565b60008282101561279d5761279d6127f8565b500390565b600181811c908216806127b657607f821691505b602082108114156127d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f1576127f16127f8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461083857600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220baa7d864c06a764389a12a02b178f60e9be2d4b513c7ddaaa027305204ba1bf064736f6c63430008040033