ETH Price: $3,380.32 (-1.94%)
Gas: 4 Gwei

Token

SendIt ($SEND)
 

Overview

Max Total Supply

1,000,000,000 $SEND

Holders

252

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,553,110.576618629316877942 $SEND

Value
$0.00
0x223651715c7b24bed11a41e154cc87b8cddd4480
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:
SendIt

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : SendIt.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;

/*
▄▄███▄▄·███████ ███████ ███    ██ ██████  
██      ██      ██      ████   ██ ██   ██ 
███████ ███████ █████   ██ ██  ██ ██   ██ 
     ██      ██ ██      ██  ██ ██ ██   ██ 
███████ ███████ ███████ ██   ████ ██████  
  ▀▀▀                                     

Website: https://www.sendit.finance/
Twitter: https://twitter.com/SenditERC
Telegram: https://t.me/SendItETH
Youtube: https://www.youtube.com/@SenditERC
Gitbook: https://sendit-usdsend.gitbook.io/project-overview/
*/

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract SendIt is ERC20("SendIt", "$SEND"), Ownable {

    // Uniswap
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    // Variables
    address public immutable UNISWAP_V2_PAIR;

    uint256 constant TOTAL_SUPPLY = 1_000_000_000 ether;
    address constant BURN_ADDRESS = address(0xdead);
    uint256 public tradingOpenedOnBlock;

    bool private swapping;
    uint256 public tokenSwapThreshold;

    address public marketingWallet;
    address public treasuryWallet;

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

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForTreasury;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

    // Mappings
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // Events
    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedTreasuryWallet(address indexed newWallet);
    event UpdatedMarketingWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

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

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 10) / 1_000; // 1% max buy
        maxSellAmount = (totalSupply() * 10) / 1_000; // 1% max sell
        maxWalletAmount = (totalSupply() * 20) / 1_000; // 2% max holdings
        tokenSwapThreshold = (totalSupply() * 50) / 10_000; // 0.5% swapToEth threshold 

        treasuryWallet = msg.sender;
        marketingWallet = 0x06DEF56753307215fdfCe5D8f983B3d9Aaf73D3C;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}



    /**
     * @dev Updates max `buy`, `sell` & `hold` amounts.
     * WARNING: These limits disable when executing removeLimits function
     *
     * functionality:
     * - prevents user from purchasing over 1% of supply
     * - prevents user from selling over 1% of supply
     * - prevents user from holding over 2% of supply
     */
    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "SENDIT ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "SENDIT ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "SENDIT ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "SENDIT ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }



    /**
     * @dev Exclude address controls.
     *
     * functionality:
     * - grants override to fees & txn limits
     */
    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }



    /**
     * @dev Retrieves appropriate tax rate.
     *
     * functionality:
     * - returns tax rate depending on tier current block is in
     */
    function getFees() internal {
        require(
            tradingOpenedOnBlock > 0, "SENDIT ERROR: Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = tradingOpenedOnBlock + 10;
        uint256 lastTierTwoBlock = tradingOpenedOnBlock + 20;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 25;
            sellTotalFees = 25;
        } else if(currentBlock > lastTierOneBlock && currentBlock <= lastTierTwoBlock) {
            buyTotalFees = 15;
            sellTotalFees = 15;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        }
        // Buy fees
        buyLiquidityFee = buyTotalFees / 4;
        buyMarketingFee = buyTotalFees / 4;
        buyTreasuryFee = buyTotalFees / 2;
        // Sale fees
        sellLiquidityFee = sellTotalFees / 4;
        sellMarketingFee = sellTotalFees / 4;
        sellTreasuryFee = sellTotalFees / 2;
    }



    /**
     * @dev Set trading status live.
     * WARNING: Once enabled, can never be turned off
     *
     * functionality:
     * - opens token for trading
     */
    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "SENDIT ERROR: Token state is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }



    /**
     * @dev Edits team wallets & fee recipients.
     * WARNING: Cannot be called if contract is renounced
     *
     * functionality:
     * - sets marketing wallet address
     * - sets treasury wallet address
     */
    function setMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != address(0), "SENDIT ERROR: _marketingWallet address cannot be 0");
        marketingWallet = payable(_marketingWallet);
        emit UpdatedMarketingWallet(_marketingWallet);
    }

    function setTreasuryWallet(address _treasuryWallet) external onlyOwner {
        require(_treasuryWallet != address(0), "SENDIT ERROR: _treasuryWallet address cannot be 0");
        treasuryWallet = payable(_treasuryWallet);
        emit UpdatedTreasuryWallet(_treasuryWallet);
    }

    /**
     * @dev Governs the trading protocol.
     *
     * functionality:
     * - retrieves & collects tax rates
     * - enforces trading limits & restrictions
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "SENDIT ERROR: amount must be greater than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "SENDIT ERROR: Trading is not active."
                    );
                    require(from == owner(), "SENDIT ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "SENDIT ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "SENDIT ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "SENDIT ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "SENDIT ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

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

        uint256 fees = 0;
        // only take fees on Trades, not on wallet transfers

        if (takeFee) {
            
            // Determine current fee rate if last tier block not surpassed
            if(fetchFees){
               getFees(); 
            }
            

            // on sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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


    /**
     * @dev Adds liquidity & swaps back.
     *
     * functionality:
     * - performs swaps to add liquidity & collect taxes
     */ 
    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] = UNISWAP_ROUTER.WETH();

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // add the liquidity
        UNISWAP_ROUTER.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            treasuryWallet,
            block.timestamp
        );
    }

    function swapBack() private {

        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap = tokensForLiquidity + tokensForTreasury + tokensForMarketing;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }

        bool success;

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
            
        swapTokensForEth(contractBalance - liquidityTokens);

        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForTreasury = (ethBalance * tokensForTreasury) /
            (totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForMarketing = (ethBalance * tokensForMarketing) /
            (totalTokensToSwap - (tokensForLiquidity / 2));


        ethForLiquidity -= (ethForTreasury + ethForMarketing);

        tokensForLiquidity = 0;
        tokensForTreasury = 0;
        tokensForMarketing = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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


    /**
     * @dev Emergency withdrawl functions for stuck tokens / eth.
     * WARNING: Cannot be called if contract is renounced
     *
     * functionality:
     * - withdraws Eth to owner wallet
     * - withdraws taxed $SEND tokens to owner wallet
     */   
    function withdrawStuckToken(address _token) external {
        require(
            msg.sender == owner() || msg.sender == treasuryWallet || msg.sender == marketingWallet,
            "SENDIT ERROR: Not authorized"
        );
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        ERC20 erc20token = ERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }


    function withdrawStuckEth() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "SENDIT ERROR: failed to withdraw funds");
    }
    


}

