ETH Price: $2,283.39 (-3.53%)

Token

aUtIStiC InU (AI)
 

Overview

Max Total Supply

420,000,000 AI

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,239,011.146898929806304162 AI

Value
$0.00
0x7434431A5De29e014aE614D5F7F2ba2C609f54F0
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:
aUtIStiCInU

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.8.18;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

/*
web: https://www.autisticinu.net
telegram: https://t.me/AutisticInuEth
*/

/*
 _______  __   __  _______  ___   _______  _______  ___   _______    ___   __    _  __   __ 
|   _   ||  | |  ||       ||   | |       ||       ||   | |       |  |   | |  |  | ||  | |  |
|  |_|  ||  | |  ||_     _||   | |  _____||_     _||   | |       |  |   | |   |_| ||  | |  |
|       ||  |_|  |  |   |  |   | | |_____   |   |  |   | |       |  |   | |       ||  |_|  |
|       ||       |  |   |  |   | |_____  |  |   |  |   | |      _|  |   | |  _    ||       |
|   _   ||       |  |   |  |   |  _____| |  |   |  |   | |     |_   |   | | | |   ||       |
|__| |__||_______|  |___|  |___| |_______|  |___|  |___| |_______|  |___| |_|  |__||_______|
*/

contract aUtIStiCInU is ERC20, Ownable {

    mapping (address => bool) private _nOTeNdieFeE;
    mapping (address => bool) public _mAxTeNdIEsFoRYou;
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) private _rekR;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public tEnDiEWaLleT;

    bool public apeTIME;
    bool public swapEnabled;
    bool private swapping;


    uint256 public swapTokensAtAmount;
    uint256 public mAxApInG;
    uint256 private buYtOtAlTeNdIeS;
    uint256 public bUYteAMtEnDieS;
    uint256 public bUyAuTiStTeNdIeS;
    uint256 public buyBuRnTenDiEs;

    uint256 private sELLtOtAlTeNdIeS;
    uint256 public sEllTeAmTEndIEs;
    uint256 public seLLauTiSTteNDies;
    uint256 public sELLbUrNTeNdIeS;

    uint256 public tOkEnSfOrTeAmAuTiSt;
    uint256 public tOkEnSfOrAuTiStS;
    uint256 public tOkEnSfOrBuRn;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event tiMeToAPe();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedmAxApInG(uint256 newAmount);

    event MaxTransactionExclusion(address _address, bool excluded);

    constructor() ERC20("aUtIStiC InU", "AI") {
        
       IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        uint256 totalSupply = 420000000 * 1e18;
        
        mAxApInG = totalSupply * 2 / 100; //2% max wallet
        swapTokensAtAmount = totalSupply * 100 / 100000; // 0.1% swap amount

        bUYteAMtEnDieS = 14;
        bUyAuTiStTeNdIeS = 1;
        buyBuRnTenDiEs = 0;
        buYtOtAlTeNdIeS = bUYteAMtEnDieS + bUyAuTiStTeNdIeS;

        sEllTeAmTEndIEs = 35;
        seLLauTiSTteNDies = 1;
        sELLbUrNTeNdIeS = 0;
        sELLtOtAlTeNdIeS = sEllTeAmTEndIEs + seLLauTiSTteNDies;

        _maXtEnDiEs(msg.sender, true);
        _maXtEnDiEs(address(this), true);
        _maXtEnDiEs(address(0xdead), true);

        nOtEnDiEFeE(msg.sender, true);
        nOtEnDiEFeE(address(this), true);
        nOtEnDiEFeE(address(0xdead), true);

        tEnDiEWaLleT = 0x4F25dFa1718EfC1026d4a60B6cA4fEAd4900Fc17;


        _mint(msg.sender, totalSupply);
    
    }

    //Time to fkn moon 
    function eNaBLeAPING() external onlyOwner {
        require(!apeTIME, "Cannot reenable trading");
        apeTIME = true;
        swapEnabled = true;
        emit tiMeToAPe();
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        
        _maXtEnDiEs(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatemAxApInG(uint256 newNum) external onlyOwner {
        mAxApInG = newNum * (10**18);
        emit UpdatedmAxApInG(mAxApInG);
    }


    function uPdAtEbUytEnDiEfEeS(uint256 tEaMTenDiEs, uint256 aUtIsTtEnDieS, uint256 bUrNtEnDiEs) external onlyOwner {
        bUYteAMtEnDieS = tEaMTenDiEs;
        bUyAuTiStTeNdIeS = aUtIsTtEnDieS;
        buyBuRnTenDiEs = bUrNtEnDiEs;
        buYtOtAlTeNdIeS = bUYteAMtEnDieS + bUyAuTiStTeNdIeS;
    }

    function uPDatEsELLteNdiEs(uint256 tEaMTenDiEs, uint256 aUtIsTtEnDieS, uint256 bUrNtEnDiEs) external onlyOwner {
        sEllTeAmTEndIEs = tEaMTenDiEs;
        seLLauTiSTteNDies = aUtIsTtEnDieS;
        sELLbUrNTeNdIeS = bUrNtEnDiEs;
        sELLtOtAlTeNdIeS = sEllTeAmTEndIEs + seLLauTiSTteNDies;
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 3 / 100, "Swap amount cannot be higher than 3% total supply.");
        swapTokensAtAmount = newAmount * (10**18);
    }
    
    function _maXtEnDiEs(address updAds, bool isExcluded) private {
        _mAxTeNdIEsFoRYou[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != uniswapV2Pair, "Cannot remove uniswap pair from max txn");
        }
        _mAxTeNdIEsFoRYou[updAds] = isEx;
    }

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

    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, "amount must be greater than 0");
        require(!_rekR[from] && !_rekR[to], "You are a bot");           
    
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead)){
                if(!apeTIME){
                    require(_nOTeNdieFeE[from] || _nOTeNdieFeE[to], "Trading is not active.");
                }
                if (!_mAxTeNdIEsFoRYou[from] || !_mAxTeNdIEsFoRYou[to]) {
                     require(balanceOf(to) + amount <= mAxApInG);
                }
                            
                //when buy
                if (automatedMarketMakerPairs[from] && !_mAxTeNdIEsFoRYou[to]) {

                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_mAxTeNdIEsFoRYou[from]) {

                } 
                else if (!_mAxTeNdIEsFoRYou[to] && !_mAxTeNdIEsFoRYou[from]){
                
                }
            }
        

        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_nOTeNdieFeE[from] || _nOTeNdieFeE[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        //no fee on transfers x
        if(takeFee){
            
            // on sell
             if (automatedMarketMakerPairs[to] && sELLtOtAlTeNdIeS > 0){
                fees = amount * sELLtOtAlTeNdIeS /100;
                tOkEnSfOrAuTiStS += fees * seLLauTiSTteNDies / sELLtOtAlTeNdIeS;
                tOkEnSfOrTeAmAuTiSt += fees * sEllTeAmTEndIEs / sELLtOtAlTeNdIeS;
                tOkEnSfOrBuRn += amount * sELLbUrNTeNdIeS / 100;

            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buYtOtAlTeNdIeS > 0) {
                fees = amount * buYtOtAlTeNdIeS / 100;
                tOkEnSfOrAuTiStS += fees * bUyAuTiStTeNdIeS / buYtOtAlTeNdIeS;
                tOkEnSfOrTeAmAuTiSt += fees * bUYteAMtEnDieS / buYtOtAlTeNdIeS;
                tOkEnSfOrBuRn += amount * buyBuRnTenDiEs / 100;
            }
            
            if(fees > 0){    
                 super._transfer(from, address(this), fees);
            }
                super._transfer(from, address(0xdead), tOkEnSfOrBuRn);


            amount -= (fees + tOkEnSfOrBuRn);
            tOkEnSfOrBuRn = 0;
        }
            
        super._transfer(from, to, amount);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tOkEnSfOrAuTiStS + tOkEnSfOrTeAmAuTiSt;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 10){
            contractBalance = swapTokensAtAmount * 10;
        }

        bool success;
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tOkEnSfOrAuTiStS / totalTokensToSwap / 2;
        
        swapTokensForEth(contractBalance - liquidityTokens); 
        
        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForMarketing = ethBalance * tOkEnSfOrTeAmAuTiSt / (totalTokensToSwap - (tOkEnSfOrAuTiStS/2));

        ethForLiquidity -= ethForMarketing;
            
        tOkEnSfOrAuTiStS = 0;
        tOkEnSfOrTeAmAuTiSt = 0;

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(owner()),
            block.timestamp
        );
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    //blacklist any bots out to rek our fun
   function fknReKR(address account, bool _iSReKr) public onlyOwner {
        _rekR[account] = _iSReKr;
    }
    //same
    function maNYreKRz(address[] memory mAnyReKRz_) public onlyOwner {
        for (uint256 i = 0; i < mAnyReKRz_.length; i++) {
            _rekR[mAnyReKRz_[i]] = true;
        }
    }

    //for any autist that sends eth to contract 
    function aUTiStProOfiNG() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    receive() external payable{}

}

