ETH Price: $2,040.22 (-4.11%)
 

Overview

Max Total Supply

1,500,000,000 PFT

Holders

15

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PepeForTrump

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;

import "@openzeppelin/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/access/Ownable.sol";
import "@uniswap-periphery/interfaces/IUniswapV2Router02.sol";
import "@uniswap-core/interfaces/IUniswapV2Factory.sol";
import "./interfaces/IErrors.sol";
import "./interfaces/IEvents.sol";

contract PepeForTrump is ERC20Burnable, Ownable, IErrors, IEvents {
    uint256 public immutable FEES_MAGNITUDE = 1e6;
    uint256 public immutable MAX_FEES = 20e4; // 20%
    uint8 public immutable MAX_TRADE_COOLDOWN_BLOCKS = 5;

    uint256 public fees = 6e4; // 6%

    uint256 public swapTokensAtAmount;

    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromAntibot;
    mapping(address => bool) private _isBlacklisted;
    mapping(address => uint256) private lastTrade;

    uint8 public tradeCooldown = 1;

    address public marketingWallet;

    bool private swapping;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    /**
     * @dev Modifier to lock the `swap` function during execution to prevent
     * multiple deductions of swapping fees.
     */
    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    /**
     * @dev Receive needed to be able to receive ETH when swapping fees for ETH.
     */
    receive() external payable {}

    /**
     * @dev Transfers the Ownership of contract.
     *
     */
    constructor(address newOwner, address newMarketingWallet, address newUniswapV2Router)
        ERC20("PepeForTrump", "PFT")
        Ownable(newOwner)
    {
        if (newOwner == address(0)) revert ZeroAddressNotAllowed();
        if (newMarketingWallet == address(0)) revert ZeroAddressNotAllowed();
        if (newUniswapV2Router == address(0)) revert ZeroAddressNotAllowed();

        _mint(newOwner, 1_500_000_000 * 10 ** 18); // Total Supply: 1.5 Billion

        marketingWallet = newMarketingWallet;

        uniswapV2Router = IUniswapV2Router02(newUniswapV2Router);

        // approve once the uniswapV2Router
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        automatedMarketMakerPairs[uniswapV2Pair] = true;

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        _isExcludedFromAntibot[owner()] = true;
        _isExcludedFromAntibot[marketingWallet] = true;
        _isExcludedFromAntibot[address(this)] = true;
        _isExcludedFromAntibot[uniswapV2Pair] = true;

        swapTokensAtAmount = totalSupply() / 1000;
    }

    /**
     * @dev Sets the `marketingWallet`, callable only by the owner.
     *
     * Emits a {MarketingWalletSet} event.
     * Reverts if the provided address is the zero address.
     *
     * In order to change the fee receiver, set the `marketingWallet` here.
     */
    function setMarketingWallet(address payable newMarketingWallet) external onlyOwner {
        if (newMarketingWallet == address(0)) revert ZeroAddressNotAllowed();

        marketingWallet = newMarketingWallet;
        emit MarketingWalletSet(owner(), newMarketingWallet);
    }

    /**
     * @dev Sets the `tradeCooldown`, callable only by the owner.
     *
     * Emits a {TradeCooldownUpdated} event.
     * Reverts if the newTradeCooldown is more than the maximum.
     *
     * In order to turn the antibot off, set the `tradeCooldown` to zero.
     */
    function setTradeCooldown(uint8 newTradeCooldown) external onlyOwner {
        if (newTradeCooldown > MAX_TRADE_COOLDOWN_BLOCKS) revert MaxTradeCooldownExceeded();

        emit TradeCooldownUpdated(newTradeCooldown, tradeCooldown);

        tradeCooldown = newTradeCooldown;
    }

    /**
     * @dev Sets the contract's fees, callable only by the owner.
     * Fees must not exceed the limits.
     *
     * Emits a {FeesUpdated} event.
     * Reverts if the provided fees exceed their limits.
     *
     * Usage:
     * Fee magnitude is 1e6 (100%)
     * In order to set fees to 1%, it would be 10000 (1e4)
     */
    function setFees(uint256 newFees) external onlyOwner {
        if (newFees > MAX_FEES) revert MaxFeeExceeded();

        fees = newFees;

        emit FeesUpdated(fees);
    }

    /**
     * @dev Sets `wallet` whether it is excluded from fees or not.
     * Callable only by the owner.
     *
     * Emits a {ExcludedFromFeeSet} event.
     * Reverts if the provided address has the same value set.
     */
    function setExcludedFromFee(address wallet, bool value) external onlyOwner {
        if (_isExcludedFromFee[wallet] == value) revert PairValueAlreadySet(wallet);

        _isExcludedFromFee[wallet] = value;
        emit ExcludedFromFeeSet(owner(), wallet, value);
    }

    /**
     * @dev Sets `wallet` whether it is excluded from antibot or not.
     * Callable only by the owner.
     *
     * Emits a {ExcludeFromAntibotSet} event.
     * Reverts if the provided address has the same value set.
     */
    function setExcludedFromAntibot(address wallet, bool value) external onlyOwner {
        if (_isExcludedFromAntibot[wallet] == value) revert PairValueAlreadySet(wallet);

        _isExcludedFromAntibot[wallet] = value;
        emit ExcludeFromAntibotSet(owner(), wallet, value);
    }

    /**
     * @dev Sets `wallet` whether it is blacklisted or not.
     * Callable only by the owner.
     *
     * Emits a {BlacklistedSet} event.
     * Reverts if the provided address has the same value set.
     *
     * In order to blacklist an address, call this function as (address , true)
     * In order to remove from blacklist, call this function as (address, false)
     */
    function setBlacklisted(address wallet, bool value) external onlyOwner {
        if (_isBlacklisted[wallet] == value) revert PairValueAlreadySet(wallet);
        if (wallet == address(0)) revert CannotBlacklistAddress(wallet);
        if (wallet == address(uniswapV2Pair)) revert CannotBlacklistAddress(wallet);

        _isBlacklisted[wallet] = value;
        emit BlacklistedSet(owner(), wallet, value);
    }

    /**
     * @dev Sets whether a given pair is an automated market maker pair or not,
     * callable only by the owner.
     *
     * Emits a {SetAutomatedMarketMakerPair} event.
     * Reverts if the provided pair already has the same value set.
     */
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        if (automatedMarketMakerPairs[pair] == value) revert PairValueAlreadySet(pair);

        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0),
     * callable only by the owner.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     */
    function mint(address account, uint256 value) external onlyOwner {
        _mint(account, value);
    }

    /**
     * @dev Internal function to update token balances and handle fees and restrictions on transfers.
     */
    function _update(address from, address to, uint256 value) internal override {
        if (value == 0 || from == address(0)) {
            super._update(from, to, value);
            return;
        }

        if (_isBlacklisted[from]) revert AddressIsBlacklisted(from);
        if (_isBlacklisted[to]) revert AddressIsBlacklisted(to);

        bool localSwapping = swapping;

        if (!swapping) {
            if (!_isExcludedFromAntibot[from]) {
                if (lastTrade[from] + tradeCooldown > block.number) revert TradeCooldownNotReached();
                lastTrade[from] = block.number;
            }

            if (!_isExcludedFromAntibot[to]) {
                if (lastTrade[to] + tradeCooldown > block.number) revert TradeCooldownNotReached();
                lastTrade[to] = block.number;
            }
        }

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

        if (canSwap && !localSwapping && !automatedMarketMakerPairs[from] && from != owner() && to != owner()) {
            swap();
        }

        bool isBuy = _isBuy(from, to);
        bool takeFee =
            (isBuy || _isSell(from, to)) && !localSwapping && !_isExcludedFromFee[from] && !_isExcludedFromFee[to];

        if (takeFee) {
            uint256 localFees = (value * fees) / FEES_MAGNITUDE;
            if (localFees > 0) super._update(from, address(this), localFees);
            value = value - localFees;
        }

        super._update(from, to, value);
    }

    /**
     * @dev Checks if a transaction represents a buy.
     * A buy occurs when the sender is a liquidity pool and the recipient is not.
     */
    function _isBuy(address from, address to) internal view returns (bool) {
        return automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to];
    }

    /**
     * @dev Checks if a transaction represents a sell.
     * A sell occurs when the sender is not a liquidity pool and the recipient is.
     */
    function _isSell(address from, address to) internal view returns (bool) {
        return !automatedMarketMakerPairs[from] && automatedMarketMakerPairs[to];
    }

    /**
     * @dev Executes the swap of tokens for ETH, distributing fees.
     */
    function swap() internal lockTheSwap {
        swapTokensForEth(swapTokensAtAmount, marketingWallet);
    }
    /**
     * @dev Swaps a specified amount of tokens for ETH using the Uniswap router.
     *
     * Emits a {SwapTokensForEthFailed} event.
     */

    function swapTokensForEth(uint256 tokenAmount, address to) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        try uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, to, block.timestamp) {}
        catch {
            emit SwapTokensForEthFailed(tokenAmount);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

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

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

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

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

pragma solidity >=0.5.0;

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

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

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

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

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

File 6 of 13 : IErrors.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;

interface IErrors {
    /**
     * @dev Error thrown when the provided address is equal to the zero address.
     */
    error ZeroAddressNotAllowed();

    /**
     * @dev Error thrown when the value for a pair is already set to the desired value.
     */
    error PairValueAlreadySet(address pair);

    /**
     * @dev Error thrown when the provided fees exceed the maximum allowed value.
     */
    error MaxFeeExceeded();

    /**
     * @dev Error thrown when the provided tradeCooldown exceed the maximum allowed value.
     */
    error MaxTradeCooldownExceeded();

    /**
     * @dev Error thrown when transferring to or from an address that is within the trade cooldown period.
     */
    error TradeCooldownNotReached();

    /**
     * @dev Error thrown when blacklisting an address that cannot be blacklisted.
     */
    error CannotBlacklistAddress(address wallet);

    /**
     * @dev Error thrown when transferring to or from an address that is blacklisted.
     */
    error AddressIsBlacklisted(address wallet);
}

File 7 of 13 : IEvents.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;

interface IEvents {
    /**
     * @dev Emits an event when the owner sets the marketing wallet address.
     */
    event MarketingWalletSet(address indexed owner, address indexed newMarketingWallet);

    /**
     * @dev Emits an event when the owner sets the fees.
     */
    event FeesUpdated(uint256 newFees);

    /**
     * @dev Emits an event when an automated market maker pair is set or updated.
     */
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    /**
     * @dev Emits an event when the owner sets whether an address is excluded from fees or not.
     */
    event ExcludedFromFeeSet(address indexed owner, address indexed wallet, bool indexed value);

    /**
     * @dev Emits an event when an attempt to swap tokens for Ether fails.
     */
    event SwapTokensForEthFailed(uint256 amount);

    /**
     * @dev Emits an event when the owner sets whether an address is excluded from antibot or not.
     */
    event ExcludeFromAntibotSet(address indexed owner, address indexed wallet, bool indexed value);

    /**
     * @dev Emits an event when the owner sets whether an address is blacklisted or not.
     */
    event BlacklistedSet(address indexed owner, address indexed wallet, bool indexed value);

    /**
     * @dev Emits an event when the tradeCooldown is updated.
     */
    event TradeCooldownUpdated(uint8 indexed tradeCooldown, uint8 indexed previousTradeCooldown);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

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

pragma solidity ^0.8.20;

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

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

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

pragma solidity >=0.6.2;

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "@openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "@uniswap-periphery/=lib/v2-periphery/contracts/",
    "@uniswap-core/=lib/v2-core/contracts/",
    "@uniswap/v2-core/=lib/v2-core/",
    "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"address","name":"newMarketingWallet","type":"address"},{"internalType":"address","name":"newUniswapV2Router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"AddressIsBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"CannotBlacklistAddress","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxTradeCooldownExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"PairValueAlreadySet","type":"error"},{"inputs":[],"name":"TradeCooldownNotReached","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeFromAntibotSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludedFromFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFees","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"MarketingWalletSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensForEthFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"tradeCooldown","type":"uint8"},{"indexed":true,"internalType":"uint8","name":"previousTradeCooldown","type":"uint8"}],"name":"TradeCooldownUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FEES_MAGNITUDE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TRADE_COOLDOWN_BLOCKS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedFromAntibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFees","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newTradeCooldown","type":"uint8"}],"name":"setTradeCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeCooldown","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052620f424060805262030d4060a052600560c05261ea60600655600d805460ff1916600117905534801561003657600080fd5b50604051612aa2380380612aa283398101604081905261005591610ca2565b826040518060400160405280600c81526020016b050657065466f725472756d760a41b8152506040518060400160405280600381526020016214119560ea1b81525081600390816100a69190610d83565b5060046100b38282610d83565b5050506001600160a01b0381166100e557604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6100ee8161046d565b506001600160a01b038316610116576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b03821661013d576040516342bcdf7f60e11b815260040160405180910390fd5b6001600160a01b038116610164576040516342bcdf7f60e11b815260040160405180910390fd5b61017a836b04d8c55aefb8c05b5c0000006104bf565b600d80546001600160a01b0380851661010002610100600160a81b031990921691909117909155600e80549183166001600160a01b0319909216821790556101c69030906000196104f9565b600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610219573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023d9190610e41565b6001600160a01b031663c9c6539630600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561029f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102c39190610e41565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610310573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103349190610e41565b600f80546001600160a01b0319166001600160a01b039290921691821790556000908152600860205260408120805460ff19166001908117909155906009906103856005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526009909252812080549092166001908117909255600a906103dd6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600d54610100900482168152600a9093528183208054851660019081179091553084528284208054861682179055600f549091168352912080549092161790556103e861045760025490565b6104619190610e72565b60075550611025915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166104e95760405163ec442f0560e01b8152600060048201526024016100dc565b6104f56000838361050b565b5050565b6105068383836001610831565b505050565b80158061051f57506001600160a01b038316155b1561052f57610506838383610907565b6001600160a01b0383166000908152600b602052604090205460ff16156105745760405163e2a0fe6360e01b81526001600160a01b03841660048201526024016100dc565b6001600160a01b0382166000908152600b602052604090205460ff16156105b95760405163e2a0fe6360e01b81526001600160a01b03831660048201526024016100dc565b600d54600160a81b900460ff16806106db576001600160a01b0384166000908152600a602052604090205460ff1661065357600d546001600160a01b0385166000908152600c602052604090205443916106189160ff90911690610e94565b1115610637576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0384166000908152600c602052604090204390555b6001600160a01b0383166000908152600a602052604090205460ff166106db57600d546001600160a01b0384166000908152600c602052604090205443916106a09160ff90911690610e94565b11156106bf576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0383166000908152600c602052604090204390555b600754306000908152602081905260409020541080159081906106fc575081155b801561072157506001600160a01b03851660009081526008602052604090205460ff16155b801561073b57506005546001600160a01b03868116911614155b801561075557506005546001600160a01b03858116911614155b1561076257610762610a31565b600061076e8686610a70565b90506000818061078357506107838787610aba565b801561078d575083155b80156107b257506001600160a01b03871660009081526009602052604090205460ff16155b80156107d757506001600160a01b03861660009081526009602052604090205460ff16155b9050801561081d576000608051600654876107f29190610ea7565b6107fc9190610e72565b9050801561080f5761080f883083610907565b6108198187610ebe565b9550505b610828878787610907565b50505050505050565b6001600160a01b03841661085b5760405163e602df0560e01b8152600060048201526024016100dc565b6001600160a01b03831661088557604051634a1406b160e11b8152600060048201526024016100dc565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561090157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108f891815260200190565b60405180910390a35b50505050565b6001600160a01b0383166109325780600260008282546109279190610e94565b909155506109a49050565b6001600160a01b038316600090815260208190526040902054818110156109855760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100dc565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166109c0576002805482900390556109df565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2491815260200190565b60405180910390a3505050565b600d805460ff60a81b1916600160a81b1790819055600754610a61916001600160a01b0361010090910416610aff565b600d805460ff60a81b19169055565b6001600160a01b03821660009081526008602052604081205460ff168015610ab157506001600160a01b03821660009081526008602052604090205460ff16155b90505b92915050565b6001600160a01b03821660009081526008602052604081205460ff16158015610ab15750506001600160a01b031660009081526008602052604090205460ff16919050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610b3457610b34610ed1565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb19190610e41565b81600181518110610bc457610bc4610ed1565b6001600160a01b039283166020918202929092010152600e546040516318cbafe560e01b81529116906318cbafe590610c0a908690600090869088904290600401610ee7565b6000604051808303816000875af1925050508015610c4a57506040513d6000823e601f3d908101601f19168201604052610c479190810190610f59565b60015b610901576040518381527ff312a8cf41139222bcba78888c1a115141181d71dc3cab51c2cd2e19acb05fcf9060200160405180910390a1505050565b80516001600160a01b0381168114610c9d57600080fd5b919050565b600080600060608486031215610cb757600080fd5b610cc084610c86565b9250610cce60208501610c86565b9150610cdc60408501610c86565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680610d0f57607f821691505b602082108103610d2f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561050657806000526020600020601f840160051c81016020851015610d5c5750805b601f840160051c820191505b81811015610d7c5760008155600101610d68565b5050505050565b81516001600160401b03811115610d9c57610d9c610ce5565b610db081610daa8454610cfb565b84610d35565b6020601f821160018114610de45760008315610dcc5750848201515b600019600385901b1c1916600184901b178455610d7c565b600084815260208120601f198516915b82811015610e145787850151825560209485019460019092019101610df4565b5084821015610e325786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b600060208284031215610e5357600080fd5b610ab182610c86565b634e487b7160e01b600052601160045260246000fd5b600082610e8f57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610ab457610ab4610e5c565b8082028115828204841417610ab457610ab4610e5c565b81810381811115610ab457610ab4610e5c565b634e487b7160e01b600052603260045260246000fd5b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b81811015610f395783516001600160a01b0316835260209384019390920191600101610f12565b50506001600160a01b039590951660608401525050608001529392505050565b600060208284031215610f6b57600080fd5b81516001600160401b03811115610f8157600080fd5b8201601f81018413610f9257600080fd5b80516001600160401b03811115610fab57610fab610ce5565b604051600582901b90603f8201601f191681016001600160401b0381118282101715610fd957610fd9610ce5565b604052918252602081840181019290810187841115610ff757600080fd5b6020850194505b8385101561101a57845180825260209586019590935001610ffe565b509695505050505050565b60805160a05160c051611a396110696000396000818161052e01526107e20152600081816105c6015261075e015260008181610592015261124e0152611a396000f3fe6080604052600436106101e75760003560e01c806375f0a87411610102578063b52dd31211610095578063d01dd6d211610064578063d01dd6d2146105e8578063dd62ed3e14610608578063e2f456051461064e578063f2fde38b1461066457600080fd5b8063b52dd3121461051c578063b62496f514610550578063b628f64014610580578063c2300bef146105b457600080fd5b806395d89b41116100d157806395d89b41146104b15780639a7a23d6146104c65780639af1d35a146104e6578063a9059cbb146104fc57600080fd5b806375f0a8741461043457806379cc6790146104595780638da5cb5b1461047957806393ee15ca1461049757600080fd5b806340c10f191161017a5780636612e66f116101495780636612e66f146103a957806370a08231146103c9578063715018a6146103ff578063733239111461041457600080fd5b806340c10f191461032957806342966c681461034957806349bd5a5e146103695780635d098b381461038957600080fd5b806323b872dd116101b657806323b872dd146102a5578063313ce567146102c55780633d18678e146102e75780633db36de91461030957600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461028657600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610684565b6040516102159190611637565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461169a565b610716565b6040519015158152602001610215565b34801561025a57600080fd5b50600e5461026e906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561029257600080fd5b506002545b604051908152602001610215565b3480156102b157600080fd5b5061023e6102c03660046116c6565b610730565b3480156102d157600080fd5b5060125b60405160ff9091168152602001610215565b3480156102f357600080fd5b50610307610302366004611707565b610754565b005b34801561031557600080fd5b50610307610324366004611720565b6107d8565b34801561033557600080fd5b5061030761034436600461169a565b610872565b34801561035557600080fd5b50610307610364366004611707565b610888565b34801561037557600080fd5b50600f5461026e906001600160a01b031681565b34801561039557600080fd5b506103076103a4366004611743565b610895565b3480156103b557600080fd5b506103076103c4366004611760565b61091d565b3480156103d557600080fd5b506102976103e4366004611743565b6001600160a01b031660009081526020819052604090205490565b34801561040b57600080fd5b506103076109d2565b34801561042057600080fd5b5061030761042f366004611760565b6109e6565b34801561044057600080fd5b50600d5461026e9061010090046001600160a01b031681565b34801561046557600080fd5b5061030761047436600461169a565b610a96565b34801561048557600080fd5b506005546001600160a01b031661026e565b3480156104a357600080fd5b50600d546102d59060ff1681565b3480156104bd57600080fd5b50610208610aab565b3480156104d257600080fd5b506103076104e1366004611760565b610aba565b3480156104f257600080fd5b5061029760065481565b34801561050857600080fd5b5061023e61051736600461169a565b610b62565b34801561052857600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561055c57600080fd5b5061023e61056b366004611743565b60086020526000908152604090205460ff1681565b34801561058c57600080fd5b506102977f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c057600080fd5b506102977f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f457600080fd5b50610307610603366004611760565b610b70565b34801561061457600080fd5b5061029761062336600461179e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065a57600080fd5b5061029760075481565b34801561067057600080fd5b5061030761067f366004611743565b610c8c565b606060038054610693906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf906117cc565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b600033610724818585610cc7565b60019150505b92915050565b60003361073e858285610cd9565b610749858585610d57565b506001949350505050565b61075c610db6565b7f000000000000000000000000000000000000000000000000000000000000000081111561079d5760405163f4df6ae560e01b815260040160405180910390fd5b60068190556040518181527f9fe6eeb0f0541c644a56c67efeb872dbadd803a60b909d7dde1b35a3fe230b0e9060200160405180910390a150565b6107e0610db6565b7f000000000000000000000000000000000000000000000000000000000000000060ff168160ff16111561082757604051638fbaa35d60e01b815260040160405180910390fd5b600d5460405160ff918216918316907f61d5f52f88a645b285e957c0bcc84b2e5bb11208c5e90d3ec4209a3ebb202a1990600090a3600d805460ff191660ff92909216919091179055565b61087a610db6565b6108848282610de3565b5050565b6108923382610e19565b50565b61089d610db6565b6001600160a01b0381166108c4576040516342bcdf7f60e11b815260040160405180910390fd5b600d8054610100600160a81b0319166101006001600160a01b03848116918202929092179092556005546040519116907f666c23eeba092d89ff8023c2d2bf3a7ed09c51437448bcd51d681de2222b289490600090a350565b610925610db6565b6001600160a01b03821660009081526009602052604090205481151560ff9091161515036109765760405163247def5b60e21b81526001600160a01b03831660048201526024015b60405180910390fd5b6001600160a01b03828116600081815260096020526040808220805460ff19168615159081179091556005549151909491909116917fb54a91ca08bc28885ac4fb32ccfd131ec9e717cf62bd918bb0782d6da226e3c491a45050565b6109da610db6565b6109e46000610e4f565b565b6109ee610db6565b6001600160a01b0382166000908152600a602052604090205481151560ff909116151503610a3a5760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038281166000818152600a6020526040808220805460ff19168615159081179091556005549151909491909116917fbca6aca04c2c0bbc293aafcdfdaa11cff45ee6003a84f47dda7fe9a7b81d8da791a45050565b610aa1823383610cd9565b6108848282610e19565b606060048054610693906117cc565b610ac2610db6565b6001600160a01b03821660009081526008602052604090205481151560ff909116151503610b0e5760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600033610724818585610d57565b610b78610db6565b6001600160a01b0382166000908152600b602052604090205481151560ff909116151503610bc45760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038216610bf65760405163ccf4c76d60e01b81526001600160a01b038316600482015260240161096d565b600f546001600160a01b0390811690831603610c305760405163ccf4c76d60e01b81526001600160a01b038316600482015260240161096d565b6001600160a01b038281166000818152600b6020526040808220805460ff19168615159081179091556005549151909491909116917fc7cec75841adf9df94aa084f5cb1dcc342a6d997ccec5436da86aefb5da3fcc991a45050565b610c94610db6565b6001600160a01b038116610cbe57604051631e4fbdf760e01b81526000600482015260240161096d565b61089281610e4f565b610cd48383836001610ea1565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d515781811015610d4257604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161096d565b610d5184848484036000610ea1565b50505050565b6001600160a01b038316610d8157604051634b637e8f60e11b81526000600482015260240161096d565b6001600160a01b038216610dab5760405163ec442f0560e01b81526000600482015260240161096d565b610cd4838383610f76565b6005546001600160a01b031633146109e45760405163118cdaa760e01b815233600482015260240161096d565b6001600160a01b038216610e0d5760405163ec442f0560e01b81526000600482015260240161096d565b61088460008383610f76565b6001600160a01b038216610e4357604051634b637e8f60e11b81526000600482015260240161096d565b61088482600083610f76565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610ecb5760405163e602df0560e01b81526000600482015260240161096d565b6001600160a01b038316610ef557604051634a1406b160e11b81526000600482015260240161096d565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d5157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f6891815260200190565b60405180910390a350505050565b801580610f8a57506001600160a01b038316155b15610f9a57610cd48383836112ba565b6001600160a01b0383166000908152600b602052604090205460ff1615610fdf5760405163e2a0fe6360e01b81526001600160a01b038416600482015260240161096d565b6001600160a01b0382166000908152600b602052604090205460ff16156110245760405163e2a0fe6360e01b81526001600160a01b038316600482015260240161096d565b600d54600160a81b900460ff1680611146576001600160a01b0384166000908152600a602052604090205460ff166110be57600d546001600160a01b0385166000908152600c602052604090205443916110839160ff9091169061181c565b11156110a2576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0384166000908152600c602052604090204390555b6001600160a01b0383166000908152600a602052604090205460ff1661114657600d546001600160a01b0384166000908152600c6020526040902054439161110b9160ff9091169061181c565b111561112a576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0383166000908152600c602052604090204390555b60075430600090815260208190526040902054108015908190611167575081155b801561118c57506001600160a01b03851660009081526008602052604090205460ff16155b80156111a657506005546001600160a01b03868116911614155b80156111c057506005546001600160a01b03858116911614155b156111cd576111cd6113e4565b60006111d98686611423565b9050600081806111ee57506111ee878761146b565b80156111f8575083155b801561121d57506001600160a01b03871660009081526009602052604090205460ff16155b801561124257506001600160a01b03861660009081526009602052604090205460ff16155b905080156112a65760007f00000000000000000000000000000000000000000000000000000000000000006006548761127b919061182f565b6112859190611846565b90508015611298576112988830836112ba565b6112a28187611868565b9550505b6112b18787876112ba565b50505050505050565b6001600160a01b0383166112e55780600260008282546112da919061181c565b909155506113579050565b6001600160a01b038316600090815260208190526040902054818110156113385760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161096d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661137357600280548290039055611392565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113d791815260200190565b60405180910390a3505050565b600d805460ff60a81b1916600160a81b1790819055600754611414916001600160a01b03610100909104166114b0565b600d805460ff60a81b19169055565b6001600160a01b03821660009081526008602052604081205460ff16801561146457506001600160a01b03821660009081526008602052604090205460ff16155b9392505050565b6001600160a01b03821660009081526008602052604081205460ff161580156114645750506001600160a01b031660009081526008602052604090205460ff16919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114e5576114e5611891565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156291906118a7565b8160018151811061157557611575611891565b6001600160a01b039283166020918202929092010152600e546040516318cbafe560e01b81529116906318cbafe5906115bb9086906000908690889042906004016118c4565b6000604051808303816000875af19250505080156115fb57506040513d6000823e601f3d908101601f191682016040526115f89190810190611936565b60015b610d51576040518381527ff312a8cf41139222bcba78888c1a115141181d71dc3cab51c2cd2e19acb05fcf9060200160405180910390a1505050565b602081526000825180602084015260005b818110156116655760208186018101516040868401015201611648565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461089257600080fd5b600080604083850312156116ad57600080fd5b82356116b881611685565b946020939093013593505050565b6000806000606084860312156116db57600080fd5b83356116e681611685565b925060208401356116f681611685565b929592945050506040919091013590565b60006020828403121561171957600080fd5b5035919050565b60006020828403121561173257600080fd5b813560ff8116811461146457600080fd5b60006020828403121561175557600080fd5b813561146481611685565b6000806040838503121561177357600080fd5b823561177e81611685565b91506020830135801515811461179357600080fd5b809150509250929050565b600080604083850312156117b157600080fd5b82356117bc81611685565b9150602083013561179381611685565b600181811c908216806117e057607f821691505b60208210810361180057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561072a5761072a611806565b808202811582820484141761072a5761072a611806565b60008261186357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561072a5761072a611806565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000602082840312156118b957600080fd5b815161146481611685565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156119165783516001600160a01b03168352602093840193909201916001016118ef565b50506001600160a01b039590951660608401525050608001529392505050565b60006020828403121561194857600080fd5b815167ffffffffffffffff81111561195f57600080fd5b8201601f8101841361197057600080fd5b805167ffffffffffffffff81111561198a5761198a61187b565b8060051b604051601f19603f830116810181811067ffffffffffffffff821117156119b7576119b761187b565b6040529182526020818401810192908101878411156119d557600080fd5b6020850194505b838510156119f8578451808252602095860195909350016119dc565b50969550505050505056fea2646970667358221220a70eee5718190547abcba6734d0921d528e0f79f7eb3b8c1d62cbd4d0f913fe464736f6c634300081a003300000000000000000000000032a722cd1c7d83c4c7c32116443e835166ac014f00000000000000000000000097d515858e1a8341945a3fbd36a7c2e02c1378130000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806375f0a87411610102578063b52dd31211610095578063d01dd6d211610064578063d01dd6d2146105e8578063dd62ed3e14610608578063e2f456051461064e578063f2fde38b1461066457600080fd5b8063b52dd3121461051c578063b62496f514610550578063b628f64014610580578063c2300bef146105b457600080fd5b806395d89b41116100d157806395d89b41146104b15780639a7a23d6146104c65780639af1d35a146104e6578063a9059cbb146104fc57600080fd5b806375f0a8741461043457806379cc6790146104595780638da5cb5b1461047957806393ee15ca1461049757600080fd5b806340c10f191161017a5780636612e66f116101495780636612e66f146103a957806370a08231146103c9578063715018a6146103ff578063733239111461041457600080fd5b806340c10f191461032957806342966c681461034957806349bd5a5e146103695780635d098b381461038957600080fd5b806323b872dd116101b657806323b872dd146102a5578063313ce567146102c55780633d18678e146102e75780633db36de91461030957600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461028657600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610684565b6040516102159190611637565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461169a565b610716565b6040519015158152602001610215565b34801561025a57600080fd5b50600e5461026e906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561029257600080fd5b506002545b604051908152602001610215565b3480156102b157600080fd5b5061023e6102c03660046116c6565b610730565b3480156102d157600080fd5b5060125b60405160ff9091168152602001610215565b3480156102f357600080fd5b50610307610302366004611707565b610754565b005b34801561031557600080fd5b50610307610324366004611720565b6107d8565b34801561033557600080fd5b5061030761034436600461169a565b610872565b34801561035557600080fd5b50610307610364366004611707565b610888565b34801561037557600080fd5b50600f5461026e906001600160a01b031681565b34801561039557600080fd5b506103076103a4366004611743565b610895565b3480156103b557600080fd5b506103076103c4366004611760565b61091d565b3480156103d557600080fd5b506102976103e4366004611743565b6001600160a01b031660009081526020819052604090205490565b34801561040b57600080fd5b506103076109d2565b34801561042057600080fd5b5061030761042f366004611760565b6109e6565b34801561044057600080fd5b50600d5461026e9061010090046001600160a01b031681565b34801561046557600080fd5b5061030761047436600461169a565b610a96565b34801561048557600080fd5b506005546001600160a01b031661026e565b3480156104a357600080fd5b50600d546102d59060ff1681565b3480156104bd57600080fd5b50610208610aab565b3480156104d257600080fd5b506103076104e1366004611760565b610aba565b3480156104f257600080fd5b5061029760065481565b34801561050857600080fd5b5061023e61051736600461169a565b610b62565b34801561052857600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000581565b34801561055c57600080fd5b5061023e61056b366004611743565b60086020526000908152604090205460ff1681565b34801561058c57600080fd5b506102977f00000000000000000000000000000000000000000000000000000000000f424081565b3480156105c057600080fd5b506102977f0000000000000000000000000000000000000000000000000000000000030d4081565b3480156105f457600080fd5b50610307610603366004611760565b610b70565b34801561061457600080fd5b5061029761062336600461179e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065a57600080fd5b5061029760075481565b34801561067057600080fd5b5061030761067f366004611743565b610c8c565b606060038054610693906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf906117cc565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b600033610724818585610cc7565b60019150505b92915050565b60003361073e858285610cd9565b610749858585610d57565b506001949350505050565b61075c610db6565b7f0000000000000000000000000000000000000000000000000000000000030d4081111561079d5760405163f4df6ae560e01b815260040160405180910390fd5b60068190556040518181527f9fe6eeb0f0541c644a56c67efeb872dbadd803a60b909d7dde1b35a3fe230b0e9060200160405180910390a150565b6107e0610db6565b7f000000000000000000000000000000000000000000000000000000000000000560ff168160ff16111561082757604051638fbaa35d60e01b815260040160405180910390fd5b600d5460405160ff918216918316907f61d5f52f88a645b285e957c0bcc84b2e5bb11208c5e90d3ec4209a3ebb202a1990600090a3600d805460ff191660ff92909216919091179055565b61087a610db6565b6108848282610de3565b5050565b6108923382610e19565b50565b61089d610db6565b6001600160a01b0381166108c4576040516342bcdf7f60e11b815260040160405180910390fd5b600d8054610100600160a81b0319166101006001600160a01b03848116918202929092179092556005546040519116907f666c23eeba092d89ff8023c2d2bf3a7ed09c51437448bcd51d681de2222b289490600090a350565b610925610db6565b6001600160a01b03821660009081526009602052604090205481151560ff9091161515036109765760405163247def5b60e21b81526001600160a01b03831660048201526024015b60405180910390fd5b6001600160a01b03828116600081815260096020526040808220805460ff19168615159081179091556005549151909491909116917fb54a91ca08bc28885ac4fb32ccfd131ec9e717cf62bd918bb0782d6da226e3c491a45050565b6109da610db6565b6109e46000610e4f565b565b6109ee610db6565b6001600160a01b0382166000908152600a602052604090205481151560ff909116151503610a3a5760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038281166000818152600a6020526040808220805460ff19168615159081179091556005549151909491909116917fbca6aca04c2c0bbc293aafcdfdaa11cff45ee6003a84f47dda7fe9a7b81d8da791a45050565b610aa1823383610cd9565b6108848282610e19565b606060048054610693906117cc565b610ac2610db6565b6001600160a01b03821660009081526008602052604090205481151560ff909116151503610b0e5760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600033610724818585610d57565b610b78610db6565b6001600160a01b0382166000908152600b602052604090205481151560ff909116151503610bc45760405163247def5b60e21b81526001600160a01b038316600482015260240161096d565b6001600160a01b038216610bf65760405163ccf4c76d60e01b81526001600160a01b038316600482015260240161096d565b600f546001600160a01b0390811690831603610c305760405163ccf4c76d60e01b81526001600160a01b038316600482015260240161096d565b6001600160a01b038281166000818152600b6020526040808220805460ff19168615159081179091556005549151909491909116917fc7cec75841adf9df94aa084f5cb1dcc342a6d997ccec5436da86aefb5da3fcc991a45050565b610c94610db6565b6001600160a01b038116610cbe57604051631e4fbdf760e01b81526000600482015260240161096d565b61089281610e4f565b610cd48383836001610ea1565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d515781811015610d4257604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161096d565b610d5184848484036000610ea1565b50505050565b6001600160a01b038316610d8157604051634b637e8f60e11b81526000600482015260240161096d565b6001600160a01b038216610dab5760405163ec442f0560e01b81526000600482015260240161096d565b610cd4838383610f76565b6005546001600160a01b031633146109e45760405163118cdaa760e01b815233600482015260240161096d565b6001600160a01b038216610e0d5760405163ec442f0560e01b81526000600482015260240161096d565b61088460008383610f76565b6001600160a01b038216610e4357604051634b637e8f60e11b81526000600482015260240161096d565b61088482600083610f76565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610ecb5760405163e602df0560e01b81526000600482015260240161096d565b6001600160a01b038316610ef557604051634a1406b160e11b81526000600482015260240161096d565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d5157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f6891815260200190565b60405180910390a350505050565b801580610f8a57506001600160a01b038316155b15610f9a57610cd48383836112ba565b6001600160a01b0383166000908152600b602052604090205460ff1615610fdf5760405163e2a0fe6360e01b81526001600160a01b038416600482015260240161096d565b6001600160a01b0382166000908152600b602052604090205460ff16156110245760405163e2a0fe6360e01b81526001600160a01b038316600482015260240161096d565b600d54600160a81b900460ff1680611146576001600160a01b0384166000908152600a602052604090205460ff166110be57600d546001600160a01b0385166000908152600c602052604090205443916110839160ff9091169061181c565b11156110a2576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0384166000908152600c602052604090204390555b6001600160a01b0383166000908152600a602052604090205460ff1661114657600d546001600160a01b0384166000908152600c6020526040902054439161110b9160ff9091169061181c565b111561112a576040516329d22f2d60e21b815260040160405180910390fd5b6001600160a01b0383166000908152600c602052604090204390555b60075430600090815260208190526040902054108015908190611167575081155b801561118c57506001600160a01b03851660009081526008602052604090205460ff16155b80156111a657506005546001600160a01b03868116911614155b80156111c057506005546001600160a01b03858116911614155b156111cd576111cd6113e4565b60006111d98686611423565b9050600081806111ee57506111ee878761146b565b80156111f8575083155b801561121d57506001600160a01b03871660009081526009602052604090205460ff16155b801561124257506001600160a01b03861660009081526009602052604090205460ff16155b905080156112a65760007f00000000000000000000000000000000000000000000000000000000000f42406006548761127b919061182f565b6112859190611846565b90508015611298576112988830836112ba565b6112a28187611868565b9550505b6112b18787876112ba565b50505050505050565b6001600160a01b0383166112e55780600260008282546112da919061181c565b909155506113579050565b6001600160a01b038316600090815260208190526040902054818110156113385760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161096d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661137357600280548290039055611392565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113d791815260200190565b60405180910390a3505050565b600d805460ff60a81b1916600160a81b1790819055600754611414916001600160a01b03610100909104166114b0565b600d805460ff60a81b19169055565b6001600160a01b03821660009081526008602052604081205460ff16801561146457506001600160a01b03821660009081526008602052604090205460ff16155b9392505050565b6001600160a01b03821660009081526008602052604081205460ff161580156114645750506001600160a01b031660009081526008602052604090205460ff16919050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114e5576114e5611891565b6001600160a01b03928316602091820292909201810191909152600e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156291906118a7565b8160018151811061157557611575611891565b6001600160a01b039283166020918202929092010152600e546040516318cbafe560e01b81529116906318cbafe5906115bb9086906000908690889042906004016118c4565b6000604051808303816000875af19250505080156115fb57506040513d6000823e601f3d908101601f191682016040526115f89190810190611936565b60015b610d51576040518381527ff312a8cf41139222bcba78888c1a115141181d71dc3cab51c2cd2e19acb05fcf9060200160405180910390a1505050565b602081526000825180602084015260005b818110156116655760208186018101516040868401015201611648565b506000604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461089257600080fd5b600080604083850312156116ad57600080fd5b82356116b881611685565b946020939093013593505050565b6000806000606084860312156116db57600080fd5b83356116e681611685565b925060208401356116f681611685565b929592945050506040919091013590565b60006020828403121561171957600080fd5b5035919050565b60006020828403121561173257600080fd5b813560ff8116811461146457600080fd5b60006020828403121561175557600080fd5b813561146481611685565b6000806040838503121561177357600080fd5b823561177e81611685565b91506020830135801515811461179357600080fd5b809150509250929050565b600080604083850312156117b157600080fd5b82356117bc81611685565b9150602083013561179381611685565b600181811c908216806117e057607f821691505b60208210810361180057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561072a5761072a611806565b808202811582820484141761072a5761072a611806565b60008261186357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561072a5761072a611806565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000602082840312156118b957600080fd5b815161146481611685565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156119165783516001600160a01b03168352602093840193909201916001016118ef565b50506001600160a01b039590951660608401525050608001529392505050565b60006020828403121561194857600080fd5b815167ffffffffffffffff81111561195f57600080fd5b8201601f8101841361197057600080fd5b805167ffffffffffffffff81111561198a5761198a61187b565b8060051b604051601f19603f830116810181811067ffffffffffffffff821117156119b7576119b761187b565b6040529182526020818401810192908101878411156119d557600080fd5b6020850194505b838510156119f8578451808252602095860195909350016119dc565b50969550505050505056fea2646970667358221220a70eee5718190547abcba6734d0921d528e0f79f7eb3b8c1d62cbd4d0f913fe464736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000032a722cd1c7d83c4c7c32116443e835166ac014f00000000000000000000000097d515858e1a8341945a3fbd36a7c2e02c1378130000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : newOwner (address): 0x32A722cD1C7D83C4C7c32116443E835166AC014F
Arg [1] : newMarketingWallet (address): 0x97d515858E1A8341945a3fBD36A7c2E02C137813
Arg [2] : newUniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000032a722cd1c7d83c4c7c32116443e835166ac014f
Arg [1] : 00000000000000000000000097d515858e1a8341945a3fbd36a7c2e02c137813
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.