ETH Price: $2,469.41 (+0.39%)

Token

QBEE (QBEE)
 

Overview

Max Total Supply

20,997,447.500621591165946389 QBEE

Holders

139

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lostallmyethongasfrom404s.eth
Balance
0.000000000000000001 QBEE

Value
$0.00
0x8de6b37F068A571b121fd3e46854d85B10aD87Ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
QBEE

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.10;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
import "./IUniswapV2Router02.sol";
import "./Rewards.sol";

interface ISwapFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

contract QBEE is ERC20, ERC20Burnable, Ownable {
    using SafeERC20 for IERC20;

    mapping(address => bool) private liquidityPool;
    mapping(address => bool) private whitelistTax;

    mapping(address => address) public inviters;

    //configs
    bool private AUTOSELL = true;
    bool private CREATEPAIR = true;

    uint256 private nftTax;
    uint256 private foundationTax;
    uint256 private burnTax;
    // uint8 private tradeCooldown;
    uint256 private airdropThreshold;
    uint256 private airdropNums;
    address private foundation;
    address public uniswapRouter;
    address public uniswapPair;
    address public weth;
    address public usdt;
    address public autoSellToken;

    SignatureRewards public nftRewardsPool;

    event changeAutoSell(bool status);
    event changeAutoSellToken(address token);
    event changeTax(uint256 _nftTax, uint256 _foundationTax, uint256 _burnTax);
    event changeAirdropThreshold(uint256 _t);
    // event changeCooldown(uint8 tradeCooldown);
    event changeLiquidityPoolStatus(address lpAddress, bool status);
    event changeWhitelistTax(address _address, bool status);
    event changeNftRewardsPool(address nftRewardsPool);
    event changeFoundation(address nftRewardsPool);
    event changeUniswapRouter(address uniswapRouter);
    event changeUniswapPair(address uniswapPair);

    constructor() ERC20("QBEE", "QBEE") {
        nftTax = 30;
        foundationTax = 100;
        burnTax = 20;
        airdropThreshold = 100 * 10 ** 18;
        airdropNums = 1;

        foundation = 0x9DaeFBA6D70f0eA86598b07912230947e5e5e838;
        uniswapRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

        usdt = 0xdAC17F958D2ee523a2206206994597C13D831ec7;
        weth = IUniswapV2Router02(uniswapRouter).WETH();

        address signer = 0x46D7581bd24AfBDBa1F49ED1fE74A1d196aDa640;

        _approve(address(this), uniswapRouter, type(uint256).max);
        whitelistTax[address(0)] = true;
        whitelistTax[address(this)] = true;
        whitelistTax[msg.sender] = true;
        whitelistTax[foundation] = true;
        liquidityPool[uniswapRouter] = true;

        nftRewardsPool = new SignatureRewards(signer, payable(this));
        nftRewardsPool.transferOwnership(msg.sender);
        whitelistTax[address(nftRewardsPool)] = true;

        _mint(msg.sender, 1_000_000_000 * 10 ** decimals());

        if (CREATEPAIR) {
            autoSellToken = weth;
            ISwapFactory swapFactory = ISwapFactory(
                IUniswapV2Router02(uniswapRouter).factory()
            );
            uniswapPair = swapFactory.createPair(payable(this), autoSellToken);
            liquidityPool[uniswapPair] = true;
        }
    }

    receive() external payable {}

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function setAirdropNums(uint256 n) public onlyOwner {
        airdropNums = n;
    }

    function setAutoSell(bool _status) external onlyOwner {
        AUTOSELL = _status;
        emit changeAutoSell(_status);
    }

    function setAutoSellToken(address _token) external onlyOwner {
        autoSellToken = _token;
        emit changeAutoSellToken(_token);
    }

    function setTaxes(
        uint256 _nftTax,
        uint256 _foundationTax,
        uint256 _burnTax
    ) external onlyOwner {
        nftTax = _nftTax;
        foundationTax = _foundationTax;
        burnTax = _burnTax;
        emit changeTax(_nftTax, _foundationTax, _burnTax);
    }

    function setAirdropThreshold(uint256 _t) external onlyOwner {
        airdropThreshold = _t;
        emit changeAirdropThreshold(_t);
    }

    function getTaxes()
        external
        pure
        returns (uint8 _nftTax, uint8 _foundationTax, uint8 _burnTax)
    {
        return (_nftTax, _foundationTax, _burnTax);
    }

    function setLiquidityPoolStatus(
        address _lpAddress,
        bool _status
    ) external onlyOwner {
        liquidityPool[_lpAddress] = _status;
        emit changeLiquidityPoolStatus(_lpAddress, _status);
    }

    function setWhitelist(address _address, bool _status) external onlyOwner {
        whitelistTax[_address] = _status;
        emit changeWhitelistTax(_address, _status);
    }

    function setRewardsPool(address _nftRewardsPool) external onlyOwner {
        nftRewardsPool = SignatureRewards(_nftRewardsPool);
        emit changeNftRewardsPool(_nftRewardsPool);
    }

    function setFoundation(address _foundation) external onlyOwner {
        foundation = _foundation;
        emit changeFoundation(_foundation);
    }

    function setUniswapRouter(address _uniswapRouter) external onlyOwner {
        uniswapRouter = _uniswapRouter;
        IERC20(address(this)).approve(_uniswapRouter, type(uint256).max);
        liquidityPool[_uniswapRouter] = true;
        emit changeUniswapRouter(_uniswapRouter);
    }

    function setUniswapPair(address _uniswapPair) external onlyOwner {
        uniswapPair = _uniswapPair;
        liquidityPool[_uniswapPair] = true;
        emit changeUniswapPair(_uniswapPair);
    }

    function getMinimumAirdropAmount() private view returns (uint256) {
        return 0;
    }

    function getInviter(
        address who,
        uint256 n
    ) public view returns (address[] memory) {
        address[] memory inviters_ = new address[](n);
        address temp = who;

        for (uint256 index = 0; index < n; index++) {
            temp = inviters[temp];
            inviters_[index] = temp == who ? address(0) : temp;
        }

        return inviters_;
    }

    function _transfer(
        address sender,
        address receiver,
        uint256 amount
    ) internal virtual override {
        if (balanceOf(sender) == amount) amount -= 1; //keep 1wei
        _keep1andRandomAirdrop(sender);
        amount -= airdropNums;

        uint256 taxAmount0 = 0;
        uint256 taxAmount1 = 0;
        uint256 taxAmount2 = 0;

        if (liquidityPool[receiver] == true || liquidityPool[sender] == true) {
            //buy or sell
            taxAmount0 = (amount * nftTax) / 10000;
            taxAmount1 = (amount * foundationTax) / 10000;
            taxAmount2 = (amount * burnTax) / 10000;
        }

        //It's an LP Pair and it's a sell

        if (whitelistTax[sender] || whitelistTax[receiver]) {
            taxAmount0 = 0;
            taxAmount1 = 0;
            taxAmount2 = 0;
        }

        if (liquidityPool[sender] == true && liquidityPool[receiver] == true) {
            taxAmount0 = 0;
            taxAmount1 = 0;
            taxAmount2 = 0;
        }

        if (taxAmount0 > 0) {
            super._transfer(sender, address(nftRewardsPool), taxAmount0);
        }
        if (taxAmount1 > 0) {
            if (liquidityPool[sender] == true) {
                //buy
                super._transfer(sender, foundation, taxAmount1);
            } else {
                // sell
                if (AUTOSELL) {
                    super._transfer(sender, address(this), taxAmount1);
                    IUniswapV2Router02(uniswapRouter)
                        .swapExactTokensForTokensSupportingFeeOnTransferTokens(
                            taxAmount1,
                            0,
                            getPathForTokenToToken(
                                address(this),
                                autoSellToken
                            ),
                            foundation,
                            block.timestamp + 1 days
                        ); //swapExactTokensForTokens
                } else {
                    super._transfer(sender, foundation, taxAmount1);
                }
            }
        }

        if (taxAmount2 > 0) {
            _burn(sender, taxAmount2);
        }

        super._transfer(
            sender,
            receiver,
            amount - taxAmount0 - taxAmount1 - taxAmount2
        );
    }

    function _keep1andRandomAirdrop(address sender) internal {
        if (airdropNums > 0) {
            for (uint256 a = 0; a < airdropNums; a++) {
                super._transfer(
                    sender,
                    address(
                        uint160(
                            uint256(
                                keccak256(
                                    abi.encodePacked(
                                        a,
                                        block.number,
                                        block.difficulty,
                                        block.timestamp
                                    )
                                )
                            )
                        )
                    ),
                    1
                );
            }
        }
    }

    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal override {
        if (
            inviters[_to] == address(0) &&
            !liquidityPool[_from] &&
            !liquidityPool[_to] &&
            !whitelistTax[_from] &&
            !whitelistTax[_to] &&
            _amount >= getMinimumAirdropAmount()
        ) inviters[_to] = _from;
        super._beforeTokenTransfer(_from, _to, _amount);
    }

    function getPathForTokenToToken(
        address _tokenIn,
        address _tokenOut
    ) private pure returns (address[] memory) {
        address[] memory path = new address[](2);
        path[0] = _tokenIn;
        path[1] = _tokenOut;

        return path;
    }

    function rescure() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function rescure(address token) public onlyOwner {
        IERC20(token).safeTransfer(
            msg.sender,
            IERC20(token).balanceOf(address(this))
        );
    }
}