File 2 of 9 : 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 9 : 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 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 9 : 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 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedTreasuryWallet","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600a60146101000a81548160ff0219169083151502179055505f600a60156101000a81548160ff0219169083151502179055505f600a60166101000a81548160ff0219169083151502179055506001600a60176101000a81548160ff0219169083151502179055503480156200007a575f80fd5b506040518060400160405280600681526020017f53656e64497400000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f2453454e440000000000000000000000000000000000000000000000000000008152508160039081620000f8919062000d35565b5080600490816200010a919062000d35565b5050506200012d62000121620004c060201b60201c565b620004c760201b60201c565b6200014b336b033b2e3c9fd0803ce80000006200058a60201b60201c565b6200017330737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620006ef60201b60201c565b6200019a737a250d5630b4cf539739df2c5dacb4c659f2488d6001620008ba60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000229573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024f919062000e7e565b6040518363ffffffff1660e01b81526004016200026e92919062000ebf565b6020604051808303815f875af11580156200028b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e7e565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e8600a620002f96200094d60201b60201c565b62000305919062000f17565b62000311919062000f8e565b600b819055506103e8600a6200032c6200094d60201b60201c565b62000338919062000f17565b62000344919062000f8e565b600c819055506103e860146200035f6200094d60201b60201c565b6200036b919062000f17565b62000377919062000f8e565b600d819055506127106032620003926200094d60201b60201c565b6200039e919062000f17565b620003aa919062000f8e565b60088190555033600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507306def56753307215fdfce5d8f983b3d9aaf73d3c60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000457336001620008ba60201b60201c565b6200046a306001620008ba60201b60201c565b6200047f61dead6001620008ba60201b60201c565b620004923360016200095660201b60201c565b620004a53060016200095660201b60201c565b620004ba61dead60016200095660201b60201c565b620012a1565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f29062001023565b60405180910390fd5b6200060e5f838362000a0e60201b60201c565b8060025f82825462000621919062001043565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006d091906200108e565b60405180910390a3620006eb5f838362000a1360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000757906200111d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c890620011b1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008ad91906200108e565b60405180910390a3505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746828260405162000941929190620011ed565b60405180910390a15050565b5f600254905090565b6200096662000a1860201b60201c565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a02919062001218565b60405180910390a25050565b505050565b505050565b62000a28620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a4e62000aa960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000aa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9e9062001281565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4d57607f821691505b60208210810362000b635762000b6262000b08565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bc77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8a565b62000bd3868362000b8a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c1d62000c1762000c118462000beb565b62000bf4565b62000beb565b9050919050565b5f819050919050565b62000c388362000bfd565b62000c5062000c478262000c24565b84845462000b96565b825550505050565b5f90565b62000c6662000c58565b62000c7381848462000c2d565b505050565b5b8181101562000c9a5762000c8e5f8262000c5c565b60018101905062000c79565b5050565b601f82111562000ce95762000cb38162000b69565b62000cbe8462000b7b565b8101602085101562000cce578190505b62000ce662000cdd8562000b7b565b83018262000c78565b50505b505050565b5f82821c905092915050565b5f62000d0b5f198460080262000cee565b1980831691505092915050565b5f62000d25838362000cfa565b9150826002028217905092915050565b62000d408262000ad1565b67ffffffffffffffff81111562000d5c5762000d5b62000adb565b5b62000d68825462000b35565b62000d7582828562000c9e565b5f60209050601f83116001811462000dab575f841562000d96578287015190505b62000da2858262000d18565b86555062000e11565b601f19841662000dbb8662000b69565b5f5b8281101562000de45784890151825560018201915060208501945060208101905062000dbd565b8683101562000e04578489015162000e00601f89168262000cfa565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e488262000e1d565b9050919050565b62000e5a8162000e3c565b811462000e65575f80fd5b50565b5f8151905062000e788162000e4f565b92915050565b5f6020828403121562000e965762000e9562000e19565b5b5f62000ea58482850162000e68565b91505092915050565b62000eb98162000e3c565b82525050565b5f60408201905062000ed45f83018562000eae565b62000ee3602083018462000eae565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f238262000beb565b915062000f308362000beb565b925082820262000f408162000beb565b9150828204841483151762000f5a5762000f5962000eea565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f9a8262000beb565b915062000fa78362000beb565b92508262000fba5762000fb962000f61565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200100b601f8362000fc5565b9150620010188262000fd5565b602082019050919050565b5f6020820190508181035f8301526200103c8162000ffd565b9050919050565b5f6200104f8262000beb565b91506200105c8362000beb565b925082820190508082111562001077576200107662000eea565b5b92915050565b620010888162000beb565b82525050565b5f602082019050620010a35f8301846200107d565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200110560248362000fc5565b91506200111282620010a9565b604082019050919050565b5f6020820190508181035f8301526200113681620010f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200119960228362000fc5565b9150620011a6826200113d565b604082019050919050565b5f6020820190508181035f830152620011ca816200118b565b9050919050565b5f8115159050919050565b620011e781620011d1565b82525050565b5f604082019050620012025f83018562000eae565b620012116020830184620011dc565b9392505050565b5f6020820190506200122d5f830184620011dc565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200126960208362000fc5565b9150620012768262001233565b602082019050919050565b5f6020820190508181035f8301526200129a816200125b565b9050919050565b608051614910620012dd5f395f8181611a3e015281816120410152818161218a015281816123c8015281816125ce01526126e601526149105ff3fe6080604052600436106102e7575f3560e01c806375f0a8741161018f578063c18bc195116100db578063d85ba06311610094578063f11a24d31161006e578063f11a24d314610ad8578063f2fde38b14610b02578063f40acc3d14610b2a578063f637434214610b54576102ee565b8063d85ba06314610a4a578063dc3f0d0f14610a74578063dd62ed3e14610a9c576102ee565b8063c18bc19514610966578063c74c0fac1461098e578063c9567bf9146109b8578063cc2ffe7c146109ce578063d257b34f146109f8578063d826492014610a20576102ee565b806395d89b4111610148578063a9059cbb11610122578063a9059cbb146108ae578063aa4bde28146108ea578063bbc0c74214610914578063c02466681461093e576102ee565b806395d89b4114610820578063a457c2d71461084a578063a8602fea14610886576102ee565b806375f0a874146107385780637bce5a04146107625780637fa787ba1461078c57806388e765ff146107a25780638da5cb5b146107cc57806392136913146107f6576102ee565b8063395093511161024e57806366d602ae116102075780636ddd1713116101e15780636ddd1713146106a657806370a08231146106d0578063715018a61461070c578063751039fc14610722576102ee565b806366d602ae146106285780636a486a8e146106525780636b2fb1241461067c576102ee565b8063395093511461051c5780634626402b146105585780634a62bb65146105825780635c068a8c146105ac5780635d098b38146105d65780636057b3eb146105fe576102ee565b806318160ddd116102a057806318160ddd146104105780631a8145bb1461043a5780631f3fed8f1461046457806323b872dd1461048e5780632be32b61146104ca578063313ce567146104f2576102ee565b8063068acf6c146102f257806306fdde031461031a578063095ea7b3146103445780630a3b39a3146103805780630e300099146103aa57806310d5de53146103d4576102ee565b366102ee57005b5f80fd5b3480156102fd575f80fd5b50610318600480360381019061031391906132c5565b610b7e565b005b348015610325575f80fd5b5061032e610e2c565b60405161033b919061337a565b60405180910390f35b34801561034f575f80fd5b5061036a600480360381019061036591906133cd565b610ebc565b6040516103779190613425565b60405180910390f35b34801561038b575f80fd5b50610394610ede565b6040516103a1919061344d565b60405180910390f35b3480156103b5575f80fd5b506103be610ee4565b6040516103cb919061344d565b60405180910390f35b3480156103df575f80fd5b506103fa60048036038101906103f591906132c5565b610eea565b6040516104079190613425565b60405180910390f35b34801561041b575f80fd5b50610424610f07565b604051610431919061344d565b60405180910390f35b348015610445575f80fd5b5061044e610f10565b60405161045b919061344d565b60405180910390f35b34801561046f575f80fd5b50610478610f16565b604051610485919061344d565b60405180910390f35b348015610499575f80fd5b506104b460048036038101906104af9190613466565b610f1c565b6040516104c19190613425565b60405180910390f35b3480156104d5575f80fd5b506104f060048036038101906104eb91906134b6565b610f4a565b005b3480156104fd575f80fd5b50610506610ff8565b60405161051391906134fc565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d91906133cd565b611000565b60405161054f9190613425565b60405180910390f35b348015610563575f80fd5b5061056c611036565b6040516105799190613524565b60405180910390f35b34801561058d575f80fd5b5061059661105b565b6040516105a39190613425565b60405180910390f35b3480156105b7575f80fd5b506105c061106e565b6040516105cd919061344d565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f791906132c5565b611074565b005b348015610609575f80fd5b50610612611170565b60405161061f9190613425565b60405180910390f35b348015610633575f80fd5b5061063c611183565b604051610649919061344d565b60405180910390f35b34801561065d575f80fd5b50610666611189565b604051610673919061344d565b60405180910390f35b348015610687575f80fd5b5061069061118f565b60405161069d919061344d565b60405180910390f35b3480156106b1575f80fd5b506106ba611195565b6040516106c79190613425565b60405180910390f35b3480156106db575f80fd5b506106f660048036038101906106f191906132c5565b6111a8565b604051610703919061344d565b60405180910390f35b348015610717575f80fd5b506107206111ed565b005b34801561072d575f80fd5b50610736611200565b005b348015610743575f80fd5b5061074c611250565b6040516107599190613524565b60405180910390f35b34801561076d575f80fd5b50610776611275565b604051610783919061344d565b60405180910390f35b348015610797575f80fd5b506107a061127b565b005b3480156107ad575f80fd5b506107b6611335565b6040516107c3919061344d565b60405180910390f35b3480156107d7575f80fd5b506107e061133b565b6040516107ed9190613524565b60405180910390f35b348015610801575f80fd5b5061080a611363565b604051610817919061344d565b60405180910390f35b34801561082b575f80fd5b50610834611369565b604051610841919061337a565b60405180910390f35b348015610855575f80fd5b50610870600480360381019061086b91906133cd565b6113f9565b60405161087d9190613425565b60405180910390f35b348015610891575f80fd5b506108ac60048036038101906108a791906132c5565b61146e565b005b3480156108b9575f80fd5b506108d460048036038101906108cf91906133cd565b61156a565b6040516108e19190613425565b60405180910390f35b3480156108f5575f80fd5b506108fe61158c565b60405161090b919061344d565b60405180910390f35b34801561091f575f80fd5b50610928611592565b6040516109359190613425565b60405180910390f35b348015610949575f80fd5b50610964600480360381019061095f9190613567565b6115a5565b005b348015610971575f80fd5b5061098c600480360381019061098791906134b6565b611653565b005b348015610999575f80fd5b506109a2611701565b6040516109af9190613600565b60405180910390f35b3480156109c3575f80fd5b506109cc611719565b005b3480156109d9575f80fd5b506109e26117ea565b6040516109ef919061344d565b60405180910390f35b348015610a03575f80fd5b50610a1e6004803603810190610a1991906134b6565b6117f0565b005b348015610a2b575f80fd5b50610a34611866565b604051610a419190613639565b60405180910390f35b348015610a55575f80fd5b50610a5e61187e565b604051610a6b919061344d565b60405180910390f35b348015610a7f575f80fd5b50610a9a6004803603810190610a9591906134b6565b611884565b005b348015610aa7575f80fd5b50610ac26004803603810190610abd9190613652565b611932565b604051610acf919061344d565b60405180910390f35b348015610ae3575f80fd5b50610aec6119b4565b604051610af9919061344d565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b2391906132c5565b6119ba565b005b348015610b35575f80fd5b50610b3e611a3c565b604051610b4b9190613524565b60405180910390f35b348015610b5f575f80fd5b50610b68611a60565b604051610b75919061344d565b60405180910390f35b610b8661133b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c0b5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610c62575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906136da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2457610cdc61133b565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d1e573d5f803e3d5ffd5b50610e29565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d629190613524565b602060405180830381865afa158015610d7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da1919061370c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610dc761133b565b836040518363ffffffff1660e01b8152600401610de5929190613737565b6020604051808303815f875af1158015610e01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e259190613772565b5050505b50565b606060038054610e3b906137ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610e67906137ca565b8015610eb25780601f10610e8957610100808354040283529160200191610eb2565b820191905f5260205f20905b815481529060010190602001808311610e9557829003601f168201915b5050505050905090565b5f80610ec6611a66565b9050610ed3818585611a6d565b600191505092915050565b60065481565b60085481565b601a602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b60185481565b60175481565b5f80610f26611a66565b9050610f33858285611c30565b610f3e858585611cbb565b60019150509392505050565b610f52612830565b6103e86001610f5f610f07565b610f699190613827565b610f739190613895565b811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613935565b60405180910390fd5b80600b819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600b54604051610fed919061344d565b60405180910390a150565b5f6012905090565b5f8061100a611a66565b905061102b81858561101c8589611932565b6110269190613953565b611a6d565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600f5481565b61107c612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906139f6565b60405180910390fd5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b600a60179054906101000a900460ff1681565b600c5481565b60125481565b60135481565b600a60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6111f5612830565b6111fe5f6128ae565b565b611208612830565b5f600a60146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611283612830565b5f61128c61133b565b73ffffffffffffffffffffffffffffffffffffffff16476040516112af90613a41565b5f6040518083038185875af1925050503d805f81146112e9576040519150601f19603f3d011682016040523d82523d5f602084013e6112ee565b606091505b5050905080611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613ac5565b60405180910390fd5b50565b600b5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b606060048054611378906137ca565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906137ca565b80156113ef5780601f106113c6576101008083540402835291602001916113ef565b820191905f5260205f20905b8154815290600101906020018083116113d257829003601f168201915b5050505050905090565b5f80611403611a66565b90505f6114108286611932565b905083811015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613b53565b60405180910390fd5b6114628286868403611a6d565b60019250505092915050565b611476612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613be1565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f62c65ec1bb8c7d4b3758b4959a649569528cdd5ac7f4f73191f024e4988b10bc60405160405180910390a250565b5f80611574611a66565b9050611581818585611cbb565b600191505092915050565b600d5481565b600a60159054906101000a900460ff1681565b6115ad612830565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116479190613425565b60405180910390a25050565b61165b612830565b6103e86003611668610f07565b6116729190613827565b61167c9190613895565b8110156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613c6f565b60405180910390fd5b80600d819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600d546040516116f6919061344d565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b611721612830565b5f60065414611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613cfd565b60405180910390fd5b436006819055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600a60159054906101000a900460ff166040516117e09190613425565b60405180910390a1565b60165481565b6117f8612830565b620186a06001611806610f07565b6118109190613827565b61181a9190613895565b81101561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613db1565b60405180910390fd5b8060088190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b61188c612830565b6103e86001611899610f07565b6118a39190613827565b6118ad9190613895565b8110156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613e3f565b60405180910390fd5b80600c819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600c54604051611927919061344d565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b6119c2612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613ecd565b60405180910390fd5b611a39816128ae565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60155481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613f5b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090613fe9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c23919061344d565b60405180910390a3505050565b5f611c3b8484611932565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cb55781811015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90614051565b60405180910390fd5b611cb48484848403611a6d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906140df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e9061416d565b60405180910390fd5b5f8111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906141fb565b60405180910390fd5b600a60149054906101000a900460ff161561237957611df661133b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e645750611e3461133b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561237857600a60159054906101000a900460ff1661203f57601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f8a5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614289565b60405180910390fd5b611fd161133b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612035906142f1565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120e15750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561218857600b5481111561212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061437f565b60405180910390fd5b600d54612137836111a8565b826121429190613953565b1115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a9061440d565b60405180910390fd5b612377565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561222a5750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561227957600c54811115612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b9061449b565b60405180910390fd5b612376565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156123175750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561237557600d54612328836111a8565b826123339190613953565b1115612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061440d565b60405180910390fd5b5b5b5b5b5b5f612383306111a8565b90505f60085482101590508080156123a75750600a60169054906101000a900460ff165b80156123bf575060075f9054906101000a900460ff16155b801561241757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561246a575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156124bd575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124fe57600160075f6101000a81548160ff0219169083151502179055506124e4612971565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061259e575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156125a7575f90505b5f811561281c57600a60179054906101000a900460ff16156125cc576125cb612be0565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561262857505f601254115b156126e45760646012548661263d9190613827565b6126479190613895565b90506012546015548261265a9190613827565b6126649190613895565b60185f8282546126749190613953565b925050819055506012546013548261268c9190613827565b6126969190613895565b60165f8282546126a69190613953565b92505081905550601254601454826126be9190613827565b6126c89190613895565b60175f8282546126d89190613953565b925050819055506127f9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561274057505f600e54115b156127f8576064600e54866127559190613827565b61275f9190613895565b9050600e54601154826127729190613827565b61277c9190613895565b60185f82825461278c9190613953565b92505081905550600e54600f54826127a49190613827565b6127ae9190613895565b60165f8282546127be9190613953565b92505081905550600e54601054826127d69190613827565b6127e09190613895565b60175f8282546127f09190613953565b925050819055505b5b5f81111561280d5761280c873083612d40565b5b808561281991906144b9565b94505b612827878787612d40565b50505050505050565b612838611a66565b73ffffffffffffffffffffffffffffffffffffffff1661285661133b565b73ffffffffffffffffffffffffffffffffffffffff16146128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614536565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61297b306111a8565b90505f6017546016546018546129919190613953565b61299b9190613953565b90505f8214806129aa57505f81145b156129b6575050612bde565b6008548211156129c65760085491505b5f80600283601854866129d99190613827565b6129e39190613895565b6129ed9190613895565b9050612a0381856129fe91906144b9565b612fac565b5f4790505f8190505f6002601854612a1b9190613895565b86612a2691906144b9565b60165484612a349190613827565b612a3e9190613895565b90505f6002601854612a509190613895565b87612a5b91906144b9565b60175485612a699190613827565b612a739190613895565b90508082612a819190613953565b83612a8c91906144b9565b92505f6018819055505f6016819055505f6017819055505f85118015612ab157505f83115b15612ac157612ac0858461319c565b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b0690613a41565b5f6040518083038185875af1925050503d805f8114612b40576040519150601f19603f3d011682016040523d82523d5f602084013e612b45565b606091505b505080965050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612b9090613a41565b5f6040518083038185875af1925050503d805f8114612bca576040519150601f19603f3d011682016040523d82523d5f602084013e612bcf565b606091505b50508096505050505050505050505b565b5f60065411612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b9061459e565b60405180910390fd5b5f4390505f600a600654612c389190613953565b90505f6014600654612c4a9190613953565b9050818311612c68576019600e819055506019601281905550612cbd565b8183118015612c775750808311155b15612c9157600f600e81905550600f601281905550612cbc565b6004600e8190555060046012819055505f600a60176101000a81548160ff0219169083151502179055505b5b6004600e54612ccc9190613895565b6011819055506004600e54612ce19190613895565b6010819055506002600e54612cf69190613895565b600f819055506004601254612d0b9190613895565b6015819055506004601254612d209190613895565b6014819055506002601254612d359190613895565b601381905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da5906140df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e139061416d565b60405180910390fd5b612e2783838361325d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea19061462c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f93919061344d565b60405180910390a3612fa6848484613262565b50505050565b5f600267ffffffffffffffff811115612fc857612fc761464a565b5b604051908082528060200260200182016040528015612ff65781602001602082028036833780820191505090505b50905030815f8151811061300d5761300c614677565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130c891906146b8565b816001815181106130dc576130db614677565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161316b9594939291906147d3565b5f604051808303815f87803b158015613182575f80fd5b505af1158015613194573d5f803e3d5ffd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016132159695949392919061482b565b60606040518083038185885af1158015613231573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613256919061488a565b5050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6132948261326b565b9050919050565b6132a48161328a565b81146132ae575f80fd5b50565b5f813590506132bf8161329b565b92915050565b5f602082840312156132da576132d9613267565b5b5f6132e7848285016132b1565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561332757808201518184015260208101905061330c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61334c826132f0565b61335681856132fa565b935061336681856020860161330a565b61336f81613332565b840191505092915050565b5f6020820190508181035f8301526133928184613342565b905092915050565b5f819050919050565b6133ac8161339a565b81146133b6575f80fd5b50565b5f813590506133c7816133a3565b92915050565b5f80604083850312156133e3576133e2613267565b5b5f6133f0858286016132b1565b9250506020613401858286016133b9565b9150509250929050565b5f8115159050919050565b61341f8161340b565b82525050565b5f6020820190506134385f830184613416565b92915050565b6134478161339a565b82525050565b5f6020820190506134605f83018461343e565b92915050565b5f805f6060848603121561347d5761347c613267565b5b5f61348a868287016132b1565b935050602061349b868287016132b1565b92505060406134ac868287016133b9565b9150509250925092565b5f602082840312156134cb576134ca613267565b5b5f6134d8848285016133b9565b91505092915050565b5f60ff82169050919050565b6134f6816134e1565b82525050565b5f60208201905061350f5f8301846134ed565b92915050565b61351e8161328a565b82525050565b5f6020820190506135375f830184613515565b92915050565b6135468161340b565b8114613550575f80fd5b50565b5f813590506135618161353d565b92915050565b5f806040838503121561357d5761357c613267565b5b5f61358a858286016132b1565b925050602061359b85828601613553565b9150509250929050565b5f819050919050565b5f6135c86135c36135be8461326b565b6135a5565b61326b565b9050919050565b5f6135d9826135ae565b9050919050565b5f6135ea826135cf565b9050919050565b6135fa816135e0565b82525050565b5f6020820190506136135f8301846135f1565b92915050565b5f613623826135cf565b9050919050565b61363381613619565b82525050565b5f60208201905061364c5f83018461362a565b92915050565b5f806040838503121561366857613667613267565b5b5f613675858286016132b1565b9250506020613686858286016132b1565b9150509250929050565b7f53454e444954204552524f523a204e6f7420617574686f72697a6564000000005f82015250565b5f6136c4601c836132fa565b91506136cf82613690565b602082019050919050565b5f6020820190508181035f8301526136f1816136b8565b9050919050565b5f81519050613706816133a3565b92915050565b5f6020828403121561372157613720613267565b5b5f61372e848285016136f8565b91505092915050565b5f60408201905061374a5f830185613515565b613757602083018461343e565b9392505050565b5f8151905061376c8161353d565b92915050565b5f6020828403121561378757613786613267565b5b5f6137948482850161375e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806137e157607f821691505b6020821081036137f4576137f361379d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138318261339a565b915061383c8361339a565b925082820261384a8161339a565b91508282048414831517613861576138606137fa565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61389f8261339a565b91506138aa8361339a565b9250826138ba576138b9613868565b5b828204905092915050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d6178206275795f8201527f20616d6f756e74206c6f776572207468616e20302e3125000000000000000000602082015250565b5f61391f6037836132fa565b915061392a826138c5565b604082019050919050565b5f6020820190508181035f83015261394c81613913565b9050919050565b5f61395d8261339a565b91506139688361339a565b92508282019050808211156139805761397f6137fa565b5b92915050565b7f53454e444954204552524f523a205f6d61726b6574696e6757616c6c657420615f8201527f6464726573732063616e6e6f7420626520300000000000000000000000000000602082015250565b5f6139e06032836132fa565b91506139eb82613986565b604082019050919050565b5f6020820190508181035f830152613a0d816139d4565b9050919050565b5f81905092915050565b50565b5f613a2c5f83613a14565b9150613a3782613a1e565b5f82019050919050565b5f613a4b82613a21565b9150819050919050565b7f53454e444954204552524f523a206661696c656420746f2077697468647261775f8201527f2066756e64730000000000000000000000000000000000000000000000000000602082015250565b5f613aaf6026836132fa565b9150613aba82613a55565b604082019050919050565b5f6020820190508181035f830152613adc81613aa3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613b3d6025836132fa565b9150613b4882613ae3565b604082019050919050565b5f6020820190508181035f830152613b6a81613b31565b9050919050565b7f53454e444954204552524f523a205f747265617375727957616c6c65742061645f8201527f64726573732063616e6e6f742062652030000000000000000000000000000000602082015250565b5f613bcb6031836132fa565b9150613bd682613b71565b604082019050919050565b5f6020820190508181035f830152613bf881613bbf565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d61782077616c5f8201527f6c657420616d6f756e74206c6f776572207468616e20302e3325000000000000602082015250565b5f613c59603a836132fa565b9150613c6482613bff565b604082019050919050565b5f6020820190508181035f830152613c8681613c4d565b9050919050565b7f53454e444954204552524f523a20546f6b656e20737461746520697320616c725f8201527f65616479206c6976652021000000000000000000000000000000000000000000602082015250565b5f613ce7602b836132fa565b9150613cf282613c8d565b604082019050919050565b5f6020820190508181035f830152613d1481613cdb565b9050919050565b7f53454e444954204552524f523a205377617020616d6f756e742063616e6e6f745f8201527f206265206c6f776572207468616e20302e3030312520746f74616c207375707060208201527f6c792e0000000000000000000000000000000000000000000000000000000000604082015250565b5f613d9b6043836132fa565b9150613da682613d1b565b606082019050919050565b5f6020820190508181035f830152613dc881613d8f565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d61782073656c5f8201527f6c20616d6f756e74206c6f776572207468616e20302e31250000000000000000602082015250565b5f613e296038836132fa565b9150613e3482613dcf565b604082019050919050565b5f6020820190508181035f830152613e5681613e1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613eb76026836132fa565b9150613ec282613e5d565b604082019050919050565b5f6020820190508181035f830152613ee481613eab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613f456024836132fa565b9150613f5082613eeb565b604082019050919050565b5f6020820190508181035f830152613f7281613f39565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613fd36022836132fa565b9150613fde82613f79565b604082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61403b601d836132fa565b915061404682614007565b602082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6140c96025836132fa565b91506140d48261406f565b604082019050919050565b5f6020820190508181035f8301526140f6816140bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6141576023836132fa565b9150614162826140fd565b604082019050919050565b5f6020820190508181035f8301526141848161414b565b9050919050565b7f53454e444954204552524f523a20616d6f756e74206d757374206265206772655f8201527f61746572207468616e2030000000000000000000000000000000000000000000602082015250565b5f6141e5602b836132fa565b91506141f08261418b565b604082019050919050565b5f6020820190508181035f830152614212816141d9565b9050919050565b7f53454e444954204552524f523a2054726164696e67206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6142736024836132fa565b915061427e82614219565b604082019050919050565b5f6020820190508181035f8301526142a081614267565b9050919050565b7f53454e444954204552524f523a2054726164696e6720697320656e61626c65645f82015250565b5f6142db6020836132fa565b91506142e6826142a7565b602082019050919050565b5f6020820190508181035f830152614308816142cf565b9050919050565b7f53454e444954204552524f523a20427579207472616e7366657220616d6f756e5f8201527f74206578636565647320746865206d6178206275792e00000000000000000000602082015250565b5f6143696036836132fa565b91506143748261430f565b604082019050919050565b5f6020820190508181035f8301526143968161435d565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420457863656564206d6178205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f6143f76026836132fa565b91506144028261439d565b604082019050919050565b5f6020820190508181035f830152614424816143eb565b9050919050565b7f53454e444954204552524f523a2053656c6c207472616e7366657220616d6f755f8201527f6e74206578636565647320746865206d61782073656c6c2e0000000000000000602082015250565b5f6144856038836132fa565b91506144908261442b565b604082019050919050565b5f6020820190508181035f8301526144b281614479565b9050919050565b5f6144c38261339a565b91506144ce8361339a565b92508282039050818111156144e6576144e56137fa565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6145206020836132fa565b915061452b826144ec565b602082019050919050565b5f6020820190508181035f83015261454d81614514565b9050919050565b7f53454e444954204552524f523a2054726164696e67206e6f74206c69766500005f82015250565b5f614588601e836132fa565b915061459382614554565b602082019050919050565b5f6020820190508181035f8301526145b58161457c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6146166026836132fa565b9150614621826145bc565b604082019050919050565b5f6020820190508181035f8301526146438161460a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506146b28161329b565b92915050565b5f602082840312156146cd576146cc613267565b5b5f6146da848285016146a4565b91505092915050565b5f819050919050565b5f6147066147016146fc846146e3565b6135a5565b61339a565b9050919050565b614716816146ec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61474e8161328a565b82525050565b5f61475f8383614745565b60208301905092915050565b5f602082019050919050565b5f6147818261471c565b61478b8185614726565b935061479683614736565b805f5b838110156147c65781516147ad8882614754565b97506147b88361476b565b925050600181019050614799565b5085935050505092915050565b5f60a0820190506147e65f83018861343e565b6147f3602083018761470d565b81810360408301526148058186614777565b90506148146060830185613515565b614821608083018461343e565b9695505050505050565b5f60c08201905061483e5f830189613515565b61484b602083018861343e565b614858604083018761470d565b614865606083018661470d565b6148726080830185613515565b61487f60a083018461343e565b979650505050505050565b5f805f606084860312156148a1576148a0613267565b5b5f6148ae868287016136f8565b93505060206148bf868287016136f8565b92505060406148d0868287016136f8565b915050925092509256fea2646970667358221220723a13d3522160b7d5db8c8039e216f2818483aee56755813b3f4c8faa2dfb7264736f6c63430008140033