File 2 of 12 : 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 3 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 4 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/extensions/IERC20Metadata.sol";

File 5 of 12 : 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 12 : 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 7 of 12 : 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);
}

File 8 of 12 : 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 9 of 12 : 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 10 of 12 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 11 of 12 : 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 12 of 12 : 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;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedmAxApInG","type":"event"},{"anonymous":false,"inputs":[],"name":"tiMeToAPe","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mAxTeNdIEsFoRYou","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aUTiStProOfiNG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apeTIME","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bUYteAMtEnDieS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bUyAuTiStTeNdIeS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuRnTenDiEs","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":[],"name":"eNaBLeAPING","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_iSReKr","type":"bool"}],"name":"fknReKR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mAxApInG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"mAnyReKRz_","type":"address[]"}],"name":"maNYreKRz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"nOtEnDiEFeE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sELLbUrNTeNdIeS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sEllTeAmTEndIEs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seLLauTiSTteNDies","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tEnDiEWaLleT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tOkEnSfOrAuTiStS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tOkEnSfOrBuRn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tOkEnSfOrTeAmAuTiSt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tEaMTenDiEs","type":"uint256"},{"internalType":"uint256","name":"aUtIsTtEnDieS","type":"uint256"},{"internalType":"uint256","name":"bUrNtEnDiEs","type":"uint256"}],"name":"uPDatEsELLteNdiEs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tEaMTenDiEs","type":"uint256"},{"internalType":"uint256","name":"aUtIsTtEnDieS","type":"uint256"},{"internalType":"uint256","name":"bUrNtEnDiEs","type":"uint256"}],"name":"uPdAtEbUytEnDiEfEeS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updatemAxApInG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b506040518060400160405280600c81526020016b615574495374694320496e5560a01b81525060405180604001604052806002815260200161414960f01b81525081600390816200006391906200060f565b5060046200007282826200060f565b5050506200008f620000896200031f60201b60201c565b62000323565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200010d9190620006db565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001819190620006db565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f59190620006db565b6001600160a01b0390811660a05281166080526b015b6a759f4835dc2400000060646200022482600262000723565b62000230919062000743565b600c55620186a06200024482606462000723565b62000250919062000743565b600b55600e8080556001600f81905560006010556200026f9162000766565b600d5560236012819055600160138190556000601455620002909162000766565b601155620002a033600162000375565b620002ad30600162000375565b620002bc61dead600162000375565b620002c9336001620003d8565b620002d6306001620003d8565b620002e561dead6001620003d8565b600a80546001600160a01b031916734f25dfa1718efc1026d4a60b6ca4fead4900fc1717905562000317338262000441565b50506200077c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260076020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b620003e262000508565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200049d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004b1919062000766565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000494565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059657607f821691505b602082108103620005b757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056657600081815260208120601f850160051c81016020861015620005e65750805b601f850160051c820191505b818110156200060757828155600101620005f2565b505050505050565b81516001600160401b038111156200062b576200062b6200056b565b62000643816200063c845462000581565b84620005bd565b602080601f8311600181146200067b5760008415620006625750858301515b600019600386901b1c1916600185901b17855562000607565b600085815260208120601f198616915b82811015620006ac578886015182559484019460019091019084016200068b565b5085821015620006cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006ee57600080fd5b81516001600160a01b03811681146200070657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200073d576200073d6200070d565b92915050565b6000826200076157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200073d576200073d6200070d565b60805160a05161235a620007d360003960008181610429015281816109650152610abb0152600081816102d901528181611c0301528181611cbc01528181611cf801528181611d720152611d99015261235a6000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063a9059cbb116100b6578063dd62ed3e1161007a578063dd62ed3e1461071f578063e2f456051461073f578063e37ee52d14610755578063ecd1bb1d1461076b578063f2fde38b1461078b578063fdb7225c146107ab57600080fd5b8063a9059cbb14610683578063afe19faa146106a3578063b62496f5146106b9578063d2395e85146106e9578063d257b34f146106ff57600080fd5b806391e2f0bf1161010857806391e2f0bf146105d957806395d89b41146105f95780639a7a23d61461060e578063a00e5f0f1461062e578063a457c2d714610643578063a69fbb0a1461066357600080fd5b80637571336a1461054f57806375fd34461461056f578063801d87331461058557806384a5eb851461059b5780638da5cb5b146105bb57600080fd5b8063445878ae116101dd5780636a470ad7116101a15780636a470ad71461048d5780636ddd1713146104ad5780636f3634e2146104ce5780636fb41378146104e457806370a0823114610504578063715018a61461053a57600080fd5b8063445878ae146103f657806349bd5a5e146104175780634abeb7381461044b578063564efb67146104615780636096b2681461047757600080fd5b806323b872dd1161022457806323b872dd14610354578063278a8f2c14610374578063313ce5671461038a57806332eb857d146103a657806339509351146103d657600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806322e60bed1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107c0565b60405161028e9190611e72565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611ee5565b610852565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b5061035261034d366004611f11565b61086c565b005b34801561036057600080fd5b506102b761036f366004611f3d565b610895565b34801561038057600080fd5b5061032460155481565b34801561039657600080fd5b506040516012815260200161028e565b3480156103b257600080fd5b506102b76103c1366004611f7e565b60076020526000908152604090205460ff1681565b3480156103e257600080fd5b506102b76103f1366004611ee5565b6108b9565b34801561040257600080fd5b50600a546102b790600160a01b900460ff1681565b34801561042357600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b5061032460145481565b34801561046d57600080fd5b5061032460175481565b34801561048357600080fd5b50610324600f5481565b34801561049957600080fd5b506103526104a8366004611fa2565b6108db565b3480156104b957600080fd5b50600a546102b790600160a81b900460ff1681565b3480156104da57600080fd5b5061032460135481565b3480156104f057600080fd5b50600a546102fb906001600160a01b031681565b34801561051057600080fd5b5061032461051f366004611f7e565b6001600160a01b031660009081526020819052604090205490565b34801561054657600080fd5b50610352610942565b34801561055b57600080fd5b5061035261056a366004611fa2565b610956565b34801561057b57600080fd5b50610324600e5481565b34801561059157600080fd5b50610324600c5481565b3480156105a757600080fd5b506103526105b6366004611fe0565b610a24565b3480156105c757600080fd5b506005546001600160a01b03166102fb565b3480156105e557600080fd5b506103526105f4366004611f11565b610a79565b34801561060557600080fd5b50610281610aa2565b34801561061a57600080fd5b50610352610629366004611fa2565b610ab1565b34801561063a57600080fd5b50610352610b6e565b34801561064f57600080fd5b506102b761065e366004611ee5565b610bc3565b34801561066f57600080fd5b5061035261067e36600461200f565b610c3e565b34801561068f57600080fd5b506102b761069e366004611ee5565b610cae565b3480156106af57600080fd5b5061032460105481565b3480156106c557600080fd5b506102b76106d4366004611f7e565b60086020526000908152604090205460ff1681565b3480156106f557600080fd5b5061032460165481565b34801561070b57600080fd5b5061035261071a366004611fe0565b610cbc565b34801561072b57600080fd5b5061032461073a3660046120d4565b610df5565b34801561074b57600080fd5b50610324600b5481565b34801561076157600080fd5b5061032460125481565b34801561077757600080fd5b50610352610786366004611fa2565b610e20565b34801561079757600080fd5b506103526107a6366004611f7e565b610e53565b3480156107b757600080fd5b50610352610ecc565b6060600380546107cf90612102565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90612102565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600033610860818585610f6e565b60019150505b92915050565b610874611092565b600e839055600f829055601081905561088d8284612152565b600d55505050565b6000336108a38582856110ec565b6108ae858585611160565b506001949350505050565b6000336108608185856108cc8383610df5565b6108d69190612152565b610f6e565b6108e3611092565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61094a611092565b61095460006117fc565b565b61095e611092565b806109f9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036109f95760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b60648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610a2c611092565b610a3e81670de0b6b3a7640000612165565b600c8190556040519081527f0958b3ee45745fe2fe824dcb5a39b5e55129a7bb7a694b00d4c38bc830fdd96a9060200160405180910390a150565b610a81611092565b601283905560138290556014819055610a9a8284612152565b601155505050565b6060600480546107cf90612102565b610ab9611092565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610b605760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109f0565b610b6a828261184e565b5050565b610b76611092565b604051600090339047908381818185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b50505050565b60003381610bd18286610df5565b905083811015610c315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109f0565b6108ae8286868403610f6e565b610c46611092565b60005b8151811015610b6a57600160096000848481518110610c6a57610c6a61217c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ca681612192565b915050610c49565b600033610860818585611160565b610cc4611092565b620186a0610cd160025490565b610cdc906001612165565b610ce691906121ab565b811015610d535760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109f0565b6064610d5e60025490565b610d69906003612165565b610d7391906121ab565b811115610ddd5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101992903a37ba30b61039bab838363c9760711b60648201526084016109f0565b610def81670de0b6b3a7640000612165565b600b5550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e28611092565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610e5b611092565b6001600160a01b038116610ec05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f0565b610ec9816117fc565b50565b610ed4611092565b600a54600160a01b900460ff1615610f2e5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e6700000000000000000060448201526064016109f0565b600a805461ffff60a01b191661010160a01b1790556040517f7644ffff747e4bf10948a73b84e6f1bebd93e6ac916adc582bb10b83a4d4630890600090a1565b6001600160a01b038316610fd05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109f0565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109f0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f0565b60006110f88484610df5565b90506000198114610bbd57818110156111535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109f0565b610bbd8484848403610f6e565b6001600160a01b0383166111865760405162461bcd60e51b81526004016109f0906121cd565b6001600160a01b0382166111ac5760405162461bcd60e51b81526004016109f090612212565b600081116111fc5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016109f0565b6001600160a01b03831660009081526009602052604090205460ff1615801561123e57506001600160a01b03821660009081526009602052604090205460ff16155b61127a5760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016109f0565b6005546001600160a01b038481169116148015906112a657506005546001600160a01b03838116911614155b80156112ba57506001600160a01b03821615155b80156112d157506001600160a01b03821661dead14155b156114b757600a54600160a01b900460ff1661136b576001600160a01b03831660009081526006602052604090205460ff168061132657506001600160a01b03821660009081526006602052604090205460ff165b61136b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109f0565b6001600160a01b03831660009081526007602052604090205460ff1615806113ac57506001600160a01b03821660009081526007602052604090205460ff16155b156113e957600c54816113d4846001600160a01b031660009081526020819052604090205490565b6113de9190612152565b11156113e957600080fd5b6001600160a01b03831660009081526008602052604090205460ff16801561142a57506001600160a01b03821660009081526007602052604090205460ff16155b6114b7576001600160a01b03821660009081526008602052604090205460ff16801561146f57506001600160a01b03831660009081526007602052604090205460ff16155b6114b7576001600160a01b03821660009081526007602052604090205460ff161580156114b557506001600160a01b03831660009081526007602052604090205460ff16155b505b30600090815260208190526040902054600b54811080159081906114e45750600a54600160a81b900460ff165b80156114fa5750600a54600160b01b900460ff16155b801561151f57506001600160a01b03851660009081526008602052604090205460ff16155b801561154457506001600160a01b03851660009081526006602052604090205460ff16155b801561156957506001600160a01b03841660009081526006602052604090205460ff16155b1561159757600a805460ff60b01b1916600160b01b1790556115896118b8565b600a805460ff60b01b191690555b6001600160a01b03851660009081526006602052604090205460019060ff16806115d957506001600160a01b03851660009081526006602052604090205460ff165b156115e2575060005b600081156117e8576001600160a01b03861660009081526008602052604090205460ff16801561161457506000601154115b156116cc576064601154866116299190612165565b61163391906121ab565b9050601154601354826116469190612165565b61165091906121ab565b601660008282546116619190612152565b90915550506011546012546116769083612165565b61168091906121ab565b601560008282546116919190612152565b90915550506014546064906116a69087612165565b6116b091906121ab565b601760008282546116c19190612152565b909155506117a99050565b6001600160a01b03871660009081526008602052604090205460ff1680156116f657506000600d54115b156117a9576064600d548661170b9190612165565b61171591906121ab565b9050600d54600f54826117289190612165565b61173291906121ab565b601660008282546117439190612152565b9091555050600d54600e546117589083612165565b61176291906121ab565b601560008282546117739190612152565b90915550506010546064906117889087612165565b61179291906121ab565b601760008282546117a39190612152565b90915550505b80156117ba576117ba873083611a1f565b6117c98761dead601754611a1f565b6017546117d69082612152565b6117e09086612255565b600060175594505b6117f3878787611a1f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600860205260409020805460ff191682151517905561187c8282611b49565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b30600090815260208190526040812054905060006015546016546118dc9190612152565b90508115806118e9575080155b156118f2575050565b600b5461190090600a612165565b82111561191857600b5461191590600a612165565b91505b6000806002836016548661192c9190612165565b61193691906121ab565b61194091906121ab565b905061195461194f8286612255565b611bac565b6016544790819060009061196a906002906121ab565b6119749087612255565b6015546119819085612165565b61198b91906121ab565b90506119978183612255565b60006016819055601555915083158015906119b25750600082115b156119c1576119c18483611d6c565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a0e576040519150601f19603f3d011682016040523d82523d6000602084013e611a13565b606091505b50505050505050505050565b6001600160a01b038316611a455760405162461bcd60e51b81526004016109f0906121cd565b6001600160a01b038216611a6b5760405162461bcd60e51b81526004016109f090612212565b6001600160a01b03831660009081526020819052604090205481811015611ae35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109f0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bbd565b6001600160a01b038216600081815260076020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be157611be161217c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c839190612268565b81600181518110611c9657611c9661217c565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce1307f000000000000000000000000000000000000000000000000000000000000000084610f6e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d36908590600090869030904290600401612285565b600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b505050505050565b611d97307f000000000000000000000000000000000000000000000000000000000000000084610f6e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080611dde6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611e46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e6b91906122f6565b5050505050565b600060208083528351808285015260005b81811015611e9f57858101830151858201604001528201611e83565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ec957600080fd5b8035611ee081611ec0565b919050565b60008060408385031215611ef857600080fd5b8235611f0381611ec0565b946020939093013593505050565b600080600060608486031215611f2657600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215611f5257600080fd5b8335611f5d81611ec0565b92506020840135611f6d81611ec0565b929592945050506040919091013590565b600060208284031215611f9057600080fd5b8135611f9b81611ec0565b9392505050565b60008060408385031215611fb557600080fd5b8235611fc081611ec0565b915060208301358015158114611fd557600080fd5b809150509250929050565b600060208284031215611ff257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561202257600080fd5b823567ffffffffffffffff8082111561203a57600080fd5b818501915085601f83011261204e57600080fd5b81358181111561206057612060611ff9565b8060051b604051601f19603f8301168101818110858211171561208557612085611ff9565b6040529182528482019250838101850191888311156120a357600080fd5b938501935b828510156120c8576120b985611ed5565b845293850193928501926120a8565b98975050505050505050565b600080604083850312156120e757600080fd5b82356120f281611ec0565b91506020830135611fd581611ec0565b600181811c9082168061211657607f821691505b60208210810361213657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108665761086661213c565b80820281158282048414176108665761086661213c565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a4576121a461213c565b5060010190565b6000826121c857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108665761086661213c565b60006020828403121561227a57600080fd5b8151611f9b81611ec0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122d55784516001600160a01b0316835293830193918301916001016122b0565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561230b57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e2dbb0d81dec2b9802eb6955c60dd793eafee0f57ec15afe73f38d492a36653264736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637571336a11610144578063a9059cbb116100b6578063dd62ed3e1161007a578063dd62ed3e1461071f578063e2f456051461073f578063e37ee52d14610755578063ecd1bb1d1461076b578063f2fde38b1461078b578063fdb7225c146107ab57600080fd5b8063a9059cbb14610683578063afe19faa146106a3578063b62496f5146106b9578063d2395e85146106e9578063d257b34f146106ff57600080fd5b806391e2f0bf1161010857806391e2f0bf146105d957806395d89b41146105f95780639a7a23d61461060e578063a00e5f0f1461062e578063a457c2d714610643578063a69fbb0a1461066357600080fd5b80637571336a1461054f57806375fd34461461056f578063801d87331461058557806384a5eb851461059b5780638da5cb5b146105bb57600080fd5b8063445878ae116101dd5780636a470ad7116101a15780636a470ad71461048d5780636ddd1713146104ad5780636f3634e2146104ce5780636fb41378146104e457806370a0823114610504578063715018a61461053a57600080fd5b8063445878ae146103f657806349bd5a5e146104175780634abeb7381461044b578063564efb67146104615780636096b2681461047757600080fd5b806323b872dd1161022457806323b872dd14610354578063278a8f2c14610374578063313ce5671461038a57806332eb857d146103a657806339509351146103d657600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806322e60bed1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107c0565b60405161028e9190611e72565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611ee5565b610852565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b5061035261034d366004611f11565b61086c565b005b34801561036057600080fd5b506102b761036f366004611f3d565b610895565b34801561038057600080fd5b5061032460155481565b34801561039657600080fd5b506040516012815260200161028e565b3480156103b257600080fd5b506102b76103c1366004611f7e565b60076020526000908152604090205460ff1681565b3480156103e257600080fd5b506102b76103f1366004611ee5565b6108b9565b34801561040257600080fd5b50600a546102b790600160a01b900460ff1681565b34801561042357600080fd5b506102fb7f000000000000000000000000b5513eb5c667b5919da5085af3bf75a0cf0d287981565b34801561045757600080fd5b5061032460145481565b34801561046d57600080fd5b5061032460175481565b34801561048357600080fd5b50610324600f5481565b34801561049957600080fd5b506103526104a8366004611fa2565b6108db565b3480156104b957600080fd5b50600a546102b790600160a81b900460ff1681565b3480156104da57600080fd5b5061032460135481565b3480156104f057600080fd5b50600a546102fb906001600160a01b031681565b34801561051057600080fd5b5061032461051f366004611f7e565b6001600160a01b031660009081526020819052604090205490565b34801561054657600080fd5b50610352610942565b34801561055b57600080fd5b5061035261056a366004611fa2565b610956565b34801561057b57600080fd5b50610324600e5481565b34801561059157600080fd5b50610324600c5481565b3480156105a757600080fd5b506103526105b6366004611fe0565b610a24565b3480156105c757600080fd5b506005546001600160a01b03166102fb565b3480156105e557600080fd5b506103526105f4366004611f11565b610a79565b34801561060557600080fd5b50610281610aa2565b34801561061a57600080fd5b50610352610629366004611fa2565b610ab1565b34801561063a57600080fd5b50610352610b6e565b34801561064f57600080fd5b506102b761065e366004611ee5565b610bc3565b34801561066f57600080fd5b5061035261067e36600461200f565b610c3e565b34801561068f57600080fd5b506102b761069e366004611ee5565b610cae565b3480156106af57600080fd5b5061032460105481565b3480156106c557600080fd5b506102b76106d4366004611f7e565b60086020526000908152604090205460ff1681565b3480156106f557600080fd5b5061032460165481565b34801561070b57600080fd5b5061035261071a366004611fe0565b610cbc565b34801561072b57600080fd5b5061032461073a3660046120d4565b610df5565b34801561074b57600080fd5b50610324600b5481565b34801561076157600080fd5b5061032460125481565b34801561077757600080fd5b50610352610786366004611fa2565b610e20565b34801561079757600080fd5b506103526107a6366004611f7e565b610e53565b3480156107b757600080fd5b50610352610ecc565b6060600380546107cf90612102565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90612102565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600033610860818585610f6e565b60019150505b92915050565b610874611092565b600e839055600f829055601081905561088d8284612152565b600d55505050565b6000336108a38582856110ec565b6108ae858585611160565b506001949350505050565b6000336108608185856108cc8383610df5565b6108d69190612152565b610f6e565b6108e3611092565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61094a611092565b61095460006117fc565b565b61095e611092565b806109f9577f000000000000000000000000b5513eb5c667b5919da5085af3bf75a0cf0d28796001600160a01b0316826001600160a01b0316036109f95760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b60648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610a2c611092565b610a3e81670de0b6b3a7640000612165565b600c8190556040519081527f0958b3ee45745fe2fe824dcb5a39b5e55129a7bb7a694b00d4c38bc830fdd96a9060200160405180910390a150565b610a81611092565b601283905560138290556014819055610a9a8284612152565b601155505050565b6060600480546107cf90612102565b610ab9611092565b7f000000000000000000000000b5513eb5c667b5919da5085af3bf75a0cf0d28796001600160a01b0316826001600160a01b031603610b605760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109f0565b610b6a828261184e565b5050565b610b76611092565b604051600090339047908381818185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b50505050565b60003381610bd18286610df5565b905083811015610c315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109f0565b6108ae8286868403610f6e565b610c46611092565b60005b8151811015610b6a57600160096000848481518110610c6a57610c6a61217c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610ca681612192565b915050610c49565b600033610860818585611160565b610cc4611092565b620186a0610cd160025490565b610cdc906001612165565b610ce691906121ab565b811015610d535760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109f0565b6064610d5e60025490565b610d69906003612165565b610d7391906121ab565b811115610ddd5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101992903a37ba30b61039bab838363c9760711b60648201526084016109f0565b610def81670de0b6b3a7640000612165565b600b5550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e28611092565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b610e5b611092565b6001600160a01b038116610ec05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f0565b610ec9816117fc565b50565b610ed4611092565b600a54600160a01b900460ff1615610f2e5760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e6700000000000000000060448201526064016109f0565b600a805461ffff60a01b191661010160a01b1790556040517f7644ffff747e4bf10948a73b84e6f1bebd93e6ac916adc582bb10b83a4d4630890600090a1565b6001600160a01b038316610fd05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109f0565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109f0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109f0565b60006110f88484610df5565b90506000198114610bbd57818110156111535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109f0565b610bbd8484848403610f6e565b6001600160a01b0383166111865760405162461bcd60e51b81526004016109f0906121cd565b6001600160a01b0382166111ac5760405162461bcd60e51b81526004016109f090612212565b600081116111fc5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016109f0565b6001600160a01b03831660009081526009602052604090205460ff1615801561123e57506001600160a01b03821660009081526009602052604090205460ff16155b61127a5760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016109f0565b6005546001600160a01b038481169116148015906112a657506005546001600160a01b03838116911614155b80156112ba57506001600160a01b03821615155b80156112d157506001600160a01b03821661dead14155b156114b757600a54600160a01b900460ff1661136b576001600160a01b03831660009081526006602052604090205460ff168061132657506001600160a01b03821660009081526006602052604090205460ff165b61136b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109f0565b6001600160a01b03831660009081526007602052604090205460ff1615806113ac57506001600160a01b03821660009081526007602052604090205460ff16155b156113e957600c54816113d4846001600160a01b031660009081526020819052604090205490565b6113de9190612152565b11156113e957600080fd5b6001600160a01b03831660009081526008602052604090205460ff16801561142a57506001600160a01b03821660009081526007602052604090205460ff16155b6114b7576001600160a01b03821660009081526008602052604090205460ff16801561146f57506001600160a01b03831660009081526007602052604090205460ff16155b6114b7576001600160a01b03821660009081526007602052604090205460ff161580156114b557506001600160a01b03831660009081526007602052604090205460ff16155b505b30600090815260208190526040902054600b54811080159081906114e45750600a54600160a81b900460ff165b80156114fa5750600a54600160b01b900460ff16155b801561151f57506001600160a01b03851660009081526008602052604090205460ff16155b801561154457506001600160a01b03851660009081526006602052604090205460ff16155b801561156957506001600160a01b03841660009081526006602052604090205460ff16155b1561159757600a805460ff60b01b1916600160b01b1790556115896118b8565b600a805460ff60b01b191690555b6001600160a01b03851660009081526006602052604090205460019060ff16806115d957506001600160a01b03851660009081526006602052604090205460ff165b156115e2575060005b600081156117e8576001600160a01b03861660009081526008602052604090205460ff16801561161457506000601154115b156116cc576064601154866116299190612165565b61163391906121ab565b9050601154601354826116469190612165565b61165091906121ab565b601660008282546116619190612152565b90915550506011546012546116769083612165565b61168091906121ab565b601560008282546116919190612152565b90915550506014546064906116a69087612165565b6116b091906121ab565b601760008282546116c19190612152565b909155506117a99050565b6001600160a01b03871660009081526008602052604090205460ff1680156116f657506000600d54115b156117a9576064600d548661170b9190612165565b61171591906121ab565b9050600d54600f54826117289190612165565b61173291906121ab565b601660008282546117439190612152565b9091555050600d54600e546117589083612165565b61176291906121ab565b601560008282546117739190612152565b90915550506010546064906117889087612165565b61179291906121ab565b601760008282546117a39190612152565b90915550505b80156117ba576117ba873083611a1f565b6117c98761dead601754611a1f565b6017546117d69082612152565b6117e09086612255565b600060175594505b6117f3878787611a1f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600860205260409020805460ff191682151517905561187c8282611b49565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b30600090815260208190526040812054905060006015546016546118dc9190612152565b90508115806118e9575080155b156118f2575050565b600b5461190090600a612165565b82111561191857600b5461191590600a612165565b91505b6000806002836016548661192c9190612165565b61193691906121ab565b61194091906121ab565b905061195461194f8286612255565b611bac565b6016544790819060009061196a906002906121ab565b6119749087612255565b6015546119819085612165565b61198b91906121ab565b90506119978183612255565b60006016819055601555915083158015906119b25750600082115b156119c1576119c18483611d6c565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a0e576040519150601f19603f3d011682016040523d82523d6000602084013e611a13565b606091505b50505050505050505050565b6001600160a01b038316611a455760405162461bcd60e51b81526004016109f0906121cd565b6001600160a01b038216611a6b5760405162461bcd60e51b81526004016109f090612212565b6001600160a01b03831660009081526020819052604090205481811015611ae35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109f0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bbd565b6001600160a01b038216600081815260076020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611be157611be161217c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c839190612268565b81600181518110611c9657611c9661217c565b60200260200101906001600160a01b031690816001600160a01b031681525050611ce1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f6e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d36908590600090869030904290600401612285565b600060405180830381600087803b158015611d5057600080fd5b505af1158015611d64573d6000803e3d6000fd5b505050505050565b611d97307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f6e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080611dde6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611e46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e6b91906122f6565b5050505050565b600060208083528351808285015260005b81811015611e9f57858101830151858201604001528201611e83565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ec957600080fd5b8035611ee081611ec0565b919050565b60008060408385031215611ef857600080fd5b8235611f0381611ec0565b946020939093013593505050565b600080600060608486031215611f2657600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215611f5257600080fd5b8335611f5d81611ec0565b92506020840135611f6d81611ec0565b929592945050506040919091013590565b600060208284031215611f9057600080fd5b8135611f9b81611ec0565b9392505050565b60008060408385031215611fb557600080fd5b8235611fc081611ec0565b915060208301358015158114611fd557600080fd5b809150509250929050565b600060208284031215611ff257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561202257600080fd5b823567ffffffffffffffff8082111561203a57600080fd5b818501915085601f83011261204e57600080fd5b81358181111561206057612060611ff9565b8060051b604051601f19603f8301168101818110858211171561208557612085611ff9565b6040529182528482019250838101850191888311156120a357600080fd5b938501935b828510156120c8576120b985611ed5565b845293850193928501926120a8565b98975050505050505050565b600080604083850312156120e757600080fd5b82356120f281611ec0565b91506020830135611fd581611ec0565b600181811c9082168061211657607f821691505b60208210810361213657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108665761086661213c565b80820281158282048414176108665761086661213c565b634e487b7160e01b600052603260045260246000fd5b6000600182016121a4576121a461213c565b5060010190565b6000826121c857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108665761086661213c565b60006020828403121561227a57600080fd5b8151611f9b81611ec0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122d55784516001600160a01b0316835293830193918301916001016122b0565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561230b57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e2dbb0d81dec2b9802eb6955c60dd793eafee0f57ec15afe73f38d492a36653264736f6c63430008120033

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.