ETH Price: $3,356.50 (-8.51%)

Token

AstraDex AI (ADEX)
 

Overview

Max Total Supply

21,000,000 ADEX

Holders

598

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,634.8 ADEX

Value
$0.00
0xc5da2bf4e7f92b2614df0150cf81a5b6433a56d9
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:
ADEX

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : ADEX Token Contract.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.27;
/*

░█▀█░█▀▀░▀█▀░█▀▄░█▀█░█▀▄░█▀▀░█░█░░░█▀█░▀█▀░
░█▀█░▀▀█░░█░░█▀▄░█▀█░█░█░█▀▀░▄▀▄░░░█▀█░░█░░
░▀░▀░▀▀▀░░▀░░▀░▀░▀░▀░▀▀░░▀▀▀░▀░▀░░░▀░▀░▀▀▀░

*/
import "@openzeppelin/contracts/access/Ownable2Step.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

interface Token {
    function manualSwap(uint256 percent) external;
    function claimOtherERC20(address token, uint256 amount) external;
}

/// subcontract for spliting marketing eth to 3 wallets
/// as per there share
contract MarketingEthHandler is Ownable2Step {
    //// set your fee wallet address here
    address public feeWallet1 = address(0xBe68c1ED8F6dAF8E6A49e6708A385f297AD8BeFD);
    address public feeWallet2 = address(0x75D5A3d499F6699Dc0AdC6b5Af2b842F471aFF86);
    address public feeWallet3 = address(0x0217bf3B734ec896F17f4D359e7C8A382aF49a3e);

    uint256 public feeWallet1Share;
    uint256 public feeWallet2Share;
    uint256 public feeWallet3Share;
    Token public adex;
    uint256 public totalShares;

    bool autoForwardEnabled = true;

    error EthTransferFailed();

    constructor(address owner, address token) Ownable(owner) {
        adex = Token(token);

        feeWallet1Share = 20;
        feeWallet2Share = 20;
        feeWallet3Share = 60;
        totalShares = feeWallet1Share + feeWallet2Share + feeWallet3Share;
    }

    receive() external payable {
        if (autoForwardEnabled) {
            bool sent;
            uint256 totalEth = msg.value;
            uint256 w1 = (totalEth * feeWallet1Share) / totalShares;
            uint256 w2 = (totalEth * feeWallet2Share) / totalShares;
            uint256 w3 = totalEth - w1 - w2;
            if (w1 > 0) {
                (sent, ) = feeWallet1.call{value: w1}("");
            }
            if (w2 > 0) {
                (sent, ) = feeWallet2.call{value: w2}("");
            }
            if (w3 > 0) (sent, ) = feeWallet3.call{value: w3}("");
        }
    }

    /// @dev update fee wallets
    /// @param _w1 new fee wallet1
    /// @param _w2 new fee wallet2
    /// @param _w3 new fee wallet3
    function setFeeWallets(
        address _w1,
        address _w2,
        address _w3
    ) external onlyOwner {
        feeWallet1 = _w1;
        feeWallet2 = _w2;
        feeWallet3 = _w3;
    }

    /// @dev wallets shares
    /// @param _w1Share: first wallet share
    /// @param _w2Share: second wallet share
    /// @param _w3Share: third wallet share
    function setWalletShares(
        uint256 _w1Share,
        uint256 _w2Share,
        uint256 _w3Share
    ) external onlyOwner {
        feeWallet1Share = _w1Share;
        feeWallet2Share = _w2Share;
        feeWallet3Share = _w3Share;
        totalShares = _w1Share + _w2Share + _w3Share;
    }

    /// toggle b/w auto forward  and manual mode
    function toggleAutoForward() external onlyOwner {
        autoForwardEnabled = !autoForwardEnabled;
    }

    /// claim eth manually
    function claimETH() external onlyOwner {
        (bool sent, ) = owner().call{value: address(this).balance}("");
        require(sent, EthTransferFailed());
    }

    /// call manual swap on token
    function manualSwap(uint256 percent) external onlyOwner {
        adex.manualSwap(percent);
    }

    // function any stuck erc20 on token
    function claimERC20FromTokenContract(
        address token,
        uint256 amount
    ) external onlyOwner {
        adex.claimOtherERC20(token, amount);
    }

    /// claim any erc20 token
    function claimAnyERC20(address _token, uint256 _amount) external onlyOwner {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = _token.call(
            abi.encodeWithSelector(0xa9059cbb, msg.sender, _amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "TransferHelper::safeTransfer: transfer failed"
        );
    }
}

/// ADEX is an ERC20 token
contract ADEX is ERC20, Ownable2Step {
    /// custom errors
    error CannotRemoveMainPair();
    error ZeroAddressNotAllowed();
    error FeesLimitExceeds();
    error CannotBlacklistLPPair();
    error UpdateBoolValue();
    error CannotClaimNativeToken();
    error AmountTooLow();
    error OnlyOwnerOrMarketingWallet();
    error BlacklistedUser();

    /// @notice Max limit on Buy / Sell fees
    uint256 public constant MAX_FEE_LIMIT = 10;
    /// @notice max total supply 21 million tokens (18 decimals)
    uint256 private maxSupply = 21_000_000 * 1e18;
    /// @notice swap threshold at which collected fees tokens are swapped for ether, autoLP
    uint256 public swapTokensAtAmount = 2_000 * 1e18;
    /// @notice check if it's a swap tx
    bool private inSwap = false;

    /// @notice struct buy fees variable
    /// marketing: marketing fees
    /// autoLP: liquidity fees
    struct BuyFees {
        uint16 marketing;
        uint16 autoLP;
    }
    /// @notice struct sell fees variable
    /// marketing: marketing fees
    /// autoLP: liquidity fees
    struct SellFees {
        uint16 marketing;
        uint16 autoLP;
    }

    /// @notice buyFees variable
    BuyFees public buyFee;
    /// @notice sellFees variable
    SellFees public sellFee;

    ///@notice number of txns
    uint256 private txCounter;

    /// @notice totalBuyFees
    uint256 private totalBuyFee;
    /// @notice totalSellFees
    uint256 private totalSellFee;
    /// @notice tax mode
    bool private normalMode;

    /// @notice marketingWallet
    address public marketingWallet;
    /// @notice uniswap V2 router address
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice uniswap V2 Pair address
    address public uniswapV2Pair;

    /// @notice mapping to manager liquidity pairs
    mapping(address => bool) public isAutomatedMarketMaker;
    /// @notice mapping to manage excluded address from/to fees
    mapping(address => bool) public isExcludedFromFees;
    /// @notice mapping to manage blacklist
    mapping(address => bool) public isBlacklisted;

    //// EVENTS ////
    event BuyFeesUpdated(
        uint16 indexed marketingFee,
        uint16 indexed liquidityFee
    );
    event SellFeesUpdated(
        uint16 indexed marketingFee,
        uint16 indexed liquidityFee
    );
    event FeesSwapped(
        uint256 indexed ethForLiquidity,
        uint256 indexed tokensForLiquidity,
        uint256 indexed ethForMarketing
    );

    /// @dev create an erc20 token using openzeppeling ERC20, Ownable2Step
    /// uses uniswap router and factory interface
    /// set uniswap router, create pair, initialize buy, sell fees, marketingWallet values
    /// excludes the token, marketingWallet and owner address from fees
    /// and mint all the supply to owner wallet.
    constructor() ERC20("AstraDex AI", "ADEX") Ownable(msg.sender) {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );
        isAutomatedMarketMaker[uniswapV2Pair] = true;

        /// normal trade values after antisnipe period
        buyFee.marketing = 5;
        buyFee.autoLP = 0;
        totalBuyFee = 5;

        sellFee.marketing = 5;
        sellFee.autoLP = 0;
        totalSellFee = 5;
        MarketingEthHandler m = new MarketingEthHandler(
            /// paste owner address to control marketing eth handler contract
            address(0xc907203eb3A876AF711E733D2B5589011D52B857),
            msg.sender
        );

        marketingWallet = address(m);

        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[marketingWallet] = true;
        isExcludedFromFees[owner()] = true;
        _mint(msg.sender, maxSupply);
    }

    /// modifier  ///
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    /// receive external ether
    receive() external payable {}

    /// @dev owner can claim other erc20 tokens, if accidently sent by someone
    /// @param _token: token address to be rescued
    /// @param _amount: amount to rescued
    /// Requirements --
    /// Cannot claim native token
    function claimOtherERC20(address _token, uint256 _amount) external {
        if (msg.sender != marketingWallet && msg.sender != owner()) {
            revert OnlyOwnerOrMarketingWallet();
        }
        if (_token == address(this)) {
            revert CannotClaimNativeToken();
        }
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = _token.call(
            abi.encodeWithSelector(0xa9059cbb, msg.sender, _amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "TransferHelper::safeTransfer: transfer failed"
        );
    }

    /// @dev exclude or include a user from/to fees
    /// @param user: user address
    /// @param value: boolean value. true means excluded. false means included
    /// Requirements --
    /// zero address not allowed
    /// if a user is excluded already, can't exlude him again
    function excludeFromFees(address user, bool value) external onlyOwner {
        if (user == address(0)) {
            revert ZeroAddressNotAllowed();
        }
        if (isExcludedFromFees[user] == value) {
            revert UpdateBoolValue();
        }
        isExcludedFromFees[user] = value;
    }

    /// @dev exclude or include a user from/to blacklist
    /// @param user: user address
    /// @param value: boolean value. true means blacklisted. false means unblacklisted
    /// Requirements --
    /// zero address not allowed
    /// if a user is blacklisted already, can't blacklist him again
    function blacklist(address user, bool value) external onlyOwner {
        if (user == address(0)) {
            revert ZeroAddressNotAllowed();
        }
        if (isBlacklisted[user] == value) {
            revert UpdateBoolValue();
        }
        isBlacklisted[user] = value;
    }

    /// @dev add or remove new pairs
    /// @param _newPair: address to be added or removed as pair
    /// @param value: boolean value, true means pair is added, false means pair is removed
    /// Requirements --
    /// address should not be zero
    /// Can not remove main pair
    /// can not add already added pairs  and vice versa
    function manageLiquidityPairs(
        address _newPair,
        bool value
    ) external onlyOwner {
        if (_newPair == address(0)) {
            revert ZeroAddressNotAllowed();
        }
        if (_newPair == uniswapV2Pair) {
            revert CannotRemoveMainPair();
        }
        if (isAutomatedMarketMaker[_newPair] == value) {
            revert UpdateBoolValue();
        }
        isAutomatedMarketMaker[_newPair] = value;
    }

    /// update marketing wallet address
    function updateMarketingWallet(
        address _newMarketingWallet
    ) external onlyOwner {
        if (_newMarketingWallet == address(0)) {
            revert ZeroAddressNotAllowed();
        }
        marketingWallet = _newMarketingWallet;
    }

    /// @dev update swap tokens at amount threshold
    /// @param amount: new threshold amount
    function updateSwapTokensAtAmount(uint256 amount) external onlyOwner {
        swapTokensAtAmount = amount * 1e18;
    }

    /// @dev update buy fees
    /// @param _marketing: marketing fees
    /// @param _autoLP: liquidity fees
    /// Requirements --
    /// total Buy fees must be less than equals to MAX_FEE_LIMIT (10%);
    function updateBuyFees(
        uint16 _marketing,
        uint16 _autoLP
    ) external onlyOwner {
        if (_marketing + _autoLP > MAX_FEE_LIMIT) {
            revert FeesLimitExceeds();
        }
        buyFee.marketing = _marketing;
        buyFee.autoLP = _autoLP;
        totalBuyFee = _marketing + _autoLP;
        emit BuyFeesUpdated(_marketing, _autoLP);
    }

    /// @dev update sell fees
    /// @param _marketing: marketing fees
    /// @param _autoLP: liquidity fees
    /// Requirements --
    /// total Sell fees must be less than equals to MAX_FEE_LIMIT (10%);
    function updateSellFees(
        uint16 _marketing,
        uint16 _autoLP
    ) external onlyOwner {
        if (_marketing + _autoLP > MAX_FEE_LIMIT) {
            revert FeesLimitExceeds();
        }
        sellFee.marketing = _marketing;
        sellFee.autoLP = _autoLP;
        totalSellFee = _marketing + _autoLP;
        emit SellFeesUpdated(_marketing, _autoLP);
    }

    /// @dev switch to normal tax instantly
    function switchToNormalTax() external onlyOwner {
        normalMode = true;
    }

    /// @notice manage transfers, fees
    /// see {ERC20 - _update}
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (isBlacklisted[from] || isBlacklisted[to]) {
            revert BlacklistedUser();
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        uint256 contractBalance = balanceOf(address(this));
        bool canSwapped = contractBalance >= swapTokensAtAmount;
        if (
            canSwapped &&
            !isAutomatedMarketMaker[from] &&
            !inSwap &&
            !isExcludedFromFees[from] &&
            !isExcludedFromFees[to]
        ) {
            swapAndLiquify(contractBalance);
        }

        bool takeFee = true;
        if (isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        /// intial transfer fee
        /// get transfer  tax based on transfer txn count,
        /// only for first 30 transfers (i.e any transfer)
        uint256 transferTax = calculateTransferTax();
        uint256 totalTax = 0;

        if (takeFee) {
            txCounter++;
            if (isAutomatedMarketMaker[from] && totalBuyFee > 0) {
                uint256 buyTax = calculateBuyTax();
                totalTax = transferTax + buyTax;
                fees = (amount * totalTax) / 100;
            } else if (isAutomatedMarketMaker[to] && totalSellFee > 0) {
                uint256 sellTax = calculateSellTax();
                totalTax = transferTax + sellTax;
                fees = (amount * totalTax) / 100;
            } else {
                fees = (amount * transferTax) / 100;
            }
            if (fees > 0) {
                super._update(from, address(this), fees);
                amount = amount - fees;
            }
        }
        super._update(from, to, amount);
    }

    /// @notice swap the collected fees to eth / add liquidity
    /// after conversion, it sends eth to marketing wallet, add auto liquidity
    /// @param tokenAmount: tokens to be swapped appropriately as per fee structure
    function swapAndLiquify(uint256 tokenAmount) private lockTheSwap {
        if (totalBuyFee + totalSellFee == 0) {
            swapTokensForEth(tokenAmount);
            bool m;
            (m, ) = payable(marketingWallet).call{value: address(this).balance}(
                ""
            );
        } else {
            uint256 marketingTokens = ((buyFee.marketing + sellFee.marketing) *
                tokenAmount) / (totalBuyFee + totalSellFee);
            uint256 liquidityTokens = tokenAmount - marketingTokens;
            uint256 liquidityTokensHalf = liquidityTokens / 2;
            uint256 swapTokens = tokenAmount - liquidityTokensHalf;
            uint256 ethBalanceBeforeSwap = address(this).balance;
            swapTokensForEth(swapTokens);

            uint256 ethBalanceAfterSwap = address(this).balance -
                ethBalanceBeforeSwap;
            uint256 ethForLiquidity = (liquidityTokensHalf *
                ethBalanceAfterSwap) / swapTokens;
            if (ethForLiquidity > 0 && liquidityTokensHalf > 0) {
                addLiquidity(liquidityTokensHalf, ethForLiquidity);
            }
            bool success;
            uint256 marketingEth = address(this).balance;
            if (marketingEth > 0) {
                (success, ) = payable(marketingWallet).call{
                    value: marketingEth
                }("");
            }

            emit FeesSwapped(
                ethForLiquidity,
                liquidityTokensHalf,
                marketingEth
            );
        }
    }

    /// @notice manages tokens conversion to eth
    /// @param tokenAmount: tokens to be converted to eth
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        if (allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
            _approve(
                address(this),
                address(uniswapV2Router),
                type(uint256).max
            );
        }

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

    /// @notice manage autoLP (liquidity addition)
    /// @param tokenAmount: tokens to be added to liquidity
    /// @param ethAmount: eth to be added to liquidity
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(), // LP tokens recevier
            block.timestamp
        );
    }

    /// @notice convert all or some percentage of collected tax to eth
    /// @param percentage: percentage of collected tax to swap
    function manualSwap(uint256 percentage) external lockTheSwap {
        if (msg.sender != marketingWallet && msg.sender != owner()) {
            revert OnlyOwnerOrMarketingWallet();
        }
        uint256 tokens = balanceOf(address(this));
        uint256 amount = (tokens * percentage) / 100;
        swapTokensForEth(amount);
        uint256 ethAmount = address(this).balance;
        bool success;
        (success, ) = payable(marketingWallet).call{value: ethAmount}("");
    }

    /// calculate Buy tax based on the txns after initial launch
    function calculateBuyTax() internal view returns (uint256) {
        if (normalMode) {
            return totalBuyFee;
        } else {
            if (txCounter <= 10) {
                return 25;
            } else if (txCounter <= 20) {
                return 20;
            } else if (txCounter <= 25) {
                return 15;
            } else if (txCounter <= 30) {
                return 10;
            } else {
                return totalBuyFee;
            }
        }
    }

    /// calculate sell tax based on the txns after initial launch
    function calculateSellTax() internal view returns (uint256) {
        if (normalMode) {
            return totalSellFee;
        } else {
            if (txCounter <= 10) {
                return 25;
            } else if (txCounter <= 20) {
                return 20;
            } else if (txCounter <= 25) {
                return 15;
            } else if (txCounter <= 30) {
                return 10;
            } else {
                return totalSellFee;
            }
        }
    }

    /// calculate transfer tax based on the txns after initial launch
    function calculateTransferTax() internal view returns (uint256) {
        if (normalMode) {
            return 0;
        } else {
            if (txCounter <= 10) {
                return 15;
            } else if (txCounter <= 30) {
                return 10;
            } else {
                return 0;
            }
        }
    }
}