Deployed Bytecode

0x6080604052600436106102e7575f3560e01c806375f0a8741161018f578063c18bc195116100db578063d85ba06311610094578063f11a24d31161006e578063f11a24d314610ad8578063f2fde38b14610b02578063f40acc3d14610b2a578063f637434214610b54576102ee565b8063d85ba06314610a4a578063dc3f0d0f14610a74578063dd62ed3e14610a9c576102ee565b8063c18bc19514610966578063c74c0fac1461098e578063c9567bf9146109b8578063cc2ffe7c146109ce578063d257b34f146109f8578063d826492014610a20576102ee565b806395d89b4111610148578063a9059cbb11610122578063a9059cbb146108ae578063aa4bde28146108ea578063bbc0c74214610914578063c02466681461093e576102ee565b806395d89b4114610820578063a457c2d71461084a578063a8602fea14610886576102ee565b806375f0a874146107385780637bce5a04146107625780637fa787ba1461078c57806388e765ff146107a25780638da5cb5b146107cc57806392136913146107f6576102ee565b8063395093511161024e57806366d602ae116102075780636ddd1713116101e15780636ddd1713146106a657806370a08231146106d0578063715018a61461070c578063751039fc14610722576102ee565b806366d602ae146106285780636a486a8e146106525780636b2fb1241461067c576102ee565b8063395093511461051c5780634626402b146105585780634a62bb65146105825780635c068a8c146105ac5780635d098b38146105d65780636057b3eb146105fe576102ee565b806318160ddd116102a057806318160ddd146104105780631a8145bb1461043a5780631f3fed8f1461046457806323b872dd1461048e5780632be32b61146104ca578063313ce567146104f2576102ee565b8063068acf6c146102f257806306fdde031461031a578063095ea7b3146103445780630a3b39a3146103805780630e300099146103aa57806310d5de53146103d4576102ee565b366102ee57005b5f80fd5b3480156102fd575f80fd5b50610318600480360381019061031391906132c5565b610b7e565b005b348015610325575f80fd5b5061032e610e2c565b60405161033b919061337a565b60405180910390f35b34801561034f575f80fd5b5061036a600480360381019061036591906133cd565b610ebc565b6040516103779190613425565b60405180910390f35b34801561038b575f80fd5b50610394610ede565b6040516103a1919061344d565b60405180910390f35b3480156103b5575f80fd5b506103be610ee4565b6040516103cb919061344d565b60405180910390f35b3480156103df575f80fd5b506103fa60048036038101906103f591906132c5565b610eea565b6040516104079190613425565b60405180910390f35b34801561041b575f80fd5b50610424610f07565b604051610431919061344d565b60405180910390f35b348015610445575f80fd5b5061044e610f10565b60405161045b919061344d565b60405180910390f35b34801561046f575f80fd5b50610478610f16565b604051610485919061344d565b60405180910390f35b348015610499575f80fd5b506104b460048036038101906104af9190613466565b610f1c565b6040516104c19190613425565b60405180910390f35b3480156104d5575f80fd5b506104f060048036038101906104eb91906134b6565b610f4a565b005b3480156104fd575f80fd5b50610506610ff8565b60405161051391906134fc565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d91906133cd565b611000565b60405161054f9190613425565b60405180910390f35b348015610563575f80fd5b5061056c611036565b6040516105799190613524565b60405180910390f35b34801561058d575f80fd5b5061059661105b565b6040516105a39190613425565b60405180910390f35b3480156105b7575f80fd5b506105c061106e565b6040516105cd919061344d565b60405180910390f35b3480156105e1575f80fd5b506105fc60048036038101906105f791906132c5565b611074565b005b348015610609575f80fd5b50610612611170565b60405161061f9190613425565b60405180910390f35b348015610633575f80fd5b5061063c611183565b604051610649919061344d565b60405180910390f35b34801561065d575f80fd5b50610666611189565b604051610673919061344d565b60405180910390f35b348015610687575f80fd5b5061069061118f565b60405161069d919061344d565b60405180910390f35b3480156106b1575f80fd5b506106ba611195565b6040516106c79190613425565b60405180910390f35b3480156106db575f80fd5b506106f660048036038101906106f191906132c5565b6111a8565b604051610703919061344d565b60405180910390f35b348015610717575f80fd5b506107206111ed565b005b34801561072d575f80fd5b50610736611200565b005b348015610743575f80fd5b5061074c611250565b6040516107599190613524565b60405180910390f35b34801561076d575f80fd5b50610776611275565b604051610783919061344d565b60405180910390f35b348015610797575f80fd5b506107a061127b565b005b3480156107ad575f80fd5b506107b6611335565b6040516107c3919061344d565b60405180910390f35b3480156107d7575f80fd5b506107e061133b565b6040516107ed9190613524565b60405180910390f35b348015610801575f80fd5b5061080a611363565b604051610817919061344d565b60405180910390f35b34801561082b575f80fd5b50610834611369565b604051610841919061337a565b60405180910390f35b348015610855575f80fd5b50610870600480360381019061086b91906133cd565b6113f9565b60405161087d9190613425565b60405180910390f35b348015610891575f80fd5b506108ac60048036038101906108a791906132c5565b61146e565b005b3480156108b9575f80fd5b506108d460048036038101906108cf91906133cd565b61156a565b6040516108e19190613425565b60405180910390f35b3480156108f5575f80fd5b506108fe61158c565b60405161090b919061344d565b60405180910390f35b34801561091f575f80fd5b50610928611592565b6040516109359190613425565b60405180910390f35b348015610949575f80fd5b50610964600480360381019061095f9190613567565b6115a5565b005b348015610971575f80fd5b5061098c600480360381019061098791906134b6565b611653565b005b348015610999575f80fd5b506109a2611701565b6040516109af9190613600565b60405180910390f35b3480156109c3575f80fd5b506109cc611719565b005b3480156109d9575f80fd5b506109e26117ea565b6040516109ef919061344d565b60405180910390f35b348015610a03575f80fd5b50610a1e6004803603810190610a1991906134b6565b6117f0565b005b348015610a2b575f80fd5b50610a34611866565b604051610a419190613639565b60405180910390f35b348015610a55575f80fd5b50610a5e61187e565b604051610a6b919061344d565b60405180910390f35b348015610a7f575f80fd5b50610a9a6004803603810190610a9591906134b6565b611884565b005b348015610aa7575f80fd5b50610ac26004803603810190610abd9190613652565b611932565b604051610acf919061344d565b60405180910390f35b348015610ae3575f80fd5b50610aec6119b4565b604051610af9919061344d565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b2391906132c5565b6119ba565b005b348015610b35575f80fd5b50610b3e611a3c565b604051610b4b9190613524565b60405180910390f35b348015610b5f575f80fd5b50610b68611a60565b604051610b75919061344d565b60405180910390f35b610b8661133b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c0b5750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610c62575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906136da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2457610cdc61133b565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d1e573d5f803e3d5ffd5b50610e29565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d629190613524565b602060405180830381865afa158015610d7d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da1919061370c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610dc761133b565b836040518363ffffffff1660e01b8152600401610de5929190613737565b6020604051808303815f875af1158015610e01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e259190613772565b5050505b50565b606060038054610e3b906137ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610e67906137ca565b8015610eb25780601f10610e8957610100808354040283529160200191610eb2565b820191905f5260205f20905b815481529060010190602001808311610e9557829003601f168201915b5050505050905090565b5f80610ec6611a66565b9050610ed3818585611a6d565b600191505092915050565b60065481565b60085481565b601a602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b60185481565b60175481565b5f80610f26611a66565b9050610f33858285611c30565b610f3e858585611cbb565b60019150509392505050565b610f52612830565b6103e86001610f5f610f07565b610f699190613827565b610f739190613895565b811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613935565b60405180910390fd5b80600b819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600b54604051610fed919061344d565b60405180910390a150565b5f6012905090565b5f8061100a611a66565b905061102b81858561101c8589611932565b6110269190613953565b611a6d565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600f5481565b61107c612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e1906139f6565b60405180910390fd5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b600a60179054906101000a900460ff1681565b600c5481565b60125481565b60135481565b600a60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6111f5612830565b6111fe5f6128ae565b565b611208612830565b5f600a60146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611283612830565b5f61128c61133b565b73ffffffffffffffffffffffffffffffffffffffff16476040516112af90613a41565b5f6040518083038185875af1925050503d805f81146112e9576040519150601f19603f3d011682016040523d82523d5f602084013e6112ee565b606091505b5050905080611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613ac5565b60405180910390fd5b50565b600b5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b606060048054611378906137ca565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906137ca565b80156113ef5780601f106113c6576101008083540402835291602001916113ef565b820191905f5260205f20905b8154815290600101906020018083116113d257829003601f168201915b5050505050905090565b5f80611403611a66565b90505f6114108286611932565b905083811015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613b53565b60405180910390fd5b6114628286868403611a6d565b60019250505092915050565b611476612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613be1565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f62c65ec1bb8c7d4b3758b4959a649569528cdd5ac7f4f73191f024e4988b10bc60405160405180910390a250565b5f80611574611a66565b9050611581818585611cbb565b600191505092915050565b600d5481565b600a60159054906101000a900460ff1681565b6115ad612830565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116479190613425565b60405180910390a25050565b61165b612830565b6103e86003611668610f07565b6116729190613827565b61167c9190613895565b8110156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590613c6f565b60405180910390fd5b80600d819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600d546040516116f6919061344d565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b611721612830565b5f60065414611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90613cfd565b60405180910390fd5b436006819055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600a60159054906101000a900460ff166040516117e09190613425565b60405180910390a1565b60165481565b6117f8612830565b620186a06001611806610f07565b6118109190613827565b61181a9190613895565b81101561185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613db1565b60405180910390fd5b8060088190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b61188c612830565b6103e86001611899610f07565b6118a39190613827565b6118ad9190613895565b8110156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613e3f565b60405180910390fd5b80600c819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600c54604051611927919061344d565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b6119c2612830565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2790613ecd565b60405180910390fd5b611a39816128ae565b50565b7f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d481565b60155481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613f5b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4090613fe9565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c23919061344d565b60405180910390a3505050565b5f611c3b8484611932565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cb55781811015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90614051565b60405180910390fd5b611cb48484848403611a6d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d20906140df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e9061416d565b60405180910390fd5b5f8111611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd0906141fb565b60405180910390fd5b600a60149054906101000a900460ff161561237957611df661133b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e645750611e3461133b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ed6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561237857600a60159054906101000a900460ff1661203f57601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f8a5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc090614289565b60405180910390fd5b611fd161133b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612035906142f1565b60405180910390fd5b5b7f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120e15750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561218857600b5481111561212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061437f565b60405180910390fd5b600d54612137836111a8565b826121429190613953565b1115612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a9061440d565b60405180910390fd5b612377565b7f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561222a5750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561227957600c54811115612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b9061449b565b60405180910390fd5b612376565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156123175750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561237557600d54612328836111a8565b826123339190613953565b1115612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b9061440d565b60405180910390fd5b5b5b5b5b5b5f612383306111a8565b90505f60085482101590508080156123a75750600a60169054906101000a900460ff165b80156123bf575060075f9054906101000a900460ff16155b801561241757507f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d473ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561246a575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156124bd575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124fe57600160075f6101000a81548160ff0219169083151502179055506124e4612971565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061259e575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156125a7575f90505b5f811561281c57600a60179054906101000a900460ff16156125cc576125cb612be0565b5b7f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561262857505f601254115b156126e45760646012548661263d9190613827565b6126479190613895565b90506012546015548261265a9190613827565b6126649190613895565b60185f8282546126749190613953565b925050819055506012546013548261268c9190613827565b6126969190613895565b60165f8282546126a69190613953565b92505081905550601254601454826126be9190613827565b6126c89190613895565b60175f8282546126d89190613953565b925050819055506127f9565b7f000000000000000000000000e65c997b0044b550a44f0c7d7a8f36866a9b75d473ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561274057505f600e54115b156127f8576064600e54866127559190613827565b61275f9190613895565b9050600e54601154826127729190613827565b61277c9190613895565b60185f82825461278c9190613953565b92505081905550600e54600f54826127a49190613827565b6127ae9190613895565b60165f8282546127be9190613953565b92505081905550600e54601054826127d69190613827565b6127e09190613895565b60175f8282546127f09190613953565b925050819055505b5b5f81111561280d5761280c873083612d40565b5b808561281991906144b9565b94505b612827878787612d40565b50505050505050565b612838611a66565b73ffffffffffffffffffffffffffffffffffffffff1661285661133b565b73ffffffffffffffffffffffffffffffffffffffff16146128ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a390614536565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61297b306111a8565b90505f6017546016546018546129919190613953565b61299b9190613953565b90505f8214806129aa57505f81145b156129b6575050612bde565b6008548211156129c65760085491505b5f80600283601854866129d99190613827565b6129e39190613895565b6129ed9190613895565b9050612a0381856129fe91906144b9565b612fac565b5f4790505f8190505f6002601854612a1b9190613895565b86612a2691906144b9565b60165484612a349190613827565b612a3e9190613895565b90505f6002601854612a509190613895565b87612a5b91906144b9565b60175485612a699190613827565b612a739190613895565b90508082612a819190613953565b83612a8c91906144b9565b92505f6018819055505f6016819055505f6017819055505f85118015612ab157505f83115b15612ac157612ac0858461319c565b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b0690613a41565b5f6040518083038185875af1925050503d805f8114612b40576040519150601f19603f3d011682016040523d82523d5f602084013e612b45565b606091505b505080965050600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612b9090613a41565b5f6040518083038185875af1925050503d805f8114612bca576040519150601f19603f3d011682016040523d82523d5f602084013e612bcf565b606091505b50508096505050505050505050505b565b5f60065411612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b9061459e565b60405180910390fd5b5f4390505f600a600654612c389190613953565b90505f6014600654612c4a9190613953565b9050818311612c68576019600e819055506019601281905550612cbd565b8183118015612c775750808311155b15612c9157600f600e81905550600f601281905550612cbc565b6004600e8190555060046012819055505f600a60176101000a81548160ff0219169083151502179055505b5b6004600e54612ccc9190613895565b6011819055506004600e54612ce19190613895565b6010819055506002600e54612cf69190613895565b600f819055506004601254612d0b9190613895565b6015819055506004601254612d209190613895565b6014819055506002601254612d359190613895565b601381905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da5906140df565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e139061416d565b60405180910390fd5b612e2783838361325d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea19061462c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f93919061344d565b60405180910390a3612fa6848484613262565b50505050565b5f600267ffffffffffffffff811115612fc857612fc761464a565b5b604051908082528060200260200182016040528015612ff65781602001602082028036833780820191505090505b50905030815f8151811061300d5761300c614677565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130c891906146b8565b816001815181106130dc576130db614677565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161316b9594939291906147d3565b5f604051808303815f87803b158015613182575f80fd5b505af1158015613194573d5f803e3d5ffd5b505050505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016132159695949392919061482b565b60606040518083038185885af1158015613231573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613256919061488a565b5050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6132948261326b565b9050919050565b6132a48161328a565b81146132ae575f80fd5b50565b5f813590506132bf8161329b565b92915050565b5f602082840312156132da576132d9613267565b5b5f6132e7848285016132b1565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561332757808201518184015260208101905061330c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61334c826132f0565b61335681856132fa565b935061336681856020860161330a565b61336f81613332565b840191505092915050565b5f6020820190508181035f8301526133928184613342565b905092915050565b5f819050919050565b6133ac8161339a565b81146133b6575f80fd5b50565b5f813590506133c7816133a3565b92915050565b5f80604083850312156133e3576133e2613267565b5b5f6133f0858286016132b1565b9250506020613401858286016133b9565b9150509250929050565b5f8115159050919050565b61341f8161340b565b82525050565b5f6020820190506134385f830184613416565b92915050565b6134478161339a565b82525050565b5f6020820190506134605f83018461343e565b92915050565b5f805f6060848603121561347d5761347c613267565b5b5f61348a868287016132b1565b935050602061349b868287016132b1565b92505060406134ac868287016133b9565b9150509250925092565b5f602082840312156134cb576134ca613267565b5b5f6134d8848285016133b9565b91505092915050565b5f60ff82169050919050565b6134f6816134e1565b82525050565b5f60208201905061350f5f8301846134ed565b92915050565b61351e8161328a565b82525050565b5f6020820190506135375f830184613515565b92915050565b6135468161340b565b8114613550575f80fd5b50565b5f813590506135618161353d565b92915050565b5f806040838503121561357d5761357c613267565b5b5f61358a858286016132b1565b925050602061359b85828601613553565b9150509250929050565b5f819050919050565b5f6135c86135c36135be8461326b565b6135a5565b61326b565b9050919050565b5f6135d9826135ae565b9050919050565b5f6135ea826135cf565b9050919050565b6135fa816135e0565b82525050565b5f6020820190506136135f8301846135f1565b92915050565b5f613623826135cf565b9050919050565b61363381613619565b82525050565b5f60208201905061364c5f83018461362a565b92915050565b5f806040838503121561366857613667613267565b5b5f613675858286016132b1565b9250506020613686858286016132b1565b9150509250929050565b7f53454e444954204552524f523a204e6f7420617574686f72697a6564000000005f82015250565b5f6136c4601c836132fa565b91506136cf82613690565b602082019050919050565b5f6020820190508181035f8301526136f1816136b8565b9050919050565b5f81519050613706816133a3565b92915050565b5f6020828403121561372157613720613267565b5b5f61372e848285016136f8565b91505092915050565b5f60408201905061374a5f830185613515565b613757602083018461343e565b9392505050565b5f8151905061376c8161353d565b92915050565b5f6020828403121561378757613786613267565b5b5f6137948482850161375e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806137e157607f821691505b6020821081036137f4576137f361379d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138318261339a565b915061383c8361339a565b925082820261384a8161339a565b91508282048414831517613861576138606137fa565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61389f8261339a565b91506138aa8361339a565b9250826138ba576138b9613868565b5b828204905092915050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d6178206275795f8201527f20616d6f756e74206c6f776572207468616e20302e3125000000000000000000602082015250565b5f61391f6037836132fa565b915061392a826138c5565b604082019050919050565b5f6020820190508181035f83015261394c81613913565b9050919050565b5f61395d8261339a565b91506139688361339a565b92508282019050808211156139805761397f6137fa565b5b92915050565b7f53454e444954204552524f523a205f6d61726b6574696e6757616c6c657420615f8201527f6464726573732063616e6e6f7420626520300000000000000000000000000000602082015250565b5f6139e06032836132fa565b91506139eb82613986565b604082019050919050565b5f6020820190508181035f830152613a0d816139d4565b9050919050565b5f81905092915050565b50565b5f613a2c5f83613a14565b9150613a3782613a1e565b5f82019050919050565b5f613a4b82613a21565b9150819050919050565b7f53454e444954204552524f523a206661696c656420746f2077697468647261775f8201527f2066756e64730000000000000000000000000000000000000000000000000000602082015250565b5f613aaf6026836132fa565b9150613aba82613a55565b604082019050919050565b5f6020820190508181035f830152613adc81613aa3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613b3d6025836132fa565b9150613b4882613ae3565b604082019050919050565b5f6020820190508181035f830152613b6a81613b31565b9050919050565b7f53454e444954204552524f523a205f747265617375727957616c6c65742061645f8201527f64726573732063616e6e6f742062652030000000000000000000000000000000602082015250565b5f613bcb6031836132fa565b9150613bd682613b71565b604082019050919050565b5f6020820190508181035f830152613bf881613bbf565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d61782077616c5f8201527f6c657420616d6f756e74206c6f776572207468616e20302e3325000000000000602082015250565b5f613c59603a836132fa565b9150613c6482613bff565b604082019050919050565b5f6020820190508181035f830152613c8681613c4d565b9050919050565b7f53454e444954204552524f523a20546f6b656e20737461746520697320616c725f8201527f65616479206c6976652021000000000000000000000000000000000000000000602082015250565b5f613ce7602b836132fa565b9150613cf282613c8d565b604082019050919050565b5f6020820190508181035f830152613d1481613cdb565b9050919050565b7f53454e444954204552524f523a205377617020616d6f756e742063616e6e6f745f8201527f206265206c6f776572207468616e20302e3030312520746f74616c207375707060208201527f6c792e0000000000000000000000000000000000000000000000000000000000604082015250565b5f613d9b6043836132fa565b9150613da682613d1b565b606082019050919050565b5f6020820190508181035f830152613dc881613d8f565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420736574206d61782073656c5f8201527f6c20616d6f756e74206c6f776572207468616e20302e31250000000000000000602082015250565b5f613e296038836132fa565b9150613e3482613dcf565b604082019050919050565b5f6020820190508181035f830152613e5681613e1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613eb76026836132fa565b9150613ec282613e5d565b604082019050919050565b5f6020820190508181035f830152613ee481613eab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613f456024836132fa565b9150613f5082613eeb565b604082019050919050565b5f6020820190508181035f830152613f7281613f39565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613fd36022836132fa565b9150613fde82613f79565b604082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61403b601d836132fa565b915061404682614007565b602082019050919050565b5f6020820190508181035f8301526140688161402f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6140c96025836132fa565b91506140d48261406f565b604082019050919050565b5f6020820190508181035f8301526140f6816140bd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6141576023836132fa565b9150614162826140fd565b604082019050919050565b5f6020820190508181035f8301526141848161414b565b9050919050565b7f53454e444954204552524f523a20616d6f756e74206d757374206265206772655f8201527f61746572207468616e2030000000000000000000000000000000000000000000602082015250565b5f6141e5602b836132fa565b91506141f08261418b565b604082019050919050565b5f6020820190508181035f830152614212816141d9565b9050919050565b7f53454e444954204552524f523a2054726164696e67206973206e6f74206163745f8201527f6976652e00000000000000000000000000000000000000000000000000000000602082015250565b5f6142736024836132fa565b915061427e82614219565b604082019050919050565b5f6020820190508181035f8301526142a081614267565b9050919050565b7f53454e444954204552524f523a2054726164696e6720697320656e61626c65645f82015250565b5f6142db6020836132fa565b91506142e6826142a7565b602082019050919050565b5f6020820190508181035f830152614308816142cf565b9050919050565b7f53454e444954204552524f523a20427579207472616e7366657220616d6f756e5f8201527f74206578636565647320746865206d6178206275792e00000000000000000000602082015250565b5f6143696036836132fa565b91506143748261430f565b604082019050919050565b5f6020820190508181035f8301526143968161435d565b9050919050565b7f53454e444954204552524f523a2043616e6e6f7420457863656564206d6178205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f6143f76026836132fa565b91506144028261439d565b604082019050919050565b5f6020820190508181035f830152614424816143eb565b9050919050565b7f53454e444954204552524f523a2053656c6c207472616e7366657220616d6f755f8201527f6e74206578636565647320746865206d61782073656c6c2e0000000000000000602082015250565b5f6144856038836132fa565b91506144908261442b565b604082019050919050565b5f6020820190508181035f8301526144b281614479565b9050919050565b5f6144c38261339a565b91506144ce8361339a565b92508282039050818111156144e6576144e56137fa565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6145206020836132fa565b915061452b826144ec565b602082019050919050565b5f6020820190508181035f83015261454d81614514565b9050919050565b7f53454e444954204552524f523a2054726164696e67206e6f74206c69766500005f82015250565b5f614588601e836132fa565b915061459382614554565b602082019050919050565b5f6020820190508181035f8301526145b58161457c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6146166026836132fa565b9150614621826145bc565b604082019050919050565b5f6020820190508181035f8301526146438161460a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506146b28161329b565b92915050565b5f602082840312156146cd576146cc613267565b5b5f6146da848285016146a4565b91505092915050565b5f819050919050565b5f6147066147016146fc846146e3565b6135a5565b61339a565b9050919050565b614716816146ec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61474e8161328a565b82525050565b5f61475f8383614745565b60208301905092915050565b5f602082019050919050565b5f6147818261471c565b61478b8185614726565b935061479683614736565b805f5b838110156147c65781516147ad8882614754565b97506147b88361476b565b925050600181019050614799565b5085935050505092915050565b5f60a0820190506147e65f83018861343e565b6147f3602083018761470d565b81810360408301526148058186614777565b90506148146060830185613515565b614821608083018461343e565b9695505050505050565b5f60c08201905061483e5f830189613515565b61484b602083018861343e565b614858604083018761470d565b614865606083018661470d565b6148726080830185613515565b61487f60a083018461343e565b979650505050505050565b5f805f606084860312156148a1576148a0613267565b5b5f6148ae868287016136f8565b93505060206148bf868287016136f8565b92505060406148d0868287016136f8565b915050925092509256fea2646970667358221220723a13d3522160b7d5db8c8039e216f2818483aee56755813b3f4c8faa2dfb7264736f6c63430008140033

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.