ETH Price: $2,412.75 (-0.15%)

Token

BITCOIN LAYER (BITL)
 

Overview

Max Total Supply

21,000,000 BITL

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
this-shit-is-going-to-zero.eth
Balance
294,000 BITL

Value
$0.00
0xe11b294d442cd78289b599ea4cb7eed585ca0980
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:
BITL

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-19
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

/*

Web: https://bitcoinlayer.net
TG: https://t.me/bitcoinlayernet

*/

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract BITL is ERC20, Ownable {
    uint8 public buySellTaxPercentage = 30;
    uint256 public maxTransaction = 420_000 * 10 ** 18;
    uint256 public maxWallet = 840_000 * 10 ** 18;
    uint256 private constant _numTokensSellToAddToETH = 20_000 * 10 ** 18;
    uint256 public transactionCounter = 0;
    address __owner;

    address public immutable uniswapV2Pair;
    address public taxCollectionWallet =
        0xB289581b689aF12F07d34D0936C04f09292337eE;
    IUniswapV2Router02 public constant uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private _inSwapAndLiquify;

    modifier lockTheSwap() {
        _inSwapAndLiquify = true;
        _;
        _inSwapAndLiquify = false;
    }

    constructor(address _tokenOwner) ERC20("BITCOIN LAYER", "BITL") Ownable(_tokenOwner) {
        __owner = _tokenOwner;
        _mint(_tokenOwner, 21_000_000 * 10 ** decimals());
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
    }

    /**
     * @dev Converts the accumulated tokens to ETH.
     */
    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`)˚º is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if ((from == uniswapV2Pair || to == uniswapV2Pair) && from != address(0) && !(from == __owner || to == __owner) && !_inSwapAndLiquify && !(from == address(this) || to == address(this))) {
            if (to == uniswapV2Pair) {
                uint256 contractBalance = balanceOf(address(this));
                if (contractBalance >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(contractBalance);

                    payable(taxCollectionWallet).transfer(
                        address(this).balance
                    );
                }
            }

            if (!(to == uniswapV2Pair || to == __owner)) {
                require(value <= maxTransaction, "ERC20: maxTransaction limit exceeded");
            }

            uint256 taxValue = (value * buySellTaxPercentage) / 100;
            value -= taxValue;
            super._update(from, address(this), taxValue);

            if (!(to == uniswapV2Pair || to == __owner)) {
                require((balanceOf(to) + value) <= maxWallet, "ERC20: maxWallet limit exceeded");
            }

            transactionCounter += 1;
            if (transactionCounter >= 30) {
                buySellTaxPercentage = 0;
            }
        }
        super._update(from, to, value);
    }


    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tokenOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySellTaxPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"taxCollectionWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260058054600f60a11b60ff60a01b199091161790556958f03ee118a13e80000060065569b1e07dc231427d0000006007555f600855600a80546001600160a01b03191673b289581b689af12f07d34d0936c04f09292337ee1790553480156200006b575f80fd5b5060405162001e9a38038062001e9a8339810160408190526200008e9162000a59565b806040518060400160405280600d81526020016c2124aa21a7a4a7102620aca2a960991b815250604051806040016040528060048152602001631092551360e21b8152508160039081620000e3919062000b25565b506004620000f2828262000b25565b5050506001600160a01b0381166200012457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200012f81620002f1565b50600980546001600160a01b0319166001600160a01b0383161790556200017c8162000159601290565b6200016690600a62000d00565b62000176906301406f4062000d10565b62000342565b5f8051602062001e7a8339815191526001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ed919062000a59565b6001600160a01b031663c9c65396305f8051602062001e7a8339815191526001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000247573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026d919062000a59565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002b8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002de919062000a59565b6001600160a01b03166080525062000dfd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200036d5760405163ec442f0560e01b81525f60048201526024016200011b565b6200037a5f83836200037e565b5050565b6080516001600160a01b0316836001600160a01b03161480620003b457506080516001600160a01b0316826001600160a01b0316145b8015620003c957506001600160a01b03831615155b8015620003fd57506009546001600160a01b0384811691161480620003fb57506009546001600160a01b038381169116145b155b8015620004145750600a54600160a01b900460ff16155b80156200043e57506001600160a01b0383163014806200043c57506001600160a01b03821630145b155b156200068b576080516001600160a01b0316826001600160a01b031603620004c757305f9081526020819052604090205469043c33c19375648000008110620004c5576200048c816200069d565b600a546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015620004c3573d5f803e3d5ffd5b505b505b6080516001600160a01b0316826001600160a01b03161480620004f757506009546001600160a01b038381169116145b6200055c576006548111156200055c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b60648201526084016200011b565b6005545f906064906200057a90600160a01b900460ff168462000d10565b62000586919062000d2a565b905062000594818362000d4a565b9150620005a384308362000848565b6080516001600160a01b0316836001600160a01b03161480620005d357506009546001600160a01b038481169116145b620006575760075482620005fb856001600160a01b03165f9081526020819052604090205490565b62000607919062000d60565b1115620006575760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d69742065786365656465640060448201526064016200011b565b600160085f8282546200066b919062000d60565b9091555050600854601e1162000689576005805460ff60a01b191690555b505b6200069883838362000848565b505050565b600a805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110620006e657620006e662000d76565b60200260200101906001600160a01b031690816001600160a01b0316815250505f8051602062001e7a8339815191526001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000751573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000777919062000a59565b816001815181106200078d576200078d62000d76565b6001600160a01b0390921660209283029190910190910152620007c0305f8051602062001e7a8339815191528462000977565b5f8051602062001e7a83398151915263791ac947835f8430620007e64261012c62000d60565b6040518663ffffffff1660e01b81526004016200080895949392919062000d8a565b5f604051808303815f87803b15801562000820575f80fd5b505af115801562000833573d5f803e3d5ffd5b5050600a805460ff60a01b1916905550505050565b6001600160a01b03831662000876578060025f8282546200086a919062000d60565b90915550620008e89050565b6001600160a01b0383165f9081526020819052604090205481811015620008ca5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200011b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620009065760028054829003905562000924565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200096a91815260200190565b60405180910390a3505050565b6200069883838360016001600160a01b038416620009ab5760405163e602df0560e01b81525f60048201526024016200011b565b6001600160a01b038316620009d657604051634a1406b160e11b81525f60048201526024016200011b565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801562000a5357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000a4a91815260200190565b60405180910390a35b50505050565b5f6020828403121562000a6a575f80fd5b81516001600160a01b038116811462000a81575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000ab157607f821691505b60208210810362000ad057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200069857805f5260205f20601f840160051c8101602085101562000afd5750805b601f840160051c820191505b8181101562000b1e575f815560010162000b09565b5050505050565b81516001600160401b0381111562000b415762000b4162000a88565b62000b598162000b52845462000a9c565b8462000ad6565b602080601f83116001811462000b8f575f841562000b775750858301515b5f19600386901b1c1916600185901b17855562000be9565b5f85815260208120601f198616915b8281101562000bbf5788860151825594840194600190910190840162000b9e565b508582101562000bdd57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000c4557815f190482111562000c295762000c2962000bf1565b8085161562000c3757918102915b93841c939080029062000c0a565b509250929050565b5f8262000c5d5750600162000cfa565b8162000c6b57505f62000cfa565b816001811462000c84576002811462000c8f5762000caf565b600191505062000cfa565b60ff84111562000ca35762000ca362000bf1565b50506001821b62000cfa565b5060208310610133831016604e8410600b841016171562000cd4575081810a62000cfa565b62000ce0838362000c05565b805f190482111562000cf65762000cf662000bf1565b0290505b92915050565b5f62000a8160ff84168362000c4d565b808202811582820484141762000cfa5762000cfa62000bf1565b5f8262000d4557634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111562000cfa5762000cfa62000bf1565b8082018082111562000cfa5762000cfa62000bf1565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101562000ddc5784516001600160a01b03168352938301939183019160010162000db5565b50506001600160a01b03969096166060850152505050608001529392505050565b60805161104162000e395f395f818161023e0152818161073f0152818161077a01528181610839015281816108d501526109c301526110415ff3fe608060405260043610610113575f3560e01c806370a082311161009d578063c3f70b5211610062578063c3f70b521461031a578063dd62ed3e1461032f578063f2fde38b14610373578063f462fe3814610392578063f8b45b05146103b1575f80fd5b806370a0823114610280578063715018a6146102b45780638da5cb5b146102ca57806395d89b41146102e7578063a9059cbb146102fb575f80fd5b806318160ddd116100e357806318160ddd146101d957806323b872dd146101ed578063313ce5671461020c57806349bd5a5e1461022d57806366ab2e8c14610260575f80fd5b806306fdde031461011e578063095ea7b31461014857806314e887e8146101775780631694505e1461019a575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b506101326103c6565b60405161013f9190610da2565b60405180910390f35b348015610153575f80fd5b50610167610162366004610e02565b610456565b604051901515815260200161013f565b348015610182575f80fd5b5061018c60085481565b60405190815260200161013f565b3480156101a5575f80fd5b506101c1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161013f565b3480156101e4575f80fd5b5060025461018c565b3480156101f8575f80fd5b50610167610207366004610e2c565b61046f565b348015610217575f80fd5b5060125b60405160ff909116815260200161013f565b348015610238575f80fd5b506101c17f000000000000000000000000000000000000000000000000000000000000000081565b34801561026b575f80fd5b5060055461021b90600160a01b900460ff1681565b34801561028b575f80fd5b5061018c61029a366004610e6a565b6001600160a01b03165f9081526020819052604090205490565b3480156102bf575f80fd5b506102c8610492565b005b3480156102d5575f80fd5b506005546001600160a01b03166101c1565b3480156102f2575f80fd5b506101326104a5565b348015610306575f80fd5b50610167610315366004610e02565b6104b4565b348015610325575f80fd5b5061018c60065481565b34801561033a575f80fd5b5061018c610349366004610e8c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561037e575f80fd5b506102c861038d366004610e6a565b6104c1565b34801561039d575f80fd5b50600a546101c1906001600160a01b031681565b3480156103bc575f80fd5b5061018c60075481565b6060600380546103d590610ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461040190610ec3565b801561044c5780601f106104235761010080835404028352916020019161044c565b820191905f5260205f20905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b5f33610463818585610503565b60019150505b92915050565b5f3361047c858285610515565b610487858585610590565b506001949350505050565b61049a6105ed565b6104a35f61061a565b565b6060600480546103d590610ec3565b5f33610463818585610590565b6104c96105ed565b6001600160a01b0381166104f757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6105008161061a565b50565b610510838383600161066b565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104ee565b61058a84848484035f61066b565b50505050565b6001600160a01b0383166105b957604051634b637e8f60e11b81525f60048201526024016104ee565b6001600160a01b0382166105e25760405163ec442f0560e01b81525f60048201526024016104ee565b61051083838361073d565b6005546001600160a01b031633146104a35760405163118cdaa760e01b81523360048201526024016104ee565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106945760405163e602df0560e01b81525f60048201526024016104ee565b6001600160a01b0383166106bd57604051634a1406b160e11b81525f60048201526024016104ee565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161072f91815260200190565b60405180910390a350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614806107ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b80156107c257506001600160a01b03831615155b80156107f457506009546001600160a01b03848116911614806107f257506009546001600160a01b038381169116145b155b801561080a5750600a54600160a01b900460ff16155b801561083257506001600160a01b03831630148061083057506001600160a01b03821630145b155b15610abd577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036108d357305f9081526020819052604090205469043c33c193756480000081106108d15761089981610ac8565b600a546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156108cf573d5f803e3d5ffd5b505b505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148061092057506009546001600160a01b038381169116145b610982576006548111156109825760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b60648201526084016104ee565b6005545f9060649061099e90600160a01b900460ff1684610f0f565b6109a89190610f26565b90506109b48183610f45565b91506109c1843083610c7c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610a0e57506009546001600160a01b038481169116145b610a8c5760075482610a34856001600160a01b03165f9081526020819052604090205490565b610a3e9190610f58565b1115610a8c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d69742065786365656465640060448201526064016104ee565b600160085f828254610a9e9190610f58565b9091555050600854601e11610abb576005805460ff60a01b191690555b505b610510838383610c7c565b600a805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610b0e57610b0e610f6b565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba29190610f7f565b81600181518110610bb557610bb5610f6b565b60200260200101906001600160a01b031690816001600160a01b031681525050610bf430737a250d5630b4cf539739df2c5dacb4c659f2488d84610503565b737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac947835f8430610c1e4261012c610f58565b6040518663ffffffff1660e01b8152600401610c3e959493929190610f9a565b5f604051808303815f87803b158015610c55575f80fd5b505af1158015610c67573d5f803e3d5ffd5b5050600a805460ff60a01b1916905550505050565b6001600160a01b038316610ca6578060025f828254610c9b9190610f58565b90915550610d169050565b6001600160a01b0383165f9081526020819052604090205481811015610cf85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104ee565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d3257600280548290039055610d50565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d9591815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610dce57858101830151858201604001528201610db2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610500575f80fd5b5f8060408385031215610e13575f80fd5b8235610e1e81610dee565b946020939093013593505050565b5f805f60608486031215610e3e575f80fd5b8335610e4981610dee565b92506020840135610e5981610dee565b929592945050506040919091013590565b5f60208284031215610e7a575f80fd5b8135610e8581610dee565b9392505050565b5f8060408385031215610e9d575f80fd5b8235610ea881610dee565b91506020830135610eb881610dee565b809150509250929050565b600181811c90821680610ed757607f821691505b602082108103610ef557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761046957610469610efb565b5f82610f4057634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561046957610469610efb565b8082018082111561046957610469610efb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610f8f575f80fd5b8151610e8581610dee565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610fea5784516001600160a01b031683529383019391830191600101610fc5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122089d757da5ec60e77f2a93d831b9a55f97114800f4b3030c7f0306bc6928c089364736f6c634300081700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b289581b689af12f07d34d0936c04f09292337ee

Deployed Bytecode

0x608060405260043610610113575f3560e01c806370a082311161009d578063c3f70b5211610062578063c3f70b521461031a578063dd62ed3e1461032f578063f2fde38b14610373578063f462fe3814610392578063f8b45b05146103b1575f80fd5b806370a0823114610280578063715018a6146102b45780638da5cb5b146102ca57806395d89b41146102e7578063a9059cbb146102fb575f80fd5b806318160ddd116100e357806318160ddd146101d957806323b872dd146101ed578063313ce5671461020c57806349bd5a5e1461022d57806366ab2e8c14610260575f80fd5b806306fdde031461011e578063095ea7b31461014857806314e887e8146101775780631694505e1461019a575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b506101326103c6565b60405161013f9190610da2565b60405180910390f35b348015610153575f80fd5b50610167610162366004610e02565b610456565b604051901515815260200161013f565b348015610182575f80fd5b5061018c60085481565b60405190815260200161013f565b3480156101a5575f80fd5b506101c1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161013f565b3480156101e4575f80fd5b5060025461018c565b3480156101f8575f80fd5b50610167610207366004610e2c565b61046f565b348015610217575f80fd5b5060125b60405160ff909116815260200161013f565b348015610238575f80fd5b506101c17f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da72481565b34801561026b575f80fd5b5060055461021b90600160a01b900460ff1681565b34801561028b575f80fd5b5061018c61029a366004610e6a565b6001600160a01b03165f9081526020819052604090205490565b3480156102bf575f80fd5b506102c8610492565b005b3480156102d5575f80fd5b506005546001600160a01b03166101c1565b3480156102f2575f80fd5b506101326104a5565b348015610306575f80fd5b50610167610315366004610e02565b6104b4565b348015610325575f80fd5b5061018c60065481565b34801561033a575f80fd5b5061018c610349366004610e8c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561037e575f80fd5b506102c861038d366004610e6a565b6104c1565b34801561039d575f80fd5b50600a546101c1906001600160a01b031681565b3480156103bc575f80fd5b5061018c60075481565b6060600380546103d590610ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461040190610ec3565b801561044c5780601f106104235761010080835404028352916020019161044c565b820191905f5260205f20905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b5f33610463818585610503565b60019150505b92915050565b5f3361047c858285610515565b610487858585610590565b506001949350505050565b61049a6105ed565b6104a35f61061a565b565b6060600480546103d590610ec3565b5f33610463818585610590565b6104c96105ed565b6001600160a01b0381166104f757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6105008161061a565b50565b610510838383600161066b565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104ee565b61058a84848484035f61066b565b50505050565b6001600160a01b0383166105b957604051634b637e8f60e11b81525f60048201526024016104ee565b6001600160a01b0382166105e25760405163ec442f0560e01b81525f60048201526024016104ee565b61051083838361073d565b6005546001600160a01b031633146104a35760405163118cdaa760e01b81523360048201526024016104ee565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106945760405163e602df0560e01b81525f60048201526024016104ee565b6001600160a01b0383166106bd57604051634a1406b160e11b81525f60048201526024016104ee565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161072f91815260200190565b60405180910390a350505050565b7f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da7246001600160a01b0316836001600160a01b031614806107ae57507f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da7246001600160a01b0316826001600160a01b0316145b80156107c257506001600160a01b03831615155b80156107f457506009546001600160a01b03848116911614806107f257506009546001600160a01b038381169116145b155b801561080a5750600a54600160a01b900460ff16155b801561083257506001600160a01b03831630148061083057506001600160a01b03821630145b155b15610abd577f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da7246001600160a01b0316826001600160a01b0316036108d357305f9081526020819052604090205469043c33c193756480000081106108d15761089981610ac8565b600a546040516001600160a01b03909116904780156108fc02915f818181858888f193505050501580156108cf573d5f803e3d5ffd5b505b505b7f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da7246001600160a01b0316826001600160a01b0316148061092057506009546001600160a01b038381169116145b610982576006548111156109825760405162461bcd60e51b8152602060048201526024808201527f45524332303a206d61785472616e73616374696f6e206c696d697420657863656044820152631959195960e21b60648201526084016104ee565b6005545f9060649061099e90600160a01b900460ff1684610f0f565b6109a89190610f26565b90506109b48183610f45565b91506109c1843083610c7c565b7f0000000000000000000000006bd9ed09cbcf7db92dd7054754412256844da7246001600160a01b0316836001600160a01b03161480610a0e57506009546001600160a01b038481169116145b610a8c5760075482610a34856001600160a01b03165f9081526020819052604090205490565b610a3e9190610f58565b1115610a8c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617857616c6c6574206c696d69742065786365656465640060448201526064016104ee565b600160085f828254610a9e9190610f58565b9091555050600854601e11610abb576005805460ff60a01b191690555b505b610510838383610c7c565b600a805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610b0e57610b0e610f6b565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba29190610f7f565b81600181518110610bb557610bb5610f6b565b60200260200101906001600160a01b031690816001600160a01b031681525050610bf430737a250d5630b4cf539739df2c5dacb4c659f2488d84610503565b737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac947835f8430610c1e4261012c610f58565b6040518663ffffffff1660e01b8152600401610c3e959493929190610f9a565b5f604051808303815f87803b158015610c55575f80fd5b505af1158015610c67573d5f803e3d5ffd5b5050600a805460ff60a01b1916905550505050565b6001600160a01b038316610ca6578060025f828254610c9b9190610f58565b90915550610d169050565b6001600160a01b0383165f9081526020819052604090205481811015610cf85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104ee565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d3257600280548290039055610d50565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d9591815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610dce57858101830151858201604001528201610db2565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610500575f80fd5b5f8060408385031215610e13575f80fd5b8235610e1e81610dee565b946020939093013593505050565b5f805f60608486031215610e3e575f80fd5b8335610e4981610dee565b92506020840135610e5981610dee565b929592945050506040919091013590565b5f60208284031215610e7a575f80fd5b8135610e8581610dee565b9392505050565b5f8060408385031215610e9d575f80fd5b8235610ea881610dee565b91506020830135610eb881610dee565b809150509250929050565b600181811c90821680610ed757607f821691505b602082108103610ef557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761046957610469610efb565b5f82610f4057634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561046957610469610efb565b8082018082111561046957610469610efb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610f8f575f80fd5b8151610e8581610dee565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610fea5784516001600160a01b031683529383019391830191600101610fc5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122089d757da5ec60e77f2a93d831b9a55f97114800f4b3030c7f0306bc6928c089364736f6c63430008170033

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

000000000000000000000000b289581b689af12f07d34d0936c04f09292337ee

-----Decoded View---------------
Arg [0] : _tokenOwner (address): 0xB289581b689aF12F07d34D0936C04f09292337eE

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b289581b689af12f07d34d0936c04f09292337ee


Deployed Bytecode Sourcemap

20522:3477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:215;;;;;;;;;;-1:-1:-1;10759:215:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10759:215:0;1023:187:1;20791:37:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;20791:37:0;1215:177:1;20999:124:0;;;;;;;;;;;;21080:42;20999:124;;;;;-1:-1:-1;;;;;1586:32:1;;;1568:51;;1556:2;1541:18;20999:124:0;1397:228:1;9543:99:0;;;;;;;;;;-1:-1:-1;9622:12:0;;9543:99;;11552:283;;;;;;;;;;-1:-1:-1;11552:283:0;;;;;:::i;:::-;;:::i;9394:84::-;;;;;;;;;;-1:-1:-1;9468:2:0;9394:84;;;2263:4:1;2251:17;;;2233:36;;2221:2;2206:18;9394:84:0;2091:184:1;20859:38:0;;;;;;;;;;;;;;;20561;;;;;;;;;;-1:-1:-1;20561:38:0;;;;-1:-1:-1;;;20561:38:0;;;;;;9705:118;;;;;;;;;;-1:-1:-1;9705:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;9797:18:0;9770:7;9797:18;;;;;;;;;;;;9705:118;19686:103;;;;;;;;;;;;;:::i;:::-;;19011:87;;;;;;;;;;-1:-1:-1;19084:6:0;;-1:-1:-1;;;;;19084:6:0;19011:87;;8651:95;;;;;;;;;;;;;:::i;10028:182::-;;;;;;;;;;-1:-1:-1;10028:182:0;;;;;:::i;:::-;;:::i;20606:50::-;;;;;;;;;;;;;;;;10273:167;;;;;;;;;;-1:-1:-1;10273:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;10405:18:0;;;10378:7;10405:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10273:167;19944:220;;;;;;;;;;-1:-1:-1;19944:220:0;;;;;:::i;:::-;;:::i;20904:88::-;;;;;;;;;;-1:-1:-1;20904:88:0;;;;-1:-1:-1;;;;;20904:88:0;;;20663:45;;;;;;;;;;;;;;;;8441:91;8486:13;8519:5;8512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:91;:::o;10759:215::-;10857:4;1284:10;10913:31;1284:10;10929:7;10938:5;10913:8;:31::i;:::-;10962:4;10955:11;;;10759:215;;;;;:::o;11552:283::-;11673:4;1284:10;11731:37;11747:4;1284:10;11762:5;11731:15;:37::i;:::-;11779:26;11789:4;11795:2;11799:5;11779:9;:26::i;:::-;-1:-1:-1;11823:4:0;;11552:283;-1:-1:-1;;;;11552:283:0:o;19686:103::-;18897:13;:11;:13::i;:::-;19751:30:::1;19778:1;19751:18;:30::i;:::-;19686:103::o:0;8651:95::-;8698:13;8731:7;8724:14;;;;;:::i;10028:182::-;10097:4;1284:10;10153:27;1284:10;10170:2;10174:5;10153:9;:27::i;19944:220::-;18897:13;:11;:13::i;:::-;-1:-1:-1;;;;;20029:22:0;::::1;20025:93;;20075:31;::::0;-1:-1:-1;;;20075:31:0;;20103:1:::1;20075:31;::::0;::::1;1568:51:1::0;1541:18;;20075:31:0::1;;;;;;;;20025:93;20128:28;20147:8;20128:18;:28::i;:::-;19944:220:::0;:::o;15106:130::-;15191:37;15200:5;15207:7;15216:5;15223:4;15191:8;:37::i;:::-;15106:130;;;:::o;16865:603::-;-1:-1:-1;;;;;10405:18:0;;;16999:24;10405:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17066:37:0;;17062:399;;17143:5;17124:16;:24;17120:214;;;17176:142;;-1:-1:-1;;;17176:142:0;;-1:-1:-1;;;;;3738:32:1;;17176:142:0;;;3720:51:1;3787:18;;;3780:34;;;3830:18;;;3823:34;;;3693:18;;17176:142:0;3518:345:1;17120:214:0;17377:57;17386:5;17393:7;17421:5;17402:16;:24;17428:5;17377:8;:57::i;:::-;16988:480;16865:603;;;:::o;12220:308::-;-1:-1:-1;;;;;12304:18:0;;12300:88;;12346:30;;-1:-1:-1;;;12346:30:0;;12373:1;12346:30;;;1568:51:1;1541:18;;12346:30:0;1397:228:1;12300:88:0;-1:-1:-1;;;;;12402:16:0;;12398:88;;12442:32;;-1:-1:-1;;;12442:32:0;;12471:1;12442:32;;;1568:51:1;1541:18;;12442:32:0;1397:228:1;12398:88:0;12496:24;12504:4;12510:2;12514:5;12496:7;:24::i;19176:166::-;19084:6;;-1:-1:-1;;;;;19084:6:0;1284:10;19236:23;19232:103;;19283:40;;-1:-1:-1;;;19283:40:0;;1284:10;19283:40;;;1568:51:1;1541:18;;19283:40:0;1397:228:1;20324:191:0;20417:6;;;-1:-1:-1;;;;;20434:17:0;;;-1:-1:-1;;;;;;20434:17:0;;;;;;;20467:40;;20417:6;;;20434:17;20417:6;;20467:40;;20398:16;;20467:40;20387:128;20324:191;:::o;16087:486::-;-1:-1:-1;;;;;16243:19:0;;16239:91;;16286:32;;-1:-1:-1;;;16286:32:0;;16315:1;16286:32;;;1568:51:1;1541:18;;16286:32:0;1397:228:1;16239:91:0;-1:-1:-1;;;;;16344:21:0;;16340:92;;16389:31;;-1:-1:-1;;;16389:31:0;;16417:1;16389:31;;;1568:51:1;1541:18;;16389:31:0;1397:228:1;16340:92:0;-1:-1:-1;;;;;16442:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16488:78;;;;16539:7;-1:-1:-1;;;;;16523:31:0;16532:5;-1:-1:-1;;;;;16523:31:0;;16548:5;16523:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;16523:31:0;;;;;;;;16087:486;;;;:::o;22539:1418::-;22673:13;-1:-1:-1;;;;;22665:21:0;:4;-1:-1:-1;;;;;22665:21:0;;:44;;;;22696:13;-1:-1:-1;;;;;22690:19:0;:2;-1:-1:-1;;;;;22690:19:0;;22665:44;22664:68;;;;-1:-1:-1;;;;;;22714:18:0;;;;22664:68;:107;;;;-1:-1:-1;22746:7:0;;-1:-1:-1;;;;;22738:15:0;;;22746:7;;22738:15;;:32;;-1:-1:-1;22763:7:0;;-1:-1:-1;;;;;22757:13:0;;;22763:7;;22757:13;22738:32;22736:35;22664:107;:129;;;;-1:-1:-1;22776:17:0;;-1:-1:-1;;;22776:17:0;;;;22775:18;22664:129;:180;;;;-1:-1:-1;;;;;;22799:21:0;;22815:4;22799:21;;:44;;-1:-1:-1;;;;;;22824:19:0;;22838:4;22824:19;22799:44;22797:47;22664:180;22660:1249;;;22871:13;-1:-1:-1;;;;;22865:19:0;:2;-1:-1:-1;;;;;22865:19:0;;22861:387;;22949:4;22905:23;9797:18;;;;;;;;;;;20767:17;22978:43;;22974:259;;23046:34;23064:15;23046:17;:34::i;:::-;23113:19;;23105:108;;-1:-1:-1;;;;;23113:19:0;;;;23169:21;23105:108;;;;;23113:19;23105:108;23113:19;23105:108;23169:21;23113:19;23105:108;;;;;;;;;;;;;;;;;;;;;22974:259;22886:362;22861:387;23276:13;-1:-1:-1;;;;;23270:19:0;:2;-1:-1:-1;;;;;23270:19:0;;:36;;;-1:-1:-1;23299:7:0;;-1:-1:-1;;;;;23293:13:0;;;23299:7;;23293:13;23270:36;23264:152;;23345:14;;23336:5;:23;;23328:72;;;;-1:-1:-1;;;23328:72:0;;4070:2:1;23328:72:0;;;4052:21:1;4109:2;4089:18;;;4082:30;4148:34;4128:18;;;4121:62;-1:-1:-1;;;4199:18:1;;;4192:34;4243:19;;23328:72:0;3868:400:1;23328:72:0;23460:20;;23432:16;;23484:3;;23452:28;;-1:-1:-1;;;23460:20:0;;;;23452:5;:28;:::i;:::-;23451:36;;;;:::i;:::-;23432:55;-1:-1:-1;23502:17:0;23432:55;23502:17;;:::i;:::-;;;23534:44;23548:4;23562;23569:8;23534:13;:44::i;:::-;23607:13;-1:-1:-1;;;;;23601:19:0;:2;-1:-1:-1;;;;;23601:19:0;;:36;;;-1:-1:-1;23630:7:0;;-1:-1:-1;;;;;23624:13:0;;;23630:7;;23624:13;23601:36;23595:160;;23694:9;;23684:5;23668:13;23678:2;-1:-1:-1;;;;;9797:18:0;9770:7;9797:18;;;;;;;;;;;;9705:118;23668:13;:21;;;;:::i;:::-;23667:36;;23659:80;;;;-1:-1:-1;;;23659:80:0;;5265:2:1;23659:80:0;;;5247:21:1;5304:2;5284:18;;;5277:30;5343:33;5323:18;;;5316:61;5394:18;;23659:80:0;5063:355:1;23659:80:0;23793:1;23771:18;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;23813:18:0;;23835:2;-1:-1:-1;23809:89:0;;23858:20;:24;;-1:-1:-1;;;;23858:24:0;;;23809:89;22846:1063;22660:1249;23919:30;23933:4;23939:2;23943:5;23919:13;:30::i;21715:496::-;21205:17;:24;;-1:-1:-1;;;;21205:24:0;-1:-1:-1;;;21205:24:0;;;21818:16:::1;::::0;;21832:1:::1;21818:16:::0;;;;;::::1;::::0;;-1:-1:-1;;21818:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;21818:16:0::1;21794:40;;21863:4;21845;21850:1;21845:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;21845:23:0::1;;;-1:-1:-1::0;;;;;21845:23:0::1;;;::::0;::::1;21080:42;-1:-1:-1::0;;;;;21889:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21879:4;21884:1;21879:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;21879:32:0::1;;;-1:-1:-1::0;;;;;21879:32:0::1;;;::::0;::::1;21924:62;21941:4;21080:42;21974:11;21924:8;:62::i;:::-;21080:42;21999:66;22080:11:::0;22106:1:::1;22122:4:::0;22149::::1;22170:21;:15;22188:3;22170:21;:::i;:::-;21999:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;21252:17:0;:25;;-1:-1:-1;;;;21252:25:0;;;-1:-1:-1;;;;21715:496:0:o;12852:1135::-;-1:-1:-1;;;;;12942:18:0;;12938:552;;13096:5;13080:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;12938:552:0;;-1:-1:-1;12938:552:0;;-1:-1:-1;;;;;13156:15:0;;13134:19;13156:15;;;;;;;;;;;13190:19;;;13186:117;;;13237:50;;-1:-1:-1;;;13237:50:0;;-1:-1:-1;;;;;3738:32:1;;13237:50:0;;;3720:51:1;3787:18;;;3780:34;;;3830:18;;;3823:34;;;3693:18;;13237:50:0;3518:345:1;13186:117:0;-1:-1:-1;;;;;13426:15:0;;:9;:15;;;;;;;;;;13444:19;;;;13426:37;;12938:552;-1:-1:-1;;;;;13506:16:0;;13502:435;;13672:12;:21;;;;;;;13502:435;;;-1:-1:-1;;;;;13888:13:0;;:9;:13;;;;;;;;;;:22;;;;;;13502:435;13969:2;-1:-1:-1;;;;;13954:25:0;13963:4;-1:-1:-1;;;;;13954:25:0;;13973:5;13954:25;;;;1361::1;;1349:2;1334:18;;1215:177;13954:25:0;;;;;;;;12852:1135;;;:::o;14:548:1:-;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1630:456::-;1707:6;1715;1723;1776:2;1764:9;1755:7;1751:23;1747:32;1744:52;;;1792:1;1789;1782:12;1744:52;1831:9;1818:23;1850:31;1875:5;1850:31;:::i;:::-;1900:5;-1:-1:-1;1957:2:1;1942:18;;1929:32;1970:33;1929:32;1970:33;:::i;:::-;1630:456;;2022:7;;-1:-1:-1;;;2076:2:1;2061:18;;;;2048:32;;1630:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;:::-;2724:5;2488:247;-1:-1:-1;;;2488:247:1:o;2740:388::-;2808:6;2816;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:31;2968:5;2943:31;:::i;:::-;2993:5;-1:-1:-1;3050:2:1;3035:18;;3022:32;3063:33;3022:32;3063:33;:::i;:::-;3115:7;3105:17;;;2740:388;;;;;:::o;3133:380::-;3212:1;3208:12;;;;3255;;;3276:61;;3330:4;3322:6;3318:17;3308:27;;3276:61;3383:2;3375:6;3372:14;3352:18;3349:38;3346:161;;3429:10;3424:3;3420:20;3417:1;3410:31;3464:4;3461:1;3454:15;3492:4;3489:1;3482:15;3346:161;;3133:380;;;:::o;4273:127::-;4334:10;4329:3;4325:20;4322:1;4315:31;4365:4;4362:1;4355:15;4389:4;4386:1;4379:15;4405:168;4478:9;;;4509;;4526:15;;;4520:22;;4506:37;4496:71;;4547:18;;:::i;4578:217::-;4618:1;4644;4634:132;;4688:10;4683:3;4679:20;4676:1;4669:31;4723:4;4720:1;4713:15;4751:4;4748:1;4741:15;4634:132;-1:-1:-1;4780:9:1;;4578:217::o;4800:128::-;4867:9;;;4888:11;;;4885:37;;;4902:18;;:::i;4933:125::-;4998:9;;;5019:10;;;5016:36;;;5032:18;;:::i;5555:127::-;5616:10;5611:3;5607:20;5604:1;5597:31;5647:4;5644:1;5637:15;5671:4;5668:1;5661:15;5687:251;5757:6;5810:2;5798:9;5789:7;5785:23;5781:32;5778:52;;;5826:1;5823;5816:12;5778:52;5858:9;5852:16;5877:31;5902:5;5877:31;:::i;5943:980::-;6205:4;6253:3;6242:9;6238:19;6284:6;6273:9;6266:25;6310:2;6348:6;6343:2;6332:9;6328:18;6321:34;6391:3;6386:2;6375:9;6371:18;6364:31;6415:6;6450;6444:13;6481:6;6473;6466:22;6519:3;6508:9;6504:19;6497:26;;6558:2;6550:6;6546:15;6532:29;;6579:1;6589:195;6603:6;6600:1;6597:13;6589:195;;;6668:13;;-1:-1:-1;;;;;6664:39:1;6652:52;;6759:15;;;;6724:12;;;;6700:1;6618:9;6589:195;;;-1:-1:-1;;;;;;;6840:32:1;;;;6835:2;6820:18;;6813:60;-1:-1:-1;;;6904:3:1;6889:19;6882:35;6801:3;5943:980;-1:-1:-1;;;5943:980:1:o

Swarm Source

ipfs://89d757da5ec60e77f2a93d831b9a55f97114800f4b3030c7f0306bc6928c0893
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.