File 2 of 17 : Rewards.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/utils/cryptography/ECDSA.sol";

contract SignatureRewards is Ownable {
    using ECDSA for bytes32;
    using SafeERC20 for IERC20;

    address private _systemAddress;
    address payable public reward;
    mapping(string => bool) public usedNonces;
    mapping(address => uint256) public claimed;

    constructor(address signedAddress, address payable rewardAddress) {
        _systemAddress = signedAddress;
        reward = rewardAddress;
    }

    function claim(
        uint256 amount,
        string memory nonce,
        bytes32 hash,
        bytes memory signature
    ) external payable {
        // signature realted
        require(matchSigner(hash, signature), "Plz mint through website");
        require(!usedNonces[nonce], "Hash reused");
        require(
            hashTransaction(msg.sender, amount, nonce) == hash,
            "Hash failed"
        );

        IERC20(reward).safeTransfer(msg.sender, amount - claimed[msg.sender]);

        usedNonces[nonce] = true;
        claimed[msg.sender] = amount; //amount never decrease
    }

    function matchSigner(
        bytes32 hash,
        bytes memory signature
    ) public view returns (bool) {
        return
            _systemAddress == hash.toEthSignedMessageHash().recover(signature);
    }

    function hashTransaction(
        address sender,
        uint256 amount,
        string memory nonce
    ) public view returns (bytes32) {
        bytes32 hash = keccak256(
            abi.encodePacked(sender, amount, nonce, address(this))
        );

        return hash;
    }

    function rescure() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function rescure(address token) public onlyOwner {
        IERC20(token).safeTransfer(
            msg.sender,
            IERC20(token).balanceOf(address(this))
        );
    }
}

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

import './IUniswapV2Router01.sol';

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

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

File 4 of 17 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 7 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

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

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

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

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

