ETH Price: $2,517.28 (+3.36%)

Token

HentAI (HENTAI)
 

Overview

Max Total Supply

100,000,000 HENTAI

Holders

101

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.410994965547529695 HENTAI

Value
$0.00
0xad52eb558370998503b3df8f21935abecf1c139e
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:
HentAI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion
File 1 of 8 : HentAI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./uni.sol";

contract HentAI is Context, IERC20, Ownable { 
    using SafeMath for uint256;
    using Address for address;

    // Tracking status of wallets
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) public _isExcludedFromFee; 

    // Blacklist: If 'noBlackList' is true wallets on this list can not buy - used for known bots
    mapping (address => bool) public _isBlacklisted;

    // Set contract so that blacklisted wallets cannot buy (default is false)
    bool public noBlackList;
   
    /*

    WALLETS

    */

    address payable private Wallet_Dev = payable(0xb99f71BA184a5Fb4B5faA05a5AC719da17a8F67F);
    address payable private Wallet_Burn = payable(0x000000000000000000000000000000000000dEaD); 
    address payable private Wallet_zero = payable(0x0000000000000000000000000000000000000000);

    address private Treasury = 0x7e262dB8A67D8f0cA748F93f15d95B708C945810;

    /*

    TOKEN DETAILS

    */

    string private _name = "HentAI"; 
    string private _symbol = "HENTAI";  
    uint8 private _decimals = 18;
    uint256 private _tTotal = 100000000 * 10**18;
    uint256 private _tFeeTotal;

    // Counter for liquify trigger
    uint8 private txCount = 0;
    uint8 private swapTrigger = 5; 

    // This is the max fee that the contract will accept, it is hard-coded to protect buyers
    // This includes the buy AND the sell fee!
    uint256 private maxPossibleFee = 70; 

    // Setting the initial fees
    uint256 private _TotalFee = 70;
    uint256 public _buyFee = 20;
    uint256 public _sellFee = 50;

    // 'Previous fees' are used to keep track of fee settings when removing and restoring fees
    uint256 private _previousTotalFee = _TotalFee;
    uint256 private _previousBuyFee = _buyFee;
    uint256 private _previousSellFee = _sellFee;

    /*

    WALLET LIMITS 
    
    */

    // Max wallet holding (% at launch)
    uint256 public _maxWalletToken = _tTotal.mul(2).div(100);
    uint256 private _previousMaxWalletToken = _maxWalletToken;

    // Maximum transaction amount (% at launch)
    uint256 public _maxTxAmount = _tTotal.mul(2).div(100);
    uint256 private _previousMaxTxAmount = _maxTxAmount;

    uint256 public _swapAndLiquifyAmount = _tTotal.mul(1).div(100);
    uint256 private _previousSwapAndLiquifyAmount = _swapAndLiquifyAmount;

    /* 

    PANCAKESWAP SET UP

    */
                                     
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    bool public inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
        
    );
    
    // Prevent processing while already processing! 
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /*

    DEPLOY TOKENS TO OWNER

    Constructor functions are only called once. This happens during contract deployment.
    This function deploys the total token supply to the owner wallet and creates the PCS pairing

    */
    
    constructor () {
        _tOwned[owner()] = _tTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        // Create pair address for Uniswap
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[Wallet_Dev] = true;
        
        emit Transfer(address(0), owner(), _tTotal);
    }

    /*

    STANDARD ERC20 COMPLIANCE FUNCTIONS

    */

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

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

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

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

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

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

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

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

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

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

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

    /*

    END OF STANDARD ERC20 COMPLIANCE FUNCTIONS

    */

    /*

    FEES

    */
    
    // Set a wallet address so that it does not have to pay transaction fees
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    // Set a wallet address so that it has to pay transaction fees
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    /*

    SETTING FEES

   

    */
    

    function _set_Fees(uint256 Buy_Fee, uint256 Sell_Fee) external onlyOwner() {

        require((Buy_Fee + Sell_Fee) <= maxPossibleFee, "Fee is too high!");
        _sellFee = Sell_Fee;
        _buyFee = Buy_Fee;

    }

    // Update main wallet
    function Wallet_Update_Dev(address payable wallet) public onlyOwner() {
        Wallet_Dev = wallet;
        _isExcludedFromFee[Wallet_Dev] = true;
    }

    /*

    PROCESSING TOKENS - SET UP

    */
    
    // Toggle on and off to auto process tokens to BNB wallet 
    function set_Swap_And_Liquify_Enabled(bool true_or_false) public onlyOwner {
        swapAndLiquifyEnabled = true_or_false;
        emit SwapAndLiquifyEnabledUpdated(true_or_false);
    }

    // This will set the number of transactions required before the 'swapAndLiquify' function triggers
    function set_Number_Of_Transactions_Before_Liquify_Trigger(uint8 number_of_transactions) public onlyOwner {
        swapTrigger = number_of_transactions;
    }
    
    receive() external payable {}

    /*

    BLACKLIST 

    This feature is used to block a person from buying - known bot users are added to this
    list prior to launch. We also check for people using snipe bots on the contract before we
    add liquidity and block these wallets. We like all of our buys to be natural and fair.

    */

    // Blacklist - block wallets (ADD - COMMA SEPARATE MULTIPLE WALLETS)
    function blacklist_Add_Wallets(address[] calldata addresses) external onlyOwner {
       
        uint256 startGas;
        uint256 gasUsed;

    for (uint256 i; i < addresses.length; ++i) {
        if(gasUsed < gasleft()) {
        startGas = gasleft();
        if(!_isBlacklisted[addresses[i]]){
        _isBlacklisted[addresses[i]] = true;}
        gasUsed = startGas - gasleft();
    }
    }
    }

    // Blacklist - block wallets (REMOVE - COMMA SEPARATE MULTIPLE WALLETS)
    function blacklist_Remove_Wallets(address[] calldata addresses) external onlyOwner {
       
        uint256 startGas;
        uint256 gasUsed;

    for (uint256 i; i < addresses.length; ++i) {
        if(gasUsed < gasleft()) {
        startGas = gasleft();
        if(_isBlacklisted[addresses[i]]){
        _isBlacklisted[addresses[i]] = false;}
        gasUsed = startGas - gasleft();
    }
    }
    }

    /*

    You can turn the blacklist restrictions on and off.

    During launch, it's a good idea to block known bot users from buying. But these are real people, so 
    when the contract is safe (and the price has increased) you can allow these wallets to buy/sell by setting
    noBlackList to false

    */

    // Blacklist Switch - Turn on/off blacklisted wallet restrictions 
    function blacklist_Switch(bool true_or_false) public onlyOwner {
        noBlackList = true_or_false;
    } 

  
    /*
    
    When sending tokens to another wallet (not buying or selling) if noFeeToTransfer is true there will be no fee

    */

    bool public noFeeToTransfer = true;

    // Option to set fee or no fee for transfer (just in case the no fee transfer option is exploited in future!)
    // True = there will be no fees when moving tokens around or giving them to friends! (There will only be a fee to buy or sell)
    // False = there will be a fee when buying/selling/tranfering tokens
    // Default is true
    function set_Transfers_Without_Fees(bool true_or_false) external onlyOwner {
        noFeeToTransfer = true_or_false;
    }

    /*

    WALLET LIMITS

    Wallets are limited in two ways. The amount of tokens that can be purchased in one transaction
    and the total amount of tokens a wallet can buy. Limiting a wallet prevents one wallet from holding too
    many tokens, which can scare away potential buyers that worry that a whale might dump!

    IMPORTANT

    Solidity can not process decimals, so to increase flexibility, we multiple everything by 100.
    When entering the percent, you need to shift your decimal two steps to the right.

    eg: For 4% enter 400, for 1% enter 100, for 0.25% enter 25, for 0.2% enter 20 etc!

    */

    // Set the Max transaction amount (percent of total supply)
    function set_Max_Transaction_Percent(uint256 maxTxPercent_x100) external onlyOwner() {
        _maxTxAmount = _tTotal*maxTxPercent_x100/10000;
    }    
    
    // Set the maximum wallet holding (percent of total supply)
     function set_Max_Wallet_Percent(uint256 maxWallPercent_x100) external onlyOwner() {
        _maxWalletToken = _tTotal*maxWallPercent_x100/10000;
    }

    // Set the maximum wallet holding (percent of total supply)
    function set_Swap_And_Liquify_Amount(uint256 swapAndLiqPercent_x100) external onlyOwner() {
        _swapAndLiquifyAmount = _tTotal*swapAndLiqPercent_x100/10000;
    }

    // Remove all fees
    function removeAllFee() private {
        if(_TotalFee == 0 && _buyFee == 0 && _sellFee == 0) return;

        _previousBuyFee = _buyFee; 
        _previousSellFee = _sellFee; 
        _previousTotalFee = _TotalFee;
        _buyFee = 0;
        _sellFee = 0;
        _TotalFee = 0;

    }
    
    // Restore all fees
    function restoreAllFee() private {
    
    _TotalFee = _previousTotalFee;
    _buyFee = _previousBuyFee; 
    _sellFee = _previousSellFee; 

    }

    // Approve a wallet to sell tokens
    function _approve(address owner, address spender, uint256 amount) private {

        require(owner != address(0) && spender != address(0), "ERR: zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);

    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        

        /*

        TRANSACTION AND WALLET LIMITS

        */
        

        // Limit wallet total
        if (to != owner() &&
            to != Wallet_Dev &&
            to != address(this) &&
            to != uniswapV2Pair &&
            to != Wallet_Burn &&
            to != Treasury &&
            from != owner()){
            uint256 heldTokens = balanceOf(to);
            require((heldTokens + amount) <= _maxWalletToken,"You are trying to buy too many tokens. You have reached the limit for one wallet.");}

        // Limit the maximum number of tokens that can be bought or sold in one transaction
        if (from != owner() && to != owner())
            require(amount <= _maxTxAmount, "You are trying to buy more than the max transaction limit.");

        /*

        BLACKLIST RESTRICTIONS

        */
        
        if (noBlackList){
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "This address is blacklisted. Transaction reverted.");}

        require(from != address(0) && to != address(0), "ERR: Using 0 address!");
        require(amount > 0, "Token value must be higher than zero.");

        /*

        PROCESSING

        */

        // SwapAndLiquify is triggered after every X transactions - this number can be adjusted using swapTrigger

        if(
            txCount >= swapTrigger && 
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled 
            )
        {  
            
            txCount = 0;
            uint256 contractTokenBalance = balanceOf(address(this));
            if(contractTokenBalance > _swapAndLiquifyAmount) {contractTokenBalance = _swapAndLiquifyAmount;}
            if(contractTokenBalance > 0){
                swapAndLiquify(contractTokenBalance);
            }
        }

        /*

        REMOVE FEES IF REQUIRED

        Fee removed if the to or from address is excluded from fee.
        Fee removed if the transfer is NOT a buy or sell.
        Change fee amount for buy or sell.

        */

        
        bool takeFee = true;
         
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to] || (noFeeToTransfer && from != uniswapV2Pair && to != uniswapV2Pair)){
            takeFee = false;
        } else if (from == uniswapV2Pair){_TotalFee = _buyFee;} else if (to == uniswapV2Pair){_TotalFee = _sellFee;}
        
        _tokenTransfer(from,to,amount,takeFee);
    }

    /*

    PROCESSING FEES

    Fees are added to the contract as tokens, these functions exchange the tokens for BNB and send to the wallet.
    One wallet is used for ALL fees. This includes liquidity,buyback & burn, marketing, development costs etc.

    */

    // Send BNB to external wallet
    function sendToWallet(address payable wallet, uint256 amount) private {
            wallet.transfer(amount);
        }

    // Processing tokens from contract
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        
        swapTokensForBNB(contractTokenBalance);
        uint256 contractBNB = address(this).balance;
        sendToWallet(Wallet_Dev,contractBNB);
    }

    // Manual Token Process Trigger - Enter the percent of the tokens that you'd like to send to process
    function process_Tokens_Now (uint256 percent_Of_Tokens_To_Process) public onlyOwner {
        // Do not trigger if already in swap
        require(!inSwapAndLiquify, "Currently processing, try later."); 
        if (percent_Of_Tokens_To_Process > 100){percent_Of_Tokens_To_Process == 100;}
        uint256 tokensOnContract = balanceOf(address(this));
        uint256 sendTokens = tokensOnContract*percent_Of_Tokens_To_Process/100;
        swapAndLiquify(sendTokens);
    }

    // Swapping tokens for BNB using PancakeSwap 
    function swapTokensForBNB(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    /*

    PURGE RANDOM TOKENS - Add the random token address and a wallet to send them to

    */

    // Remove random tokens from the contract and send to a wallet
    function remove_Random_Tokens(address random_Token_Address, address send_to_wallet, uint256 number_of_tokens) public onlyOwner returns(bool _sent){
        require(random_Token_Address != address(this), "Can not remove native token");
        uint256 randomBalance = IERC20(random_Token_Address).balanceOf(address(this));
        if (number_of_tokens > randomBalance){number_of_tokens = randomBalance;}
        _sent = IERC20(random_Token_Address).transfer(send_to_wallet, number_of_tokens);
    }

    /*
    
    UPDATE PANCAKESWAP ROUTER AND LIQUIDITY PAIRING

    */

    // Set new router and make the new pair address
    function set_New_Router_and_Make_Pair(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPCSRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newPCSRouter.factory()).createPair(address(this), _newPCSRouter.WETH());
        uniswapV2Router = _newPCSRouter;
    }
   
    // Set new router
    function set_New_Router_Address(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPCSRouter = IUniswapV2Router02(newRouter);
        uniswapV2Router = _newPCSRouter;
    }
    
    // Set new address - This will be the 'Cake LP' address for the token pairing
    function set_New_Pair_Address(address newPair) public onlyOwner() {
        uniswapV2Pair = newPair;
    }

    /*

    TOKEN TRANSFERS

    */

    // Check if token transfer needs to process fees
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        
        
        if(!takeFee){
            removeAllFee();
            } else {
                txCount++;
            }
            _transferTokens(sender, recipient, amount);
        
        if(!takeFee)
            restoreAllFee();
    }

    // Redistributing tokens and adding the fee to the contract address
    function _transferTokens(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tDev) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _tOwned[address(this)] = _tOwned[address(this)].add(tDev);   
        emit Transfer(sender, recipient, tTransferAmount);
    }

    // Calculating the fee in tokens
    function _getValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tDev = tAmount*_TotalFee/100;
        uint256 tTransferAmount = tAmount.sub(tDev);
        return (tTransferAmount, tDev);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 8 : 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 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 8 : 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 7 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 8 of 8 : uni.sol
