ETH Price: $2,228.85 (-2.02%)
Gas: 0.31 Gwei
 

Overview

Max Total Supply

50,000,000,000,000 INU

Holders

29

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

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract TheInu is ERC20, Ownable {
	uint256 private _totalSupply = 5 * 10**13 * 10**18;		// Total Supply: 50T

	bool    public enabledTrade = false;
    uint256 private startedTradeAt;
    uint256 private whitelistTime = 1800;                   // whitelist time 30mins
    mapping (address => bool) private whitelist;            // white list allowed to buy at private sale.

    uint256 public buyTax = 1;                             // 1%
	uint256 public sellTax = 1;                            // 1%

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    mapping (address => bool) public automatedMarketMakerPairs;

    bool    public inSwapAndLiquify;
    uint256 public swapAndLiquidityTokenAmount = 10**9 * 10**18;    // Swap and add liquidity when balance is more than 1B

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

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

	constructor() ERC20("The Inu", "INU") {
		IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _mint(msg.sender, _totalSupply);

        _setWhiteList();
    }

    function _setWhiteList() internal {
        whitelist[0x00379f5F914Dc338A2179959D9b56527C3F7C991] = true;
        whitelist[0x214E7bD9D19214a4fFc14448E32B38c64245163a] = true;
        whitelist[0x139f1B806dBA1bbE5D84Ca2B3B387D245A38f224] = true;
        whitelist[0xF6467cA413d0175332D541A1EC6e5D8aC256c574] = true;
        whitelist[0x33665Df5071ceE5351D42b9aBC9b8399Eca5fc42] = true;
        whitelist[0xEDFbA16c7395B96aE644785623641C2a09C1e34d] = true;
        whitelist[0xB17457E275F9ECdf2f34aF4F94a09770A3749775] = true;
        whitelist[0xA1FfE96e4271D6886b5641D970bd13163e017595] = true;
        whitelist[0x52FB5B655A78F475857F2b8386d7fdFFFbf4d30b] = true;
        whitelist[0x1fc252173B43f58d27Ef9C793b448DAe2936747e] = true;
        whitelist[0x0C4DD44b5349949244F73B9719EDF63d25a23ef2] = true;
        whitelist[0x12D54677d397Bd738635004E68DD18BD203fc9ac] = true;
        whitelist[0x65390B8473D323E00A97a95AE762A214d4bf2681] = true;
        whitelist[0x680EE013cD8299Aaf0022913C17b7b8085CAe73d] = true;
        whitelist[0x6A5eB4E10A6cc44c6159CC505C1b7FF38D9e1c28] = true;
        whitelist[0x064B7e330C628958F685122f34d10dDE6f2225Dd] = true;
        whitelist[0xb6CD3CdCA44391C5c5402EcbF7110F6F4c3B5563] = true;
        whitelist[0xD5B1A978Cf1b7EA011785897DF777e7AEF6CF6b2] = true;
        whitelist[0x21145c55595EdeE2fFa8cF3c7c5937EB28286E06] = true;
        whitelist[0x9539354a2238d441Aba52C570bFAE7E0EEA6cCb9] = true;
    }

    receive() external payable {}

    function enableSale() external onlyOwner() {
        enabledTrade = true;
        startedTradeAt = block.timestamp;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance / 2;
        uint256 otherHalf = contractTokenBalance - half;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance - initialBalance;

        // add liquidity to pancakeswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the pancakeswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

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

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

    function setSwapAndLiquidityTokenAmount(uint256 amount) external onlyOwner {
        swapAndLiquidityTokenAmount = amount;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(from != owner() && to != owner()) { // owner transaction
            require(enabledTrade, "No allowed trade");

            if (automatedMarketMakerPairs[from] && block.timestamp < (startedTradeAt + whitelistTime)) {
                require(whitelist[to], "No whitelist address");
            }
        }

        // Swap and add liquidity
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapAndLiquidityTokenAmount;
        if (
            canSwap &&
            !inSwapAndLiquify &&
            to == uniswapV2Pair
        ) {
            // add liquidity
            swapAndLiquify(swapAndLiquidityTokenAmount);
        }

        bool takeFee = false;
        uint256 fee = 0;

        // Check antibottime
        if (automatedMarketMakerPairs[from]) { // buy transaction
            takeFee = true;
            fee = buyTax;
        } else if (automatedMarketMakerPairs[to]) { // sell transaction
            takeFee = true;
            fee = sellTax;
        }

        if(from == owner() || to == owner()) { // owner transaction
            takeFee = false;
        }

        if (takeFee && fee > 0) {
            uint256 feeAmount = amount * fee / 100;
            amount = amount - feeAmount;

            super._transfer(from, address(this), feeAmount);
        }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabledTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAndLiquidityTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquidityTokenAmount","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60c06040526d027716b6a0adc2d677c0800000006006556007805460ff191690556107086009556001600b819055600c556b033b2e3c9fd0803ce8000000600f553480156200004d57600080fd5b506040518060400160405280600781526020016654686520496e7560c81b81525060405180604001604052806003815260200162494e5560e81b81525081600390816200009b919062000793565b506004620000aa828262000793565b505050620000c7620000c1620005ce60201b60201c565b620005d2565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa1580156200011e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014491906200085f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000192573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b891906200085f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000206573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022c91906200085f565b6001600160a01b031660a08190526000908152600d60205260409020805460ff1916600117905562000267336006546200062460201b60201c565b620005c7600a6020527f1918668480c0786bf0a734820ff40ba5944f0b0df1d71573aa7a348f7761e8b98054600160ff1991821681179092557f9db4635fe74b214ce9d1f8add703cc491c645ca073c3a853bfba136f7c6d1ad580548216831790557fe0669cb2b421bf95ae8791e2c88692f2618ac67955df6f8e97940320204866c480548216831790557fd6b12fbaed9187bf9ffbbf51218696897dabe3e2bfadfd833fc0feeeaf9f70aa80548216831790557f67870a3a811b2573c862b1302a54ae85f01b3a86fd4eb0762f2d2f6203107f4c80548216831790557fcfacdcf927798bd87747794416f39c8174a2836083631592eb56b23b1350850580548216831790557f46c641d5d26d648daf540eaa8d993b2bea807ec6f6f6e396dd6b8d185c23ccbe80548216831790557fafdc7a1ae989ad8b0b5a5732d42c15ed1dd74e3b378214c40016a22c45dbbbba80548216831790557f59299fffd9e103bf66068a5714156f6353bf6d0f3dc74638b7606e111db6d8fc80548216831790557fc1dfbe828f390e29d8cb88f9acfa90287045e860fd97ff1852e1dbe63863a97080548216831790557fbd80895707f48493a3868e0e6e2737406803d433f6159d6ba5cce2f9a5f0327c80548216831790557f1115d42c389d3374ca3588756715586644263cee8d4a76ad391a52215ab84f2080548216831790557f646d4c0dbc7c883a065b7de45eac397a5e3689b5fedea4876768e27836c4291c80548216831790557f2552a3c4a56cb99230edaa418ce0ff85bb8be8b1913283ddd84e3e9587a50ea380548216831790557f8895eacd265f42e7f825442fa672bb7e8e2970f6dc92ef15b0d2c7091d990e6980548216831790557f85697e173f478fb3107c045203a7099c6bf7e30e50c274c10df20b788e20b30880548216831790557fc3210f9811eef01c9dce2a7af590d81ef54795fb997fb5631c17966d74457d8380548216831790557fabd9a5e5e3cc054ca00e1e350d5dfb014bed8d87e2014c1b132fc03a4466394780548216831790557f111e671932c9d0354b63b596c28fe914ab55c9b89da29d00aa7d4d841edfb09e8054821683179055739539354a2238d441aba52c570bfae7e0eea6ccb96000527f88e1475bb1c01f58ff12775335d4ece97971087398bf1b8ca7f54d433c897e1a80549091169091179055565b50620008b9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200067f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000693919062000891565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200071a57607f821691505b6020821081036200073b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006ea57600081815260208120601f850160051c810160208610156200076a5750805b601f850160051c820191505b818110156200078b5782815560010162000776565b505050505050565b81516001600160401b03811115620007af57620007af620006ef565b620007c781620007c0845462000705565b8462000741565b602080601f831160018114620007ff5760008415620007e65750858301515b600019600386901b1c1916600185901b1785556200078b565b600085815260208120601f198616915b8281101562000830578886015182559484019460019091019084016200080f565b50858210156200084f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200087257600080fd5b81516001600160a01b03811681146200088a57600080fd5b9392505050565b80820180821115620008b357634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516115bf62000910600039600081816102c4015281816105f30152610ba30152600081816101e301528181610f98015281816110510152818161108d01528181611107015261112e01526115bf6000f3fe60806040526004361061016a5760003560e01c80637bbc8429116100d1578063b62496f51161008a578063dd62ed3e11610064578063dd62ed3e14610457578063e09157e814610477578063f2fde38b1461048d578063f9776e1f146104ad57600080fd5b8063b62496f5146103fc578063c683d8e41461042c578063cc1776d31461044157600080fd5b80637bbc8429146103495780638da5cb5b1461036957806395d89b41146103875780639a7a23d61461039c578063a457c2d7146103bc578063a9059cbb146103dc57600080fd5b8063313ce56711610123578063313ce56714610276578063395093511461029257806349bd5a5e146102b25780634f7041a5146102e657806370a08231146102fc578063715018a61461033257600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d578063220f66961461023c57806323b872dd1461025657600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c7565b6040516101989190611207565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc36600461126a565b610559565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b50600e546101c19060ff1681565b34801561026257600080fd5b506101c1610271366004611296565b610573565b34801561028257600080fd5b5060405160128152602001610198565b34801561029e57600080fd5b506101c16102ad36600461126a565b610597565b3480156102be57600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b3480156102f257600080fd5b5061022e600b5481565b34801561030857600080fd5b5061022e6103173660046112d7565b6001600160a01b031660009081526020819052604090205490565b34801561033e57600080fd5b506103476105b9565b005b34801561035557600080fd5b506103476103643660046112fb565b6105cd565b34801561037557600080fd5b506005546001600160a01b0316610205565b34801561039357600080fd5b5061018b6105da565b3480156103a857600080fd5b506103476103b7366004611314565b6105e9565b3480156103c857600080fd5b506101c16103d736600461126a565b6106cf565b3480156103e857600080fd5b506101c16103f736600461126a565b61074a565b34801561040857600080fd5b506101c16104173660046112d7565b600d6020526000908152604090205460ff1681565b34801561043857600080fd5b50610347610758565b34801561044d57600080fd5b5061022e600c5481565b34801561046357600080fd5b5061022e610472366004611352565b610773565b34801561048357600080fd5b5061022e600f5481565b34801561049957600080fd5b506103476104a83660046112d7565b61079e565b3480156104b957600080fd5b506007546101c19060ff1681565b6060600380546104d690611380565b80601f016020809104026020016040519081016040528092919081815260200182805461050290611380565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600033610567818585610817565b60019150505b92915050565b60003361058185828561093b565b61058c8585856109b5565b506001949350505050565b6000336105678185856105aa8383610773565b6105b491906113d0565b610817565b6105c1610ccd565b6105cb6000610d27565b565b6105d5610ccd565b600f55565b6060600480546104d690611380565b6105f1610ccd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036106a75760405162461bcd60e51b815260206004820152604160248201527f54686520756e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152600d60205260409020805460ff19168215151790555050565b600033816106dd8286610773565b90508381101561073d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069e565b61058c8286868403610817565b6000336105678185856109b5565b610760610ccd565b6007805460ff1916600117905542600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107a6610ccd565b6001600160a01b03811661080b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b61081481610d27565b50565b6001600160a01b0383166108795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b6001600160a01b0382166108da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109478484610773565b905060001981146109af57818110156109a25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161069e565b6109af8484848403610817565b50505050565b6001600160a01b0383166109db5760405162461bcd60e51b815260040161069e906113e3565b6001600160a01b038216610a015760405162461bcd60e51b815260040161069e90611428565b60008111610a635760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161069e565b6005546001600160a01b03848116911614801590610a8f57506005546001600160a01b03838116911614155b15610b735760075460ff16610ad95760405162461bcd60e51b815260206004820152601060248201526f4e6f20616c6c6f77656420747261646560801b604482015260640161069e565b6001600160a01b0383166000908152600d602052604090205460ff168015610b0f5750600954600854610b0c91906113d0565b42105b15610b73576001600160a01b0382166000908152600a602052604090205460ff16610b735760405162461bcd60e51b81526020600482015260146024820152734e6f2077686974656c697374206164647265737360601b604482015260640161069e565b30600090815260208190526040902054600f5481108015908190610b9a5750600e5460ff16155b8015610bd757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b15610be757610be7600f54610d79565b6001600160a01b0385166000908152600d6020526040812054819060ff1615610c17575050600b54600190610c41565b6001600160a01b0386166000908152600d602052604090205460ff1615610c41575050600c546001905b6005546001600160a01b0388811691161480610c6a57506005546001600160a01b038781169116145b15610c7457600091505b818015610c815750600081115b15610cb95760006064610c94838861146b565b610c9e9190611482565b9050610caa81876114a4565b9550610cb7883083610e17565b505b610cc4878787610e17565b50505050505050565b6005546001600160a01b031633146105cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e805460ff191660011790556000610d93600283611482565b90506000610da182846114a4565b905047610dad83610f41565b6000610db982476114a4565b9050610dc58382611101565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600e805460ff19169055505050565b6001600160a01b038316610e3d5760405162461bcd60e51b815260040161069e906113e3565b6001600160a01b038216610e635760405162461bcd60e51b815260040161069e90611428565b6001600160a01b03831660009081526020819052604090205481811015610edb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109af565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610f7657610f766114b7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101891906114cd565b8160018151811061102b5761102b6114b7565b60200260200101906001600160a01b031690816001600160a01b031681525050611076307f000000000000000000000000000000000000000000000000000000000000000084610817565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906110cb9085906000908690309042906004016114ea565b600060405180830381600087803b1580156110e557600080fd5b505af11580156110f9573d6000803e3d6000fd5b505050505050565b61112c307f000000000000000000000000000000000000000000000000000000000000000084610817565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806111736005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156111db573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611200919061155b565b5050505050565b600060208083528351808285015260005b8181101561123457858101830151858201604001528201611218565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081457600080fd5b6000806040838503121561127d57600080fd5b823561128881611255565b946020939093013593505050565b6000806000606084860312156112ab57600080fd5b83356112b681611255565b925060208401356112c681611255565b929592945050506040919091013590565b6000602082840312156112e957600080fd5b81356112f481611255565b9392505050565b60006020828403121561130d57600080fd5b5035919050565b6000806040838503121561132757600080fd5b823561133281611255565b91506020830135801515811461134757600080fd5b809150509250929050565b6000806040838503121561136557600080fd5b823561137081611255565b9150602083013561134781611255565b600181811c9082168061139457607f821691505b6020821081036113b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056d5761056d6113ba565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761056d5761056d6113ba565b60008261149f57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056d5761056d6113ba565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114df57600080fd5b81516112f481611255565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561153a5784516001600160a01b031683529383019391830191600101611515565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561157057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a201419bb6bba217f2ea5792d045ca81736db67e191951fe9c4ff5f80ae3e4e64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c80637bbc8429116100d1578063b62496f51161008a578063dd62ed3e11610064578063dd62ed3e14610457578063e09157e814610477578063f2fde38b1461048d578063f9776e1f146104ad57600080fd5b8063b62496f5146103fc578063c683d8e41461042c578063cc1776d31461044157600080fd5b80637bbc8429146103495780638da5cb5b1461036957806395d89b41146103875780639a7a23d61461039c578063a457c2d7146103bc578063a9059cbb146103dc57600080fd5b8063313ce56711610123578063313ce56714610276578063395093511461029257806349bd5a5e146102b25780634f7041a5146102e657806370a08231146102fc578063715018a61461033257600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d578063220f66961461023c57806323b872dd1461025657600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c7565b6040516101989190611207565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc36600461126a565b610559565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b50600e546101c19060ff1681565b34801561026257600080fd5b506101c1610271366004611296565b610573565b34801561028257600080fd5b5060405160128152602001610198565b34801561029e57600080fd5b506101c16102ad36600461126a565b610597565b3480156102be57600080fd5b506102057f0000000000000000000000005610a225db921bd439347ca529ff5628d86dafb181565b3480156102f257600080fd5b5061022e600b5481565b34801561030857600080fd5b5061022e6103173660046112d7565b6001600160a01b031660009081526020819052604090205490565b34801561033e57600080fd5b506103476105b9565b005b34801561035557600080fd5b506103476103643660046112fb565b6105cd565b34801561037557600080fd5b506005546001600160a01b0316610205565b34801561039357600080fd5b5061018b6105da565b3480156103a857600080fd5b506103476103b7366004611314565b6105e9565b3480156103c857600080fd5b506101c16103d736600461126a565b6106cf565b3480156103e857600080fd5b506101c16103f736600461126a565b61074a565b34801561040857600080fd5b506101c16104173660046112d7565b600d6020526000908152604090205460ff1681565b34801561043857600080fd5b50610347610758565b34801561044d57600080fd5b5061022e600c5481565b34801561046357600080fd5b5061022e610472366004611352565b610773565b34801561048357600080fd5b5061022e600f5481565b34801561049957600080fd5b506103476104a83660046112d7565b61079e565b3480156104b957600080fd5b506007546101c19060ff1681565b6060600380546104d690611380565b80601f016020809104026020016040519081016040528092919081815260200182805461050290611380565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050905090565b600033610567818585610817565b60019150505b92915050565b60003361058185828561093b565b61058c8585856109b5565b506001949350505050565b6000336105678185856105aa8383610773565b6105b491906113d0565b610817565b6105c1610ccd565b6105cb6000610d27565b565b6105d5610ccd565b600f55565b6060600480546104d690611380565b6105f1610ccd565b7f0000000000000000000000005610a225db921bd439347ca529ff5628d86dafb16001600160a01b0316826001600160a01b0316036106a75760405162461bcd60e51b815260206004820152604160248201527f54686520756e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152600d60205260409020805460ff19168215151790555050565b600033816106dd8286610773565b90508381101561073d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161069e565b61058c8286868403610817565b6000336105678185856109b5565b610760610ccd565b6007805460ff1916600117905542600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107a6610ccd565b6001600160a01b03811661080b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b61081481610d27565b50565b6001600160a01b0383166108795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b6001600160a01b0382166108da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161069e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109478484610773565b905060001981146109af57818110156109a25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161069e565b6109af8484848403610817565b50505050565b6001600160a01b0383166109db5760405162461bcd60e51b815260040161069e906113e3565b6001600160a01b038216610a015760405162461bcd60e51b815260040161069e90611428565b60008111610a635760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161069e565b6005546001600160a01b03848116911614801590610a8f57506005546001600160a01b03838116911614155b15610b735760075460ff16610ad95760405162461bcd60e51b815260206004820152601060248201526f4e6f20616c6c6f77656420747261646560801b604482015260640161069e565b6001600160a01b0383166000908152600d602052604090205460ff168015610b0f5750600954600854610b0c91906113d0565b42105b15610b73576001600160a01b0382166000908152600a602052604090205460ff16610b735760405162461bcd60e51b81526020600482015260146024820152734e6f2077686974656c697374206164647265737360601b604482015260640161069e565b30600090815260208190526040902054600f5481108015908190610b9a5750600e5460ff16155b8015610bd757507f0000000000000000000000005610a225db921bd439347ca529ff5628d86dafb16001600160a01b0316846001600160a01b0316145b15610be757610be7600f54610d79565b6001600160a01b0385166000908152600d6020526040812054819060ff1615610c17575050600b54600190610c41565b6001600160a01b0386166000908152600d602052604090205460ff1615610c41575050600c546001905b6005546001600160a01b0388811691161480610c6a57506005546001600160a01b038781169116145b15610c7457600091505b818015610c815750600081115b15610cb95760006064610c94838861146b565b610c9e9190611482565b9050610caa81876114a4565b9550610cb7883083610e17565b505b610cc4878787610e17565b50505050505050565b6005546001600160a01b031633146105cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161069e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e805460ff191660011790556000610d93600283611482565b90506000610da182846114a4565b905047610dad83610f41565b6000610db982476114a4565b9050610dc58382611101565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600e805460ff19169055505050565b6001600160a01b038316610e3d5760405162461bcd60e51b815260040161069e906113e3565b6001600160a01b038216610e635760405162461bcd60e51b815260040161069e90611428565b6001600160a01b03831660009081526020819052604090205481811015610edb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161069e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109af565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610f7657610f766114b7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101891906114cd565b8160018151811061102b5761102b6114b7565b60200260200101906001600160a01b031690816001600160a01b031681525050611076307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610817565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906110cb9085906000908690309042906004016114ea565b600060405180830381600087803b1580156110e557600080fd5b505af11580156110f9573d6000803e3d6000fd5b505050505050565b61112c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610817565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806111736005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156111db573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611200919061155b565b5050505050565b600060208083528351808285015260005b8181101561123457858101830151858201604001528201611218565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081457600080fd5b6000806040838503121561127d57600080fd5b823561128881611255565b946020939093013593505050565b6000806000606084860312156112ab57600080fd5b83356112b681611255565b925060208401356112c681611255565b929592945050506040919091013590565b6000602082840312156112e957600080fd5b81356112f481611255565b9392505050565b60006020828403121561130d57600080fd5b5035919050565b6000806040838503121561132757600080fd5b823561133281611255565b91506020830135801515811461134757600080fd5b809150509250929050565b6000806040838503121561136557600080fd5b823561137081611255565b9150602083013561134781611255565b600181811c9082168061139457607f821691505b6020821081036113b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056d5761056d6113ba565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761056d5761056d6113ba565b60008261149f57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056d5761056d6113ba565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114df57600080fd5b81516112f481611255565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561153a5784516001600160a01b031683529383019391830191600101611515565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561157057600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a201419bb6bba217f2ea5792d045ca81736db67e191951fe9c4ff5f80ae3e4e64736f6c63430008110033

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.