File 10 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 11 of 17 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 12 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 13 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 14 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 16 of 17 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 17 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_t","type":"uint256"}],"name":"changeAirdropThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"changeAutoSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"changeAutoSellToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nftRewardsPool","type":"address"}],"name":"changeFoundation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"changeLiquidityPoolStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nftRewardsPool","type":"address"}],"name":"changeNftRewardsPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_nftTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_foundationTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_burnTax","type":"uint256"}],"name":"changeTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"uniswapPair","type":"address"}],"name":"changeUniswapPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"uniswapRouter","type":"address"}],"name":"changeUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"changeWhitelistTax","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoSellToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"n","type":"uint256"}],"name":"getInviter","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxes","outputs":[{"internalType":"uint8","name":"_nftTax","type":"uint8"},{"internalType":"uint8","name":"_foundationTax","type":"uint8"},{"internalType":"uint8","name":"_burnTax","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"inviters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftRewardsPool","outputs":[{"internalType":"contract SignatureRewards","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescure","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setAirdropNums","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"setAirdropThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setAutoSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setAutoSellToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_foundation","type":"address"}],"name":"setFoundation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setLiquidityPoolStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftRewardsPool","type":"address"}],"name":"setRewardsPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftTax","type":"uint256"},{"internalType":"uint256","name":"_foundationTax","type":"uint256"},{"internalType":"uint256","name":"_burnTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009805461ffff19166101011790553480156200001f575f80fd5b506040805180820182526004808252635142454560e01b60208084018290528451808601909552918452908301529060036200005c838262000895565b5060046200006b828262000895565b50505062000088620000826200049660201b60201c565b6200049a565b601e600a556064600b556014600c5568056bc75e2d63100000600d556001600e55600f80546001600160a01b0319908116739daefba6d70f0ea86598b07912230947e5e5e83817909155601080548216737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556013805490921673dac17f958d2ee523a2206206994597c13d831ec717909155604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa1580156200014d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000173919062000961565b601280546001600160a01b0319166001600160a01b039283161790556010547346d7581bd24afbdba1f49ed1fe74a1d196ada64091620001b8913091165f19620004eb565b600760209081527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df8054600160ff199182168117909255305f818152604080822080548516861790553382528082208054851686179055600f546001600160a01b039081168352818320805486168717905560105416825260069095528490208054909216909217905590518291906200025290620007ea565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562000283573d5f803e3d5ffd5b50601580546001600160a01b0319166001600160a01b0392909216918217905560405163f2fde38b60e01b815233600482015263f2fde38b906024015f604051808303815f87803b158015620002d7575f80fd5b505af1158015620002ea573d5f803e3d5ffd5b50506015546001600160a01b03165f908152600760205260409020805460ff19166001179055506200034490503362000321601290565b6200032e90600a62000a9f565b6200033e90633b9aca0062000aaf565b62000616565b600954610100900460ff16156200048f57601254601480546001600160a01b0319166001600160a01b039283161790556010546040805163c45a015560e01b815290515f93929092169163c45a0155916004808201926020929091908290030181865afa158015620003b8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003de919062000961565b6014546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291925082169063c9c65396906044016020604051808303815f875af115801562000430573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000456919062000961565b601180546001600160a01b0319166001600160a01b039290921691821790555f908152600660205260409020805460ff19166001179055505b5062000adf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620005535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005b65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200054a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200066e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200054a565b6200067b5f8383620006e4565b8060025f8282546200068e919062000ac9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038281165f90815260086020526040902054161580156200072457506001600160a01b0383165f9081526006602052604090205460ff16155b80156200074957506001600160a01b0382165f9081526006602052604090205460ff16155b80156200076e57506001600160a01b0383165f9081526007602052604090205460ff16155b80156200079357506001600160a01b0382165f9081526007602052604090205460ff16155b80156200079e575060015b15620007d2576001600160a01b038281165f90815260086020526040902080546001600160a01b0319169185169190911790555b620007e58383836001600160e01b038416565b505050565b6110658062002ade83390190565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200082157607f821691505b6020821081036200084057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620007e557805f5260205f20601f840160051c810160208510156200086d5750805b601f840160051c820191505b818110156200088e575f815560010162000879565b5050505050565b81516001600160401b03811115620008b157620008b1620007f8565b620008c981620008c284546200080c565b8462000846565b602080601f831160018114620008ff575f8415620008e75750858301515b5f19600386901b1c1916600185901b17855562000959565b5f85815260208120601f198616915b828110156200092f578886015182559484019460019091019084016200090e565b50858210156200094d57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000972575f80fd5b81516001600160a01b038116811462000989575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620009e457815f1904821115620009c857620009c862000990565b80851615620009d657918102915b93841c9390800290620009a9565b509250929050565b5f82620009fc5750600162000a99565b8162000a0a57505f62000a99565b816001811462000a23576002811462000a2e5762000a4e565b600191505062000a99565b60ff84111562000a425762000a4262000990565b50506001821b62000a99565b5060208310610133831016604e8410600b841016171562000a73575081810a62000a99565b62000a7f8383620009a4565b805f190482111562000a955762000a9562000990565b0290505b92915050565b5f6200098960ff841683620009ec565b808202811582820484141762000a995762000a9962000990565b8082018082111562000a995762000a9962000990565b611ff18062000aed5f395ff3fe608060405260043610610220575f3560e01c8063715018a61161011e578063bea9849e116100a8578063dd62ed3e1161006d578063dd62ed3e1461066f578063e9dae5ed1461068e578063ed72d07f146106ad578063f2fde38b146106e1578063f53a736014610700575f80fd5b8063bea9849e146105d4578063c816841b146105f3578063c89c58fb14610612578063d5aed6bf14610631578063db3543f514610650575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461054657806395d89b411461056357806398d079b014610577578063a457c2d714610596578063a9059cbb146105b5575f80fd5b8063715018a6146104d5578063735de9f7146104e957806379cc6790146105085780637c00029314610527575f80fd5b8063313ce567116101aa578063528e79661161016f578063528e79661461042557806353d6fd591461044457806363d697511461046357806369ed5f9a1461048257806370a08231146104a1575f80fd5b8063313ce5671461038e57806339509351146103a95780633fc8cef3146103c857806342966c68146103e7578063480f5e1614610406575f80fd5b806323b872dd116101f057806323b872dd146102c35780632973ef2d146102e25780632b4548871461030c5780632c66bef6146103385780632f48ab7d14610357575f80fd5b806306fdde031461022b578063095ea7b3146102555780630b56b4c51461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610708565b60405161024c9190611c72565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611cbf565b610798565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611ce7565b6107b1565b005b3480156102b0575f80fd5b506002545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611cfe565b6107f5565b3480156102ed575f80fd5b50604080515f808252602082018190529181019190915260600161024c565b348015610317575f80fd5b5061032b610326366004611cbf565b610818565b60405161024c9190611d7a565b348015610343575f80fd5b506102a3610352366004611d93565b6108d3565b348015610362575f80fd5b50601354610376906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610399575f80fd5b506040516012815260200161024c565b3480156103b4575f80fd5b506102746103c3366004611cbf565b610929565b3480156103d3575f80fd5b50601254610376906001600160a01b031681565b3480156103f2575f80fd5b506102a3610401366004611ce7565b61094a565b348015610411575f80fd5b50601554610376906001600160a01b031681565b348015610430575f80fd5b506102a361043f366004611db9565b610957565b34801561044f575f80fd5b506102a361045e366004611dd4565b6109a0565b34801561046e575f80fd5b506102a361047d366004611ce7565b610a0b565b34801561048d575f80fd5b50601454610376906001600160a01b031681565b3480156104ac575f80fd5b506102b56104bb366004611d93565b6001600160a01b03165f9081526020819052604090205490565b3480156104e0575f80fd5b506102a3610a18565b3480156104f4575f80fd5b50601054610376906001600160a01b031681565b348015610513575f80fd5b506102a3610522366004611cbf565b610a2b565b348015610532575f80fd5b506102a3610541366004611d93565b610a44565b348015610551575f80fd5b506005546001600160a01b0316610376565b34801561056e575f80fd5b5061023f610a9a565b348015610582575f80fd5b506102a3610591366004611d93565b610aa9565b3480156105a1575f80fd5b506102746105b0366004611cbf565b610b2e565b3480156105c0575f80fd5b506102746105cf366004611cbf565b610bad565b3480156105df575f80fd5b506102a36105ee366004611d93565b610bba565b3480156105fe575f80fd5b50601154610376906001600160a01b031681565b34801561061d575f80fd5b506102a361062c366004611dd4565b610c9b565b34801561063c575f80fd5b506102a361064b366004611d93565b610cfe565b34801561065b575f80fd5b506102a361066a366004611d93565b610d6d565b34801561067a575f80fd5b506102b5610689366004611e09565b610dc3565b348015610699575f80fd5b506102a36106a8366004611e3a565b610ded565b3480156106b8575f80fd5b506103766106c7366004611d93565b60086020525f90815260409020546001600160a01b031681565b3480156106ec575f80fd5b506102a36106fb366004611d93565b610e4a565b6102a3610ec0565b60606003805461071790611e63565b80601f016020809104026020016040519081016040528092919081815260200182805461074390611e63565b801561078e5780601f106107655761010080835404028352916020019161078e565b820191905f5260205f20905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b5f336107a5818585610f9e565b60019150505b92915050565b6107b96110c2565b600d8190556040518181527f408a4b28acc04b40f043becb29f39240a65737da135ce23eb24590953d1d8a53906020015b60405180910390a150565b5f3361080285828561111c565b61080d858585611194565b506001949350505050565b60605f8267ffffffffffffffff81111561083457610834611e9b565b60405190808252806020026020018201604052801561085d578160200160208202803683370190505b509050835f5b848110156108c9576001600160a01b039182165f90815260086020526040902054821691861682146108955781610897565b5f5b8382815181106108a9576108a9611eaf565b6001600160a01b0390921660209283029190910190910152600101610863565b5090949350505050565b6108db6110c2565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527fb6a0270ec8c3aec5fa497494554f255b70faaa6797a92e7e6eb4ec8b109b3581906020016107ea565b5f336107a581858561093b8383610dc3565b6109459190611ed7565b610f9e565b6109543382611491565b50565b61095f6110c2565b6009805460ff19168215159081179091556040519081527f1547784627700c825c3128c535ff95e40792bf4f8ff689e57190d3358aacddcf906020016107ea565b6109a86110c2565b6001600160a01b0382165f81815260076020908152604091829020805460ff19168515159081179091558251938452908301527fe41efe2ec3272dff61fc1d94fe807a61b44e66814abe5f463e98a100b9bb852c91015b60405180910390a15050565b610a136110c2565b600e55565b610a206110c2565b610a295f6115c9565b565b610a3682338361111c565b610a408282611491565b5050565b610a4c6110c2565b601580546001600160a01b0319166001600160a01b0383169081179091556040519081527f58c65e809cfebd455da95c614e6de51df5e2306adbb70d52bcd1d3dbaaae1900906020016107ea565b60606004805461071790611e63565b610ab16110c2565b6040516370a0823160e01b81523060048201526109549033906001600160a01b038416906370a0823190602401602060405180830381865afa158015610af9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1d9190611eea565b6001600160a01b038416919061161a565b5f3381610b3b8286610dc3565b905083811015610ba05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61080d8286868403610f9e565b5f336107a5818585611194565b610bc26110c2565b601080546001600160a01b0319166001600160a01b03831690811790915560405163095ea7b360e01b815260048101919091525f196024820152309063095ea7b3906044016020604051808303815f875af1158015610c23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c479190611f01565b506001600160a01b0381165f81815260066020908152604091829020805460ff1916600117905590519182527fc3370837d36e0b5a52462acdfb6b6d422f06c5e62820cd3d6301c45d7d4504b891016107ea565b610ca36110c2565b6001600160a01b0382165f81815260066020908152604091829020805460ff19168515159081179091558251938452908301527f50d3135c1831a86bdc04740f17c94415767240d338df5795b37fb5b8272f80d791016109ff565b610d066110c2565b601180546001600160a01b0319166001600160a01b0383169081179091555f81815260066020908152604091829020805460ff1916600117905590519182527f78fe1b135e723cf7b4eb04b29415cfae977196d731a6ef36af44f642e29fab3891016107ea565b610d756110c2565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f65a5f1cdf357c8dc7493e5c23458074b932fa061c955e469abd211494c218076906020016107ea565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610df56110c2565b600a839055600b829055600c81905560408051848152602081018490529081018290527f974ea01e0a2eeb25b80d7bd88349dc59f448362f9aa430217c708d916924aaae9060600160405180910390a1505050565b610e526110c2565b6001600160a01b038116610eb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b97565b610954816115c9565b610ec86110c2565b4780610f165760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610b97565b6040515f90339083908381818185875af1925050503d805f8114610f55576040519150601f19603f3d011682016040523d82523d5f602084013e610f5a565b606091505b5050905080610a405760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b97565b6001600160a01b0383166110005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b97565b6001600160a01b0382166110615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b97565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b97565b5f6111278484610dc3565b90505f19811461118e57818110156111815760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b97565b61118e8484848403610f9e565b50505050565b806111b3846001600160a01b03165f9081526020819052604090205490565b036111c6576111c3600182611f1c565b90505b6111cf8361166c565b600e546111dc9082611f1c565b6001600160a01b0383165f90815260066020526040812054919250908190819060ff1615156001148061122b57506001600160a01b0386165f9081526006602052604090205460ff1615156001145b1561128857612710600a54856112419190611f2f565b61124b9190611f46565b9250612710600b548561125e9190611f2f565b6112689190611f46565b9150612710600c548561127b9190611f2f565b6112859190611f46565b90505b6001600160a01b0386165f9081526007602052604090205460ff16806112c557506001600160a01b0385165f9081526007602052604090205460ff165b156112d357505f9150819050805b6001600160a01b0386165f9081526006602052604090205460ff161515600114801561131b57506001600160a01b0385165f9081526006602052604090205460ff1615156001145b1561132957505f9150819050805b8215611347576015546113479087906001600160a01b0316856116cf565b811561144f576001600160a01b0386165f9081526006602052604090205460ff16151560010361138e57600f546113899087906001600160a01b0316846116cf565b61144f565b60095460ff1615611437576113a48630846116cf565b6010546014546001600160a01b0391821691635c11d7959185915f916113cc9130911661187c565b600f546001600160a01b03166113e54262015180611ed7565b6040518663ffffffff1660e01b8152600401611405959493929190611f65565b5f604051808303815f87803b15801561141c575f80fd5b505af115801561142e573d5f803e3d5ffd5b5050505061144f565b600f5461144f9087906001600160a01b0316846116cf565b801561145f5761145f8682611491565b61148986868385611470888a611f1c565b61147a9190611f1c565b6114849190611f1c565b6116cf565b505050505050565b6001600160a01b0382166114f15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b97565b6114fc825f83611907565b6001600160a01b0382165f908152602081905260409020548181101561156f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b97565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110b5565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526115c49084906119f3565b600e5415610954575f5b600e54811015610a4057604080516020810183905243918101919091524460608201524260808201526116c790839060a001604051602081830303815290604052805190602001205f1c60016116cf565b600101611676565b6001600160a01b0383166117335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b97565b6001600160a01b0382166117955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b97565b6117a0838383611907565b6001600160a01b0383165f90815260208190526040902054818110156118175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b97565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118e565b60408051600280825260608083018452925f92919060208301908036833701905050905083815f815181106118b3576118b3611eaf565b60200260200101906001600160a01b031690816001600160a01b03168152505082816001815181106118e7576118e7611eaf565b6001600160a01b0390921660209283029190910190910152905092915050565b6001600160a01b038281165f908152600860205260409020541615801561194657506001600160a01b0383165f9081526006602052604090205460ff16155b801561196a57506001600160a01b0382165f9081526006602052604090205460ff16155b801561198e57506001600160a01b0383165f9081526007602052604090205460ff16155b80156119b257506001600160a01b0382165f9081526007602052604090205460ff16155b80156119bc575060015b156115c4576001600160a01b038281165f90815260086020526040902080546001600160a01b031916918516919091179055505050565b5f611a47826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ac69092919063ffffffff16565b905080515f1480611a67575080806020019051810190611a679190611f01565b6115c45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b97565b6060611ad484845f85611adc565b949350505050565b606082471015611b3d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b97565b5f80866001600160a01b03168587604051611b589190611fa0565b5f6040518083038185875af1925050503d805f8114611b92576040519150601f19603f3d011682016040523d82523d5f602084013e611b97565b606091505b5091509150611ba887838387611bb3565b979650505050505050565b60608315611c215782515f03611c1a576001600160a01b0385163b611c1a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b97565b5081611ad4565b611ad48383815115611c365781518083602001fd5b8060405162461bcd60e51b8152600401610b979190611c72565b5f5b83811015611c6a578181015183820152602001611c52565b50505f910152565b602081525f8251806020840152611c90816040850160208701611c50565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114611cba575f80fd5b919050565b5f8060408385031215611cd0575f80fd5b611cd983611ca4565b946020939093013593505050565b5f60208284031215611cf7575f80fd5b5035919050565b5f805f60608486031215611d10575f80fd5b611d1984611ca4565b9250611d2760208501611ca4565b9150604084013590509250925092565b5f815180845260208085019450602084015f5b83811015611d6f5781516001600160a01b031687529582019590820190600101611d4a565b509495945050505050565b602081525f611d8c6020830184611d37565b9392505050565b5f60208284031215611da3575f80fd5b611d8c82611ca4565b8015158114610954575f80fd5b5f60208284031215611dc9575f80fd5b8135611d8c81611dac565b5f8060408385031215611de5575f80fd5b611dee83611ca4565b91506020830135611dfe81611dac565b809150509250929050565b5f8060408385031215611e1a575f80fd5b611e2383611ca4565b9150611e3160208401611ca4565b90509250929050565b5f805f60608486031215611e4c575f80fd5b505081359360208301359350604090920135919050565b600181811c90821680611e7757607f821691505b602082108103611e9557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156107ab576107ab611ec3565b5f60208284031215611efa575f80fd5b5051919050565b5f60208284031215611f11575f80fd5b8151611d8c81611dac565b818103818111156107ab576107ab611ec3565b80820281158282048414176107ab576107ab611ec3565b5f82611f6057634e487b7160e01b5f52601260045260245ffd5b500490565b85815284602082015260a060408201525f611f8360a0830186611d37565b6001600160a01b0394909416606083015250608001529392505050565b5f8251611fb1818460208701611c50565b919091019291505056fea26469706673582212203c2423e4d722f724251a730087b6cc16b187ada7c8edd2d98e9e2bff8dec060b64736f6c63430008160033608060405234801561000f575f80fd5b5060405161106538038061106583398101604081905261002e916100ce565b61003733610068565b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055610106565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146100cb575f80fd5b50565b5f80604083850312156100df575f80fd5b82516100ea816100b7565b60208401519092506100fb816100b7565b809150509250929050565b610f52806101135f395ff3fe60806040526004361061009a575f3560e01c806398d079b01161006257806398d079b01461014c578063c884ef831461016b578063dd8d74d814610196578063e4f376f0146101c5578063f2fde38b146101ff578063f53a73601461021e575f80fd5b8063228cb7331461009e5780632e05111d146100da57806367717e2a146100ef578063715018a61461011c5780638da5cb5b14610130575b5f80fd5b3480156100a9575f80fd5b506002546100bd906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100ed6100e8366004610c80565b610226565b005b3480156100fa575f80fd5b5061010e610109366004610d0d565b61039e565b6040519081526020016100d1565b348015610127575f80fd5b506100ed6103d8565b34801561013b575f80fd5b505f546001600160a01b03166100bd565b348015610157575f80fd5b506100ed610166366004610d60565b6103eb565b348015610176575f80fd5b5061010e610185366004610d60565b60046020525f908152604090205481565b3480156101a1575f80fd5b506101b56101b0366004610d80565b610473565b60405190151581526020016100d1565b3480156101d0575f80fd5b506101b56101df366004610dc4565b805160208183018101805160038252928201919093012091525460ff1681565b34801561020a575f80fd5b506100ed610219366004610d60565b6104c5565b6100ed61053b565b6102308282610473565b6102815760405162461bcd60e51b815260206004820152601860248201527f506c7a206d696e74207468726f7567682077656273697465000000000000000060448201526064015b60405180910390fd5b6003836040516102919190610e18565b9081526040519081900360200190205460ff16156102df5760405162461bcd60e51b815260206004820152600b60248201526a12185cda081c995d5cd95960aa1b6044820152606401610278565b816102eb33868661039e565b146103265760405162461bcd60e51b815260206004820152600b60248201526a12185cda0819985a5b195960aa1b6044820152606401610278565b335f8181526004602052604090205461035791906103449087610e33565b6002546001600160a01b0316919061061d565b60016003846040516103699190610e18565b9081526040805160209281900383019020805460ff191693151593909317909255335f90815260049091522093909355505050565b5f80848484306040516020016103b79493929190610e52565b60408051808303601f19018152919052805160209091012095945050505050565b6103e0610674565b6103e95f6106cd565b565b6103f3610674565b6040516370a0823160e01b81523060048201526104709033906001600160a01b038416906370a0823190602401602060405180830381865afa15801561043b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045f9190610ea0565b6001600160a01b038416919061061d565b50565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c839052603c81206104ab908361071c565b6001546001600160a01b0390811691161490505b92915050565b6104cd610674565b6001600160a01b0381166105325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610278565b610470816106cd565b610543610674565b47806105915760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610278565b6040515f90339083908381818185875af1925050503d805f81146105d0576040519150601f19603f3d011682016040523d82523d5f602084013e6105d5565b606091505b50509050806106195760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610278565b5050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261066f90849061073e565b505050565b5f546001600160a01b031633146103e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610278565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f805f6107298585610811565b9150915061073681610853565b509392505050565b5f610792826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661099c9092919063ffffffff16565b905080515f14806107b25750808060200190518101906107b29190610eb7565b61066f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610278565b5f808251604103610845576020830151604084015160608501515f1a610839878285856109b2565b9450945050505061084c565b505f905060025b9250929050565b5f81600481111561086657610866610ed6565b0361086e5750565b600181600481111561088257610882610ed6565b036108cf5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610278565b60028160048111156108e3576108e3610ed6565b036109305760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610278565b600381600481111561094457610944610ed6565b036104705760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610278565b60606109aa84845f85610a6f565b949350505050565b5f807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156109e757505f90506003610a66565b604080515f8082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610a38573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116610a60575f60019250925050610a66565b91505f90505b94509492505050565b606082471015610ad05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610278565b5f80866001600160a01b03168587604051610aeb9190610e18565b5f6040518083038185875af1925050503d805f8114610b25576040519150601f19603f3d011682016040523d82523d5f602084013e610b2a565b606091505b5091509150610b3b87838387610b46565b979650505050505050565b60608315610bb45782515f03610bad576001600160a01b0385163b610bad5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610278565b50816109aa565b6109aa8383815115610bc95781518083602001fd5b8060405162461bcd60e51b81526004016102789190610eea565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610c06575f80fd5b813567ffffffffffffffff80821115610c2157610c21610be3565b604051601f8301601f19908116603f01168101908282118183101715610c4957610c49610be3565b81604052838152866020858801011115610c61575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f805f8060808587031215610c93575f80fd5b84359350602085013567ffffffffffffffff80821115610cb1575f80fd5b610cbd88838901610bf7565b9450604087013593506060870135915080821115610cd9575f80fd5b50610ce687828801610bf7565b91505092959194509250565b80356001600160a01b0381168114610d08575f80fd5b919050565b5f805f60608486031215610d1f575f80fd5b610d2884610cf2565b925060208401359150604084013567ffffffffffffffff811115610d4a575f80fd5b610d5686828701610bf7565b9150509250925092565b5f60208284031215610d70575f80fd5b610d7982610cf2565b9392505050565b5f8060408385031215610d91575f80fd5b82359150602083013567ffffffffffffffff811115610dae575f80fd5b610dba85828601610bf7565b9150509250929050565b5f60208284031215610dd4575f80fd5b813567ffffffffffffffff811115610dea575f80fd5b6109aa84828501610bf7565b5f5b83811015610e10578181015183820152602001610df8565b50505f910152565b5f8251610e29818460208701610df6565b9190910192915050565b818103818111156104bf57634e487b7160e01b5f52601160045260245ffd5b5f6bffffffffffffffffffffffff19808760601b1683528560148401528451610e82816034860160208901610df6565b60609490941b16919092016034810191909152604801949350505050565b5f60208284031215610eb0575f80fd5b5051919050565b5f60208284031215610ec7575f80fd5b81518015158114610d79575f80fd5b634e487b7160e01b5f52602160045260245ffd5b602081525f8251806020840152610f08816040850160208701610df6565b601f01601f1916919091016040019291505056fea26469706673582212201b02fea02a73de5ebe09c60dd8444dc4e56d8b3dc344f440a45cd4b0311eb7e664736f6c63430008160033

Deployed Bytecode

0x608060405260043610610220575f3560e01c8063715018a61161011e578063bea9849e116100a8578063dd62ed3e1161006d578063dd62ed3e1461066f578063e9dae5ed1461068e578063ed72d07f146106ad578063f2fde38b146106e1578063f53a736014610700575f80fd5b8063bea9849e146105d4578063c816841b146105f3578063c89c58fb14610612578063d5aed6bf14610631578063db3543f514610650575f80fd5b80638da5cb5b116100ee5780638da5cb5b1461054657806395d89b411461056357806398d079b014610577578063a457c2d714610596578063a9059cbb146105b5575f80fd5b8063715018a6146104d5578063735de9f7146104e957806379cc6790146105085780637c00029314610527575f80fd5b8063313ce567116101aa578063528e79661161016f578063528e79661461042557806353d6fd591461044457806363d697511461046357806369ed5f9a1461048257806370a08231146104a1575f80fd5b8063313ce5671461038e57806339509351146103a95780633fc8cef3146103c857806342966c68146103e7578063480f5e1614610406575f80fd5b806323b872dd116101f057806323b872dd146102c35780632973ef2d146102e25780632b4548871461030c5780632c66bef6146103385780632f48ab7d14610357575f80fd5b806306fdde031461022b578063095ea7b3146102555780630b56b4c51461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f610708565b60405161024c9190611c72565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611cbf565b610798565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611ce7565b6107b1565b005b3480156102b0575f80fd5b506002545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611cfe565b6107f5565b3480156102ed575f80fd5b50604080515f808252602082018190529181019190915260600161024c565b348015610317575f80fd5b5061032b610326366004611cbf565b610818565b60405161024c9190611d7a565b348015610343575f80fd5b506102a3610352366004611d93565b6108d3565b348015610362575f80fd5b50601354610376906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610399575f80fd5b506040516012815260200161024c565b3480156103b4575f80fd5b506102746103c3366004611cbf565b610929565b3480156103d3575f80fd5b50601254610376906001600160a01b031681565b3480156103f2575f80fd5b506102a3610401366004611ce7565b61094a565b348015610411575f80fd5b50601554610376906001600160a01b031681565b348015610430575f80fd5b506102a361043f366004611db9565b610957565b34801561044f575f80fd5b506102a361045e366004611dd4565b6109a0565b34801561046e575f80fd5b506102a361047d366004611ce7565b610a0b565b34801561048d575f80fd5b50601454610376906001600160a01b031681565b3480156104ac575f80fd5b506102b56104bb366004611d93565b6001600160a01b03165f9081526020819052604090205490565b3480156104e0575f80fd5b506102a3610a18565b3480156104f4575f80fd5b50601054610376906001600160a01b031681565b348015610513575f80fd5b506102a3610522366004611cbf565b610a2b565b348015610532575f80fd5b506102a3610541366004611d93565b610a44565b348015610551575f80fd5b506005546001600160a01b0316610376565b34801561056e575f80fd5b5061023f610a9a565b348015610582575f80fd5b506102a3610591366004611d93565b610aa9565b3480156105a1575f80fd5b506102746105b0366004611cbf565b610b2e565b3480156105c0575f80fd5b506102746105cf366004611cbf565b610bad565b3480156105df575f80fd5b506102a36105ee366004611d93565b610bba565b3480156105fe575f80fd5b50601154610376906001600160a01b031681565b34801561061d575f80fd5b506102a361062c366004611dd4565b610c9b565b34801561063c575f80fd5b506102a361064b366004611d93565b610cfe565b34801561065b575f80fd5b506102a361066a366004611d93565b610d6d565b34801561067a575f80fd5b506102b5610689366004611e09565b610dc3565b348015610699575f80fd5b506102a36106a8366004611e3a565b610ded565b3480156106b8575f80fd5b506103766106c7366004611d93565b60086020525f90815260409020546001600160a01b031681565b3480156106ec575f80fd5b506102a36106fb366004611d93565b610e4a565b6102a3610ec0565b60606003805461071790611e63565b80601f016020809104026020016040519081016040528092919081815260200182805461074390611e63565b801561078e5780601f106107655761010080835404028352916020019161078e565b820191905f5260205f20905b81548152906001019060200180831161077157829003601f168201915b5050505050905090565b5f336107a5818585610f9e565b60019150505b92915050565b6107b96110c2565b600d8190556040518181527f408a4b28acc04b40f043becb29f39240a65737da135ce23eb24590953d1d8a53906020015b60405180910390a150565b5f3361080285828561111c565b61080d858585611194565b506001949350505050565b60605f8267ffffffffffffffff81111561083457610834611e9b565b60405190808252806020026020018201604052801561085d578160200160208202803683370190505b509050835f5b848110156108c9576001600160a01b039182165f90815260086020526040902054821691861682146108955781610897565b5f5b8382815181106108a9576108a9611eaf565b6001600160a01b0390921660209283029190910190910152600101610863565b5090949350505050565b6108db6110c2565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527fb6a0270ec8c3aec5fa497494554f255b70faaa6797a92e7e6eb4ec8b109b3581906020016107ea565b5f336107a581858561093b8383610dc3565b6109459190611ed7565b610f9e565b6109543382611491565b50565b61095f6110c2565b6009805460ff19168215159081179091556040519081527f1547784627700c825c3128c535ff95e40792bf4f8ff689e57190d3358aacddcf906020016107ea565b6109a86110c2565b6001600160a01b0382165f81815260076020908152604091829020805460ff19168515159081179091558251938452908301527fe41efe2ec3272dff61fc1d94fe807a61b44e66814abe5f463e98a100b9bb852c91015b60405180910390a15050565b610a136110c2565b600e55565b610a206110c2565b610a295f6115c9565b565b610a3682338361111c565b610a408282611491565b5050565b610a4c6110c2565b601580546001600160a01b0319166001600160a01b0383169081179091556040519081527f58c65e809cfebd455da95c614e6de51df5e2306adbb70d52bcd1d3dbaaae1900906020016107ea565b60606004805461071790611e63565b610ab16110c2565b6040516370a0823160e01b81523060048201526109549033906001600160a01b038416906370a0823190602401602060405180830381865afa158015610af9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1d9190611eea565b6001600160a01b038416919061161a565b5f3381610b3b8286610dc3565b905083811015610ba05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61080d8286868403610f9e565b5f336107a5818585611194565b610bc26110c2565b601080546001600160a01b0319166001600160a01b03831690811790915560405163095ea7b360e01b815260048101919091525f196024820152309063095ea7b3906044016020604051808303815f875af1158015610c23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c479190611f01565b506001600160a01b0381165f81815260066020908152604091829020805460ff1916600117905590519182527fc3370837d36e0b5a52462acdfb6b6d422f06c5e62820cd3d6301c45d7d4504b891016107ea565b610ca36110c2565b6001600160a01b0382165f81815260066020908152604091829020805460ff19168515159081179091558251938452908301527f50d3135c1831a86bdc04740f17c94415767240d338df5795b37fb5b8272f80d791016109ff565b610d066110c2565b601180546001600160a01b0319166001600160a01b0383169081179091555f81815260066020908152604091829020805460ff1916600117905590519182527f78fe1b135e723cf7b4eb04b29415cfae977196d731a6ef36af44f642e29fab3891016107ea565b610d756110c2565b600f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f65a5f1cdf357c8dc7493e5c23458074b932fa061c955e469abd211494c218076906020016107ea565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610df56110c2565b600a839055600b829055600c81905560408051848152602081018490529081018290527f974ea01e0a2eeb25b80d7bd88349dc59f448362f9aa430217c708d916924aaae9060600160405180910390a1505050565b610e526110c2565b6001600160a01b038116610eb75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b97565b610954816115c9565b610ec86110c2565b4780610f165760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610b97565b6040515f90339083908381818185875af1925050503d805f8114610f55576040519150601f19603f3d011682016040523d82523d5f602084013e610f5a565b606091505b5050905080610a405760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b97565b6001600160a01b0383166110005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b97565b6001600160a01b0382166110615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b97565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b97565b5f6111278484610dc3565b90505f19811461118e57818110156111815760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b97565b61118e8484848403610f9e565b50505050565b806111b3846001600160a01b03165f9081526020819052604090205490565b036111c6576111c3600182611f1c565b90505b6111cf8361166c565b600e546111dc9082611f1c565b6001600160a01b0383165f90815260066020526040812054919250908190819060ff1615156001148061122b57506001600160a01b0386165f9081526006602052604090205460ff1615156001145b1561128857612710600a54856112419190611f2f565b61124b9190611f46565b9250612710600b548561125e9190611f2f565b6112689190611f46565b9150612710600c548561127b9190611f2f565b6112859190611f46565b90505b6001600160a01b0386165f9081526007602052604090205460ff16806112c557506001600160a01b0385165f9081526007602052604090205460ff165b156112d357505f9150819050805b6001600160a01b0386165f9081526006602052604090205460ff161515600114801561131b57506001600160a01b0385165f9081526006602052604090205460ff1615156001145b1561132957505f9150819050805b8215611347576015546113479087906001600160a01b0316856116cf565b811561144f576001600160a01b0386165f9081526006602052604090205460ff16151560010361138e57600f546113899087906001600160a01b0316846116cf565b61144f565b60095460ff1615611437576113a48630846116cf565b6010546014546001600160a01b0391821691635c11d7959185915f916113cc9130911661187c565b600f546001600160a01b03166113e54262015180611ed7565b6040518663ffffffff1660e01b8152600401611405959493929190611f65565b5f604051808303815f87803b15801561141c575f80fd5b505af115801561142e573d5f803e3d5ffd5b5050505061144f565b600f5461144f9087906001600160a01b0316846116cf565b801561145f5761145f8682611491565b61148986868385611470888a611f1c565b61147a9190611f1c565b6114849190611f1c565b6116cf565b505050505050565b6001600160a01b0382166114f15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b97565b6114fc825f83611907565b6001600160a01b0382165f908152602081905260409020548181101561156f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610b97565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110b5565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526115c49084906119f3565b600e5415610954575f5b600e54811015610a4057604080516020810183905243918101919091524460608201524260808201526116c790839060a001604051602081830303815290604052805190602001205f1c60016116cf565b600101611676565b6001600160a01b0383166117335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b97565b6001600160a01b0382166117955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b97565b6117a0838383611907565b6001600160a01b0383165f90815260208190526040902054818110156118175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b97565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118e565b60408051600280825260608083018452925f92919060208301908036833701905050905083815f815181106118b3576118b3611eaf565b60200260200101906001600160a01b031690816001600160a01b03168152505082816001815181106118e7576118e7611eaf565b6001600160a01b0390921660209283029190910190910152905092915050565b6001600160a01b038281165f908152600860205260409020541615801561194657506001600160a01b0383165f9081526006602052604090205460ff16155b801561196a57506001600160a01b0382165f9081526006602052604090205460ff16155b801561198e57506001600160a01b0383165f9081526007602052604090205460ff16155b80156119b257506001600160a01b0382165f9081526007602052604090205460ff16155b80156119bc575060015b156115c4576001600160a01b038281165f90815260086020526040902080546001600160a01b031916918516919091179055505050565b5f611a47826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ac69092919063ffffffff16565b905080515f1480611a67575080806020019051810190611a679190611f01565b6115c45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b97565b6060611ad484845f85611adc565b949350505050565b606082471015611b3d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610b97565b5f80866001600160a01b03168587604051611b589190611fa0565b5f6040518083038185875af1925050503d805f8114611b92576040519150601f19603f3d011682016040523d82523d5f602084013e611b97565b606091505b5091509150611ba887838387611bb3565b979650505050505050565b60608315611c215782515f03611c1a576001600160a01b0385163b611c1a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b97565b5081611ad4565b611ad48383815115611c365781518083602001fd5b8060405162461bcd60e51b8152600401610b979190611c72565b5f5b83811015611c6a578181015183820152602001611c52565b50505f910152565b602081525f8251806020840152611c90816040850160208701611c50565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114611cba575f80fd5b919050565b5f8060408385031215611cd0575f80fd5b611cd983611ca4565b946020939093013593505050565b5f60208284031215611cf7575f80fd5b5035919050565b5f805f60608486031215611d10575f80fd5b611d1984611ca4565b9250611d2760208501611ca4565b9150604084013590509250925092565b5f815180845260208085019450602084015f5b83811015611d6f5781516001600160a01b031687529582019590820190600101611d4a565b509495945050505050565b602081525f611d8c6020830184611d37565b9392505050565b5f60208284031215611da3575f80fd5b611d8c82611ca4565b8015158114610954575f80fd5b5f60208284031215611dc9575f80fd5b8135611d8c81611dac565b5f8060408385031215611de5575f80fd5b611dee83611ca4565b91506020830135611dfe81611dac565b809150509250929050565b5f8060408385031215611e1a575f80fd5b611e2383611ca4565b9150611e3160208401611ca4565b90509250929050565b5f805f60608486031215611e4c575f80fd5b505081359360208301359350604090920135919050565b600181811c90821680611e7757607f821691505b602082108103611e9557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156107ab576107ab611ec3565b5f60208284031215611efa575f80fd5b5051919050565b5f60208284031215611f11575f80fd5b8151611d8c81611dac565b818103818111156107ab576107ab611ec3565b80820281158282048414176107ab576107ab611ec3565b5f82611f6057634e487b7160e01b5f52601260045260245ffd5b500490565b85815284602082015260a060408201525f611f8360a0830186611d37565b6001600160a01b0394909416606083015250608001529392505050565b5f8251611fb1818460208701611c50565b919091019291505056fea26469706673582212203c2423e4d722f724251a730087b6cc16b187ada7c8edd2d98e9e2bff8dec060b64736f6c63430008160033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.