File 2 of 11 : 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 3 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 11 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;

import {Ownable} from "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This extension of the {Ownable} contract includes a two-step mechanism to transfer
 * ownership, where the new owner must call {acceptOwnership} in order to replace the
 * old one. This can help prevent common mistakes, such as transfers of ownership to
 * incorrect accounts, or to contracts that are unable to interact with the
 * permission system.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     *
     * Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

File 6 of 11 : 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 7 of 11 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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 9 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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 10 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 11 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BlacklistedUser","type":"error"},{"inputs":[],"name":"CannotBlacklistLPPair","type":"error"},{"inputs":[],"name":"CannotClaimNativeToken","type":"error"},{"inputs":[],"name":"CannotRemoveMainPair","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FeesLimitExceeds","type":"error"},{"inputs":[],"name":"OnlyOwnerOrMarketingWallet","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"UpdateBoolValue","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"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":"uint16","name":"marketingFee","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"ethForLiquidity","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"ethForMarketing","type":"uint256"}],"name":"FeesSwapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"uint16","name":"marketingFee","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"name":"SellFeesUpdated","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"},{"inputs":[],"name":"MAX_FEE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"autoLP","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimOtherERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAutomatedMarketMaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"manageLiquidityPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"autoLP","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchToNormalTax","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_marketing","type":"uint16"},{"internalType":"uint16","name":"_autoLP","type":"uint16"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_marketing","type":"uint16"},{"internalType":"uint16","name":"_autoLP","type":"uint16"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526a115eec47f6cf7e35000000600755686c6b935b8bbd4000006008556009805460ff19169055348015610035575f5ffd5b50336040518060400160405280600b81526020016a417374726144657820414960a81b81525060405180604001604052806004815260200163082888ab60e31b81525081600390816100879190610ec4565b5060046100948282610ec4565b5050506001600160a01b0381166100c557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100ce81610386565b50737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610122573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101469190610f7e565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610193573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101b79190610f7e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610201573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102259190610f7e565b601080546001600160a01b0319166001600160a01b039290921691821790555f90815260116020526040808220805460ff19166001179055600a8054600563ffffffff199182168117909255600d829055600b805490911682179055600e555173c907203eb3a876af711e733d2b5589011d52b8579033906102a690610e27565b6001600160a01b03928316815291166020820152604001604051809103905ff0801580156102d6573d5f5f3e3d5ffd5b50600f8054610100600160a81b0319166101006001600160a01b038481168202929092178355305f908152601260208190526040808320805460ff1990811660019081179092559654949094049094168252928120805490941682179093559293509061034b6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556007546103809033906103a2565b506110fc565b600680546001600160a01b031916905561039f816103da565b50565b6001600160a01b0382166103cb5760405163ec442f0560e01b81525f60048201526024016100bc565b6103d65f838361042b565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383165f9081526013602052604090205460ff168061046857506001600160a01b0382165f9081526013602052604090205460ff165b156104865760405163d9a60d2d60e01b815260040160405180910390fd5b805f0361049d5761049883835f610691565b505050565b305f90815260208190526040902054600854811080159081906104d857506001600160a01b0385165f9081526011602052604090205460ff16155b80156104e7575060095460ff16155b801561050b57506001600160a01b0385165f9081526012602052604090205460ff16155b801561052f57506001600160a01b0384165f9081526012602052604090205460ff16155b1561053d5761053d826106ee565b6001600160a01b0385165f9081526012602052604090205460019060ff168061057d57506001600160a01b0385165f9081526012602052604090205460ff165b1561058557505f5b5f8061058f6108d7565b90505f831561067b57600c8054905f6105a783610fbf565b90915550506001600160a01b0389165f9081526011602052604090205460ff1680156105d457505f600d54115b1561060e575f6105e261090e565b90506105ee8184610fd7565b915060646105fc838a610fea565b6106069190611001565b93505061065d565b6001600160a01b0388165f9081526011602052604090205460ff16801561063657505f600e54115b15610644575f6105e2610969565b60646106508389610fea565b61065a9190611001565b92505b821561067b5761066e8930856109c4565b6106788388611020565b96505b6106868989896109c4565b505050505050505050565b6001600160a01b0383166106ba57604051634b637e8f60e11b81525f60048201526024016100bc565b6001600160a01b0382166106e35760405163ec442f0560e01b81525f60048201526024016100bc565b61049883838361042b565b6009805460ff19166001179055600e54600d5461070b9190610fd7565b5f036107785761071a81610aea565b600f546040515f9161010090046001600160a01b03169047908381818185875af1925050503d805f8114610769576040519150601f19603f3d011682016040523d82523d5f602084013e61076e565b606091505b506108ca92505050565b5f600e54600d546107899190610fd7565b600b54600a5484916107a29161ffff9182169116611033565b61ffff166107b09190610fea565b6107ba9190611001565b90505f6107c78284611020565b90505f6107d5600283611001565b90505f6107e28286611020565b9050476107ee82610aea565b5f6107f98247611020565b90505f836108078387610fea565b6108119190611001565b90505f8111801561082157505f85115b15610830576108308582610c66565b5f47801561089157600f546040516101009091046001600160a01b03169082905f81818185875af1925050503d805f8114610886576040519150601f19603f3d011682016040523d82523d5f602084013e61088b565b606091505b50909250505b8087847ff8cfc1c15ead481ffc3a2df6126e88c84a6730799e332fcfe2dbc386373d517160405160405180910390a45050505050505050505b506009805460ff19169055565b600f545f9060ff16156108e957505f90565b600a600c54116108f95750600f90565b601e600c54116109095750600a90565b505f90565b600f545f9060ff16156109225750600d5490565b600a600c54116109325750601990565b6014600c54116109425750601490565b6019600c54116109525750600f90565b601e600c54116109625750600a90565b50600d5490565b600f545f9060ff161561097d5750600e5490565b600a600c541161098d5750601990565b6014600c541161099d5750601490565b6019600c54116109ad5750600f90565b601e600c54116109bd5750600a90565b50600e5490565b6001600160a01b0383166109ee578060025f8282546109e39190610fd7565b90915550610a5e9050565b6001600160a01b0383165f9081526020819052604090205481811015610a405760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100bc565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a7a57600280548290039055610a98565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610add91815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610b1d57610b1d61104d565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9f9190610f7e565b81600181518110610bb257610bb261104d565b60200260200101906001600160a01b031690816001600160a01b03168152505081610be530608051610d2060201b60201c565b1015610bff57610bff306080515f19610d4c60201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b8152600401610c35959493929190611061565b5f604051808303815f87803b158015610c4c575f5ffd5b505af1158015610c5e573d5f5f3e3d5ffd5b505050505050565b6080516001600160a01b031663f305d7198230855f80610c8e6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cf4573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610d1991906110d1565b5050505050565b6001600160a01b038083165f908152600160209081526040808320938516835292905220545b92915050565b61049883838360016001600160a01b038416610d7d5760405163e602df0560e01b81525f60048201526024016100bc565b6001600160a01b038316610da657604051634a1406b160e11b81525f60048201526024016100bc565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610e2157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e1891815260200190565b60405180910390a35b50505050565b610d2180612eec83390190565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610e5c57607f821691505b602082108103610e7a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561049857805f5260205f20601f840160051c81016020851015610ea55750805b601f840160051c820191505b81811015610d19575f8155600101610eb1565b81516001600160401b03811115610edd57610edd610e34565b610ef181610eeb8454610e48565b84610e80565b6020601f821160018114610f23575f8315610f0c5750848201515b5f19600385901b1c1916600184901b178455610d19565b5f84815260208120601f198516915b82811015610f525787850151825560209485019460019092019101610f32565b5084821015610f6f57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610f8e575f5ffd5b81516001600160a01b0381168114610fa4575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b5f60018201610fd057610fd0610fab565b5060010190565b80820180821115610d4657610d46610fab565b8082028115828204841417610d4657610d46610fab565b5f8261101b57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610d4657610d46610fab565b61ffff8181168382160190811115610d4657610d46610fab565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156110b15783516001600160a01b031683526020938401939092019160010161108a565b50506001600160a01b039590951660608401525050608001529392505050565b5f5f5f606084860312156110e3575f5ffd5b5050815160208301516040909301519094929350919050565b608051611db56111375f395f818161028a0152818161101e015281816110d6015281816111060152818161114301526119330152611db55ff3fe6080604052600436106101f4575f3560e01c80638428841711610108578063b384f7641161009d578063dd62ed3e1161006d578063dd62ed3e146105ea578063e2f4560514610609578063e30c39781461061e578063f2fde38b1461063b578063fe575a871461065a575f5ffd5b8063b384f7641461056e578063b70143c91461058d578063c0246668146105ac578063d257b34f146105cb575f5ffd5b806395d89b41116100d857806395d89b41146105085780639edc5f0f1461051c578063a9059cbb14610530578063aacebbe31461054f575f5ffd5b8063842884171461048a578063858e4a02146104b857806389d5c72b146104d75780638da5cb5b146104eb575f5ffd5b8063404e5129116101895780634fbee193116101595780634fbee193146103dc57806370a082311461040a578063715018a61461043e57806375f0a8741461045257806379ba509714610476575f5ffd5b8063404e51291461035b578063470624021461037a57806349bd5a5e1461039e5780634eed4bd5146103bd575f5ffd5b806318160ddd116101c457806318160ddd146102c457806323b872dd146102e25780632b14ca5614610301578063313ce56714610340575f5ffd5b8063039bed0b146101ff57806306fdde0314610220578063095ea7b31461024a5780631694505e14610279575f5ffd5b366101fb57005b5f5ffd5b34801561020a575f5ffd5b5061021e610219366004611a1f565b610688565b005b34801561022b575f5ffd5b50610234610724565b6040516102419190611a50565b60405180910390f35b348015610255575f5ffd5b50610269610264366004611a99565b6107b4565b6040519015158152602001610241565b348015610284575f5ffd5b506102ac7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102cf575f5ffd5b506002545b604051908152602001610241565b3480156102ed575f5ffd5b506102696102fc366004611ac3565b6107cd565b34801561030c575f5ffd5b50600b546103259061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610241565b34801561034b575f5ffd5b5060405160128152602001610241565b348015610366575f5ffd5b5061021e610375366004611b0e565b6107f0565b348015610385575f5ffd5b50600a546103259061ffff808216916201000090041682565b3480156103a9575f5ffd5b506010546102ac906001600160a01b031681565b3480156103c8575f5ffd5b5061021e6103d7366004611a99565b610889565b3480156103e7575f5ffd5b506102696103f6366004611b45565b60126020525f908152604090205460ff1681565b348015610415575f5ffd5b506102d4610424366004611b45565b6001600160a01b03165f9081526020819052604090205490565b348015610449575f5ffd5b5061021e610a27565b34801561045d575f5ffd5b50600f546102ac9061010090046001600160a01b031681565b348015610481575f5ffd5b5061021e610a3a565b348015610495575f5ffd5b506102696104a4366004611b45565b60116020525f908152604090205460ff1681565b3480156104c3575f5ffd5b5061021e6104d2366004611a1f565b610a7e565b3480156104e2575f5ffd5b5061021e610b1a565b3480156104f6575f5ffd5b506005546001600160a01b03166102ac565b348015610513575f5ffd5b50610234610b31565b348015610527575f5ffd5b506102d4600a81565b34801561053b575f5ffd5b5061026961054a366004611a99565b610b40565b34801561055a575f5ffd5b5061021e610569366004611b45565b610b4d565b348015610579575f5ffd5b5061021e610588366004611b0e565b610ba4565b348015610598575f5ffd5b5061021e6105a7366004611b67565b610c6b565b3480156105b7575f5ffd5b5061021e6105c6366004611b0e565b610d63565b3480156105d6575f5ffd5b5061021e6105e5366004611b67565b610dfc565b3480156105f5575f5ffd5b506102d4610604366004611b7e565b610e1c565b348015610614575f5ffd5b506102d460085481565b348015610629575f5ffd5b506006546001600160a01b03166102ac565b348015610646575f5ffd5b5061021e610655366004611b45565b610e46565b348015610665575f5ffd5b50610269610674366004611b45565b60136020525f908152604090205460ff1681565b610690610eb7565b600a61069c8284611bbe565b61ffff1611156106bf57604051630e29813560e41b815260040160405180910390fd5b600a805461ffff838116620100000263ffffffff19909216908516171790556106e88183611bbe565b61ffff908116600d55604051828216918416907fc8f6ebed6f64bd25f0aed0b6507ae982cddfd23874ad542be24905c9412a4a16905f90a35050565b60606003805461073390611bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90611bd8565b80156107aa5780601f10610781576101008083540402835291602001916107aa565b820191905f5260205f20905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b5f336107c1818585610ee4565b60019150505b92915050565b5f336107da858285610ef6565b6107e5858585610f53565b506001949350505050565b6107f8610eb7565b6001600160a01b03821661081f576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526013602052604090205481151560ff90911615150361085f576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b600f5461010090046001600160a01b031633148015906108b457506005546001600160a01b03163314155b156108d25760405163fbc5dd9360e01b815260040160405180910390fd5b306001600160a01b038316036108fb576040516374e6759b60e11b815260040160405180910390fd5b60408051336024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290515f9182916001600160a01b0386169161095291611c10565b5f604051808303815f865af19150503d805f811461098b576040519150601f19603f3d011682016040523d82523d5f602084013e610990565b606091505b50915091508180156109ba5750805115806109ba5750808060200190518101906109ba9190611c26565b610a215760405162461bcd60e51b815260206004820152602d60248201527f5472616e7366657248656c7065723a3a736166655472616e736665723a20747260448201526c185b9cd9995c8819985a5b1959609a1b60648201526084015b60405180910390fd5b50505050565b610a2f610eb7565b610a385f610fb0565b565b60065433906001600160a01b03168114610a725760405163118cdaa760e01b81526001600160a01b0382166004820152602401610a18565b610a7b81610fb0565b50565b610a86610eb7565b600a610a928284611bbe565b61ffff161115610ab557604051630e29813560e41b815260040160405180910390fd5b600b805461ffff838116620100000263ffffffff1990921690851617179055610ade8183611bbe565b61ffff908116600e55604051828216918416907f52357d2b6ee817f5d57183c13530148906a8ec8b5be2fc82da16afbd8a045072905f90a35050565b610b22610eb7565b600f805460ff19166001179055565b60606004805461073390611bd8565b5f336107c1818585610f53565b610b55610eb7565b6001600160a01b038116610b7c576040516342bcdf7f60e11b815260040160405180910390fd5b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610bac610eb7565b6001600160a01b038216610bd3576040516342bcdf7f60e11b815260040160405180910390fd5b6010546001600160a01b0390811690831603610c015760405162b93d3160e21b815260040160405180910390fd5b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610c41576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b60098054600160ff19909116179055600f5461010090046001600160a01b03163314801590610ca557506005546001600160a01b03163314155b15610cc35760405163fbc5dd9360e01b815260040160405180910390fd5b305f90815260208190526040812054906064610cdf8484611c41565b610ce99190611c58565b9050610cf481610fc9565b600f5460405147915f916101009091046001600160a01b03169083905f6040518083038185875af1925050503d805f8114610d4a576040519150601f19603f3d011682016040523d82523d5f602084013e610d4f565b606091505b50506009805460ff19169055505050505050565b610d6b610eb7565b6001600160a01b038216610d92576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526012602052604090205481151560ff909116151503610dd2576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b610e04610eb7565b610e1681670de0b6b3a7640000611c41565b60085550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610e4e610eb7565b600680546001600160a01b0383166001600160a01b03199091168117909155610e7f6005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005546001600160a01b03163314610a385760405163118cdaa760e01b8152336004820152602401610a18565b610ef183838360016111b1565b505050565b5f610f018484610e1c565b90505f198114610a215781811015610f4557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a18565b610a2184848484035f6111b1565b6001600160a01b038316610f7c57604051634b637e8f60e11b81525f6004820152602401610a18565b6001600160a01b038216610fa55760405163ec442f0560e01b81525f6004820152602401610a18565b610ef1838383611283565b600680546001600160a01b0319169055610a7b816114e4565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ffc57610ffc611c77565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611078573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109c9190611c8b565b816001815181106110af576110af611c77565b60200260200101906001600160a01b031690816001600160a01b031681525050816110fa307f0000000000000000000000000000000000000000000000000000000000000000610e1c565b101561112c5761112c307f00000000000000000000000000000000000000000000000000000000000000005f19610ee4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906111809085905f90869030904290600401611ca6565b5f604051808303815f87803b158015611197575f5ffd5b505af11580156111a9573d5f5f3e3d5ffd5b505050505050565b6001600160a01b0384166111da5760405163e602df0560e01b81525f6004820152602401610a18565b6001600160a01b03831661120357604051634a1406b160e11b81525f6004820152602401610a18565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a2157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127591815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526013602052604090205460ff16806112c057506001600160a01b0382165f9081526013602052604090205460ff165b156112de5760405163d9a60d2d60e01b815260040160405180910390fd5b805f036112f057610ef183835f610f53565b305f908152602081905260409020546008548110801590819061132b57506001600160a01b0385165f9081526011602052604090205460ff16155b801561133a575060095460ff16155b801561135e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561138257506001600160a01b0384165f9081526012602052604090205460ff16155b156113905761139082611535565b6001600160a01b0385165f9081526012602052604090205460019060ff16806113d057506001600160a01b0385165f9081526012602052604090205460ff165b156113d857505f5b5f806113e261171e565b90505f83156114ce57600c8054905f6113fa83611d16565b90915550506001600160a01b0389165f9081526011602052604090205460ff16801561142757505f600d54115b15611461575f611435611755565b90506114418184611d2e565b9150606461144f838a611c41565b6114599190611c58565b9350506114b0565b6001600160a01b0388165f9081526011602052604090205460ff16801561148957505f600e54115b15611497575f6114356117b0565b60646114a38389611c41565b6114ad9190611c58565b92505b82156114ce576114c189308561180b565b6114cb8388611d41565b96505b6114d989898961180b565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6009805460ff19166001179055600e54600d546115529190611d2e565b5f036115bf5761156181610fc9565b600f546040515f9161010090046001600160a01b03169047908381818185875af1925050503d805f81146115b0576040519150601f19603f3d011682016040523d82523d5f602084013e6115b5565b606091505b5061171192505050565b5f600e54600d546115d09190611d2e565b600b54600a5484916115e99161ffff9182169116611bbe565b61ffff166115f79190611c41565b6116019190611c58565b90505f61160e8284611d41565b90505f61161c600283611c58565b90505f6116298286611d41565b90504761163582610fc9565b5f6116408247611d41565b90505f8361164e8387611c41565b6116589190611c58565b90505f8111801561166857505f85115b15611677576116778582611931565b5f4780156116d857600f546040516101009091046001600160a01b03169082905f81818185875af1925050503d805f81146116cd576040519150601f19603f3d011682016040523d82523d5f602084013e6116d2565b606091505b50909250505b8087847ff8cfc1c15ead481ffc3a2df6126e88c84a6730799e332fcfe2dbc386373d517160405160405180910390a45050505050505050505b506009805460ff19169055565b600f545f9060ff161561173057505f90565b600a600c54116117405750600f90565b601e600c54116117505750600a90565b505f90565b600f545f9060ff16156117695750600d5490565b600a600c54116117795750601990565b6014600c54116117895750601490565b6019600c54116117995750600f90565b601e600c54116117a95750600a90565b50600d5490565b600f545f9060ff16156117c45750600e5490565b600a600c54116117d45750601990565b6014600c54116117e45750601490565b6019600c54116117f45750600f90565b601e600c54116118045750600a90565b50600e5490565b6001600160a01b038316611835578060025f82825461182a9190611d2e565b909155506118a59050565b6001600160a01b0383165f90815260208190526040902054818110156118875760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a18565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166118c1576002805482900390556118df565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161192491815260200190565b60405180910390a3505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f5f6119776005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156119dd573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a029190611d54565b5050505050565b803561ffff81168114611a1a575f5ffd5b919050565b5f5f60408385031215611a30575f5ffd5b611a3983611a09565b9150611a4760208401611a09565b90509250929050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a7b575f5ffd5b5f5f60408385031215611aaa575f5ffd5b8235611ab581611a85565b946020939093013593505050565b5f5f5f60608486031215611ad5575f5ffd5b8335611ae081611a85565b92506020840135611af081611a85565b929592945050506040919091013590565b8015158114610a7b575f5ffd5b5f5f60408385031215611b1f575f5ffd5b8235611b2a81611a85565b91506020830135611b3a81611b01565b809150509250929050565b5f60208284031215611b55575f5ffd5b8135611b6081611a85565b9392505050565b5f60208284031215611b77575f5ffd5b5035919050565b5f5f60408385031215611b8f575f5ffd5b8235611b9a81611a85565b91506020830135611b3a81611a85565b634e487b7160e01b5f52601160045260245ffd5b61ffff81811683821601908111156107c7576107c7611baa565b600181811c90821680611bec57607f821691505b602082108103611c0a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82518060208501845e5f920191825250919050565b5f60208284031215611c36575f5ffd5b8151611b6081611b01565b80820281158282048414176107c7576107c7611baa565b5f82611c7257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611c9b575f5ffd5b8151611b6081611a85565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015611cf65783516001600160a01b0316835260209384019390920191600101611ccf565b50506001600160a01b039590951660608401525050608001529392505050565b5f60018201611d2757611d27611baa565b5060010190565b808201808211156107c7576107c7611baa565b818103818111156107c7576107c7611baa565b5f5f5f60608486031215611d66575f5ffd5b505081516020830151604090930151909492935091905056fea264697066735822122013138d83266365d25e7477d54a5f30ca3fcf1e2374493bf6e41432c3516ff55f64736f6c634300081b00336080604052600280546001600160a01b031990811673be68c1ed8f6daf8e6a49e6708a385f297ad8befd179091556003805482167375d5a3d499f6699dc0adc6b5af2b842f471aff8617905560048054909116730217bf3b734ec896f17f4d359e7c8a382af49a3e179055600a805460ff19166001179055348015610082575f5ffd5b50604051610d21380380610d218339810160408190526100a1916101ad565b816001600160a01b0381166100cf57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100d881610127565b50600880546001600160a01b0319166001600160a01b038316179055601460058190556006819055603c60078190559061011290806101de565b61011c91906101de565b600955506102039050565b600180546001600160a01b031916905561014081610143565b50565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146101a8575f5ffd5b919050565b5f5f604083850312156101be575f5ffd5b6101c783610192565b91506101d560208401610192565b90509250929050565b808201808211156101fd57634e487b7160e01b5f52601160045260245ffd5b92915050565b610b11806102105f395ff3fe60806040526004361061011e575f3560e01c80637e50360c1161009d578063b70143c911610062578063b70143c914610453578063df841f0914610472578063e30c397814610491578063e5948342146104ae578063f2fde38b146104c3575f5ffd5b80637e50360c146103d057806380a3f3ef146103e55780638943b2e4146103f95780638da5cb5b14610418578063936e1d8314610434575f5ffd5b80635a7afe64116100e35780635a7afe6414610360578063672729991461037f578063715018a61461039357806373238987146103a757806379ba5097146103bc575f5ffd5b806313bd2b46146102a45780632c2da25c146102e05780633a98ef39146102ff57806348d462b11461032257806355a73b2714610341575f5ffd5b366102a057600a5460ff161561029e575f5f3490505f600954600554836101459190610961565b61014f919061097e565b90505f600954600654846101639190610961565b61016d919061097e565b90505f8161017b848661099d565b610185919061099d565b905082156101e2576002546040516001600160a01b039091169084905f81818185875af1925050503d805f81146101d7576040519150601f19603f3d011682016040523d82523d5f602084013e6101dc565b606091505b50909550505b811561023d576003546040516001600160a01b039091169083905f81818185875af1925050503d805f8114610232576040519150601f19603f3d011682016040523d82523d5f602084013e610237565b606091505b50909550505b8015610298576004546040516001600160a01b039091169082905f81818185875af1925050503d805f811461028d576040519150601f19603f3d011682016040523d82523d5f602084013e610292565b606091505b50909550505b50505050505b005b5f5ffd5b3480156102af575f5ffd5b506008546102c3906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102eb575f5ffd5b506002546102c3906001600160a01b031681565b34801561030a575f5ffd5b5061031460095481565b6040519081526020016102d7565b34801561032d575f5ffd5b5061029e61033c3660046109cb565b6104e2565b34801561034c575f5ffd5b5061029e61035b366004610a0b565b610529565b34801561036b575f5ffd5b5061029e61037a366004610a34565b61055d565b34801561038a575f5ffd5b5061029e6105ca565b34801561039e575f5ffd5b5061029e610646565b3480156103b2575f5ffd5b5061031460065481565b3480156103c7575f5ffd5b5061029e610659565b3480156103db575f5ffd5b5061031460075481565b3480156103f0575f5ffd5b5061029e61069f565b348015610404575f5ffd5b5061029e610413366004610a34565b6106bb565b348015610423575f5ffd5b505f546001600160a01b03166102c3565b34801561043f575f5ffd5b506003546102c3906001600160a01b031681565b34801561045e575f5ffd5b5061029e61046d366004610a5c565b6107ea565b34801561047d575f5ffd5b506004546102c3906001600160a01b031681565b34801561049c575f5ffd5b506001546001600160a01b03166102c3565b3480156104b9575f5ffd5b5061031460055481565b3480156104ce575f5ffd5b5061029e6104dd366004610a73565b61084e565b6104ea6108be565b600280546001600160a01b039485166001600160a01b031991821617909155600380549385169382169390931790925560048054919093169116179055565b6105316108be565b6005839055600682905560078190558061054b8385610a93565b6105559190610a93565b600955505050565b6105656108be565b600854604051634eed4bd560e01b81526001600160a01b0384811660048301526024820184905290911690634eed4bd5906044015f604051808303815f87803b1580156105b0575f5ffd5b505af11580156105c2573d5f5f3e3d5ffd5b505050505050565b6105d26108be565b5f80546040516001600160a01b039091169047908381818185875af1925050503d805f811461061c576040519150601f19603f3d011682016040523d82523d5f602084013e610621565b606091505b505090508061064357604051630db2c7f160e31b815260040160405180910390fd5b50565b61064e6108be565b6106575f6108ea565b565b60015433906001600160a01b031681146106965760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610643816108ea565b6106a76108be565b600a805460ff19811660ff90911615179055565b6106c36108be565b60408051336024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290515f9182916001600160a01b0386169161071a91610aa6565b5f604051808303815f865af19150503d805f8114610753576040519150601f19603f3d011682016040523d82523d5f602084013e610758565b606091505b50915091508180156107825750805115806107825750808060200190518101906107829190610abc565b6107e45760405162461bcd60e51b815260206004820152602d60248201527f5472616e7366657248656c7065723a3a736166655472616e736665723a20747260448201526c185b9cd9995c8819985a5b1959609a1b606482015260840161068d565b50505050565b6107f26108be565b60085460405163b70143c960e01b8152600481018390526001600160a01b039091169063b70143c9906024015f604051808303815f87803b158015610835575f5ffd5b505af1158015610847573d5f5f3e3d5ffd5b5050505050565b6108566108be565b600180546001600160a01b0383166001600160a01b031990911681179091556108865f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f546001600160a01b031633146106575760405163118cdaa760e01b815233600482015260240161068d565b600180546001600160a01b0319169055610643815f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176109785761097861094d565b92915050565b5f8261099857634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156109785761097861094d565b80356001600160a01b03811681146109c6575f5ffd5b919050565b5f5f5f606084860312156109dd575f5ffd5b6109e6846109b0565b92506109f4602085016109b0565b9150610a02604085016109b0565b90509250925092565b5f5f5f60608486031215610a1d575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215610a45575f5ffd5b610a4e836109b0565b946020939093013593505050565b5f60208284031215610a6c575f5ffd5b5035919050565b5f60208284031215610a83575f5ffd5b610a8c826109b0565b9392505050565b808201808211156109785761097861094d565b5f82518060208501845e5f920191825250919050565b5f60208284031215610acc575f5ffd5b81518015158114610a8c575f5ffdfea2646970667358221220b3c9c9449afecce29b02392fe52d434bb320383944a49adc5bec429db647b07264736f6c634300081b0033

Deployed Bytecode

0x6080604052600436106101f4575f3560e01c80638428841711610108578063b384f7641161009d578063dd62ed3e1161006d578063dd62ed3e146105ea578063e2f4560514610609578063e30c39781461061e578063f2fde38b1461063b578063fe575a871461065a575f5ffd5b8063b384f7641461056e578063b70143c91461058d578063c0246668146105ac578063d257b34f146105cb575f5ffd5b806395d89b41116100d857806395d89b41146105085780639edc5f0f1461051c578063a9059cbb14610530578063aacebbe31461054f575f5ffd5b8063842884171461048a578063858e4a02146104b857806389d5c72b146104d75780638da5cb5b146104eb575f5ffd5b8063404e5129116101895780634fbee193116101595780634fbee193146103dc57806370a082311461040a578063715018a61461043e57806375f0a8741461045257806379ba509714610476575f5ffd5b8063404e51291461035b578063470624021461037a57806349bd5a5e1461039e5780634eed4bd5146103bd575f5ffd5b806318160ddd116101c457806318160ddd146102c457806323b872dd146102e25780632b14ca5614610301578063313ce56714610340575f5ffd5b8063039bed0b146101ff57806306fdde0314610220578063095ea7b31461024a5780631694505e14610279575f5ffd5b366101fb57005b5f5ffd5b34801561020a575f5ffd5b5061021e610219366004611a1f565b610688565b005b34801561022b575f5ffd5b50610234610724565b6040516102419190611a50565b60405180910390f35b348015610255575f5ffd5b50610269610264366004611a99565b6107b4565b6040519015158152602001610241565b348015610284575f5ffd5b506102ac7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102cf575f5ffd5b506002545b604051908152602001610241565b3480156102ed575f5ffd5b506102696102fc366004611ac3565b6107cd565b34801561030c575f5ffd5b50600b546103259061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610241565b34801561034b575f5ffd5b5060405160128152602001610241565b348015610366575f5ffd5b5061021e610375366004611b0e565b6107f0565b348015610385575f5ffd5b50600a546103259061ffff808216916201000090041682565b3480156103a9575f5ffd5b506010546102ac906001600160a01b031681565b3480156103c8575f5ffd5b5061021e6103d7366004611a99565b610889565b3480156103e7575f5ffd5b506102696103f6366004611b45565b60126020525f908152604090205460ff1681565b348015610415575f5ffd5b506102d4610424366004611b45565b6001600160a01b03165f9081526020819052604090205490565b348015610449575f5ffd5b5061021e610a27565b34801561045d575f5ffd5b50600f546102ac9061010090046001600160a01b031681565b348015610481575f5ffd5b5061021e610a3a565b348015610495575f5ffd5b506102696104a4366004611b45565b60116020525f908152604090205460ff1681565b3480156104c3575f5ffd5b5061021e6104d2366004611a1f565b610a7e565b3480156104e2575f5ffd5b5061021e610b1a565b3480156104f6575f5ffd5b506005546001600160a01b03166102ac565b348015610513575f5ffd5b50610234610b31565b348015610527575f5ffd5b506102d4600a81565b34801561053b575f5ffd5b5061026961054a366004611a99565b610b40565b34801561055a575f5ffd5b5061021e610569366004611b45565b610b4d565b348015610579575f5ffd5b5061021e610588366004611b0e565b610ba4565b348015610598575f5ffd5b5061021e6105a7366004611b67565b610c6b565b3480156105b7575f5ffd5b5061021e6105c6366004611b0e565b610d63565b3480156105d6575f5ffd5b5061021e6105e5366004611b67565b610dfc565b3480156105f5575f5ffd5b506102d4610604366004611b7e565b610e1c565b348015610614575f5ffd5b506102d460085481565b348015610629575f5ffd5b506006546001600160a01b03166102ac565b348015610646575f5ffd5b5061021e610655366004611b45565b610e46565b348015610665575f5ffd5b50610269610674366004611b45565b60136020525f908152604090205460ff1681565b610690610eb7565b600a61069c8284611bbe565b61ffff1611156106bf57604051630e29813560e41b815260040160405180910390fd5b600a805461ffff838116620100000263ffffffff19909216908516171790556106e88183611bbe565b61ffff908116600d55604051828216918416907fc8f6ebed6f64bd25f0aed0b6507ae982cddfd23874ad542be24905c9412a4a16905f90a35050565b60606003805461073390611bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90611bd8565b80156107aa5780601f10610781576101008083540402835291602001916107aa565b820191905f5260205f20905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b5f336107c1818585610ee4565b60019150505b92915050565b5f336107da858285610ef6565b6107e5858585610f53565b506001949350505050565b6107f8610eb7565b6001600160a01b03821661081f576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526013602052604090205481151560ff90911615150361085f576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b600f5461010090046001600160a01b031633148015906108b457506005546001600160a01b03163314155b156108d25760405163fbc5dd9360e01b815260040160405180910390fd5b306001600160a01b038316036108fb576040516374e6759b60e11b815260040160405180910390fd5b60408051336024820152604480820184905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290515f9182916001600160a01b0386169161095291611c10565b5f604051808303815f865af19150503d805f811461098b576040519150601f19603f3d011682016040523d82523d5f602084013e610990565b606091505b50915091508180156109ba5750805115806109ba5750808060200190518101906109ba9190611c26565b610a215760405162461bcd60e51b815260206004820152602d60248201527f5472616e7366657248656c7065723a3a736166655472616e736665723a20747260448201526c185b9cd9995c8819985a5b1959609a1b60648201526084015b60405180910390fd5b50505050565b610a2f610eb7565b610a385f610fb0565b565b60065433906001600160a01b03168114610a725760405163118cdaa760e01b81526001600160a01b0382166004820152602401610a18565b610a7b81610fb0565b50565b610a86610eb7565b600a610a928284611bbe565b61ffff161115610ab557604051630e29813560e41b815260040160405180910390fd5b600b805461ffff838116620100000263ffffffff1990921690851617179055610ade8183611bbe565b61ffff908116600e55604051828216918416907f52357d2b6ee817f5d57183c13530148906a8ec8b5be2fc82da16afbd8a045072905f90a35050565b610b22610eb7565b600f805460ff19166001179055565b60606004805461073390611bd8565b5f336107c1818585610f53565b610b55610eb7565b6001600160a01b038116610b7c576040516342bcdf7f60e11b815260040160405180910390fd5b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610bac610eb7565b6001600160a01b038216610bd3576040516342bcdf7f60e11b815260040160405180910390fd5b6010546001600160a01b0390811690831603610c015760405162b93d3160e21b815260040160405180910390fd5b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610c41576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b60098054600160ff19909116179055600f5461010090046001600160a01b03163314801590610ca557506005546001600160a01b03163314155b15610cc35760405163fbc5dd9360e01b815260040160405180910390fd5b305f90815260208190526040812054906064610cdf8484611c41565b610ce99190611c58565b9050610cf481610fc9565b600f5460405147915f916101009091046001600160a01b03169083905f6040518083038185875af1925050503d805f8114610d4a576040519150601f19603f3d011682016040523d82523d5f602084013e610d4f565b606091505b50506009805460ff19169055505050505050565b610d6b610eb7565b6001600160a01b038216610d92576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b0382165f9081526012602052604090205481151560ff909116151503610dd2576040516363f958f760e11b815260040160405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b610e04610eb7565b610e1681670de0b6b3a7640000611c41565b60085550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610e4e610eb7565b600680546001600160a01b0383166001600160a01b03199091168117909155610e7f6005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6005546001600160a01b03163314610a385760405163118cdaa760e01b8152336004820152602401610a18565b610ef183838360016111b1565b505050565b5f610f018484610e1c565b90505f198114610a215781811015610f4557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a18565b610a2184848484035f6111b1565b6001600160a01b038316610f7c57604051634b637e8f60e11b81525f6004820152602401610a18565b6001600160a01b038216610fa55760405163ec442f0560e01b81525f6004820152602401610a18565b610ef1838383611283565b600680546001600160a01b0319169055610a7b816114e4565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610ffc57610ffc611c77565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611078573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109c9190611c8b565b816001815181106110af576110af611c77565b60200260200101906001600160a01b031690816001600160a01b031681525050816110fa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610e1c565b101561112c5761112c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f19610ee4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906111809085905f90869030904290600401611ca6565b5f604051808303815f87803b158015611197575f5ffd5b505af11580156111a9573d5f5f3e3d5ffd5b505050505050565b6001600160a01b0384166111da5760405163e602df0560e01b81525f6004820152602401610a18565b6001600160a01b03831661120357604051634a1406b160e11b81525f6004820152602401610a18565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a2157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127591815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526013602052604090205460ff16806112c057506001600160a01b0382165f9081526013602052604090205460ff165b156112de5760405163d9a60d2d60e01b815260040160405180910390fd5b805f036112f057610ef183835f610f53565b305f908152602081905260409020546008548110801590819061132b57506001600160a01b0385165f9081526011602052604090205460ff16155b801561133a575060095460ff16155b801561135e57506001600160a01b0385165f9081526012602052604090205460ff16155b801561138257506001600160a01b0384165f9081526012602052604090205460ff16155b156113905761139082611535565b6001600160a01b0385165f9081526012602052604090205460019060ff16806113d057506001600160a01b0385165f9081526012602052604090205460ff165b156113d857505f5b5f806113e261171e565b90505f83156114ce57600c8054905f6113fa83611d16565b90915550506001600160a01b0389165f9081526011602052604090205460ff16801561142757505f600d54115b15611461575f611435611755565b90506114418184611d2e565b9150606461144f838a611c41565b6114599190611c58565b9350506114b0565b6001600160a01b0388165f9081526011602052604090205460ff16801561148957505f600e54115b15611497575f6114356117b0565b60646114a38389611c41565b6114ad9190611c58565b92505b82156114ce576114c189308561180b565b6114cb8388611d41565b96505b6114d989898961180b565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6009805460ff19166001179055600e54600d546115529190611d2e565b5f036115bf5761156181610fc9565b600f546040515f9161010090046001600160a01b03169047908381818185875af1925050503d805f81146115b0576040519150601f19603f3d011682016040523d82523d5f602084013e6115b5565b606091505b5061171192505050565b5f600e54600d546115d09190611d2e565b600b54600a5484916115e99161ffff9182169116611bbe565b61ffff166115f79190611c41565b6116019190611c58565b90505f61160e8284611d41565b90505f61161c600283611c58565b90505f6116298286611d41565b90504761163582610fc9565b5f6116408247611d41565b90505f8361164e8387611c41565b6116589190611c58565b90505f8111801561166857505f85115b15611677576116778582611931565b5f4780156116d857600f546040516101009091046001600160a01b03169082905f81818185875af1925050503d805f81146116cd576040519150601f19603f3d011682016040523d82523d5f602084013e6116d2565b606091505b50909250505b8087847ff8cfc1c15ead481ffc3a2df6126e88c84a6730799e332fcfe2dbc386373d517160405160405180910390a45050505050505050505b506009805460ff19169055565b600f545f9060ff161561173057505f90565b600a600c54116117405750600f90565b601e600c54116117505750600a90565b505f90565b600f545f9060ff16156117695750600d5490565b600a600c54116117795750601990565b6014600c54116117895750601490565b6019600c54116117995750600f90565b601e600c54116117a95750600a90565b50600d5490565b600f545f9060ff16156117c45750600e5490565b600a600c54116117d45750601990565b6014600c54116117e45750601490565b6019600c54116117f45750600f90565b601e600c54116118045750600a90565b50600e5490565b6001600160a01b038316611835578060025f82825461182a9190611d2e565b909155506118a59050565b6001600160a01b0383165f90815260208190526040902054818110156118875760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a18565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166118c1576002805482900390556118df565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161192491815260200190565b60405180910390a3505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f5f6119776005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156119dd573d5f5f3e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a029190611d54565b5050505050565b803561ffff81168114611a1a575f5ffd5b919050565b5f5f60408385031215611a30575f5ffd5b611a3983611a09565b9150611a4760208401611a09565b90509250929050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610a7b575f5ffd5b5f5f60408385031215611aaa575f5ffd5b8235611ab581611a85565b946020939093013593505050565b5f5f5f60608486031215611ad5575f5ffd5b8335611ae081611a85565b92506020840135611af081611a85565b929592945050506040919091013590565b8015158114610a7b575f5ffd5b5f5f60408385031215611b1f575f5ffd5b8235611b2a81611a85565b91506020830135611b3a81611b01565b809150509250929050565b5f60208284031215611b55575f5ffd5b8135611b6081611a85565b9392505050565b5f60208284031215611b77575f5ffd5b5035919050565b5f5f60408385031215611b8f575f5ffd5b8235611b9a81611a85565b91506020830135611b3a81611a85565b634e487b7160e01b5f52601160045260245ffd5b61ffff81811683821601908111156107c7576107c7611baa565b600181811c90821680611bec57607f821691505b602082108103611c0a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82518060208501845e5f920191825250919050565b5f60208284031215611c36575f5ffd5b8151611b6081611b01565b80820281158282048414176107c7576107c7611baa565b5f82611c7257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611c9b575f5ffd5b8151611b6081611a85565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015611cf65783516001600160a01b0316835260209384019390920191600101611ccf565b50506001600160a01b039590951660608401525050608001529392505050565b5f60018201611d2757611d27611baa565b5060010190565b808201808211156107c7576107c7611baa565b818103818111156107c7576107c7611baa565b5f5f5f60608486031215611d66575f5ffd5b505081516020830151604090930151909492935091905056fea264697066735822122013138d83266365d25e7477d54a5f30ca3fcf1e2374493bf6e41432c3516ff55f64736f6c634300081b0033

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.