pragma solidity ^0.8.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;
}

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

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

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": 100
  },
  "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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"Wallet_Update_Dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"Buy_Fee","type":"uint256"},{"internalType":"uint256","name":"Sell_Fee","type":"uint256"}],"name":"_set_Fees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_swapAndLiquifyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blacklist_Add_Wallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blacklist_Remove_Wallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"true_or_false","type":"bool"}],"name":"blacklist_Switch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noFeeToTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent_Of_Tokens_To_Process","type":"uint256"}],"name":"process_Tokens_Now","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"random_Token_Address","type":"address"},{"internalType":"address","name":"send_to_wallet","type":"address"},{"internalType":"uint256","name":"number_of_tokens","type":"uint256"}],"name":"remove_Random_Tokens","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent_x100","type":"uint256"}],"name":"set_Max_Transaction_Percent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallPercent_x100","type":"uint256"}],"name":"set_Max_Wallet_Percent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"}],"name":"set_New_Pair_Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"set_New_Router_Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"set_New_Router_and_Make_Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"number_of_transactions","type":"uint8"}],"name":"set_Number_Of_Transactions_Before_Liquify_Trigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapAndLiqPercent_x100","type":"uint256"}],"name":"set_Swap_And_Liquify_Amount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"true_or_false","type":"bool"}],"name":"set_Swap_And_Liquify_Enabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"true_or_false","type":"bool"}],"name":"set_Transfers_Without_Fees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"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"},{"stateMutability":"payable","type":"receive"}]

6005805474b99f71ba184a5fb4b5faa05a5ac719da17a8f67f00610100600160a81b0319909116179055600680546001600160a01b031990811661dead178255600780548216905560088054909116737e262db8a67d8f0ca748f93f15d95b708c94581017905560c060405260809081526548656e74414960d01b60a0526009906200008c908262000570565b5060408051808201909152600681526548454e54414960d01b6020820152600a90620000b9908262000570565b50600b8054601260ff1990911681179091556a52b7d2dcc80cd2e4000000600c819055600e805461ffff19166105001790556046600f81905560108190556014601181905560329384905560139190915580556015919091556200012e906064906200012790600262000456565b906200046d565b6016819055601755600c546200014e906064906200012790600262000456565b6018819055601955600c546200016e906064906200012790600162000456565b601a819055601b55601d805461ffff60a81b191661010160a81b1790553480156200019857600080fd5b50620001a4336200047b565b600c5460016000620001be6000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026091906200063c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d491906200063c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000322573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034891906200063c565b601d80546001600160a01b03199081166001600160a01b0393841617909155601c8054909116918316919091179055600160036000620003906000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260039093528183208054851660019081179091556005546101009004909116835291208054909216179055620003ff6000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040516200044791815260200190565b60405180910390a350620006b7565b60006200046482846200066e565b90505b92915050565b600062000464828462000694565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004f657607f821691505b6020821081036200051757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200056b57600081815260208120601f850160051c81016020861015620005465750805b601f850160051c820191505b81811015620005675782815560010162000552565b5050505b505050565b81516001600160401b038111156200058c576200058c620004cb565b620005a4816200059d8454620004e1565b846200051d565b602080601f831160018114620005dc5760008415620005c35750858301515b600019600386901b1c1916600185901b17855562000567565b600085815260208120601f198616915b828110156200060d57888601518255948401946001909101908401620005ec565b50858210156200062c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200064f57600080fd5b81516001600160a01b03811681146200066757600080fd5b9392505050565b80820281158282048414176200046757634e487b7160e01b600052601160045260246000fd5b600082620006b257634e487b7160e01b600052601260045260246000fd5b500490565b61217280620006c76000396000f3fe6080604052600436106102765760003560e01c806370a082311161014f578063a457c2d7116100c1578063d785d5be1161007a578063d785d5be14610762578063dd62ed3e14610782578063ddbf5266146107c8578063ea2f0b37146107e8578063f2fde38b14610808578063f7739b5f1461082857600080fd5b8063a457c2d7146106a2578063a514a07d146106c2578063a9059cbb146106e2578063a9de975d14610702578063c1f6190814610722578063d2e1abe81461074257600080fd5b80637d1db4a5116101135780637d1db4a5146106025780638824e16e146106185780638da5cb5b146106385780638ec0e9a11461064d578063942201841461066d57806395d89b411461068d57600080fd5b806370a0823114610567578063715018a614610587578063768dc7101461059c57806378109e54146105cc5780637caefa89146105e257600080fd5b80633343ab83116101e857806349bd5a5e116101ac57806349bd5a5e146104c05780634a74bb02146104e057806350a7194a14610501578063590f897e1461051757806367cbd84c1461052d5780636f0941f61461054d57600080fd5b80633343ab831461042a57806336b1a1bc1461044a578063395093511461046a57806340b9a54b1461048a578063437823ec146104a057600080fd5b806318160ddd1161023a57806318160ddd146103585780631cdd3be314610377578063220f6696146103a757806323b872dd146103c85780632e39c6c6146103e8578063313ce5671461040857600080fd5b806306fdde0314610282578063095ea7b3146102ad5780631282a0a0146102dd57806313fad07a146102ff5780631694505e1461032057600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610848565b6040516102a49190611d0a565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611d6d565b6108da565b60405190151581526020016102a4565b3480156102e957600080fd5b506102fd6102f8366004611d99565b6108f1565b005b34801561030b57600080fd5b50601d546102cd90600160b01b900460ff1681565b34801561032c57600080fd5b50601c54610340906001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b34801561036457600080fd5b50600c545b6040519081526020016102a4565b34801561038357600080fd5b506102cd610392366004611d99565b60046020526000908152604090205460ff1681565b3480156103b357600080fd5b50601d546102cd90600160a01b900460ff1681565b3480156103d457600080fd5b506102cd6103e3366004611db6565b610a74565b3480156103f457600080fd5b506102fd610403366004611df7565b610add565b34801561041457600080fd5b50600b5460405160ff90911681526020016102a4565b34801561043657600080fd5b506102cd610445366004611db6565b610b06565b34801561045657600080fd5b506102fd610465366004611d99565b610c62565b34801561047657600080fd5b506102cd610485366004611d6d565b610c8c565b34801561049657600080fd5b5061036960115481565b3480156104ac57600080fd5b506102fd6104bb366004611d99565b610cc2565b3480156104cc57600080fd5b50601d54610340906001600160a01b031681565b3480156104ec57600080fd5b50601d546102cd90600160a81b900460ff1681565b34801561050d57600080fd5b50610369601a5481565b34801561052357600080fd5b5061036960125481565b34801561053957600080fd5b506102fd610548366004611e10565b610cee565b34801561055957600080fd5b506005546102cd9060ff1681565b34801561057357600080fd5b50610369610582366004611d99565b610d4c565b34801561059357600080fd5b506102fd610d67565b3480156105a857600080fd5b506102cd6105b7366004611d99565b60036020526000908152604090205460ff1681565b3480156105d857600080fd5b5061036960165481565b3480156105ee57600080fd5b506102fd6105fd366004611e32565b610d7b565b34801561060e57600080fd5b5061036960185481565b34801561062457600080fd5b506102fd610633366004611d99565b610d9f565b34801561064457600080fd5b50610340610dec565b34801561065957600080fd5b506102fd610668366004611e55565b610dfb565b34801561067957600080fd5b506102fd610688366004611df7565b610ee4565b34801561069957600080fd5b50610297610f0d565b3480156106ae57600080fd5b506102cd6106bd366004611d6d565b610f1c565b3480156106ce57600080fd5b506102fd6106dd366004611ed8565b610f6b565b3480156106ee57600080fd5b506102cd6106fd366004611d6d565b610f91565b34801561070e57600080fd5b506102fd61071d366004611e55565b610f9e565b34801561072e57600080fd5b506102fd61073d366004611ed8565b61107f565b34801561074e57600080fd5b506102fd61075d366004611df7565b61109a565b34801561076e57600080fd5b506102fd61077d366004611d99565b6110c3565b34801561078e57600080fd5b5061036961079d366004611ef5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156107d457600080fd5b506102fd6107e3366004611df7565b6110ed565b3480156107f457600080fd5b506102fd610803366004611d99565b611184565b34801561081457600080fd5b506102fd610823366004611d99565b6111ad565b34801561083457600080fd5b506102fd610843366004611ed8565b611226565b60606009805461085790611f2e565b80601f016020809104026020016040519081016040528092919081815260200182805461088390611f2e565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e7338484611286565b5060015b92915050565b6108f9611347565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109609190611f68565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d19190611f68565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a429190611f68565b601d80546001600160a01b039283166001600160a01b031991821617909155601c805493909216921691909117905550565b6000610a818484846113a6565b610ad38433610ace856040518060600160405280602881526020016120f0602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906118c6565b611286565b5060019392505050565b610ae5611347565b61271081600c54610af69190611f9b565b610b009190611fb2565b60185550565b6000610b10611347565b306001600160a01b03851603610b6d5760405162461bcd60e51b815260206004820152601b60248201527f43616e206e6f742072656d6f7665206e617469766520746f6b656e000000000060448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015610bb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd89190611fd4565b905080831115610be6578092505b60405163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905286169063a9059cbb906044016020604051808303816000875af1158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c599190611fed565b95945050505050565b610c6a611347565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916108e7918590610ace90866118f2565b610cca611347565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b610cf6611347565b600f54610d03828461200a565b1115610d445760405162461bcd60e51b815260206004820152601060248201526f46656520697320746f6f20686967682160801b6044820152606401610b64565b601255601155565b6001600160a01b031660009081526001602052604090205490565b610d6f611347565b610d796000611905565b565b610d83611347565b600e805460ff9092166101000261ff0019909216919091179055565b610da7611347565b60058054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031690565b610e03611347565b60008060005b83811015610edd575a821015610ecd575a925060046000868684818110610e3257610e3261201d565b9050602002016020810190610e479190611d99565b6001600160a01b0316815260208101919091526040016000205460ff1615610ebf57600060046000878785818110610e8157610e8161201d565b9050602002016020810190610e969190611d99565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b5a610eca9084612033565b91505b610ed681612046565b9050610e09565b5050505050565b610eec611347565b61271081600c54610efd9190611f9b565b610f079190611fb2565b60165550565b6060600a805461085790611f2e565b60006108e73384610ace85604051806060016040528060258152602001612118602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906118c6565b610f73611347565b601d8054911515600160b01b0260ff60b01b19909216919091179055565b60006108e73384846113a6565b610fa6611347565b60008060005b83811015610edd575a82101561106f575a925060046000868684818110610fd557610fd561201d565b9050602002016020810190610fea9190611d99565b6001600160a01b0316815260208101919091526040016000205460ff16611061576001600460008787858181106110235761102361201d565b90506020020160208101906110389190611d99565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b5a61106c9084612033565b91505b61107881612046565b9050610fac565b611087611347565b6005805460ff1916911515919091179055565b6110a2611347565b61271081600c546110b39190611f9b565b6110bd9190611fb2565b601a5550565b6110cb611347565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6110f5611347565b601d54600160a01b900460ff161561114f5760405162461bcd60e51b815260206004820181905260248201527f43757272656e746c792070726f63657373696e672c20747279206c617465722e6044820152606401610b64565b600061115a30610d4c565b90506000606461116a8484611f9b565b6111749190611fb2565b905061117f81611955565b505050565b61118c611347565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6111b5611347565b6001600160a01b03811661121a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b64565b61122381611905565b50565b61122e611347565b601d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061127b90831515815260200190565b60405180910390a150565b6001600160a01b038316158015906112a657506001600160a01b03821615155b6112e65760405162461bcd60e51b81526020600482015260116024820152704552523a207a65726f206164647265737360781b6044820152606401610b64565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b33611350610dec565b6001600160a01b031614610d795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b64565b6113ae610dec565b6001600160a01b0316826001600160a01b0316141580156113e257506005546001600160a01b038381166101009092041614155b80156113f757506001600160a01b0382163014155b80156114115750601d546001600160a01b03838116911614155b801561142b57506006546001600160a01b03838116911614155b801561144557506008546001600160a01b03838116911614155b801561146a5750611454610dec565b6001600160a01b0316836001600160a01b031614155b1561151a57600061147a83610d4c565b60165490915061148a838361200a565b11156115185760405162461bcd60e51b815260206004820152605160248201527f596f752061726520747279696e6720746f2062757920746f6f206d616e79207460448201527f6f6b656e732e20596f752068617665207265616368656420746865206c696d696064820152703a103337b91037b732903bb0b63632ba1760791b608482015260a401610b64565b505b611522610dec565b6001600160a01b0316836001600160a01b03161415801561155c5750611546610dec565b6001600160a01b0316826001600160a01b031614155b156115d9576018548111156115d95760405162461bcd60e51b815260206004820152603a60248201527f596f752061726520747279696e6720746f20627579206d6f7265207468616e2060448201527f746865206d6178207472616e73616374696f6e206c696d69742e0000000000006064820152608401610b64565b60055460ff161561168d576001600160a01b03831660009081526004602052604090205460ff1615801561162657506001600160a01b03821660009081526004602052604090205460ff16155b61168d5760405162461bcd60e51b815260206004820152603260248201527f54686973206164647265737320697320626c61636b6c69737465642e205472616044820152713739b0b1ba34b7b7103932bb32b93a32b21760711b6064820152608401610b64565b6001600160a01b038316158015906116ad57506001600160a01b03821615155b6116f15760405162461bcd60e51b81526020600482015260156024820152744552523a205573696e67203020616464726573732160581b6044820152606401610b64565b6000811161174f5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e2076616c7565206d75737420626520686967686572207468616e206044820152643d32b9379760d91b6064820152608401610b64565b600e5460ff610100820481169116108015906117755750601d54600160a01b900460ff16155b801561178f5750601d546001600160a01b03848116911614155b80156117a45750601d54600160a81b900460ff165b156117e057600e805460ff1916905560006117be30610d4c565b9050601a548111156117cf5750601a545b80156117de576117de81611955565b505b6001600160a01b03831660009081526003602052604090205460019060ff168061182257506001600160a01b03831660009081526003602052604090205460ff165b806118695750601d54600160b01b900460ff16801561184f5750601d546001600160a01b03858116911614155b80156118695750601d546001600160a01b03848116911614155b15611876575060006118b4565b601d546001600160a01b0390811690851603611897576011546010556118b4565b601d546001600160a01b03908116908416036118b4576012546010555b6118c08484848461199f565b50505050565b600081848411156118ea5760405162461bcd60e51b8152600401610b649190611d0a565b505050900390565b60006118fe828461200a565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601d805460ff60a01b1916600160a01b17905561197181611a05565b600554479061198e9061010090046001600160a01b031682611b5f565b5050601d805460ff60a01b19169055565b806119b1576119ac611b95565b6119de565b600e805460ff169060006119c48361205f565b91906101000a81548160ff021916908360ff160217905550505b6119e9848484611bda565b806118c0576118c0601354601055601454601155601554601255565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3a57611a3a61201d565b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab79190611f68565b81600181518110611aca57611aca61201d565b6001600160a01b039283166020918202929092010152601c54611af09130911684611286565b601c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b2990859060009086903090429060040161207e565b600060405180830381600087803b158015611b4357600080fd5b505af1158015611b57573d6000803e3d6000fd5b505050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561117f573d6000803e3d6000fd5b601054158015611ba55750601154155b8015611bb15750601254155b15611bb857565b6011805460145560128054601555601080546013556000928390559082905555565b600080611be683611cc6565b6001600160a01b0387166000908152600160205260409020549193509150611c0e9084611cfe565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611c3d90836118f2565b6001600160a01b038516600090815260016020526040808220929092553081522054611c6990826118f2565b3060009081526001602090815260409182902092909255518381526001600160a01b0386811692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b6000806000606460105485611cdb9190611f9b565b611ce59190611fb2565b90506000611cf38583611cfe565b959194509092505050565b60006118fe8284612033565b600060208083528351808285015260005b81811015611d3757858101830151858201604001528201611d1b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461122357600080fd5b60008060408385031215611d8057600080fd5b8235611d8b81611d58565b946020939093013593505050565b600060208284031215611dab57600080fd5b81356118fe81611d58565b600080600060608486031215611dcb57600080fd5b8335611dd681611d58565b92506020840135611de681611d58565b929592945050506040919091013590565b600060208284031215611e0957600080fd5b5035919050565b60008060408385031215611e2357600080fd5b50508035926020909101359150565b600060208284031215611e4457600080fd5b813560ff811681146118fe57600080fd5b60008060208385031215611e6857600080fd5b823567ffffffffffffffff80821115611e8057600080fd5b818501915085601f830112611e9457600080fd5b813581811115611ea357600080fd5b8660208260051b8501011115611eb857600080fd5b60209290920196919550909350505050565b801515811461122357600080fd5b600060208284031215611eea57600080fd5b81356118fe81611eca565b60008060408385031215611f0857600080fd5b8235611f1381611d58565b91506020830135611f2381611d58565b809150509250929050565b600181811c90821680611f4257607f821691505b602082108103611f6257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611f7a57600080fd5b81516118fe81611d58565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108eb576108eb611f85565b600082611fcf57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611fe657600080fd5b5051919050565b600060208284031215611fff57600080fd5b81516118fe81611eca565b808201808211156108eb576108eb611f85565b634e487b7160e01b600052603260045260246000fd5b818103818111156108eb576108eb611f85565b60006001820161205857612058611f85565b5060010190565b600060ff821660ff810361207557612075611f85565b60010192915050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ce5784516001600160a01b0316835293830193918301916001016120a9565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cca92410d88519447dca04b22d1d7a3f83134eee405b12077ed5ba9c14339bc064736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102765760003560e01c806370a082311161014f578063a457c2d7116100c1578063d785d5be1161007a578063d785d5be14610762578063dd62ed3e14610782578063ddbf5266146107c8578063ea2f0b37146107e8578063f2fde38b14610808578063f7739b5f1461082857600080fd5b8063a457c2d7146106a2578063a514a07d146106c2578063a9059cbb146106e2578063a9de975d14610702578063c1f6190814610722578063d2e1abe81461074257600080fd5b80637d1db4a5116101135780637d1db4a5146106025780638824e16e146106185780638da5cb5b146106385780638ec0e9a11461064d578063942201841461066d57806395d89b411461068d57600080fd5b806370a0823114610567578063715018a614610587578063768dc7101461059c57806378109e54146105cc5780637caefa89146105e257600080fd5b80633343ab83116101e857806349bd5a5e116101ac57806349bd5a5e146104c05780634a74bb02146104e057806350a7194a14610501578063590f897e1461051757806367cbd84c1461052d5780636f0941f61461054d57600080fd5b80633343ab831461042a57806336b1a1bc1461044a578063395093511461046a57806340b9a54b1461048a578063437823ec146104a057600080fd5b806318160ddd1161023a57806318160ddd146103585780631cdd3be314610377578063220f6696146103a757806323b872dd146103c85780632e39c6c6146103e8578063313ce5671461040857600080fd5b806306fdde0314610282578063095ea7b3146102ad5780631282a0a0146102dd57806313fad07a146102ff5780631694505e1461032057600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610848565b6040516102a49190611d0a565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611d6d565b6108da565b60405190151581526020016102a4565b3480156102e957600080fd5b506102fd6102f8366004611d99565b6108f1565b005b34801561030b57600080fd5b50601d546102cd90600160b01b900460ff1681565b34801561032c57600080fd5b50601c54610340906001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b34801561036457600080fd5b50600c545b6040519081526020016102a4565b34801561038357600080fd5b506102cd610392366004611d99565b60046020526000908152604090205460ff1681565b3480156103b357600080fd5b50601d546102cd90600160a01b900460ff1681565b3480156103d457600080fd5b506102cd6103e3366004611db6565b610a74565b3480156103f457600080fd5b506102fd610403366004611df7565b610add565b34801561041457600080fd5b50600b5460405160ff90911681526020016102a4565b34801561043657600080fd5b506102cd610445366004611db6565b610b06565b34801561045657600080fd5b506102fd610465366004611d99565b610c62565b34801561047657600080fd5b506102cd610485366004611d6d565b610c8c565b34801561049657600080fd5b5061036960115481565b3480156104ac57600080fd5b506102fd6104bb366004611d99565b610cc2565b3480156104cc57600080fd5b50601d54610340906001600160a01b031681565b3480156104ec57600080fd5b50601d546102cd90600160a81b900460ff1681565b34801561050d57600080fd5b50610369601a5481565b34801561052357600080fd5b5061036960125481565b34801561053957600080fd5b506102fd610548366004611e10565b610cee565b34801561055957600080fd5b506005546102cd9060ff1681565b34801561057357600080fd5b50610369610582366004611d99565b610d4c565b34801561059357600080fd5b506102fd610d67565b3480156105a857600080fd5b506102cd6105b7366004611d99565b60036020526000908152604090205460ff1681565b3480156105d857600080fd5b5061036960165481565b3480156105ee57600080fd5b506102fd6105fd366004611e32565b610d7b565b34801561060e57600080fd5b5061036960185481565b34801561062457600080fd5b506102fd610633366004611d99565b610d9f565b34801561064457600080fd5b50610340610dec565b34801561065957600080fd5b506102fd610668366004611e55565b610dfb565b34801561067957600080fd5b506102fd610688366004611df7565b610ee4565b34801561069957600080fd5b50610297610f0d565b3480156106ae57600080fd5b506102cd6106bd366004611d6d565b610f1c565b3480156106ce57600080fd5b506102fd6106dd366004611ed8565b610f6b565b3480156106ee57600080fd5b506102cd6106fd366004611d6d565b610f91565b34801561070e57600080fd5b506102fd61071d366004611e55565b610f9e565b34801561072e57600080fd5b506102fd61073d366004611ed8565b61107f565b34801561074e57600080fd5b506102fd61075d366004611df7565b61109a565b34801561076e57600080fd5b506102fd61077d366004611d99565b6110c3565b34801561078e57600080fd5b5061036961079d366004611ef5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156107d457600080fd5b506102fd6107e3366004611df7565b6110ed565b3480156107f457600080fd5b506102fd610803366004611d99565b611184565b34801561081457600080fd5b506102fd610823366004611d99565b6111ad565b34801561083457600080fd5b506102fd610843366004611ed8565b611226565b60606009805461085790611f2e565b80601f016020809104026020016040519081016040528092919081815260200182805461088390611f2e565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e7338484611286565b5060015b92915050565b6108f9611347565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561093c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109609190611f68565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d19190611f68565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a429190611f68565b601d80546001600160a01b039283166001600160a01b031991821617909155601c805493909216921691909117905550565b6000610a818484846113a6565b610ad38433610ace856040518060600160405280602881526020016120f0602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906118c6565b611286565b5060019392505050565b610ae5611347565b61271081600c54610af69190611f9b565b610b009190611fb2565b60185550565b6000610b10611347565b306001600160a01b03851603610b6d5760405162461bcd60e51b815260206004820152601b60248201527f43616e206e6f742072656d6f7665206e617469766520746f6b656e000000000060448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015610bb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd89190611fd4565b905080831115610be6578092505b60405163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905286169063a9059cbb906044016020604051808303816000875af1158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c599190611fed565b95945050505050565b610c6a611347565b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916108e7918590610ace90866118f2565b610cca611347565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b610cf6611347565b600f54610d03828461200a565b1115610d445760405162461bcd60e51b815260206004820152601060248201526f46656520697320746f6f20686967682160801b6044820152606401610b64565b601255601155565b6001600160a01b031660009081526001602052604090205490565b610d6f611347565b610d796000611905565b565b610d83611347565b600e805460ff9092166101000261ff0019909216919091179055565b610da7611347565b60058054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600360205260409020805460ff19166001179055565b6000546001600160a01b031690565b610e03611347565b60008060005b83811015610edd575a821015610ecd575a925060046000868684818110610e3257610e3261201d565b9050602002016020810190610e479190611d99565b6001600160a01b0316815260208101919091526040016000205460ff1615610ebf57600060046000878785818110610e8157610e8161201d565b9050602002016020810190610e969190611d99565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b5a610eca9084612033565b91505b610ed681612046565b9050610e09565b5050505050565b610eec611347565b61271081600c54610efd9190611f9b565b610f079190611fb2565b60165550565b6060600a805461085790611f2e565b60006108e73384610ace85604051806060016040528060258152602001612118602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906118c6565b610f73611347565b601d8054911515600160b01b0260ff60b01b19909216919091179055565b60006108e73384846113a6565b610fa6611347565b60008060005b83811015610edd575a82101561106f575a925060046000868684818110610fd557610fd561201d565b9050602002016020810190610fea9190611d99565b6001600160a01b0316815260208101919091526040016000205460ff16611061576001600460008787858181106110235761102361201d565b90506020020160208101906110389190611d99565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b5a61106c9084612033565b91505b61107881612046565b9050610fac565b611087611347565b6005805460ff1916911515919091179055565b6110a2611347565b61271081600c546110b39190611f9b565b6110bd9190611fb2565b601a5550565b6110cb611347565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6110f5611347565b601d54600160a01b900460ff161561114f5760405162461bcd60e51b815260206004820181905260248201527f43757272656e746c792070726f63657373696e672c20747279206c617465722e6044820152606401610b64565b600061115a30610d4c565b90506000606461116a8484611f9b565b6111749190611fb2565b905061117f81611955565b505050565b61118c611347565b6001600160a01b03166000908152600360205260409020805460ff19169055565b6111b5611347565b6001600160a01b03811661121a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b64565b61122381611905565b50565b61122e611347565b601d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061127b90831515815260200190565b60405180910390a150565b6001600160a01b038316158015906112a657506001600160a01b03821615155b6112e65760405162461bcd60e51b81526020600482015260116024820152704552523a207a65726f206164647265737360781b6044820152606401610b64565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b33611350610dec565b6001600160a01b031614610d795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b64565b6113ae610dec565b6001600160a01b0316826001600160a01b0316141580156113e257506005546001600160a01b038381166101009092041614155b80156113f757506001600160a01b0382163014155b80156114115750601d546001600160a01b03838116911614155b801561142b57506006546001600160a01b03838116911614155b801561144557506008546001600160a01b03838116911614155b801561146a5750611454610dec565b6001600160a01b0316836001600160a01b031614155b1561151a57600061147a83610d4c565b60165490915061148a838361200a565b11156115185760405162461bcd60e51b815260206004820152605160248201527f596f752061726520747279696e6720746f2062757920746f6f206d616e79207460448201527f6f6b656e732e20596f752068617665207265616368656420746865206c696d696064820152703a103337b91037b732903bb0b63632ba1760791b608482015260a401610b64565b505b611522610dec565b6001600160a01b0316836001600160a01b03161415801561155c5750611546610dec565b6001600160a01b0316826001600160a01b031614155b156115d9576018548111156115d95760405162461bcd60e51b815260206004820152603a60248201527f596f752061726520747279696e6720746f20627579206d6f7265207468616e2060448201527f746865206d6178207472616e73616374696f6e206c696d69742e0000000000006064820152608401610b64565b60055460ff161561168d576001600160a01b03831660009081526004602052604090205460ff1615801561162657506001600160a01b03821660009081526004602052604090205460ff16155b61168d5760405162461bcd60e51b815260206004820152603260248201527f54686973206164647265737320697320626c61636b6c69737465642e205472616044820152713739b0b1ba34b7b7103932bb32b93a32b21760711b6064820152608401610b64565b6001600160a01b038316158015906116ad57506001600160a01b03821615155b6116f15760405162461bcd60e51b81526020600482015260156024820152744552523a205573696e67203020616464726573732160581b6044820152606401610b64565b6000811161174f5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e2076616c7565206d75737420626520686967686572207468616e206044820152643d32b9379760d91b6064820152608401610b64565b600e5460ff610100820481169116108015906117755750601d54600160a01b900460ff16155b801561178f5750601d546001600160a01b03848116911614155b80156117a45750601d54600160a81b900460ff165b156117e057600e805460ff1916905560006117be30610d4c565b9050601a548111156117cf5750601a545b80156117de576117de81611955565b505b6001600160a01b03831660009081526003602052604090205460019060ff168061182257506001600160a01b03831660009081526003602052604090205460ff165b806118695750601d54600160b01b900460ff16801561184f5750601d546001600160a01b03858116911614155b80156118695750601d546001600160a01b03848116911614155b15611876575060006118b4565b601d546001600160a01b0390811690851603611897576011546010556118b4565b601d546001600160a01b03908116908416036118b4576012546010555b6118c08484848461199f565b50505050565b600081848411156118ea5760405162461bcd60e51b8152600401610b649190611d0a565b505050900390565b60006118fe828461200a565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601d805460ff60a01b1916600160a01b17905561197181611a05565b600554479061198e9061010090046001600160a01b031682611b5f565b5050601d805460ff60a01b19169055565b806119b1576119ac611b95565b6119de565b600e805460ff169060006119c48361205f565b91906101000a81548160ff021916908360ff160217905550505b6119e9848484611bda565b806118c0576118c0601354601055601454601155601554601255565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3a57611a3a61201d565b6001600160a01b03928316602091820292909201810191909152601c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab79190611f68565b81600181518110611aca57611aca61201d565b6001600160a01b039283166020918202929092010152601c54611af09130911684611286565b601c5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611b2990859060009086903090429060040161207e565b600060405180830381600087803b158015611b4357600080fd5b505af1158015611b57573d6000803e3d6000fd5b505050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561117f573d6000803e3d6000fd5b601054158015611ba55750601154155b8015611bb15750601254155b15611bb857565b6011805460145560128054601555601080546013556000928390559082905555565b600080611be683611cc6565b6001600160a01b0387166000908152600160205260409020549193509150611c0e9084611cfe565b6001600160a01b038087166000908152600160205260408082209390935590861681522054611c3d90836118f2565b6001600160a01b038516600090815260016020526040808220929092553081522054611c6990826118f2565b3060009081526001602090815260409182902092909255518381526001600160a01b0386811692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b6000806000606460105485611cdb9190611f9b565b611ce59190611fb2565b90506000611cf38583611cfe565b959194509092505050565b60006118fe8284612033565b600060208083528351808285015260005b81811015611d3757858101830151858201604001528201611d1b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461122357600080fd5b60008060408385031215611d8057600080fd5b8235611d8b81611d58565b946020939093013593505050565b600060208284031215611dab57600080fd5b81356118fe81611d58565b600080600060608486031215611dcb57600080fd5b8335611dd681611d58565b92506020840135611de681611d58565b929592945050506040919091013590565b600060208284031215611e0957600080fd5b5035919050565b60008060408385031215611e2357600080fd5b50508035926020909101359150565b600060208284031215611e4457600080fd5b813560ff811681146118fe57600080fd5b60008060208385031215611e6857600080fd5b823567ffffffffffffffff80821115611e8057600080fd5b818501915085601f830112611e9457600080fd5b813581811115611ea357600080fd5b8660208260051b8501011115611eb857600080fd5b60209290920196919550909350505050565b801515811461122357600080fd5b600060208284031215611eea57600080fd5b81356118fe81611eca565b60008060408385031215611f0857600080fd5b8235611f1381611d58565b91506020830135611f2381611d58565b809150509250929050565b600181811c90821680611f4257607f821691505b602082108103611f6257634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611f7a57600080fd5b81516118fe81611d58565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108eb576108eb611f85565b600082611fcf57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611fe657600080fd5b5051919050565b600060208284031215611fff57600080fd5b81516118fe81611eca565b808201808211156108eb576108eb611f85565b634e487b7160e01b600052603260045260246000fd5b818103818111156108eb576108eb611f85565b60006001820161205857612058611f85565b5060010190565b600060ff821660ff810361207557612075611f85565b60010192915050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ce5784516001600160a01b0316835293830193918301916001016120a9565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cca92410d88519447dca04b22d1d7a3f83134eee405b12077ed5ba9c14339bc064736f6c63430008130033

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.